From 24eefb743b760e3243eea846e9484a9a5f99fc21 Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Thu, 16 May 2024 19:30:33 +0200 Subject: [PATCH 1/4] feat: post creation WIP --- .air.toml | 51 +++++++++++++++ .gitignore | 4 +- .../gateways/web/templates/postCreate.html | 65 +++++++++++++++++++ .../gateways/web/templates/posts.html | 42 +++++++++--- api/page.go | 2 + api/pagePostCreate.go | 29 +++++++++ 6 files changed, 182 insertions(+), 11 deletions(-) create mode 100644 .air.toml create mode 100644 adapters/secondary/gateways/web/templates/postCreate.html create mode 100644 api/pagePostCreate.go diff --git a/.air.toml b/.air.toml new file mode 100644 index 0000000..67b1383 --- /dev/null +++ b/.air.toml @@ -0,0 +1,51 @@ +root = "." +testdata_dir = "testdata" +tmp_dir = "tmp" + +[build] + args_bin = [] + bin = "tmp\\main.exe" + cmd = "go build -o ./tmp/main.exe ./main" + delay = 1000 + exclude_dir = ["assets", "tmp", "vendor", "testdata"] + exclude_file = [] + exclude_regex = ["_test.go"] + exclude_unchanged = false + follow_symlink = false + full_bin = "" + include_dir = [] + include_ext = ["go", "tpl", "tmpl", "html"] + include_file = [] + kill_delay = "0s" + log = "build-errors.log" + poll = false + poll_interval = 0 + post_cmd = [] + pre_cmd = [] + rerun = false + rerun_delay = 500 + send_interrupt = false + stop_on_error = false + +[color] + app = "" + build = "yellow" + main = "magenta" + runner = "green" + watcher = "cyan" + +[log] + main_only = false + time = false + +[misc] + clean_on_exit = false + +[proxy] + app_port = 0 + enabled = false + proxy_port = 0 + +[screen] + clear_on_rebuild = false + keep_scroll = true diff --git a/.gitignore b/.gitignore index 0653454..449aa10 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,6 @@ bin # Environment -.env \ No newline at end of file +.env + +tmp/ diff --git a/adapters/secondary/gateways/web/templates/postCreate.html b/adapters/secondary/gateways/web/templates/postCreate.html new file mode 100644 index 0000000..cbb213b --- /dev/null +++ b/adapters/secondary/gateways/web/templates/postCreate.html @@ -0,0 +1,65 @@ + + + + GoCMS | Create post + {{.Head}} + + + + +{{.Navbar}} +
+

Post - creation

+

Create a new post

+
+
+ + +
+ +
+
+ + + + + diff --git a/adapters/secondary/gateways/web/templates/posts.html b/adapters/secondary/gateways/web/templates/posts.html index 9603a2c..7b2e2c6 100644 --- a/adapters/secondary/gateways/web/templates/posts.html +++ b/adapters/secondary/gateways/web/templates/posts.html @@ -1,20 +1,42 @@ - GoCMS | Posts - {{.Head}} + GoCMS | Posts + {{.Head}} + + {{.Navbar}}
-

Posts

-

List of your posts

- - - - - -
+

Posts

+

List of your posts

+ + + + + + + + + + + + + + + + + + + + +
NameCreation DateEdition DateActions
+
+ +
+
1MarkOtto@mdo
diff --git a/api/page.go b/api/page.go index 0dfe53a..5ef3f5b 100644 --- a/api/page.go +++ b/api/page.go @@ -123,6 +123,8 @@ func NewPageRouter() http.Handler { r.Get("/home", GetHomePage) r.Get("/post", GetPostsPage) r.Get("/post/edit", GetPostEditPage) + r.Get("/post/create", GetPostCreatePage) + r.Post("/post/create", PostPostCreatePage) }) return r diff --git a/api/pagePostCreate.go b/api/pagePostCreate.go new file mode 100644 index 0000000..68051e8 --- /dev/null +++ b/api/pagePostCreate.go @@ -0,0 +1,29 @@ +package api + +import ( + "html/template" + "net/http" + "regexp" +) + +func PostPostCreatePage(w http.ResponseWriter, r *http.Request) { + _ = r.ParseForm() + + postName := r.FormValue("name") + pattern := regexp.MustCompile("^[a-zA-Z0-9]{3,50}$") + + isPostNameValid := pattern.MatchString(postName) + if !isPostNameValid { + r.Method = http.MethodGet + + } +} + +func GetPostCreatePage(w http.ResponseWriter, _ *http.Request) { + navbarTmpl, _ := Container.GetPageUseCase.GetPage("componentNavbar", nil) + postsTmpl, _ := Container.GetPageUseCase.GetPage("postCreate", map[string]interface{}{ + "Navbar": template.HTML(navbarTmpl), + "Head": headTmpl, + }) + _, _ = w.Write(postsTmpl) +} From 900ad3e8b8abf2b03350bc3d0d93eee255e8413c Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Fri, 17 May 2024 16:38:41 +0200 Subject: [PATCH 2/4] feat: post list and edition redirect --- .air.toml | 2 +- adapters/secondary/gateways/postRepository.go | 12 +++++ .../gateways/web/templates/postCreate.html | 7 +-- .../gateways/web/templates/postEdit.html | 2 +- .../gateways/web/templates/posts.html | 44 ++++++++++++++--- api/page.go | 2 +- api/pagePostCreate.go | 47 +++++++++++++++---- api/pagePostEdit.go | 12 ++++- api/pagePosts.go | 2 + api/static/bootstrap-icons.svg | 1 + api/static/bootstrap-icons/0-circle-fill.svg | 4 ++ api/static/bootstrap-icons/0-circle.svg | 4 ++ api/static/bootstrap-icons/0-square-fill.svg | 4 ++ api/static/bootstrap-icons/0-square.svg | 4 ++ api/static/bootstrap-icons/1-circle-fill.svg | 3 ++ api/static/bootstrap-icons/1-circle.svg | 3 ++ api/static/bootstrap-icons/1-square-fill.svg | 3 ++ api/static/bootstrap-icons/1-square.svg | 4 ++ api/static/bootstrap-icons/123.svg | 3 ++ api/static/bootstrap-icons/2-circle-fill.svg | 3 ++ api/static/bootstrap-icons/2-circle.svg | 3 ++ api/static/bootstrap-icons/2-square-fill.svg | 3 ++ api/static/bootstrap-icons/2-square.svg | 4 ++ api/static/bootstrap-icons/3-circle-fill.svg | 3 ++ api/static/bootstrap-icons/3-circle.svg | 4 ++ api/static/bootstrap-icons/3-square-fill.svg | 3 ++ api/static/bootstrap-icons/3-square.svg | 4 ++ api/static/bootstrap-icons/4-circle-fill.svg | 3 ++ api/static/bootstrap-icons/4-circle.svg | 4 ++ api/static/bootstrap-icons/4-square-fill.svg | 4 ++ api/static/bootstrap-icons/4-square.svg | 4 ++ api/static/bootstrap-icons/5-circle-fill.svg | 3 ++ api/static/bootstrap-icons/5-circle.svg | 3 ++ api/static/bootstrap-icons/5-square-fill.svg | 3 ++ api/static/bootstrap-icons/5-square.svg | 4 ++ api/static/bootstrap-icons/6-circle-fill.svg | 3 ++ api/static/bootstrap-icons/6-circle.svg | 3 ++ api/static/bootstrap-icons/6-square-fill.svg | 4 ++ api/static/bootstrap-icons/6-square.svg | 4 ++ api/static/bootstrap-icons/7-circle-fill.svg | 3 ++ api/static/bootstrap-icons/7-circle.svg | 3 ++ api/static/bootstrap-icons/7-square-fill.svg | 3 ++ api/static/bootstrap-icons/7-square.svg | 4 ++ api/static/bootstrap-icons/8-circle-fill.svg | 3 ++ api/static/bootstrap-icons/8-circle.svg | 3 ++ api/static/bootstrap-icons/8-square-fill.svg | 4 ++ api/static/bootstrap-icons/8-square.svg | 4 ++ api/static/bootstrap-icons/9-circle-fill.svg | 3 ++ api/static/bootstrap-icons/9-circle.svg | 3 ++ api/static/bootstrap-icons/9-square-fill.svg | 4 ++ api/static/bootstrap-icons/9-square.svg | 4 ++ api/static/bootstrap-icons/activity.svg | 3 ++ .../bootstrap-icons/airplane-engines-fill.svg | 3 ++ .../bootstrap-icons/airplane-engines.svg | 3 ++ api/static/bootstrap-icons/airplane-fill.svg | 3 ++ api/static/bootstrap-icons/airplane.svg | 3 ++ api/static/bootstrap-icons/alarm-fill.svg | 3 ++ api/static/bootstrap-icons/alarm.svg | 4 ++ api/static/bootstrap-icons/alexa.svg | 3 ++ api/static/bootstrap-icons/align-bottom.svg | 4 ++ api/static/bootstrap-icons/align-center.svg | 3 ++ api/static/bootstrap-icons/align-end.svg | 4 ++ api/static/bootstrap-icons/align-middle.svg | 3 ++ api/static/bootstrap-icons/align-start.svg | 4 ++ api/static/bootstrap-icons/align-top.svg | 4 ++ api/static/bootstrap-icons/alipay.svg | 4 ++ .../bootstrap-icons/alphabet-uppercase.svg | 3 ++ api/static/bootstrap-icons/alphabet.svg | 3 ++ api/static/bootstrap-icons/alt.svg | 3 ++ api/static/bootstrap-icons/amazon.svg | 4 ++ api/static/bootstrap-icons/amd.svg | 3 ++ api/static/bootstrap-icons/android.svg | 3 ++ api/static/bootstrap-icons/android2.svg | 3 ++ api/static/bootstrap-icons/app-indicator.svg | 4 ++ api/static/bootstrap-icons/app.svg | 3 ++ api/static/bootstrap-icons/apple.svg | 4 ++ api/static/bootstrap-icons/archive-fill.svg | 3 ++ api/static/bootstrap-icons/archive.svg | 3 ++ .../bootstrap-icons/arrow-90deg-down.svg | 3 ++ .../bootstrap-icons/arrow-90deg-left.svg | 3 ++ .../bootstrap-icons/arrow-90deg-right.svg | 3 ++ api/static/bootstrap-icons/arrow-90deg-up.svg | 3 ++ api/static/bootstrap-icons/arrow-bar-down.svg | 3 ++ api/static/bootstrap-icons/arrow-bar-left.svg | 3 ++ .../bootstrap-icons/arrow-bar-right.svg | 3 ++ api/static/bootstrap-icons/arrow-bar-up.svg | 3 ++ .../bootstrap-icons/arrow-clockwise.svg | 4 ++ .../arrow-counterclockwise.svg | 4 ++ .../arrow-down-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-down-circle.svg | 3 ++ .../arrow-down-left-circle-fill.svg | 3 ++ .../arrow-down-left-circle.svg | 3 ++ .../arrow-down-left-square-fill.svg | 3 ++ .../arrow-down-left-square.svg | 3 ++ .../bootstrap-icons/arrow-down-left.svg | 3 ++ .../arrow-down-right-circle-fill.svg | 3 ++ .../arrow-down-right-circle.svg | 3 ++ .../arrow-down-right-square-fill.svg | 3 ++ .../arrow-down-right-square.svg | 3 ++ .../bootstrap-icons/arrow-down-right.svg | 3 ++ .../bootstrap-icons/arrow-down-short.svg | 3 ++ .../arrow-down-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-down-square.svg | 3 ++ api/static/bootstrap-icons/arrow-down-up.svg | 3 ++ api/static/bootstrap-icons/arrow-down.svg | 3 ++ .../arrow-left-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-left-circle.svg | 3 ++ .../bootstrap-icons/arrow-left-right.svg | 3 ++ .../bootstrap-icons/arrow-left-short.svg | 3 ++ .../arrow-left-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-left-square.svg | 3 ++ api/static/bootstrap-icons/arrow-left.svg | 3 ++ api/static/bootstrap-icons/arrow-repeat.svg | 4 ++ .../bootstrap-icons/arrow-return-left.svg | 3 ++ .../bootstrap-icons/arrow-return-right.svg | 3 ++ .../arrow-right-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-right-circle.svg | 3 ++ .../bootstrap-icons/arrow-right-short.svg | 3 ++ .../arrow-right-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-right-square.svg | 3 ++ api/static/bootstrap-icons/arrow-right.svg | 3 ++ .../arrow-through-heart-fill.svg | 3 ++ .../bootstrap-icons/arrow-through-heart.svg | 3 ++ .../bootstrap-icons/arrow-up-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-circle.svg | 3 ++ .../arrow-up-left-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-left-circle.svg | 3 ++ .../arrow-up-left-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-left-square.svg | 3 ++ api/static/bootstrap-icons/arrow-up-left.svg | 3 ++ .../arrow-up-right-circle-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-right-circle.svg | 3 ++ .../arrow-up-right-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-right-square.svg | 3 ++ api/static/bootstrap-icons/arrow-up-right.svg | 3 ++ api/static/bootstrap-icons/arrow-up-short.svg | 3 ++ .../bootstrap-icons/arrow-up-square-fill.svg | 3 ++ .../bootstrap-icons/arrow-up-square.svg | 3 ++ api/static/bootstrap-icons/arrow-up.svg | 3 ++ .../bootstrap-icons/arrows-angle-contract.svg | 3 ++ .../bootstrap-icons/arrows-angle-expand.svg | 3 ++ .../arrows-collapse-vertical.svg | 3 ++ .../bootstrap-icons/arrows-collapse.svg | 3 ++ .../arrows-expand-vertical.svg | 3 ++ api/static/bootstrap-icons/arrows-expand.svg | 3 ++ .../bootstrap-icons/arrows-fullscreen.svg | 3 ++ api/static/bootstrap-icons/arrows-move.svg | 3 ++ .../bootstrap-icons/arrows-vertical.svg | 3 ++ api/static/bootstrap-icons/arrows.svg | 3 ++ .../bootstrap-icons/aspect-ratio-fill.svg | 3 ++ api/static/bootstrap-icons/aspect-ratio.svg | 4 ++ api/static/bootstrap-icons/asterisk.svg | 3 ++ api/static/bootstrap-icons/at.svg | 3 ++ api/static/bootstrap-icons/award-fill.svg | 4 ++ api/static/bootstrap-icons/award.svg | 4 ++ api/static/bootstrap-icons/back.svg | 3 ++ api/static/bootstrap-icons/backpack-fill.svg | 4 ++ api/static/bootstrap-icons/backpack.svg | 4 ++ api/static/bootstrap-icons/backpack2-fill.svg | 4 ++ api/static/bootstrap-icons/backpack2.svg | 5 ++ api/static/bootstrap-icons/backpack3-fill.svg | 4 ++ api/static/bootstrap-icons/backpack3.svg | 4 ++ api/static/bootstrap-icons/backpack4-fill.svg | 4 ++ api/static/bootstrap-icons/backpack4.svg | 4 ++ api/static/bootstrap-icons/backspace-fill.svg | 3 ++ .../backspace-reverse-fill.svg | 3 ++ .../bootstrap-icons/backspace-reverse.svg | 4 ++ api/static/bootstrap-icons/backspace.svg | 4 ++ api/static/bootstrap-icons/badge-3d-fill.svg | 4 ++ api/static/bootstrap-icons/badge-3d.svg | 4 ++ api/static/bootstrap-icons/badge-4k-fill.svg | 4 ++ api/static/bootstrap-icons/badge-4k.svg | 4 ++ api/static/bootstrap-icons/badge-8k-fill.svg | 4 ++ api/static/bootstrap-icons/badge-8k.svg | 4 ++ api/static/bootstrap-icons/badge-ad-fill.svg | 4 ++ api/static/bootstrap-icons/badge-ad.svg | 4 ++ api/static/bootstrap-icons/badge-ar-fill.svg | 4 ++ api/static/bootstrap-icons/badge-ar.svg | 4 ++ api/static/bootstrap-icons/badge-cc-fill.svg | 3 ++ api/static/bootstrap-icons/badge-cc.svg | 4 ++ api/static/bootstrap-icons/badge-hd-fill.svg | 4 ++ api/static/bootstrap-icons/badge-hd.svg | 4 ++ api/static/bootstrap-icons/badge-sd-fill.svg | 4 ++ api/static/bootstrap-icons/badge-sd.svg | 3 ++ api/static/bootstrap-icons/badge-tm-fill.svg | 3 ++ api/static/bootstrap-icons/badge-tm.svg | 4 ++ api/static/bootstrap-icons/badge-vo-fill.svg | 4 ++ api/static/bootstrap-icons/badge-vo.svg | 4 ++ api/static/bootstrap-icons/badge-vr-fill.svg | 4 ++ api/static/bootstrap-icons/badge-vr.svg | 4 ++ api/static/bootstrap-icons/badge-wc-fill.svg | 3 ++ api/static/bootstrap-icons/badge-wc.svg | 4 ++ api/static/bootstrap-icons/bag-check-fill.svg | 3 ++ api/static/bootstrap-icons/bag-check.svg | 4 ++ api/static/bootstrap-icons/bag-dash-fill.svg | 3 ++ api/static/bootstrap-icons/bag-dash.svg | 4 ++ api/static/bootstrap-icons/bag-fill.svg | 3 ++ api/static/bootstrap-icons/bag-heart-fill.svg | 3 ++ api/static/bootstrap-icons/bag-heart.svg | 3 ++ api/static/bootstrap-icons/bag-plus-fill.svg | 3 ++ api/static/bootstrap-icons/bag-plus.svg | 4 ++ api/static/bootstrap-icons/bag-x-fill.svg | 3 ++ api/static/bootstrap-icons/bag-x.svg | 4 ++ api/static/bootstrap-icons/bag.svg | 3 ++ api/static/bootstrap-icons/balloon-fill.svg | 3 ++ .../bootstrap-icons/balloon-heart-fill.svg | 3 ++ api/static/bootstrap-icons/balloon-heart.svg | 3 ++ api/static/bootstrap-icons/balloon.svg | 3 ++ api/static/bootstrap-icons/ban-fill.svg | 3 ++ api/static/bootstrap-icons/ban.svg | 3 ++ api/static/bootstrap-icons/bandaid-fill.svg | 3 ++ api/static/bootstrap-icons/bandaid.svg | 4 ++ api/static/bootstrap-icons/bank.svg | 3 ++ api/static/bootstrap-icons/bank2.svg | 3 ++ api/static/bootstrap-icons/bar-chart-fill.svg | 3 ++ .../bootstrap-icons/bar-chart-line-fill.svg | 3 ++ api/static/bootstrap-icons/bar-chart-line.svg | 3 ++ .../bootstrap-icons/bar-chart-steps.svg | 3 ++ api/static/bootstrap-icons/bar-chart.svg | 3 ++ api/static/bootstrap-icons/basket-fill.svg | 3 ++ api/static/bootstrap-icons/basket.svg | 3 ++ api/static/bootstrap-icons/basket2-fill.svg | 3 ++ api/static/bootstrap-icons/basket2.svg | 4 ++ api/static/bootstrap-icons/basket3-fill.svg | 3 ++ api/static/bootstrap-icons/basket3.svg | 3 ++ .../bootstrap-icons/battery-charging.svg | 6 +++ api/static/bootstrap-icons/battery-full.svg | 4 ++ api/static/bootstrap-icons/battery-half.svg | 4 ++ api/static/bootstrap-icons/battery.svg | 3 ++ api/static/bootstrap-icons/behance.svg | 3 ++ api/static/bootstrap-icons/bell-fill.svg | 3 ++ .../bootstrap-icons/bell-slash-fill.svg | 3 ++ api/static/bootstrap-icons/bell-slash.svg | 3 ++ api/static/bootstrap-icons/bell.svg | 3 ++ api/static/bootstrap-icons/bezier.svg | 4 ++ api/static/bootstrap-icons/bezier2.svg | 3 ++ api/static/bootstrap-icons/bicycle.svg | 3 ++ api/static/bootstrap-icons/bing.svg | 5 ++ .../bootstrap-icons/binoculars-fill.svg | 3 ++ api/static/bootstrap-icons/binoculars.svg | 3 ++ .../bootstrap-icons/blockquote-left.svg | 3 ++ .../bootstrap-icons/blockquote-right.svg | 3 ++ api/static/bootstrap-icons/bluetooth.svg | 3 ++ api/static/bootstrap-icons/body-text.svg | 3 ++ api/static/bootstrap-icons/book-fill.svg | 3 ++ api/static/bootstrap-icons/book-half.svg | 3 ++ api/static/bootstrap-icons/book.svg | 3 ++ .../bootstrap-icons/bookmark-check-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-check.svg | 4 ++ .../bootstrap-icons/bookmark-dash-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-dash.svg | 4 ++ api/static/bootstrap-icons/bookmark-fill.svg | 3 ++ .../bootstrap-icons/bookmark-heart-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-heart.svg | 4 ++ .../bootstrap-icons/bookmark-plus-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-plus.svg | 4 ++ .../bootstrap-icons/bookmark-star-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-star.svg | 4 ++ .../bootstrap-icons/bookmark-x-fill.svg | 3 ++ api/static/bootstrap-icons/bookmark-x.svg | 4 ++ api/static/bootstrap-icons/bookmark.svg | 3 ++ api/static/bootstrap-icons/bookmarks-fill.svg | 4 ++ api/static/bootstrap-icons/bookmarks.svg | 4 ++ api/static/bootstrap-icons/bookshelf.svg | 3 ++ api/static/bootstrap-icons/boombox-fill.svg | 4 ++ api/static/bootstrap-icons/boombox.svg | 6 +++ api/static/bootstrap-icons/bootstrap-fill.svg | 4 ++ .../bootstrap-icons/bootstrap-reboot.svg | 4 ++ api/static/bootstrap-icons/bootstrap.svg | 4 ++ api/static/bootstrap-icons/border-all.svg | 3 ++ api/static/bootstrap-icons/border-bottom.svg | 3 ++ api/static/bootstrap-icons/border-center.svg | 3 ++ api/static/bootstrap-icons/border-inner.svg | 5 ++ api/static/bootstrap-icons/border-left.svg | 3 ++ api/static/bootstrap-icons/border-middle.svg | 3 ++ api/static/bootstrap-icons/border-outer.svg | 4 ++ api/static/bootstrap-icons/border-right.svg | 3 ++ api/static/bootstrap-icons/border-style.svg | 3 ++ api/static/bootstrap-icons/border-top.svg | 3 ++ api/static/bootstrap-icons/border-width.svg | 3 ++ api/static/bootstrap-icons/border.svg | 3 ++ .../bootstrap-icons/bounding-box-circles.svg | 3 ++ api/static/bootstrap-icons/bounding-box.svg | 3 ++ .../bootstrap-icons/box-arrow-down-left.svg | 4 ++ .../bootstrap-icons/box-arrow-down-right.svg | 4 ++ api/static/bootstrap-icons/box-arrow-down.svg | 4 ++ .../box-arrow-in-down-left.svg | 4 ++ .../box-arrow-in-down-right.svg | 4 ++ .../bootstrap-icons/box-arrow-in-down.svg | 4 ++ .../bootstrap-icons/box-arrow-in-left.svg | 4 ++ .../bootstrap-icons/box-arrow-in-right.svg | 4 ++ .../bootstrap-icons/box-arrow-in-up-left.svg | 4 ++ .../bootstrap-icons/box-arrow-in-up-right.svg | 4 ++ .../bootstrap-icons/box-arrow-in-up.svg | 4 ++ api/static/bootstrap-icons/box-arrow-left.svg | 4 ++ .../bootstrap-icons/box-arrow-right.svg | 4 ++ .../bootstrap-icons/box-arrow-up-left.svg | 4 ++ .../bootstrap-icons/box-arrow-up-right.svg | 4 ++ api/static/bootstrap-icons/box-arrow-up.svg | 4 ++ api/static/bootstrap-icons/box-fill.svg | 3 ++ api/static/bootstrap-icons/box-seam-fill.svg | 3 ++ api/static/bootstrap-icons/box-seam.svg | 3 ++ api/static/bootstrap-icons/box.svg | 3 ++ api/static/bootstrap-icons/box2-fill.svg | 3 ++ .../bootstrap-icons/box2-heart-fill.svg | 3 ++ api/static/bootstrap-icons/box2-heart.svg | 4 ++ api/static/bootstrap-icons/box2.svg | 3 ++ api/static/bootstrap-icons/boxes.svg | 3 ++ .../bootstrap-icons/braces-asterisk.svg | 3 ++ api/static/bootstrap-icons/braces.svg | 3 ++ api/static/bootstrap-icons/bricks.svg | 3 ++ api/static/bootstrap-icons/briefcase-fill.svg | 4 ++ api/static/bootstrap-icons/briefcase.svg | 3 ++ .../brightness-alt-high-fill.svg | 3 ++ .../bootstrap-icons/brightness-alt-high.svg | 3 ++ .../brightness-alt-low-fill.svg | 3 ++ .../bootstrap-icons/brightness-alt-low.svg | 3 ++ .../bootstrap-icons/brightness-high-fill.svg | 3 ++ .../bootstrap-icons/brightness-high.svg | 3 ++ .../bootstrap-icons/brightness-low-fill.svg | 3 ++ api/static/bootstrap-icons/brightness-low.svg | 3 ++ api/static/bootstrap-icons/brilliance.svg | 3 ++ api/static/bootstrap-icons/broadcast-pin.svg | 3 ++ api/static/bootstrap-icons/broadcast.svg | 3 ++ api/static/bootstrap-icons/browser-chrome.svg | 3 ++ api/static/bootstrap-icons/browser-edge.svg | 5 ++ .../bootstrap-icons/browser-firefox.svg | 3 ++ api/static/bootstrap-icons/browser-safari.svg | 3 ++ api/static/bootstrap-icons/brush-fill.svg | 3 ++ api/static/bootstrap-icons/brush.svg | 3 ++ api/static/bootstrap-icons/bucket-fill.svg | 3 ++ api/static/bootstrap-icons/bucket.svg | 3 ++ api/static/bootstrap-icons/bug-fill.svg | 4 ++ api/static/bootstrap-icons/bug.svg | 3 ++ api/static/bootstrap-icons/building-add.svg | 5 ++ api/static/bootstrap-icons/building-check.svg | 5 ++ api/static/bootstrap-icons/building-dash.svg | 5 ++ api/static/bootstrap-icons/building-down.svg | 5 ++ .../bootstrap-icons/building-exclamation.svg | 4 ++ .../bootstrap-icons/building-fill-add.svg | 4 ++ .../bootstrap-icons/building-fill-check.svg | 4 ++ .../bootstrap-icons/building-fill-dash.svg | 4 ++ .../bootstrap-icons/building-fill-down.svg | 4 ++ .../building-fill-exclamation.svg | 4 ++ .../bootstrap-icons/building-fill-gear.svg | 4 ++ .../bootstrap-icons/building-fill-lock.svg | 4 ++ .../bootstrap-icons/building-fill-slash.svg | 4 ++ .../bootstrap-icons/building-fill-up.svg | 4 ++ .../bootstrap-icons/building-fill-x.svg | 4 ++ api/static/bootstrap-icons/building-fill.svg | 3 ++ api/static/bootstrap-icons/building-gear.svg | 4 ++ api/static/bootstrap-icons/building-lock.svg | 4 ++ api/static/bootstrap-icons/building-slash.svg | 5 ++ api/static/bootstrap-icons/building-up.svg | 5 ++ api/static/bootstrap-icons/building-x.svg | 4 ++ api/static/bootstrap-icons/building.svg | 4 ++ api/static/bootstrap-icons/buildings-fill.svg | 3 ++ api/static/bootstrap-icons/buildings.svg | 4 ++ api/static/bootstrap-icons/bullseye.svg | 6 +++ api/static/bootstrap-icons/bus-front-fill.svg | 3 ++ api/static/bootstrap-icons/bus-front.svg | 4 ++ api/static/bootstrap-icons/c-circle-fill.svg | 3 ++ api/static/bootstrap-icons/c-circle.svg | 3 ++ api/static/bootstrap-icons/c-square-fill.svg | 3 ++ api/static/bootstrap-icons/c-square.svg | 4 ++ api/static/bootstrap-icons/cake-fill.svg | 3 ++ api/static/bootstrap-icons/cake.svg | 3 ++ api/static/bootstrap-icons/cake2-fill.svg | 4 ++ api/static/bootstrap-icons/cake2.svg | 3 ++ .../bootstrap-icons/calculator-fill.svg | 3 ++ api/static/bootstrap-icons/calculator.svg | 4 ++ .../bootstrap-icons/calendar-check-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-check.svg | 4 ++ .../bootstrap-icons/calendar-date-fill.svg | 4 ++ api/static/bootstrap-icons/calendar-date.svg | 4 ++ .../bootstrap-icons/calendar-day-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-day.svg | 4 ++ .../bootstrap-icons/calendar-event-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-event.svg | 4 ++ api/static/bootstrap-icons/calendar-fill.svg | 3 ++ .../bootstrap-icons/calendar-heart-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-heart.svg | 3 ++ .../bootstrap-icons/calendar-minus-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-minus.svg | 4 ++ .../bootstrap-icons/calendar-month-fill.svg | 4 ++ api/static/bootstrap-icons/calendar-month.svg | 4 ++ .../bootstrap-icons/calendar-plus-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-plus.svg | 4 ++ .../bootstrap-icons/calendar-range-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-range.svg | 4 ++ .../bootstrap-icons/calendar-week-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-week.svg | 4 ++ .../bootstrap-icons/calendar-x-fill.svg | 3 ++ api/static/bootstrap-icons/calendar-x.svg | 4 ++ api/static/bootstrap-icons/calendar.svg | 3 ++ .../bootstrap-icons/calendar2-check-fill.svg | 3 ++ .../bootstrap-icons/calendar2-check.svg | 5 ++ .../bootstrap-icons/calendar2-date-fill.svg | 4 ++ api/static/bootstrap-icons/calendar2-date.svg | 5 ++ .../bootstrap-icons/calendar2-day-fill.svg | 3 ++ api/static/bootstrap-icons/calendar2-day.svg | 5 ++ .../bootstrap-icons/calendar2-event-fill.svg | 3 ++ .../bootstrap-icons/calendar2-event.svg | 5 ++ api/static/bootstrap-icons/calendar2-fill.svg | 3 ++ .../bootstrap-icons/calendar2-heart-fill.svg | 3 ++ .../bootstrap-icons/calendar2-heart.svg | 3 ++ .../bootstrap-icons/calendar2-minus-fill.svg | 3 ++ .../bootstrap-icons/calendar2-minus.svg | 5 ++ .../bootstrap-icons/calendar2-month-fill.svg | 4 ++ .../bootstrap-icons/calendar2-month.svg | 5 ++ .../bootstrap-icons/calendar2-plus-fill.svg | 3 ++ api/static/bootstrap-icons/calendar2-plus.svg | 4 ++ .../bootstrap-icons/calendar2-range-fill.svg | 3 ++ .../bootstrap-icons/calendar2-range.svg | 4 ++ .../bootstrap-icons/calendar2-week-fill.svg | 3 ++ api/static/bootstrap-icons/calendar2-week.svg | 4 ++ .../bootstrap-icons/calendar2-x-fill.svg | 3 ++ api/static/bootstrap-icons/calendar2-x.svg | 5 ++ api/static/bootstrap-icons/calendar2.svg | 4 ++ .../bootstrap-icons/calendar3-event-fill.svg | 3 ++ .../bootstrap-icons/calendar3-event.svg | 4 ++ api/static/bootstrap-icons/calendar3-fill.svg | 3 ++ .../bootstrap-icons/calendar3-range-fill.svg | 3 ++ .../bootstrap-icons/calendar3-range.svg | 4 ++ .../bootstrap-icons/calendar3-week-fill.svg | 3 ++ api/static/bootstrap-icons/calendar3-week.svg | 4 ++ api/static/bootstrap-icons/calendar3.svg | 4 ++ .../bootstrap-icons/calendar4-event.svg | 4 ++ .../bootstrap-icons/calendar4-range.svg | 4 ++ api/static/bootstrap-icons/calendar4-week.svg | 4 ++ api/static/bootstrap-icons/calendar4.svg | 3 ++ api/static/bootstrap-icons/camera-fill.svg | 4 ++ .../bootstrap-icons/camera-reels-fill.svg | 5 ++ api/static/bootstrap-icons/camera-reels.svg | 5 ++ .../bootstrap-icons/camera-video-fill.svg | 3 ++ .../bootstrap-icons/camera-video-off-fill.svg | 3 ++ .../bootstrap-icons/camera-video-off.svg | 3 ++ api/static/bootstrap-icons/camera-video.svg | 3 ++ api/static/bootstrap-icons/camera.svg | 4 ++ api/static/bootstrap-icons/camera2.svg | 4 ++ api/static/bootstrap-icons/capslock-fill.svg | 3 ++ api/static/bootstrap-icons/capslock.svg | 3 ++ api/static/bootstrap-icons/capsule-pill.svg | 3 ++ api/static/bootstrap-icons/capsule.svg | 3 ++ api/static/bootstrap-icons/car-front-fill.svg | 3 ++ api/static/bootstrap-icons/car-front.svg | 4 ++ api/static/bootstrap-icons/card-checklist.svg | 4 ++ api/static/bootstrap-icons/card-heading.svg | 4 ++ api/static/bootstrap-icons/card-image.svg | 4 ++ api/static/bootstrap-icons/card-list.svg | 4 ++ api/static/bootstrap-icons/card-text.svg | 4 ++ .../bootstrap-icons/caret-down-fill.svg | 3 ++ .../caret-down-square-fill.svg | 3 ++ .../bootstrap-icons/caret-down-square.svg | 4 ++ api/static/bootstrap-icons/caret-down.svg | 3 ++ .../bootstrap-icons/caret-left-fill.svg | 3 ++ .../caret-left-square-fill.svg | 3 ++ .../bootstrap-icons/caret-left-square.svg | 4 ++ api/static/bootstrap-icons/caret-left.svg | 3 ++ .../bootstrap-icons/caret-right-fill.svg | 3 ++ .../caret-right-square-fill.svg | 3 ++ .../bootstrap-icons/caret-right-square.svg | 4 ++ api/static/bootstrap-icons/caret-right.svg | 3 ++ api/static/bootstrap-icons/caret-up-fill.svg | 3 ++ .../bootstrap-icons/caret-up-square-fill.svg | 3 ++ .../bootstrap-icons/caret-up-square.svg | 4 ++ api/static/bootstrap-icons/caret-up.svg | 3 ++ .../bootstrap-icons/cart-check-fill.svg | 3 ++ api/static/bootstrap-icons/cart-check.svg | 4 ++ api/static/bootstrap-icons/cart-dash-fill.svg | 3 ++ api/static/bootstrap-icons/cart-dash.svg | 4 ++ api/static/bootstrap-icons/cart-fill.svg | 3 ++ api/static/bootstrap-icons/cart-plus-fill.svg | 3 ++ api/static/bootstrap-icons/cart-plus.svg | 4 ++ api/static/bootstrap-icons/cart-x-fill.svg | 3 ++ api/static/bootstrap-icons/cart-x.svg | 4 ++ api/static/bootstrap-icons/cart.svg | 3 ++ api/static/bootstrap-icons/cart2.svg | 3 ++ api/static/bootstrap-icons/cart3.svg | 3 ++ api/static/bootstrap-icons/cart4.svg | 3 ++ api/static/bootstrap-icons/cash-coin.svg | 6 +++ api/static/bootstrap-icons/cash-stack.svg | 4 ++ api/static/bootstrap-icons/cash.svg | 4 ++ api/static/bootstrap-icons/cassette-fill.svg | 4 ++ api/static/bootstrap-icons/cassette.svg | 4 ++ api/static/bootstrap-icons/cast.svg | 4 ++ api/static/bootstrap-icons/cc-circle-fill.svg | 3 ++ api/static/bootstrap-icons/cc-circle.svg | 3 ++ api/static/bootstrap-icons/cc-square-fill.svg | 3 ++ api/static/bootstrap-icons/cc-square.svg | 4 ++ api/static/bootstrap-icons/chat-dots-fill.svg | 3 ++ api/static/bootstrap-icons/chat-dots.svg | 4 ++ api/static/bootstrap-icons/chat-fill.svg | 3 ++ .../bootstrap-icons/chat-heart-fill.svg | 3 ++ api/static/bootstrap-icons/chat-heart.svg | 3 ++ .../bootstrap-icons/chat-left-dots-fill.svg | 3 ++ api/static/bootstrap-icons/chat-left-dots.svg | 4 ++ api/static/bootstrap-icons/chat-left-fill.svg | 3 ++ .../bootstrap-icons/chat-left-heart-fill.svg | 3 ++ .../bootstrap-icons/chat-left-heart.svg | 4 ++ .../bootstrap-icons/chat-left-quote-fill.svg | 3 ++ .../bootstrap-icons/chat-left-quote.svg | 4 ++ .../bootstrap-icons/chat-left-text-fill.svg | 3 ++ api/static/bootstrap-icons/chat-left-text.svg | 4 ++ api/static/bootstrap-icons/chat-left.svg | 3 ++ .../bootstrap-icons/chat-quote-fill.svg | 3 ++ api/static/bootstrap-icons/chat-quote.svg | 4 ++ .../bootstrap-icons/chat-right-dots-fill.svg | 3 ++ .../bootstrap-icons/chat-right-dots.svg | 4 ++ .../bootstrap-icons/chat-right-fill.svg | 3 ++ .../bootstrap-icons/chat-right-heart-fill.svg | 3 ++ .../bootstrap-icons/chat-right-heart.svg | 4 ++ .../bootstrap-icons/chat-right-quote-fill.svg | 3 ++ .../bootstrap-icons/chat-right-quote.svg | 4 ++ .../bootstrap-icons/chat-right-text-fill.svg | 3 ++ .../bootstrap-icons/chat-right-text.svg | 4 ++ api/static/bootstrap-icons/chat-right.svg | 3 ++ .../bootstrap-icons/chat-square-dots-fill.svg | 3 ++ .../bootstrap-icons/chat-square-dots.svg | 4 ++ .../bootstrap-icons/chat-square-fill.svg | 3 ++ .../chat-square-heart-fill.svg | 3 ++ .../bootstrap-icons/chat-square-heart.svg | 4 ++ .../chat-square-quote-fill.svg | 3 ++ .../bootstrap-icons/chat-square-quote.svg | 4 ++ .../bootstrap-icons/chat-square-text-fill.svg | 3 ++ .../bootstrap-icons/chat-square-text.svg | 4 ++ api/static/bootstrap-icons/chat-square.svg | 3 ++ api/static/bootstrap-icons/chat-text-fill.svg | 3 ++ api/static/bootstrap-icons/chat-text.svg | 4 ++ api/static/bootstrap-icons/chat.svg | 3 ++ api/static/bootstrap-icons/check-all.svg | 3 ++ .../bootstrap-icons/check-circle-fill.svg | 3 ++ api/static/bootstrap-icons/check-circle.svg | 4 ++ api/static/bootstrap-icons/check-lg.svg | 3 ++ .../bootstrap-icons/check-square-fill.svg | 3 ++ api/static/bootstrap-icons/check-square.svg | 4 ++ api/static/bootstrap-icons/check.svg | 3 ++ api/static/bootstrap-icons/check2-all.svg | 4 ++ api/static/bootstrap-icons/check2-circle.svg | 4 ++ api/static/bootstrap-icons/check2-square.svg | 4 ++ api/static/bootstrap-icons/check2.svg | 3 ++ .../bootstrap-icons/chevron-bar-contract.svg | 3 ++ .../bootstrap-icons/chevron-bar-down.svg | 3 ++ .../bootstrap-icons/chevron-bar-expand.svg | 3 ++ .../bootstrap-icons/chevron-bar-left.svg | 3 ++ .../bootstrap-icons/chevron-bar-right.svg | 3 ++ api/static/bootstrap-icons/chevron-bar-up.svg | 3 ++ .../bootstrap-icons/chevron-compact-down.svg | 3 ++ .../bootstrap-icons/chevron-compact-left.svg | 3 ++ .../bootstrap-icons/chevron-compact-right.svg | 3 ++ .../bootstrap-icons/chevron-compact-up.svg | 3 ++ .../bootstrap-icons/chevron-contract.svg | 3 ++ .../bootstrap-icons/chevron-double-down.svg | 4 ++ .../bootstrap-icons/chevron-double-left.svg | 4 ++ .../bootstrap-icons/chevron-double-right.svg | 4 ++ .../bootstrap-icons/chevron-double-up.svg | 4 ++ api/static/bootstrap-icons/chevron-down.svg | 3 ++ api/static/bootstrap-icons/chevron-expand.svg | 3 ++ api/static/bootstrap-icons/chevron-left.svg | 3 ++ api/static/bootstrap-icons/chevron-right.svg | 3 ++ api/static/bootstrap-icons/chevron-up.svg | 3 ++ api/static/bootstrap-icons/circle-fill.svg | 3 ++ api/static/bootstrap-icons/circle-half.svg | 3 ++ api/static/bootstrap-icons/circle-square.svg | 4 ++ api/static/bootstrap-icons/circle.svg | 3 ++ .../bootstrap-icons/clipboard-check-fill.svg | 4 ++ .../bootstrap-icons/clipboard-check.svg | 5 ++ .../bootstrap-icons/clipboard-data-fill.svg | 4 ++ api/static/bootstrap-icons/clipboard-data.svg | 5 ++ api/static/bootstrap-icons/clipboard-fill.svg | 3 ++ .../bootstrap-icons/clipboard-heart-fill.svg | 4 ++ .../bootstrap-icons/clipboard-heart.svg | 5 ++ .../bootstrap-icons/clipboard-minus-fill.svg | 4 ++ .../bootstrap-icons/clipboard-minus.svg | 5 ++ .../bootstrap-icons/clipboard-plus-fill.svg | 4 ++ api/static/bootstrap-icons/clipboard-plus.svg | 5 ++ .../bootstrap-icons/clipboard-pulse.svg | 3 ++ .../bootstrap-icons/clipboard-x-fill.svg | 4 ++ api/static/bootstrap-icons/clipboard-x.svg | 5 ++ api/static/bootstrap-icons/clipboard.svg | 4 ++ .../bootstrap-icons/clipboard2-check-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-check.svg | 5 ++ .../bootstrap-icons/clipboard2-data-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-data.svg | 5 ++ .../bootstrap-icons/clipboard2-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-heart-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-heart.svg | 5 ++ .../bootstrap-icons/clipboard2-minus-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-minus.svg | 5 ++ .../bootstrap-icons/clipboard2-plus-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-plus.svg | 5 ++ .../bootstrap-icons/clipboard2-pulse-fill.svg | 4 ++ .../bootstrap-icons/clipboard2-pulse.svg | 5 ++ .../bootstrap-icons/clipboard2-x-fill.svg | 4 ++ api/static/bootstrap-icons/clipboard2-x.svg | 5 ++ api/static/bootstrap-icons/clipboard2.svg | 4 ++ api/static/bootstrap-icons/clock-fill.svg | 3 ++ api/static/bootstrap-icons/clock-history.svg | 5 ++ api/static/bootstrap-icons/clock.svg | 4 ++ .../bootstrap-icons/cloud-arrow-down-fill.svg | 3 ++ .../bootstrap-icons/cloud-arrow-down.svg | 4 ++ .../bootstrap-icons/cloud-arrow-up-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-arrow-up.svg | 4 ++ .../bootstrap-icons/cloud-check-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-check.svg | 4 ++ .../bootstrap-icons/cloud-download-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-download.svg | 4 ++ .../bootstrap-icons/cloud-drizzle-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-drizzle.svg | 3 ++ api/static/bootstrap-icons/cloud-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-fog-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-fog.svg | 3 ++ .../bootstrap-icons/cloud-fog2-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-fog2.svg | 3 ++ .../bootstrap-icons/cloud-hail-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-hail.svg | 3 ++ .../bootstrap-icons/cloud-haze-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-haze.svg | 3 ++ .../bootstrap-icons/cloud-haze2-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-haze2.svg | 3 ++ .../bootstrap-icons/cloud-lightning-fill.svg | 3 ++ .../cloud-lightning-rain-fill.svg | 3 ++ .../bootstrap-icons/cloud-lightning-rain.svg | 3 ++ .../bootstrap-icons/cloud-lightning.svg | 3 ++ .../bootstrap-icons/cloud-minus-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-minus.svg | 4 ++ .../bootstrap-icons/cloud-moon-fill.svg | 4 ++ api/static/bootstrap-icons/cloud-moon.svg | 4 ++ .../bootstrap-icons/cloud-plus-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-plus.svg | 4 ++ .../bootstrap-icons/cloud-rain-fill.svg | 3 ++ .../bootstrap-icons/cloud-rain-heavy-fill.svg | 3 ++ .../bootstrap-icons/cloud-rain-heavy.svg | 3 ++ api/static/bootstrap-icons/cloud-rain.svg | 3 ++ .../bootstrap-icons/cloud-slash-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-slash.svg | 4 ++ .../bootstrap-icons/cloud-sleet-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-sleet.svg | 3 ++ .../bootstrap-icons/cloud-snow-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-snow.svg | 3 ++ api/static/bootstrap-icons/cloud-sun-fill.svg | 4 ++ api/static/bootstrap-icons/cloud-sun.svg | 4 ++ .../bootstrap-icons/cloud-upload-fill.svg | 3 ++ api/static/bootstrap-icons/cloud-upload.svg | 4 ++ api/static/bootstrap-icons/cloud.svg | 3 ++ api/static/bootstrap-icons/clouds-fill.svg | 4 ++ api/static/bootstrap-icons/clouds.svg | 4 ++ api/static/bootstrap-icons/cloudy-fill.svg | 3 ++ api/static/bootstrap-icons/cloudy.svg | 3 ++ api/static/bootstrap-icons/code-slash.svg | 3 ++ api/static/bootstrap-icons/code-square.svg | 4 ++ api/static/bootstrap-icons/code.svg | 3 ++ api/static/bootstrap-icons/coin.svg | 5 ++ .../bootstrap-icons/collection-fill.svg | 3 ++ .../bootstrap-icons/collection-play-fill.svg | 3 ++ .../bootstrap-icons/collection-play.svg | 4 ++ api/static/bootstrap-icons/collection.svg | 3 ++ api/static/bootstrap-icons/columns-gap.svg | 3 ++ api/static/bootstrap-icons/columns.svg | 3 ++ api/static/bootstrap-icons/command.svg | 3 ++ api/static/bootstrap-icons/compass-fill.svg | 3 ++ api/static/bootstrap-icons/compass.svg | 4 ++ api/static/bootstrap-icons/cone-striped.svg | 3 ++ api/static/bootstrap-icons/cone.svg | 3 ++ api/static/bootstrap-icons/controller.svg | 4 ++ api/static/bootstrap-icons/cookie.svg | 4 ++ api/static/bootstrap-icons/copy.svg | 3 ++ api/static/bootstrap-icons/cpu-fill.svg | 4 ++ api/static/bootstrap-icons/cpu.svg | 3 ++ .../credit-card-2-back-fill.svg | 3 ++ .../bootstrap-icons/credit-card-2-back.svg | 4 ++ .../credit-card-2-front-fill.svg | 3 ++ .../bootstrap-icons/credit-card-2-front.svg | 4 ++ .../bootstrap-icons/credit-card-fill.svg | 3 ++ api/static/bootstrap-icons/credit-card.svg | 4 ++ api/static/bootstrap-icons/crop.svg | 3 ++ api/static/bootstrap-icons/crosshair.svg | 3 ++ api/static/bootstrap-icons/crosshair2.svg | 3 ++ api/static/bootstrap-icons/cup-fill.svg | 3 ++ api/static/bootstrap-icons/cup-hot-fill.svg | 4 ++ api/static/bootstrap-icons/cup-hot.svg | 4 ++ api/static/bootstrap-icons/cup-straw.svg | 3 ++ api/static/bootstrap-icons/cup.svg | 3 ++ .../bootstrap-icons/currency-bitcoin.svg | 3 ++ .../bootstrap-icons/currency-dollar.svg | 3 ++ api/static/bootstrap-icons/currency-euro.svg | 3 ++ .../bootstrap-icons/currency-exchange.svg | 3 ++ api/static/bootstrap-icons/currency-pound.svg | 3 ++ api/static/bootstrap-icons/currency-rupee.svg | 3 ++ api/static/bootstrap-icons/currency-yen.svg | 3 ++ api/static/bootstrap-icons/cursor-fill.svg | 3 ++ api/static/bootstrap-icons/cursor-text.svg | 3 ++ api/static/bootstrap-icons/cursor.svg | 3 ++ .../bootstrap-icons/dash-circle-dotted.svg | 3 ++ .../bootstrap-icons/dash-circle-fill.svg | 3 ++ api/static/bootstrap-icons/dash-circle.svg | 4 ++ api/static/bootstrap-icons/dash-lg.svg | 3 ++ .../bootstrap-icons/dash-square-dotted.svg | 3 ++ .../bootstrap-icons/dash-square-fill.svg | 3 ++ api/static/bootstrap-icons/dash-square.svg | 4 ++ api/static/bootstrap-icons/dash.svg | 3 ++ api/static/bootstrap-icons/database-add.svg | 4 ++ api/static/bootstrap-icons/database-check.svg | 4 ++ api/static/bootstrap-icons/database-dash.svg | 4 ++ api/static/bootstrap-icons/database-down.svg | 4 ++ .../bootstrap-icons/database-exclamation.svg | 4 ++ .../bootstrap-icons/database-fill-add.svg | 4 ++ .../bootstrap-icons/database-fill-check.svg | 4 ++ .../bootstrap-icons/database-fill-dash.svg | 4 ++ .../bootstrap-icons/database-fill-down.svg | 4 ++ .../database-fill-exclamation.svg | 5 ++ .../bootstrap-icons/database-fill-gear.svg | 4 ++ .../bootstrap-icons/database-fill-lock.svg | 5 ++ .../bootstrap-icons/database-fill-slash.svg | 4 ++ .../bootstrap-icons/database-fill-up.svg | 4 ++ .../bootstrap-icons/database-fill-x.svg | 5 ++ api/static/bootstrap-icons/database-fill.svg | 6 +++ api/static/bootstrap-icons/database-gear.svg | 4 ++ api/static/bootstrap-icons/database-lock.svg | 4 ++ api/static/bootstrap-icons/database-slash.svg | 4 ++ api/static/bootstrap-icons/database-up.svg | 4 ++ api/static/bootstrap-icons/database-x.svg | 4 ++ api/static/bootstrap-icons/database.svg | 3 ++ .../bootstrap-icons/device-hdd-fill.svg | 4 ++ api/static/bootstrap-icons/device-hdd.svg | 5 ++ .../bootstrap-icons/device-ssd-fill.svg | 4 ++ api/static/bootstrap-icons/device-ssd.svg | 4 ++ api/static/bootstrap-icons/diagram-2-fill.svg | 3 ++ api/static/bootstrap-icons/diagram-2.svg | 3 ++ api/static/bootstrap-icons/diagram-3-fill.svg | 3 ++ api/static/bootstrap-icons/diagram-3.svg | 3 ++ api/static/bootstrap-icons/diamond-fill.svg | 3 ++ api/static/bootstrap-icons/diamond-half.svg | 3 ++ api/static/bootstrap-icons/diamond.svg | 3 ++ api/static/bootstrap-icons/dice-1-fill.svg | 3 ++ api/static/bootstrap-icons/dice-1.svg | 4 ++ api/static/bootstrap-icons/dice-2-fill.svg | 3 ++ api/static/bootstrap-icons/dice-2.svg | 4 ++ api/static/bootstrap-icons/dice-3-fill.svg | 3 ++ api/static/bootstrap-icons/dice-3.svg | 4 ++ api/static/bootstrap-icons/dice-4-fill.svg | 3 ++ api/static/bootstrap-icons/dice-4.svg | 4 ++ api/static/bootstrap-icons/dice-5-fill.svg | 3 ++ api/static/bootstrap-icons/dice-5.svg | 4 ++ api/static/bootstrap-icons/dice-6-fill.svg | 3 ++ api/static/bootstrap-icons/dice-6.svg | 4 ++ api/static/bootstrap-icons/disc-fill.svg | 3 ++ api/static/bootstrap-icons/disc.svg | 4 ++ api/static/bootstrap-icons/discord.svg | 3 ++ api/static/bootstrap-icons/display-fill.svg | 3 ++ api/static/bootstrap-icons/display.svg | 3 ++ .../bootstrap-icons/displayport-fill.svg | 3 ++ api/static/bootstrap-icons/displayport.svg | 4 ++ .../bootstrap-icons/distribute-horizontal.svg | 4 ++ .../bootstrap-icons/distribute-vertical.svg | 4 ++ .../bootstrap-icons/door-closed-fill.svg | 3 ++ api/static/bootstrap-icons/door-closed.svg | 4 ++ api/static/bootstrap-icons/door-open-fill.svg | 3 ++ api/static/bootstrap-icons/door-open.svg | 4 ++ api/static/bootstrap-icons/dot.svg | 3 ++ api/static/bootstrap-icons/download.svg | 4 ++ api/static/bootstrap-icons/dpad-fill.svg | 3 ++ api/static/bootstrap-icons/dpad.svg | 4 ++ api/static/bootstrap-icons/dribbble.svg | 3 ++ api/static/bootstrap-icons/dropbox.svg | 3 ++ api/static/bootstrap-icons/droplet-fill.svg | 3 ++ api/static/bootstrap-icons/droplet-half.svg | 4 ++ api/static/bootstrap-icons/droplet.svg | 4 ++ api/static/bootstrap-icons/duffle-fill.svg | 3 ++ api/static/bootstrap-icons/duffle.svg | 4 ++ api/static/bootstrap-icons/ear-fill.svg | 3 ++ api/static/bootstrap-icons/ear.svg | 3 ++ api/static/bootstrap-icons/earbuds.svg | 3 ++ api/static/bootstrap-icons/easel-fill.svg | 3 ++ api/static/bootstrap-icons/easel.svg | 3 ++ api/static/bootstrap-icons/easel2-fill.svg | 4 ++ api/static/bootstrap-icons/easel2.svg | 3 ++ api/static/bootstrap-icons/easel3-fill.svg | 3 ++ api/static/bootstrap-icons/easel3.svg | 3 ++ api/static/bootstrap-icons/egg-fill.svg | 3 ++ api/static/bootstrap-icons/egg-fried.svg | 4 ++ api/static/bootstrap-icons/egg.svg | 3 ++ api/static/bootstrap-icons/eject-fill.svg | 3 ++ api/static/bootstrap-icons/eject.svg | 3 ++ .../bootstrap-icons/emoji-angry-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-angry.svg | 4 ++ .../bootstrap-icons/emoji-astonished-fill.svg | 3 ++ .../bootstrap-icons/emoji-astonished.svg | 4 ++ .../bootstrap-icons/emoji-dizzy-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-dizzy.svg | 4 ++ .../emoji-expressionless-fill.svg | 3 ++ .../bootstrap-icons/emoji-expressionless.svg | 4 ++ .../bootstrap-icons/emoji-frown-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-frown.svg | 4 ++ .../bootstrap-icons/emoji-grimace-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-grimace.svg | 4 ++ .../bootstrap-icons/emoji-grin-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-grin.svg | 4 ++ .../bootstrap-icons/emoji-heart-eyes-fill.svg | 3 ++ .../bootstrap-icons/emoji-heart-eyes.svg | 4 ++ .../bootstrap-icons/emoji-kiss-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-kiss.svg | 3 ++ .../bootstrap-icons/emoji-laughing-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-laughing.svg | 4 ++ .../bootstrap-icons/emoji-neutral-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-neutral.svg | 4 ++ .../bootstrap-icons/emoji-smile-fill.svg | 3 ++ .../emoji-smile-upside-down-fill.svg | 3 ++ .../emoji-smile-upside-down.svg | 4 ++ api/static/bootstrap-icons/emoji-smile.svg | 4 ++ .../bootstrap-icons/emoji-sunglasses-fill.svg | 3 ++ .../bootstrap-icons/emoji-sunglasses.svg | 4 ++ .../bootstrap-icons/emoji-surprise-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-surprise.svg | 4 ++ .../bootstrap-icons/emoji-tear-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-tear.svg | 4 ++ .../bootstrap-icons/emoji-wink-fill.svg | 3 ++ api/static/bootstrap-icons/emoji-wink.svg | 4 ++ .../envelope-arrow-down-fill.svg | 4 ++ .../bootstrap-icons/envelope-arrow-down.svg | 4 ++ .../envelope-arrow-up-fill.svg | 4 ++ .../bootstrap-icons/envelope-arrow-up.svg | 4 ++ .../bootstrap-icons/envelope-at-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-at.svg | 4 ++ .../bootstrap-icons/envelope-check-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-check.svg | 4 ++ .../bootstrap-icons/envelope-dash-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-dash.svg | 4 ++ .../envelope-exclamation-fill.svg | 4 ++ .../bootstrap-icons/envelope-exclamation.svg | 4 ++ api/static/bootstrap-icons/envelope-fill.svg | 3 ++ .../bootstrap-icons/envelope-heart-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-heart.svg | 3 ++ .../bootstrap-icons/envelope-open-fill.svg | 3 ++ .../envelope-open-heart-fill.svg | 4 ++ .../bootstrap-icons/envelope-open-heart.svg | 3 ++ api/static/bootstrap-icons/envelope-open.svg | 3 ++ .../bootstrap-icons/envelope-paper-fill.svg | 3 ++ .../envelope-paper-heart-fill.svg | 3 ++ .../bootstrap-icons/envelope-paper-heart.svg | 3 ++ api/static/bootstrap-icons/envelope-paper.svg | 3 ++ .../bootstrap-icons/envelope-plus-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-plus.svg | 4 ++ .../bootstrap-icons/envelope-slash-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-slash.svg | 4 ++ .../bootstrap-icons/envelope-x-fill.svg | 4 ++ api/static/bootstrap-icons/envelope-x.svg | 4 ++ api/static/bootstrap-icons/envelope.svg | 3 ++ api/static/bootstrap-icons/eraser-fill.svg | 3 ++ api/static/bootstrap-icons/eraser.svg | 3 ++ api/static/bootstrap-icons/escape.svg | 4 ++ api/static/bootstrap-icons/ethernet.svg | 4 ++ api/static/bootstrap-icons/ev-front-fill.svg | 3 ++ api/static/bootstrap-icons/ev-front.svg | 4 ++ .../bootstrap-icons/ev-station-fill.svg | 3 ++ api/static/bootstrap-icons/ev-station.svg | 4 ++ .../exclamation-circle-fill.svg | 3 ++ .../bootstrap-icons/exclamation-circle.svg | 4 ++ .../exclamation-diamond-fill.svg | 3 ++ .../bootstrap-icons/exclamation-diamond.svg | 4 ++ api/static/bootstrap-icons/exclamation-lg.svg | 3 ++ .../exclamation-octagon-fill.svg | 3 ++ .../bootstrap-icons/exclamation-octagon.svg | 4 ++ .../exclamation-square-fill.svg | 3 ++ .../bootstrap-icons/exclamation-square.svg | 4 ++ .../exclamation-triangle-fill.svg | 3 ++ .../bootstrap-icons/exclamation-triangle.svg | 4 ++ api/static/bootstrap-icons/exclamation.svg | 3 ++ api/static/bootstrap-icons/exclude.svg | 3 ++ api/static/bootstrap-icons/explicit-fill.svg | 3 ++ api/static/bootstrap-icons/explicit.svg | 4 ++ api/static/bootstrap-icons/exposure.svg | 4 ++ api/static/bootstrap-icons/eye-fill.svg | 4 ++ api/static/bootstrap-icons/eye-slash-fill.svg | 4 ++ api/static/bootstrap-icons/eye-slash.svg | 5 ++ api/static/bootstrap-icons/eye.svg | 4 ++ api/static/bootstrap-icons/eyedropper.svg | 3 ++ api/static/bootstrap-icons/eyeglasses.svg | 3 ++ api/static/bootstrap-icons/facebook.svg | 3 ++ api/static/bootstrap-icons/fan.svg | 4 ++ .../bootstrap-icons/fast-forward-btn-fill.svg | 3 ++ .../bootstrap-icons/fast-forward-btn.svg | 4 ++ .../fast-forward-circle-fill.svg | 3 ++ .../bootstrap-icons/fast-forward-circle.svg | 4 ++ .../bootstrap-icons/fast-forward-fill.svg | 4 ++ api/static/bootstrap-icons/fast-forward.svg | 4 ++ api/static/bootstrap-icons/feather.svg | 3 ++ api/static/bootstrap-icons/feather2.svg | 3 ++ .../bootstrap-icons/file-arrow-down-fill.svg | 3 ++ .../bootstrap-icons/file-arrow-down.svg | 4 ++ .../bootstrap-icons/file-arrow-up-fill.svg | 3 ++ api/static/bootstrap-icons/file-arrow-up.svg | 4 ++ .../bootstrap-icons/file-bar-graph-fill.svg | 3 ++ api/static/bootstrap-icons/file-bar-graph.svg | 4 ++ .../bootstrap-icons/file-binary-fill.svg | 4 ++ api/static/bootstrap-icons/file-binary.svg | 4 ++ .../bootstrap-icons/file-break-fill.svg | 3 ++ api/static/bootstrap-icons/file-break.svg | 3 ++ .../bootstrap-icons/file-check-fill.svg | 3 ++ api/static/bootstrap-icons/file-check.svg | 4 ++ api/static/bootstrap-icons/file-code-fill.svg | 3 ++ api/static/bootstrap-icons/file-code.svg | 4 ++ api/static/bootstrap-icons/file-diff-fill.svg | 3 ++ api/static/bootstrap-icons/file-diff.svg | 4 ++ .../file-earmark-arrow-down-fill.svg | 3 ++ .../file-earmark-arrow-down.svg | 4 ++ .../file-earmark-arrow-up-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-arrow-up.svg | 4 ++ .../file-earmark-bar-graph-fill.svg | 3 ++ .../file-earmark-bar-graph.svg | 4 ++ .../file-earmark-binary-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-binary.svg | 4 ++ .../file-earmark-break-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-break.svg | 3 ++ .../file-earmark-check-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-check.svg | 4 ++ .../file-earmark-code-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-code.svg | 4 ++ .../file-earmark-diff-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-diff.svg | 4 ++ .../file-earmark-easel-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-easel.svg | 4 ++ .../file-earmark-excel-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-excel.svg | 4 ++ .../bootstrap-icons/file-earmark-fill.svg | 3 ++ .../file-earmark-font-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-font.svg | 4 ++ .../file-earmark-image-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-image.svg | 4 ++ .../file-earmark-lock-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-lock.svg | 4 ++ .../file-earmark-lock2-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-lock2.svg | 4 ++ .../file-earmark-medical-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-medical.svg | 4 ++ .../file-earmark-minus-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-minus.svg | 4 ++ .../file-earmark-music-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-music.svg | 4 ++ .../bootstrap-icons/file-earmark-pdf-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-pdf.svg | 4 ++ .../file-earmark-person-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-person.svg | 4 ++ .../file-earmark-play-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-play.svg | 4 ++ .../file-earmark-plus-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-plus.svg | 4 ++ .../file-earmark-post-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-post.svg | 4 ++ .../bootstrap-icons/file-earmark-ppt-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-ppt.svg | 4 ++ .../file-earmark-richtext-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-richtext.svg | 4 ++ .../file-earmark-ruled-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-ruled.svg | 3 ++ .../file-earmark-slides-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-slides.svg | 4 ++ .../file-earmark-spreadsheet-fill.svg | 4 ++ .../file-earmark-spreadsheet.svg | 3 ++ .../file-earmark-text-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-text.svg | 4 ++ .../file-earmark-word-fill.svg | 3 ++ .../bootstrap-icons/file-earmark-word.svg | 4 ++ .../bootstrap-icons/file-earmark-x-fill.svg | 3 ++ api/static/bootstrap-icons/file-earmark-x.svg | 4 ++ .../bootstrap-icons/file-earmark-zip-fill.svg | 4 ++ .../bootstrap-icons/file-earmark-zip.svg | 4 ++ api/static/bootstrap-icons/file-earmark.svg | 3 ++ .../bootstrap-icons/file-easel-fill.svg | 4 ++ api/static/bootstrap-icons/file-easel.svg | 4 ++ .../bootstrap-icons/file-excel-fill.svg | 3 ++ api/static/bootstrap-icons/file-excel.svg | 4 ++ api/static/bootstrap-icons/file-fill.svg | 3 ++ api/static/bootstrap-icons/file-font-fill.svg | 3 ++ api/static/bootstrap-icons/file-font.svg | 4 ++ .../bootstrap-icons/file-image-fill.svg | 4 ++ api/static/bootstrap-icons/file-image.svg | 4 ++ api/static/bootstrap-icons/file-lock-fill.svg | 4 ++ api/static/bootstrap-icons/file-lock.svg | 4 ++ .../bootstrap-icons/file-lock2-fill.svg | 4 ++ api/static/bootstrap-icons/file-lock2.svg | 4 ++ .../bootstrap-icons/file-medical-fill.svg | 3 ++ api/static/bootstrap-icons/file-medical.svg | 4 ++ .../bootstrap-icons/file-minus-fill.svg | 3 ++ api/static/bootstrap-icons/file-minus.svg | 4 ++ .../bootstrap-icons/file-music-fill.svg | 3 ++ api/static/bootstrap-icons/file-music.svg | 4 ++ api/static/bootstrap-icons/file-pdf-fill.svg | 4 ++ api/static/bootstrap-icons/file-pdf.svg | 4 ++ .../bootstrap-icons/file-person-fill.svg | 3 ++ api/static/bootstrap-icons/file-person.svg | 4 ++ api/static/bootstrap-icons/file-play-fill.svg | 3 ++ api/static/bootstrap-icons/file-play.svg | 4 ++ api/static/bootstrap-icons/file-plus-fill.svg | 3 ++ api/static/bootstrap-icons/file-plus.svg | 4 ++ api/static/bootstrap-icons/file-post-fill.svg | 3 ++ api/static/bootstrap-icons/file-post.svg | 4 ++ api/static/bootstrap-icons/file-ppt-fill.svg | 4 ++ api/static/bootstrap-icons/file-ppt.svg | 4 ++ .../bootstrap-icons/file-richtext-fill.svg | 3 ++ api/static/bootstrap-icons/file-richtext.svg | 4 ++ .../bootstrap-icons/file-ruled-fill.svg | 3 ++ api/static/bootstrap-icons/file-ruled.svg | 3 ++ .../bootstrap-icons/file-slides-fill.svg | 4 ++ api/static/bootstrap-icons/file-slides.svg | 4 ++ .../bootstrap-icons/file-spreadsheet-fill.svg | 3 ++ .../bootstrap-icons/file-spreadsheet.svg | 3 ++ api/static/bootstrap-icons/file-text-fill.svg | 3 ++ api/static/bootstrap-icons/file-text.svg | 4 ++ api/static/bootstrap-icons/file-word-fill.svg | 3 ++ api/static/bootstrap-icons/file-word.svg | 4 ++ api/static/bootstrap-icons/file-x-fill.svg | 3 ++ api/static/bootstrap-icons/file-x.svg | 4 ++ api/static/bootstrap-icons/file-zip-fill.svg | 4 ++ api/static/bootstrap-icons/file-zip.svg | 4 ++ api/static/bootstrap-icons/file.svg | 3 ++ api/static/bootstrap-icons/files-alt.svg | 3 ++ api/static/bootstrap-icons/files.svg | 3 ++ api/static/bootstrap-icons/filetype-aac.svg | 3 ++ api/static/bootstrap-icons/filetype-ai.svg | 3 ++ api/static/bootstrap-icons/filetype-bmp.svg | 3 ++ api/static/bootstrap-icons/filetype-cs.svg | 3 ++ api/static/bootstrap-icons/filetype-css.svg | 3 ++ api/static/bootstrap-icons/filetype-csv.svg | 3 ++ api/static/bootstrap-icons/filetype-doc.svg | 3 ++ api/static/bootstrap-icons/filetype-docx.svg | 3 ++ api/static/bootstrap-icons/filetype-exe.svg | 3 ++ api/static/bootstrap-icons/filetype-gif.svg | 3 ++ api/static/bootstrap-icons/filetype-heic.svg | 3 ++ api/static/bootstrap-icons/filetype-html.svg | 3 ++ api/static/bootstrap-icons/filetype-java.svg | 3 ++ api/static/bootstrap-icons/filetype-jpg.svg | 3 ++ api/static/bootstrap-icons/filetype-js.svg | 3 ++ api/static/bootstrap-icons/filetype-json.svg | 3 ++ api/static/bootstrap-icons/filetype-jsx.svg | 3 ++ api/static/bootstrap-icons/filetype-key.svg | 3 ++ api/static/bootstrap-icons/filetype-m4p.svg | 3 ++ api/static/bootstrap-icons/filetype-md.svg | 3 ++ api/static/bootstrap-icons/filetype-mdx.svg | 3 ++ api/static/bootstrap-icons/filetype-mov.svg | 3 ++ api/static/bootstrap-icons/filetype-mp3.svg | 3 ++ api/static/bootstrap-icons/filetype-mp4.svg | 3 ++ api/static/bootstrap-icons/filetype-otf.svg | 3 ++ api/static/bootstrap-icons/filetype-pdf.svg | 3 ++ api/static/bootstrap-icons/filetype-php.svg | 3 ++ api/static/bootstrap-icons/filetype-png.svg | 3 ++ api/static/bootstrap-icons/filetype-ppt.svg | 3 ++ api/static/bootstrap-icons/filetype-pptx.svg | 3 ++ api/static/bootstrap-icons/filetype-psd.svg | 3 ++ api/static/bootstrap-icons/filetype-py.svg | 3 ++ api/static/bootstrap-icons/filetype-raw.svg | 3 ++ api/static/bootstrap-icons/filetype-rb.svg | 3 ++ api/static/bootstrap-icons/filetype-sass.svg | 3 ++ api/static/bootstrap-icons/filetype-scss.svg | 3 ++ api/static/bootstrap-icons/filetype-sh.svg | 3 ++ api/static/bootstrap-icons/filetype-sql.svg | 3 ++ api/static/bootstrap-icons/filetype-svg.svg | 3 ++ api/static/bootstrap-icons/filetype-tiff.svg | 3 ++ api/static/bootstrap-icons/filetype-tsx.svg | 3 ++ api/static/bootstrap-icons/filetype-ttf.svg | 3 ++ api/static/bootstrap-icons/filetype-txt.svg | 3 ++ api/static/bootstrap-icons/filetype-wav.svg | 3 ++ api/static/bootstrap-icons/filetype-woff.svg | 3 ++ api/static/bootstrap-icons/filetype-xls.svg | 3 ++ api/static/bootstrap-icons/filetype-xlsx.svg | 3 ++ api/static/bootstrap-icons/filetype-xml.svg | 3 ++ api/static/bootstrap-icons/filetype-yml.svg | 3 ++ api/static/bootstrap-icons/film.svg | 3 ++ .../bootstrap-icons/filter-circle-fill.svg | 3 ++ api/static/bootstrap-icons/filter-circle.svg | 4 ++ api/static/bootstrap-icons/filter-left.svg | 3 ++ api/static/bootstrap-icons/filter-right.svg | 3 ++ .../bootstrap-icons/filter-square-fill.svg | 3 ++ api/static/bootstrap-icons/filter-square.svg | 4 ++ api/static/bootstrap-icons/filter.svg | 3 ++ api/static/bootstrap-icons/fingerprint.svg | 7 +++ api/static/bootstrap-icons/fire.svg | 3 ++ api/static/bootstrap-icons/flag-fill.svg | 3 ++ api/static/bootstrap-icons/flag.svg | 3 ++ api/static/bootstrap-icons/floppy-fill.svg | 4 ++ api/static/bootstrap-icons/floppy.svg | 4 ++ api/static/bootstrap-icons/floppy2-fill.svg | 4 ++ api/static/bootstrap-icons/floppy2.svg | 3 ++ api/static/bootstrap-icons/flower1.svg | 3 ++ api/static/bootstrap-icons/flower2.svg | 3 ++ api/static/bootstrap-icons/flower3.svg | 3 ++ api/static/bootstrap-icons/folder-check.svg | 4 ++ api/static/bootstrap-icons/folder-fill.svg | 3 ++ api/static/bootstrap-icons/folder-minus.svg | 4 ++ api/static/bootstrap-icons/folder-plus.svg | 4 ++ .../bootstrap-icons/folder-symlink-fill.svg | 3 ++ api/static/bootstrap-icons/folder-symlink.svg | 4 ++ api/static/bootstrap-icons/folder-x.svg | 4 ++ api/static/bootstrap-icons/folder.svg | 3 ++ api/static/bootstrap-icons/folder2-open.svg | 3 ++ api/static/bootstrap-icons/folder2.svg | 3 ++ api/static/bootstrap-icons/fonts.svg | 3 ++ api/static/bootstrap-icons/forward-fill.svg | 3 ++ api/static/bootstrap-icons/forward.svg | 3 ++ api/static/bootstrap-icons/front.svg | 3 ++ .../bootstrap-icons/fuel-pump-diesel-fill.svg | 4 ++ .../bootstrap-icons/fuel-pump-diesel.svg | 4 ++ api/static/bootstrap-icons/fuel-pump-fill.svg | 3 ++ api/static/bootstrap-icons/fuel-pump.svg | 4 ++ .../bootstrap-icons/fullscreen-exit.svg | 3 ++ api/static/bootstrap-icons/fullscreen.svg | 3 ++ api/static/bootstrap-icons/funnel-fill.svg | 3 ++ api/static/bootstrap-icons/funnel.svg | 3 ++ api/static/bootstrap-icons/gear-fill.svg | 3 ++ .../bootstrap-icons/gear-wide-connected.svg | 3 ++ api/static/bootstrap-icons/gear-wide.svg | 3 ++ api/static/bootstrap-icons/gear.svg | 4 ++ api/static/bootstrap-icons/gem.svg | 3 ++ .../bootstrap-icons/gender-ambiguous.svg | 3 ++ api/static/bootstrap-icons/gender-female.svg | 3 ++ api/static/bootstrap-icons/gender-male.svg | 3 ++ api/static/bootstrap-icons/gender-neuter.svg | 3 ++ api/static/bootstrap-icons/gender-trans.svg | 3 ++ api/static/bootstrap-icons/geo-alt-fill.svg | 3 ++ api/static/bootstrap-icons/geo-alt.svg | 4 ++ api/static/bootstrap-icons/geo-fill.svg | 3 ++ api/static/bootstrap-icons/geo.svg | 3 ++ api/static/bootstrap-icons/gift-fill.svg | 3 ++ api/static/bootstrap-icons/gift.svg | 3 ++ api/static/bootstrap-icons/git.svg | 3 ++ api/static/bootstrap-icons/github.svg | 3 ++ api/static/bootstrap-icons/gitlab.svg | 3 ++ api/static/bootstrap-icons/globe-americas.svg | 3 ++ .../bootstrap-icons/globe-asia-australia.svg | 4 ++ .../globe-central-south-asia.svg | 3 ++ .../bootstrap-icons/globe-europe-africa.svg | 3 ++ api/static/bootstrap-icons/globe.svg | 3 ++ api/static/bootstrap-icons/globe2.svg | 3 ++ api/static/bootstrap-icons/google-play.svg | 3 ++ api/static/bootstrap-icons/google.svg | 3 ++ api/static/bootstrap-icons/gpu-card.svg | 5 ++ .../bootstrap-icons/graph-down-arrow.svg | 3 ++ api/static/bootstrap-icons/graph-down.svg | 3 ++ api/static/bootstrap-icons/graph-up-arrow.svg | 3 ++ api/static/bootstrap-icons/graph-up.svg | 3 ++ api/static/bootstrap-icons/grid-1x2-fill.svg | 3 ++ api/static/bootstrap-icons/grid-1x2.svg | 3 ++ .../bootstrap-icons/grid-3x2-gap-fill.svg | 3 ++ api/static/bootstrap-icons/grid-3x2-gap.svg | 3 ++ api/static/bootstrap-icons/grid-3x2.svg | 3 ++ .../bootstrap-icons/grid-3x3-gap-fill.svg | 3 ++ api/static/bootstrap-icons/grid-3x3-gap.svg | 3 ++ api/static/bootstrap-icons/grid-3x3.svg | 3 ++ api/static/bootstrap-icons/grid-fill.svg | 3 ++ api/static/bootstrap-icons/grid.svg | 3 ++ .../bootstrap-icons/grip-horizontal.svg | 3 ++ api/static/bootstrap-icons/grip-vertical.svg | 3 ++ api/static/bootstrap-icons/h-circle-fill.svg | 3 ++ api/static/bootstrap-icons/h-circle.svg | 3 ++ api/static/bootstrap-icons/h-square-fill.svg | 3 ++ api/static/bootstrap-icons/h-square.svg | 4 ++ api/static/bootstrap-icons/hammer.svg | 3 ++ .../bootstrap-icons/hand-index-fill.svg | 3 ++ .../bootstrap-icons/hand-index-thumb-fill.svg | 3 ++ .../bootstrap-icons/hand-index-thumb.svg | 3 ++ api/static/bootstrap-icons/hand-index.svg | 3 ++ .../bootstrap-icons/hand-thumbs-down-fill.svg | 3 ++ .../bootstrap-icons/hand-thumbs-down.svg | 3 ++ .../bootstrap-icons/hand-thumbs-up-fill.svg | 3 ++ api/static/bootstrap-icons/hand-thumbs-up.svg | 3 ++ api/static/bootstrap-icons/handbag-fill.svg | 3 ++ api/static/bootstrap-icons/handbag.svg | 3 ++ api/static/bootstrap-icons/hash.svg | 3 ++ api/static/bootstrap-icons/hdd-fill.svg | 3 ++ .../bootstrap-icons/hdd-network-fill.svg | 3 ++ api/static/bootstrap-icons/hdd-network.svg | 4 ++ api/static/bootstrap-icons/hdd-rack-fill.svg | 3 ++ api/static/bootstrap-icons/hdd-rack.svg | 4 ++ api/static/bootstrap-icons/hdd-stack-fill.svg | 3 ++ api/static/bootstrap-icons/hdd-stack.svg | 5 ++ api/static/bootstrap-icons/hdd.svg | 4 ++ api/static/bootstrap-icons/hdmi-fill.svg | 3 ++ api/static/bootstrap-icons/hdmi.svg | 4 ++ api/static/bootstrap-icons/headphones.svg | 3 ++ api/static/bootstrap-icons/headset-vr.svg | 4 ++ api/static/bootstrap-icons/headset.svg | 3 ++ api/static/bootstrap-icons/heart-arrow.svg | 3 ++ api/static/bootstrap-icons/heart-fill.svg | 3 ++ api/static/bootstrap-icons/heart-half.svg | 3 ++ .../bootstrap-icons/heart-pulse-fill.svg | 4 ++ api/static/bootstrap-icons/heart-pulse.svg | 4 ++ api/static/bootstrap-icons/heart.svg | 3 ++ .../bootstrap-icons/heartbreak-fill.svg | 3 ++ api/static/bootstrap-icons/heartbreak.svg | 3 ++ api/static/bootstrap-icons/hearts.svg | 3 ++ api/static/bootstrap-icons/heptagon-fill.svg | 3 ++ api/static/bootstrap-icons/heptagon-half.svg | 3 ++ api/static/bootstrap-icons/heptagon.svg | 3 ++ api/static/bootstrap-icons/hexagon-fill.svg | 3 ++ api/static/bootstrap-icons/hexagon-half.svg | 3 ++ api/static/bootstrap-icons/hexagon.svg | 3 ++ api/static/bootstrap-icons/highlighter.svg | 3 ++ api/static/bootstrap-icons/highlights.svg | 3 ++ api/static/bootstrap-icons/hospital-fill.svg | 3 ++ api/static/bootstrap-icons/hospital.svg | 4 ++ .../bootstrap-icons/hourglass-bottom.svg | 3 ++ .../bootstrap-icons/hourglass-split.svg | 3 ++ api/static/bootstrap-icons/hourglass-top.svg | 3 ++ api/static/bootstrap-icons/hourglass.svg | 3 ++ api/static/bootstrap-icons/house-add-fill.svg | 5 ++ api/static/bootstrap-icons/house-add.svg | 4 ++ .../bootstrap-icons/house-check-fill.svg | 5 ++ api/static/bootstrap-icons/house-check.svg | 4 ++ .../bootstrap-icons/house-dash-fill.svg | 5 ++ api/static/bootstrap-icons/house-dash.svg | 4 ++ .../bootstrap-icons/house-door-fill.svg | 3 ++ api/static/bootstrap-icons/house-door.svg | 3 ++ .../bootstrap-icons/house-down-fill.svg | 5 ++ api/static/bootstrap-icons/house-down.svg | 4 ++ .../house-exclamation-fill.svg | 5 ++ .../bootstrap-icons/house-exclamation.svg | 4 ++ api/static/bootstrap-icons/house-fill.svg | 4 ++ .../bootstrap-icons/house-gear-fill.svg | 5 ++ api/static/bootstrap-icons/house-gear.svg | 4 ++ .../bootstrap-icons/house-heart-fill.svg | 4 ++ api/static/bootstrap-icons/house-heart.svg | 4 ++ .../bootstrap-icons/house-lock-fill.svg | 5 ++ api/static/bootstrap-icons/house-lock.svg | 4 ++ .../bootstrap-icons/house-slash-fill.svg | 5 ++ api/static/bootstrap-icons/house-slash.svg | 4 ++ api/static/bootstrap-icons/house-up-fill.svg | 5 ++ api/static/bootstrap-icons/house-up.svg | 4 ++ api/static/bootstrap-icons/house-x-fill.svg | 5 ++ api/static/bootstrap-icons/house-x.svg | 4 ++ api/static/bootstrap-icons/house.svg | 3 ++ api/static/bootstrap-icons/houses-fill.svg | 4 ++ api/static/bootstrap-icons/houses.svg | 3 ++ api/static/bootstrap-icons/hr.svg | 3 ++ api/static/bootstrap-icons/hurricane.svg | 3 ++ api/static/bootstrap-icons/hypnotize.svg | 4 ++ api/static/bootstrap-icons/image-alt.svg | 3 ++ api/static/bootstrap-icons/image-fill.svg | 3 ++ api/static/bootstrap-icons/image.svg | 4 ++ api/static/bootstrap-icons/images.svg | 4 ++ api/static/bootstrap-icons/inbox-fill.svg | 3 ++ api/static/bootstrap-icons/inbox.svg | 3 ++ api/static/bootstrap-icons/inboxes-fill.svg | 3 ++ api/static/bootstrap-icons/inboxes.svg | 3 ++ api/static/bootstrap-icons/incognito.svg | 3 ++ api/static/bootstrap-icons/indent.svg | 4 ++ api/static/bootstrap-icons/infinity.svg | 3 ++ .../bootstrap-icons/info-circle-fill.svg | 3 ++ api/static/bootstrap-icons/info-circle.svg | 4 ++ api/static/bootstrap-icons/info-lg.svg | 3 ++ .../bootstrap-icons/info-square-fill.svg | 3 ++ api/static/bootstrap-icons/info-square.svg | 4 ++ api/static/bootstrap-icons/info.svg | 3 ++ .../bootstrap-icons/input-cursor-text.svg | 4 ++ api/static/bootstrap-icons/input-cursor.svg | 4 ++ api/static/bootstrap-icons/instagram.svg | 3 ++ api/static/bootstrap-icons/intersect.svg | 3 ++ api/static/bootstrap-icons/journal-album.svg | 5 ++ .../bootstrap-icons/journal-arrow-down.svg | 5 ++ .../bootstrap-icons/journal-arrow-up.svg | 5 ++ .../bootstrap-icons/journal-bookmark-fill.svg | 5 ++ .../bootstrap-icons/journal-bookmark.svg | 5 ++ api/static/bootstrap-icons/journal-check.svg | 5 ++ api/static/bootstrap-icons/journal-code.svg | 5 ++ .../bootstrap-icons/journal-medical.svg | 5 ++ api/static/bootstrap-icons/journal-minus.svg | 5 ++ api/static/bootstrap-icons/journal-plus.svg | 5 ++ .../bootstrap-icons/journal-richtext.svg | 5 ++ api/static/bootstrap-icons/journal-text.svg | 5 ++ api/static/bootstrap-icons/journal-x.svg | 5 ++ api/static/bootstrap-icons/journal.svg | 4 ++ api/static/bootstrap-icons/journals.svg | 4 ++ api/static/bootstrap-icons/joystick.svg | 4 ++ api/static/bootstrap-icons/justify-left.svg | 3 ++ api/static/bootstrap-icons/justify-right.svg | 3 ++ api/static/bootstrap-icons/justify.svg | 3 ++ api/static/bootstrap-icons/kanban-fill.svg | 3 ++ api/static/bootstrap-icons/kanban.svg | 4 ++ api/static/bootstrap-icons/key-fill.svg | 3 ++ api/static/bootstrap-icons/key.svg | 4 ++ api/static/bootstrap-icons/keyboard-fill.svg | 3 ++ api/static/bootstrap-icons/keyboard.svg | 4 ++ api/static/bootstrap-icons/ladder.svg | 3 ++ api/static/bootstrap-icons/lamp-fill.svg | 4 ++ api/static/bootstrap-icons/lamp.svg | 4 ++ api/static/bootstrap-icons/laptop-fill.svg | 3 ++ api/static/bootstrap-icons/laptop.svg | 3 ++ api/static/bootstrap-icons/layer-backward.svg | 4 ++ api/static/bootstrap-icons/layer-forward.svg | 4 ++ api/static/bootstrap-icons/layers-fill.svg | 4 ++ api/static/bootstrap-icons/layers-half.svg | 3 ++ api/static/bootstrap-icons/layers.svg | 3 ++ .../layout-sidebar-inset-reverse.svg | 4 ++ .../bootstrap-icons/layout-sidebar-inset.svg | 4 ++ .../layout-sidebar-reverse.svg | 3 ++ api/static/bootstrap-icons/layout-sidebar.svg | 3 ++ api/static/bootstrap-icons/layout-split.svg | 3 ++ .../layout-text-sidebar-reverse.svg | 4 ++ .../bootstrap-icons/layout-text-sidebar.svg | 4 ++ .../layout-text-window-reverse.svg | 4 ++ .../bootstrap-icons/layout-text-window.svg | 4 ++ .../bootstrap-icons/layout-three-columns.svg | 3 ++ api/static/bootstrap-icons/layout-wtf.svg | 3 ++ api/static/bootstrap-icons/life-preserver.svg | 3 ++ api/static/bootstrap-icons/lightbulb-fill.svg | 3 ++ .../bootstrap-icons/lightbulb-off-fill.svg | 3 ++ api/static/bootstrap-icons/lightbulb-off.svg | 3 ++ api/static/bootstrap-icons/lightbulb.svg | 3 ++ .../bootstrap-icons/lightning-charge-fill.svg | 3 ++ .../bootstrap-icons/lightning-charge.svg | 3 ++ api/static/bootstrap-icons/lightning-fill.svg | 3 ++ api/static/bootstrap-icons/lightning.svg | 3 ++ api/static/bootstrap-icons/line.svg | 3 ++ api/static/bootstrap-icons/link-45deg.svg | 4 ++ api/static/bootstrap-icons/link.svg | 4 ++ api/static/bootstrap-icons/linkedin.svg | 3 ++ api/static/bootstrap-icons/list-check.svg | 3 ++ .../bootstrap-icons/list-columns-reverse.svg | 3 ++ api/static/bootstrap-icons/list-columns.svg | 3 ++ api/static/bootstrap-icons/list-nested.svg | 3 ++ api/static/bootstrap-icons/list-ol.svg | 4 ++ api/static/bootstrap-icons/list-stars.svg | 4 ++ api/static/bootstrap-icons/list-task.svg | 5 ++ api/static/bootstrap-icons/list-ul.svg | 3 ++ api/static/bootstrap-icons/list.svg | 3 ++ api/static/bootstrap-icons/lock-fill.svg | 3 ++ api/static/bootstrap-icons/lock.svg | 3 ++ api/static/bootstrap-icons/luggage-fill.svg | 4 ++ api/static/bootstrap-icons/luggage.svg | 4 ++ api/static/bootstrap-icons/lungs-fill.svg | 3 ++ api/static/bootstrap-icons/lungs.svg | 3 ++ api/static/bootstrap-icons/magic.svg | 3 ++ api/static/bootstrap-icons/magnet-fill.svg | 3 ++ api/static/bootstrap-icons/magnet.svg | 3 ++ api/static/bootstrap-icons/mailbox-flag.svg | 4 ++ api/static/bootstrap-icons/mailbox.svg | 4 ++ api/static/bootstrap-icons/mailbox2-flag.svg | 4 ++ api/static/bootstrap-icons/mailbox2.svg | 4 ++ api/static/bootstrap-icons/map-fill.svg | 3 ++ api/static/bootstrap-icons/map.svg | 3 ++ api/static/bootstrap-icons/markdown-fill.svg | 3 ++ api/static/bootstrap-icons/markdown.svg | 6 +++ api/static/bootstrap-icons/marker-tip.svg | 3 ++ api/static/bootstrap-icons/mask.svg | 3 ++ api/static/bootstrap-icons/mastodon.svg | 3 ++ api/static/bootstrap-icons/medium.svg | 3 ++ api/static/bootstrap-icons/megaphone-fill.svg | 3 ++ api/static/bootstrap-icons/megaphone.svg | 3 ++ api/static/bootstrap-icons/memory.svg | 3 ++ api/static/bootstrap-icons/menu-app-fill.svg | 3 ++ api/static/bootstrap-icons/menu-app.svg | 3 ++ .../bootstrap-icons/menu-button-fill.svg | 3 ++ .../bootstrap-icons/menu-button-wide-fill.svg | 3 ++ .../bootstrap-icons/menu-button-wide.svg | 4 ++ api/static/bootstrap-icons/menu-button.svg | 4 ++ api/static/bootstrap-icons/menu-down.svg | 3 ++ api/static/bootstrap-icons/menu-up.svg | 3 ++ api/static/bootstrap-icons/messenger.svg | 3 ++ api/static/bootstrap-icons/meta.svg | 3 ++ api/static/bootstrap-icons/mic-fill.svg | 4 ++ api/static/bootstrap-icons/mic-mute-fill.svg | 4 ++ api/static/bootstrap-icons/mic-mute.svg | 4 ++ api/static/bootstrap-icons/mic.svg | 4 ++ .../bootstrap-icons/microsoft-teams.svg | 4 ++ api/static/bootstrap-icons/microsoft.svg | 3 ++ .../bootstrap-icons/minecart-loaded.svg | 4 ++ api/static/bootstrap-icons/minecart.svg | 3 ++ api/static/bootstrap-icons/modem-fill.svg | 3 ++ api/static/bootstrap-icons/modem.svg | 4 ++ api/static/bootstrap-icons/moisture.svg | 3 ++ api/static/bootstrap-icons/moon-fill.svg | 3 ++ .../bootstrap-icons/moon-stars-fill.svg | 4 ++ api/static/bootstrap-icons/moon-stars.svg | 4 ++ api/static/bootstrap-icons/moon.svg | 3 ++ .../bootstrap-icons/mortarboard-fill.svg | 4 ++ api/static/bootstrap-icons/mortarboard.svg | 4 ++ .../bootstrap-icons/motherboard-fill.svg | 4 ++ api/static/bootstrap-icons/motherboard.svg | 4 ++ api/static/bootstrap-icons/mouse-fill.svg | 3 ++ api/static/bootstrap-icons/mouse.svg | 3 ++ api/static/bootstrap-icons/mouse2-fill.svg | 3 ++ api/static/bootstrap-icons/mouse2.svg | 3 ++ api/static/bootstrap-icons/mouse3-fill.svg | 3 ++ api/static/bootstrap-icons/mouse3.svg | 3 ++ .../bootstrap-icons/music-note-beamed.svg | 5 ++ .../bootstrap-icons/music-note-list.svg | 6 +++ api/static/bootstrap-icons/music-note.svg | 5 ++ .../bootstrap-icons/music-player-fill.svg | 4 ++ api/static/bootstrap-icons/music-player.svg | 5 ++ api/static/bootstrap-icons/newspaper.svg | 4 ++ .../bootstrap-icons/nintendo-switch.svg | 4 ++ .../bootstrap-icons/node-minus-fill.svg | 3 ++ api/static/bootstrap-icons/node-minus.svg | 3 ++ api/static/bootstrap-icons/node-plus-fill.svg | 3 ++ api/static/bootstrap-icons/node-plus.svg | 3 ++ .../bootstrap-icons/noise-reduction.svg | 4 ++ api/static/bootstrap-icons/nut-fill.svg | 3 ++ api/static/bootstrap-icons/nut.svg | 4 ++ api/static/bootstrap-icons/nvidia.svg | 3 ++ api/static/bootstrap-icons/nvme-fill.svg | 4 ++ api/static/bootstrap-icons/nvme.svg | 4 ++ api/static/bootstrap-icons/octagon-fill.svg | 3 ++ api/static/bootstrap-icons/octagon-half.svg | 3 ++ api/static/bootstrap-icons/octagon.svg | 3 ++ api/static/bootstrap-icons/opencollective.svg | 4 ++ .../bootstrap-icons/optical-audio-fill.svg | 4 ++ api/static/bootstrap-icons/optical-audio.svg | 5 ++ api/static/bootstrap-icons/option.svg | 3 ++ api/static/bootstrap-icons/outlet.svg | 4 ++ api/static/bootstrap-icons/p-circle-fill.svg | 3 ++ api/static/bootstrap-icons/p-circle.svg | 3 ++ api/static/bootstrap-icons/p-square-fill.svg | 4 ++ api/static/bootstrap-icons/p-square.svg | 4 ++ api/static/bootstrap-icons/paint-bucket.svg | 3 ++ api/static/bootstrap-icons/palette-fill.svg | 3 ++ api/static/bootstrap-icons/palette.svg | 4 ++ api/static/bootstrap-icons/palette2.svg | 3 ++ api/static/bootstrap-icons/paperclip.svg | 3 ++ api/static/bootstrap-icons/paragraph.svg | 3 ++ api/static/bootstrap-icons/pass-fill.svg | 3 ++ api/static/bootstrap-icons/pass.svg | 4 ++ api/static/bootstrap-icons/passport-fill.svg | 4 ++ api/static/bootstrap-icons/passport.svg | 4 ++ .../bootstrap-icons/patch-check-fill.svg | 3 ++ api/static/bootstrap-icons/patch-check.svg | 4 ++ .../patch-exclamation-fill.svg | 3 ++ .../bootstrap-icons/patch-exclamation.svg | 4 ++ .../bootstrap-icons/patch-minus-fill.svg | 3 ++ api/static/bootstrap-icons/patch-minus.svg | 4 ++ .../bootstrap-icons/patch-plus-fill.svg | 3 ++ api/static/bootstrap-icons/patch-plus.svg | 4 ++ .../bootstrap-icons/patch-question-fill.svg | 3 ++ api/static/bootstrap-icons/patch-question.svg | 5 ++ api/static/bootstrap-icons/pause-btn-fill.svg | 3 ++ api/static/bootstrap-icons/pause-btn.svg | 4 ++ .../bootstrap-icons/pause-circle-fill.svg | 3 ++ api/static/bootstrap-icons/pause-circle.svg | 4 ++ api/static/bootstrap-icons/pause-fill.svg | 3 ++ api/static/bootstrap-icons/pause.svg | 3 ++ api/static/bootstrap-icons/paypal.svg | 3 ++ .../bootstrap-icons/pc-display-horizontal.svg | 3 ++ api/static/bootstrap-icons/pc-display.svg | 3 ++ api/static/bootstrap-icons/pc-horizontal.svg | 3 ++ api/static/bootstrap-icons/pc.svg | 3 ++ .../bootstrap-icons/pci-card-network.svg | 5 ++ api/static/bootstrap-icons/pci-card-sound.svg | 5 ++ api/static/bootstrap-icons/pci-card.svg | 4 ++ api/static/bootstrap-icons/peace-fill.svg | 3 ++ api/static/bootstrap-icons/peace.svg | 3 ++ api/static/bootstrap-icons/pen-fill.svg | 3 ++ api/static/bootstrap-icons/pen.svg | 3 ++ api/static/bootstrap-icons/pencil-fill.svg | 3 ++ api/static/bootstrap-icons/pencil-square.svg | 4 ++ api/static/bootstrap-icons/pencil.svg | 3 ++ api/static/bootstrap-icons/pentagon-fill.svg | 3 ++ api/static/bootstrap-icons/pentagon-half.svg | 3 ++ api/static/bootstrap-icons/pentagon.svg | 3 ++ api/static/bootstrap-icons/people-fill.svg | 3 ++ api/static/bootstrap-icons/people.svg | 3 ++ api/static/bootstrap-icons/percent.svg | 3 ++ api/static/bootstrap-icons/person-add.svg | 4 ++ api/static/bootstrap-icons/person-arms-up.svg | 4 ++ .../bootstrap-icons/person-badge-fill.svg | 3 ++ api/static/bootstrap-icons/person-badge.svg | 4 ++ .../bootstrap-icons/person-bounding-box.svg | 4 ++ .../bootstrap-icons/person-check-fill.svg | 4 ++ api/static/bootstrap-icons/person-check.svg | 4 ++ api/static/bootstrap-icons/person-circle.svg | 4 ++ .../bootstrap-icons/person-dash-fill.svg | 4 ++ api/static/bootstrap-icons/person-dash.svg | 4 ++ api/static/bootstrap-icons/person-down.svg | 4 ++ .../bootstrap-icons/person-exclamation.svg | 4 ++ .../bootstrap-icons/person-fill-add.svg | 4 ++ .../bootstrap-icons/person-fill-check.svg | 4 ++ .../bootstrap-icons/person-fill-dash.svg | 4 ++ .../bootstrap-icons/person-fill-down.svg | 4 ++ .../person-fill-exclamation.svg | 4 ++ .../bootstrap-icons/person-fill-gear.svg | 3 ++ .../bootstrap-icons/person-fill-lock.svg | 3 ++ .../bootstrap-icons/person-fill-slash.svg | 3 ++ api/static/bootstrap-icons/person-fill-up.svg | 4 ++ api/static/bootstrap-icons/person-fill-x.svg | 4 ++ api/static/bootstrap-icons/person-fill.svg | 3 ++ api/static/bootstrap-icons/person-gear.svg | 3 ++ api/static/bootstrap-icons/person-heart.svg | 3 ++ api/static/bootstrap-icons/person-hearts.svg | 3 ++ .../bootstrap-icons/person-lines-fill.svg | 3 ++ api/static/bootstrap-icons/person-lock.svg | 3 ++ .../bootstrap-icons/person-plus-fill.svg | 4 ++ api/static/bootstrap-icons/person-plus.svg | 4 ++ .../bootstrap-icons/person-raised-hand.svg | 4 ++ api/static/bootstrap-icons/person-rolodex.svg | 4 ++ api/static/bootstrap-icons/person-slash.svg | 3 ++ api/static/bootstrap-icons/person-square.svg | 4 ++ .../bootstrap-icons/person-standing-dress.svg | 3 ++ .../bootstrap-icons/person-standing.svg | 3 ++ api/static/bootstrap-icons/person-up.svg | 4 ++ .../bootstrap-icons/person-vcard-fill.svg | 3 ++ api/static/bootstrap-icons/person-vcard.svg | 4 ++ api/static/bootstrap-icons/person-video.svg | 4 ++ api/static/bootstrap-icons/person-video2.svg | 4 ++ api/static/bootstrap-icons/person-video3.svg | 4 ++ api/static/bootstrap-icons/person-walking.svg | 4 ++ .../bootstrap-icons/person-wheelchair.svg | 3 ++ .../bootstrap-icons/person-workspace.svg | 4 ++ api/static/bootstrap-icons/person-x-fill.svg | 3 ++ api/static/bootstrap-icons/person-x.svg | 4 ++ api/static/bootstrap-icons/person.svg | 3 ++ api/static/bootstrap-icons/phone-fill.svg | 3 ++ api/static/bootstrap-icons/phone-flip.svg | 3 ++ .../bootstrap-icons/phone-landscape-fill.svg | 3 ++ .../bootstrap-icons/phone-landscape.svg | 4 ++ .../bootstrap-icons/phone-vibrate-fill.svg | 3 ++ api/static/bootstrap-icons/phone-vibrate.svg | 4 ++ api/static/bootstrap-icons/phone.svg | 4 ++ api/static/bootstrap-icons/pie-chart-fill.svg | 3 ++ api/static/bootstrap-icons/pie-chart.svg | 3 ++ .../bootstrap-icons/piggy-bank-fill.svg | 3 ++ api/static/bootstrap-icons/piggy-bank.svg | 4 ++ api/static/bootstrap-icons/pin-angle-fill.svg | 3 ++ api/static/bootstrap-icons/pin-angle.svg | 3 ++ api/static/bootstrap-icons/pin-fill.svg | 3 ++ api/static/bootstrap-icons/pin-map-fill.svg | 4 ++ api/static/bootstrap-icons/pin-map.svg | 4 ++ api/static/bootstrap-icons/pin.svg | 3 ++ api/static/bootstrap-icons/pinterest.svg | 3 ++ api/static/bootstrap-icons/pip-fill.svg | 3 ++ api/static/bootstrap-icons/pip.svg | 4 ++ api/static/bootstrap-icons/play-btn-fill.svg | 3 ++ api/static/bootstrap-icons/play-btn.svg | 4 ++ .../bootstrap-icons/play-circle-fill.svg | 3 ++ api/static/bootstrap-icons/play-circle.svg | 4 ++ api/static/bootstrap-icons/play-fill.svg | 3 ++ api/static/bootstrap-icons/play.svg | 3 ++ api/static/bootstrap-icons/playstation.svg | 3 ++ api/static/bootstrap-icons/plug-fill.svg | 3 ++ api/static/bootstrap-icons/plug.svg | 3 ++ api/static/bootstrap-icons/plugin.svg | 3 ++ .../bootstrap-icons/plus-circle-dotted.svg | 3 ++ .../bootstrap-icons/plus-circle-fill.svg | 3 ++ api/static/bootstrap-icons/plus-circle.svg | 4 ++ api/static/bootstrap-icons/plus-lg.svg | 3 ++ .../bootstrap-icons/plus-slash-minus.svg | 3 ++ .../bootstrap-icons/plus-square-dotted.svg | 3 ++ .../bootstrap-icons/plus-square-fill.svg | 3 ++ api/static/bootstrap-icons/plus-square.svg | 4 ++ api/static/bootstrap-icons/plus.svg | 3 ++ api/static/bootstrap-icons/postage-fill.svg | 4 ++ .../bootstrap-icons/postage-heart-fill.svg | 4 ++ api/static/bootstrap-icons/postage-heart.svg | 4 ++ api/static/bootstrap-icons/postage.svg | 4 ++ api/static/bootstrap-icons/postcard-fill.svg | 4 ++ .../bootstrap-icons/postcard-heart-fill.svg | 3 ++ api/static/bootstrap-icons/postcard-heart.svg | 4 ++ api/static/bootstrap-icons/postcard.svg | 3 ++ api/static/bootstrap-icons/power.svg | 4 ++ api/static/bootstrap-icons/prescription.svg | 4 ++ api/static/bootstrap-icons/prescription2.svg | 4 ++ api/static/bootstrap-icons/printer-fill.svg | 4 ++ api/static/bootstrap-icons/printer.svg | 4 ++ api/static/bootstrap-icons/projector-fill.svg | 3 ++ api/static/bootstrap-icons/projector.svg | 4 ++ api/static/bootstrap-icons/puzzle-fill.svg | 3 ++ api/static/bootstrap-icons/puzzle.svg | 3 ++ api/static/bootstrap-icons/qr-code-scan.svg | 7 +++ api/static/bootstrap-icons/qr-code.svg | 7 +++ .../bootstrap-icons/question-circle-fill.svg | 3 ++ .../bootstrap-icons/question-circle.svg | 4 ++ .../bootstrap-icons/question-diamond-fill.svg | 3 ++ .../bootstrap-icons/question-diamond.svg | 4 ++ api/static/bootstrap-icons/question-lg.svg | 3 ++ .../bootstrap-icons/question-octagon-fill.svg | 3 ++ .../bootstrap-icons/question-octagon.svg | 4 ++ .../bootstrap-icons/question-square-fill.svg | 3 ++ .../bootstrap-icons/question-square.svg | 4 ++ api/static/bootstrap-icons/question.svg | 3 ++ api/static/bootstrap-icons/quora.svg | 3 ++ api/static/bootstrap-icons/quote.svg | 3 ++ api/static/bootstrap-icons/r-circle-fill.svg | 3 ++ api/static/bootstrap-icons/r-circle.svg | 3 ++ api/static/bootstrap-icons/r-square-fill.svg | 4 ++ api/static/bootstrap-icons/r-square.svg | 4 ++ api/static/bootstrap-icons/radar.svg | 3 ++ api/static/bootstrap-icons/radioactive.svg | 4 ++ api/static/bootstrap-icons/rainbow.svg | 3 ++ api/static/bootstrap-icons/receipt-cutoff.svg | 4 ++ api/static/bootstrap-icons/receipt.svg | 4 ++ api/static/bootstrap-icons/reception-0.svg | 3 ++ api/static/bootstrap-icons/reception-1.svg | 3 ++ api/static/bootstrap-icons/reception-2.svg | 3 ++ api/static/bootstrap-icons/reception-3.svg | 3 ++ api/static/bootstrap-icons/reception-4.svg | 3 ++ .../bootstrap-icons/record-btn-fill.svg | 3 ++ api/static/bootstrap-icons/record-btn.svg | 4 ++ .../bootstrap-icons/record-circle-fill.svg | 3 ++ api/static/bootstrap-icons/record-circle.svg | 4 ++ api/static/bootstrap-icons/record-fill.svg | 3 ++ api/static/bootstrap-icons/record.svg | 3 ++ api/static/bootstrap-icons/record2-fill.svg | 4 ++ api/static/bootstrap-icons/record2.svg | 4 ++ api/static/bootstrap-icons/recycle.svg | 3 ++ api/static/bootstrap-icons/reddit.svg | 4 ++ api/static/bootstrap-icons/regex.svg | 3 ++ api/static/bootstrap-icons/repeat-1.svg | 4 ++ api/static/bootstrap-icons/repeat.svg | 3 ++ api/static/bootstrap-icons/reply-all-fill.svg | 4 ++ api/static/bootstrap-icons/reply-all.svg | 4 ++ api/static/bootstrap-icons/reply-fill.svg | 3 ++ api/static/bootstrap-icons/reply.svg | 3 ++ .../bootstrap-icons/rewind-btn-fill.svg | 3 ++ api/static/bootstrap-icons/rewind-btn.svg | 4 ++ .../bootstrap-icons/rewind-circle-fill.svg | 3 ++ api/static/bootstrap-icons/rewind-circle.svg | 4 ++ api/static/bootstrap-icons/rewind-fill.svg | 4 ++ api/static/bootstrap-icons/rewind.svg | 4 ++ api/static/bootstrap-icons/robot.svg | 4 ++ api/static/bootstrap-icons/rocket-fill.svg | 4 ++ .../bootstrap-icons/rocket-takeoff-fill.svg | 4 ++ api/static/bootstrap-icons/rocket-takeoff.svg | 5 ++ api/static/bootstrap-icons/rocket.svg | 5 ++ api/static/bootstrap-icons/router-fill.svg | 6 +++ api/static/bootstrap-icons/router.svg | 6 +++ api/static/bootstrap-icons/rss-fill.svg | 3 ++ api/static/bootstrap-icons/rss.svg | 4 ++ api/static/bootstrap-icons/rulers.svg | 3 ++ api/static/bootstrap-icons/safe-fill.svg | 4 ++ api/static/bootstrap-icons/safe.svg | 4 ++ api/static/bootstrap-icons/safe2-fill.svg | 4 ++ api/static/bootstrap-icons/safe2.svg | 4 ++ api/static/bootstrap-icons/save-fill.svg | 3 ++ api/static/bootstrap-icons/save.svg | 3 ++ api/static/bootstrap-icons/save2-fill.svg | 3 ++ api/static/bootstrap-icons/save2.svg | 3 ++ api/static/bootstrap-icons/scissors.svg | 3 ++ api/static/bootstrap-icons/scooter.svg | 3 ++ api/static/bootstrap-icons/screwdriver.svg | 3 ++ api/static/bootstrap-icons/sd-card-fill.svg | 3 ++ api/static/bootstrap-icons/sd-card.svg | 4 ++ .../bootstrap-icons/search-heart-fill.svg | 3 ++ api/static/bootstrap-icons/search-heart.svg | 4 ++ api/static/bootstrap-icons/search.svg | 3 ++ api/static/bootstrap-icons/segmented-nav.svg | 3 ++ .../bootstrap-icons/send-arrow-down-fill.svg | 4 ++ .../bootstrap-icons/send-arrow-down.svg | 4 ++ .../bootstrap-icons/send-arrow-up-fill.svg | 4 ++ api/static/bootstrap-icons/send-arrow-up.svg | 4 ++ .../bootstrap-icons/send-check-fill.svg | 4 ++ api/static/bootstrap-icons/send-check.svg | 4 ++ api/static/bootstrap-icons/send-dash-fill.svg | 4 ++ api/static/bootstrap-icons/send-dash.svg | 4 ++ .../bootstrap-icons/send-exclamation-fill.svg | 4 ++ .../bootstrap-icons/send-exclamation.svg | 4 ++ api/static/bootstrap-icons/send-fill.svg | 3 ++ api/static/bootstrap-icons/send-plus-fill.svg | 4 ++ api/static/bootstrap-icons/send-plus.svg | 4 ++ .../bootstrap-icons/send-slash-fill.svg | 4 ++ api/static/bootstrap-icons/send-slash.svg | 4 ++ api/static/bootstrap-icons/send-x-fill.svg | 4 ++ api/static/bootstrap-icons/send-x.svg | 4 ++ api/static/bootstrap-icons/send.svg | 3 ++ api/static/bootstrap-icons/server.svg | 5 ++ api/static/bootstrap-icons/shadows.svg | 3 ++ api/static/bootstrap-icons/share-fill.svg | 3 ++ api/static/bootstrap-icons/share.svg | 3 ++ api/static/bootstrap-icons/shield-check.svg | 4 ++ .../bootstrap-icons/shield-exclamation.svg | 4 ++ .../bootstrap-icons/shield-fill-check.svg | 3 ++ .../shield-fill-exclamation.svg | 3 ++ .../bootstrap-icons/shield-fill-minus.svg | 3 ++ .../bootstrap-icons/shield-fill-plus.svg | 3 ++ api/static/bootstrap-icons/shield-fill-x.svg | 3 ++ api/static/bootstrap-icons/shield-fill.svg | 3 ++ .../bootstrap-icons/shield-lock-fill.svg | 3 ++ api/static/bootstrap-icons/shield-lock.svg | 4 ++ api/static/bootstrap-icons/shield-minus.svg | 4 ++ api/static/bootstrap-icons/shield-plus.svg | 4 ++ api/static/bootstrap-icons/shield-shaded.svg | 3 ++ .../bootstrap-icons/shield-slash-fill.svg | 3 ++ api/static/bootstrap-icons/shield-slash.svg | 3 ++ api/static/bootstrap-icons/shield-x.svg | 4 ++ api/static/bootstrap-icons/shield.svg | 3 ++ api/static/bootstrap-icons/shift-fill.svg | 3 ++ api/static/bootstrap-icons/shift.svg | 3 ++ api/static/bootstrap-icons/shop-window.svg | 3 ++ api/static/bootstrap-icons/shop.svg | 3 ++ api/static/bootstrap-icons/shuffle.svg | 4 ++ .../bootstrap-icons/sign-dead-end-fill.svg | 4 ++ api/static/bootstrap-icons/sign-dead-end.svg | 4 ++ .../sign-do-not-enter-fill.svg | 4 ++ .../bootstrap-icons/sign-do-not-enter.svg | 4 ++ .../sign-intersection-fill.svg | 3 ++ .../sign-intersection-side-fill.svg | 3 ++ .../sign-intersection-side.svg | 4 ++ .../sign-intersection-t-fill.svg | 3 ++ .../bootstrap-icons/sign-intersection-t.svg | 4 ++ .../sign-intersection-y-fill.svg | 3 ++ .../bootstrap-icons/sign-intersection-y.svg | 4 ++ .../bootstrap-icons/sign-intersection.svg | 4 ++ .../bootstrap-icons/sign-merge-left-fill.svg | 3 ++ .../bootstrap-icons/sign-merge-left.svg | 4 ++ .../bootstrap-icons/sign-merge-right-fill.svg | 3 ++ .../bootstrap-icons/sign-merge-right.svg | 4 ++ .../sign-no-left-turn-fill.svg | 4 ++ .../bootstrap-icons/sign-no-left-turn.svg | 3 ++ .../bootstrap-icons/sign-no-parking-fill.svg | 4 ++ .../bootstrap-icons/sign-no-parking.svg | 3 ++ .../sign-no-right-turn-fill.svg | 4 ++ .../bootstrap-icons/sign-no-right-turn.svg | 3 ++ .../bootstrap-icons/sign-railroad-fill.svg | 5 ++ api/static/bootstrap-icons/sign-railroad.svg | 4 ++ api/static/bootstrap-icons/sign-stop-fill.svg | 4 ++ .../bootstrap-icons/sign-stop-lights-fill.svg | 4 ++ .../bootstrap-icons/sign-stop-lights.svg | 4 ++ api/static/bootstrap-icons/sign-stop.svg | 5 ++ .../bootstrap-icons/sign-turn-left-fill.svg | 3 ++ api/static/bootstrap-icons/sign-turn-left.svg | 4 ++ .../bootstrap-icons/sign-turn-right-fill.svg | 3 ++ .../bootstrap-icons/sign-turn-right.svg | 4 ++ .../sign-turn-slight-left-fill.svg | 3 ++ .../bootstrap-icons/sign-turn-slight-left.svg | 4 ++ .../sign-turn-slight-right-fill.svg | 3 ++ .../sign-turn-slight-right.svg | 4 ++ .../bootstrap-icons/sign-yield-fill.svg | 4 ++ api/static/bootstrap-icons/sign-yield.svg | 5 ++ api/static/bootstrap-icons/signal.svg | 3 ++ .../bootstrap-icons/signpost-2-fill.svg | 3 ++ api/static/bootstrap-icons/signpost-2.svg | 3 ++ api/static/bootstrap-icons/signpost-fill.svg | 3 ++ .../bootstrap-icons/signpost-split-fill.svg | 3 ++ api/static/bootstrap-icons/signpost-split.svg | 3 ++ api/static/bootstrap-icons/signpost.svg | 3 ++ api/static/bootstrap-icons/sim-fill.svg | 4 ++ api/static/bootstrap-icons/sim-slash-fill.svg | 3 ++ api/static/bootstrap-icons/sim-slash.svg | 3 ++ api/static/bootstrap-icons/sim.svg | 4 ++ api/static/bootstrap-icons/sina-weibo.svg | 4 ++ .../skip-backward-btn-fill.svg | 3 ++ .../bootstrap-icons/skip-backward-btn.svg | 4 ++ .../skip-backward-circle-fill.svg | 3 ++ .../bootstrap-icons/skip-backward-circle.svg | 4 ++ .../bootstrap-icons/skip-backward-fill.svg | 3 ++ api/static/bootstrap-icons/skip-backward.svg | 3 ++ .../bootstrap-icons/skip-end-btn-fill.svg | 3 ++ api/static/bootstrap-icons/skip-end-btn.svg | 4 ++ .../bootstrap-icons/skip-end-circle-fill.svg | 3 ++ .../bootstrap-icons/skip-end-circle.svg | 4 ++ api/static/bootstrap-icons/skip-end-fill.svg | 3 ++ api/static/bootstrap-icons/skip-end.svg | 3 ++ .../bootstrap-icons/skip-forward-btn-fill.svg | 3 ++ .../bootstrap-icons/skip-forward-btn.svg | 4 ++ .../skip-forward-circle-fill.svg | 3 ++ .../bootstrap-icons/skip-forward-circle.svg | 4 ++ .../bootstrap-icons/skip-forward-fill.svg | 3 ++ api/static/bootstrap-icons/skip-forward.svg | 3 ++ .../bootstrap-icons/skip-start-btn-fill.svg | 3 ++ api/static/bootstrap-icons/skip-start-btn.svg | 4 ++ .../skip-start-circle-fill.svg | 3 ++ .../bootstrap-icons/skip-start-circle.svg | 4 ++ .../bootstrap-icons/skip-start-fill.svg | 3 ++ api/static/bootstrap-icons/skip-start.svg | 3 ++ api/static/bootstrap-icons/skype.svg | 3 ++ api/static/bootstrap-icons/slack.svg | 3 ++ .../bootstrap-icons/slash-circle-fill.svg | 3 ++ api/static/bootstrap-icons/slash-circle.svg | 4 ++ api/static/bootstrap-icons/slash-lg.svg | 3 ++ .../bootstrap-icons/slash-square-fill.svg | 3 ++ api/static/bootstrap-icons/slash-square.svg | 4 ++ api/static/bootstrap-icons/slash.svg | 3 ++ api/static/bootstrap-icons/sliders.svg | 3 ++ .../bootstrap-icons/sliders2-vertical.svg | 3 ++ api/static/bootstrap-icons/sliders2.svg | 3 ++ api/static/bootstrap-icons/smartwatch.svg | 4 ++ api/static/bootstrap-icons/snapchat.svg | 3 ++ api/static/bootstrap-icons/snow.svg | 3 ++ api/static/bootstrap-icons/snow2.svg | 3 ++ api/static/bootstrap-icons/snow3.svg | 4 ++ .../bootstrap-icons/sort-alpha-down-alt.svg | 5 ++ .../bootstrap-icons/sort-alpha-down.svg | 4 ++ .../bootstrap-icons/sort-alpha-up-alt.svg | 5 ++ api/static/bootstrap-icons/sort-alpha-up.svg | 4 ++ api/static/bootstrap-icons/sort-down-alt.svg | 3 ++ api/static/bootstrap-icons/sort-down.svg | 3 ++ .../bootstrap-icons/sort-numeric-down-alt.svg | 4 ++ .../bootstrap-icons/sort-numeric-down.svg | 5 ++ .../bootstrap-icons/sort-numeric-up-alt.svg | 4 ++ .../bootstrap-icons/sort-numeric-up.svg | 5 ++ api/static/bootstrap-icons/sort-up-alt.svg | 3 ++ api/static/bootstrap-icons/sort-up.svg | 3 ++ api/static/bootstrap-icons/soundwave.svg | 3 ++ api/static/bootstrap-icons/sourceforge.svg | 4 ++ api/static/bootstrap-icons/speaker-fill.svg | 4 ++ api/static/bootstrap-icons/speaker.svg | 4 ++ api/static/bootstrap-icons/speedometer.svg | 4 ++ api/static/bootstrap-icons/speedometer2.svg | 4 ++ api/static/bootstrap-icons/spellcheck.svg | 4 ++ api/static/bootstrap-icons/spotify.svg | 3 ++ api/static/bootstrap-icons/square-fill.svg | 3 ++ api/static/bootstrap-icons/square-half.svg | 3 ++ api/static/bootstrap-icons/square.svg | 3 ++ api/static/bootstrap-icons/stack-overflow.svg | 4 ++ api/static/bootstrap-icons/stack.svg | 4 ++ api/static/bootstrap-icons/star-fill.svg | 3 ++ api/static/bootstrap-icons/star-half.svg | 3 ++ api/static/bootstrap-icons/star.svg | 3 ++ api/static/bootstrap-icons/stars.svg | 3 ++ api/static/bootstrap-icons/steam.svg | 4 ++ api/static/bootstrap-icons/stickies-fill.svg | 4 ++ api/static/bootstrap-icons/stickies.svg | 4 ++ api/static/bootstrap-icons/sticky-fill.svg | 3 ++ api/static/bootstrap-icons/sticky.svg | 3 ++ api/static/bootstrap-icons/stop-btn-fill.svg | 3 ++ api/static/bootstrap-icons/stop-btn.svg | 4 ++ .../bootstrap-icons/stop-circle-fill.svg | 3 ++ api/static/bootstrap-icons/stop-circle.svg | 4 ++ api/static/bootstrap-icons/stop-fill.svg | 3 ++ api/static/bootstrap-icons/stop.svg | 3 ++ .../bootstrap-icons/stoplights-fill.svg | 3 ++ api/static/bootstrap-icons/stoplights.svg | 4 ++ api/static/bootstrap-icons/stopwatch-fill.svg | 3 ++ api/static/bootstrap-icons/stopwatch.svg | 4 ++ api/static/bootstrap-icons/strava.svg | 3 ++ api/static/bootstrap-icons/stripe.svg | 3 ++ api/static/bootstrap-icons/subscript.svg | 3 ++ api/static/bootstrap-icons/substack.svg | 3 ++ api/static/bootstrap-icons/subtract.svg | 3 ++ api/static/bootstrap-icons/suit-club-fill.svg | 3 ++ api/static/bootstrap-icons/suit-club.svg | 3 ++ .../bootstrap-icons/suit-diamond-fill.svg | 3 ++ api/static/bootstrap-icons/suit-diamond.svg | 3 ++ .../bootstrap-icons/suit-heart-fill.svg | 3 ++ api/static/bootstrap-icons/suit-heart.svg | 3 ++ .../bootstrap-icons/suit-spade-fill.svg | 3 ++ api/static/bootstrap-icons/suit-spade.svg | 3 ++ api/static/bootstrap-icons/suitcase-fill.svg | 3 ++ .../bootstrap-icons/suitcase-lg-fill.svg | 3 ++ api/static/bootstrap-icons/suitcase-lg.svg | 3 ++ api/static/bootstrap-icons/suitcase.svg | 4 ++ api/static/bootstrap-icons/suitcase2-fill.svg | 3 ++ api/static/bootstrap-icons/suitcase2.svg | 3 ++ api/static/bootstrap-icons/sun-fill.svg | 3 ++ api/static/bootstrap-icons/sun.svg | 3 ++ api/static/bootstrap-icons/sunglasses.svg | 3 ++ api/static/bootstrap-icons/sunrise-fill.svg | 3 ++ api/static/bootstrap-icons/sunrise.svg | 3 ++ api/static/bootstrap-icons/sunset-fill.svg | 3 ++ api/static/bootstrap-icons/sunset.svg | 3 ++ api/static/bootstrap-icons/superscript.svg | 3 ++ .../bootstrap-icons/symmetry-horizontal.svg | 3 ++ .../bootstrap-icons/symmetry-vertical.svg | 3 ++ api/static/bootstrap-icons/table.svg | 3 ++ api/static/bootstrap-icons/tablet-fill.svg | 3 ++ .../bootstrap-icons/tablet-landscape-fill.svg | 3 ++ .../bootstrap-icons/tablet-landscape.svg | 4 ++ api/static/bootstrap-icons/tablet.svg | 4 ++ api/static/bootstrap-icons/tag-fill.svg | 3 ++ api/static/bootstrap-icons/tag.svg | 4 ++ api/static/bootstrap-icons/tags-fill.svg | 4 ++ api/static/bootstrap-icons/tags.svg | 4 ++ .../bootstrap-icons/taxi-front-fill.svg | 3 ++ api/static/bootstrap-icons/taxi-front.svg | 4 ++ api/static/bootstrap-icons/telegram.svg | 3 ++ api/static/bootstrap-icons/telephone-fill.svg | 3 ++ .../telephone-forward-fill.svg | 3 ++ .../bootstrap-icons/telephone-forward.svg | 3 ++ .../telephone-inbound-fill.svg | 3 ++ .../bootstrap-icons/telephone-inbound.svg | 3 ++ .../bootstrap-icons/telephone-minus-fill.svg | 3 ++ .../bootstrap-icons/telephone-minus.svg | 4 ++ .../telephone-outbound-fill.svg | 3 ++ .../bootstrap-icons/telephone-outbound.svg | 3 ++ .../bootstrap-icons/telephone-plus-fill.svg | 3 ++ api/static/bootstrap-icons/telephone-plus.svg | 4 ++ .../bootstrap-icons/telephone-x-fill.svg | 3 ++ api/static/bootstrap-icons/telephone-x.svg | 4 ++ api/static/bootstrap-icons/telephone.svg | 3 ++ api/static/bootstrap-icons/tencent-qq.svg | 4 ++ api/static/bootstrap-icons/terminal-dash.svg | 4 ++ api/static/bootstrap-icons/terminal-fill.svg | 3 ++ api/static/bootstrap-icons/terminal-plus.svg | 4 ++ api/static/bootstrap-icons/terminal-split.svg | 4 ++ api/static/bootstrap-icons/terminal-x.svg | 4 ++ api/static/bootstrap-icons/terminal.svg | 4 ++ api/static/bootstrap-icons/text-center.svg | 3 ++ .../bootstrap-icons/text-indent-left.svg | 3 ++ .../bootstrap-icons/text-indent-right.svg | 3 ++ api/static/bootstrap-icons/text-left.svg | 3 ++ api/static/bootstrap-icons/text-paragraph.svg | 3 ++ api/static/bootstrap-icons/text-right.svg | 3 ++ api/static/bootstrap-icons/text-wrap.svg | 3 ++ .../bootstrap-icons/textarea-resize.svg | 3 ++ api/static/bootstrap-icons/textarea-t.svg | 4 ++ api/static/bootstrap-icons/textarea.svg | 3 ++ .../bootstrap-icons/thermometer-half.svg | 4 ++ .../bootstrap-icons/thermometer-high.svg | 4 ++ .../bootstrap-icons/thermometer-low.svg | 4 ++ .../bootstrap-icons/thermometer-snow.svg | 4 ++ .../bootstrap-icons/thermometer-sun.svg | 4 ++ api/static/bootstrap-icons/thermometer.svg | 4 ++ api/static/bootstrap-icons/threads-fill.svg | 4 ++ api/static/bootstrap-icons/threads.svg | 3 ++ .../bootstrap-icons/three-dots-vertical.svg | 3 ++ api/static/bootstrap-icons/three-dots.svg | 3 ++ .../bootstrap-icons/thunderbolt-fill.svg | 3 ++ api/static/bootstrap-icons/thunderbolt.svg | 4 ++ .../bootstrap-icons/ticket-detailed-fill.svg | 3 ++ .../bootstrap-icons/ticket-detailed.svg | 4 ++ api/static/bootstrap-icons/ticket-fill.svg | 3 ++ .../ticket-perforated-fill.svg | 3 ++ .../bootstrap-icons/ticket-perforated.svg | 4 ++ api/static/bootstrap-icons/ticket.svg | 3 ++ api/static/bootstrap-icons/tiktok.svg | 3 ++ api/static/bootstrap-icons/toggle-off.svg | 3 ++ api/static/bootstrap-icons/toggle-on.svg | 3 ++ api/static/bootstrap-icons/toggle2-off.svg | 4 ++ api/static/bootstrap-icons/toggle2-on.svg | 4 ++ api/static/bootstrap-icons/toggles.svg | 3 ++ api/static/bootstrap-icons/toggles2.svg | 5 ++ api/static/bootstrap-icons/tools.svg | 3 ++ api/static/bootstrap-icons/tornado.svg | 3 ++ .../train-freight-front-fill.svg | 3 ++ .../bootstrap-icons/train-freight-front.svg | 3 ++ .../bootstrap-icons/train-front-fill.svg | 3 ++ api/static/bootstrap-icons/train-front.svg | 3 ++ .../train-lightrail-front-fill.svg | 3 ++ .../bootstrap-icons/train-lightrail-front.svg | 3 ++ api/static/bootstrap-icons/translate.svg | 4 ++ api/static/bootstrap-icons/transparency.svg | 3 ++ api/static/bootstrap-icons/trash-fill.svg | 3 ++ api/static/bootstrap-icons/trash.svg | 4 ++ api/static/bootstrap-icons/trash2-fill.svg | 3 ++ api/static/bootstrap-icons/trash2.svg | 3 ++ api/static/bootstrap-icons/trash3-fill.svg | 3 ++ api/static/bootstrap-icons/trash3.svg | 3 ++ api/static/bootstrap-icons/tree-fill.svg | 3 ++ api/static/bootstrap-icons/tree.svg | 3 ++ api/static/bootstrap-icons/trello.svg | 3 ++ api/static/bootstrap-icons/triangle-fill.svg | 3 ++ api/static/bootstrap-icons/triangle-half.svg | 3 ++ api/static/bootstrap-icons/triangle.svg | 3 ++ api/static/bootstrap-icons/trophy-fill.svg | 3 ++ api/static/bootstrap-icons/trophy.svg | 3 ++ api/static/bootstrap-icons/tropical-storm.svg | 4 ++ api/static/bootstrap-icons/truck-flatbed.svg | 3 ++ .../bootstrap-icons/truck-front-fill.svg | 3 ++ api/static/bootstrap-icons/truck-front.svg | 4 ++ api/static/bootstrap-icons/truck.svg | 3 ++ api/static/bootstrap-icons/tsunami.svg | 3 ++ api/static/bootstrap-icons/tv-fill.svg | 3 ++ api/static/bootstrap-icons/tv.svg | 3 ++ api/static/bootstrap-icons/twitch.svg | 4 ++ api/static/bootstrap-icons/twitter-x.svg | 3 ++ api/static/bootstrap-icons/twitter.svg | 3 ++ api/static/bootstrap-icons/type-bold.svg | 3 ++ api/static/bootstrap-icons/type-h1.svg | 3 ++ api/static/bootstrap-icons/type-h2.svg | 3 ++ api/static/bootstrap-icons/type-h3.svg | 3 ++ api/static/bootstrap-icons/type-h4.svg | 3 ++ api/static/bootstrap-icons/type-h5.svg | 3 ++ api/static/bootstrap-icons/type-h6.svg | 3 ++ api/static/bootstrap-icons/type-italic.svg | 3 ++ .../bootstrap-icons/type-strikethrough.svg | 3 ++ api/static/bootstrap-icons/type-underline.svg | 3 ++ api/static/bootstrap-icons/type.svg | 3 ++ api/static/bootstrap-icons/ubuntu.svg | 3 ++ api/static/bootstrap-icons/ui-checks-grid.svg | 3 ++ api/static/bootstrap-icons/ui-checks.svg | 3 ++ api/static/bootstrap-icons/ui-radios-grid.svg | 3 ++ api/static/bootstrap-icons/ui-radios.svg | 3 ++ api/static/bootstrap-icons/umbrella-fill.svg | 3 ++ api/static/bootstrap-icons/umbrella.svg | 3 ++ api/static/bootstrap-icons/unindent.svg | 4 ++ api/static/bootstrap-icons/union.svg | 3 ++ api/static/bootstrap-icons/unity.svg | 3 ++ .../universal-access-circle.svg | 4 ++ .../bootstrap-icons/universal-access.svg | 3 ++ api/static/bootstrap-icons/unlock-fill.svg | 3 ++ api/static/bootstrap-icons/unlock.svg | 3 ++ api/static/bootstrap-icons/upc-scan.svg | 3 ++ api/static/bootstrap-icons/upc.svg | 3 ++ api/static/bootstrap-icons/upload.svg | 4 ++ api/static/bootstrap-icons/usb-c-fill.svg | 3 ++ api/static/bootstrap-icons/usb-c.svg | 4 ++ api/static/bootstrap-icons/usb-drive-fill.svg | 3 ++ api/static/bootstrap-icons/usb-drive.svg | 3 ++ api/static/bootstrap-icons/usb-fill.svg | 3 ++ api/static/bootstrap-icons/usb-micro-fill.svg | 3 ++ api/static/bootstrap-icons/usb-micro.svg | 4 ++ api/static/bootstrap-icons/usb-mini-fill.svg | 3 ++ api/static/bootstrap-icons/usb-mini.svg | 4 ++ api/static/bootstrap-icons/usb-plug-fill.svg | 3 ++ api/static/bootstrap-icons/usb-plug.svg | 3 ++ api/static/bootstrap-icons/usb-symbol.svg | 3 ++ api/static/bootstrap-icons/usb.svg | 4 ++ api/static/bootstrap-icons/valentine.svg | 4 ++ api/static/bootstrap-icons/valentine2.svg | 4 ++ api/static/bootstrap-icons/vector-pen.svg | 4 ++ api/static/bootstrap-icons/view-list.svg | 3 ++ api/static/bootstrap-icons/view-stacked.svg | 3 ++ api/static/bootstrap-icons/vignette.svg | 4 ++ api/static/bootstrap-icons/vimeo.svg | 3 ++ api/static/bootstrap-icons/vinyl-fill.svg | 4 ++ api/static/bootstrap-icons/vinyl.svg | 5 ++ api/static/bootstrap-icons/virus.svg | 3 ++ api/static/bootstrap-icons/virus2.svg | 3 ++ api/static/bootstrap-icons/voicemail.svg | 3 ++ .../bootstrap-icons/volume-down-fill.svg | 3 ++ api/static/bootstrap-icons/volume-down.svg | 3 ++ .../bootstrap-icons/volume-mute-fill.svg | 3 ++ api/static/bootstrap-icons/volume-mute.svg | 3 ++ .../bootstrap-icons/volume-off-fill.svg | 3 ++ api/static/bootstrap-icons/volume-off.svg | 3 ++ api/static/bootstrap-icons/volume-up-fill.svg | 5 ++ api/static/bootstrap-icons/volume-up.svg | 5 ++ api/static/bootstrap-icons/vr.svg | 3 ++ api/static/bootstrap-icons/wallet-fill.svg | 4 ++ api/static/bootstrap-icons/wallet.svg | 3 ++ api/static/bootstrap-icons/wallet2.svg | 3 ++ api/static/bootstrap-icons/watch.svg | 4 ++ api/static/bootstrap-icons/water.svg | 3 ++ api/static/bootstrap-icons/webcam-fill.svg | 4 ++ api/static/bootstrap-icons/webcam.svg | 4 ++ api/static/bootstrap-icons/wechat.svg | 4 ++ api/static/bootstrap-icons/whatsapp.svg | 3 ++ api/static/bootstrap-icons/wifi-1.svg | 3 ++ api/static/bootstrap-icons/wifi-2.svg | 3 ++ api/static/bootstrap-icons/wifi-off.svg | 3 ++ api/static/bootstrap-icons/wifi.svg | 4 ++ api/static/bootstrap-icons/wikipedia.svg | 3 ++ api/static/bootstrap-icons/wind.svg | 3 ++ api/static/bootstrap-icons/window-dash.svg | 5 ++ api/static/bootstrap-icons/window-desktop.svg | 4 ++ api/static/bootstrap-icons/window-dock.svg | 4 ++ .../bootstrap-icons/window-fullscreen.svg | 4 ++ api/static/bootstrap-icons/window-plus.svg | 5 ++ api/static/bootstrap-icons/window-sidebar.svg | 4 ++ api/static/bootstrap-icons/window-split.svg | 4 ++ api/static/bootstrap-icons/window-stack.svg | 4 ++ api/static/bootstrap-icons/window-x.svg | 5 ++ api/static/bootstrap-icons/window.svg | 4 ++ api/static/bootstrap-icons/windows.svg | 3 ++ api/static/bootstrap-icons/wordpress.svg | 5 ++ .../wrench-adjustable-circle-fill.svg | 4 ++ .../wrench-adjustable-circle.svg | 4 ++ .../bootstrap-icons/wrench-adjustable.svg | 4 ++ api/static/bootstrap-icons/wrench.svg | 3 ++ api/static/bootstrap-icons/x-circle-fill.svg | 3 ++ api/static/bootstrap-icons/x-circle.svg | 4 ++ api/static/bootstrap-icons/x-diamond-fill.svg | 3 ++ api/static/bootstrap-icons/x-diamond.svg | 3 ++ api/static/bootstrap-icons/x-lg.svg | 3 ++ api/static/bootstrap-icons/x-octagon-fill.svg | 3 ++ api/static/bootstrap-icons/x-octagon.svg | 4 ++ api/static/bootstrap-icons/x-square-fill.svg | 3 ++ api/static/bootstrap-icons/x-square.svg | 4 ++ api/static/bootstrap-icons/x.svg | 3 ++ api/static/bootstrap-icons/xbox.svg | 3 ++ api/static/bootstrap-icons/yelp.svg | 3 ++ api/static/bootstrap-icons/yin-yang.svg | 4 ++ api/static/bootstrap-icons/youtube.svg | 3 ++ api/static/bootstrap-icons/zoom-in.svg | 5 ++ api/static/bootstrap-icons/zoom-out.svg | 5 ++ domain/gateways/IPostRepository.go | 1 + useCases/GetPostUseCase.go | 4 ++ 2062 files changed, 7238 insertions(+), 24 deletions(-) create mode 100644 api/static/bootstrap-icons.svg create mode 100644 api/static/bootstrap-icons/0-circle-fill.svg create mode 100644 api/static/bootstrap-icons/0-circle.svg create mode 100644 api/static/bootstrap-icons/0-square-fill.svg create mode 100644 api/static/bootstrap-icons/0-square.svg create mode 100644 api/static/bootstrap-icons/1-circle-fill.svg create mode 100644 api/static/bootstrap-icons/1-circle.svg create mode 100644 api/static/bootstrap-icons/1-square-fill.svg create mode 100644 api/static/bootstrap-icons/1-square.svg create mode 100644 api/static/bootstrap-icons/123.svg create mode 100644 api/static/bootstrap-icons/2-circle-fill.svg create mode 100644 api/static/bootstrap-icons/2-circle.svg create mode 100644 api/static/bootstrap-icons/2-square-fill.svg create mode 100644 api/static/bootstrap-icons/2-square.svg create mode 100644 api/static/bootstrap-icons/3-circle-fill.svg create mode 100644 api/static/bootstrap-icons/3-circle.svg create mode 100644 api/static/bootstrap-icons/3-square-fill.svg create mode 100644 api/static/bootstrap-icons/3-square.svg create mode 100644 api/static/bootstrap-icons/4-circle-fill.svg create mode 100644 api/static/bootstrap-icons/4-circle.svg create mode 100644 api/static/bootstrap-icons/4-square-fill.svg create mode 100644 api/static/bootstrap-icons/4-square.svg create mode 100644 api/static/bootstrap-icons/5-circle-fill.svg create mode 100644 api/static/bootstrap-icons/5-circle.svg create mode 100644 api/static/bootstrap-icons/5-square-fill.svg create mode 100644 api/static/bootstrap-icons/5-square.svg create mode 100644 api/static/bootstrap-icons/6-circle-fill.svg create mode 100644 api/static/bootstrap-icons/6-circle.svg create mode 100644 api/static/bootstrap-icons/6-square-fill.svg create mode 100644 api/static/bootstrap-icons/6-square.svg create mode 100644 api/static/bootstrap-icons/7-circle-fill.svg create mode 100644 api/static/bootstrap-icons/7-circle.svg create mode 100644 api/static/bootstrap-icons/7-square-fill.svg create mode 100644 api/static/bootstrap-icons/7-square.svg create mode 100644 api/static/bootstrap-icons/8-circle-fill.svg create mode 100644 api/static/bootstrap-icons/8-circle.svg create mode 100644 api/static/bootstrap-icons/8-square-fill.svg create mode 100644 api/static/bootstrap-icons/8-square.svg create mode 100644 api/static/bootstrap-icons/9-circle-fill.svg create mode 100644 api/static/bootstrap-icons/9-circle.svg create mode 100644 api/static/bootstrap-icons/9-square-fill.svg create mode 100644 api/static/bootstrap-icons/9-square.svg create mode 100644 api/static/bootstrap-icons/activity.svg create mode 100644 api/static/bootstrap-icons/airplane-engines-fill.svg create mode 100644 api/static/bootstrap-icons/airplane-engines.svg create mode 100644 api/static/bootstrap-icons/airplane-fill.svg create mode 100644 api/static/bootstrap-icons/airplane.svg create mode 100644 api/static/bootstrap-icons/alarm-fill.svg create mode 100644 api/static/bootstrap-icons/alarm.svg create mode 100644 api/static/bootstrap-icons/alexa.svg create mode 100644 api/static/bootstrap-icons/align-bottom.svg create mode 100644 api/static/bootstrap-icons/align-center.svg create mode 100644 api/static/bootstrap-icons/align-end.svg create mode 100644 api/static/bootstrap-icons/align-middle.svg create mode 100644 api/static/bootstrap-icons/align-start.svg create mode 100644 api/static/bootstrap-icons/align-top.svg create mode 100644 api/static/bootstrap-icons/alipay.svg create mode 100644 api/static/bootstrap-icons/alphabet-uppercase.svg create mode 100644 api/static/bootstrap-icons/alphabet.svg create mode 100644 api/static/bootstrap-icons/alt.svg create mode 100644 api/static/bootstrap-icons/amazon.svg create mode 100644 api/static/bootstrap-icons/amd.svg create mode 100644 api/static/bootstrap-icons/android.svg create mode 100644 api/static/bootstrap-icons/android2.svg create mode 100644 api/static/bootstrap-icons/app-indicator.svg create mode 100644 api/static/bootstrap-icons/app.svg create mode 100644 api/static/bootstrap-icons/apple.svg create mode 100644 api/static/bootstrap-icons/archive-fill.svg create mode 100644 api/static/bootstrap-icons/archive.svg create mode 100644 api/static/bootstrap-icons/arrow-90deg-down.svg create mode 100644 api/static/bootstrap-icons/arrow-90deg-left.svg create mode 100644 api/static/bootstrap-icons/arrow-90deg-right.svg create mode 100644 api/static/bootstrap-icons/arrow-90deg-up.svg create mode 100644 api/static/bootstrap-icons/arrow-bar-down.svg create mode 100644 api/static/bootstrap-icons/arrow-bar-left.svg create mode 100644 api/static/bootstrap-icons/arrow-bar-right.svg create mode 100644 api/static/bootstrap-icons/arrow-bar-up.svg create mode 100644 api/static/bootstrap-icons/arrow-clockwise.svg create mode 100644 api/static/bootstrap-icons/arrow-counterclockwise.svg create mode 100644 api/static/bootstrap-icons/arrow-down-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-down-left-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-left-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-down-left-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-left-square.svg create mode 100644 api/static/bootstrap-icons/arrow-down-left.svg create mode 100644 api/static/bootstrap-icons/arrow-down-right-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-right-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-down-right-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-right-square.svg create mode 100644 api/static/bootstrap-icons/arrow-down-right.svg create mode 100644 api/static/bootstrap-icons/arrow-down-short.svg create mode 100644 api/static/bootstrap-icons/arrow-down-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-down-square.svg create mode 100644 api/static/bootstrap-icons/arrow-down-up.svg create mode 100644 api/static/bootstrap-icons/arrow-down.svg create mode 100644 api/static/bootstrap-icons/arrow-left-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-left-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-left-right.svg create mode 100644 api/static/bootstrap-icons/arrow-left-short.svg create mode 100644 api/static/bootstrap-icons/arrow-left-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-left-square.svg create mode 100644 api/static/bootstrap-icons/arrow-left.svg create mode 100644 api/static/bootstrap-icons/arrow-repeat.svg create mode 100644 api/static/bootstrap-icons/arrow-return-left.svg create mode 100644 api/static/bootstrap-icons/arrow-return-right.svg create mode 100644 api/static/bootstrap-icons/arrow-right-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-right-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-right-short.svg create mode 100644 api/static/bootstrap-icons/arrow-right-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-right-square.svg create mode 100644 api/static/bootstrap-icons/arrow-right.svg create mode 100644 api/static/bootstrap-icons/arrow-through-heart-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-through-heart.svg create mode 100644 api/static/bootstrap-icons/arrow-up-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-up-left-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-left-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-up-left-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-left-square.svg create mode 100644 api/static/bootstrap-icons/arrow-up-left.svg create mode 100644 api/static/bootstrap-icons/arrow-up-right-circle-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-right-circle.svg create mode 100644 api/static/bootstrap-icons/arrow-up-right-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-right-square.svg create mode 100644 api/static/bootstrap-icons/arrow-up-right.svg create mode 100644 api/static/bootstrap-icons/arrow-up-short.svg create mode 100644 api/static/bootstrap-icons/arrow-up-square-fill.svg create mode 100644 api/static/bootstrap-icons/arrow-up-square.svg create mode 100644 api/static/bootstrap-icons/arrow-up.svg create mode 100644 api/static/bootstrap-icons/arrows-angle-contract.svg create mode 100644 api/static/bootstrap-icons/arrows-angle-expand.svg create mode 100644 api/static/bootstrap-icons/arrows-collapse-vertical.svg create mode 100644 api/static/bootstrap-icons/arrows-collapse.svg create mode 100644 api/static/bootstrap-icons/arrows-expand-vertical.svg create mode 100644 api/static/bootstrap-icons/arrows-expand.svg create mode 100644 api/static/bootstrap-icons/arrows-fullscreen.svg create mode 100644 api/static/bootstrap-icons/arrows-move.svg create mode 100644 api/static/bootstrap-icons/arrows-vertical.svg create mode 100644 api/static/bootstrap-icons/arrows.svg create mode 100644 api/static/bootstrap-icons/aspect-ratio-fill.svg create mode 100644 api/static/bootstrap-icons/aspect-ratio.svg create mode 100644 api/static/bootstrap-icons/asterisk.svg create mode 100644 api/static/bootstrap-icons/at.svg create mode 100644 api/static/bootstrap-icons/award-fill.svg create mode 100644 api/static/bootstrap-icons/award.svg create mode 100644 api/static/bootstrap-icons/back.svg create mode 100644 api/static/bootstrap-icons/backpack-fill.svg create mode 100644 api/static/bootstrap-icons/backpack.svg create mode 100644 api/static/bootstrap-icons/backpack2-fill.svg create mode 100644 api/static/bootstrap-icons/backpack2.svg create mode 100644 api/static/bootstrap-icons/backpack3-fill.svg create mode 100644 api/static/bootstrap-icons/backpack3.svg create mode 100644 api/static/bootstrap-icons/backpack4-fill.svg create mode 100644 api/static/bootstrap-icons/backpack4.svg create mode 100644 api/static/bootstrap-icons/backspace-fill.svg create mode 100644 api/static/bootstrap-icons/backspace-reverse-fill.svg create mode 100644 api/static/bootstrap-icons/backspace-reverse.svg create mode 100644 api/static/bootstrap-icons/backspace.svg create mode 100644 api/static/bootstrap-icons/badge-3d-fill.svg create mode 100644 api/static/bootstrap-icons/badge-3d.svg create mode 100644 api/static/bootstrap-icons/badge-4k-fill.svg create mode 100644 api/static/bootstrap-icons/badge-4k.svg create mode 100644 api/static/bootstrap-icons/badge-8k-fill.svg create mode 100644 api/static/bootstrap-icons/badge-8k.svg create mode 100644 api/static/bootstrap-icons/badge-ad-fill.svg create mode 100644 api/static/bootstrap-icons/badge-ad.svg create mode 100644 api/static/bootstrap-icons/badge-ar-fill.svg create mode 100644 api/static/bootstrap-icons/badge-ar.svg create mode 100644 api/static/bootstrap-icons/badge-cc-fill.svg create mode 100644 api/static/bootstrap-icons/badge-cc.svg create mode 100644 api/static/bootstrap-icons/badge-hd-fill.svg create mode 100644 api/static/bootstrap-icons/badge-hd.svg create mode 100644 api/static/bootstrap-icons/badge-sd-fill.svg create mode 100644 api/static/bootstrap-icons/badge-sd.svg create mode 100644 api/static/bootstrap-icons/badge-tm-fill.svg create mode 100644 api/static/bootstrap-icons/badge-tm.svg create mode 100644 api/static/bootstrap-icons/badge-vo-fill.svg create mode 100644 api/static/bootstrap-icons/badge-vo.svg create mode 100644 api/static/bootstrap-icons/badge-vr-fill.svg create mode 100644 api/static/bootstrap-icons/badge-vr.svg create mode 100644 api/static/bootstrap-icons/badge-wc-fill.svg create mode 100644 api/static/bootstrap-icons/badge-wc.svg create mode 100644 api/static/bootstrap-icons/bag-check-fill.svg create mode 100644 api/static/bootstrap-icons/bag-check.svg create mode 100644 api/static/bootstrap-icons/bag-dash-fill.svg create mode 100644 api/static/bootstrap-icons/bag-dash.svg create mode 100644 api/static/bootstrap-icons/bag-fill.svg create mode 100644 api/static/bootstrap-icons/bag-heart-fill.svg create mode 100644 api/static/bootstrap-icons/bag-heart.svg create mode 100644 api/static/bootstrap-icons/bag-plus-fill.svg create mode 100644 api/static/bootstrap-icons/bag-plus.svg create mode 100644 api/static/bootstrap-icons/bag-x-fill.svg create mode 100644 api/static/bootstrap-icons/bag-x.svg create mode 100644 api/static/bootstrap-icons/bag.svg create mode 100644 api/static/bootstrap-icons/balloon-fill.svg create mode 100644 api/static/bootstrap-icons/balloon-heart-fill.svg create mode 100644 api/static/bootstrap-icons/balloon-heart.svg create mode 100644 api/static/bootstrap-icons/balloon.svg create mode 100644 api/static/bootstrap-icons/ban-fill.svg create mode 100644 api/static/bootstrap-icons/ban.svg create mode 100644 api/static/bootstrap-icons/bandaid-fill.svg create mode 100644 api/static/bootstrap-icons/bandaid.svg create mode 100644 api/static/bootstrap-icons/bank.svg create mode 100644 api/static/bootstrap-icons/bank2.svg create mode 100644 api/static/bootstrap-icons/bar-chart-fill.svg create mode 100644 api/static/bootstrap-icons/bar-chart-line-fill.svg create mode 100644 api/static/bootstrap-icons/bar-chart-line.svg create mode 100644 api/static/bootstrap-icons/bar-chart-steps.svg create mode 100644 api/static/bootstrap-icons/bar-chart.svg create mode 100644 api/static/bootstrap-icons/basket-fill.svg create mode 100644 api/static/bootstrap-icons/basket.svg create mode 100644 api/static/bootstrap-icons/basket2-fill.svg create mode 100644 api/static/bootstrap-icons/basket2.svg create mode 100644 api/static/bootstrap-icons/basket3-fill.svg create mode 100644 api/static/bootstrap-icons/basket3.svg create mode 100644 api/static/bootstrap-icons/battery-charging.svg create mode 100644 api/static/bootstrap-icons/battery-full.svg create mode 100644 api/static/bootstrap-icons/battery-half.svg create mode 100644 api/static/bootstrap-icons/battery.svg create mode 100644 api/static/bootstrap-icons/behance.svg create mode 100644 api/static/bootstrap-icons/bell-fill.svg create mode 100644 api/static/bootstrap-icons/bell-slash-fill.svg create mode 100644 api/static/bootstrap-icons/bell-slash.svg create mode 100644 api/static/bootstrap-icons/bell.svg create mode 100644 api/static/bootstrap-icons/bezier.svg create mode 100644 api/static/bootstrap-icons/bezier2.svg create mode 100644 api/static/bootstrap-icons/bicycle.svg create mode 100644 api/static/bootstrap-icons/bing.svg create mode 100644 api/static/bootstrap-icons/binoculars-fill.svg create mode 100644 api/static/bootstrap-icons/binoculars.svg create mode 100644 api/static/bootstrap-icons/blockquote-left.svg create mode 100644 api/static/bootstrap-icons/blockquote-right.svg create mode 100644 api/static/bootstrap-icons/bluetooth.svg create mode 100644 api/static/bootstrap-icons/body-text.svg create mode 100644 api/static/bootstrap-icons/book-fill.svg create mode 100644 api/static/bootstrap-icons/book-half.svg create mode 100644 api/static/bootstrap-icons/book.svg create mode 100644 api/static/bootstrap-icons/bookmark-check-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-check.svg create mode 100644 api/static/bootstrap-icons/bookmark-dash-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-dash.svg create mode 100644 api/static/bootstrap-icons/bookmark-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-heart-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-heart.svg create mode 100644 api/static/bootstrap-icons/bookmark-plus-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-plus.svg create mode 100644 api/static/bootstrap-icons/bookmark-star-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-star.svg create mode 100644 api/static/bootstrap-icons/bookmark-x-fill.svg create mode 100644 api/static/bootstrap-icons/bookmark-x.svg create mode 100644 api/static/bootstrap-icons/bookmark.svg create mode 100644 api/static/bootstrap-icons/bookmarks-fill.svg create mode 100644 api/static/bootstrap-icons/bookmarks.svg create mode 100644 api/static/bootstrap-icons/bookshelf.svg create mode 100644 api/static/bootstrap-icons/boombox-fill.svg create mode 100644 api/static/bootstrap-icons/boombox.svg create mode 100644 api/static/bootstrap-icons/bootstrap-fill.svg create mode 100644 api/static/bootstrap-icons/bootstrap-reboot.svg create mode 100644 api/static/bootstrap-icons/bootstrap.svg create mode 100644 api/static/bootstrap-icons/border-all.svg create mode 100644 api/static/bootstrap-icons/border-bottom.svg create mode 100644 api/static/bootstrap-icons/border-center.svg create mode 100644 api/static/bootstrap-icons/border-inner.svg create mode 100644 api/static/bootstrap-icons/border-left.svg create mode 100644 api/static/bootstrap-icons/border-middle.svg create mode 100644 api/static/bootstrap-icons/border-outer.svg create mode 100644 api/static/bootstrap-icons/border-right.svg create mode 100644 api/static/bootstrap-icons/border-style.svg create mode 100644 api/static/bootstrap-icons/border-top.svg create mode 100644 api/static/bootstrap-icons/border-width.svg create mode 100644 api/static/bootstrap-icons/border.svg create mode 100644 api/static/bootstrap-icons/bounding-box-circles.svg create mode 100644 api/static/bootstrap-icons/bounding-box.svg create mode 100644 api/static/bootstrap-icons/box-arrow-down-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-down-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-down.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-down-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-down-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-down.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-up-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-up-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-in-up.svg create mode 100644 api/static/bootstrap-icons/box-arrow-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-up-left.svg create mode 100644 api/static/bootstrap-icons/box-arrow-up-right.svg create mode 100644 api/static/bootstrap-icons/box-arrow-up.svg create mode 100644 api/static/bootstrap-icons/box-fill.svg create mode 100644 api/static/bootstrap-icons/box-seam-fill.svg create mode 100644 api/static/bootstrap-icons/box-seam.svg create mode 100644 api/static/bootstrap-icons/box.svg create mode 100644 api/static/bootstrap-icons/box2-fill.svg create mode 100644 api/static/bootstrap-icons/box2-heart-fill.svg create mode 100644 api/static/bootstrap-icons/box2-heart.svg create mode 100644 api/static/bootstrap-icons/box2.svg create mode 100644 api/static/bootstrap-icons/boxes.svg create mode 100644 api/static/bootstrap-icons/braces-asterisk.svg create mode 100644 api/static/bootstrap-icons/braces.svg create mode 100644 api/static/bootstrap-icons/bricks.svg create mode 100644 api/static/bootstrap-icons/briefcase-fill.svg create mode 100644 api/static/bootstrap-icons/briefcase.svg create mode 100644 api/static/bootstrap-icons/brightness-alt-high-fill.svg create mode 100644 api/static/bootstrap-icons/brightness-alt-high.svg create mode 100644 api/static/bootstrap-icons/brightness-alt-low-fill.svg create mode 100644 api/static/bootstrap-icons/brightness-alt-low.svg create mode 100644 api/static/bootstrap-icons/brightness-high-fill.svg create mode 100644 api/static/bootstrap-icons/brightness-high.svg create mode 100644 api/static/bootstrap-icons/brightness-low-fill.svg create mode 100644 api/static/bootstrap-icons/brightness-low.svg create mode 100644 api/static/bootstrap-icons/brilliance.svg create mode 100644 api/static/bootstrap-icons/broadcast-pin.svg create mode 100644 api/static/bootstrap-icons/broadcast.svg create mode 100644 api/static/bootstrap-icons/browser-chrome.svg create mode 100644 api/static/bootstrap-icons/browser-edge.svg create mode 100644 api/static/bootstrap-icons/browser-firefox.svg create mode 100644 api/static/bootstrap-icons/browser-safari.svg create mode 100644 api/static/bootstrap-icons/brush-fill.svg create mode 100644 api/static/bootstrap-icons/brush.svg create mode 100644 api/static/bootstrap-icons/bucket-fill.svg create mode 100644 api/static/bootstrap-icons/bucket.svg create mode 100644 api/static/bootstrap-icons/bug-fill.svg create mode 100644 api/static/bootstrap-icons/bug.svg create mode 100644 api/static/bootstrap-icons/building-add.svg create mode 100644 api/static/bootstrap-icons/building-check.svg create mode 100644 api/static/bootstrap-icons/building-dash.svg create mode 100644 api/static/bootstrap-icons/building-down.svg create mode 100644 api/static/bootstrap-icons/building-exclamation.svg create mode 100644 api/static/bootstrap-icons/building-fill-add.svg create mode 100644 api/static/bootstrap-icons/building-fill-check.svg create mode 100644 api/static/bootstrap-icons/building-fill-dash.svg create mode 100644 api/static/bootstrap-icons/building-fill-down.svg create mode 100644 api/static/bootstrap-icons/building-fill-exclamation.svg create mode 100644 api/static/bootstrap-icons/building-fill-gear.svg create mode 100644 api/static/bootstrap-icons/building-fill-lock.svg create mode 100644 api/static/bootstrap-icons/building-fill-slash.svg create mode 100644 api/static/bootstrap-icons/building-fill-up.svg create mode 100644 api/static/bootstrap-icons/building-fill-x.svg create mode 100644 api/static/bootstrap-icons/building-fill.svg create mode 100644 api/static/bootstrap-icons/building-gear.svg create mode 100644 api/static/bootstrap-icons/building-lock.svg create mode 100644 api/static/bootstrap-icons/building-slash.svg create mode 100644 api/static/bootstrap-icons/building-up.svg create mode 100644 api/static/bootstrap-icons/building-x.svg create mode 100644 api/static/bootstrap-icons/building.svg create mode 100644 api/static/bootstrap-icons/buildings-fill.svg create mode 100644 api/static/bootstrap-icons/buildings.svg create mode 100644 api/static/bootstrap-icons/bullseye.svg create mode 100644 api/static/bootstrap-icons/bus-front-fill.svg create mode 100644 api/static/bootstrap-icons/bus-front.svg create mode 100644 api/static/bootstrap-icons/c-circle-fill.svg create mode 100644 api/static/bootstrap-icons/c-circle.svg create mode 100644 api/static/bootstrap-icons/c-square-fill.svg create mode 100644 api/static/bootstrap-icons/c-square.svg create mode 100644 api/static/bootstrap-icons/cake-fill.svg create mode 100644 api/static/bootstrap-icons/cake.svg create mode 100644 api/static/bootstrap-icons/cake2-fill.svg create mode 100644 api/static/bootstrap-icons/cake2.svg create mode 100644 api/static/bootstrap-icons/calculator-fill.svg create mode 100644 api/static/bootstrap-icons/calculator.svg create mode 100644 api/static/bootstrap-icons/calendar-check-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-check.svg create mode 100644 api/static/bootstrap-icons/calendar-date-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-date.svg create mode 100644 api/static/bootstrap-icons/calendar-day-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-day.svg create mode 100644 api/static/bootstrap-icons/calendar-event-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-event.svg create mode 100644 api/static/bootstrap-icons/calendar-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-heart-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-heart.svg create mode 100644 api/static/bootstrap-icons/calendar-minus-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-minus.svg create mode 100644 api/static/bootstrap-icons/calendar-month-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-month.svg create mode 100644 api/static/bootstrap-icons/calendar-plus-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-plus.svg create mode 100644 api/static/bootstrap-icons/calendar-range-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-range.svg create mode 100644 api/static/bootstrap-icons/calendar-week-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-week.svg create mode 100644 api/static/bootstrap-icons/calendar-x-fill.svg create mode 100644 api/static/bootstrap-icons/calendar-x.svg create mode 100644 api/static/bootstrap-icons/calendar.svg create mode 100644 api/static/bootstrap-icons/calendar2-check-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-check.svg create mode 100644 api/static/bootstrap-icons/calendar2-date-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-date.svg create mode 100644 api/static/bootstrap-icons/calendar2-day-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-day.svg create mode 100644 api/static/bootstrap-icons/calendar2-event-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-event.svg create mode 100644 api/static/bootstrap-icons/calendar2-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-heart-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-heart.svg create mode 100644 api/static/bootstrap-icons/calendar2-minus-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-minus.svg create mode 100644 api/static/bootstrap-icons/calendar2-month-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-month.svg create mode 100644 api/static/bootstrap-icons/calendar2-plus-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-plus.svg create mode 100644 api/static/bootstrap-icons/calendar2-range-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-range.svg create mode 100644 api/static/bootstrap-icons/calendar2-week-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-week.svg create mode 100644 api/static/bootstrap-icons/calendar2-x-fill.svg create mode 100644 api/static/bootstrap-icons/calendar2-x.svg create mode 100644 api/static/bootstrap-icons/calendar2.svg create mode 100644 api/static/bootstrap-icons/calendar3-event-fill.svg create mode 100644 api/static/bootstrap-icons/calendar3-event.svg create mode 100644 api/static/bootstrap-icons/calendar3-fill.svg create mode 100644 api/static/bootstrap-icons/calendar3-range-fill.svg create mode 100644 api/static/bootstrap-icons/calendar3-range.svg create mode 100644 api/static/bootstrap-icons/calendar3-week-fill.svg create mode 100644 api/static/bootstrap-icons/calendar3-week.svg create mode 100644 api/static/bootstrap-icons/calendar3.svg create mode 100644 api/static/bootstrap-icons/calendar4-event.svg create mode 100644 api/static/bootstrap-icons/calendar4-range.svg create mode 100644 api/static/bootstrap-icons/calendar4-week.svg create mode 100644 api/static/bootstrap-icons/calendar4.svg create mode 100644 api/static/bootstrap-icons/camera-fill.svg create mode 100644 api/static/bootstrap-icons/camera-reels-fill.svg create mode 100644 api/static/bootstrap-icons/camera-reels.svg create mode 100644 api/static/bootstrap-icons/camera-video-fill.svg create mode 100644 api/static/bootstrap-icons/camera-video-off-fill.svg create mode 100644 api/static/bootstrap-icons/camera-video-off.svg create mode 100644 api/static/bootstrap-icons/camera-video.svg create mode 100644 api/static/bootstrap-icons/camera.svg create mode 100644 api/static/bootstrap-icons/camera2.svg create mode 100644 api/static/bootstrap-icons/capslock-fill.svg create mode 100644 api/static/bootstrap-icons/capslock.svg create mode 100644 api/static/bootstrap-icons/capsule-pill.svg create mode 100644 api/static/bootstrap-icons/capsule.svg create mode 100644 api/static/bootstrap-icons/car-front-fill.svg create mode 100644 api/static/bootstrap-icons/car-front.svg create mode 100644 api/static/bootstrap-icons/card-checklist.svg create mode 100644 api/static/bootstrap-icons/card-heading.svg create mode 100644 api/static/bootstrap-icons/card-image.svg create mode 100644 api/static/bootstrap-icons/card-list.svg create mode 100644 api/static/bootstrap-icons/card-text.svg create mode 100644 api/static/bootstrap-icons/caret-down-fill.svg create mode 100644 api/static/bootstrap-icons/caret-down-square-fill.svg create mode 100644 api/static/bootstrap-icons/caret-down-square.svg create mode 100644 api/static/bootstrap-icons/caret-down.svg create mode 100644 api/static/bootstrap-icons/caret-left-fill.svg create mode 100644 api/static/bootstrap-icons/caret-left-square-fill.svg create mode 100644 api/static/bootstrap-icons/caret-left-square.svg create mode 100644 api/static/bootstrap-icons/caret-left.svg create mode 100644 api/static/bootstrap-icons/caret-right-fill.svg create mode 100644 api/static/bootstrap-icons/caret-right-square-fill.svg create mode 100644 api/static/bootstrap-icons/caret-right-square.svg create mode 100644 api/static/bootstrap-icons/caret-right.svg create mode 100644 api/static/bootstrap-icons/caret-up-fill.svg create mode 100644 api/static/bootstrap-icons/caret-up-square-fill.svg create mode 100644 api/static/bootstrap-icons/caret-up-square.svg create mode 100644 api/static/bootstrap-icons/caret-up.svg create mode 100644 api/static/bootstrap-icons/cart-check-fill.svg create mode 100644 api/static/bootstrap-icons/cart-check.svg create mode 100644 api/static/bootstrap-icons/cart-dash-fill.svg create mode 100644 api/static/bootstrap-icons/cart-dash.svg create mode 100644 api/static/bootstrap-icons/cart-fill.svg create mode 100644 api/static/bootstrap-icons/cart-plus-fill.svg create mode 100644 api/static/bootstrap-icons/cart-plus.svg create mode 100644 api/static/bootstrap-icons/cart-x-fill.svg create mode 100644 api/static/bootstrap-icons/cart-x.svg create mode 100644 api/static/bootstrap-icons/cart.svg create mode 100644 api/static/bootstrap-icons/cart2.svg create mode 100644 api/static/bootstrap-icons/cart3.svg create mode 100644 api/static/bootstrap-icons/cart4.svg create mode 100644 api/static/bootstrap-icons/cash-coin.svg create mode 100644 api/static/bootstrap-icons/cash-stack.svg create mode 100644 api/static/bootstrap-icons/cash.svg create mode 100644 api/static/bootstrap-icons/cassette-fill.svg create mode 100644 api/static/bootstrap-icons/cassette.svg create mode 100644 api/static/bootstrap-icons/cast.svg create mode 100644 api/static/bootstrap-icons/cc-circle-fill.svg create mode 100644 api/static/bootstrap-icons/cc-circle.svg create mode 100644 api/static/bootstrap-icons/cc-square-fill.svg create mode 100644 api/static/bootstrap-icons/cc-square.svg create mode 100644 api/static/bootstrap-icons/chat-dots-fill.svg create mode 100644 api/static/bootstrap-icons/chat-dots.svg create mode 100644 api/static/bootstrap-icons/chat-fill.svg create mode 100644 api/static/bootstrap-icons/chat-heart-fill.svg create mode 100644 api/static/bootstrap-icons/chat-heart.svg create mode 100644 api/static/bootstrap-icons/chat-left-dots-fill.svg create mode 100644 api/static/bootstrap-icons/chat-left-dots.svg create mode 100644 api/static/bootstrap-icons/chat-left-fill.svg create mode 100644 api/static/bootstrap-icons/chat-left-heart-fill.svg create mode 100644 api/static/bootstrap-icons/chat-left-heart.svg create mode 100644 api/static/bootstrap-icons/chat-left-quote-fill.svg create mode 100644 api/static/bootstrap-icons/chat-left-quote.svg create mode 100644 api/static/bootstrap-icons/chat-left-text-fill.svg create mode 100644 api/static/bootstrap-icons/chat-left-text.svg create mode 100644 api/static/bootstrap-icons/chat-left.svg create mode 100644 api/static/bootstrap-icons/chat-quote-fill.svg create mode 100644 api/static/bootstrap-icons/chat-quote.svg create mode 100644 api/static/bootstrap-icons/chat-right-dots-fill.svg create mode 100644 api/static/bootstrap-icons/chat-right-dots.svg create mode 100644 api/static/bootstrap-icons/chat-right-fill.svg create mode 100644 api/static/bootstrap-icons/chat-right-heart-fill.svg create mode 100644 api/static/bootstrap-icons/chat-right-heart.svg create mode 100644 api/static/bootstrap-icons/chat-right-quote-fill.svg create mode 100644 api/static/bootstrap-icons/chat-right-quote.svg create mode 100644 api/static/bootstrap-icons/chat-right-text-fill.svg create mode 100644 api/static/bootstrap-icons/chat-right-text.svg create mode 100644 api/static/bootstrap-icons/chat-right.svg create mode 100644 api/static/bootstrap-icons/chat-square-dots-fill.svg create mode 100644 api/static/bootstrap-icons/chat-square-dots.svg create mode 100644 api/static/bootstrap-icons/chat-square-fill.svg create mode 100644 api/static/bootstrap-icons/chat-square-heart-fill.svg create mode 100644 api/static/bootstrap-icons/chat-square-heart.svg create mode 100644 api/static/bootstrap-icons/chat-square-quote-fill.svg create mode 100644 api/static/bootstrap-icons/chat-square-quote.svg create mode 100644 api/static/bootstrap-icons/chat-square-text-fill.svg create mode 100644 api/static/bootstrap-icons/chat-square-text.svg create mode 100644 api/static/bootstrap-icons/chat-square.svg create mode 100644 api/static/bootstrap-icons/chat-text-fill.svg create mode 100644 api/static/bootstrap-icons/chat-text.svg create mode 100644 api/static/bootstrap-icons/chat.svg create mode 100644 api/static/bootstrap-icons/check-all.svg create mode 100644 api/static/bootstrap-icons/check-circle-fill.svg create mode 100644 api/static/bootstrap-icons/check-circle.svg create mode 100644 api/static/bootstrap-icons/check-lg.svg create mode 100644 api/static/bootstrap-icons/check-square-fill.svg create mode 100644 api/static/bootstrap-icons/check-square.svg create mode 100644 api/static/bootstrap-icons/check.svg create mode 100644 api/static/bootstrap-icons/check2-all.svg create mode 100644 api/static/bootstrap-icons/check2-circle.svg create mode 100644 api/static/bootstrap-icons/check2-square.svg create mode 100644 api/static/bootstrap-icons/check2.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-contract.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-down.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-expand.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-left.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-right.svg create mode 100644 api/static/bootstrap-icons/chevron-bar-up.svg create mode 100644 api/static/bootstrap-icons/chevron-compact-down.svg create mode 100644 api/static/bootstrap-icons/chevron-compact-left.svg create mode 100644 api/static/bootstrap-icons/chevron-compact-right.svg create mode 100644 api/static/bootstrap-icons/chevron-compact-up.svg create mode 100644 api/static/bootstrap-icons/chevron-contract.svg create mode 100644 api/static/bootstrap-icons/chevron-double-down.svg create mode 100644 api/static/bootstrap-icons/chevron-double-left.svg create mode 100644 api/static/bootstrap-icons/chevron-double-right.svg create mode 100644 api/static/bootstrap-icons/chevron-double-up.svg create mode 100644 api/static/bootstrap-icons/chevron-down.svg create mode 100644 api/static/bootstrap-icons/chevron-expand.svg create mode 100644 api/static/bootstrap-icons/chevron-left.svg create mode 100644 api/static/bootstrap-icons/chevron-right.svg create mode 100644 api/static/bootstrap-icons/chevron-up.svg create mode 100644 api/static/bootstrap-icons/circle-fill.svg create mode 100644 api/static/bootstrap-icons/circle-half.svg create mode 100644 api/static/bootstrap-icons/circle-square.svg create mode 100644 api/static/bootstrap-icons/circle.svg create mode 100644 api/static/bootstrap-icons/clipboard-check-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-check.svg create mode 100644 api/static/bootstrap-icons/clipboard-data-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-data.svg create mode 100644 api/static/bootstrap-icons/clipboard-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-heart-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-heart.svg create mode 100644 api/static/bootstrap-icons/clipboard-minus-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-minus.svg create mode 100644 api/static/bootstrap-icons/clipboard-plus-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-plus.svg create mode 100644 api/static/bootstrap-icons/clipboard-pulse.svg create mode 100644 api/static/bootstrap-icons/clipboard-x-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard-x.svg create mode 100644 api/static/bootstrap-icons/clipboard.svg create mode 100644 api/static/bootstrap-icons/clipboard2-check-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-check.svg create mode 100644 api/static/bootstrap-icons/clipboard2-data-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-data.svg create mode 100644 api/static/bootstrap-icons/clipboard2-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-heart-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-heart.svg create mode 100644 api/static/bootstrap-icons/clipboard2-minus-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-minus.svg create mode 100644 api/static/bootstrap-icons/clipboard2-plus-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-plus.svg create mode 100644 api/static/bootstrap-icons/clipboard2-pulse-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-pulse.svg create mode 100644 api/static/bootstrap-icons/clipboard2-x-fill.svg create mode 100644 api/static/bootstrap-icons/clipboard2-x.svg create mode 100644 api/static/bootstrap-icons/clipboard2.svg create mode 100644 api/static/bootstrap-icons/clock-fill.svg create mode 100644 api/static/bootstrap-icons/clock-history.svg create mode 100644 api/static/bootstrap-icons/clock.svg create mode 100644 api/static/bootstrap-icons/cloud-arrow-down-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-arrow-down.svg create mode 100644 api/static/bootstrap-icons/cloud-arrow-up-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-arrow-up.svg create mode 100644 api/static/bootstrap-icons/cloud-check-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-check.svg create mode 100644 api/static/bootstrap-icons/cloud-download-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-download.svg create mode 100644 api/static/bootstrap-icons/cloud-drizzle-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-drizzle.svg create mode 100644 api/static/bootstrap-icons/cloud-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-fog-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-fog.svg create mode 100644 api/static/bootstrap-icons/cloud-fog2-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-fog2.svg create mode 100644 api/static/bootstrap-icons/cloud-hail-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-hail.svg create mode 100644 api/static/bootstrap-icons/cloud-haze-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-haze.svg create mode 100644 api/static/bootstrap-icons/cloud-haze2-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-haze2.svg create mode 100644 api/static/bootstrap-icons/cloud-lightning-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-lightning-rain-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-lightning-rain.svg create mode 100644 api/static/bootstrap-icons/cloud-lightning.svg create mode 100644 api/static/bootstrap-icons/cloud-minus-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-minus.svg create mode 100644 api/static/bootstrap-icons/cloud-moon-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-moon.svg create mode 100644 api/static/bootstrap-icons/cloud-plus-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-plus.svg create mode 100644 api/static/bootstrap-icons/cloud-rain-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-rain-heavy-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-rain-heavy.svg create mode 100644 api/static/bootstrap-icons/cloud-rain.svg create mode 100644 api/static/bootstrap-icons/cloud-slash-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-slash.svg create mode 100644 api/static/bootstrap-icons/cloud-sleet-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-sleet.svg create mode 100644 api/static/bootstrap-icons/cloud-snow-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-snow.svg create mode 100644 api/static/bootstrap-icons/cloud-sun-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-sun.svg create mode 100644 api/static/bootstrap-icons/cloud-upload-fill.svg create mode 100644 api/static/bootstrap-icons/cloud-upload.svg create mode 100644 api/static/bootstrap-icons/cloud.svg create mode 100644 api/static/bootstrap-icons/clouds-fill.svg create mode 100644 api/static/bootstrap-icons/clouds.svg create mode 100644 api/static/bootstrap-icons/cloudy-fill.svg create mode 100644 api/static/bootstrap-icons/cloudy.svg create mode 100644 api/static/bootstrap-icons/code-slash.svg create mode 100644 api/static/bootstrap-icons/code-square.svg create mode 100644 api/static/bootstrap-icons/code.svg create mode 100644 api/static/bootstrap-icons/coin.svg create mode 100644 api/static/bootstrap-icons/collection-fill.svg create mode 100644 api/static/bootstrap-icons/collection-play-fill.svg create mode 100644 api/static/bootstrap-icons/collection-play.svg create mode 100644 api/static/bootstrap-icons/collection.svg create mode 100644 api/static/bootstrap-icons/columns-gap.svg create mode 100644 api/static/bootstrap-icons/columns.svg create mode 100644 api/static/bootstrap-icons/command.svg create mode 100644 api/static/bootstrap-icons/compass-fill.svg create mode 100644 api/static/bootstrap-icons/compass.svg create mode 100644 api/static/bootstrap-icons/cone-striped.svg create mode 100644 api/static/bootstrap-icons/cone.svg create mode 100644 api/static/bootstrap-icons/controller.svg create mode 100644 api/static/bootstrap-icons/cookie.svg create mode 100644 api/static/bootstrap-icons/copy.svg create mode 100644 api/static/bootstrap-icons/cpu-fill.svg create mode 100644 api/static/bootstrap-icons/cpu.svg create mode 100644 api/static/bootstrap-icons/credit-card-2-back-fill.svg create mode 100644 api/static/bootstrap-icons/credit-card-2-back.svg create mode 100644 api/static/bootstrap-icons/credit-card-2-front-fill.svg create mode 100644 api/static/bootstrap-icons/credit-card-2-front.svg create mode 100644 api/static/bootstrap-icons/credit-card-fill.svg create mode 100644 api/static/bootstrap-icons/credit-card.svg create mode 100644 api/static/bootstrap-icons/crop.svg create mode 100644 api/static/bootstrap-icons/crosshair.svg create mode 100644 api/static/bootstrap-icons/crosshair2.svg create mode 100644 api/static/bootstrap-icons/cup-fill.svg create mode 100644 api/static/bootstrap-icons/cup-hot-fill.svg create mode 100644 api/static/bootstrap-icons/cup-hot.svg create mode 100644 api/static/bootstrap-icons/cup-straw.svg create mode 100644 api/static/bootstrap-icons/cup.svg create mode 100644 api/static/bootstrap-icons/currency-bitcoin.svg create mode 100644 api/static/bootstrap-icons/currency-dollar.svg create mode 100644 api/static/bootstrap-icons/currency-euro.svg create mode 100644 api/static/bootstrap-icons/currency-exchange.svg create mode 100644 api/static/bootstrap-icons/currency-pound.svg create mode 100644 api/static/bootstrap-icons/currency-rupee.svg create mode 100644 api/static/bootstrap-icons/currency-yen.svg create mode 100644 api/static/bootstrap-icons/cursor-fill.svg create mode 100644 api/static/bootstrap-icons/cursor-text.svg create mode 100644 api/static/bootstrap-icons/cursor.svg create mode 100644 api/static/bootstrap-icons/dash-circle-dotted.svg create mode 100644 api/static/bootstrap-icons/dash-circle-fill.svg create mode 100644 api/static/bootstrap-icons/dash-circle.svg create mode 100644 api/static/bootstrap-icons/dash-lg.svg create mode 100644 api/static/bootstrap-icons/dash-square-dotted.svg create mode 100644 api/static/bootstrap-icons/dash-square-fill.svg create mode 100644 api/static/bootstrap-icons/dash-square.svg create mode 100644 api/static/bootstrap-icons/dash.svg create mode 100644 api/static/bootstrap-icons/database-add.svg create mode 100644 api/static/bootstrap-icons/database-check.svg create mode 100644 api/static/bootstrap-icons/database-dash.svg create mode 100644 api/static/bootstrap-icons/database-down.svg create mode 100644 api/static/bootstrap-icons/database-exclamation.svg create mode 100644 api/static/bootstrap-icons/database-fill-add.svg create mode 100644 api/static/bootstrap-icons/database-fill-check.svg create mode 100644 api/static/bootstrap-icons/database-fill-dash.svg create mode 100644 api/static/bootstrap-icons/database-fill-down.svg create mode 100644 api/static/bootstrap-icons/database-fill-exclamation.svg create mode 100644 api/static/bootstrap-icons/database-fill-gear.svg create mode 100644 api/static/bootstrap-icons/database-fill-lock.svg create mode 100644 api/static/bootstrap-icons/database-fill-slash.svg create mode 100644 api/static/bootstrap-icons/database-fill-up.svg create mode 100644 api/static/bootstrap-icons/database-fill-x.svg create mode 100644 api/static/bootstrap-icons/database-fill.svg create mode 100644 api/static/bootstrap-icons/database-gear.svg create mode 100644 api/static/bootstrap-icons/database-lock.svg create mode 100644 api/static/bootstrap-icons/database-slash.svg create mode 100644 api/static/bootstrap-icons/database-up.svg create mode 100644 api/static/bootstrap-icons/database-x.svg create mode 100644 api/static/bootstrap-icons/database.svg create mode 100644 api/static/bootstrap-icons/device-hdd-fill.svg create mode 100644 api/static/bootstrap-icons/device-hdd.svg create mode 100644 api/static/bootstrap-icons/device-ssd-fill.svg create mode 100644 api/static/bootstrap-icons/device-ssd.svg create mode 100644 api/static/bootstrap-icons/diagram-2-fill.svg create mode 100644 api/static/bootstrap-icons/diagram-2.svg create mode 100644 api/static/bootstrap-icons/diagram-3-fill.svg create mode 100644 api/static/bootstrap-icons/diagram-3.svg create mode 100644 api/static/bootstrap-icons/diamond-fill.svg create mode 100644 api/static/bootstrap-icons/diamond-half.svg create mode 100644 api/static/bootstrap-icons/diamond.svg create mode 100644 api/static/bootstrap-icons/dice-1-fill.svg create mode 100644 api/static/bootstrap-icons/dice-1.svg create mode 100644 api/static/bootstrap-icons/dice-2-fill.svg create mode 100644 api/static/bootstrap-icons/dice-2.svg create mode 100644 api/static/bootstrap-icons/dice-3-fill.svg create mode 100644 api/static/bootstrap-icons/dice-3.svg create mode 100644 api/static/bootstrap-icons/dice-4-fill.svg create mode 100644 api/static/bootstrap-icons/dice-4.svg create mode 100644 api/static/bootstrap-icons/dice-5-fill.svg create mode 100644 api/static/bootstrap-icons/dice-5.svg create mode 100644 api/static/bootstrap-icons/dice-6-fill.svg create mode 100644 api/static/bootstrap-icons/dice-6.svg create mode 100644 api/static/bootstrap-icons/disc-fill.svg create mode 100644 api/static/bootstrap-icons/disc.svg create mode 100644 api/static/bootstrap-icons/discord.svg create mode 100644 api/static/bootstrap-icons/display-fill.svg create mode 100644 api/static/bootstrap-icons/display.svg create mode 100644 api/static/bootstrap-icons/displayport-fill.svg create mode 100644 api/static/bootstrap-icons/displayport.svg create mode 100644 api/static/bootstrap-icons/distribute-horizontal.svg create mode 100644 api/static/bootstrap-icons/distribute-vertical.svg create mode 100644 api/static/bootstrap-icons/door-closed-fill.svg create mode 100644 api/static/bootstrap-icons/door-closed.svg create mode 100644 api/static/bootstrap-icons/door-open-fill.svg create mode 100644 api/static/bootstrap-icons/door-open.svg create mode 100644 api/static/bootstrap-icons/dot.svg create mode 100644 api/static/bootstrap-icons/download.svg create mode 100644 api/static/bootstrap-icons/dpad-fill.svg create mode 100644 api/static/bootstrap-icons/dpad.svg create mode 100644 api/static/bootstrap-icons/dribbble.svg create mode 100644 api/static/bootstrap-icons/dropbox.svg create mode 100644 api/static/bootstrap-icons/droplet-fill.svg create mode 100644 api/static/bootstrap-icons/droplet-half.svg create mode 100644 api/static/bootstrap-icons/droplet.svg create mode 100644 api/static/bootstrap-icons/duffle-fill.svg create mode 100644 api/static/bootstrap-icons/duffle.svg create mode 100644 api/static/bootstrap-icons/ear-fill.svg create mode 100644 api/static/bootstrap-icons/ear.svg create mode 100644 api/static/bootstrap-icons/earbuds.svg create mode 100644 api/static/bootstrap-icons/easel-fill.svg create mode 100644 api/static/bootstrap-icons/easel.svg create mode 100644 api/static/bootstrap-icons/easel2-fill.svg create mode 100644 api/static/bootstrap-icons/easel2.svg create mode 100644 api/static/bootstrap-icons/easel3-fill.svg create mode 100644 api/static/bootstrap-icons/easel3.svg create mode 100644 api/static/bootstrap-icons/egg-fill.svg create mode 100644 api/static/bootstrap-icons/egg-fried.svg create mode 100644 api/static/bootstrap-icons/egg.svg create mode 100644 api/static/bootstrap-icons/eject-fill.svg create mode 100644 api/static/bootstrap-icons/eject.svg create mode 100644 api/static/bootstrap-icons/emoji-angry-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-angry.svg create mode 100644 api/static/bootstrap-icons/emoji-astonished-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-astonished.svg create mode 100644 api/static/bootstrap-icons/emoji-dizzy-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-dizzy.svg create mode 100644 api/static/bootstrap-icons/emoji-expressionless-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-expressionless.svg create mode 100644 api/static/bootstrap-icons/emoji-frown-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-frown.svg create mode 100644 api/static/bootstrap-icons/emoji-grimace-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-grimace.svg create mode 100644 api/static/bootstrap-icons/emoji-grin-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-grin.svg create mode 100644 api/static/bootstrap-icons/emoji-heart-eyes-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-heart-eyes.svg create mode 100644 api/static/bootstrap-icons/emoji-kiss-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-kiss.svg create mode 100644 api/static/bootstrap-icons/emoji-laughing-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-laughing.svg create mode 100644 api/static/bootstrap-icons/emoji-neutral-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-neutral.svg create mode 100644 api/static/bootstrap-icons/emoji-smile-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-smile-upside-down-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-smile-upside-down.svg create mode 100644 api/static/bootstrap-icons/emoji-smile.svg create mode 100644 api/static/bootstrap-icons/emoji-sunglasses-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-sunglasses.svg create mode 100644 api/static/bootstrap-icons/emoji-surprise-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-surprise.svg create mode 100644 api/static/bootstrap-icons/emoji-tear-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-tear.svg create mode 100644 api/static/bootstrap-icons/emoji-wink-fill.svg create mode 100644 api/static/bootstrap-icons/emoji-wink.svg create mode 100644 api/static/bootstrap-icons/envelope-arrow-down-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-arrow-down.svg create mode 100644 api/static/bootstrap-icons/envelope-arrow-up-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-arrow-up.svg create mode 100644 api/static/bootstrap-icons/envelope-at-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-at.svg create mode 100644 api/static/bootstrap-icons/envelope-check-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-check.svg create mode 100644 api/static/bootstrap-icons/envelope-dash-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-dash.svg create mode 100644 api/static/bootstrap-icons/envelope-exclamation-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-exclamation.svg create mode 100644 api/static/bootstrap-icons/envelope-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-heart-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-heart.svg create mode 100644 api/static/bootstrap-icons/envelope-open-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-open-heart-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-open-heart.svg create mode 100644 api/static/bootstrap-icons/envelope-open.svg create mode 100644 api/static/bootstrap-icons/envelope-paper-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-paper-heart-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-paper-heart.svg create mode 100644 api/static/bootstrap-icons/envelope-paper.svg create mode 100644 api/static/bootstrap-icons/envelope-plus-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-plus.svg create mode 100644 api/static/bootstrap-icons/envelope-slash-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-slash.svg create mode 100644 api/static/bootstrap-icons/envelope-x-fill.svg create mode 100644 api/static/bootstrap-icons/envelope-x.svg create mode 100644 api/static/bootstrap-icons/envelope.svg create mode 100644 api/static/bootstrap-icons/eraser-fill.svg create mode 100644 api/static/bootstrap-icons/eraser.svg create mode 100644 api/static/bootstrap-icons/escape.svg create mode 100644 api/static/bootstrap-icons/ethernet.svg create mode 100644 api/static/bootstrap-icons/ev-front-fill.svg create mode 100644 api/static/bootstrap-icons/ev-front.svg create mode 100644 api/static/bootstrap-icons/ev-station-fill.svg create mode 100644 api/static/bootstrap-icons/ev-station.svg create mode 100644 api/static/bootstrap-icons/exclamation-circle-fill.svg create mode 100644 api/static/bootstrap-icons/exclamation-circle.svg create mode 100644 api/static/bootstrap-icons/exclamation-diamond-fill.svg create mode 100644 api/static/bootstrap-icons/exclamation-diamond.svg create mode 100644 api/static/bootstrap-icons/exclamation-lg.svg create mode 100644 api/static/bootstrap-icons/exclamation-octagon-fill.svg create mode 100644 api/static/bootstrap-icons/exclamation-octagon.svg create mode 100644 api/static/bootstrap-icons/exclamation-square-fill.svg create mode 100644 api/static/bootstrap-icons/exclamation-square.svg create mode 100644 api/static/bootstrap-icons/exclamation-triangle-fill.svg create mode 100644 api/static/bootstrap-icons/exclamation-triangle.svg create mode 100644 api/static/bootstrap-icons/exclamation.svg create mode 100644 api/static/bootstrap-icons/exclude.svg create mode 100644 api/static/bootstrap-icons/explicit-fill.svg create mode 100644 api/static/bootstrap-icons/explicit.svg create mode 100644 api/static/bootstrap-icons/exposure.svg create mode 100644 api/static/bootstrap-icons/eye-fill.svg create mode 100644 api/static/bootstrap-icons/eye-slash-fill.svg create mode 100644 api/static/bootstrap-icons/eye-slash.svg create mode 100644 api/static/bootstrap-icons/eye.svg create mode 100644 api/static/bootstrap-icons/eyedropper.svg create mode 100644 api/static/bootstrap-icons/eyeglasses.svg create mode 100644 api/static/bootstrap-icons/facebook.svg create mode 100644 api/static/bootstrap-icons/fan.svg create mode 100644 api/static/bootstrap-icons/fast-forward-btn-fill.svg create mode 100644 api/static/bootstrap-icons/fast-forward-btn.svg create mode 100644 api/static/bootstrap-icons/fast-forward-circle-fill.svg create mode 100644 api/static/bootstrap-icons/fast-forward-circle.svg create mode 100644 api/static/bootstrap-icons/fast-forward-fill.svg create mode 100644 api/static/bootstrap-icons/fast-forward.svg create mode 100644 api/static/bootstrap-icons/feather.svg create mode 100644 api/static/bootstrap-icons/feather2.svg create mode 100644 api/static/bootstrap-icons/file-arrow-down-fill.svg create mode 100644 api/static/bootstrap-icons/file-arrow-down.svg create mode 100644 api/static/bootstrap-icons/file-arrow-up-fill.svg create mode 100644 api/static/bootstrap-icons/file-arrow-up.svg create mode 100644 api/static/bootstrap-icons/file-bar-graph-fill.svg create mode 100644 api/static/bootstrap-icons/file-bar-graph.svg create mode 100644 api/static/bootstrap-icons/file-binary-fill.svg create mode 100644 api/static/bootstrap-icons/file-binary.svg create mode 100644 api/static/bootstrap-icons/file-break-fill.svg create mode 100644 api/static/bootstrap-icons/file-break.svg create mode 100644 api/static/bootstrap-icons/file-check-fill.svg create mode 100644 api/static/bootstrap-icons/file-check.svg create mode 100644 api/static/bootstrap-icons/file-code-fill.svg create mode 100644 api/static/bootstrap-icons/file-code.svg create mode 100644 api/static/bootstrap-icons/file-diff-fill.svg create mode 100644 api/static/bootstrap-icons/file-diff.svg create mode 100644 api/static/bootstrap-icons/file-earmark-arrow-down-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-arrow-down.svg create mode 100644 api/static/bootstrap-icons/file-earmark-arrow-up-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-arrow-up.svg create mode 100644 api/static/bootstrap-icons/file-earmark-bar-graph-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-bar-graph.svg create mode 100644 api/static/bootstrap-icons/file-earmark-binary-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-binary.svg create mode 100644 api/static/bootstrap-icons/file-earmark-break-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-break.svg create mode 100644 api/static/bootstrap-icons/file-earmark-check-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-check.svg create mode 100644 api/static/bootstrap-icons/file-earmark-code-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-code.svg create mode 100644 api/static/bootstrap-icons/file-earmark-diff-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-diff.svg create mode 100644 api/static/bootstrap-icons/file-earmark-easel-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-easel.svg create mode 100644 api/static/bootstrap-icons/file-earmark-excel-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-excel.svg create mode 100644 api/static/bootstrap-icons/file-earmark-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-font-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-font.svg create mode 100644 api/static/bootstrap-icons/file-earmark-image-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-image.svg create mode 100644 api/static/bootstrap-icons/file-earmark-lock-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-lock.svg create mode 100644 api/static/bootstrap-icons/file-earmark-lock2-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-lock2.svg create mode 100644 api/static/bootstrap-icons/file-earmark-medical-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-medical.svg create mode 100644 api/static/bootstrap-icons/file-earmark-minus-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-minus.svg create mode 100644 api/static/bootstrap-icons/file-earmark-music-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-music.svg create mode 100644 api/static/bootstrap-icons/file-earmark-pdf-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-pdf.svg create mode 100644 api/static/bootstrap-icons/file-earmark-person-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-person.svg create mode 100644 api/static/bootstrap-icons/file-earmark-play-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-play.svg create mode 100644 api/static/bootstrap-icons/file-earmark-plus-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-plus.svg create mode 100644 api/static/bootstrap-icons/file-earmark-post-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-post.svg create mode 100644 api/static/bootstrap-icons/file-earmark-ppt-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-ppt.svg create mode 100644 api/static/bootstrap-icons/file-earmark-richtext-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-richtext.svg create mode 100644 api/static/bootstrap-icons/file-earmark-ruled-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-ruled.svg create mode 100644 api/static/bootstrap-icons/file-earmark-slides-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-slides.svg create mode 100644 api/static/bootstrap-icons/file-earmark-spreadsheet-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-spreadsheet.svg create mode 100644 api/static/bootstrap-icons/file-earmark-text-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-text.svg create mode 100644 api/static/bootstrap-icons/file-earmark-word-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-word.svg create mode 100644 api/static/bootstrap-icons/file-earmark-x-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-x.svg create mode 100644 api/static/bootstrap-icons/file-earmark-zip-fill.svg create mode 100644 api/static/bootstrap-icons/file-earmark-zip.svg create mode 100644 api/static/bootstrap-icons/file-earmark.svg create mode 100644 api/static/bootstrap-icons/file-easel-fill.svg create mode 100644 api/static/bootstrap-icons/file-easel.svg create mode 100644 api/static/bootstrap-icons/file-excel-fill.svg create mode 100644 api/static/bootstrap-icons/file-excel.svg create mode 100644 api/static/bootstrap-icons/file-fill.svg create mode 100644 api/static/bootstrap-icons/file-font-fill.svg create mode 100644 api/static/bootstrap-icons/file-font.svg create mode 100644 api/static/bootstrap-icons/file-image-fill.svg create mode 100644 api/static/bootstrap-icons/file-image.svg create mode 100644 api/static/bootstrap-icons/file-lock-fill.svg create mode 100644 api/static/bootstrap-icons/file-lock.svg create mode 100644 api/static/bootstrap-icons/file-lock2-fill.svg create mode 100644 api/static/bootstrap-icons/file-lock2.svg create mode 100644 api/static/bootstrap-icons/file-medical-fill.svg create mode 100644 api/static/bootstrap-icons/file-medical.svg create mode 100644 api/static/bootstrap-icons/file-minus-fill.svg create mode 100644 api/static/bootstrap-icons/file-minus.svg create mode 100644 api/static/bootstrap-icons/file-music-fill.svg create mode 100644 api/static/bootstrap-icons/file-music.svg create mode 100644 api/static/bootstrap-icons/file-pdf-fill.svg create mode 100644 api/static/bootstrap-icons/file-pdf.svg create mode 100644 api/static/bootstrap-icons/file-person-fill.svg create mode 100644 api/static/bootstrap-icons/file-person.svg create mode 100644 api/static/bootstrap-icons/file-play-fill.svg create mode 100644 api/static/bootstrap-icons/file-play.svg create mode 100644 api/static/bootstrap-icons/file-plus-fill.svg create mode 100644 api/static/bootstrap-icons/file-plus.svg create mode 100644 api/static/bootstrap-icons/file-post-fill.svg create mode 100644 api/static/bootstrap-icons/file-post.svg create mode 100644 api/static/bootstrap-icons/file-ppt-fill.svg create mode 100644 api/static/bootstrap-icons/file-ppt.svg create mode 100644 api/static/bootstrap-icons/file-richtext-fill.svg create mode 100644 api/static/bootstrap-icons/file-richtext.svg create mode 100644 api/static/bootstrap-icons/file-ruled-fill.svg create mode 100644 api/static/bootstrap-icons/file-ruled.svg create mode 100644 api/static/bootstrap-icons/file-slides-fill.svg create mode 100644 api/static/bootstrap-icons/file-slides.svg create mode 100644 api/static/bootstrap-icons/file-spreadsheet-fill.svg create mode 100644 api/static/bootstrap-icons/file-spreadsheet.svg create mode 100644 api/static/bootstrap-icons/file-text-fill.svg create mode 100644 api/static/bootstrap-icons/file-text.svg create mode 100644 api/static/bootstrap-icons/file-word-fill.svg create mode 100644 api/static/bootstrap-icons/file-word.svg create mode 100644 api/static/bootstrap-icons/file-x-fill.svg create mode 100644 api/static/bootstrap-icons/file-x.svg create mode 100644 api/static/bootstrap-icons/file-zip-fill.svg create mode 100644 api/static/bootstrap-icons/file-zip.svg create mode 100644 api/static/bootstrap-icons/file.svg create mode 100644 api/static/bootstrap-icons/files-alt.svg create mode 100644 api/static/bootstrap-icons/files.svg create mode 100644 api/static/bootstrap-icons/filetype-aac.svg create mode 100644 api/static/bootstrap-icons/filetype-ai.svg create mode 100644 api/static/bootstrap-icons/filetype-bmp.svg create mode 100644 api/static/bootstrap-icons/filetype-cs.svg create mode 100644 api/static/bootstrap-icons/filetype-css.svg create mode 100644 api/static/bootstrap-icons/filetype-csv.svg create mode 100644 api/static/bootstrap-icons/filetype-doc.svg create mode 100644 api/static/bootstrap-icons/filetype-docx.svg create mode 100644 api/static/bootstrap-icons/filetype-exe.svg create mode 100644 api/static/bootstrap-icons/filetype-gif.svg create mode 100644 api/static/bootstrap-icons/filetype-heic.svg create mode 100644 api/static/bootstrap-icons/filetype-html.svg create mode 100644 api/static/bootstrap-icons/filetype-java.svg create mode 100644 api/static/bootstrap-icons/filetype-jpg.svg create mode 100644 api/static/bootstrap-icons/filetype-js.svg create mode 100644 api/static/bootstrap-icons/filetype-json.svg create mode 100644 api/static/bootstrap-icons/filetype-jsx.svg create mode 100644 api/static/bootstrap-icons/filetype-key.svg create mode 100644 api/static/bootstrap-icons/filetype-m4p.svg create mode 100644 api/static/bootstrap-icons/filetype-md.svg create mode 100644 api/static/bootstrap-icons/filetype-mdx.svg create mode 100644 api/static/bootstrap-icons/filetype-mov.svg create mode 100644 api/static/bootstrap-icons/filetype-mp3.svg create mode 100644 api/static/bootstrap-icons/filetype-mp4.svg create mode 100644 api/static/bootstrap-icons/filetype-otf.svg create mode 100644 api/static/bootstrap-icons/filetype-pdf.svg create mode 100644 api/static/bootstrap-icons/filetype-php.svg create mode 100644 api/static/bootstrap-icons/filetype-png.svg create mode 100644 api/static/bootstrap-icons/filetype-ppt.svg create mode 100644 api/static/bootstrap-icons/filetype-pptx.svg create mode 100644 api/static/bootstrap-icons/filetype-psd.svg create mode 100644 api/static/bootstrap-icons/filetype-py.svg create mode 100644 api/static/bootstrap-icons/filetype-raw.svg create mode 100644 api/static/bootstrap-icons/filetype-rb.svg create mode 100644 api/static/bootstrap-icons/filetype-sass.svg create mode 100644 api/static/bootstrap-icons/filetype-scss.svg create mode 100644 api/static/bootstrap-icons/filetype-sh.svg create mode 100644 api/static/bootstrap-icons/filetype-sql.svg create mode 100644 api/static/bootstrap-icons/filetype-svg.svg create mode 100644 api/static/bootstrap-icons/filetype-tiff.svg create mode 100644 api/static/bootstrap-icons/filetype-tsx.svg create mode 100644 api/static/bootstrap-icons/filetype-ttf.svg create mode 100644 api/static/bootstrap-icons/filetype-txt.svg create mode 100644 api/static/bootstrap-icons/filetype-wav.svg create mode 100644 api/static/bootstrap-icons/filetype-woff.svg create mode 100644 api/static/bootstrap-icons/filetype-xls.svg create mode 100644 api/static/bootstrap-icons/filetype-xlsx.svg create mode 100644 api/static/bootstrap-icons/filetype-xml.svg create mode 100644 api/static/bootstrap-icons/filetype-yml.svg create mode 100644 api/static/bootstrap-icons/film.svg create mode 100644 api/static/bootstrap-icons/filter-circle-fill.svg create mode 100644 api/static/bootstrap-icons/filter-circle.svg create mode 100644 api/static/bootstrap-icons/filter-left.svg create mode 100644 api/static/bootstrap-icons/filter-right.svg create mode 100644 api/static/bootstrap-icons/filter-square-fill.svg create mode 100644 api/static/bootstrap-icons/filter-square.svg create mode 100644 api/static/bootstrap-icons/filter.svg create mode 100644 api/static/bootstrap-icons/fingerprint.svg create mode 100644 api/static/bootstrap-icons/fire.svg create mode 100644 api/static/bootstrap-icons/flag-fill.svg create mode 100644 api/static/bootstrap-icons/flag.svg create mode 100644 api/static/bootstrap-icons/floppy-fill.svg create mode 100644 api/static/bootstrap-icons/floppy.svg create mode 100644 api/static/bootstrap-icons/floppy2-fill.svg create mode 100644 api/static/bootstrap-icons/floppy2.svg create mode 100644 api/static/bootstrap-icons/flower1.svg create mode 100644 api/static/bootstrap-icons/flower2.svg create mode 100644 api/static/bootstrap-icons/flower3.svg create mode 100644 api/static/bootstrap-icons/folder-check.svg create mode 100644 api/static/bootstrap-icons/folder-fill.svg create mode 100644 api/static/bootstrap-icons/folder-minus.svg create mode 100644 api/static/bootstrap-icons/folder-plus.svg create mode 100644 api/static/bootstrap-icons/folder-symlink-fill.svg create mode 100644 api/static/bootstrap-icons/folder-symlink.svg create mode 100644 api/static/bootstrap-icons/folder-x.svg create mode 100644 api/static/bootstrap-icons/folder.svg create mode 100644 api/static/bootstrap-icons/folder2-open.svg create mode 100644 api/static/bootstrap-icons/folder2.svg create mode 100644 api/static/bootstrap-icons/fonts.svg create mode 100644 api/static/bootstrap-icons/forward-fill.svg create mode 100644 api/static/bootstrap-icons/forward.svg create mode 100644 api/static/bootstrap-icons/front.svg create mode 100644 api/static/bootstrap-icons/fuel-pump-diesel-fill.svg create mode 100644 api/static/bootstrap-icons/fuel-pump-diesel.svg create mode 100644 api/static/bootstrap-icons/fuel-pump-fill.svg create mode 100644 api/static/bootstrap-icons/fuel-pump.svg create mode 100644 api/static/bootstrap-icons/fullscreen-exit.svg create mode 100644 api/static/bootstrap-icons/fullscreen.svg create mode 100644 api/static/bootstrap-icons/funnel-fill.svg create mode 100644 api/static/bootstrap-icons/funnel.svg create mode 100644 api/static/bootstrap-icons/gear-fill.svg create mode 100644 api/static/bootstrap-icons/gear-wide-connected.svg create mode 100644 api/static/bootstrap-icons/gear-wide.svg create mode 100644 api/static/bootstrap-icons/gear.svg create mode 100644 api/static/bootstrap-icons/gem.svg create mode 100644 api/static/bootstrap-icons/gender-ambiguous.svg create mode 100644 api/static/bootstrap-icons/gender-female.svg create mode 100644 api/static/bootstrap-icons/gender-male.svg create mode 100644 api/static/bootstrap-icons/gender-neuter.svg create mode 100644 api/static/bootstrap-icons/gender-trans.svg create mode 100644 api/static/bootstrap-icons/geo-alt-fill.svg create mode 100644 api/static/bootstrap-icons/geo-alt.svg create mode 100644 api/static/bootstrap-icons/geo-fill.svg create mode 100644 api/static/bootstrap-icons/geo.svg create mode 100644 api/static/bootstrap-icons/gift-fill.svg create mode 100644 api/static/bootstrap-icons/gift.svg create mode 100644 api/static/bootstrap-icons/git.svg create mode 100644 api/static/bootstrap-icons/github.svg create mode 100644 api/static/bootstrap-icons/gitlab.svg create mode 100644 api/static/bootstrap-icons/globe-americas.svg create mode 100644 api/static/bootstrap-icons/globe-asia-australia.svg create mode 100644 api/static/bootstrap-icons/globe-central-south-asia.svg create mode 100644 api/static/bootstrap-icons/globe-europe-africa.svg create mode 100644 api/static/bootstrap-icons/globe.svg create mode 100644 api/static/bootstrap-icons/globe2.svg create mode 100644 api/static/bootstrap-icons/google-play.svg create mode 100644 api/static/bootstrap-icons/google.svg create mode 100644 api/static/bootstrap-icons/gpu-card.svg create mode 100644 api/static/bootstrap-icons/graph-down-arrow.svg create mode 100644 api/static/bootstrap-icons/graph-down.svg create mode 100644 api/static/bootstrap-icons/graph-up-arrow.svg create mode 100644 api/static/bootstrap-icons/graph-up.svg create mode 100644 api/static/bootstrap-icons/grid-1x2-fill.svg create mode 100644 api/static/bootstrap-icons/grid-1x2.svg create mode 100644 api/static/bootstrap-icons/grid-3x2-gap-fill.svg create mode 100644 api/static/bootstrap-icons/grid-3x2-gap.svg create mode 100644 api/static/bootstrap-icons/grid-3x2.svg create mode 100644 api/static/bootstrap-icons/grid-3x3-gap-fill.svg create mode 100644 api/static/bootstrap-icons/grid-3x3-gap.svg create mode 100644 api/static/bootstrap-icons/grid-3x3.svg create mode 100644 api/static/bootstrap-icons/grid-fill.svg create mode 100644 api/static/bootstrap-icons/grid.svg create mode 100644 api/static/bootstrap-icons/grip-horizontal.svg create mode 100644 api/static/bootstrap-icons/grip-vertical.svg create mode 100644 api/static/bootstrap-icons/h-circle-fill.svg create mode 100644 api/static/bootstrap-icons/h-circle.svg create mode 100644 api/static/bootstrap-icons/h-square-fill.svg create mode 100644 api/static/bootstrap-icons/h-square.svg create mode 100644 api/static/bootstrap-icons/hammer.svg create mode 100644 api/static/bootstrap-icons/hand-index-fill.svg create mode 100644 api/static/bootstrap-icons/hand-index-thumb-fill.svg create mode 100644 api/static/bootstrap-icons/hand-index-thumb.svg create mode 100644 api/static/bootstrap-icons/hand-index.svg create mode 100644 api/static/bootstrap-icons/hand-thumbs-down-fill.svg create mode 100644 api/static/bootstrap-icons/hand-thumbs-down.svg create mode 100644 api/static/bootstrap-icons/hand-thumbs-up-fill.svg create mode 100644 api/static/bootstrap-icons/hand-thumbs-up.svg create mode 100644 api/static/bootstrap-icons/handbag-fill.svg create mode 100644 api/static/bootstrap-icons/handbag.svg create mode 100644 api/static/bootstrap-icons/hash.svg create mode 100644 api/static/bootstrap-icons/hdd-fill.svg create mode 100644 api/static/bootstrap-icons/hdd-network-fill.svg create mode 100644 api/static/bootstrap-icons/hdd-network.svg create mode 100644 api/static/bootstrap-icons/hdd-rack-fill.svg create mode 100644 api/static/bootstrap-icons/hdd-rack.svg create mode 100644 api/static/bootstrap-icons/hdd-stack-fill.svg create mode 100644 api/static/bootstrap-icons/hdd-stack.svg create mode 100644 api/static/bootstrap-icons/hdd.svg create mode 100644 api/static/bootstrap-icons/hdmi-fill.svg create mode 100644 api/static/bootstrap-icons/hdmi.svg create mode 100644 api/static/bootstrap-icons/headphones.svg create mode 100644 api/static/bootstrap-icons/headset-vr.svg create mode 100644 api/static/bootstrap-icons/headset.svg create mode 100644 api/static/bootstrap-icons/heart-arrow.svg create mode 100644 api/static/bootstrap-icons/heart-fill.svg create mode 100644 api/static/bootstrap-icons/heart-half.svg create mode 100644 api/static/bootstrap-icons/heart-pulse-fill.svg create mode 100644 api/static/bootstrap-icons/heart-pulse.svg create mode 100644 api/static/bootstrap-icons/heart.svg create mode 100644 api/static/bootstrap-icons/heartbreak-fill.svg create mode 100644 api/static/bootstrap-icons/heartbreak.svg create mode 100644 api/static/bootstrap-icons/hearts.svg create mode 100644 api/static/bootstrap-icons/heptagon-fill.svg create mode 100644 api/static/bootstrap-icons/heptagon-half.svg create mode 100644 api/static/bootstrap-icons/heptagon.svg create mode 100644 api/static/bootstrap-icons/hexagon-fill.svg create mode 100644 api/static/bootstrap-icons/hexagon-half.svg create mode 100644 api/static/bootstrap-icons/hexagon.svg create mode 100644 api/static/bootstrap-icons/highlighter.svg create mode 100644 api/static/bootstrap-icons/highlights.svg create mode 100644 api/static/bootstrap-icons/hospital-fill.svg create mode 100644 api/static/bootstrap-icons/hospital.svg create mode 100644 api/static/bootstrap-icons/hourglass-bottom.svg create mode 100644 api/static/bootstrap-icons/hourglass-split.svg create mode 100644 api/static/bootstrap-icons/hourglass-top.svg create mode 100644 api/static/bootstrap-icons/hourglass.svg create mode 100644 api/static/bootstrap-icons/house-add-fill.svg create mode 100644 api/static/bootstrap-icons/house-add.svg create mode 100644 api/static/bootstrap-icons/house-check-fill.svg create mode 100644 api/static/bootstrap-icons/house-check.svg create mode 100644 api/static/bootstrap-icons/house-dash-fill.svg create mode 100644 api/static/bootstrap-icons/house-dash.svg create mode 100644 api/static/bootstrap-icons/house-door-fill.svg create mode 100644 api/static/bootstrap-icons/house-door.svg create mode 100644 api/static/bootstrap-icons/house-down-fill.svg create mode 100644 api/static/bootstrap-icons/house-down.svg create mode 100644 api/static/bootstrap-icons/house-exclamation-fill.svg create mode 100644 api/static/bootstrap-icons/house-exclamation.svg create mode 100644 api/static/bootstrap-icons/house-fill.svg create mode 100644 api/static/bootstrap-icons/house-gear-fill.svg create mode 100644 api/static/bootstrap-icons/house-gear.svg create mode 100644 api/static/bootstrap-icons/house-heart-fill.svg create mode 100644 api/static/bootstrap-icons/house-heart.svg create mode 100644 api/static/bootstrap-icons/house-lock-fill.svg create mode 100644 api/static/bootstrap-icons/house-lock.svg create mode 100644 api/static/bootstrap-icons/house-slash-fill.svg create mode 100644 api/static/bootstrap-icons/house-slash.svg create mode 100644 api/static/bootstrap-icons/house-up-fill.svg create mode 100644 api/static/bootstrap-icons/house-up.svg create mode 100644 api/static/bootstrap-icons/house-x-fill.svg create mode 100644 api/static/bootstrap-icons/house-x.svg create mode 100644 api/static/bootstrap-icons/house.svg create mode 100644 api/static/bootstrap-icons/houses-fill.svg create mode 100644 api/static/bootstrap-icons/houses.svg create mode 100644 api/static/bootstrap-icons/hr.svg create mode 100644 api/static/bootstrap-icons/hurricane.svg create mode 100644 api/static/bootstrap-icons/hypnotize.svg create mode 100644 api/static/bootstrap-icons/image-alt.svg create mode 100644 api/static/bootstrap-icons/image-fill.svg create mode 100644 api/static/bootstrap-icons/image.svg create mode 100644 api/static/bootstrap-icons/images.svg create mode 100644 api/static/bootstrap-icons/inbox-fill.svg create mode 100644 api/static/bootstrap-icons/inbox.svg create mode 100644 api/static/bootstrap-icons/inboxes-fill.svg create mode 100644 api/static/bootstrap-icons/inboxes.svg create mode 100644 api/static/bootstrap-icons/incognito.svg create mode 100644 api/static/bootstrap-icons/indent.svg create mode 100644 api/static/bootstrap-icons/infinity.svg create mode 100644 api/static/bootstrap-icons/info-circle-fill.svg create mode 100644 api/static/bootstrap-icons/info-circle.svg create mode 100644 api/static/bootstrap-icons/info-lg.svg create mode 100644 api/static/bootstrap-icons/info-square-fill.svg create mode 100644 api/static/bootstrap-icons/info-square.svg create mode 100644 api/static/bootstrap-icons/info.svg create mode 100644 api/static/bootstrap-icons/input-cursor-text.svg create mode 100644 api/static/bootstrap-icons/input-cursor.svg create mode 100644 api/static/bootstrap-icons/instagram.svg create mode 100644 api/static/bootstrap-icons/intersect.svg create mode 100644 api/static/bootstrap-icons/journal-album.svg create mode 100644 api/static/bootstrap-icons/journal-arrow-down.svg create mode 100644 api/static/bootstrap-icons/journal-arrow-up.svg create mode 100644 api/static/bootstrap-icons/journal-bookmark-fill.svg create mode 100644 api/static/bootstrap-icons/journal-bookmark.svg create mode 100644 api/static/bootstrap-icons/journal-check.svg create mode 100644 api/static/bootstrap-icons/journal-code.svg create mode 100644 api/static/bootstrap-icons/journal-medical.svg create mode 100644 api/static/bootstrap-icons/journal-minus.svg create mode 100644 api/static/bootstrap-icons/journal-plus.svg create mode 100644 api/static/bootstrap-icons/journal-richtext.svg create mode 100644 api/static/bootstrap-icons/journal-text.svg create mode 100644 api/static/bootstrap-icons/journal-x.svg create mode 100644 api/static/bootstrap-icons/journal.svg create mode 100644 api/static/bootstrap-icons/journals.svg create mode 100644 api/static/bootstrap-icons/joystick.svg create mode 100644 api/static/bootstrap-icons/justify-left.svg create mode 100644 api/static/bootstrap-icons/justify-right.svg create mode 100644 api/static/bootstrap-icons/justify.svg create mode 100644 api/static/bootstrap-icons/kanban-fill.svg create mode 100644 api/static/bootstrap-icons/kanban.svg create mode 100644 api/static/bootstrap-icons/key-fill.svg create mode 100644 api/static/bootstrap-icons/key.svg create mode 100644 api/static/bootstrap-icons/keyboard-fill.svg create mode 100644 api/static/bootstrap-icons/keyboard.svg create mode 100644 api/static/bootstrap-icons/ladder.svg create mode 100644 api/static/bootstrap-icons/lamp-fill.svg create mode 100644 api/static/bootstrap-icons/lamp.svg create mode 100644 api/static/bootstrap-icons/laptop-fill.svg create mode 100644 api/static/bootstrap-icons/laptop.svg create mode 100644 api/static/bootstrap-icons/layer-backward.svg create mode 100644 api/static/bootstrap-icons/layer-forward.svg create mode 100644 api/static/bootstrap-icons/layers-fill.svg create mode 100644 api/static/bootstrap-icons/layers-half.svg create mode 100644 api/static/bootstrap-icons/layers.svg create mode 100644 api/static/bootstrap-icons/layout-sidebar-inset-reverse.svg create mode 100644 api/static/bootstrap-icons/layout-sidebar-inset.svg create mode 100644 api/static/bootstrap-icons/layout-sidebar-reverse.svg create mode 100644 api/static/bootstrap-icons/layout-sidebar.svg create mode 100644 api/static/bootstrap-icons/layout-split.svg create mode 100644 api/static/bootstrap-icons/layout-text-sidebar-reverse.svg create mode 100644 api/static/bootstrap-icons/layout-text-sidebar.svg create mode 100644 api/static/bootstrap-icons/layout-text-window-reverse.svg create mode 100644 api/static/bootstrap-icons/layout-text-window.svg create mode 100644 api/static/bootstrap-icons/layout-three-columns.svg create mode 100644 api/static/bootstrap-icons/layout-wtf.svg create mode 100644 api/static/bootstrap-icons/life-preserver.svg create mode 100644 api/static/bootstrap-icons/lightbulb-fill.svg create mode 100644 api/static/bootstrap-icons/lightbulb-off-fill.svg create mode 100644 api/static/bootstrap-icons/lightbulb-off.svg create mode 100644 api/static/bootstrap-icons/lightbulb.svg create mode 100644 api/static/bootstrap-icons/lightning-charge-fill.svg create mode 100644 api/static/bootstrap-icons/lightning-charge.svg create mode 100644 api/static/bootstrap-icons/lightning-fill.svg create mode 100644 api/static/bootstrap-icons/lightning.svg create mode 100644 api/static/bootstrap-icons/line.svg create mode 100644 api/static/bootstrap-icons/link-45deg.svg create mode 100644 api/static/bootstrap-icons/link.svg create mode 100644 api/static/bootstrap-icons/linkedin.svg create mode 100644 api/static/bootstrap-icons/list-check.svg create mode 100644 api/static/bootstrap-icons/list-columns-reverse.svg create mode 100644 api/static/bootstrap-icons/list-columns.svg create mode 100644 api/static/bootstrap-icons/list-nested.svg create mode 100644 api/static/bootstrap-icons/list-ol.svg create mode 100644 api/static/bootstrap-icons/list-stars.svg create mode 100644 api/static/bootstrap-icons/list-task.svg create mode 100644 api/static/bootstrap-icons/list-ul.svg create mode 100644 api/static/bootstrap-icons/list.svg create mode 100644 api/static/bootstrap-icons/lock-fill.svg create mode 100644 api/static/bootstrap-icons/lock.svg create mode 100644 api/static/bootstrap-icons/luggage-fill.svg create mode 100644 api/static/bootstrap-icons/luggage.svg create mode 100644 api/static/bootstrap-icons/lungs-fill.svg create mode 100644 api/static/bootstrap-icons/lungs.svg create mode 100644 api/static/bootstrap-icons/magic.svg create mode 100644 api/static/bootstrap-icons/magnet-fill.svg create mode 100644 api/static/bootstrap-icons/magnet.svg create mode 100644 api/static/bootstrap-icons/mailbox-flag.svg create mode 100644 api/static/bootstrap-icons/mailbox.svg create mode 100644 api/static/bootstrap-icons/mailbox2-flag.svg create mode 100644 api/static/bootstrap-icons/mailbox2.svg create mode 100644 api/static/bootstrap-icons/map-fill.svg create mode 100644 api/static/bootstrap-icons/map.svg create mode 100644 api/static/bootstrap-icons/markdown-fill.svg create mode 100644 api/static/bootstrap-icons/markdown.svg create mode 100644 api/static/bootstrap-icons/marker-tip.svg create mode 100644 api/static/bootstrap-icons/mask.svg create mode 100644 api/static/bootstrap-icons/mastodon.svg create mode 100644 api/static/bootstrap-icons/medium.svg create mode 100644 api/static/bootstrap-icons/megaphone-fill.svg create mode 100644 api/static/bootstrap-icons/megaphone.svg create mode 100644 api/static/bootstrap-icons/memory.svg create mode 100644 api/static/bootstrap-icons/menu-app-fill.svg create mode 100644 api/static/bootstrap-icons/menu-app.svg create mode 100644 api/static/bootstrap-icons/menu-button-fill.svg create mode 100644 api/static/bootstrap-icons/menu-button-wide-fill.svg create mode 100644 api/static/bootstrap-icons/menu-button-wide.svg create mode 100644 api/static/bootstrap-icons/menu-button.svg create mode 100644 api/static/bootstrap-icons/menu-down.svg create mode 100644 api/static/bootstrap-icons/menu-up.svg create mode 100644 api/static/bootstrap-icons/messenger.svg create mode 100644 api/static/bootstrap-icons/meta.svg create mode 100644 api/static/bootstrap-icons/mic-fill.svg create mode 100644 api/static/bootstrap-icons/mic-mute-fill.svg create mode 100644 api/static/bootstrap-icons/mic-mute.svg create mode 100644 api/static/bootstrap-icons/mic.svg create mode 100644 api/static/bootstrap-icons/microsoft-teams.svg create mode 100644 api/static/bootstrap-icons/microsoft.svg create mode 100644 api/static/bootstrap-icons/minecart-loaded.svg create mode 100644 api/static/bootstrap-icons/minecart.svg create mode 100644 api/static/bootstrap-icons/modem-fill.svg create mode 100644 api/static/bootstrap-icons/modem.svg create mode 100644 api/static/bootstrap-icons/moisture.svg create mode 100644 api/static/bootstrap-icons/moon-fill.svg create mode 100644 api/static/bootstrap-icons/moon-stars-fill.svg create mode 100644 api/static/bootstrap-icons/moon-stars.svg create mode 100644 api/static/bootstrap-icons/moon.svg create mode 100644 api/static/bootstrap-icons/mortarboard-fill.svg create mode 100644 api/static/bootstrap-icons/mortarboard.svg create mode 100644 api/static/bootstrap-icons/motherboard-fill.svg create mode 100644 api/static/bootstrap-icons/motherboard.svg create mode 100644 api/static/bootstrap-icons/mouse-fill.svg create mode 100644 api/static/bootstrap-icons/mouse.svg create mode 100644 api/static/bootstrap-icons/mouse2-fill.svg create mode 100644 api/static/bootstrap-icons/mouse2.svg create mode 100644 api/static/bootstrap-icons/mouse3-fill.svg create mode 100644 api/static/bootstrap-icons/mouse3.svg create mode 100644 api/static/bootstrap-icons/music-note-beamed.svg create mode 100644 api/static/bootstrap-icons/music-note-list.svg create mode 100644 api/static/bootstrap-icons/music-note.svg create mode 100644 api/static/bootstrap-icons/music-player-fill.svg create mode 100644 api/static/bootstrap-icons/music-player.svg create mode 100644 api/static/bootstrap-icons/newspaper.svg create mode 100644 api/static/bootstrap-icons/nintendo-switch.svg create mode 100644 api/static/bootstrap-icons/node-minus-fill.svg create mode 100644 api/static/bootstrap-icons/node-minus.svg create mode 100644 api/static/bootstrap-icons/node-plus-fill.svg create mode 100644 api/static/bootstrap-icons/node-plus.svg create mode 100644 api/static/bootstrap-icons/noise-reduction.svg create mode 100644 api/static/bootstrap-icons/nut-fill.svg create mode 100644 api/static/bootstrap-icons/nut.svg create mode 100644 api/static/bootstrap-icons/nvidia.svg create mode 100644 api/static/bootstrap-icons/nvme-fill.svg create mode 100644 api/static/bootstrap-icons/nvme.svg create mode 100644 api/static/bootstrap-icons/octagon-fill.svg create mode 100644 api/static/bootstrap-icons/octagon-half.svg create mode 100644 api/static/bootstrap-icons/octagon.svg create mode 100644 api/static/bootstrap-icons/opencollective.svg create mode 100644 api/static/bootstrap-icons/optical-audio-fill.svg create mode 100644 api/static/bootstrap-icons/optical-audio.svg create mode 100644 api/static/bootstrap-icons/option.svg create mode 100644 api/static/bootstrap-icons/outlet.svg create mode 100644 api/static/bootstrap-icons/p-circle-fill.svg create mode 100644 api/static/bootstrap-icons/p-circle.svg create mode 100644 api/static/bootstrap-icons/p-square-fill.svg create mode 100644 api/static/bootstrap-icons/p-square.svg create mode 100644 api/static/bootstrap-icons/paint-bucket.svg create mode 100644 api/static/bootstrap-icons/palette-fill.svg create mode 100644 api/static/bootstrap-icons/palette.svg create mode 100644 api/static/bootstrap-icons/palette2.svg create mode 100644 api/static/bootstrap-icons/paperclip.svg create mode 100644 api/static/bootstrap-icons/paragraph.svg create mode 100644 api/static/bootstrap-icons/pass-fill.svg create mode 100644 api/static/bootstrap-icons/pass.svg create mode 100644 api/static/bootstrap-icons/passport-fill.svg create mode 100644 api/static/bootstrap-icons/passport.svg create mode 100644 api/static/bootstrap-icons/patch-check-fill.svg create mode 100644 api/static/bootstrap-icons/patch-check.svg create mode 100644 api/static/bootstrap-icons/patch-exclamation-fill.svg create mode 100644 api/static/bootstrap-icons/patch-exclamation.svg create mode 100644 api/static/bootstrap-icons/patch-minus-fill.svg create mode 100644 api/static/bootstrap-icons/patch-minus.svg create mode 100644 api/static/bootstrap-icons/patch-plus-fill.svg create mode 100644 api/static/bootstrap-icons/patch-plus.svg create mode 100644 api/static/bootstrap-icons/patch-question-fill.svg create mode 100644 api/static/bootstrap-icons/patch-question.svg create mode 100644 api/static/bootstrap-icons/pause-btn-fill.svg create mode 100644 api/static/bootstrap-icons/pause-btn.svg create mode 100644 api/static/bootstrap-icons/pause-circle-fill.svg create mode 100644 api/static/bootstrap-icons/pause-circle.svg create mode 100644 api/static/bootstrap-icons/pause-fill.svg create mode 100644 api/static/bootstrap-icons/pause.svg create mode 100644 api/static/bootstrap-icons/paypal.svg create mode 100644 api/static/bootstrap-icons/pc-display-horizontal.svg create mode 100644 api/static/bootstrap-icons/pc-display.svg create mode 100644 api/static/bootstrap-icons/pc-horizontal.svg create mode 100644 api/static/bootstrap-icons/pc.svg create mode 100644 api/static/bootstrap-icons/pci-card-network.svg create mode 100644 api/static/bootstrap-icons/pci-card-sound.svg create mode 100644 api/static/bootstrap-icons/pci-card.svg create mode 100644 api/static/bootstrap-icons/peace-fill.svg create mode 100644 api/static/bootstrap-icons/peace.svg create mode 100644 api/static/bootstrap-icons/pen-fill.svg create mode 100644 api/static/bootstrap-icons/pen.svg create mode 100644 api/static/bootstrap-icons/pencil-fill.svg create mode 100644 api/static/bootstrap-icons/pencil-square.svg create mode 100644 api/static/bootstrap-icons/pencil.svg create mode 100644 api/static/bootstrap-icons/pentagon-fill.svg create mode 100644 api/static/bootstrap-icons/pentagon-half.svg create mode 100644 api/static/bootstrap-icons/pentagon.svg create mode 100644 api/static/bootstrap-icons/people-fill.svg create mode 100644 api/static/bootstrap-icons/people.svg create mode 100644 api/static/bootstrap-icons/percent.svg create mode 100644 api/static/bootstrap-icons/person-add.svg create mode 100644 api/static/bootstrap-icons/person-arms-up.svg create mode 100644 api/static/bootstrap-icons/person-badge-fill.svg create mode 100644 api/static/bootstrap-icons/person-badge.svg create mode 100644 api/static/bootstrap-icons/person-bounding-box.svg create mode 100644 api/static/bootstrap-icons/person-check-fill.svg create mode 100644 api/static/bootstrap-icons/person-check.svg create mode 100644 api/static/bootstrap-icons/person-circle.svg create mode 100644 api/static/bootstrap-icons/person-dash-fill.svg create mode 100644 api/static/bootstrap-icons/person-dash.svg create mode 100644 api/static/bootstrap-icons/person-down.svg create mode 100644 api/static/bootstrap-icons/person-exclamation.svg create mode 100644 api/static/bootstrap-icons/person-fill-add.svg create mode 100644 api/static/bootstrap-icons/person-fill-check.svg create mode 100644 api/static/bootstrap-icons/person-fill-dash.svg create mode 100644 api/static/bootstrap-icons/person-fill-down.svg create mode 100644 api/static/bootstrap-icons/person-fill-exclamation.svg create mode 100644 api/static/bootstrap-icons/person-fill-gear.svg create mode 100644 api/static/bootstrap-icons/person-fill-lock.svg create mode 100644 api/static/bootstrap-icons/person-fill-slash.svg create mode 100644 api/static/bootstrap-icons/person-fill-up.svg create mode 100644 api/static/bootstrap-icons/person-fill-x.svg create mode 100644 api/static/bootstrap-icons/person-fill.svg create mode 100644 api/static/bootstrap-icons/person-gear.svg create mode 100644 api/static/bootstrap-icons/person-heart.svg create mode 100644 api/static/bootstrap-icons/person-hearts.svg create mode 100644 api/static/bootstrap-icons/person-lines-fill.svg create mode 100644 api/static/bootstrap-icons/person-lock.svg create mode 100644 api/static/bootstrap-icons/person-plus-fill.svg create mode 100644 api/static/bootstrap-icons/person-plus.svg create mode 100644 api/static/bootstrap-icons/person-raised-hand.svg create mode 100644 api/static/bootstrap-icons/person-rolodex.svg create mode 100644 api/static/bootstrap-icons/person-slash.svg create mode 100644 api/static/bootstrap-icons/person-square.svg create mode 100644 api/static/bootstrap-icons/person-standing-dress.svg create mode 100644 api/static/bootstrap-icons/person-standing.svg create mode 100644 api/static/bootstrap-icons/person-up.svg create mode 100644 api/static/bootstrap-icons/person-vcard-fill.svg create mode 100644 api/static/bootstrap-icons/person-vcard.svg create mode 100644 api/static/bootstrap-icons/person-video.svg create mode 100644 api/static/bootstrap-icons/person-video2.svg create mode 100644 api/static/bootstrap-icons/person-video3.svg create mode 100644 api/static/bootstrap-icons/person-walking.svg create mode 100644 api/static/bootstrap-icons/person-wheelchair.svg create mode 100644 api/static/bootstrap-icons/person-workspace.svg create mode 100644 api/static/bootstrap-icons/person-x-fill.svg create mode 100644 api/static/bootstrap-icons/person-x.svg create mode 100644 api/static/bootstrap-icons/person.svg create mode 100644 api/static/bootstrap-icons/phone-fill.svg create mode 100644 api/static/bootstrap-icons/phone-flip.svg create mode 100644 api/static/bootstrap-icons/phone-landscape-fill.svg create mode 100644 api/static/bootstrap-icons/phone-landscape.svg create mode 100644 api/static/bootstrap-icons/phone-vibrate-fill.svg create mode 100644 api/static/bootstrap-icons/phone-vibrate.svg create mode 100644 api/static/bootstrap-icons/phone.svg create mode 100644 api/static/bootstrap-icons/pie-chart-fill.svg create mode 100644 api/static/bootstrap-icons/pie-chart.svg create mode 100644 api/static/bootstrap-icons/piggy-bank-fill.svg create mode 100644 api/static/bootstrap-icons/piggy-bank.svg create mode 100644 api/static/bootstrap-icons/pin-angle-fill.svg create mode 100644 api/static/bootstrap-icons/pin-angle.svg create mode 100644 api/static/bootstrap-icons/pin-fill.svg create mode 100644 api/static/bootstrap-icons/pin-map-fill.svg create mode 100644 api/static/bootstrap-icons/pin-map.svg create mode 100644 api/static/bootstrap-icons/pin.svg create mode 100644 api/static/bootstrap-icons/pinterest.svg create mode 100644 api/static/bootstrap-icons/pip-fill.svg create mode 100644 api/static/bootstrap-icons/pip.svg create mode 100644 api/static/bootstrap-icons/play-btn-fill.svg create mode 100644 api/static/bootstrap-icons/play-btn.svg create mode 100644 api/static/bootstrap-icons/play-circle-fill.svg create mode 100644 api/static/bootstrap-icons/play-circle.svg create mode 100644 api/static/bootstrap-icons/play-fill.svg create mode 100644 api/static/bootstrap-icons/play.svg create mode 100644 api/static/bootstrap-icons/playstation.svg create mode 100644 api/static/bootstrap-icons/plug-fill.svg create mode 100644 api/static/bootstrap-icons/plug.svg create mode 100644 api/static/bootstrap-icons/plugin.svg create mode 100644 api/static/bootstrap-icons/plus-circle-dotted.svg create mode 100644 api/static/bootstrap-icons/plus-circle-fill.svg create mode 100644 api/static/bootstrap-icons/plus-circle.svg create mode 100644 api/static/bootstrap-icons/plus-lg.svg create mode 100644 api/static/bootstrap-icons/plus-slash-minus.svg create mode 100644 api/static/bootstrap-icons/plus-square-dotted.svg create mode 100644 api/static/bootstrap-icons/plus-square-fill.svg create mode 100644 api/static/bootstrap-icons/plus-square.svg create mode 100644 api/static/bootstrap-icons/plus.svg create mode 100644 api/static/bootstrap-icons/postage-fill.svg create mode 100644 api/static/bootstrap-icons/postage-heart-fill.svg create mode 100644 api/static/bootstrap-icons/postage-heart.svg create mode 100644 api/static/bootstrap-icons/postage.svg create mode 100644 api/static/bootstrap-icons/postcard-fill.svg create mode 100644 api/static/bootstrap-icons/postcard-heart-fill.svg create mode 100644 api/static/bootstrap-icons/postcard-heart.svg create mode 100644 api/static/bootstrap-icons/postcard.svg create mode 100644 api/static/bootstrap-icons/power.svg create mode 100644 api/static/bootstrap-icons/prescription.svg create mode 100644 api/static/bootstrap-icons/prescription2.svg create mode 100644 api/static/bootstrap-icons/printer-fill.svg create mode 100644 api/static/bootstrap-icons/printer.svg create mode 100644 api/static/bootstrap-icons/projector-fill.svg create mode 100644 api/static/bootstrap-icons/projector.svg create mode 100644 api/static/bootstrap-icons/puzzle-fill.svg create mode 100644 api/static/bootstrap-icons/puzzle.svg create mode 100644 api/static/bootstrap-icons/qr-code-scan.svg create mode 100644 api/static/bootstrap-icons/qr-code.svg create mode 100644 api/static/bootstrap-icons/question-circle-fill.svg create mode 100644 api/static/bootstrap-icons/question-circle.svg create mode 100644 api/static/bootstrap-icons/question-diamond-fill.svg create mode 100644 api/static/bootstrap-icons/question-diamond.svg create mode 100644 api/static/bootstrap-icons/question-lg.svg create mode 100644 api/static/bootstrap-icons/question-octagon-fill.svg create mode 100644 api/static/bootstrap-icons/question-octagon.svg create mode 100644 api/static/bootstrap-icons/question-square-fill.svg create mode 100644 api/static/bootstrap-icons/question-square.svg create mode 100644 api/static/bootstrap-icons/question.svg create mode 100644 api/static/bootstrap-icons/quora.svg create mode 100644 api/static/bootstrap-icons/quote.svg create mode 100644 api/static/bootstrap-icons/r-circle-fill.svg create mode 100644 api/static/bootstrap-icons/r-circle.svg create mode 100644 api/static/bootstrap-icons/r-square-fill.svg create mode 100644 api/static/bootstrap-icons/r-square.svg create mode 100644 api/static/bootstrap-icons/radar.svg create mode 100644 api/static/bootstrap-icons/radioactive.svg create mode 100644 api/static/bootstrap-icons/rainbow.svg create mode 100644 api/static/bootstrap-icons/receipt-cutoff.svg create mode 100644 api/static/bootstrap-icons/receipt.svg create mode 100644 api/static/bootstrap-icons/reception-0.svg create mode 100644 api/static/bootstrap-icons/reception-1.svg create mode 100644 api/static/bootstrap-icons/reception-2.svg create mode 100644 api/static/bootstrap-icons/reception-3.svg create mode 100644 api/static/bootstrap-icons/reception-4.svg create mode 100644 api/static/bootstrap-icons/record-btn-fill.svg create mode 100644 api/static/bootstrap-icons/record-btn.svg create mode 100644 api/static/bootstrap-icons/record-circle-fill.svg create mode 100644 api/static/bootstrap-icons/record-circle.svg create mode 100644 api/static/bootstrap-icons/record-fill.svg create mode 100644 api/static/bootstrap-icons/record.svg create mode 100644 api/static/bootstrap-icons/record2-fill.svg create mode 100644 api/static/bootstrap-icons/record2.svg create mode 100644 api/static/bootstrap-icons/recycle.svg create mode 100644 api/static/bootstrap-icons/reddit.svg create mode 100644 api/static/bootstrap-icons/regex.svg create mode 100644 api/static/bootstrap-icons/repeat-1.svg create mode 100644 api/static/bootstrap-icons/repeat.svg create mode 100644 api/static/bootstrap-icons/reply-all-fill.svg create mode 100644 api/static/bootstrap-icons/reply-all.svg create mode 100644 api/static/bootstrap-icons/reply-fill.svg create mode 100644 api/static/bootstrap-icons/reply.svg create mode 100644 api/static/bootstrap-icons/rewind-btn-fill.svg create mode 100644 api/static/bootstrap-icons/rewind-btn.svg create mode 100644 api/static/bootstrap-icons/rewind-circle-fill.svg create mode 100644 api/static/bootstrap-icons/rewind-circle.svg create mode 100644 api/static/bootstrap-icons/rewind-fill.svg create mode 100644 api/static/bootstrap-icons/rewind.svg create mode 100644 api/static/bootstrap-icons/robot.svg create mode 100644 api/static/bootstrap-icons/rocket-fill.svg create mode 100644 api/static/bootstrap-icons/rocket-takeoff-fill.svg create mode 100644 api/static/bootstrap-icons/rocket-takeoff.svg create mode 100644 api/static/bootstrap-icons/rocket.svg create mode 100644 api/static/bootstrap-icons/router-fill.svg create mode 100644 api/static/bootstrap-icons/router.svg create mode 100644 api/static/bootstrap-icons/rss-fill.svg create mode 100644 api/static/bootstrap-icons/rss.svg create mode 100644 api/static/bootstrap-icons/rulers.svg create mode 100644 api/static/bootstrap-icons/safe-fill.svg create mode 100644 api/static/bootstrap-icons/safe.svg create mode 100644 api/static/bootstrap-icons/safe2-fill.svg create mode 100644 api/static/bootstrap-icons/safe2.svg create mode 100644 api/static/bootstrap-icons/save-fill.svg create mode 100644 api/static/bootstrap-icons/save.svg create mode 100644 api/static/bootstrap-icons/save2-fill.svg create mode 100644 api/static/bootstrap-icons/save2.svg create mode 100644 api/static/bootstrap-icons/scissors.svg create mode 100644 api/static/bootstrap-icons/scooter.svg create mode 100644 api/static/bootstrap-icons/screwdriver.svg create mode 100644 api/static/bootstrap-icons/sd-card-fill.svg create mode 100644 api/static/bootstrap-icons/sd-card.svg create mode 100644 api/static/bootstrap-icons/search-heart-fill.svg create mode 100644 api/static/bootstrap-icons/search-heart.svg create mode 100644 api/static/bootstrap-icons/search.svg create mode 100644 api/static/bootstrap-icons/segmented-nav.svg create mode 100644 api/static/bootstrap-icons/send-arrow-down-fill.svg create mode 100644 api/static/bootstrap-icons/send-arrow-down.svg create mode 100644 api/static/bootstrap-icons/send-arrow-up-fill.svg create mode 100644 api/static/bootstrap-icons/send-arrow-up.svg create mode 100644 api/static/bootstrap-icons/send-check-fill.svg create mode 100644 api/static/bootstrap-icons/send-check.svg create mode 100644 api/static/bootstrap-icons/send-dash-fill.svg create mode 100644 api/static/bootstrap-icons/send-dash.svg create mode 100644 api/static/bootstrap-icons/send-exclamation-fill.svg create mode 100644 api/static/bootstrap-icons/send-exclamation.svg create mode 100644 api/static/bootstrap-icons/send-fill.svg create mode 100644 api/static/bootstrap-icons/send-plus-fill.svg create mode 100644 api/static/bootstrap-icons/send-plus.svg create mode 100644 api/static/bootstrap-icons/send-slash-fill.svg create mode 100644 api/static/bootstrap-icons/send-slash.svg create mode 100644 api/static/bootstrap-icons/send-x-fill.svg create mode 100644 api/static/bootstrap-icons/send-x.svg create mode 100644 api/static/bootstrap-icons/send.svg create mode 100644 api/static/bootstrap-icons/server.svg create mode 100644 api/static/bootstrap-icons/shadows.svg create mode 100644 api/static/bootstrap-icons/share-fill.svg create mode 100644 api/static/bootstrap-icons/share.svg create mode 100644 api/static/bootstrap-icons/shield-check.svg create mode 100644 api/static/bootstrap-icons/shield-exclamation.svg create mode 100644 api/static/bootstrap-icons/shield-fill-check.svg create mode 100644 api/static/bootstrap-icons/shield-fill-exclamation.svg create mode 100644 api/static/bootstrap-icons/shield-fill-minus.svg create mode 100644 api/static/bootstrap-icons/shield-fill-plus.svg create mode 100644 api/static/bootstrap-icons/shield-fill-x.svg create mode 100644 api/static/bootstrap-icons/shield-fill.svg create mode 100644 api/static/bootstrap-icons/shield-lock-fill.svg create mode 100644 api/static/bootstrap-icons/shield-lock.svg create mode 100644 api/static/bootstrap-icons/shield-minus.svg create mode 100644 api/static/bootstrap-icons/shield-plus.svg create mode 100644 api/static/bootstrap-icons/shield-shaded.svg create mode 100644 api/static/bootstrap-icons/shield-slash-fill.svg create mode 100644 api/static/bootstrap-icons/shield-slash.svg create mode 100644 api/static/bootstrap-icons/shield-x.svg create mode 100644 api/static/bootstrap-icons/shield.svg create mode 100644 api/static/bootstrap-icons/shift-fill.svg create mode 100644 api/static/bootstrap-icons/shift.svg create mode 100644 api/static/bootstrap-icons/shop-window.svg create mode 100644 api/static/bootstrap-icons/shop.svg create mode 100644 api/static/bootstrap-icons/shuffle.svg create mode 100644 api/static/bootstrap-icons/sign-dead-end-fill.svg create mode 100644 api/static/bootstrap-icons/sign-dead-end.svg create mode 100644 api/static/bootstrap-icons/sign-do-not-enter-fill.svg create mode 100644 api/static/bootstrap-icons/sign-do-not-enter.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-fill.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-side-fill.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-side.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-t-fill.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-t.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-y-fill.svg create mode 100644 api/static/bootstrap-icons/sign-intersection-y.svg create mode 100644 api/static/bootstrap-icons/sign-intersection.svg create mode 100644 api/static/bootstrap-icons/sign-merge-left-fill.svg create mode 100644 api/static/bootstrap-icons/sign-merge-left.svg create mode 100644 api/static/bootstrap-icons/sign-merge-right-fill.svg create mode 100644 api/static/bootstrap-icons/sign-merge-right.svg create mode 100644 api/static/bootstrap-icons/sign-no-left-turn-fill.svg create mode 100644 api/static/bootstrap-icons/sign-no-left-turn.svg create mode 100644 api/static/bootstrap-icons/sign-no-parking-fill.svg create mode 100644 api/static/bootstrap-icons/sign-no-parking.svg create mode 100644 api/static/bootstrap-icons/sign-no-right-turn-fill.svg create mode 100644 api/static/bootstrap-icons/sign-no-right-turn.svg create mode 100644 api/static/bootstrap-icons/sign-railroad-fill.svg create mode 100644 api/static/bootstrap-icons/sign-railroad.svg create mode 100644 api/static/bootstrap-icons/sign-stop-fill.svg create mode 100644 api/static/bootstrap-icons/sign-stop-lights-fill.svg create mode 100644 api/static/bootstrap-icons/sign-stop-lights.svg create mode 100644 api/static/bootstrap-icons/sign-stop.svg create mode 100644 api/static/bootstrap-icons/sign-turn-left-fill.svg create mode 100644 api/static/bootstrap-icons/sign-turn-left.svg create mode 100644 api/static/bootstrap-icons/sign-turn-right-fill.svg create mode 100644 api/static/bootstrap-icons/sign-turn-right.svg create mode 100644 api/static/bootstrap-icons/sign-turn-slight-left-fill.svg create mode 100644 api/static/bootstrap-icons/sign-turn-slight-left.svg create mode 100644 api/static/bootstrap-icons/sign-turn-slight-right-fill.svg create mode 100644 api/static/bootstrap-icons/sign-turn-slight-right.svg create mode 100644 api/static/bootstrap-icons/sign-yield-fill.svg create mode 100644 api/static/bootstrap-icons/sign-yield.svg create mode 100644 api/static/bootstrap-icons/signal.svg create mode 100644 api/static/bootstrap-icons/signpost-2-fill.svg create mode 100644 api/static/bootstrap-icons/signpost-2.svg create mode 100644 api/static/bootstrap-icons/signpost-fill.svg create mode 100644 api/static/bootstrap-icons/signpost-split-fill.svg create mode 100644 api/static/bootstrap-icons/signpost-split.svg create mode 100644 api/static/bootstrap-icons/signpost.svg create mode 100644 api/static/bootstrap-icons/sim-fill.svg create mode 100644 api/static/bootstrap-icons/sim-slash-fill.svg create mode 100644 api/static/bootstrap-icons/sim-slash.svg create mode 100644 api/static/bootstrap-icons/sim.svg create mode 100644 api/static/bootstrap-icons/sina-weibo.svg create mode 100644 api/static/bootstrap-icons/skip-backward-btn-fill.svg create mode 100644 api/static/bootstrap-icons/skip-backward-btn.svg create mode 100644 api/static/bootstrap-icons/skip-backward-circle-fill.svg create mode 100644 api/static/bootstrap-icons/skip-backward-circle.svg create mode 100644 api/static/bootstrap-icons/skip-backward-fill.svg create mode 100644 api/static/bootstrap-icons/skip-backward.svg create mode 100644 api/static/bootstrap-icons/skip-end-btn-fill.svg create mode 100644 api/static/bootstrap-icons/skip-end-btn.svg create mode 100644 api/static/bootstrap-icons/skip-end-circle-fill.svg create mode 100644 api/static/bootstrap-icons/skip-end-circle.svg create mode 100644 api/static/bootstrap-icons/skip-end-fill.svg create mode 100644 api/static/bootstrap-icons/skip-end.svg create mode 100644 api/static/bootstrap-icons/skip-forward-btn-fill.svg create mode 100644 api/static/bootstrap-icons/skip-forward-btn.svg create mode 100644 api/static/bootstrap-icons/skip-forward-circle-fill.svg create mode 100644 api/static/bootstrap-icons/skip-forward-circle.svg create mode 100644 api/static/bootstrap-icons/skip-forward-fill.svg create mode 100644 api/static/bootstrap-icons/skip-forward.svg create mode 100644 api/static/bootstrap-icons/skip-start-btn-fill.svg create mode 100644 api/static/bootstrap-icons/skip-start-btn.svg create mode 100644 api/static/bootstrap-icons/skip-start-circle-fill.svg create mode 100644 api/static/bootstrap-icons/skip-start-circle.svg create mode 100644 api/static/bootstrap-icons/skip-start-fill.svg create mode 100644 api/static/bootstrap-icons/skip-start.svg create mode 100644 api/static/bootstrap-icons/skype.svg create mode 100644 api/static/bootstrap-icons/slack.svg create mode 100644 api/static/bootstrap-icons/slash-circle-fill.svg create mode 100644 api/static/bootstrap-icons/slash-circle.svg create mode 100644 api/static/bootstrap-icons/slash-lg.svg create mode 100644 api/static/bootstrap-icons/slash-square-fill.svg create mode 100644 api/static/bootstrap-icons/slash-square.svg create mode 100644 api/static/bootstrap-icons/slash.svg create mode 100644 api/static/bootstrap-icons/sliders.svg create mode 100644 api/static/bootstrap-icons/sliders2-vertical.svg create mode 100644 api/static/bootstrap-icons/sliders2.svg create mode 100644 api/static/bootstrap-icons/smartwatch.svg create mode 100644 api/static/bootstrap-icons/snapchat.svg create mode 100644 api/static/bootstrap-icons/snow.svg create mode 100644 api/static/bootstrap-icons/snow2.svg create mode 100644 api/static/bootstrap-icons/snow3.svg create mode 100644 api/static/bootstrap-icons/sort-alpha-down-alt.svg create mode 100644 api/static/bootstrap-icons/sort-alpha-down.svg create mode 100644 api/static/bootstrap-icons/sort-alpha-up-alt.svg create mode 100644 api/static/bootstrap-icons/sort-alpha-up.svg create mode 100644 api/static/bootstrap-icons/sort-down-alt.svg create mode 100644 api/static/bootstrap-icons/sort-down.svg create mode 100644 api/static/bootstrap-icons/sort-numeric-down-alt.svg create mode 100644 api/static/bootstrap-icons/sort-numeric-down.svg create mode 100644 api/static/bootstrap-icons/sort-numeric-up-alt.svg create mode 100644 api/static/bootstrap-icons/sort-numeric-up.svg create mode 100644 api/static/bootstrap-icons/sort-up-alt.svg create mode 100644 api/static/bootstrap-icons/sort-up.svg create mode 100644 api/static/bootstrap-icons/soundwave.svg create mode 100644 api/static/bootstrap-icons/sourceforge.svg create mode 100644 api/static/bootstrap-icons/speaker-fill.svg create mode 100644 api/static/bootstrap-icons/speaker.svg create mode 100644 api/static/bootstrap-icons/speedometer.svg create mode 100644 api/static/bootstrap-icons/speedometer2.svg create mode 100644 api/static/bootstrap-icons/spellcheck.svg create mode 100644 api/static/bootstrap-icons/spotify.svg create mode 100644 api/static/bootstrap-icons/square-fill.svg create mode 100644 api/static/bootstrap-icons/square-half.svg create mode 100644 api/static/bootstrap-icons/square.svg create mode 100644 api/static/bootstrap-icons/stack-overflow.svg create mode 100644 api/static/bootstrap-icons/stack.svg create mode 100644 api/static/bootstrap-icons/star-fill.svg create mode 100644 api/static/bootstrap-icons/star-half.svg create mode 100644 api/static/bootstrap-icons/star.svg create mode 100644 api/static/bootstrap-icons/stars.svg create mode 100644 api/static/bootstrap-icons/steam.svg create mode 100644 api/static/bootstrap-icons/stickies-fill.svg create mode 100644 api/static/bootstrap-icons/stickies.svg create mode 100644 api/static/bootstrap-icons/sticky-fill.svg create mode 100644 api/static/bootstrap-icons/sticky.svg create mode 100644 api/static/bootstrap-icons/stop-btn-fill.svg create mode 100644 api/static/bootstrap-icons/stop-btn.svg create mode 100644 api/static/bootstrap-icons/stop-circle-fill.svg create mode 100644 api/static/bootstrap-icons/stop-circle.svg create mode 100644 api/static/bootstrap-icons/stop-fill.svg create mode 100644 api/static/bootstrap-icons/stop.svg create mode 100644 api/static/bootstrap-icons/stoplights-fill.svg create mode 100644 api/static/bootstrap-icons/stoplights.svg create mode 100644 api/static/bootstrap-icons/stopwatch-fill.svg create mode 100644 api/static/bootstrap-icons/stopwatch.svg create mode 100644 api/static/bootstrap-icons/strava.svg create mode 100644 api/static/bootstrap-icons/stripe.svg create mode 100644 api/static/bootstrap-icons/subscript.svg create mode 100644 api/static/bootstrap-icons/substack.svg create mode 100644 api/static/bootstrap-icons/subtract.svg create mode 100644 api/static/bootstrap-icons/suit-club-fill.svg create mode 100644 api/static/bootstrap-icons/suit-club.svg create mode 100644 api/static/bootstrap-icons/suit-diamond-fill.svg create mode 100644 api/static/bootstrap-icons/suit-diamond.svg create mode 100644 api/static/bootstrap-icons/suit-heart-fill.svg create mode 100644 api/static/bootstrap-icons/suit-heart.svg create mode 100644 api/static/bootstrap-icons/suit-spade-fill.svg create mode 100644 api/static/bootstrap-icons/suit-spade.svg create mode 100644 api/static/bootstrap-icons/suitcase-fill.svg create mode 100644 api/static/bootstrap-icons/suitcase-lg-fill.svg create mode 100644 api/static/bootstrap-icons/suitcase-lg.svg create mode 100644 api/static/bootstrap-icons/suitcase.svg create mode 100644 api/static/bootstrap-icons/suitcase2-fill.svg create mode 100644 api/static/bootstrap-icons/suitcase2.svg create mode 100644 api/static/bootstrap-icons/sun-fill.svg create mode 100644 api/static/bootstrap-icons/sun.svg create mode 100644 api/static/bootstrap-icons/sunglasses.svg create mode 100644 api/static/bootstrap-icons/sunrise-fill.svg create mode 100644 api/static/bootstrap-icons/sunrise.svg create mode 100644 api/static/bootstrap-icons/sunset-fill.svg create mode 100644 api/static/bootstrap-icons/sunset.svg create mode 100644 api/static/bootstrap-icons/superscript.svg create mode 100644 api/static/bootstrap-icons/symmetry-horizontal.svg create mode 100644 api/static/bootstrap-icons/symmetry-vertical.svg create mode 100644 api/static/bootstrap-icons/table.svg create mode 100644 api/static/bootstrap-icons/tablet-fill.svg create mode 100644 api/static/bootstrap-icons/tablet-landscape-fill.svg create mode 100644 api/static/bootstrap-icons/tablet-landscape.svg create mode 100644 api/static/bootstrap-icons/tablet.svg create mode 100644 api/static/bootstrap-icons/tag-fill.svg create mode 100644 api/static/bootstrap-icons/tag.svg create mode 100644 api/static/bootstrap-icons/tags-fill.svg create mode 100644 api/static/bootstrap-icons/tags.svg create mode 100644 api/static/bootstrap-icons/taxi-front-fill.svg create mode 100644 api/static/bootstrap-icons/taxi-front.svg create mode 100644 api/static/bootstrap-icons/telegram.svg create mode 100644 api/static/bootstrap-icons/telephone-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-forward-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-forward.svg create mode 100644 api/static/bootstrap-icons/telephone-inbound-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-inbound.svg create mode 100644 api/static/bootstrap-icons/telephone-minus-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-minus.svg create mode 100644 api/static/bootstrap-icons/telephone-outbound-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-outbound.svg create mode 100644 api/static/bootstrap-icons/telephone-plus-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-plus.svg create mode 100644 api/static/bootstrap-icons/telephone-x-fill.svg create mode 100644 api/static/bootstrap-icons/telephone-x.svg create mode 100644 api/static/bootstrap-icons/telephone.svg create mode 100644 api/static/bootstrap-icons/tencent-qq.svg create mode 100644 api/static/bootstrap-icons/terminal-dash.svg create mode 100644 api/static/bootstrap-icons/terminal-fill.svg create mode 100644 api/static/bootstrap-icons/terminal-plus.svg create mode 100644 api/static/bootstrap-icons/terminal-split.svg create mode 100644 api/static/bootstrap-icons/terminal-x.svg create mode 100644 api/static/bootstrap-icons/terminal.svg create mode 100644 api/static/bootstrap-icons/text-center.svg create mode 100644 api/static/bootstrap-icons/text-indent-left.svg create mode 100644 api/static/bootstrap-icons/text-indent-right.svg create mode 100644 api/static/bootstrap-icons/text-left.svg create mode 100644 api/static/bootstrap-icons/text-paragraph.svg create mode 100644 api/static/bootstrap-icons/text-right.svg create mode 100644 api/static/bootstrap-icons/text-wrap.svg create mode 100644 api/static/bootstrap-icons/textarea-resize.svg create mode 100644 api/static/bootstrap-icons/textarea-t.svg create mode 100644 api/static/bootstrap-icons/textarea.svg create mode 100644 api/static/bootstrap-icons/thermometer-half.svg create mode 100644 api/static/bootstrap-icons/thermometer-high.svg create mode 100644 api/static/bootstrap-icons/thermometer-low.svg create mode 100644 api/static/bootstrap-icons/thermometer-snow.svg create mode 100644 api/static/bootstrap-icons/thermometer-sun.svg create mode 100644 api/static/bootstrap-icons/thermometer.svg create mode 100644 api/static/bootstrap-icons/threads-fill.svg create mode 100644 api/static/bootstrap-icons/threads.svg create mode 100644 api/static/bootstrap-icons/three-dots-vertical.svg create mode 100644 api/static/bootstrap-icons/three-dots.svg create mode 100644 api/static/bootstrap-icons/thunderbolt-fill.svg create mode 100644 api/static/bootstrap-icons/thunderbolt.svg create mode 100644 api/static/bootstrap-icons/ticket-detailed-fill.svg create mode 100644 api/static/bootstrap-icons/ticket-detailed.svg create mode 100644 api/static/bootstrap-icons/ticket-fill.svg create mode 100644 api/static/bootstrap-icons/ticket-perforated-fill.svg create mode 100644 api/static/bootstrap-icons/ticket-perforated.svg create mode 100644 api/static/bootstrap-icons/ticket.svg create mode 100644 api/static/bootstrap-icons/tiktok.svg create mode 100644 api/static/bootstrap-icons/toggle-off.svg create mode 100644 api/static/bootstrap-icons/toggle-on.svg create mode 100644 api/static/bootstrap-icons/toggle2-off.svg create mode 100644 api/static/bootstrap-icons/toggle2-on.svg create mode 100644 api/static/bootstrap-icons/toggles.svg create mode 100644 api/static/bootstrap-icons/toggles2.svg create mode 100644 api/static/bootstrap-icons/tools.svg create mode 100644 api/static/bootstrap-icons/tornado.svg create mode 100644 api/static/bootstrap-icons/train-freight-front-fill.svg create mode 100644 api/static/bootstrap-icons/train-freight-front.svg create mode 100644 api/static/bootstrap-icons/train-front-fill.svg create mode 100644 api/static/bootstrap-icons/train-front.svg create mode 100644 api/static/bootstrap-icons/train-lightrail-front-fill.svg create mode 100644 api/static/bootstrap-icons/train-lightrail-front.svg create mode 100644 api/static/bootstrap-icons/translate.svg create mode 100644 api/static/bootstrap-icons/transparency.svg create mode 100644 api/static/bootstrap-icons/trash-fill.svg create mode 100644 api/static/bootstrap-icons/trash.svg create mode 100644 api/static/bootstrap-icons/trash2-fill.svg create mode 100644 api/static/bootstrap-icons/trash2.svg create mode 100644 api/static/bootstrap-icons/trash3-fill.svg create mode 100644 api/static/bootstrap-icons/trash3.svg create mode 100644 api/static/bootstrap-icons/tree-fill.svg create mode 100644 api/static/bootstrap-icons/tree.svg create mode 100644 api/static/bootstrap-icons/trello.svg create mode 100644 api/static/bootstrap-icons/triangle-fill.svg create mode 100644 api/static/bootstrap-icons/triangle-half.svg create mode 100644 api/static/bootstrap-icons/triangle.svg create mode 100644 api/static/bootstrap-icons/trophy-fill.svg create mode 100644 api/static/bootstrap-icons/trophy.svg create mode 100644 api/static/bootstrap-icons/tropical-storm.svg create mode 100644 api/static/bootstrap-icons/truck-flatbed.svg create mode 100644 api/static/bootstrap-icons/truck-front-fill.svg create mode 100644 api/static/bootstrap-icons/truck-front.svg create mode 100644 api/static/bootstrap-icons/truck.svg create mode 100644 api/static/bootstrap-icons/tsunami.svg create mode 100644 api/static/bootstrap-icons/tv-fill.svg create mode 100644 api/static/bootstrap-icons/tv.svg create mode 100644 api/static/bootstrap-icons/twitch.svg create mode 100644 api/static/bootstrap-icons/twitter-x.svg create mode 100644 api/static/bootstrap-icons/twitter.svg create mode 100644 api/static/bootstrap-icons/type-bold.svg create mode 100644 api/static/bootstrap-icons/type-h1.svg create mode 100644 api/static/bootstrap-icons/type-h2.svg create mode 100644 api/static/bootstrap-icons/type-h3.svg create mode 100644 api/static/bootstrap-icons/type-h4.svg create mode 100644 api/static/bootstrap-icons/type-h5.svg create mode 100644 api/static/bootstrap-icons/type-h6.svg create mode 100644 api/static/bootstrap-icons/type-italic.svg create mode 100644 api/static/bootstrap-icons/type-strikethrough.svg create mode 100644 api/static/bootstrap-icons/type-underline.svg create mode 100644 api/static/bootstrap-icons/type.svg create mode 100644 api/static/bootstrap-icons/ubuntu.svg create mode 100644 api/static/bootstrap-icons/ui-checks-grid.svg create mode 100644 api/static/bootstrap-icons/ui-checks.svg create mode 100644 api/static/bootstrap-icons/ui-radios-grid.svg create mode 100644 api/static/bootstrap-icons/ui-radios.svg create mode 100644 api/static/bootstrap-icons/umbrella-fill.svg create mode 100644 api/static/bootstrap-icons/umbrella.svg create mode 100644 api/static/bootstrap-icons/unindent.svg create mode 100644 api/static/bootstrap-icons/union.svg create mode 100644 api/static/bootstrap-icons/unity.svg create mode 100644 api/static/bootstrap-icons/universal-access-circle.svg create mode 100644 api/static/bootstrap-icons/universal-access.svg create mode 100644 api/static/bootstrap-icons/unlock-fill.svg create mode 100644 api/static/bootstrap-icons/unlock.svg create mode 100644 api/static/bootstrap-icons/upc-scan.svg create mode 100644 api/static/bootstrap-icons/upc.svg create mode 100644 api/static/bootstrap-icons/upload.svg create mode 100644 api/static/bootstrap-icons/usb-c-fill.svg create mode 100644 api/static/bootstrap-icons/usb-c.svg create mode 100644 api/static/bootstrap-icons/usb-drive-fill.svg create mode 100644 api/static/bootstrap-icons/usb-drive.svg create mode 100644 api/static/bootstrap-icons/usb-fill.svg create mode 100644 api/static/bootstrap-icons/usb-micro-fill.svg create mode 100644 api/static/bootstrap-icons/usb-micro.svg create mode 100644 api/static/bootstrap-icons/usb-mini-fill.svg create mode 100644 api/static/bootstrap-icons/usb-mini.svg create mode 100644 api/static/bootstrap-icons/usb-plug-fill.svg create mode 100644 api/static/bootstrap-icons/usb-plug.svg create mode 100644 api/static/bootstrap-icons/usb-symbol.svg create mode 100644 api/static/bootstrap-icons/usb.svg create mode 100644 api/static/bootstrap-icons/valentine.svg create mode 100644 api/static/bootstrap-icons/valentine2.svg create mode 100644 api/static/bootstrap-icons/vector-pen.svg create mode 100644 api/static/bootstrap-icons/view-list.svg create mode 100644 api/static/bootstrap-icons/view-stacked.svg create mode 100644 api/static/bootstrap-icons/vignette.svg create mode 100644 api/static/bootstrap-icons/vimeo.svg create mode 100644 api/static/bootstrap-icons/vinyl-fill.svg create mode 100644 api/static/bootstrap-icons/vinyl.svg create mode 100644 api/static/bootstrap-icons/virus.svg create mode 100644 api/static/bootstrap-icons/virus2.svg create mode 100644 api/static/bootstrap-icons/voicemail.svg create mode 100644 api/static/bootstrap-icons/volume-down-fill.svg create mode 100644 api/static/bootstrap-icons/volume-down.svg create mode 100644 api/static/bootstrap-icons/volume-mute-fill.svg create mode 100644 api/static/bootstrap-icons/volume-mute.svg create mode 100644 api/static/bootstrap-icons/volume-off-fill.svg create mode 100644 api/static/bootstrap-icons/volume-off.svg create mode 100644 api/static/bootstrap-icons/volume-up-fill.svg create mode 100644 api/static/bootstrap-icons/volume-up.svg create mode 100644 api/static/bootstrap-icons/vr.svg create mode 100644 api/static/bootstrap-icons/wallet-fill.svg create mode 100644 api/static/bootstrap-icons/wallet.svg create mode 100644 api/static/bootstrap-icons/wallet2.svg create mode 100644 api/static/bootstrap-icons/watch.svg create mode 100644 api/static/bootstrap-icons/water.svg create mode 100644 api/static/bootstrap-icons/webcam-fill.svg create mode 100644 api/static/bootstrap-icons/webcam.svg create mode 100644 api/static/bootstrap-icons/wechat.svg create mode 100644 api/static/bootstrap-icons/whatsapp.svg create mode 100644 api/static/bootstrap-icons/wifi-1.svg create mode 100644 api/static/bootstrap-icons/wifi-2.svg create mode 100644 api/static/bootstrap-icons/wifi-off.svg create mode 100644 api/static/bootstrap-icons/wifi.svg create mode 100644 api/static/bootstrap-icons/wikipedia.svg create mode 100644 api/static/bootstrap-icons/wind.svg create mode 100644 api/static/bootstrap-icons/window-dash.svg create mode 100644 api/static/bootstrap-icons/window-desktop.svg create mode 100644 api/static/bootstrap-icons/window-dock.svg create mode 100644 api/static/bootstrap-icons/window-fullscreen.svg create mode 100644 api/static/bootstrap-icons/window-plus.svg create mode 100644 api/static/bootstrap-icons/window-sidebar.svg create mode 100644 api/static/bootstrap-icons/window-split.svg create mode 100644 api/static/bootstrap-icons/window-stack.svg create mode 100644 api/static/bootstrap-icons/window-x.svg create mode 100644 api/static/bootstrap-icons/window.svg create mode 100644 api/static/bootstrap-icons/windows.svg create mode 100644 api/static/bootstrap-icons/wordpress.svg create mode 100644 api/static/bootstrap-icons/wrench-adjustable-circle-fill.svg create mode 100644 api/static/bootstrap-icons/wrench-adjustable-circle.svg create mode 100644 api/static/bootstrap-icons/wrench-adjustable.svg create mode 100644 api/static/bootstrap-icons/wrench.svg create mode 100644 api/static/bootstrap-icons/x-circle-fill.svg create mode 100644 api/static/bootstrap-icons/x-circle.svg create mode 100644 api/static/bootstrap-icons/x-diamond-fill.svg create mode 100644 api/static/bootstrap-icons/x-diamond.svg create mode 100644 api/static/bootstrap-icons/x-lg.svg create mode 100644 api/static/bootstrap-icons/x-octagon-fill.svg create mode 100644 api/static/bootstrap-icons/x-octagon.svg create mode 100644 api/static/bootstrap-icons/x-square-fill.svg create mode 100644 api/static/bootstrap-icons/x-square.svg create mode 100644 api/static/bootstrap-icons/x.svg create mode 100644 api/static/bootstrap-icons/xbox.svg create mode 100644 api/static/bootstrap-icons/yelp.svg create mode 100644 api/static/bootstrap-icons/yin-yang.svg create mode 100644 api/static/bootstrap-icons/youtube.svg create mode 100644 api/static/bootstrap-icons/zoom-in.svg create mode 100644 api/static/bootstrap-icons/zoom-out.svg diff --git a/.air.toml b/.air.toml index 67b1383..a770bbd 100644 --- a/.air.toml +++ b/.air.toml @@ -7,7 +7,7 @@ tmp_dir = "tmp" bin = "tmp\\main.exe" cmd = "go build -o ./tmp/main.exe ./main" delay = 1000 - exclude_dir = ["assets", "tmp", "vendor", "testdata"] + exclude_dir = ["assets", "tmp", "vendor", "testdata", "api\\static\\tinymce", "api\\static\\bootstrap-icons"] exclude_file = [] exclude_regex = ["_test.go"] exclude_unchanged = false diff --git a/adapters/secondary/gateways/postRepository.go b/adapters/secondary/gateways/postRepository.go index 533dbbb..02c575a 100644 --- a/adapters/secondary/gateways/postRepository.go +++ b/adapters/secondary/gateways/postRepository.go @@ -29,6 +29,18 @@ func (a *PostRepository) Get(id uint32) (domain.Post, error) { return mapPostToDomain(post), nil } +func (a *PostRepository) GetByName(name string) (domain.Post, error) { + var post entity.Post + err := a.db.Model(&entity.Post{ + Title: name, + }).First(&post).Error + if err != nil { + return domain.Post{}, err + } + + return mapPostToDomain(post), nil +} + func (a *PostRepository) Create(post domain.Post) (domain.Post, error) { creationResult := a.db.Create(&entity.Post{ Title: post.Title, diff --git a/adapters/secondary/gateways/web/templates/postCreate.html b/adapters/secondary/gateways/web/templates/postCreate.html index cbb213b..6e35512 100644 --- a/adapters/secondary/gateways/web/templates/postCreate.html +++ b/adapters/secondary/gateways/web/templates/postCreate.html @@ -3,7 +3,6 @@ GoCMS | Create post {{.Head}} - {{.Navbar}}

Posts

List of your posts

- +
@@ -29,15 +33,41 @@ + {{ range $post := .Posts }} - - - - + + + + + {{ end }}
Name
1MarkOtto@mdo{{ $post.Title }}{{ $post.CreatedAt }}{{ $post.UpdatedAt }} + + + + + + + + + + +
+ + diff --git a/api/page.go b/api/page.go index 5ef3f5b..754b0a9 100644 --- a/api/page.go +++ b/api/page.go @@ -122,7 +122,7 @@ func NewPageRouter() http.Handler { r.Use(IsVerifiedMiddleware) r.Get("/home", GetHomePage) r.Get("/post", GetPostsPage) - r.Get("/post/edit", GetPostEditPage) + r.Get("/post/{name}/edit", GetPostEditPage) r.Get("/post/create", GetPostCreatePage) r.Post("/post/create", PostPostCreatePage) }) diff --git a/api/pagePostCreate.go b/api/pagePostCreate.go index 68051e8..d8d12d8 100644 --- a/api/pagePostCreate.go +++ b/api/pagePostCreate.go @@ -1,29 +1,56 @@ package api import ( + "GoCMS/useCases" "html/template" "net/http" "regexp" ) +type PostCreatePageError struct { + IsError bool + Message string +} + +func GetPostCreatePageTemplate(postName string, errorMessage string) ([]byte, error) { + navbarTmpl, _ := Container.GetPageUseCase.GetPage("componentNavbar", nil) + return Container.GetPageUseCase.GetPage("postCreate", map[string]interface{}{ + "Navbar": template.HTML(navbarTmpl), + "Head": headTmpl, + "PageError": PostCreatePageError{ + IsError: errorMessage != "", + Message: errorMessage, + }, + "Name": postName, + }) +} + func PostPostCreatePage(w http.ResponseWriter, r *http.Request) { _ = r.ParseForm() postName := r.FormValue("name") - pattern := regexp.MustCompile("^[a-zA-Z0-9]{3,50}$") - - isPostNameValid := pattern.MatchString(postName) - if !isPostNameValid { - r.Method = http.MethodGet + pattern := regexp.MustCompile("^[a-zA-Z0-9À-ÖØ-öø-ÿĀ-ſḀ-ỿ ]{3,50}$") + if !pattern.MatchString(postName) { + postsTmpl, _ := GetPostCreatePageTemplate(postName, "Name should be alphanumeric, and between 3 and 50 characters.") + _, _ = w.Write(postsTmpl) + return } + + post, err := Container.CreatePostUseCase.CreatePost(useCases.CreatePostCommand{ + Title: postName, + Body: "", + }) + if err != nil { + postsTmpl, _ := GetPostCreatePageTemplate(postName, "Something went wrong when creating the post, please contact admin.") + _, _ = w.Write(postsTmpl) + return + } + + http.Redirect(w, r, "/post/"+post.Title+"/edit", http.StatusSeeOther) } func GetPostCreatePage(w http.ResponseWriter, _ *http.Request) { - navbarTmpl, _ := Container.GetPageUseCase.GetPage("componentNavbar", nil) - postsTmpl, _ := Container.GetPageUseCase.GetPage("postCreate", map[string]interface{}{ - "Navbar": template.HTML(navbarTmpl), - "Head": headTmpl, - }) + postsTmpl, _ := GetPostCreatePageTemplate("", "") _, _ = w.Write(postsTmpl) } diff --git a/api/pagePostEdit.go b/api/pagePostEdit.go index a39a682..8bc1ef7 100644 --- a/api/pagePostEdit.go +++ b/api/pagePostEdit.go @@ -1,15 +1,25 @@ package api import ( + "github.com/go-chi/chi/v5" "html/template" "net/http" ) -func GetPostEditPage(w http.ResponseWriter, _ *http.Request) { +func GetPostEditPage(w http.ResponseWriter, r *http.Request) { + postName := chi.URLParam(r, "name") + if len(postName) == 0 { + w.WriteHeader(http.StatusBadRequest) + return + } + + post, _ := Container.GetPostUseCase.GetPostByName(postName) + navbarTmpl, _ := Container.GetPageUseCase.GetPage("componentNavbar", nil) postsTmpl, _ := Container.GetPageUseCase.GetPage("postEdit", map[string]interface{}{ "Navbar": template.HTML(navbarTmpl), "Head": headTmpl, + "Body": post.Body, }) _, _ = w.Write(postsTmpl) } diff --git a/api/pagePosts.go b/api/pagePosts.go index 504e40e..514d637 100644 --- a/api/pagePosts.go +++ b/api/pagePosts.go @@ -6,10 +6,12 @@ import ( ) func GetPostsPage(w http.ResponseWriter, _ *http.Request) { + posts := Container.ListPostsUseCase.ListPosts() navbarTmpl, _ := Container.GetPageUseCase.GetPage("componentNavbar", nil) postsTmpl, _ := Container.GetPageUseCase.GetPage("posts", map[string]interface{}{ "Navbar": template.HTML(navbarTmpl), "Head": headTmpl, + "Posts": posts, }) _, _ = w.Write(postsTmpl) } diff --git a/api/static/bootstrap-icons.svg b/api/static/bootstrap-icons.svg new file mode 100644 index 0000000..b7d55a8 --- /dev/null +++ b/api/static/bootstrap-icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/api/static/bootstrap-icons/0-circle-fill.svg b/api/static/bootstrap-icons/0-circle-fill.svg new file mode 100644 index 0000000..2f5f026 --- /dev/null +++ b/api/static/bootstrap-icons/0-circle-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/0-circle.svg b/api/static/bootstrap-icons/0-circle.svg new file mode 100644 index 0000000..5e84c8c --- /dev/null +++ b/api/static/bootstrap-icons/0-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/0-square-fill.svg b/api/static/bootstrap-icons/0-square-fill.svg new file mode 100644 index 0000000..cca049b --- /dev/null +++ b/api/static/bootstrap-icons/0-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/0-square.svg b/api/static/bootstrap-icons/0-square.svg new file mode 100644 index 0000000..73b7bc1 --- /dev/null +++ b/api/static/bootstrap-icons/0-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/1-circle-fill.svg b/api/static/bootstrap-icons/1-circle-fill.svg new file mode 100644 index 0000000..b10d0f3 --- /dev/null +++ b/api/static/bootstrap-icons/1-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/1-circle.svg b/api/static/bootstrap-icons/1-circle.svg new file mode 100644 index 0000000..2aa21f9 --- /dev/null +++ b/api/static/bootstrap-icons/1-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/1-square-fill.svg b/api/static/bootstrap-icons/1-square-fill.svg new file mode 100644 index 0000000..2ce792f --- /dev/null +++ b/api/static/bootstrap-icons/1-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/1-square.svg b/api/static/bootstrap-icons/1-square.svg new file mode 100644 index 0000000..773534a --- /dev/null +++ b/api/static/bootstrap-icons/1-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/123.svg b/api/static/bootstrap-icons/123.svg new file mode 100644 index 0000000..277d405 --- /dev/null +++ b/api/static/bootstrap-icons/123.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/2-circle-fill.svg b/api/static/bootstrap-icons/2-circle-fill.svg new file mode 100644 index 0000000..169df3a --- /dev/null +++ b/api/static/bootstrap-icons/2-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/2-circle.svg b/api/static/bootstrap-icons/2-circle.svg new file mode 100644 index 0000000..00260b6 --- /dev/null +++ b/api/static/bootstrap-icons/2-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/2-square-fill.svg b/api/static/bootstrap-icons/2-square-fill.svg new file mode 100644 index 0000000..2760ca7 --- /dev/null +++ b/api/static/bootstrap-icons/2-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/2-square.svg b/api/static/bootstrap-icons/2-square.svg new file mode 100644 index 0000000..4a79ed6 --- /dev/null +++ b/api/static/bootstrap-icons/2-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/3-circle-fill.svg b/api/static/bootstrap-icons/3-circle-fill.svg new file mode 100644 index 0000000..9aedc47 --- /dev/null +++ b/api/static/bootstrap-icons/3-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/3-circle.svg b/api/static/bootstrap-icons/3-circle.svg new file mode 100644 index 0000000..c2fc517 --- /dev/null +++ b/api/static/bootstrap-icons/3-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/3-square-fill.svg b/api/static/bootstrap-icons/3-square-fill.svg new file mode 100644 index 0000000..20c71a7 --- /dev/null +++ b/api/static/bootstrap-icons/3-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/3-square.svg b/api/static/bootstrap-icons/3-square.svg new file mode 100644 index 0000000..f0907cc --- /dev/null +++ b/api/static/bootstrap-icons/3-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/4-circle-fill.svg b/api/static/bootstrap-icons/4-circle-fill.svg new file mode 100644 index 0000000..51dc8a5 --- /dev/null +++ b/api/static/bootstrap-icons/4-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/4-circle.svg b/api/static/bootstrap-icons/4-circle.svg new file mode 100644 index 0000000..e25df51 --- /dev/null +++ b/api/static/bootstrap-icons/4-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/4-square-fill.svg b/api/static/bootstrap-icons/4-square-fill.svg new file mode 100644 index 0000000..ce3aa94 --- /dev/null +++ b/api/static/bootstrap-icons/4-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/4-square.svg b/api/static/bootstrap-icons/4-square.svg new file mode 100644 index 0000000..769102d --- /dev/null +++ b/api/static/bootstrap-icons/4-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/5-circle-fill.svg b/api/static/bootstrap-icons/5-circle-fill.svg new file mode 100644 index 0000000..915462d --- /dev/null +++ b/api/static/bootstrap-icons/5-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/5-circle.svg b/api/static/bootstrap-icons/5-circle.svg new file mode 100644 index 0000000..5ef620d --- /dev/null +++ b/api/static/bootstrap-icons/5-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/5-square-fill.svg b/api/static/bootstrap-icons/5-square-fill.svg new file mode 100644 index 0000000..2b066bb --- /dev/null +++ b/api/static/bootstrap-icons/5-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/5-square.svg b/api/static/bootstrap-icons/5-square.svg new file mode 100644 index 0000000..ad3e281 --- /dev/null +++ b/api/static/bootstrap-icons/5-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/6-circle-fill.svg b/api/static/bootstrap-icons/6-circle-fill.svg new file mode 100644 index 0000000..21b601a --- /dev/null +++ b/api/static/bootstrap-icons/6-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/6-circle.svg b/api/static/bootstrap-icons/6-circle.svg new file mode 100644 index 0000000..fc036b0 --- /dev/null +++ b/api/static/bootstrap-icons/6-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/6-square-fill.svg b/api/static/bootstrap-icons/6-square-fill.svg new file mode 100644 index 0000000..908706d --- /dev/null +++ b/api/static/bootstrap-icons/6-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/6-square.svg b/api/static/bootstrap-icons/6-square.svg new file mode 100644 index 0000000..ce28209 --- /dev/null +++ b/api/static/bootstrap-icons/6-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/7-circle-fill.svg b/api/static/bootstrap-icons/7-circle-fill.svg new file mode 100644 index 0000000..0f4f6d9 --- /dev/null +++ b/api/static/bootstrap-icons/7-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/7-circle.svg b/api/static/bootstrap-icons/7-circle.svg new file mode 100644 index 0000000..796f45c --- /dev/null +++ b/api/static/bootstrap-icons/7-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/7-square-fill.svg b/api/static/bootstrap-icons/7-square-fill.svg new file mode 100644 index 0000000..604186d --- /dev/null +++ b/api/static/bootstrap-icons/7-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/7-square.svg b/api/static/bootstrap-icons/7-square.svg new file mode 100644 index 0000000..f269032 --- /dev/null +++ b/api/static/bootstrap-icons/7-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/8-circle-fill.svg b/api/static/bootstrap-icons/8-circle-fill.svg new file mode 100644 index 0000000..579846b --- /dev/null +++ b/api/static/bootstrap-icons/8-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/8-circle.svg b/api/static/bootstrap-icons/8-circle.svg new file mode 100644 index 0000000..2dbb93e --- /dev/null +++ b/api/static/bootstrap-icons/8-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/8-square-fill.svg b/api/static/bootstrap-icons/8-square-fill.svg new file mode 100644 index 0000000..f8efe93 --- /dev/null +++ b/api/static/bootstrap-icons/8-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/8-square.svg b/api/static/bootstrap-icons/8-square.svg new file mode 100644 index 0000000..f29d225 --- /dev/null +++ b/api/static/bootstrap-icons/8-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/9-circle-fill.svg b/api/static/bootstrap-icons/9-circle-fill.svg new file mode 100644 index 0000000..b19b3f5 --- /dev/null +++ b/api/static/bootstrap-icons/9-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/9-circle.svg b/api/static/bootstrap-icons/9-circle.svg new file mode 100644 index 0000000..ff91949 --- /dev/null +++ b/api/static/bootstrap-icons/9-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/9-square-fill.svg b/api/static/bootstrap-icons/9-square-fill.svg new file mode 100644 index 0000000..e2ca2c3 --- /dev/null +++ b/api/static/bootstrap-icons/9-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/9-square.svg b/api/static/bootstrap-icons/9-square.svg new file mode 100644 index 0000000..3410f7b --- /dev/null +++ b/api/static/bootstrap-icons/9-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/activity.svg b/api/static/bootstrap-icons/activity.svg new file mode 100644 index 0000000..1ca946e --- /dev/null +++ b/api/static/bootstrap-icons/activity.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/airplane-engines-fill.svg b/api/static/bootstrap-icons/airplane-engines-fill.svg new file mode 100644 index 0000000..3d8f185 --- /dev/null +++ b/api/static/bootstrap-icons/airplane-engines-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/airplane-engines.svg b/api/static/bootstrap-icons/airplane-engines.svg new file mode 100644 index 0000000..2efc31e --- /dev/null +++ b/api/static/bootstrap-icons/airplane-engines.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/airplane-fill.svg b/api/static/bootstrap-icons/airplane-fill.svg new file mode 100644 index 0000000..b1e4fa3 --- /dev/null +++ b/api/static/bootstrap-icons/airplane-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/airplane.svg b/api/static/bootstrap-icons/airplane.svg new file mode 100644 index 0000000..5f937e1 --- /dev/null +++ b/api/static/bootstrap-icons/airplane.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alarm-fill.svg b/api/static/bootstrap-icons/alarm-fill.svg new file mode 100644 index 0000000..a53c88f --- /dev/null +++ b/api/static/bootstrap-icons/alarm-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alarm.svg b/api/static/bootstrap-icons/alarm.svg new file mode 100644 index 0000000..27160b3 --- /dev/null +++ b/api/static/bootstrap-icons/alarm.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alexa.svg b/api/static/bootstrap-icons/alexa.svg new file mode 100644 index 0000000..0827c41 --- /dev/null +++ b/api/static/bootstrap-icons/alexa.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-bottom.svg b/api/static/bootstrap-icons/align-bottom.svg new file mode 100644 index 0000000..5c2569f --- /dev/null +++ b/api/static/bootstrap-icons/align-bottom.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-center.svg b/api/static/bootstrap-icons/align-center.svg new file mode 100644 index 0000000..ea4290b --- /dev/null +++ b/api/static/bootstrap-icons/align-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-end.svg b/api/static/bootstrap-icons/align-end.svg new file mode 100644 index 0000000..15429bb --- /dev/null +++ b/api/static/bootstrap-icons/align-end.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-middle.svg b/api/static/bootstrap-icons/align-middle.svg new file mode 100644 index 0000000..82f6801 --- /dev/null +++ b/api/static/bootstrap-icons/align-middle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-start.svg b/api/static/bootstrap-icons/align-start.svg new file mode 100644 index 0000000..75dca50 --- /dev/null +++ b/api/static/bootstrap-icons/align-start.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/align-top.svg b/api/static/bootstrap-icons/align-top.svg new file mode 100644 index 0000000..f354fc5 --- /dev/null +++ b/api/static/bootstrap-icons/align-top.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alipay.svg b/api/static/bootstrap-icons/alipay.svg new file mode 100644 index 0000000..30b6fe7 --- /dev/null +++ b/api/static/bootstrap-icons/alipay.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alphabet-uppercase.svg b/api/static/bootstrap-icons/alphabet-uppercase.svg new file mode 100644 index 0000000..d0887b5 --- /dev/null +++ b/api/static/bootstrap-icons/alphabet-uppercase.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alphabet.svg b/api/static/bootstrap-icons/alphabet.svg new file mode 100644 index 0000000..5d097d7 --- /dev/null +++ b/api/static/bootstrap-icons/alphabet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/alt.svg b/api/static/bootstrap-icons/alt.svg new file mode 100644 index 0000000..2141bcb --- /dev/null +++ b/api/static/bootstrap-icons/alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/amazon.svg b/api/static/bootstrap-icons/amazon.svg new file mode 100644 index 0000000..0752545 --- /dev/null +++ b/api/static/bootstrap-icons/amazon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/amd.svg b/api/static/bootstrap-icons/amd.svg new file mode 100644 index 0000000..ef0757c --- /dev/null +++ b/api/static/bootstrap-icons/amd.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/android.svg b/api/static/bootstrap-icons/android.svg new file mode 100644 index 0000000..4c1f097 --- /dev/null +++ b/api/static/bootstrap-icons/android.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/android2.svg b/api/static/bootstrap-icons/android2.svg new file mode 100644 index 0000000..f49c14e --- /dev/null +++ b/api/static/bootstrap-icons/android2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/app-indicator.svg b/api/static/bootstrap-icons/app-indicator.svg new file mode 100644 index 0000000..b28e219 --- /dev/null +++ b/api/static/bootstrap-icons/app-indicator.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/app.svg b/api/static/bootstrap-icons/app.svg new file mode 100644 index 0000000..b361308 --- /dev/null +++ b/api/static/bootstrap-icons/app.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/apple.svg b/api/static/bootstrap-icons/apple.svg new file mode 100644 index 0000000..58235c3 --- /dev/null +++ b/api/static/bootstrap-icons/apple.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/archive-fill.svg b/api/static/bootstrap-icons/archive-fill.svg new file mode 100644 index 0000000..e5ea32b --- /dev/null +++ b/api/static/bootstrap-icons/archive-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/archive.svg b/api/static/bootstrap-icons/archive.svg new file mode 100644 index 0000000..7bc5eb2 --- /dev/null +++ b/api/static/bootstrap-icons/archive.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-90deg-down.svg b/api/static/bootstrap-icons/arrow-90deg-down.svg new file mode 100644 index 0000000..7459597 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-90deg-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-90deg-left.svg b/api/static/bootstrap-icons/arrow-90deg-left.svg new file mode 100644 index 0000000..4e17ab4 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-90deg-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-90deg-right.svg b/api/static/bootstrap-icons/arrow-90deg-right.svg new file mode 100644 index 0000000..9fb6363 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-90deg-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-90deg-up.svg b/api/static/bootstrap-icons/arrow-90deg-up.svg new file mode 100644 index 0000000..11be0de --- /dev/null +++ b/api/static/bootstrap-icons/arrow-90deg-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-bar-down.svg b/api/static/bootstrap-icons/arrow-bar-down.svg new file mode 100644 index 0000000..1b212d5 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-bar-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-bar-left.svg b/api/static/bootstrap-icons/arrow-bar-left.svg new file mode 100644 index 0000000..621bf2a --- /dev/null +++ b/api/static/bootstrap-icons/arrow-bar-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-bar-right.svg b/api/static/bootstrap-icons/arrow-bar-right.svg new file mode 100644 index 0000000..0210410 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-bar-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-bar-up.svg b/api/static/bootstrap-icons/arrow-bar-up.svg new file mode 100644 index 0000000..d5510da --- /dev/null +++ b/api/static/bootstrap-icons/arrow-bar-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-clockwise.svg b/api/static/bootstrap-icons/arrow-clockwise.svg new file mode 100644 index 0000000..324d5af --- /dev/null +++ b/api/static/bootstrap-icons/arrow-clockwise.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-counterclockwise.svg b/api/static/bootstrap-icons/arrow-counterclockwise.svg new file mode 100644 index 0000000..3d9ff62 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-counterclockwise.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-circle-fill.svg b/api/static/bootstrap-icons/arrow-down-circle-fill.svg new file mode 100644 index 0000000..242eb58 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-circle.svg b/api/static/bootstrap-icons/arrow-down-circle.svg new file mode 100644 index 0000000..42e96b5 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-left-circle-fill.svg b/api/static/bootstrap-icons/arrow-down-left-circle-fill.svg new file mode 100644 index 0000000..e7f4735 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-left-circle.svg b/api/static/bootstrap-icons/arrow-down-left-circle.svg new file mode 100644 index 0000000..f67491f --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-left-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-left-square-fill.svg b/api/static/bootstrap-icons/arrow-down-left-square-fill.svg new file mode 100644 index 0000000..6e03bf2 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-left-square.svg b/api/static/bootstrap-icons/arrow-down-left-square.svg new file mode 100644 index 0000000..1278d39 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-left-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-left.svg b/api/static/bootstrap-icons/arrow-down-left.svg new file mode 100644 index 0000000..4011c77 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-right-circle-fill.svg b/api/static/bootstrap-icons/arrow-down-right-circle-fill.svg new file mode 100644 index 0000000..4ff73b6 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-right-circle.svg b/api/static/bootstrap-icons/arrow-down-right-circle.svg new file mode 100644 index 0000000..054e83f --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-right-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-right-square-fill.svg b/api/static/bootstrap-icons/arrow-down-right-square-fill.svg new file mode 100644 index 0000000..a556e06 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-right-square.svg b/api/static/bootstrap-icons/arrow-down-right-square.svg new file mode 100644 index 0000000..4bfb679 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-right-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-right.svg b/api/static/bootstrap-icons/arrow-down-right.svg new file mode 100644 index 0000000..08aef16 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-short.svg b/api/static/bootstrap-icons/arrow-down-short.svg new file mode 100644 index 0000000..66b7fa1 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-short.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-square-fill.svg b/api/static/bootstrap-icons/arrow-down-square-fill.svg new file mode 100644 index 0000000..c9020dc --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-square.svg b/api/static/bootstrap-icons/arrow-down-square.svg new file mode 100644 index 0000000..c492b71 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down-up.svg b/api/static/bootstrap-icons/arrow-down-up.svg new file mode 100644 index 0000000..04cb3a5 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-down.svg b/api/static/bootstrap-icons/arrow-down.svg new file mode 100644 index 0000000..f66f74b --- /dev/null +++ b/api/static/bootstrap-icons/arrow-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-circle-fill.svg b/api/static/bootstrap-icons/arrow-left-circle-fill.svg new file mode 100644 index 0000000..ae19d97 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-circle.svg b/api/static/bootstrap-icons/arrow-left-circle.svg new file mode 100644 index 0000000..f3246ea --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-right.svg b/api/static/bootstrap-icons/arrow-left-right.svg new file mode 100644 index 0000000..89c4003 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-short.svg b/api/static/bootstrap-icons/arrow-left-short.svg new file mode 100644 index 0000000..abb15dd --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-short.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-square-fill.svg b/api/static/bootstrap-icons/arrow-left-square-fill.svg new file mode 100644 index 0000000..3ee717e --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left-square.svg b/api/static/bootstrap-icons/arrow-left-square.svg new file mode 100644 index 0000000..8f09a48 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-left.svg b/api/static/bootstrap-icons/arrow-left.svg new file mode 100644 index 0000000..587d4fe --- /dev/null +++ b/api/static/bootstrap-icons/arrow-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-repeat.svg b/api/static/bootstrap-icons/arrow-repeat.svg new file mode 100644 index 0000000..b17dba4 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-repeat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-return-left.svg b/api/static/bootstrap-icons/arrow-return-left.svg new file mode 100644 index 0000000..3c13fc4 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-return-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-return-right.svg b/api/static/bootstrap-icons/arrow-return-right.svg new file mode 100644 index 0000000..60d282c --- /dev/null +++ b/api/static/bootstrap-icons/arrow-return-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right-circle-fill.svg b/api/static/bootstrap-icons/arrow-right-circle-fill.svg new file mode 100644 index 0000000..32c21ea --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right-circle.svg b/api/static/bootstrap-icons/arrow-right-circle.svg new file mode 100644 index 0000000..ad7293e --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right-short.svg b/api/static/bootstrap-icons/arrow-right-short.svg new file mode 100644 index 0000000..fa238ff --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right-short.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right-square-fill.svg b/api/static/bootstrap-icons/arrow-right-square-fill.svg new file mode 100644 index 0000000..c7c8eec --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right-square.svg b/api/static/bootstrap-icons/arrow-right-square.svg new file mode 100644 index 0000000..7a4b78b --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-right.svg b/api/static/bootstrap-icons/arrow-right.svg new file mode 100644 index 0000000..2362904 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-through-heart-fill.svg b/api/static/bootstrap-icons/arrow-through-heart-fill.svg new file mode 100644 index 0000000..e98bce1 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-through-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-through-heart.svg b/api/static/bootstrap-icons/arrow-through-heart.svg new file mode 100644 index 0000000..daf397b --- /dev/null +++ b/api/static/bootstrap-icons/arrow-through-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-circle-fill.svg b/api/static/bootstrap-icons/arrow-up-circle-fill.svg new file mode 100644 index 0000000..9e7ef36 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-circle.svg b/api/static/bootstrap-icons/arrow-up-circle.svg new file mode 100644 index 0000000..e18a689 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-left-circle-fill.svg b/api/static/bootstrap-icons/arrow-up-left-circle-fill.svg new file mode 100644 index 0000000..e1e2e97 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-left-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-left-circle.svg b/api/static/bootstrap-icons/arrow-up-left-circle.svg new file mode 100644 index 0000000..3101b65 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-left-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-left-square-fill.svg b/api/static/bootstrap-icons/arrow-up-left-square-fill.svg new file mode 100644 index 0000000..e699865 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-left-square.svg b/api/static/bootstrap-icons/arrow-up-left-square.svg new file mode 100644 index 0000000..4f31190 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-left-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-left.svg b/api/static/bootstrap-icons/arrow-up-left.svg new file mode 100644 index 0000000..938d0d0 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-right-circle-fill.svg b/api/static/bootstrap-icons/arrow-up-right-circle-fill.svg new file mode 100644 index 0000000..0eb9b54 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-right-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-right-circle.svg b/api/static/bootstrap-icons/arrow-up-right-circle.svg new file mode 100644 index 0000000..ed6ae41 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-right-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-right-square-fill.svg b/api/static/bootstrap-icons/arrow-up-right-square-fill.svg new file mode 100644 index 0000000..c2246ec --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-right-square.svg b/api/static/bootstrap-icons/arrow-up-right-square.svg new file mode 100644 index 0000000..b14940f --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-right-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-right.svg b/api/static/bootstrap-icons/arrow-up-right.svg new file mode 100644 index 0000000..7b3794b --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-short.svg b/api/static/bootstrap-icons/arrow-up-short.svg new file mode 100644 index 0000000..543089a --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-short.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-square-fill.svg b/api/static/bootstrap-icons/arrow-up-square-fill.svg new file mode 100644 index 0000000..9d7f65f --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up-square.svg b/api/static/bootstrap-icons/arrow-up-square.svg new file mode 100644 index 0000000..bec15c4 --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrow-up.svg b/api/static/bootstrap-icons/arrow-up.svg new file mode 100644 index 0000000..951521a --- /dev/null +++ b/api/static/bootstrap-icons/arrow-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-angle-contract.svg b/api/static/bootstrap-icons/arrows-angle-contract.svg new file mode 100644 index 0000000..1aa7875 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-angle-contract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-angle-expand.svg b/api/static/bootstrap-icons/arrows-angle-expand.svg new file mode 100644 index 0000000..578d3b6 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-angle-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-collapse-vertical.svg b/api/static/bootstrap-icons/arrows-collapse-vertical.svg new file mode 100644 index 0000000..0fc4477 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-collapse-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-collapse.svg b/api/static/bootstrap-icons/arrows-collapse.svg new file mode 100644 index 0000000..ca055c3 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-collapse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-expand-vertical.svg b/api/static/bootstrap-icons/arrows-expand-vertical.svg new file mode 100644 index 0000000..9dbfac4 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-expand-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-expand.svg b/api/static/bootstrap-icons/arrows-expand.svg new file mode 100644 index 0000000..99eb276 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-fullscreen.svg b/api/static/bootstrap-icons/arrows-fullscreen.svg new file mode 100644 index 0000000..7633e3f --- /dev/null +++ b/api/static/bootstrap-icons/arrows-fullscreen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-move.svg b/api/static/bootstrap-icons/arrows-move.svg new file mode 100644 index 0000000..ef2b885 --- /dev/null +++ b/api/static/bootstrap-icons/arrows-move.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows-vertical.svg b/api/static/bootstrap-icons/arrows-vertical.svg new file mode 100644 index 0000000..22f60fd --- /dev/null +++ b/api/static/bootstrap-icons/arrows-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/arrows.svg b/api/static/bootstrap-icons/arrows.svg new file mode 100644 index 0000000..a6bd3d7 --- /dev/null +++ b/api/static/bootstrap-icons/arrows.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/aspect-ratio-fill.svg b/api/static/bootstrap-icons/aspect-ratio-fill.svg new file mode 100644 index 0000000..6d6cb8d --- /dev/null +++ b/api/static/bootstrap-icons/aspect-ratio-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/aspect-ratio.svg b/api/static/bootstrap-icons/aspect-ratio.svg new file mode 100644 index 0000000..ee634b0 --- /dev/null +++ b/api/static/bootstrap-icons/aspect-ratio.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/asterisk.svg b/api/static/bootstrap-icons/asterisk.svg new file mode 100644 index 0000000..fbc13b7 --- /dev/null +++ b/api/static/bootstrap-icons/asterisk.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/at.svg b/api/static/bootstrap-icons/at.svg new file mode 100644 index 0000000..3cab29e --- /dev/null +++ b/api/static/bootstrap-icons/at.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/award-fill.svg b/api/static/bootstrap-icons/award-fill.svg new file mode 100644 index 0000000..f996790 --- /dev/null +++ b/api/static/bootstrap-icons/award-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/award.svg b/api/static/bootstrap-icons/award.svg new file mode 100644 index 0000000..67c760b --- /dev/null +++ b/api/static/bootstrap-icons/award.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/back.svg b/api/static/bootstrap-icons/back.svg new file mode 100644 index 0000000..9f55340 --- /dev/null +++ b/api/static/bootstrap-icons/back.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack-fill.svg b/api/static/bootstrap-icons/backpack-fill.svg new file mode 100644 index 0000000..ec737a9 --- /dev/null +++ b/api/static/bootstrap-icons/backpack-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack.svg b/api/static/bootstrap-icons/backpack.svg new file mode 100644 index 0000000..819aa29 --- /dev/null +++ b/api/static/bootstrap-icons/backpack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack2-fill.svg b/api/static/bootstrap-icons/backpack2-fill.svg new file mode 100644 index 0000000..3c9b4da --- /dev/null +++ b/api/static/bootstrap-icons/backpack2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack2.svg b/api/static/bootstrap-icons/backpack2.svg new file mode 100644 index 0000000..e0e4fe5 --- /dev/null +++ b/api/static/bootstrap-icons/backpack2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack3-fill.svg b/api/static/bootstrap-icons/backpack3-fill.svg new file mode 100644 index 0000000..4583c4f --- /dev/null +++ b/api/static/bootstrap-icons/backpack3-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack3.svg b/api/static/bootstrap-icons/backpack3.svg new file mode 100644 index 0000000..819f8df --- /dev/null +++ b/api/static/bootstrap-icons/backpack3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack4-fill.svg b/api/static/bootstrap-icons/backpack4-fill.svg new file mode 100644 index 0000000..a3bba3a --- /dev/null +++ b/api/static/bootstrap-icons/backpack4-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backpack4.svg b/api/static/bootstrap-icons/backpack4.svg new file mode 100644 index 0000000..140a12d --- /dev/null +++ b/api/static/bootstrap-icons/backpack4.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backspace-fill.svg b/api/static/bootstrap-icons/backspace-fill.svg new file mode 100644 index 0000000..0787578 --- /dev/null +++ b/api/static/bootstrap-icons/backspace-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backspace-reverse-fill.svg b/api/static/bootstrap-icons/backspace-reverse-fill.svg new file mode 100644 index 0000000..41c8dbb --- /dev/null +++ b/api/static/bootstrap-icons/backspace-reverse-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backspace-reverse.svg b/api/static/bootstrap-icons/backspace-reverse.svg new file mode 100644 index 0000000..7b3fafd --- /dev/null +++ b/api/static/bootstrap-icons/backspace-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/backspace.svg b/api/static/bootstrap-icons/backspace.svg new file mode 100644 index 0000000..39b688f --- /dev/null +++ b/api/static/bootstrap-icons/backspace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-3d-fill.svg b/api/static/bootstrap-icons/badge-3d-fill.svg new file mode 100644 index 0000000..750598c --- /dev/null +++ b/api/static/bootstrap-icons/badge-3d-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-3d.svg b/api/static/bootstrap-icons/badge-3d.svg new file mode 100644 index 0000000..b3153f2 --- /dev/null +++ b/api/static/bootstrap-icons/badge-3d.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-4k-fill.svg b/api/static/bootstrap-icons/badge-4k-fill.svg new file mode 100644 index 0000000..72f34b9 --- /dev/null +++ b/api/static/bootstrap-icons/badge-4k-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-4k.svg b/api/static/bootstrap-icons/badge-4k.svg new file mode 100644 index 0000000..3dfc9b1 --- /dev/null +++ b/api/static/bootstrap-icons/badge-4k.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-8k-fill.svg b/api/static/bootstrap-icons/badge-8k-fill.svg new file mode 100644 index 0000000..4bd9b80 --- /dev/null +++ b/api/static/bootstrap-icons/badge-8k-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-8k.svg b/api/static/bootstrap-icons/badge-8k.svg new file mode 100644 index 0000000..d11f82d --- /dev/null +++ b/api/static/bootstrap-icons/badge-8k.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-ad-fill.svg b/api/static/bootstrap-icons/badge-ad-fill.svg new file mode 100644 index 0000000..023f210 --- /dev/null +++ b/api/static/bootstrap-icons/badge-ad-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-ad.svg b/api/static/bootstrap-icons/badge-ad.svg new file mode 100644 index 0000000..616ad74 --- /dev/null +++ b/api/static/bootstrap-icons/badge-ad.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-ar-fill.svg b/api/static/bootstrap-icons/badge-ar-fill.svg new file mode 100644 index 0000000..48aee0f --- /dev/null +++ b/api/static/bootstrap-icons/badge-ar-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-ar.svg b/api/static/bootstrap-icons/badge-ar.svg new file mode 100644 index 0000000..0fc1975 --- /dev/null +++ b/api/static/bootstrap-icons/badge-ar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-cc-fill.svg b/api/static/bootstrap-icons/badge-cc-fill.svg new file mode 100644 index 0000000..0f3d1f9 --- /dev/null +++ b/api/static/bootstrap-icons/badge-cc-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-cc.svg b/api/static/bootstrap-icons/badge-cc.svg new file mode 100644 index 0000000..d5f42e1 --- /dev/null +++ b/api/static/bootstrap-icons/badge-cc.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-hd-fill.svg b/api/static/bootstrap-icons/badge-hd-fill.svg new file mode 100644 index 0000000..96f0875 --- /dev/null +++ b/api/static/bootstrap-icons/badge-hd-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-hd.svg b/api/static/bootstrap-icons/badge-hd.svg new file mode 100644 index 0000000..5689042 --- /dev/null +++ b/api/static/bootstrap-icons/badge-hd.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-sd-fill.svg b/api/static/bootstrap-icons/badge-sd-fill.svg new file mode 100644 index 0000000..a37154a --- /dev/null +++ b/api/static/bootstrap-icons/badge-sd-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-sd.svg b/api/static/bootstrap-icons/badge-sd.svg new file mode 100644 index 0000000..df8d029 --- /dev/null +++ b/api/static/bootstrap-icons/badge-sd.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-tm-fill.svg b/api/static/bootstrap-icons/badge-tm-fill.svg new file mode 100644 index 0000000..632b569 --- /dev/null +++ b/api/static/bootstrap-icons/badge-tm-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-tm.svg b/api/static/bootstrap-icons/badge-tm.svg new file mode 100644 index 0000000..33de5c2 --- /dev/null +++ b/api/static/bootstrap-icons/badge-tm.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-vo-fill.svg b/api/static/bootstrap-icons/badge-vo-fill.svg new file mode 100644 index 0000000..1d27b07 --- /dev/null +++ b/api/static/bootstrap-icons/badge-vo-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-vo.svg b/api/static/bootstrap-icons/badge-vo.svg new file mode 100644 index 0000000..f5e2ece --- /dev/null +++ b/api/static/bootstrap-icons/badge-vo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-vr-fill.svg b/api/static/bootstrap-icons/badge-vr-fill.svg new file mode 100644 index 0000000..e614af6 --- /dev/null +++ b/api/static/bootstrap-icons/badge-vr-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-vr.svg b/api/static/bootstrap-icons/badge-vr.svg new file mode 100644 index 0000000..c1c73dc --- /dev/null +++ b/api/static/bootstrap-icons/badge-vr.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-wc-fill.svg b/api/static/bootstrap-icons/badge-wc-fill.svg new file mode 100644 index 0000000..d16436a --- /dev/null +++ b/api/static/bootstrap-icons/badge-wc-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/badge-wc.svg b/api/static/bootstrap-icons/badge-wc.svg new file mode 100644 index 0000000..ea459ba --- /dev/null +++ b/api/static/bootstrap-icons/badge-wc.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-check-fill.svg b/api/static/bootstrap-icons/bag-check-fill.svg new file mode 100644 index 0000000..9976d5c --- /dev/null +++ b/api/static/bootstrap-icons/bag-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-check.svg b/api/static/bootstrap-icons/bag-check.svg new file mode 100644 index 0000000..a4e3278 --- /dev/null +++ b/api/static/bootstrap-icons/bag-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-dash-fill.svg b/api/static/bootstrap-icons/bag-dash-fill.svg new file mode 100644 index 0000000..ccb5589 --- /dev/null +++ b/api/static/bootstrap-icons/bag-dash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-dash.svg b/api/static/bootstrap-icons/bag-dash.svg new file mode 100644 index 0000000..0997f33 --- /dev/null +++ b/api/static/bootstrap-icons/bag-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-fill.svg b/api/static/bootstrap-icons/bag-fill.svg new file mode 100644 index 0000000..812fcfc --- /dev/null +++ b/api/static/bootstrap-icons/bag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-heart-fill.svg b/api/static/bootstrap-icons/bag-heart-fill.svg new file mode 100644 index 0000000..4938b83 --- /dev/null +++ b/api/static/bootstrap-icons/bag-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-heart.svg b/api/static/bootstrap-icons/bag-heart.svg new file mode 100644 index 0000000..e7b906a --- /dev/null +++ b/api/static/bootstrap-icons/bag-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-plus-fill.svg b/api/static/bootstrap-icons/bag-plus-fill.svg new file mode 100644 index 0000000..b98f6b2 --- /dev/null +++ b/api/static/bootstrap-icons/bag-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-plus.svg b/api/static/bootstrap-icons/bag-plus.svg new file mode 100644 index 0000000..0d7ddc6 --- /dev/null +++ b/api/static/bootstrap-icons/bag-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-x-fill.svg b/api/static/bootstrap-icons/bag-x-fill.svg new file mode 100644 index 0000000..cbe77df --- /dev/null +++ b/api/static/bootstrap-icons/bag-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag-x.svg b/api/static/bootstrap-icons/bag-x.svg new file mode 100644 index 0000000..4f38008 --- /dev/null +++ b/api/static/bootstrap-icons/bag-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bag.svg b/api/static/bootstrap-icons/bag.svg new file mode 100644 index 0000000..acd0287 --- /dev/null +++ b/api/static/bootstrap-icons/bag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/balloon-fill.svg b/api/static/bootstrap-icons/balloon-fill.svg new file mode 100644 index 0000000..2d57e2d --- /dev/null +++ b/api/static/bootstrap-icons/balloon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/balloon-heart-fill.svg b/api/static/bootstrap-icons/balloon-heart-fill.svg new file mode 100644 index 0000000..ab17865 --- /dev/null +++ b/api/static/bootstrap-icons/balloon-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/balloon-heart.svg b/api/static/bootstrap-icons/balloon-heart.svg new file mode 100644 index 0000000..0e056cb --- /dev/null +++ b/api/static/bootstrap-icons/balloon-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/balloon.svg b/api/static/bootstrap-icons/balloon.svg new file mode 100644 index 0000000..6906cb3 --- /dev/null +++ b/api/static/bootstrap-icons/balloon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ban-fill.svg b/api/static/bootstrap-icons/ban-fill.svg new file mode 100644 index 0000000..0bb7df0 --- /dev/null +++ b/api/static/bootstrap-icons/ban-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ban.svg b/api/static/bootstrap-icons/ban.svg new file mode 100644 index 0000000..5acfd41 --- /dev/null +++ b/api/static/bootstrap-icons/ban.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bandaid-fill.svg b/api/static/bootstrap-icons/bandaid-fill.svg new file mode 100644 index 0000000..052ad73 --- /dev/null +++ b/api/static/bootstrap-icons/bandaid-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bandaid.svg b/api/static/bootstrap-icons/bandaid.svg new file mode 100644 index 0000000..e09850e --- /dev/null +++ b/api/static/bootstrap-icons/bandaid.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bank.svg b/api/static/bootstrap-icons/bank.svg new file mode 100644 index 0000000..2e7f4f0 --- /dev/null +++ b/api/static/bootstrap-icons/bank.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bank2.svg b/api/static/bootstrap-icons/bank2.svg new file mode 100644 index 0000000..acc8ef9 --- /dev/null +++ b/api/static/bootstrap-icons/bank2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bar-chart-fill.svg b/api/static/bootstrap-icons/bar-chart-fill.svg new file mode 100644 index 0000000..7e4ebee --- /dev/null +++ b/api/static/bootstrap-icons/bar-chart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bar-chart-line-fill.svg b/api/static/bootstrap-icons/bar-chart-line-fill.svg new file mode 100644 index 0000000..6808e6f --- /dev/null +++ b/api/static/bootstrap-icons/bar-chart-line-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bar-chart-line.svg b/api/static/bootstrap-icons/bar-chart-line.svg new file mode 100644 index 0000000..567a808 --- /dev/null +++ b/api/static/bootstrap-icons/bar-chart-line.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bar-chart-steps.svg b/api/static/bootstrap-icons/bar-chart-steps.svg new file mode 100644 index 0000000..346e97b --- /dev/null +++ b/api/static/bootstrap-icons/bar-chart-steps.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bar-chart.svg b/api/static/bootstrap-icons/bar-chart.svg new file mode 100644 index 0000000..8e57c80 --- /dev/null +++ b/api/static/bootstrap-icons/bar-chart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket-fill.svg b/api/static/bootstrap-icons/basket-fill.svg new file mode 100644 index 0000000..b2e01f5 --- /dev/null +++ b/api/static/bootstrap-icons/basket-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket.svg b/api/static/bootstrap-icons/basket.svg new file mode 100644 index 0000000..418a5f9 --- /dev/null +++ b/api/static/bootstrap-icons/basket.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket2-fill.svg b/api/static/bootstrap-icons/basket2-fill.svg new file mode 100644 index 0000000..03c7079 --- /dev/null +++ b/api/static/bootstrap-icons/basket2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket2.svg b/api/static/bootstrap-icons/basket2.svg new file mode 100644 index 0000000..9b78be2 --- /dev/null +++ b/api/static/bootstrap-icons/basket2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket3-fill.svg b/api/static/bootstrap-icons/basket3-fill.svg new file mode 100644 index 0000000..e26f0ee --- /dev/null +++ b/api/static/bootstrap-icons/basket3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/basket3.svg b/api/static/bootstrap-icons/basket3.svg new file mode 100644 index 0000000..57fa6a0 --- /dev/null +++ b/api/static/bootstrap-icons/basket3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/battery-charging.svg b/api/static/bootstrap-icons/battery-charging.svg new file mode 100644 index 0000000..4ae74d2 --- /dev/null +++ b/api/static/bootstrap-icons/battery-charging.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/battery-full.svg b/api/static/bootstrap-icons/battery-full.svg new file mode 100644 index 0000000..bff6a3f --- /dev/null +++ b/api/static/bootstrap-icons/battery-full.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/battery-half.svg b/api/static/bootstrap-icons/battery-half.svg new file mode 100644 index 0000000..de57848 --- /dev/null +++ b/api/static/bootstrap-icons/battery-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/battery.svg b/api/static/bootstrap-icons/battery.svg new file mode 100644 index 0000000..2bacfa8 --- /dev/null +++ b/api/static/bootstrap-icons/battery.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/behance.svg b/api/static/bootstrap-icons/behance.svg new file mode 100644 index 0000000..805f142 --- /dev/null +++ b/api/static/bootstrap-icons/behance.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bell-fill.svg b/api/static/bootstrap-icons/bell-fill.svg new file mode 100644 index 0000000..a537c3a --- /dev/null +++ b/api/static/bootstrap-icons/bell-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bell-slash-fill.svg b/api/static/bootstrap-icons/bell-slash-fill.svg new file mode 100644 index 0000000..534dd13 --- /dev/null +++ b/api/static/bootstrap-icons/bell-slash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bell-slash.svg b/api/static/bootstrap-icons/bell-slash.svg new file mode 100644 index 0000000..7817e2b --- /dev/null +++ b/api/static/bootstrap-icons/bell-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bell.svg b/api/static/bootstrap-icons/bell.svg new file mode 100644 index 0000000..a71eba3 --- /dev/null +++ b/api/static/bootstrap-icons/bell.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bezier.svg b/api/static/bootstrap-icons/bezier.svg new file mode 100644 index 0000000..075b721 --- /dev/null +++ b/api/static/bootstrap-icons/bezier.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bezier2.svg b/api/static/bootstrap-icons/bezier2.svg new file mode 100644 index 0000000..8a59238 --- /dev/null +++ b/api/static/bootstrap-icons/bezier2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bicycle.svg b/api/static/bootstrap-icons/bicycle.svg new file mode 100644 index 0000000..3956545 --- /dev/null +++ b/api/static/bootstrap-icons/bicycle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bing.svg b/api/static/bootstrap-icons/bing.svg new file mode 100644 index 0000000..9368917 --- /dev/null +++ b/api/static/bootstrap-icons/bing.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/binoculars-fill.svg b/api/static/bootstrap-icons/binoculars-fill.svg new file mode 100644 index 0000000..d6d6dc0 --- /dev/null +++ b/api/static/bootstrap-icons/binoculars-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/binoculars.svg b/api/static/bootstrap-icons/binoculars.svg new file mode 100644 index 0000000..015d622 --- /dev/null +++ b/api/static/bootstrap-icons/binoculars.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/blockquote-left.svg b/api/static/bootstrap-icons/blockquote-left.svg new file mode 100644 index 0000000..f8b6b2d --- /dev/null +++ b/api/static/bootstrap-icons/blockquote-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/blockquote-right.svg b/api/static/bootstrap-icons/blockquote-right.svg new file mode 100644 index 0000000..afc81c9 --- /dev/null +++ b/api/static/bootstrap-icons/blockquote-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bluetooth.svg b/api/static/bootstrap-icons/bluetooth.svg new file mode 100644 index 0000000..8726e22 --- /dev/null +++ b/api/static/bootstrap-icons/bluetooth.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/body-text.svg b/api/static/bootstrap-icons/body-text.svg new file mode 100644 index 0000000..fd5e435 --- /dev/null +++ b/api/static/bootstrap-icons/body-text.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/book-fill.svg b/api/static/bootstrap-icons/book-fill.svg new file mode 100644 index 0000000..ddb0000 --- /dev/null +++ b/api/static/bootstrap-icons/book-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/book-half.svg b/api/static/bootstrap-icons/book-half.svg new file mode 100644 index 0000000..8eabe81 --- /dev/null +++ b/api/static/bootstrap-icons/book-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/book.svg b/api/static/bootstrap-icons/book.svg new file mode 100644 index 0000000..302acf0 --- /dev/null +++ b/api/static/bootstrap-icons/book.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-check-fill.svg b/api/static/bootstrap-icons/bookmark-check-fill.svg new file mode 100644 index 0000000..325fbde --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-check.svg b/api/static/bootstrap-icons/bookmark-check.svg new file mode 100644 index 0000000..f4c9149 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-dash-fill.svg b/api/static/bootstrap-icons/bookmark-dash-fill.svg new file mode 100644 index 0000000..dbf9cc1 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-dash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-dash.svg b/api/static/bootstrap-icons/bookmark-dash.svg new file mode 100644 index 0000000..115b448 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-fill.svg b/api/static/bootstrap-icons/bookmark-fill.svg new file mode 100644 index 0000000..3c237a9 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-heart-fill.svg b/api/static/bootstrap-icons/bookmark-heart-fill.svg new file mode 100644 index 0000000..6647b7c --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-heart.svg b/api/static/bootstrap-icons/bookmark-heart.svg new file mode 100644 index 0000000..c368f5d --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-plus-fill.svg b/api/static/bootstrap-icons/bookmark-plus-fill.svg new file mode 100644 index 0000000..41e0733 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-plus.svg b/api/static/bootstrap-icons/bookmark-plus.svg new file mode 100644 index 0000000..37b137c --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-star-fill.svg b/api/static/bootstrap-icons/bookmark-star-fill.svg new file mode 100644 index 0000000..89fd335 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-star-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-star.svg b/api/static/bootstrap-icons/bookmark-star.svg new file mode 100644 index 0000000..2f792de --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-star.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-x-fill.svg b/api/static/bootstrap-icons/bookmark-x-fill.svg new file mode 100644 index 0000000..acac0cf --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark-x.svg b/api/static/bootstrap-icons/bookmark-x.svg new file mode 100644 index 0000000..eb85c76 --- /dev/null +++ b/api/static/bootstrap-icons/bookmark-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmark.svg b/api/static/bootstrap-icons/bookmark.svg new file mode 100644 index 0000000..a21b14b --- /dev/null +++ b/api/static/bootstrap-icons/bookmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmarks-fill.svg b/api/static/bootstrap-icons/bookmarks-fill.svg new file mode 100644 index 0000000..abf5800 --- /dev/null +++ b/api/static/bootstrap-icons/bookmarks-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookmarks.svg b/api/static/bootstrap-icons/bookmarks.svg new file mode 100644 index 0000000..ceb92bb --- /dev/null +++ b/api/static/bootstrap-icons/bookmarks.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bookshelf.svg b/api/static/bootstrap-icons/bookshelf.svg new file mode 100644 index 0000000..7f435d5 --- /dev/null +++ b/api/static/bootstrap-icons/bookshelf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/boombox-fill.svg b/api/static/bootstrap-icons/boombox-fill.svg new file mode 100644 index 0000000..299e95e --- /dev/null +++ b/api/static/bootstrap-icons/boombox-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/boombox.svg b/api/static/bootstrap-icons/boombox.svg new file mode 100644 index 0000000..35af807 --- /dev/null +++ b/api/static/bootstrap-icons/boombox.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bootstrap-fill.svg b/api/static/bootstrap-icons/bootstrap-fill.svg new file mode 100644 index 0000000..21253b0 --- /dev/null +++ b/api/static/bootstrap-icons/bootstrap-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bootstrap-reboot.svg b/api/static/bootstrap-icons/bootstrap-reboot.svg new file mode 100644 index 0000000..8d21030 --- /dev/null +++ b/api/static/bootstrap-icons/bootstrap-reboot.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bootstrap.svg b/api/static/bootstrap-icons/bootstrap.svg new file mode 100644 index 0000000..089e31f --- /dev/null +++ b/api/static/bootstrap-icons/bootstrap.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-all.svg b/api/static/bootstrap-icons/border-all.svg new file mode 100644 index 0000000..19128f2 --- /dev/null +++ b/api/static/bootstrap-icons/border-all.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-bottom.svg b/api/static/bootstrap-icons/border-bottom.svg new file mode 100644 index 0000000..84edcca --- /dev/null +++ b/api/static/bootstrap-icons/border-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-center.svg b/api/static/bootstrap-icons/border-center.svg new file mode 100644 index 0000000..a9cf9c4 --- /dev/null +++ b/api/static/bootstrap-icons/border-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-inner.svg b/api/static/bootstrap-icons/border-inner.svg new file mode 100644 index 0000000..6369007 --- /dev/null +++ b/api/static/bootstrap-icons/border-inner.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-left.svg b/api/static/bootstrap-icons/border-left.svg new file mode 100644 index 0000000..483c804 --- /dev/null +++ b/api/static/bootstrap-icons/border-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-middle.svg b/api/static/bootstrap-icons/border-middle.svg new file mode 100644 index 0000000..c9de407 --- /dev/null +++ b/api/static/bootstrap-icons/border-middle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-outer.svg b/api/static/bootstrap-icons/border-outer.svg new file mode 100644 index 0000000..4791bcb --- /dev/null +++ b/api/static/bootstrap-icons/border-outer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-right.svg b/api/static/bootstrap-icons/border-right.svg new file mode 100644 index 0000000..23e09dc --- /dev/null +++ b/api/static/bootstrap-icons/border-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-style.svg b/api/static/bootstrap-icons/border-style.svg new file mode 100644 index 0000000..cec3fef --- /dev/null +++ b/api/static/bootstrap-icons/border-style.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-top.svg b/api/static/bootstrap-icons/border-top.svg new file mode 100644 index 0000000..77189df --- /dev/null +++ b/api/static/bootstrap-icons/border-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border-width.svg b/api/static/bootstrap-icons/border-width.svg new file mode 100644 index 0000000..6175326 --- /dev/null +++ b/api/static/bootstrap-icons/border-width.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/border.svg b/api/static/bootstrap-icons/border.svg new file mode 100644 index 0000000..a6390f9 --- /dev/null +++ b/api/static/bootstrap-icons/border.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bounding-box-circles.svg b/api/static/bootstrap-icons/bounding-box-circles.svg new file mode 100644 index 0000000..02113ba --- /dev/null +++ b/api/static/bootstrap-icons/bounding-box-circles.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bounding-box.svg b/api/static/bootstrap-icons/bounding-box.svg new file mode 100644 index 0000000..e8be147 --- /dev/null +++ b/api/static/bootstrap-icons/bounding-box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-down-left.svg b/api/static/bootstrap-icons/box-arrow-down-left.svg new file mode 100644 index 0000000..20ffed9 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-down-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-down-right.svg b/api/static/bootstrap-icons/box-arrow-down-right.svg new file mode 100644 index 0000000..33780ef --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-down-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-down.svg b/api/static/bootstrap-icons/box-arrow-down.svg new file mode 100644 index 0000000..bf33d51 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-down-left.svg b/api/static/bootstrap-icons/box-arrow-in-down-left.svg new file mode 100644 index 0000000..fe3c579 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-down-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-down-right.svg b/api/static/bootstrap-icons/box-arrow-in-down-right.svg new file mode 100644 index 0000000..07082eb --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-down-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-down.svg b/api/static/bootstrap-icons/box-arrow-in-down.svg new file mode 100644 index 0000000..3b185d6 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-left.svg b/api/static/bootstrap-icons/box-arrow-in-left.svg new file mode 100644 index 0000000..1e1bc9a --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-right.svg b/api/static/bootstrap-icons/box-arrow-in-right.svg new file mode 100644 index 0000000..5d78def --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-up-left.svg b/api/static/bootstrap-icons/box-arrow-in-up-left.svg new file mode 100644 index 0000000..8401c43 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-up-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-up-right.svg b/api/static/bootstrap-icons/box-arrow-in-up-right.svg new file mode 100644 index 0000000..8a95e00 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-up-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-in-up.svg b/api/static/bootstrap-icons/box-arrow-in-up.svg new file mode 100644 index 0000000..6197bc3 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-in-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-left.svg b/api/static/bootstrap-icons/box-arrow-left.svg new file mode 100644 index 0000000..5d142b4 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-right.svg b/api/static/bootstrap-icons/box-arrow-right.svg new file mode 100644 index 0000000..682e033 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-up-left.svg b/api/static/bootstrap-icons/box-arrow-up-left.svg new file mode 100644 index 0000000..7dec12d --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-up-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-up-right.svg b/api/static/bootstrap-icons/box-arrow-up-right.svg new file mode 100644 index 0000000..03f68d5 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-up-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-arrow-up.svg b/api/static/bootstrap-icons/box-arrow-up.svg new file mode 100644 index 0000000..8f76892 --- /dev/null +++ b/api/static/bootstrap-icons/box-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-fill.svg b/api/static/bootstrap-icons/box-fill.svg new file mode 100644 index 0000000..b1fe407 --- /dev/null +++ b/api/static/bootstrap-icons/box-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-seam-fill.svg b/api/static/bootstrap-icons/box-seam-fill.svg new file mode 100644 index 0000000..b9283c7 --- /dev/null +++ b/api/static/bootstrap-icons/box-seam-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box-seam.svg b/api/static/bootstrap-icons/box-seam.svg new file mode 100644 index 0000000..ec2cb8a --- /dev/null +++ b/api/static/bootstrap-icons/box-seam.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box.svg b/api/static/bootstrap-icons/box.svg new file mode 100644 index 0000000..01b34c7 --- /dev/null +++ b/api/static/bootstrap-icons/box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box2-fill.svg b/api/static/bootstrap-icons/box2-fill.svg new file mode 100644 index 0000000..78e7583 --- /dev/null +++ b/api/static/bootstrap-icons/box2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box2-heart-fill.svg b/api/static/bootstrap-icons/box2-heart-fill.svg new file mode 100644 index 0000000..49da486 --- /dev/null +++ b/api/static/bootstrap-icons/box2-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box2-heart.svg b/api/static/bootstrap-icons/box2-heart.svg new file mode 100644 index 0000000..a5e413a --- /dev/null +++ b/api/static/bootstrap-icons/box2-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/box2.svg b/api/static/bootstrap-icons/box2.svg new file mode 100644 index 0000000..bfeb554 --- /dev/null +++ b/api/static/bootstrap-icons/box2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/boxes.svg b/api/static/bootstrap-icons/boxes.svg new file mode 100644 index 0000000..af0d1d0 --- /dev/null +++ b/api/static/bootstrap-icons/boxes.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/braces-asterisk.svg b/api/static/bootstrap-icons/braces-asterisk.svg new file mode 100644 index 0000000..e159e9c --- /dev/null +++ b/api/static/bootstrap-icons/braces-asterisk.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/braces.svg b/api/static/bootstrap-icons/braces.svg new file mode 100644 index 0000000..d345d3b --- /dev/null +++ b/api/static/bootstrap-icons/braces.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bricks.svg b/api/static/bootstrap-icons/bricks.svg new file mode 100644 index 0000000..23c2c36 --- /dev/null +++ b/api/static/bootstrap-icons/bricks.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/briefcase-fill.svg b/api/static/bootstrap-icons/briefcase-fill.svg new file mode 100644 index 0000000..b37f2be --- /dev/null +++ b/api/static/bootstrap-icons/briefcase-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/briefcase.svg b/api/static/bootstrap-icons/briefcase.svg new file mode 100644 index 0000000..712998d --- /dev/null +++ b/api/static/bootstrap-icons/briefcase.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-alt-high-fill.svg b/api/static/bootstrap-icons/brightness-alt-high-fill.svg new file mode 100644 index 0000000..06f7d0c --- /dev/null +++ b/api/static/bootstrap-icons/brightness-alt-high-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-alt-high.svg b/api/static/bootstrap-icons/brightness-alt-high.svg new file mode 100644 index 0000000..e519ca7 --- /dev/null +++ b/api/static/bootstrap-icons/brightness-alt-high.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-alt-low-fill.svg b/api/static/bootstrap-icons/brightness-alt-low-fill.svg new file mode 100644 index 0000000..ab30837 --- /dev/null +++ b/api/static/bootstrap-icons/brightness-alt-low-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-alt-low.svg b/api/static/bootstrap-icons/brightness-alt-low.svg new file mode 100644 index 0000000..58bf6ed --- /dev/null +++ b/api/static/bootstrap-icons/brightness-alt-low.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-high-fill.svg b/api/static/bootstrap-icons/brightness-high-fill.svg new file mode 100644 index 0000000..b759b04 --- /dev/null +++ b/api/static/bootstrap-icons/brightness-high-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-high.svg b/api/static/bootstrap-icons/brightness-high.svg new file mode 100644 index 0000000..f00d050 --- /dev/null +++ b/api/static/bootstrap-icons/brightness-high.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-low-fill.svg b/api/static/bootstrap-icons/brightness-low-fill.svg new file mode 100644 index 0000000..fc55680 --- /dev/null +++ b/api/static/bootstrap-icons/brightness-low-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brightness-low.svg b/api/static/bootstrap-icons/brightness-low.svg new file mode 100644 index 0000000..317918e --- /dev/null +++ b/api/static/bootstrap-icons/brightness-low.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brilliance.svg b/api/static/bootstrap-icons/brilliance.svg new file mode 100644 index 0000000..f6b5da6 --- /dev/null +++ b/api/static/bootstrap-icons/brilliance.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/broadcast-pin.svg b/api/static/bootstrap-icons/broadcast-pin.svg new file mode 100644 index 0000000..9c5f4a6 --- /dev/null +++ b/api/static/bootstrap-icons/broadcast-pin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/broadcast.svg b/api/static/bootstrap-icons/broadcast.svg new file mode 100644 index 0000000..b420a0b --- /dev/null +++ b/api/static/bootstrap-icons/broadcast.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/browser-chrome.svg b/api/static/bootstrap-icons/browser-chrome.svg new file mode 100644 index 0000000..63c344b --- /dev/null +++ b/api/static/bootstrap-icons/browser-chrome.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/browser-edge.svg b/api/static/bootstrap-icons/browser-edge.svg new file mode 100644 index 0000000..ed1dc7c --- /dev/null +++ b/api/static/bootstrap-icons/browser-edge.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/browser-firefox.svg b/api/static/bootstrap-icons/browser-firefox.svg new file mode 100644 index 0000000..ce0eabb --- /dev/null +++ b/api/static/bootstrap-icons/browser-firefox.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/browser-safari.svg b/api/static/bootstrap-icons/browser-safari.svg new file mode 100644 index 0000000..8c01296 --- /dev/null +++ b/api/static/bootstrap-icons/browser-safari.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brush-fill.svg b/api/static/bootstrap-icons/brush-fill.svg new file mode 100644 index 0000000..db77615 --- /dev/null +++ b/api/static/bootstrap-icons/brush-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/brush.svg b/api/static/bootstrap-icons/brush.svg new file mode 100644 index 0000000..86d88ef --- /dev/null +++ b/api/static/bootstrap-icons/brush.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bucket-fill.svg b/api/static/bootstrap-icons/bucket-fill.svg new file mode 100644 index 0000000..c0c95ab --- /dev/null +++ b/api/static/bootstrap-icons/bucket-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bucket.svg b/api/static/bootstrap-icons/bucket.svg new file mode 100644 index 0000000..252e75b --- /dev/null +++ b/api/static/bootstrap-icons/bucket.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bug-fill.svg b/api/static/bootstrap-icons/bug-fill.svg new file mode 100644 index 0000000..a36ff37 --- /dev/null +++ b/api/static/bootstrap-icons/bug-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bug.svg b/api/static/bootstrap-icons/bug.svg new file mode 100644 index 0000000..296ef32 --- /dev/null +++ b/api/static/bootstrap-icons/bug.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-add.svg b/api/static/bootstrap-icons/building-add.svg new file mode 100644 index 0000000..c2c3670 --- /dev/null +++ b/api/static/bootstrap-icons/building-add.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-check.svg b/api/static/bootstrap-icons/building-check.svg new file mode 100644 index 0000000..95c3c54 --- /dev/null +++ b/api/static/bootstrap-icons/building-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-dash.svg b/api/static/bootstrap-icons/building-dash.svg new file mode 100644 index 0000000..1e1634b --- /dev/null +++ b/api/static/bootstrap-icons/building-dash.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-down.svg b/api/static/bootstrap-icons/building-down.svg new file mode 100644 index 0000000..8538cf6 --- /dev/null +++ b/api/static/bootstrap-icons/building-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-exclamation.svg b/api/static/bootstrap-icons/building-exclamation.svg new file mode 100644 index 0000000..ebfc709 --- /dev/null +++ b/api/static/bootstrap-icons/building-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-add.svg b/api/static/bootstrap-icons/building-fill-add.svg new file mode 100644 index 0000000..6bbe567 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-check.svg b/api/static/bootstrap-icons/building-fill-check.svg new file mode 100644 index 0000000..c4f1881 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-dash.svg b/api/static/bootstrap-icons/building-fill-dash.svg new file mode 100644 index 0000000..1ce28a6 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-down.svg b/api/static/bootstrap-icons/building-fill-down.svg new file mode 100644 index 0000000..b1c55cd --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-exclamation.svg b/api/static/bootstrap-icons/building-fill-exclamation.svg new file mode 100644 index 0000000..3491f24 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-gear.svg b/api/static/bootstrap-icons/building-fill-gear.svg new file mode 100644 index 0000000..747a1bc --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-lock.svg b/api/static/bootstrap-icons/building-fill-lock.svg new file mode 100644 index 0000000..be73a41 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-slash.svg b/api/static/bootstrap-icons/building-fill-slash.svg new file mode 100644 index 0000000..d867309 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-up.svg b/api/static/bootstrap-icons/building-fill-up.svg new file mode 100644 index 0000000..d8cc4bc --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill-x.svg b/api/static/bootstrap-icons/building-fill-x.svg new file mode 100644 index 0000000..236aae3 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-fill.svg b/api/static/bootstrap-icons/building-fill.svg new file mode 100644 index 0000000..6924b41 --- /dev/null +++ b/api/static/bootstrap-icons/building-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-gear.svg b/api/static/bootstrap-icons/building-gear.svg new file mode 100644 index 0000000..eabe790 --- /dev/null +++ b/api/static/bootstrap-icons/building-gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-lock.svg b/api/static/bootstrap-icons/building-lock.svg new file mode 100644 index 0000000..591a2e9 --- /dev/null +++ b/api/static/bootstrap-icons/building-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-slash.svg b/api/static/bootstrap-icons/building-slash.svg new file mode 100644 index 0000000..c3f7787 --- /dev/null +++ b/api/static/bootstrap-icons/building-slash.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-up.svg b/api/static/bootstrap-icons/building-up.svg new file mode 100644 index 0000000..ff2d5d9 --- /dev/null +++ b/api/static/bootstrap-icons/building-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building-x.svg b/api/static/bootstrap-icons/building-x.svg new file mode 100644 index 0000000..70e67a3 --- /dev/null +++ b/api/static/bootstrap-icons/building-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/building.svg b/api/static/bootstrap-icons/building.svg new file mode 100644 index 0000000..916b049 --- /dev/null +++ b/api/static/bootstrap-icons/building.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/buildings-fill.svg b/api/static/bootstrap-icons/buildings-fill.svg new file mode 100644 index 0000000..6aea68d --- /dev/null +++ b/api/static/bootstrap-icons/buildings-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/buildings.svg b/api/static/bootstrap-icons/buildings.svg new file mode 100644 index 0000000..3028498 --- /dev/null +++ b/api/static/bootstrap-icons/buildings.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bullseye.svg b/api/static/bootstrap-icons/bullseye.svg new file mode 100644 index 0000000..16c2207 --- /dev/null +++ b/api/static/bootstrap-icons/bullseye.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bus-front-fill.svg b/api/static/bootstrap-icons/bus-front-fill.svg new file mode 100644 index 0000000..de21228 --- /dev/null +++ b/api/static/bootstrap-icons/bus-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/bus-front.svg b/api/static/bootstrap-icons/bus-front.svg new file mode 100644 index 0000000..95c5df5 --- /dev/null +++ b/api/static/bootstrap-icons/bus-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/c-circle-fill.svg b/api/static/bootstrap-icons/c-circle-fill.svg new file mode 100644 index 0000000..c0adc18 --- /dev/null +++ b/api/static/bootstrap-icons/c-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/c-circle.svg b/api/static/bootstrap-icons/c-circle.svg new file mode 100644 index 0000000..ac3dfac --- /dev/null +++ b/api/static/bootstrap-icons/c-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/c-square-fill.svg b/api/static/bootstrap-icons/c-square-fill.svg new file mode 100644 index 0000000..b26a27e --- /dev/null +++ b/api/static/bootstrap-icons/c-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/c-square.svg b/api/static/bootstrap-icons/c-square.svg new file mode 100644 index 0000000..cdd74a3 --- /dev/null +++ b/api/static/bootstrap-icons/c-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cake-fill.svg b/api/static/bootstrap-icons/cake-fill.svg new file mode 100644 index 0000000..4370e02 --- /dev/null +++ b/api/static/bootstrap-icons/cake-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cake.svg b/api/static/bootstrap-icons/cake.svg new file mode 100644 index 0000000..500747b --- /dev/null +++ b/api/static/bootstrap-icons/cake.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cake2-fill.svg b/api/static/bootstrap-icons/cake2-fill.svg new file mode 100644 index 0000000..1ed25f7 --- /dev/null +++ b/api/static/bootstrap-icons/cake2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cake2.svg b/api/static/bootstrap-icons/cake2.svg new file mode 100644 index 0000000..a10dc80 --- /dev/null +++ b/api/static/bootstrap-icons/cake2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calculator-fill.svg b/api/static/bootstrap-icons/calculator-fill.svg new file mode 100644 index 0000000..2933419 --- /dev/null +++ b/api/static/bootstrap-icons/calculator-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calculator.svg b/api/static/bootstrap-icons/calculator.svg new file mode 100644 index 0000000..cc9761e --- /dev/null +++ b/api/static/bootstrap-icons/calculator.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-check-fill.svg b/api/static/bootstrap-icons/calendar-check-fill.svg new file mode 100644 index 0000000..967d182 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-check.svg b/api/static/bootstrap-icons/calendar-check.svg new file mode 100644 index 0000000..f778cd2 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-date-fill.svg b/api/static/bootstrap-icons/calendar-date-fill.svg new file mode 100644 index 0000000..59b31f2 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-date-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-date.svg b/api/static/bootstrap-icons/calendar-date.svg new file mode 100644 index 0000000..b73c8f5 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-date.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-day-fill.svg b/api/static/bootstrap-icons/calendar-day-fill.svg new file mode 100644 index 0000000..b9bcbf8 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-day-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-day.svg b/api/static/bootstrap-icons/calendar-day.svg new file mode 100644 index 0000000..6f8d871 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-day.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-event-fill.svg b/api/static/bootstrap-icons/calendar-event-fill.svg new file mode 100644 index 0000000..5b09eea --- /dev/null +++ b/api/static/bootstrap-icons/calendar-event-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-event.svg b/api/static/bootstrap-icons/calendar-event.svg new file mode 100644 index 0000000..57c734b --- /dev/null +++ b/api/static/bootstrap-icons/calendar-event.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-fill.svg b/api/static/bootstrap-icons/calendar-fill.svg new file mode 100644 index 0000000..789eb8b --- /dev/null +++ b/api/static/bootstrap-icons/calendar-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-heart-fill.svg b/api/static/bootstrap-icons/calendar-heart-fill.svg new file mode 100644 index 0000000..63d9e4c --- /dev/null +++ b/api/static/bootstrap-icons/calendar-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-heart.svg b/api/static/bootstrap-icons/calendar-heart.svg new file mode 100644 index 0000000..8ed9c38 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-minus-fill.svg b/api/static/bootstrap-icons/calendar-minus-fill.svg new file mode 100644 index 0000000..8dad6e1 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-minus.svg b/api/static/bootstrap-icons/calendar-minus.svg new file mode 100644 index 0000000..ecd4e97 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-month-fill.svg b/api/static/bootstrap-icons/calendar-month-fill.svg new file mode 100644 index 0000000..d8d56fe --- /dev/null +++ b/api/static/bootstrap-icons/calendar-month-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-month.svg b/api/static/bootstrap-icons/calendar-month.svg new file mode 100644 index 0000000..95b6419 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-month.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-plus-fill.svg b/api/static/bootstrap-icons/calendar-plus-fill.svg new file mode 100644 index 0000000..0ed0c83 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-plus.svg b/api/static/bootstrap-icons/calendar-plus.svg new file mode 100644 index 0000000..189b152 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-range-fill.svg b/api/static/bootstrap-icons/calendar-range-fill.svg new file mode 100644 index 0000000..324def0 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-range-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-range.svg b/api/static/bootstrap-icons/calendar-range.svg new file mode 100644 index 0000000..7db0947 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-range.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-week-fill.svg b/api/static/bootstrap-icons/calendar-week-fill.svg new file mode 100644 index 0000000..ab2128d --- /dev/null +++ b/api/static/bootstrap-icons/calendar-week-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-week.svg b/api/static/bootstrap-icons/calendar-week.svg new file mode 100644 index 0000000..b5dbcc9 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-week.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-x-fill.svg b/api/static/bootstrap-icons/calendar-x-fill.svg new file mode 100644 index 0000000..450e114 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar-x.svg b/api/static/bootstrap-icons/calendar-x.svg new file mode 100644 index 0000000..dc85a91 --- /dev/null +++ b/api/static/bootstrap-icons/calendar-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar.svg b/api/static/bootstrap-icons/calendar.svg new file mode 100644 index 0000000..d32ebe7 --- /dev/null +++ b/api/static/bootstrap-icons/calendar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-check-fill.svg b/api/static/bootstrap-icons/calendar2-check-fill.svg new file mode 100644 index 0000000..a0c36c5 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-check.svg b/api/static/bootstrap-icons/calendar2-check.svg new file mode 100644 index 0000000..5429842 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-date-fill.svg b/api/static/bootstrap-icons/calendar2-date-fill.svg new file mode 100644 index 0000000..93b3941 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-date-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-date.svg b/api/static/bootstrap-icons/calendar2-date.svg new file mode 100644 index 0000000..61193cd --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-date.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-day-fill.svg b/api/static/bootstrap-icons/calendar2-day-fill.svg new file mode 100644 index 0000000..b605453 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-day-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-day.svg b/api/static/bootstrap-icons/calendar2-day.svg new file mode 100644 index 0000000..ce59878 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-day.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-event-fill.svg b/api/static/bootstrap-icons/calendar2-event-fill.svg new file mode 100644 index 0000000..2b245d1 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-event-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-event.svg b/api/static/bootstrap-icons/calendar2-event.svg new file mode 100644 index 0000000..36910dd --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-event.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-fill.svg b/api/static/bootstrap-icons/calendar2-fill.svg new file mode 100644 index 0000000..b28e594 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-heart-fill.svg b/api/static/bootstrap-icons/calendar2-heart-fill.svg new file mode 100644 index 0000000..f3723cd --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-heart.svg b/api/static/bootstrap-icons/calendar2-heart.svg new file mode 100644 index 0000000..995d9b8 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-minus-fill.svg b/api/static/bootstrap-icons/calendar2-minus-fill.svg new file mode 100644 index 0000000..bf52a36 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-minus.svg b/api/static/bootstrap-icons/calendar2-minus.svg new file mode 100644 index 0000000..62e6bbc --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-minus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-month-fill.svg b/api/static/bootstrap-icons/calendar2-month-fill.svg new file mode 100644 index 0000000..24b9c69 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-month-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-month.svg b/api/static/bootstrap-icons/calendar2-month.svg new file mode 100644 index 0000000..65d8295 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-month.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-plus-fill.svg b/api/static/bootstrap-icons/calendar2-plus-fill.svg new file mode 100644 index 0000000..26a2047 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-plus.svg b/api/static/bootstrap-icons/calendar2-plus.svg new file mode 100644 index 0000000..728148f --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-range-fill.svg b/api/static/bootstrap-icons/calendar2-range-fill.svg new file mode 100644 index 0000000..1ba46b6 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-range-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-range.svg b/api/static/bootstrap-icons/calendar2-range.svg new file mode 100644 index 0000000..9a657f4 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-range.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-week-fill.svg b/api/static/bootstrap-icons/calendar2-week-fill.svg new file mode 100644 index 0000000..f358667 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-week-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-week.svg b/api/static/bootstrap-icons/calendar2-week.svg new file mode 100644 index 0000000..07906a9 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-week.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-x-fill.svg b/api/static/bootstrap-icons/calendar2-x-fill.svg new file mode 100644 index 0000000..def799d --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2-x.svg b/api/static/bootstrap-icons/calendar2-x.svg new file mode 100644 index 0000000..d6f9e6f --- /dev/null +++ b/api/static/bootstrap-icons/calendar2-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar2.svg b/api/static/bootstrap-icons/calendar2.svg new file mode 100644 index 0000000..957f993 --- /dev/null +++ b/api/static/bootstrap-icons/calendar2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-event-fill.svg b/api/static/bootstrap-icons/calendar3-event-fill.svg new file mode 100644 index 0000000..d228ccb --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-event-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-event.svg b/api/static/bootstrap-icons/calendar3-event.svg new file mode 100644 index 0000000..f702c36 --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-event.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-fill.svg b/api/static/bootstrap-icons/calendar3-fill.svg new file mode 100644 index 0000000..f3bc116 --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-range-fill.svg b/api/static/bootstrap-icons/calendar3-range-fill.svg new file mode 100644 index 0000000..e21d0ee --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-range-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-range.svg b/api/static/bootstrap-icons/calendar3-range.svg new file mode 100644 index 0000000..c19d9ca --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-range.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-week-fill.svg b/api/static/bootstrap-icons/calendar3-week-fill.svg new file mode 100644 index 0000000..d828d85 --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-week-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3-week.svg b/api/static/bootstrap-icons/calendar3-week.svg new file mode 100644 index 0000000..6d577b7 --- /dev/null +++ b/api/static/bootstrap-icons/calendar3-week.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar3.svg b/api/static/bootstrap-icons/calendar3.svg new file mode 100644 index 0000000..8e2aedf --- /dev/null +++ b/api/static/bootstrap-icons/calendar3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar4-event.svg b/api/static/bootstrap-icons/calendar4-event.svg new file mode 100644 index 0000000..0d29c0c --- /dev/null +++ b/api/static/bootstrap-icons/calendar4-event.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar4-range.svg b/api/static/bootstrap-icons/calendar4-range.svg new file mode 100644 index 0000000..b260479 --- /dev/null +++ b/api/static/bootstrap-icons/calendar4-range.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar4-week.svg b/api/static/bootstrap-icons/calendar4-week.svg new file mode 100644 index 0000000..d934881 --- /dev/null +++ b/api/static/bootstrap-icons/calendar4-week.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/calendar4.svg b/api/static/bootstrap-icons/calendar4.svg new file mode 100644 index 0000000..69c474c --- /dev/null +++ b/api/static/bootstrap-icons/calendar4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-fill.svg b/api/static/bootstrap-icons/camera-fill.svg new file mode 100644 index 0000000..6aa0240 --- /dev/null +++ b/api/static/bootstrap-icons/camera-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-reels-fill.svg b/api/static/bootstrap-icons/camera-reels-fill.svg new file mode 100644 index 0000000..6bd48de --- /dev/null +++ b/api/static/bootstrap-icons/camera-reels-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-reels.svg b/api/static/bootstrap-icons/camera-reels.svg new file mode 100644 index 0000000..0c6eca8 --- /dev/null +++ b/api/static/bootstrap-icons/camera-reels.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-video-fill.svg b/api/static/bootstrap-icons/camera-video-fill.svg new file mode 100644 index 0000000..72dee37 --- /dev/null +++ b/api/static/bootstrap-icons/camera-video-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-video-off-fill.svg b/api/static/bootstrap-icons/camera-video-off-fill.svg new file mode 100644 index 0000000..290dc19 --- /dev/null +++ b/api/static/bootstrap-icons/camera-video-off-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-video-off.svg b/api/static/bootstrap-icons/camera-video-off.svg new file mode 100644 index 0000000..c9eb587 --- /dev/null +++ b/api/static/bootstrap-icons/camera-video-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera-video.svg b/api/static/bootstrap-icons/camera-video.svg new file mode 100644 index 0000000..a042d1a --- /dev/null +++ b/api/static/bootstrap-icons/camera-video.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera.svg b/api/static/bootstrap-icons/camera.svg new file mode 100644 index 0000000..3a926d5 --- /dev/null +++ b/api/static/bootstrap-icons/camera.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/camera2.svg b/api/static/bootstrap-icons/camera2.svg new file mode 100644 index 0000000..ba9521e --- /dev/null +++ b/api/static/bootstrap-icons/camera2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/capslock-fill.svg b/api/static/bootstrap-icons/capslock-fill.svg new file mode 100644 index 0000000..f1c0bab --- /dev/null +++ b/api/static/bootstrap-icons/capslock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/capslock.svg b/api/static/bootstrap-icons/capslock.svg new file mode 100644 index 0000000..b0b894a --- /dev/null +++ b/api/static/bootstrap-icons/capslock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/capsule-pill.svg b/api/static/bootstrap-icons/capsule-pill.svg new file mode 100644 index 0000000..b9f3b54 --- /dev/null +++ b/api/static/bootstrap-icons/capsule-pill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/capsule.svg b/api/static/bootstrap-icons/capsule.svg new file mode 100644 index 0000000..53d1a66 --- /dev/null +++ b/api/static/bootstrap-icons/capsule.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/car-front-fill.svg b/api/static/bootstrap-icons/car-front-fill.svg new file mode 100644 index 0000000..a47a870 --- /dev/null +++ b/api/static/bootstrap-icons/car-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/car-front.svg b/api/static/bootstrap-icons/car-front.svg new file mode 100644 index 0000000..890e4cf --- /dev/null +++ b/api/static/bootstrap-icons/car-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/card-checklist.svg b/api/static/bootstrap-icons/card-checklist.svg new file mode 100644 index 0000000..3044e68 --- /dev/null +++ b/api/static/bootstrap-icons/card-checklist.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/card-heading.svg b/api/static/bootstrap-icons/card-heading.svg new file mode 100644 index 0000000..a6be873 --- /dev/null +++ b/api/static/bootstrap-icons/card-heading.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/card-image.svg b/api/static/bootstrap-icons/card-image.svg new file mode 100644 index 0000000..7343f77 --- /dev/null +++ b/api/static/bootstrap-icons/card-image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/card-list.svg b/api/static/bootstrap-icons/card-list.svg new file mode 100644 index 0000000..6270802 --- /dev/null +++ b/api/static/bootstrap-icons/card-list.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/card-text.svg b/api/static/bootstrap-icons/card-text.svg new file mode 100644 index 0000000..8f7470c --- /dev/null +++ b/api/static/bootstrap-icons/card-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-down-fill.svg b/api/static/bootstrap-icons/caret-down-fill.svg new file mode 100644 index 0000000..d7c3990 --- /dev/null +++ b/api/static/bootstrap-icons/caret-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-down-square-fill.svg b/api/static/bootstrap-icons/caret-down-square-fill.svg new file mode 100644 index 0000000..63199bb --- /dev/null +++ b/api/static/bootstrap-icons/caret-down-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-down-square.svg b/api/static/bootstrap-icons/caret-down-square.svg new file mode 100644 index 0000000..0372625 --- /dev/null +++ b/api/static/bootstrap-icons/caret-down-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-down.svg b/api/static/bootstrap-icons/caret-down.svg new file mode 100644 index 0000000..627258a --- /dev/null +++ b/api/static/bootstrap-icons/caret-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-left-fill.svg b/api/static/bootstrap-icons/caret-left-fill.svg new file mode 100644 index 0000000..d989dff --- /dev/null +++ b/api/static/bootstrap-icons/caret-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-left-square-fill.svg b/api/static/bootstrap-icons/caret-left-square-fill.svg new file mode 100644 index 0000000..cc7e3a8 --- /dev/null +++ b/api/static/bootstrap-icons/caret-left-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-left-square.svg b/api/static/bootstrap-icons/caret-left-square.svg new file mode 100644 index 0000000..5e8cb20 --- /dev/null +++ b/api/static/bootstrap-icons/caret-left-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-left.svg b/api/static/bootstrap-icons/caret-left.svg new file mode 100644 index 0000000..4415336 --- /dev/null +++ b/api/static/bootstrap-icons/caret-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-right-fill.svg b/api/static/bootstrap-icons/caret-right-fill.svg new file mode 100644 index 0000000..b445551 --- /dev/null +++ b/api/static/bootstrap-icons/caret-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-right-square-fill.svg b/api/static/bootstrap-icons/caret-right-square-fill.svg new file mode 100644 index 0000000..2aded36 --- /dev/null +++ b/api/static/bootstrap-icons/caret-right-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-right-square.svg b/api/static/bootstrap-icons/caret-right-square.svg new file mode 100644 index 0000000..a3a44e2 --- /dev/null +++ b/api/static/bootstrap-icons/caret-right-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-right.svg b/api/static/bootstrap-icons/caret-right.svg new file mode 100644 index 0000000..7bcd8bb --- /dev/null +++ b/api/static/bootstrap-icons/caret-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-up-fill.svg b/api/static/bootstrap-icons/caret-up-fill.svg new file mode 100644 index 0000000..a87820e --- /dev/null +++ b/api/static/bootstrap-icons/caret-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-up-square-fill.svg b/api/static/bootstrap-icons/caret-up-square-fill.svg new file mode 100644 index 0000000..348fcf2 --- /dev/null +++ b/api/static/bootstrap-icons/caret-up-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-up-square.svg b/api/static/bootstrap-icons/caret-up-square.svg new file mode 100644 index 0000000..8ac2af4 --- /dev/null +++ b/api/static/bootstrap-icons/caret-up-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/caret-up.svg b/api/static/bootstrap-icons/caret-up.svg new file mode 100644 index 0000000..8e33519 --- /dev/null +++ b/api/static/bootstrap-icons/caret-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-check-fill.svg b/api/static/bootstrap-icons/cart-check-fill.svg new file mode 100644 index 0000000..612358c --- /dev/null +++ b/api/static/bootstrap-icons/cart-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-check.svg b/api/static/bootstrap-icons/cart-check.svg new file mode 100644 index 0000000..68301db --- /dev/null +++ b/api/static/bootstrap-icons/cart-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-dash-fill.svg b/api/static/bootstrap-icons/cart-dash-fill.svg new file mode 100644 index 0000000..a335b07 --- /dev/null +++ b/api/static/bootstrap-icons/cart-dash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-dash.svg b/api/static/bootstrap-icons/cart-dash.svg new file mode 100644 index 0000000..9c97c3b --- /dev/null +++ b/api/static/bootstrap-icons/cart-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-fill.svg b/api/static/bootstrap-icons/cart-fill.svg new file mode 100644 index 0000000..974fc29 --- /dev/null +++ b/api/static/bootstrap-icons/cart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-plus-fill.svg b/api/static/bootstrap-icons/cart-plus-fill.svg new file mode 100644 index 0000000..59e46e4 --- /dev/null +++ b/api/static/bootstrap-icons/cart-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-plus.svg b/api/static/bootstrap-icons/cart-plus.svg new file mode 100644 index 0000000..2baaae4 --- /dev/null +++ b/api/static/bootstrap-icons/cart-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-x-fill.svg b/api/static/bootstrap-icons/cart-x-fill.svg new file mode 100644 index 0000000..7ca0688 --- /dev/null +++ b/api/static/bootstrap-icons/cart-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart-x.svg b/api/static/bootstrap-icons/cart-x.svg new file mode 100644 index 0000000..2d8f213 --- /dev/null +++ b/api/static/bootstrap-icons/cart-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart.svg b/api/static/bootstrap-icons/cart.svg new file mode 100644 index 0000000..0e0f96c --- /dev/null +++ b/api/static/bootstrap-icons/cart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart2.svg b/api/static/bootstrap-icons/cart2.svg new file mode 100644 index 0000000..ea7f696 --- /dev/null +++ b/api/static/bootstrap-icons/cart2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart3.svg b/api/static/bootstrap-icons/cart3.svg new file mode 100644 index 0000000..af1b3c5 --- /dev/null +++ b/api/static/bootstrap-icons/cart3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cart4.svg b/api/static/bootstrap-icons/cart4.svg new file mode 100644 index 0000000..4631ac9 --- /dev/null +++ b/api/static/bootstrap-icons/cart4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cash-coin.svg b/api/static/bootstrap-icons/cash-coin.svg new file mode 100644 index 0000000..2904f15 --- /dev/null +++ b/api/static/bootstrap-icons/cash-coin.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cash-stack.svg b/api/static/bootstrap-icons/cash-stack.svg new file mode 100644 index 0000000..fc8c282 --- /dev/null +++ b/api/static/bootstrap-icons/cash-stack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cash.svg b/api/static/bootstrap-icons/cash.svg new file mode 100644 index 0000000..18cbff3 --- /dev/null +++ b/api/static/bootstrap-icons/cash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cassette-fill.svg b/api/static/bootstrap-icons/cassette-fill.svg new file mode 100644 index 0000000..18fd5e4 --- /dev/null +++ b/api/static/bootstrap-icons/cassette-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cassette.svg b/api/static/bootstrap-icons/cassette.svg new file mode 100644 index 0000000..2effe71 --- /dev/null +++ b/api/static/bootstrap-icons/cassette.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cast.svg b/api/static/bootstrap-icons/cast.svg new file mode 100644 index 0000000..01a9795 --- /dev/null +++ b/api/static/bootstrap-icons/cast.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cc-circle-fill.svg b/api/static/bootstrap-icons/cc-circle-fill.svg new file mode 100644 index 0000000..483d90c --- /dev/null +++ b/api/static/bootstrap-icons/cc-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cc-circle.svg b/api/static/bootstrap-icons/cc-circle.svg new file mode 100644 index 0000000..2dc2b4b --- /dev/null +++ b/api/static/bootstrap-icons/cc-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cc-square-fill.svg b/api/static/bootstrap-icons/cc-square-fill.svg new file mode 100644 index 0000000..b0a8350 --- /dev/null +++ b/api/static/bootstrap-icons/cc-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cc-square.svg b/api/static/bootstrap-icons/cc-square.svg new file mode 100644 index 0000000..b0f05b6 --- /dev/null +++ b/api/static/bootstrap-icons/cc-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-dots-fill.svg b/api/static/bootstrap-icons/chat-dots-fill.svg new file mode 100644 index 0000000..5f74345 --- /dev/null +++ b/api/static/bootstrap-icons/chat-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-dots.svg b/api/static/bootstrap-icons/chat-dots.svg new file mode 100644 index 0000000..20137cc --- /dev/null +++ b/api/static/bootstrap-icons/chat-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-fill.svg b/api/static/bootstrap-icons/chat-fill.svg new file mode 100644 index 0000000..c896939 --- /dev/null +++ b/api/static/bootstrap-icons/chat-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-heart-fill.svg b/api/static/bootstrap-icons/chat-heart-fill.svg new file mode 100644 index 0000000..ea01c34 --- /dev/null +++ b/api/static/bootstrap-icons/chat-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-heart.svg b/api/static/bootstrap-icons/chat-heart.svg new file mode 100644 index 0000000..8ea104e --- /dev/null +++ b/api/static/bootstrap-icons/chat-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-dots-fill.svg b/api/static/bootstrap-icons/chat-left-dots-fill.svg new file mode 100644 index 0000000..a6614c3 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-dots.svg b/api/static/bootstrap-icons/chat-left-dots.svg new file mode 100644 index 0000000..35f466a --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-fill.svg b/api/static/bootstrap-icons/chat-left-fill.svg new file mode 100644 index 0000000..0de6e13 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-heart-fill.svg b/api/static/bootstrap-icons/chat-left-heart-fill.svg new file mode 100644 index 0000000..cc9502c --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-heart.svg b/api/static/bootstrap-icons/chat-left-heart.svg new file mode 100644 index 0000000..ec11692 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-quote-fill.svg b/api/static/bootstrap-icons/chat-left-quote-fill.svg new file mode 100644 index 0000000..d634a12 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-quote.svg b/api/static/bootstrap-icons/chat-left-quote.svg new file mode 100644 index 0000000..376ceb1 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-quote.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-text-fill.svg b/api/static/bootstrap-icons/chat-left-text-fill.svg new file mode 100644 index 0000000..a78e343 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left-text.svg b/api/static/bootstrap-icons/chat-left-text.svg new file mode 100644 index 0000000..88d1906 --- /dev/null +++ b/api/static/bootstrap-icons/chat-left-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-left.svg b/api/static/bootstrap-icons/chat-left.svg new file mode 100644 index 0000000..d93f0af --- /dev/null +++ b/api/static/bootstrap-icons/chat-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-quote-fill.svg b/api/static/bootstrap-icons/chat-quote-fill.svg new file mode 100644 index 0000000..7150c44 --- /dev/null +++ b/api/static/bootstrap-icons/chat-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-quote.svg b/api/static/bootstrap-icons/chat-quote.svg new file mode 100644 index 0000000..aa0edc4 --- /dev/null +++ b/api/static/bootstrap-icons/chat-quote.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-dots-fill.svg b/api/static/bootstrap-icons/chat-right-dots-fill.svg new file mode 100644 index 0000000..1020581 --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-dots.svg b/api/static/bootstrap-icons/chat-right-dots.svg new file mode 100644 index 0000000..d9b8bd2 --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-fill.svg b/api/static/bootstrap-icons/chat-right-fill.svg new file mode 100644 index 0000000..6381ddc --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-heart-fill.svg b/api/static/bootstrap-icons/chat-right-heart-fill.svg new file mode 100644 index 0000000..cf4abfe --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-heart.svg b/api/static/bootstrap-icons/chat-right-heart.svg new file mode 100644 index 0000000..e6b3880 --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-quote-fill.svg b/api/static/bootstrap-icons/chat-right-quote-fill.svg new file mode 100644 index 0000000..1c4e536 --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-quote.svg b/api/static/bootstrap-icons/chat-right-quote.svg new file mode 100644 index 0000000..e9091bc --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-quote.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-text-fill.svg b/api/static/bootstrap-icons/chat-right-text-fill.svg new file mode 100644 index 0000000..3455983 --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right-text.svg b/api/static/bootstrap-icons/chat-right-text.svg new file mode 100644 index 0000000..88341af --- /dev/null +++ b/api/static/bootstrap-icons/chat-right-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-right.svg b/api/static/bootstrap-icons/chat-right.svg new file mode 100644 index 0000000..a930c9a --- /dev/null +++ b/api/static/bootstrap-icons/chat-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-dots-fill.svg b/api/static/bootstrap-icons/chat-square-dots-fill.svg new file mode 100644 index 0000000..09c97d1 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-dots-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-dots.svg b/api/static/bootstrap-icons/chat-square-dots.svg new file mode 100644 index 0000000..b06c02f --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-fill.svg b/api/static/bootstrap-icons/chat-square-fill.svg new file mode 100644 index 0000000..4688831 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-heart-fill.svg b/api/static/bootstrap-icons/chat-square-heart-fill.svg new file mode 100644 index 0000000..902e0b5 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-heart.svg b/api/static/bootstrap-icons/chat-square-heart.svg new file mode 100644 index 0000000..6ba687e --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-quote-fill.svg b/api/static/bootstrap-icons/chat-square-quote-fill.svg new file mode 100644 index 0000000..2496b70 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-quote-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-quote.svg b/api/static/bootstrap-icons/chat-square-quote.svg new file mode 100644 index 0000000..a8f6b09 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-quote.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-text-fill.svg b/api/static/bootstrap-icons/chat-square-text-fill.svg new file mode 100644 index 0000000..6ebf567 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square-text.svg b/api/static/bootstrap-icons/chat-square-text.svg new file mode 100644 index 0000000..1296f92 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-square.svg b/api/static/bootstrap-icons/chat-square.svg new file mode 100644 index 0000000..4e13ae8 --- /dev/null +++ b/api/static/bootstrap-icons/chat-square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-text-fill.svg b/api/static/bootstrap-icons/chat-text-fill.svg new file mode 100644 index 0000000..93639f1 --- /dev/null +++ b/api/static/bootstrap-icons/chat-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat-text.svg b/api/static/bootstrap-icons/chat-text.svg new file mode 100644 index 0000000..f64f43f --- /dev/null +++ b/api/static/bootstrap-icons/chat-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chat.svg b/api/static/bootstrap-icons/chat.svg new file mode 100644 index 0000000..487d142 --- /dev/null +++ b/api/static/bootstrap-icons/chat.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-all.svg b/api/static/bootstrap-icons/check-all.svg new file mode 100644 index 0000000..f91fd77 --- /dev/null +++ b/api/static/bootstrap-icons/check-all.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-circle-fill.svg b/api/static/bootstrap-icons/check-circle-fill.svg new file mode 100644 index 0000000..0b7f412 --- /dev/null +++ b/api/static/bootstrap-icons/check-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-circle.svg b/api/static/bootstrap-icons/check-circle.svg new file mode 100644 index 0000000..016f607 --- /dev/null +++ b/api/static/bootstrap-icons/check-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-lg.svg b/api/static/bootstrap-icons/check-lg.svg new file mode 100644 index 0000000..63a8a3d --- /dev/null +++ b/api/static/bootstrap-icons/check-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-square-fill.svg b/api/static/bootstrap-icons/check-square-fill.svg new file mode 100644 index 0000000..cbb56ed --- /dev/null +++ b/api/static/bootstrap-icons/check-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check-square.svg b/api/static/bootstrap-icons/check-square.svg new file mode 100644 index 0000000..b7d1116 --- /dev/null +++ b/api/static/bootstrap-icons/check-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check.svg b/api/static/bootstrap-icons/check.svg new file mode 100644 index 0000000..11ab547 --- /dev/null +++ b/api/static/bootstrap-icons/check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check2-all.svg b/api/static/bootstrap-icons/check2-all.svg new file mode 100644 index 0000000..cccc0b7 --- /dev/null +++ b/api/static/bootstrap-icons/check2-all.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check2-circle.svg b/api/static/bootstrap-icons/check2-circle.svg new file mode 100644 index 0000000..166e661 --- /dev/null +++ b/api/static/bootstrap-icons/check2-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check2-square.svg b/api/static/bootstrap-icons/check2-square.svg new file mode 100644 index 0000000..64c3669 --- /dev/null +++ b/api/static/bootstrap-icons/check2-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/check2.svg b/api/static/bootstrap-icons/check2.svg new file mode 100644 index 0000000..87168de --- /dev/null +++ b/api/static/bootstrap-icons/check2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-contract.svg b/api/static/bootstrap-icons/chevron-bar-contract.svg new file mode 100644 index 0000000..52ec3f6 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-contract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-down.svg b/api/static/bootstrap-icons/chevron-bar-down.svg new file mode 100644 index 0000000..8c10216 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-expand.svg b/api/static/bootstrap-icons/chevron-bar-expand.svg new file mode 100644 index 0000000..1260a20 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-left.svg b/api/static/bootstrap-icons/chevron-bar-left.svg new file mode 100644 index 0000000..36afeb7 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-right.svg b/api/static/bootstrap-icons/chevron-bar-right.svg new file mode 100644 index 0000000..b71e040 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-bar-up.svg b/api/static/bootstrap-icons/chevron-bar-up.svg new file mode 100644 index 0000000..c5da175 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-bar-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-compact-down.svg b/api/static/bootstrap-icons/chevron-compact-down.svg new file mode 100644 index 0000000..53d9d9a --- /dev/null +++ b/api/static/bootstrap-icons/chevron-compact-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-compact-left.svg b/api/static/bootstrap-icons/chevron-compact-left.svg new file mode 100644 index 0000000..277ddd8 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-compact-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-compact-right.svg b/api/static/bootstrap-icons/chevron-compact-right.svg new file mode 100644 index 0000000..24b5309 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-compact-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-compact-up.svg b/api/static/bootstrap-icons/chevron-compact-up.svg new file mode 100644 index 0000000..2a4f354 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-compact-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-contract.svg b/api/static/bootstrap-icons/chevron-contract.svg new file mode 100644 index 0000000..354ee86 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-contract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-double-down.svg b/api/static/bootstrap-icons/chevron-double-down.svg new file mode 100644 index 0000000..bc99e59 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-double-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-double-left.svg b/api/static/bootstrap-icons/chevron-double-left.svg new file mode 100644 index 0000000..c4cd7f2 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-double-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-double-right.svg b/api/static/bootstrap-icons/chevron-double-right.svg new file mode 100644 index 0000000..dccd6c5 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-double-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-double-up.svg b/api/static/bootstrap-icons/chevron-double-up.svg new file mode 100644 index 0000000..ad7ba12 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-double-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-down.svg b/api/static/bootstrap-icons/chevron-down.svg new file mode 100644 index 0000000..a281907 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-expand.svg b/api/static/bootstrap-icons/chevron-expand.svg new file mode 100644 index 0000000..33e4ad8 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-expand.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-left.svg b/api/static/bootstrap-icons/chevron-left.svg new file mode 100644 index 0000000..5bcc1bb --- /dev/null +++ b/api/static/bootstrap-icons/chevron-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-right.svg b/api/static/bootstrap-icons/chevron-right.svg new file mode 100644 index 0000000..ab39af8 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/chevron-up.svg b/api/static/bootstrap-icons/chevron-up.svg new file mode 100644 index 0000000..4f3c7a0 --- /dev/null +++ b/api/static/bootstrap-icons/chevron-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/circle-fill.svg b/api/static/bootstrap-icons/circle-fill.svg new file mode 100644 index 0000000..e0d1b51 --- /dev/null +++ b/api/static/bootstrap-icons/circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/circle-half.svg b/api/static/bootstrap-icons/circle-half.svg new file mode 100644 index 0000000..497f6b7 --- /dev/null +++ b/api/static/bootstrap-icons/circle-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/circle-square.svg b/api/static/bootstrap-icons/circle-square.svg new file mode 100644 index 0000000..c0f62b7 --- /dev/null +++ b/api/static/bootstrap-icons/circle-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/circle.svg b/api/static/bootstrap-icons/circle.svg new file mode 100644 index 0000000..9bbabca --- /dev/null +++ b/api/static/bootstrap-icons/circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-check-fill.svg b/api/static/bootstrap-icons/clipboard-check-fill.svg new file mode 100644 index 0000000..598e850 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-check-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-check.svg b/api/static/bootstrap-icons/clipboard-check.svg new file mode 100644 index 0000000..cb9d8a2 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-data-fill.svg b/api/static/bootstrap-icons/clipboard-data-fill.svg new file mode 100644 index 0000000..e4a9425 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-data-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-data.svg b/api/static/bootstrap-icons/clipboard-data.svg new file mode 100644 index 0000000..622acbf --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-data.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-fill.svg b/api/static/bootstrap-icons/clipboard-fill.svg new file mode 100644 index 0000000..176c5e4 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-heart-fill.svg b/api/static/bootstrap-icons/clipboard-heart-fill.svg new file mode 100644 index 0000000..92de0a8 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-heart.svg b/api/static/bootstrap-icons/clipboard-heart.svg new file mode 100644 index 0000000..c430ed2 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-heart.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-minus-fill.svg b/api/static/bootstrap-icons/clipboard-minus-fill.svg new file mode 100644 index 0000000..e47f43f --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-minus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-minus.svg b/api/static/bootstrap-icons/clipboard-minus.svg new file mode 100644 index 0000000..d3675c4 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-minus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-plus-fill.svg b/api/static/bootstrap-icons/clipboard-plus-fill.svg new file mode 100644 index 0000000..8140aa8 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-plus.svg b/api/static/bootstrap-icons/clipboard-plus.svg new file mode 100644 index 0000000..1d095d7 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-pulse.svg b/api/static/bootstrap-icons/clipboard-pulse.svg new file mode 100644 index 0000000..a357209 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-pulse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-x-fill.svg b/api/static/bootstrap-icons/clipboard-x-fill.svg new file mode 100644 index 0000000..10fba82 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-x-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard-x.svg b/api/static/bootstrap-icons/clipboard-x.svg new file mode 100644 index 0000000..46df235 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard.svg b/api/static/bootstrap-icons/clipboard.svg new file mode 100644 index 0000000..b92f42a --- /dev/null +++ b/api/static/bootstrap-icons/clipboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-check-fill.svg b/api/static/bootstrap-icons/clipboard2-check-fill.svg new file mode 100644 index 0000000..b640432 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-check-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-check.svg b/api/static/bootstrap-icons/clipboard2-check.svg new file mode 100644 index 0000000..aba15bf --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-data-fill.svg b/api/static/bootstrap-icons/clipboard2-data-fill.svg new file mode 100644 index 0000000..56c127e --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-data-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-data.svg b/api/static/bootstrap-icons/clipboard2-data.svg new file mode 100644 index 0000000..75ac6c6 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-data.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-fill.svg b/api/static/bootstrap-icons/clipboard2-fill.svg new file mode 100644 index 0000000..6898571 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-heart-fill.svg b/api/static/bootstrap-icons/clipboard2-heart-fill.svg new file mode 100644 index 0000000..ce98945 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-heart.svg b/api/static/bootstrap-icons/clipboard2-heart.svg new file mode 100644 index 0000000..879fef2 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-heart.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-minus-fill.svg b/api/static/bootstrap-icons/clipboard2-minus-fill.svg new file mode 100644 index 0000000..fcd4b56 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-minus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-minus.svg b/api/static/bootstrap-icons/clipboard2-minus.svg new file mode 100644 index 0000000..f8c10e3 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-minus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-plus-fill.svg b/api/static/bootstrap-icons/clipboard2-plus-fill.svg new file mode 100644 index 0000000..be310e5 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-plus.svg b/api/static/bootstrap-icons/clipboard2-plus.svg new file mode 100644 index 0000000..33eaa28 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-pulse-fill.svg b/api/static/bootstrap-icons/clipboard2-pulse-fill.svg new file mode 100644 index 0000000..bc7d6b3 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-pulse-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-pulse.svg b/api/static/bootstrap-icons/clipboard2-pulse.svg new file mode 100644 index 0000000..c641c61 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-pulse.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-x-fill.svg b/api/static/bootstrap-icons/clipboard2-x-fill.svg new file mode 100644 index 0000000..08828c6 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-x-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2-x.svg b/api/static/bootstrap-icons/clipboard2-x.svg new file mode 100644 index 0000000..06832cc --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clipboard2.svg b/api/static/bootstrap-icons/clipboard2.svg new file mode 100644 index 0000000..d0f4529 --- /dev/null +++ b/api/static/bootstrap-icons/clipboard2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clock-fill.svg b/api/static/bootstrap-icons/clock-fill.svg new file mode 100644 index 0000000..148abcf --- /dev/null +++ b/api/static/bootstrap-icons/clock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clock-history.svg b/api/static/bootstrap-icons/clock-history.svg new file mode 100644 index 0000000..f685e10 --- /dev/null +++ b/api/static/bootstrap-icons/clock-history.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clock.svg b/api/static/bootstrap-icons/clock.svg new file mode 100644 index 0000000..31c3c64 --- /dev/null +++ b/api/static/bootstrap-icons/clock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-arrow-down-fill.svg b/api/static/bootstrap-icons/cloud-arrow-down-fill.svg new file mode 100644 index 0000000..1b23dc9 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-arrow-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-arrow-down.svg b/api/static/bootstrap-icons/cloud-arrow-down.svg new file mode 100644 index 0000000..bb79bbe --- /dev/null +++ b/api/static/bootstrap-icons/cloud-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-arrow-up-fill.svg b/api/static/bootstrap-icons/cloud-arrow-up-fill.svg new file mode 100644 index 0000000..8366f05 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-arrow-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-arrow-up.svg b/api/static/bootstrap-icons/cloud-arrow-up.svg new file mode 100644 index 0000000..704756b --- /dev/null +++ b/api/static/bootstrap-icons/cloud-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-check-fill.svg b/api/static/bootstrap-icons/cloud-check-fill.svg new file mode 100644 index 0000000..a71feee --- /dev/null +++ b/api/static/bootstrap-icons/cloud-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-check.svg b/api/static/bootstrap-icons/cloud-check.svg new file mode 100644 index 0000000..d7599e9 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-download-fill.svg b/api/static/bootstrap-icons/cloud-download-fill.svg new file mode 100644 index 0000000..c8a44ba --- /dev/null +++ b/api/static/bootstrap-icons/cloud-download-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-download.svg b/api/static/bootstrap-icons/cloud-download.svg new file mode 100644 index 0000000..b71d7d7 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-download.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-drizzle-fill.svg b/api/static/bootstrap-icons/cloud-drizzle-fill.svg new file mode 100644 index 0000000..0d381ae --- /dev/null +++ b/api/static/bootstrap-icons/cloud-drizzle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-drizzle.svg b/api/static/bootstrap-icons/cloud-drizzle.svg new file mode 100644 index 0000000..f3c8599 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-drizzle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-fill.svg b/api/static/bootstrap-icons/cloud-fill.svg new file mode 100644 index 0000000..8849faa --- /dev/null +++ b/api/static/bootstrap-icons/cloud-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-fog-fill.svg b/api/static/bootstrap-icons/cloud-fog-fill.svg new file mode 100644 index 0000000..214caba --- /dev/null +++ b/api/static/bootstrap-icons/cloud-fog-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-fog.svg b/api/static/bootstrap-icons/cloud-fog.svg new file mode 100644 index 0000000..26a574a --- /dev/null +++ b/api/static/bootstrap-icons/cloud-fog.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-fog2-fill.svg b/api/static/bootstrap-icons/cloud-fog2-fill.svg new file mode 100644 index 0000000..8f67dea --- /dev/null +++ b/api/static/bootstrap-icons/cloud-fog2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-fog2.svg b/api/static/bootstrap-icons/cloud-fog2.svg new file mode 100644 index 0000000..9b0664f --- /dev/null +++ b/api/static/bootstrap-icons/cloud-fog2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-hail-fill.svg b/api/static/bootstrap-icons/cloud-hail-fill.svg new file mode 100644 index 0000000..0fa737f --- /dev/null +++ b/api/static/bootstrap-icons/cloud-hail-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-hail.svg b/api/static/bootstrap-icons/cloud-hail.svg new file mode 100644 index 0000000..3206a02 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-hail.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-haze-fill.svg b/api/static/bootstrap-icons/cloud-haze-fill.svg new file mode 100644 index 0000000..aa16c2c --- /dev/null +++ b/api/static/bootstrap-icons/cloud-haze-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-haze.svg b/api/static/bootstrap-icons/cloud-haze.svg new file mode 100644 index 0000000..578a565 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-haze.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-haze2-fill.svg b/api/static/bootstrap-icons/cloud-haze2-fill.svg new file mode 100644 index 0000000..3e22656 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-haze2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-haze2.svg b/api/static/bootstrap-icons/cloud-haze2.svg new file mode 100644 index 0000000..c43d91c --- /dev/null +++ b/api/static/bootstrap-icons/cloud-haze2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-lightning-fill.svg b/api/static/bootstrap-icons/cloud-lightning-fill.svg new file mode 100644 index 0000000..88fd930 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-lightning-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-lightning-rain-fill.svg b/api/static/bootstrap-icons/cloud-lightning-rain-fill.svg new file mode 100644 index 0000000..f5cd845 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-lightning-rain-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-lightning-rain.svg b/api/static/bootstrap-icons/cloud-lightning-rain.svg new file mode 100644 index 0000000..588b274 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-lightning-rain.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-lightning.svg b/api/static/bootstrap-icons/cloud-lightning.svg new file mode 100644 index 0000000..20c2680 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-lightning.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-minus-fill.svg b/api/static/bootstrap-icons/cloud-minus-fill.svg new file mode 100644 index 0000000..2fcc2bb --- /dev/null +++ b/api/static/bootstrap-icons/cloud-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-minus.svg b/api/static/bootstrap-icons/cloud-minus.svg new file mode 100644 index 0000000..54f47b2 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-moon-fill.svg b/api/static/bootstrap-icons/cloud-moon-fill.svg new file mode 100644 index 0000000..232dd4e --- /dev/null +++ b/api/static/bootstrap-icons/cloud-moon-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-moon.svg b/api/static/bootstrap-icons/cloud-moon.svg new file mode 100644 index 0000000..cc91617 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-moon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-plus-fill.svg b/api/static/bootstrap-icons/cloud-plus-fill.svg new file mode 100644 index 0000000..5337dc4 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-plus.svg b/api/static/bootstrap-icons/cloud-plus.svg new file mode 100644 index 0000000..9448796 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-rain-fill.svg b/api/static/bootstrap-icons/cloud-rain-fill.svg new file mode 100644 index 0000000..3ffee56 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-rain-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-rain-heavy-fill.svg b/api/static/bootstrap-icons/cloud-rain-heavy-fill.svg new file mode 100644 index 0000000..d92411b --- /dev/null +++ b/api/static/bootstrap-icons/cloud-rain-heavy-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-rain-heavy.svg b/api/static/bootstrap-icons/cloud-rain-heavy.svg new file mode 100644 index 0000000..ee9ef85 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-rain-heavy.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-rain.svg b/api/static/bootstrap-icons/cloud-rain.svg new file mode 100644 index 0000000..e22f16c --- /dev/null +++ b/api/static/bootstrap-icons/cloud-rain.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-slash-fill.svg b/api/static/bootstrap-icons/cloud-slash-fill.svg new file mode 100644 index 0000000..08a709b --- /dev/null +++ b/api/static/bootstrap-icons/cloud-slash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-slash.svg b/api/static/bootstrap-icons/cloud-slash.svg new file mode 100644 index 0000000..d7b680c --- /dev/null +++ b/api/static/bootstrap-icons/cloud-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-sleet-fill.svg b/api/static/bootstrap-icons/cloud-sleet-fill.svg new file mode 100644 index 0000000..1df3f33 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-sleet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-sleet.svg b/api/static/bootstrap-icons/cloud-sleet.svg new file mode 100644 index 0000000..edc48c6 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-sleet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-snow-fill.svg b/api/static/bootstrap-icons/cloud-snow-fill.svg new file mode 100644 index 0000000..32cda8d --- /dev/null +++ b/api/static/bootstrap-icons/cloud-snow-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-snow.svg b/api/static/bootstrap-icons/cloud-snow.svg new file mode 100644 index 0000000..26150c4 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-snow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-sun-fill.svg b/api/static/bootstrap-icons/cloud-sun-fill.svg new file mode 100644 index 0000000..da5ecac --- /dev/null +++ b/api/static/bootstrap-icons/cloud-sun-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-sun.svg b/api/static/bootstrap-icons/cloud-sun.svg new file mode 100644 index 0000000..caa95e9 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-sun.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-upload-fill.svg b/api/static/bootstrap-icons/cloud-upload-fill.svg new file mode 100644 index 0000000..2d0df59 --- /dev/null +++ b/api/static/bootstrap-icons/cloud-upload-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud-upload.svg b/api/static/bootstrap-icons/cloud-upload.svg new file mode 100644 index 0000000..e5ca56e --- /dev/null +++ b/api/static/bootstrap-icons/cloud-upload.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloud.svg b/api/static/bootstrap-icons/cloud.svg new file mode 100644 index 0000000..de877ab --- /dev/null +++ b/api/static/bootstrap-icons/cloud.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clouds-fill.svg b/api/static/bootstrap-icons/clouds-fill.svg new file mode 100644 index 0000000..d70e817 --- /dev/null +++ b/api/static/bootstrap-icons/clouds-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/clouds.svg b/api/static/bootstrap-icons/clouds.svg new file mode 100644 index 0000000..7e253e7 --- /dev/null +++ b/api/static/bootstrap-icons/clouds.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloudy-fill.svg b/api/static/bootstrap-icons/cloudy-fill.svg new file mode 100644 index 0000000..7bf27b7 --- /dev/null +++ b/api/static/bootstrap-icons/cloudy-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cloudy.svg b/api/static/bootstrap-icons/cloudy.svg new file mode 100644 index 0000000..87c2017 --- /dev/null +++ b/api/static/bootstrap-icons/cloudy.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/code-slash.svg b/api/static/bootstrap-icons/code-slash.svg new file mode 100644 index 0000000..51a5c57 --- /dev/null +++ b/api/static/bootstrap-icons/code-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/code-square.svg b/api/static/bootstrap-icons/code-square.svg new file mode 100644 index 0000000..30fdef3 --- /dev/null +++ b/api/static/bootstrap-icons/code-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/code.svg b/api/static/bootstrap-icons/code.svg new file mode 100644 index 0000000..c0760e9 --- /dev/null +++ b/api/static/bootstrap-icons/code.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/coin.svg b/api/static/bootstrap-icons/coin.svg new file mode 100644 index 0000000..fb94cc5 --- /dev/null +++ b/api/static/bootstrap-icons/coin.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/collection-fill.svg b/api/static/bootstrap-icons/collection-fill.svg new file mode 100644 index 0000000..4e5fbce --- /dev/null +++ b/api/static/bootstrap-icons/collection-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/collection-play-fill.svg b/api/static/bootstrap-icons/collection-play-fill.svg new file mode 100644 index 0000000..b6820d0 --- /dev/null +++ b/api/static/bootstrap-icons/collection-play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/collection-play.svg b/api/static/bootstrap-icons/collection-play.svg new file mode 100644 index 0000000..0c59f5d --- /dev/null +++ b/api/static/bootstrap-icons/collection-play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/collection.svg b/api/static/bootstrap-icons/collection.svg new file mode 100644 index 0000000..8b5d5fd --- /dev/null +++ b/api/static/bootstrap-icons/collection.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/columns-gap.svg b/api/static/bootstrap-icons/columns-gap.svg new file mode 100644 index 0000000..8b4bb4e --- /dev/null +++ b/api/static/bootstrap-icons/columns-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/columns.svg b/api/static/bootstrap-icons/columns.svg new file mode 100644 index 0000000..17632df --- /dev/null +++ b/api/static/bootstrap-icons/columns.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/command.svg b/api/static/bootstrap-icons/command.svg new file mode 100644 index 0000000..64fa00b --- /dev/null +++ b/api/static/bootstrap-icons/command.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/compass-fill.svg b/api/static/bootstrap-icons/compass-fill.svg new file mode 100644 index 0000000..1396c1f --- /dev/null +++ b/api/static/bootstrap-icons/compass-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/compass.svg b/api/static/bootstrap-icons/compass.svg new file mode 100644 index 0000000..9b402f3 --- /dev/null +++ b/api/static/bootstrap-icons/compass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cone-striped.svg b/api/static/bootstrap-icons/cone-striped.svg new file mode 100644 index 0000000..28a9529 --- /dev/null +++ b/api/static/bootstrap-icons/cone-striped.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cone.svg b/api/static/bootstrap-icons/cone.svg new file mode 100644 index 0000000..b1a7d97 --- /dev/null +++ b/api/static/bootstrap-icons/cone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/controller.svg b/api/static/bootstrap-icons/controller.svg new file mode 100644 index 0000000..b7ceedb --- /dev/null +++ b/api/static/bootstrap-icons/controller.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cookie.svg b/api/static/bootstrap-icons/cookie.svg new file mode 100644 index 0000000..7a4b2fa --- /dev/null +++ b/api/static/bootstrap-icons/cookie.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/copy.svg b/api/static/bootstrap-icons/copy.svg new file mode 100644 index 0000000..b590680 --- /dev/null +++ b/api/static/bootstrap-icons/copy.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cpu-fill.svg b/api/static/bootstrap-icons/cpu-fill.svg new file mode 100644 index 0000000..ce6e294 --- /dev/null +++ b/api/static/bootstrap-icons/cpu-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cpu.svg b/api/static/bootstrap-icons/cpu.svg new file mode 100644 index 0000000..88c0d56 --- /dev/null +++ b/api/static/bootstrap-icons/cpu.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card-2-back-fill.svg b/api/static/bootstrap-icons/credit-card-2-back-fill.svg new file mode 100644 index 0000000..032fb4a --- /dev/null +++ b/api/static/bootstrap-icons/credit-card-2-back-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card-2-back.svg b/api/static/bootstrap-icons/credit-card-2-back.svg new file mode 100644 index 0000000..b29419c --- /dev/null +++ b/api/static/bootstrap-icons/credit-card-2-back.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card-2-front-fill.svg b/api/static/bootstrap-icons/credit-card-2-front-fill.svg new file mode 100644 index 0000000..06684d5 --- /dev/null +++ b/api/static/bootstrap-icons/credit-card-2-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card-2-front.svg b/api/static/bootstrap-icons/credit-card-2-front.svg new file mode 100644 index 0000000..0bbc290 --- /dev/null +++ b/api/static/bootstrap-icons/credit-card-2-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card-fill.svg b/api/static/bootstrap-icons/credit-card-fill.svg new file mode 100644 index 0000000..a4f899a --- /dev/null +++ b/api/static/bootstrap-icons/credit-card-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/credit-card.svg b/api/static/bootstrap-icons/credit-card.svg new file mode 100644 index 0000000..406233d --- /dev/null +++ b/api/static/bootstrap-icons/credit-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/crop.svg b/api/static/bootstrap-icons/crop.svg new file mode 100644 index 0000000..3b4bb60 --- /dev/null +++ b/api/static/bootstrap-icons/crop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/crosshair.svg b/api/static/bootstrap-icons/crosshair.svg new file mode 100644 index 0000000..13bed74 --- /dev/null +++ b/api/static/bootstrap-icons/crosshair.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/crosshair2.svg b/api/static/bootstrap-icons/crosshair2.svg new file mode 100644 index 0000000..3c28586 --- /dev/null +++ b/api/static/bootstrap-icons/crosshair2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cup-fill.svg b/api/static/bootstrap-icons/cup-fill.svg new file mode 100644 index 0000000..7173787 --- /dev/null +++ b/api/static/bootstrap-icons/cup-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cup-hot-fill.svg b/api/static/bootstrap-icons/cup-hot-fill.svg new file mode 100644 index 0000000..9d7c465 --- /dev/null +++ b/api/static/bootstrap-icons/cup-hot-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cup-hot.svg b/api/static/bootstrap-icons/cup-hot.svg new file mode 100644 index 0000000..a6f7e89 --- /dev/null +++ b/api/static/bootstrap-icons/cup-hot.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cup-straw.svg b/api/static/bootstrap-icons/cup-straw.svg new file mode 100644 index 0000000..9388da9 --- /dev/null +++ b/api/static/bootstrap-icons/cup-straw.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cup.svg b/api/static/bootstrap-icons/cup.svg new file mode 100644 index 0000000..2694ac8 --- /dev/null +++ b/api/static/bootstrap-icons/cup.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-bitcoin.svg b/api/static/bootstrap-icons/currency-bitcoin.svg new file mode 100644 index 0000000..0477ff8 --- /dev/null +++ b/api/static/bootstrap-icons/currency-bitcoin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-dollar.svg b/api/static/bootstrap-icons/currency-dollar.svg new file mode 100644 index 0000000..7ead9a7 --- /dev/null +++ b/api/static/bootstrap-icons/currency-dollar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-euro.svg b/api/static/bootstrap-icons/currency-euro.svg new file mode 100644 index 0000000..90c83d5 --- /dev/null +++ b/api/static/bootstrap-icons/currency-euro.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-exchange.svg b/api/static/bootstrap-icons/currency-exchange.svg new file mode 100644 index 0000000..e332aa7 --- /dev/null +++ b/api/static/bootstrap-icons/currency-exchange.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-pound.svg b/api/static/bootstrap-icons/currency-pound.svg new file mode 100644 index 0000000..4650876 --- /dev/null +++ b/api/static/bootstrap-icons/currency-pound.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-rupee.svg b/api/static/bootstrap-icons/currency-rupee.svg new file mode 100644 index 0000000..4fdf9a2 --- /dev/null +++ b/api/static/bootstrap-icons/currency-rupee.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/currency-yen.svg b/api/static/bootstrap-icons/currency-yen.svg new file mode 100644 index 0000000..5bbf1a2 --- /dev/null +++ b/api/static/bootstrap-icons/currency-yen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cursor-fill.svg b/api/static/bootstrap-icons/cursor-fill.svg new file mode 100644 index 0000000..093372b --- /dev/null +++ b/api/static/bootstrap-icons/cursor-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cursor-text.svg b/api/static/bootstrap-icons/cursor-text.svg new file mode 100644 index 0000000..27c057b --- /dev/null +++ b/api/static/bootstrap-icons/cursor-text.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/cursor.svg b/api/static/bootstrap-icons/cursor.svg new file mode 100644 index 0000000..e23e3fd --- /dev/null +++ b/api/static/bootstrap-icons/cursor.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-circle-dotted.svg b/api/static/bootstrap-icons/dash-circle-dotted.svg new file mode 100644 index 0000000..1c011e2 --- /dev/null +++ b/api/static/bootstrap-icons/dash-circle-dotted.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-circle-fill.svg b/api/static/bootstrap-icons/dash-circle-fill.svg new file mode 100644 index 0000000..ac4eae0 --- /dev/null +++ b/api/static/bootstrap-icons/dash-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-circle.svg b/api/static/bootstrap-icons/dash-circle.svg new file mode 100644 index 0000000..c4abdd2 --- /dev/null +++ b/api/static/bootstrap-icons/dash-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-lg.svg b/api/static/bootstrap-icons/dash-lg.svg new file mode 100644 index 0000000..454aa7d --- /dev/null +++ b/api/static/bootstrap-icons/dash-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-square-dotted.svg b/api/static/bootstrap-icons/dash-square-dotted.svg new file mode 100644 index 0000000..90886c3 --- /dev/null +++ b/api/static/bootstrap-icons/dash-square-dotted.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-square-fill.svg b/api/static/bootstrap-icons/dash-square-fill.svg new file mode 100644 index 0000000..dbe0db2 --- /dev/null +++ b/api/static/bootstrap-icons/dash-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash-square.svg b/api/static/bootstrap-icons/dash-square.svg new file mode 100644 index 0000000..9381872 --- /dev/null +++ b/api/static/bootstrap-icons/dash-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dash.svg b/api/static/bootstrap-icons/dash.svg new file mode 100644 index 0000000..c3834b4 --- /dev/null +++ b/api/static/bootstrap-icons/dash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-add.svg b/api/static/bootstrap-icons/database-add.svg new file mode 100644 index 0000000..5f76340 --- /dev/null +++ b/api/static/bootstrap-icons/database-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-check.svg b/api/static/bootstrap-icons/database-check.svg new file mode 100644 index 0000000..29c02b8 --- /dev/null +++ b/api/static/bootstrap-icons/database-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-dash.svg b/api/static/bootstrap-icons/database-dash.svg new file mode 100644 index 0000000..184db0a --- /dev/null +++ b/api/static/bootstrap-icons/database-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-down.svg b/api/static/bootstrap-icons/database-down.svg new file mode 100644 index 0000000..e077452 --- /dev/null +++ b/api/static/bootstrap-icons/database-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-exclamation.svg b/api/static/bootstrap-icons/database-exclamation.svg new file mode 100644 index 0000000..dbde50f --- /dev/null +++ b/api/static/bootstrap-icons/database-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-add.svg b/api/static/bootstrap-icons/database-fill-add.svg new file mode 100644 index 0000000..4273d5d --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-check.svg b/api/static/bootstrap-icons/database-fill-check.svg new file mode 100644 index 0000000..7690eed --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-dash.svg b/api/static/bootstrap-icons/database-fill-dash.svg new file mode 100644 index 0000000..48c468d --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-down.svg b/api/static/bootstrap-icons/database-fill-down.svg new file mode 100644 index 0000000..c3560d8 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-exclamation.svg b/api/static/bootstrap-icons/database-fill-exclamation.svg new file mode 100644 index 0000000..00073d0 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-exclamation.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-gear.svg b/api/static/bootstrap-icons/database-fill-gear.svg new file mode 100644 index 0000000..94fc2e6 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-lock.svg b/api/static/bootstrap-icons/database-fill-lock.svg new file mode 100644 index 0000000..a948205 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-lock.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-slash.svg b/api/static/bootstrap-icons/database-fill-slash.svg new file mode 100644 index 0000000..467e6bb --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-up.svg b/api/static/bootstrap-icons/database-fill-up.svg new file mode 100644 index 0000000..07f2d39 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill-x.svg b/api/static/bootstrap-icons/database-fill-x.svg new file mode 100644 index 0000000..73ff269 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-fill.svg b/api/static/bootstrap-icons/database-fill.svg new file mode 100644 index 0000000..8603874 --- /dev/null +++ b/api/static/bootstrap-icons/database-fill.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-gear.svg b/api/static/bootstrap-icons/database-gear.svg new file mode 100644 index 0000000..451763c --- /dev/null +++ b/api/static/bootstrap-icons/database-gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-lock.svg b/api/static/bootstrap-icons/database-lock.svg new file mode 100644 index 0000000..e150cd2 --- /dev/null +++ b/api/static/bootstrap-icons/database-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-slash.svg b/api/static/bootstrap-icons/database-slash.svg new file mode 100644 index 0000000..e0cc9f2 --- /dev/null +++ b/api/static/bootstrap-icons/database-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-up.svg b/api/static/bootstrap-icons/database-up.svg new file mode 100644 index 0000000..63f7a10 --- /dev/null +++ b/api/static/bootstrap-icons/database-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database-x.svg b/api/static/bootstrap-icons/database-x.svg new file mode 100644 index 0000000..f97779b --- /dev/null +++ b/api/static/bootstrap-icons/database-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/database.svg b/api/static/bootstrap-icons/database.svg new file mode 100644 index 0000000..231c50c --- /dev/null +++ b/api/static/bootstrap-icons/database.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/device-hdd-fill.svg b/api/static/bootstrap-icons/device-hdd-fill.svg new file mode 100644 index 0000000..d5380c0 --- /dev/null +++ b/api/static/bootstrap-icons/device-hdd-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/device-hdd.svg b/api/static/bootstrap-icons/device-hdd.svg new file mode 100644 index 0000000..5163a58 --- /dev/null +++ b/api/static/bootstrap-icons/device-hdd.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/device-ssd-fill.svg b/api/static/bootstrap-icons/device-ssd-fill.svg new file mode 100644 index 0000000..0d1f9c3 --- /dev/null +++ b/api/static/bootstrap-icons/device-ssd-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/device-ssd.svg b/api/static/bootstrap-icons/device-ssd.svg new file mode 100644 index 0000000..8405f21 --- /dev/null +++ b/api/static/bootstrap-icons/device-ssd.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diagram-2-fill.svg b/api/static/bootstrap-icons/diagram-2-fill.svg new file mode 100644 index 0000000..397ae15 --- /dev/null +++ b/api/static/bootstrap-icons/diagram-2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diagram-2.svg b/api/static/bootstrap-icons/diagram-2.svg new file mode 100644 index 0000000..a6e5439 --- /dev/null +++ b/api/static/bootstrap-icons/diagram-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diagram-3-fill.svg b/api/static/bootstrap-icons/diagram-3-fill.svg new file mode 100644 index 0000000..7e47423 --- /dev/null +++ b/api/static/bootstrap-icons/diagram-3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diagram-3.svg b/api/static/bootstrap-icons/diagram-3.svg new file mode 100644 index 0000000..ee3fd6f --- /dev/null +++ b/api/static/bootstrap-icons/diagram-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diamond-fill.svg b/api/static/bootstrap-icons/diamond-fill.svg new file mode 100644 index 0000000..1f86d1f --- /dev/null +++ b/api/static/bootstrap-icons/diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diamond-half.svg b/api/static/bootstrap-icons/diamond-half.svg new file mode 100644 index 0000000..68254b6 --- /dev/null +++ b/api/static/bootstrap-icons/diamond-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/diamond.svg b/api/static/bootstrap-icons/diamond.svg new file mode 100644 index 0000000..44e2855 --- /dev/null +++ b/api/static/bootstrap-icons/diamond.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-1-fill.svg b/api/static/bootstrap-icons/dice-1-fill.svg new file mode 100644 index 0000000..a32e2cf --- /dev/null +++ b/api/static/bootstrap-icons/dice-1-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-1.svg b/api/static/bootstrap-icons/dice-1.svg new file mode 100644 index 0000000..afc64b0 --- /dev/null +++ b/api/static/bootstrap-icons/dice-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-2-fill.svg b/api/static/bootstrap-icons/dice-2-fill.svg new file mode 100644 index 0000000..131013e --- /dev/null +++ b/api/static/bootstrap-icons/dice-2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-2.svg b/api/static/bootstrap-icons/dice-2.svg new file mode 100644 index 0000000..ba1a79c --- /dev/null +++ b/api/static/bootstrap-icons/dice-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-3-fill.svg b/api/static/bootstrap-icons/dice-3-fill.svg new file mode 100644 index 0000000..158065d --- /dev/null +++ b/api/static/bootstrap-icons/dice-3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-3.svg b/api/static/bootstrap-icons/dice-3.svg new file mode 100644 index 0000000..b64c675 --- /dev/null +++ b/api/static/bootstrap-icons/dice-3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-4-fill.svg b/api/static/bootstrap-icons/dice-4-fill.svg new file mode 100644 index 0000000..7cf6e2c --- /dev/null +++ b/api/static/bootstrap-icons/dice-4-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-4.svg b/api/static/bootstrap-icons/dice-4.svg new file mode 100644 index 0000000..bd8bbf7 --- /dev/null +++ b/api/static/bootstrap-icons/dice-4.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-5-fill.svg b/api/static/bootstrap-icons/dice-5-fill.svg new file mode 100644 index 0000000..289cb45 --- /dev/null +++ b/api/static/bootstrap-icons/dice-5-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-5.svg b/api/static/bootstrap-icons/dice-5.svg new file mode 100644 index 0000000..cc96a35 --- /dev/null +++ b/api/static/bootstrap-icons/dice-5.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-6-fill.svg b/api/static/bootstrap-icons/dice-6-fill.svg new file mode 100644 index 0000000..9b3d652 --- /dev/null +++ b/api/static/bootstrap-icons/dice-6-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dice-6.svg b/api/static/bootstrap-icons/dice-6.svg new file mode 100644 index 0000000..47ba0aa --- /dev/null +++ b/api/static/bootstrap-icons/dice-6.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/disc-fill.svg b/api/static/bootstrap-icons/disc-fill.svg new file mode 100644 index 0000000..0d2d7f1 --- /dev/null +++ b/api/static/bootstrap-icons/disc-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/disc.svg b/api/static/bootstrap-icons/disc.svg new file mode 100644 index 0000000..360034c --- /dev/null +++ b/api/static/bootstrap-icons/disc.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/discord.svg b/api/static/bootstrap-icons/discord.svg new file mode 100644 index 0000000..9905364 --- /dev/null +++ b/api/static/bootstrap-icons/discord.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/display-fill.svg b/api/static/bootstrap-icons/display-fill.svg new file mode 100644 index 0000000..ed8e17e --- /dev/null +++ b/api/static/bootstrap-icons/display-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/display.svg b/api/static/bootstrap-icons/display.svg new file mode 100644 index 0000000..40a7d4d --- /dev/null +++ b/api/static/bootstrap-icons/display.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/displayport-fill.svg b/api/static/bootstrap-icons/displayport-fill.svg new file mode 100644 index 0000000..503a960 --- /dev/null +++ b/api/static/bootstrap-icons/displayport-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/displayport.svg b/api/static/bootstrap-icons/displayport.svg new file mode 100644 index 0000000..6b9e0bf --- /dev/null +++ b/api/static/bootstrap-icons/displayport.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/distribute-horizontal.svg b/api/static/bootstrap-icons/distribute-horizontal.svg new file mode 100644 index 0000000..3f7044f --- /dev/null +++ b/api/static/bootstrap-icons/distribute-horizontal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/distribute-vertical.svg b/api/static/bootstrap-icons/distribute-vertical.svg new file mode 100644 index 0000000..cb77d1e --- /dev/null +++ b/api/static/bootstrap-icons/distribute-vertical.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/door-closed-fill.svg b/api/static/bootstrap-icons/door-closed-fill.svg new file mode 100644 index 0000000..1cad66b --- /dev/null +++ b/api/static/bootstrap-icons/door-closed-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/door-closed.svg b/api/static/bootstrap-icons/door-closed.svg new file mode 100644 index 0000000..e20b918 --- /dev/null +++ b/api/static/bootstrap-icons/door-closed.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/door-open-fill.svg b/api/static/bootstrap-icons/door-open-fill.svg new file mode 100644 index 0000000..38eaff0 --- /dev/null +++ b/api/static/bootstrap-icons/door-open-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/door-open.svg b/api/static/bootstrap-icons/door-open.svg new file mode 100644 index 0000000..328f353 --- /dev/null +++ b/api/static/bootstrap-icons/door-open.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dot.svg b/api/static/bootstrap-icons/dot.svg new file mode 100644 index 0000000..edc674e --- /dev/null +++ b/api/static/bootstrap-icons/dot.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/download.svg b/api/static/bootstrap-icons/download.svg new file mode 100644 index 0000000..90a34a3 --- /dev/null +++ b/api/static/bootstrap-icons/download.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dpad-fill.svg b/api/static/bootstrap-icons/dpad-fill.svg new file mode 100644 index 0000000..1c1153a --- /dev/null +++ b/api/static/bootstrap-icons/dpad-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dpad.svg b/api/static/bootstrap-icons/dpad.svg new file mode 100644 index 0000000..71ddb24 --- /dev/null +++ b/api/static/bootstrap-icons/dpad.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dribbble.svg b/api/static/bootstrap-icons/dribbble.svg new file mode 100644 index 0000000..725ff7f --- /dev/null +++ b/api/static/bootstrap-icons/dribbble.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/dropbox.svg b/api/static/bootstrap-icons/dropbox.svg new file mode 100644 index 0000000..d052f25 --- /dev/null +++ b/api/static/bootstrap-icons/dropbox.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/droplet-fill.svg b/api/static/bootstrap-icons/droplet-fill.svg new file mode 100644 index 0000000..85feddf --- /dev/null +++ b/api/static/bootstrap-icons/droplet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/droplet-half.svg b/api/static/bootstrap-icons/droplet-half.svg new file mode 100644 index 0000000..bcd1c76 --- /dev/null +++ b/api/static/bootstrap-icons/droplet-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/droplet.svg b/api/static/bootstrap-icons/droplet.svg new file mode 100644 index 0000000..204ec67 --- /dev/null +++ b/api/static/bootstrap-icons/droplet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/duffle-fill.svg b/api/static/bootstrap-icons/duffle-fill.svg new file mode 100644 index 0000000..885ee80 --- /dev/null +++ b/api/static/bootstrap-icons/duffle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/duffle.svg b/api/static/bootstrap-icons/duffle.svg new file mode 100644 index 0000000..1180de8 --- /dev/null +++ b/api/static/bootstrap-icons/duffle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ear-fill.svg b/api/static/bootstrap-icons/ear-fill.svg new file mode 100644 index 0000000..2d135d6 --- /dev/null +++ b/api/static/bootstrap-icons/ear-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ear.svg b/api/static/bootstrap-icons/ear.svg new file mode 100644 index 0000000..061fe2f --- /dev/null +++ b/api/static/bootstrap-icons/ear.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/earbuds.svg b/api/static/bootstrap-icons/earbuds.svg new file mode 100644 index 0000000..923bfca --- /dev/null +++ b/api/static/bootstrap-icons/earbuds.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel-fill.svg b/api/static/bootstrap-icons/easel-fill.svg new file mode 100644 index 0000000..8086507 --- /dev/null +++ b/api/static/bootstrap-icons/easel-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel.svg b/api/static/bootstrap-icons/easel.svg new file mode 100644 index 0000000..5c0f5a2 --- /dev/null +++ b/api/static/bootstrap-icons/easel.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel2-fill.svg b/api/static/bootstrap-icons/easel2-fill.svg new file mode 100644 index 0000000..309b438 --- /dev/null +++ b/api/static/bootstrap-icons/easel2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel2.svg b/api/static/bootstrap-icons/easel2.svg new file mode 100644 index 0000000..74372fb --- /dev/null +++ b/api/static/bootstrap-icons/easel2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel3-fill.svg b/api/static/bootstrap-icons/easel3-fill.svg new file mode 100644 index 0000000..fc547ea --- /dev/null +++ b/api/static/bootstrap-icons/easel3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/easel3.svg b/api/static/bootstrap-icons/easel3.svg new file mode 100644 index 0000000..f06a868 --- /dev/null +++ b/api/static/bootstrap-icons/easel3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/egg-fill.svg b/api/static/bootstrap-icons/egg-fill.svg new file mode 100644 index 0000000..b70cf16 --- /dev/null +++ b/api/static/bootstrap-icons/egg-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/egg-fried.svg b/api/static/bootstrap-icons/egg-fried.svg new file mode 100644 index 0000000..b0cefbc --- /dev/null +++ b/api/static/bootstrap-icons/egg-fried.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/egg.svg b/api/static/bootstrap-icons/egg.svg new file mode 100644 index 0000000..f23d8d4 --- /dev/null +++ b/api/static/bootstrap-icons/egg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eject-fill.svg b/api/static/bootstrap-icons/eject-fill.svg new file mode 100644 index 0000000..9604988 --- /dev/null +++ b/api/static/bootstrap-icons/eject-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eject.svg b/api/static/bootstrap-icons/eject.svg new file mode 100644 index 0000000..71a3ab6 --- /dev/null +++ b/api/static/bootstrap-icons/eject.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-angry-fill.svg b/api/static/bootstrap-icons/emoji-angry-fill.svg new file mode 100644 index 0000000..d14d92d --- /dev/null +++ b/api/static/bootstrap-icons/emoji-angry-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-angry.svg b/api/static/bootstrap-icons/emoji-angry.svg new file mode 100644 index 0000000..ee925fe --- /dev/null +++ b/api/static/bootstrap-icons/emoji-angry.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-astonished-fill.svg b/api/static/bootstrap-icons/emoji-astonished-fill.svg new file mode 100644 index 0000000..22a566f --- /dev/null +++ b/api/static/bootstrap-icons/emoji-astonished-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-astonished.svg b/api/static/bootstrap-icons/emoji-astonished.svg new file mode 100644 index 0000000..13f7cdd --- /dev/null +++ b/api/static/bootstrap-icons/emoji-astonished.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-dizzy-fill.svg b/api/static/bootstrap-icons/emoji-dizzy-fill.svg new file mode 100644 index 0000000..98ab490 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-dizzy-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-dizzy.svg b/api/static/bootstrap-icons/emoji-dizzy.svg new file mode 100644 index 0000000..fcef602 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-dizzy.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-expressionless-fill.svg b/api/static/bootstrap-icons/emoji-expressionless-fill.svg new file mode 100644 index 0000000..17ac348 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-expressionless-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-expressionless.svg b/api/static/bootstrap-icons/emoji-expressionless.svg new file mode 100644 index 0000000..8d7f68f --- /dev/null +++ b/api/static/bootstrap-icons/emoji-expressionless.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-frown-fill.svg b/api/static/bootstrap-icons/emoji-frown-fill.svg new file mode 100644 index 0000000..7a16dfb --- /dev/null +++ b/api/static/bootstrap-icons/emoji-frown-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-frown.svg b/api/static/bootstrap-icons/emoji-frown.svg new file mode 100644 index 0000000..696031b --- /dev/null +++ b/api/static/bootstrap-icons/emoji-frown.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-grimace-fill.svg b/api/static/bootstrap-icons/emoji-grimace-fill.svg new file mode 100644 index 0000000..6cabf80 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-grimace-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-grimace.svg b/api/static/bootstrap-icons/emoji-grimace.svg new file mode 100644 index 0000000..75a2a09 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-grimace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-grin-fill.svg b/api/static/bootstrap-icons/emoji-grin-fill.svg new file mode 100644 index 0000000..08c675e --- /dev/null +++ b/api/static/bootstrap-icons/emoji-grin-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-grin.svg b/api/static/bootstrap-icons/emoji-grin.svg new file mode 100644 index 0000000..32bbf51 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-grin.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-heart-eyes-fill.svg b/api/static/bootstrap-icons/emoji-heart-eyes-fill.svg new file mode 100644 index 0000000..d34f6e8 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-heart-eyes-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-heart-eyes.svg b/api/static/bootstrap-icons/emoji-heart-eyes.svg new file mode 100644 index 0000000..5832822 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-heart-eyes.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-kiss-fill.svg b/api/static/bootstrap-icons/emoji-kiss-fill.svg new file mode 100644 index 0000000..15a9cdd --- /dev/null +++ b/api/static/bootstrap-icons/emoji-kiss-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-kiss.svg b/api/static/bootstrap-icons/emoji-kiss.svg new file mode 100644 index 0000000..2348d97 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-kiss.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-laughing-fill.svg b/api/static/bootstrap-icons/emoji-laughing-fill.svg new file mode 100644 index 0000000..0130bf4 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-laughing-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-laughing.svg b/api/static/bootstrap-icons/emoji-laughing.svg new file mode 100644 index 0000000..76b87f5 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-laughing.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-neutral-fill.svg b/api/static/bootstrap-icons/emoji-neutral-fill.svg new file mode 100644 index 0000000..662603a --- /dev/null +++ b/api/static/bootstrap-icons/emoji-neutral-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-neutral.svg b/api/static/bootstrap-icons/emoji-neutral.svg new file mode 100644 index 0000000..d6b60f8 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-neutral.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-smile-fill.svg b/api/static/bootstrap-icons/emoji-smile-fill.svg new file mode 100644 index 0000000..439dff0 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-smile-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-smile-upside-down-fill.svg b/api/static/bootstrap-icons/emoji-smile-upside-down-fill.svg new file mode 100644 index 0000000..2d6acca --- /dev/null +++ b/api/static/bootstrap-icons/emoji-smile-upside-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-smile-upside-down.svg b/api/static/bootstrap-icons/emoji-smile-upside-down.svg new file mode 100644 index 0000000..d2d93ed --- /dev/null +++ b/api/static/bootstrap-icons/emoji-smile-upside-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-smile.svg b/api/static/bootstrap-icons/emoji-smile.svg new file mode 100644 index 0000000..bba78da --- /dev/null +++ b/api/static/bootstrap-icons/emoji-smile.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-sunglasses-fill.svg b/api/static/bootstrap-icons/emoji-sunglasses-fill.svg new file mode 100644 index 0000000..a1318c2 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-sunglasses-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-sunglasses.svg b/api/static/bootstrap-icons/emoji-sunglasses.svg new file mode 100644 index 0000000..188b56c --- /dev/null +++ b/api/static/bootstrap-icons/emoji-sunglasses.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-surprise-fill.svg b/api/static/bootstrap-icons/emoji-surprise-fill.svg new file mode 100644 index 0000000..9f6f620 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-surprise-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-surprise.svg b/api/static/bootstrap-icons/emoji-surprise.svg new file mode 100644 index 0000000..af246bf --- /dev/null +++ b/api/static/bootstrap-icons/emoji-surprise.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-tear-fill.svg b/api/static/bootstrap-icons/emoji-tear-fill.svg new file mode 100644 index 0000000..3ccf87d --- /dev/null +++ b/api/static/bootstrap-icons/emoji-tear-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-tear.svg b/api/static/bootstrap-icons/emoji-tear.svg new file mode 100644 index 0000000..31b6597 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-tear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-wink-fill.svg b/api/static/bootstrap-icons/emoji-wink-fill.svg new file mode 100644 index 0000000..2f3e480 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-wink-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/emoji-wink.svg b/api/static/bootstrap-icons/emoji-wink.svg new file mode 100644 index 0000000..7fe9116 --- /dev/null +++ b/api/static/bootstrap-icons/emoji-wink.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-arrow-down-fill.svg b/api/static/bootstrap-icons/envelope-arrow-down-fill.svg new file mode 100644 index 0000000..a5160e7 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-arrow-down-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-arrow-down.svg b/api/static/bootstrap-icons/envelope-arrow-down.svg new file mode 100644 index 0000000..36b6f54 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-arrow-up-fill.svg b/api/static/bootstrap-icons/envelope-arrow-up-fill.svg new file mode 100644 index 0000000..2757974 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-arrow-up-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-arrow-up.svg b/api/static/bootstrap-icons/envelope-arrow-up.svg new file mode 100644 index 0000000..ff2fae0 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-at-fill.svg b/api/static/bootstrap-icons/envelope-at-fill.svg new file mode 100644 index 0000000..e39ff38 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-at-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-at.svg b/api/static/bootstrap-icons/envelope-at.svg new file mode 100644 index 0000000..163c3ba --- /dev/null +++ b/api/static/bootstrap-icons/envelope-at.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-check-fill.svg b/api/static/bootstrap-icons/envelope-check-fill.svg new file mode 100644 index 0000000..26d753a --- /dev/null +++ b/api/static/bootstrap-icons/envelope-check-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-check.svg b/api/static/bootstrap-icons/envelope-check.svg new file mode 100644 index 0000000..fbc765b --- /dev/null +++ b/api/static/bootstrap-icons/envelope-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-dash-fill.svg b/api/static/bootstrap-icons/envelope-dash-fill.svg new file mode 100644 index 0000000..6e9e745 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-dash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-dash.svg b/api/static/bootstrap-icons/envelope-dash.svg new file mode 100644 index 0000000..d6457cf --- /dev/null +++ b/api/static/bootstrap-icons/envelope-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-exclamation-fill.svg b/api/static/bootstrap-icons/envelope-exclamation-fill.svg new file mode 100644 index 0000000..e14f047 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-exclamation-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-exclamation.svg b/api/static/bootstrap-icons/envelope-exclamation.svg new file mode 100644 index 0000000..4aca0a9 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-fill.svg b/api/static/bootstrap-icons/envelope-fill.svg new file mode 100644 index 0000000..966ef94 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-heart-fill.svg b/api/static/bootstrap-icons/envelope-heart-fill.svg new file mode 100644 index 0000000..4158841 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-heart.svg b/api/static/bootstrap-icons/envelope-heart.svg new file mode 100644 index 0000000..c886df2 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-open-fill.svg b/api/static/bootstrap-icons/envelope-open-fill.svg new file mode 100644 index 0000000..972d0e3 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-open-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-open-heart-fill.svg b/api/static/bootstrap-icons/envelope-open-heart-fill.svg new file mode 100644 index 0000000..13263fa --- /dev/null +++ b/api/static/bootstrap-icons/envelope-open-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-open-heart.svg b/api/static/bootstrap-icons/envelope-open-heart.svg new file mode 100644 index 0000000..7018116 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-open-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-open.svg b/api/static/bootstrap-icons/envelope-open.svg new file mode 100644 index 0000000..3daa2eb --- /dev/null +++ b/api/static/bootstrap-icons/envelope-open.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-paper-fill.svg b/api/static/bootstrap-icons/envelope-paper-fill.svg new file mode 100644 index 0000000..c8a187c --- /dev/null +++ b/api/static/bootstrap-icons/envelope-paper-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-paper-heart-fill.svg b/api/static/bootstrap-icons/envelope-paper-heart-fill.svg new file mode 100644 index 0000000..7f58d57 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-paper-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-paper-heart.svg b/api/static/bootstrap-icons/envelope-paper-heart.svg new file mode 100644 index 0000000..73b91d9 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-paper-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-paper.svg b/api/static/bootstrap-icons/envelope-paper.svg new file mode 100644 index 0000000..20fcc2a --- /dev/null +++ b/api/static/bootstrap-icons/envelope-paper.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-plus-fill.svg b/api/static/bootstrap-icons/envelope-plus-fill.svg new file mode 100644 index 0000000..453a9fd --- /dev/null +++ b/api/static/bootstrap-icons/envelope-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-plus.svg b/api/static/bootstrap-icons/envelope-plus.svg new file mode 100644 index 0000000..7e960a0 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-slash-fill.svg b/api/static/bootstrap-icons/envelope-slash-fill.svg new file mode 100644 index 0000000..90eb7ef --- /dev/null +++ b/api/static/bootstrap-icons/envelope-slash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-slash.svg b/api/static/bootstrap-icons/envelope-slash.svg new file mode 100644 index 0000000..65cb167 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-x-fill.svg b/api/static/bootstrap-icons/envelope-x-fill.svg new file mode 100644 index 0000000..8f6a79c --- /dev/null +++ b/api/static/bootstrap-icons/envelope-x-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope-x.svg b/api/static/bootstrap-icons/envelope-x.svg new file mode 100644 index 0000000..ea74027 --- /dev/null +++ b/api/static/bootstrap-icons/envelope-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/envelope.svg b/api/static/bootstrap-icons/envelope.svg new file mode 100644 index 0000000..78bf1de --- /dev/null +++ b/api/static/bootstrap-icons/envelope.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eraser-fill.svg b/api/static/bootstrap-icons/eraser-fill.svg new file mode 100644 index 0000000..c3866e1 --- /dev/null +++ b/api/static/bootstrap-icons/eraser-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eraser.svg b/api/static/bootstrap-icons/eraser.svg new file mode 100644 index 0000000..fe62336 --- /dev/null +++ b/api/static/bootstrap-icons/eraser.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/escape.svg b/api/static/bootstrap-icons/escape.svg new file mode 100644 index 0000000..66176b6 --- /dev/null +++ b/api/static/bootstrap-icons/escape.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ethernet.svg b/api/static/bootstrap-icons/ethernet.svg new file mode 100644 index 0000000..739a2de --- /dev/null +++ b/api/static/bootstrap-icons/ethernet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ev-front-fill.svg b/api/static/bootstrap-icons/ev-front-fill.svg new file mode 100644 index 0000000..53b947d --- /dev/null +++ b/api/static/bootstrap-icons/ev-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ev-front.svg b/api/static/bootstrap-icons/ev-front.svg new file mode 100644 index 0000000..7f053a5 --- /dev/null +++ b/api/static/bootstrap-icons/ev-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ev-station-fill.svg b/api/static/bootstrap-icons/ev-station-fill.svg new file mode 100644 index 0000000..a1ad007 --- /dev/null +++ b/api/static/bootstrap-icons/ev-station-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ev-station.svg b/api/static/bootstrap-icons/ev-station.svg new file mode 100644 index 0000000..90470f6 --- /dev/null +++ b/api/static/bootstrap-icons/ev-station.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-circle-fill.svg b/api/static/bootstrap-icons/exclamation-circle-fill.svg new file mode 100644 index 0000000..13ce7ab --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-circle.svg b/api/static/bootstrap-icons/exclamation-circle.svg new file mode 100644 index 0000000..f3befe0 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-diamond-fill.svg b/api/static/bootstrap-icons/exclamation-diamond-fill.svg new file mode 100644 index 0000000..cb14aee --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-diamond.svg b/api/static/bootstrap-icons/exclamation-diamond.svg new file mode 100644 index 0000000..4881e6d --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-diamond.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-lg.svg b/api/static/bootstrap-icons/exclamation-lg.svg new file mode 100644 index 0000000..18f6a87 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-octagon-fill.svg b/api/static/bootstrap-icons/exclamation-octagon-fill.svg new file mode 100644 index 0000000..494010b --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-octagon.svg b/api/static/bootstrap-icons/exclamation-octagon.svg new file mode 100644 index 0000000..7f25938 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-octagon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-square-fill.svg b/api/static/bootstrap-icons/exclamation-square-fill.svg new file mode 100644 index 0000000..d80a4e9 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-square.svg b/api/static/bootstrap-icons/exclamation-square.svg new file mode 100644 index 0000000..2a0f2ae --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-triangle-fill.svg b/api/static/bootstrap-icons/exclamation-triangle-fill.svg new file mode 100644 index 0000000..52fd508 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-triangle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation-triangle.svg b/api/static/bootstrap-icons/exclamation-triangle.svg new file mode 100644 index 0000000..506b777 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation-triangle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclamation.svg b/api/static/bootstrap-icons/exclamation.svg new file mode 100644 index 0000000..d39cb95 --- /dev/null +++ b/api/static/bootstrap-icons/exclamation.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exclude.svg b/api/static/bootstrap-icons/exclude.svg new file mode 100644 index 0000000..ef18355 --- /dev/null +++ b/api/static/bootstrap-icons/exclude.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/explicit-fill.svg b/api/static/bootstrap-icons/explicit-fill.svg new file mode 100644 index 0000000..c0cb6f0 --- /dev/null +++ b/api/static/bootstrap-icons/explicit-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/explicit.svg b/api/static/bootstrap-icons/explicit.svg new file mode 100644 index 0000000..a7ffae7 --- /dev/null +++ b/api/static/bootstrap-icons/explicit.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/exposure.svg b/api/static/bootstrap-icons/exposure.svg new file mode 100644 index 0000000..9de0e64 --- /dev/null +++ b/api/static/bootstrap-icons/exposure.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eye-fill.svg b/api/static/bootstrap-icons/eye-fill.svg new file mode 100644 index 0000000..288d2eb --- /dev/null +++ b/api/static/bootstrap-icons/eye-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eye-slash-fill.svg b/api/static/bootstrap-icons/eye-slash-fill.svg new file mode 100644 index 0000000..10cca74 --- /dev/null +++ b/api/static/bootstrap-icons/eye-slash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eye-slash.svg b/api/static/bootstrap-icons/eye-slash.svg new file mode 100644 index 0000000..359c270 --- /dev/null +++ b/api/static/bootstrap-icons/eye-slash.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eye.svg b/api/static/bootstrap-icons/eye.svg new file mode 100644 index 0000000..393b485 --- /dev/null +++ b/api/static/bootstrap-icons/eye.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eyedropper.svg b/api/static/bootstrap-icons/eyedropper.svg new file mode 100644 index 0000000..4579888 --- /dev/null +++ b/api/static/bootstrap-icons/eyedropper.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/eyeglasses.svg b/api/static/bootstrap-icons/eyeglasses.svg new file mode 100644 index 0000000..6b2eb97 --- /dev/null +++ b/api/static/bootstrap-icons/eyeglasses.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/facebook.svg b/api/static/bootstrap-icons/facebook.svg new file mode 100644 index 0000000..5fc7cec --- /dev/null +++ b/api/static/bootstrap-icons/facebook.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fan.svg b/api/static/bootstrap-icons/fan.svg new file mode 100644 index 0000000..ec8fe20 --- /dev/null +++ b/api/static/bootstrap-icons/fan.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward-btn-fill.svg b/api/static/bootstrap-icons/fast-forward-btn-fill.svg new file mode 100644 index 0000000..fd750fe --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward-btn.svg b/api/static/bootstrap-icons/fast-forward-btn.svg new file mode 100644 index 0000000..5e68554 --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward-circle-fill.svg b/api/static/bootstrap-icons/fast-forward-circle-fill.svg new file mode 100644 index 0000000..3946fa3 --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward-circle.svg b/api/static/bootstrap-icons/fast-forward-circle.svg new file mode 100644 index 0000000..e7f7158 --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward-fill.svg b/api/static/bootstrap-icons/fast-forward-fill.svg new file mode 100644 index 0000000..ae17a7e --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fast-forward.svg b/api/static/bootstrap-icons/fast-forward.svg new file mode 100644 index 0000000..2142979 --- /dev/null +++ b/api/static/bootstrap-icons/fast-forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/feather.svg b/api/static/bootstrap-icons/feather.svg new file mode 100644 index 0000000..f0462c2 --- /dev/null +++ b/api/static/bootstrap-icons/feather.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/feather2.svg b/api/static/bootstrap-icons/feather2.svg new file mode 100644 index 0000000..badc17a --- /dev/null +++ b/api/static/bootstrap-icons/feather2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-arrow-down-fill.svg b/api/static/bootstrap-icons/file-arrow-down-fill.svg new file mode 100644 index 0000000..5b5c552 --- /dev/null +++ b/api/static/bootstrap-icons/file-arrow-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-arrow-down.svg b/api/static/bootstrap-icons/file-arrow-down.svg new file mode 100644 index 0000000..f504b98 --- /dev/null +++ b/api/static/bootstrap-icons/file-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-arrow-up-fill.svg b/api/static/bootstrap-icons/file-arrow-up-fill.svg new file mode 100644 index 0000000..ef56199 --- /dev/null +++ b/api/static/bootstrap-icons/file-arrow-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-arrow-up.svg b/api/static/bootstrap-icons/file-arrow-up.svg new file mode 100644 index 0000000..9c88467 --- /dev/null +++ b/api/static/bootstrap-icons/file-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-bar-graph-fill.svg b/api/static/bootstrap-icons/file-bar-graph-fill.svg new file mode 100644 index 0000000..686b60b --- /dev/null +++ b/api/static/bootstrap-icons/file-bar-graph-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-bar-graph.svg b/api/static/bootstrap-icons/file-bar-graph.svg new file mode 100644 index 0000000..f953927 --- /dev/null +++ b/api/static/bootstrap-icons/file-bar-graph.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-binary-fill.svg b/api/static/bootstrap-icons/file-binary-fill.svg new file mode 100644 index 0000000..920c2a7 --- /dev/null +++ b/api/static/bootstrap-icons/file-binary-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-binary.svg b/api/static/bootstrap-icons/file-binary.svg new file mode 100644 index 0000000..0ecece7 --- /dev/null +++ b/api/static/bootstrap-icons/file-binary.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-break-fill.svg b/api/static/bootstrap-icons/file-break-fill.svg new file mode 100644 index 0000000..bdbe1b9 --- /dev/null +++ b/api/static/bootstrap-icons/file-break-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-break.svg b/api/static/bootstrap-icons/file-break.svg new file mode 100644 index 0000000..e94b3a3 --- /dev/null +++ b/api/static/bootstrap-icons/file-break.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-check-fill.svg b/api/static/bootstrap-icons/file-check-fill.svg new file mode 100644 index 0000000..cf165d3 --- /dev/null +++ b/api/static/bootstrap-icons/file-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-check.svg b/api/static/bootstrap-icons/file-check.svg new file mode 100644 index 0000000..10863e1 --- /dev/null +++ b/api/static/bootstrap-icons/file-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-code-fill.svg b/api/static/bootstrap-icons/file-code-fill.svg new file mode 100644 index 0000000..912ed0c --- /dev/null +++ b/api/static/bootstrap-icons/file-code-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-code.svg b/api/static/bootstrap-icons/file-code.svg new file mode 100644 index 0000000..58b0014 --- /dev/null +++ b/api/static/bootstrap-icons/file-code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-diff-fill.svg b/api/static/bootstrap-icons/file-diff-fill.svg new file mode 100644 index 0000000..c108b87 --- /dev/null +++ b/api/static/bootstrap-icons/file-diff-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-diff.svg b/api/static/bootstrap-icons/file-diff.svg new file mode 100644 index 0000000..088c6de --- /dev/null +++ b/api/static/bootstrap-icons/file-diff.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-arrow-down-fill.svg b/api/static/bootstrap-icons/file-earmark-arrow-down-fill.svg new file mode 100644 index 0000000..3941f1f --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-arrow-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-arrow-down.svg b/api/static/bootstrap-icons/file-earmark-arrow-down.svg new file mode 100644 index 0000000..37c4cd5 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-arrow-up-fill.svg b/api/static/bootstrap-icons/file-earmark-arrow-up-fill.svg new file mode 100644 index 0000000..97a339d --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-arrow-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-arrow-up.svg b/api/static/bootstrap-icons/file-earmark-arrow-up.svg new file mode 100644 index 0000000..1c827e9 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-bar-graph-fill.svg b/api/static/bootstrap-icons/file-earmark-bar-graph-fill.svg new file mode 100644 index 0000000..a4c69b5 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-bar-graph-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-bar-graph.svg b/api/static/bootstrap-icons/file-earmark-bar-graph.svg new file mode 100644 index 0000000..d367eca --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-bar-graph.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-binary-fill.svg b/api/static/bootstrap-icons/file-earmark-binary-fill.svg new file mode 100644 index 0000000..a1f9933 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-binary-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-binary.svg b/api/static/bootstrap-icons/file-earmark-binary.svg new file mode 100644 index 0000000..1528578 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-binary.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-break-fill.svg b/api/static/bootstrap-icons/file-earmark-break-fill.svg new file mode 100644 index 0000000..e9aadce --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-break-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-break.svg b/api/static/bootstrap-icons/file-earmark-break.svg new file mode 100644 index 0000000..4874715 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-break.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-check-fill.svg b/api/static/bootstrap-icons/file-earmark-check-fill.svg new file mode 100644 index 0000000..f3e9eb3 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-check.svg b/api/static/bootstrap-icons/file-earmark-check.svg new file mode 100644 index 0000000..dc36963 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-code-fill.svg b/api/static/bootstrap-icons/file-earmark-code-fill.svg new file mode 100644 index 0000000..2c154fa --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-code-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-code.svg b/api/static/bootstrap-icons/file-earmark-code.svg new file mode 100644 index 0000000..ccd3528 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-diff-fill.svg b/api/static/bootstrap-icons/file-earmark-diff-fill.svg new file mode 100644 index 0000000..3b71e66 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-diff-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-diff.svg b/api/static/bootstrap-icons/file-earmark-diff.svg new file mode 100644 index 0000000..97dfc0b --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-diff.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-easel-fill.svg b/api/static/bootstrap-icons/file-earmark-easel-fill.svg new file mode 100644 index 0000000..e74c974 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-easel-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-easel.svg b/api/static/bootstrap-icons/file-earmark-easel.svg new file mode 100644 index 0000000..2feeabc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-easel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-excel-fill.svg b/api/static/bootstrap-icons/file-earmark-excel-fill.svg new file mode 100644 index 0000000..405a572 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-excel-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-excel.svg b/api/static/bootstrap-icons/file-earmark-excel.svg new file mode 100644 index 0000000..5432bcf --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-excel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-fill.svg b/api/static/bootstrap-icons/file-earmark-fill.svg new file mode 100644 index 0000000..2f3ef6c --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-font-fill.svg b/api/static/bootstrap-icons/file-earmark-font-fill.svg new file mode 100644 index 0000000..d3014bf --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-font-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-font.svg b/api/static/bootstrap-icons/file-earmark-font.svg new file mode 100644 index 0000000..c9864cd --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-font.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-image-fill.svg b/api/static/bootstrap-icons/file-earmark-image-fill.svg new file mode 100644 index 0000000..3ec76dc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-image-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-image.svg b/api/static/bootstrap-icons/file-earmark-image.svg new file mode 100644 index 0000000..1c3815d --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-lock-fill.svg b/api/static/bootstrap-icons/file-earmark-lock-fill.svg new file mode 100644 index 0000000..4c45a61 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-lock-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-lock.svg b/api/static/bootstrap-icons/file-earmark-lock.svg new file mode 100644 index 0000000..c8319a6 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-lock2-fill.svg b/api/static/bootstrap-icons/file-earmark-lock2-fill.svg new file mode 100644 index 0000000..76e8bd8 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-lock2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-lock2.svg b/api/static/bootstrap-icons/file-earmark-lock2.svg new file mode 100644 index 0000000..bd8f592 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-lock2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-medical-fill.svg b/api/static/bootstrap-icons/file-earmark-medical-fill.svg new file mode 100644 index 0000000..42a0581 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-medical-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-medical.svg b/api/static/bootstrap-icons/file-earmark-medical.svg new file mode 100644 index 0000000..e24c90c --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-medical.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-minus-fill.svg b/api/static/bootstrap-icons/file-earmark-minus-fill.svg new file mode 100644 index 0000000..a5dca2d --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-minus.svg b/api/static/bootstrap-icons/file-earmark-minus.svg new file mode 100644 index 0000000..cdc0026 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-music-fill.svg b/api/static/bootstrap-icons/file-earmark-music-fill.svg new file mode 100644 index 0000000..b865e4e --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-music-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-music.svg b/api/static/bootstrap-icons/file-earmark-music.svg new file mode 100644 index 0000000..e18ec85 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-music.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-pdf-fill.svg b/api/static/bootstrap-icons/file-earmark-pdf-fill.svg new file mode 100644 index 0000000..219c5a3 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-pdf-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-pdf.svg b/api/static/bootstrap-icons/file-earmark-pdf.svg new file mode 100644 index 0000000..51b9975 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-pdf.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-person-fill.svg b/api/static/bootstrap-icons/file-earmark-person-fill.svg new file mode 100644 index 0000000..49ceda6 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-person-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-person.svg b/api/static/bootstrap-icons/file-earmark-person.svg new file mode 100644 index 0000000..08a78cc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-person.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-play-fill.svg b/api/static/bootstrap-icons/file-earmark-play-fill.svg new file mode 100644 index 0000000..341eb37 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-play.svg b/api/static/bootstrap-icons/file-earmark-play.svg new file mode 100644 index 0000000..abe215b --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-plus-fill.svg b/api/static/bootstrap-icons/file-earmark-plus-fill.svg new file mode 100644 index 0000000..ef99c8a --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-plus.svg b/api/static/bootstrap-icons/file-earmark-plus.svg new file mode 100644 index 0000000..964e855 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-post-fill.svg b/api/static/bootstrap-icons/file-earmark-post-fill.svg new file mode 100644 index 0000000..548773f --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-post-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-post.svg b/api/static/bootstrap-icons/file-earmark-post.svg new file mode 100644 index 0000000..d9f44a1 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-post.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-ppt-fill.svg b/api/static/bootstrap-icons/file-earmark-ppt-fill.svg new file mode 100644 index 0000000..e96a461 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-ppt-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-ppt.svg b/api/static/bootstrap-icons/file-earmark-ppt.svg new file mode 100644 index 0000000..cab71bc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-ppt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-richtext-fill.svg b/api/static/bootstrap-icons/file-earmark-richtext-fill.svg new file mode 100644 index 0000000..55da25c --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-richtext-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-richtext.svg b/api/static/bootstrap-icons/file-earmark-richtext.svg new file mode 100644 index 0000000..3f3a6ad --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-richtext.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-ruled-fill.svg b/api/static/bootstrap-icons/file-earmark-ruled-fill.svg new file mode 100644 index 0000000..ee90c80 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-ruled-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-ruled.svg b/api/static/bootstrap-icons/file-earmark-ruled.svg new file mode 100644 index 0000000..ebd617e --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-ruled.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-slides-fill.svg b/api/static/bootstrap-icons/file-earmark-slides-fill.svg new file mode 100644 index 0000000..e7f76f4 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-slides-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-slides.svg b/api/static/bootstrap-icons/file-earmark-slides.svg new file mode 100644 index 0000000..e643cd3 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-slides.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-spreadsheet-fill.svg b/api/static/bootstrap-icons/file-earmark-spreadsheet-fill.svg new file mode 100644 index 0000000..02ac9ec --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-spreadsheet-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-spreadsheet.svg b/api/static/bootstrap-icons/file-earmark-spreadsheet.svg new file mode 100644 index 0000000..a6bb6e4 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-spreadsheet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-text-fill.svg b/api/static/bootstrap-icons/file-earmark-text-fill.svg new file mode 100644 index 0000000..bfedd6b --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-text.svg b/api/static/bootstrap-icons/file-earmark-text.svg new file mode 100644 index 0000000..7ae53fc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-word-fill.svg b/api/static/bootstrap-icons/file-earmark-word-fill.svg new file mode 100644 index 0000000..259e767 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-word-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-word.svg b/api/static/bootstrap-icons/file-earmark-word.svg new file mode 100644 index 0000000..ef4727c --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-word.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-x-fill.svg b/api/static/bootstrap-icons/file-earmark-x-fill.svg new file mode 100644 index 0000000..f683966 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-x.svg b/api/static/bootstrap-icons/file-earmark-x.svg new file mode 100644 index 0000000..4dd9da9 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-zip-fill.svg b/api/static/bootstrap-icons/file-earmark-zip-fill.svg new file mode 100644 index 0000000..a17fa9e --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-zip-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark-zip.svg b/api/static/bootstrap-icons/file-earmark-zip.svg new file mode 100644 index 0000000..f5f8ccc --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark-zip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-earmark.svg b/api/static/bootstrap-icons/file-earmark.svg new file mode 100644 index 0000000..d8d8774 --- /dev/null +++ b/api/static/bootstrap-icons/file-earmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-easel-fill.svg b/api/static/bootstrap-icons/file-easel-fill.svg new file mode 100644 index 0000000..fa9f915 --- /dev/null +++ b/api/static/bootstrap-icons/file-easel-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-easel.svg b/api/static/bootstrap-icons/file-easel.svg new file mode 100644 index 0000000..6366bc0 --- /dev/null +++ b/api/static/bootstrap-icons/file-easel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-excel-fill.svg b/api/static/bootstrap-icons/file-excel-fill.svg new file mode 100644 index 0000000..bddcea2 --- /dev/null +++ b/api/static/bootstrap-icons/file-excel-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-excel.svg b/api/static/bootstrap-icons/file-excel.svg new file mode 100644 index 0000000..8bf2f5e --- /dev/null +++ b/api/static/bootstrap-icons/file-excel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-fill.svg b/api/static/bootstrap-icons/file-fill.svg new file mode 100644 index 0000000..e5f8c4a --- /dev/null +++ b/api/static/bootstrap-icons/file-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-font-fill.svg b/api/static/bootstrap-icons/file-font-fill.svg new file mode 100644 index 0000000..6bda7b1 --- /dev/null +++ b/api/static/bootstrap-icons/file-font-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-font.svg b/api/static/bootstrap-icons/file-font.svg new file mode 100644 index 0000000..b75f9a4 --- /dev/null +++ b/api/static/bootstrap-icons/file-font.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-image-fill.svg b/api/static/bootstrap-icons/file-image-fill.svg new file mode 100644 index 0000000..7c73ece --- /dev/null +++ b/api/static/bootstrap-icons/file-image-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-image.svg b/api/static/bootstrap-icons/file-image.svg new file mode 100644 index 0000000..b063628 --- /dev/null +++ b/api/static/bootstrap-icons/file-image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-lock-fill.svg b/api/static/bootstrap-icons/file-lock-fill.svg new file mode 100644 index 0000000..1f7c3f2 --- /dev/null +++ b/api/static/bootstrap-icons/file-lock-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-lock.svg b/api/static/bootstrap-icons/file-lock.svg new file mode 100644 index 0000000..195deef --- /dev/null +++ b/api/static/bootstrap-icons/file-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-lock2-fill.svg b/api/static/bootstrap-icons/file-lock2-fill.svg new file mode 100644 index 0000000..82426e8 --- /dev/null +++ b/api/static/bootstrap-icons/file-lock2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-lock2.svg b/api/static/bootstrap-icons/file-lock2.svg new file mode 100644 index 0000000..125a747 --- /dev/null +++ b/api/static/bootstrap-icons/file-lock2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-medical-fill.svg b/api/static/bootstrap-icons/file-medical-fill.svg new file mode 100644 index 0000000..2f4d3b2 --- /dev/null +++ b/api/static/bootstrap-icons/file-medical-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-medical.svg b/api/static/bootstrap-icons/file-medical.svg new file mode 100644 index 0000000..07e8495 --- /dev/null +++ b/api/static/bootstrap-icons/file-medical.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-minus-fill.svg b/api/static/bootstrap-icons/file-minus-fill.svg new file mode 100644 index 0000000..99f7d53 --- /dev/null +++ b/api/static/bootstrap-icons/file-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-minus.svg b/api/static/bootstrap-icons/file-minus.svg new file mode 100644 index 0000000..880409b --- /dev/null +++ b/api/static/bootstrap-icons/file-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-music-fill.svg b/api/static/bootstrap-icons/file-music-fill.svg new file mode 100644 index 0000000..38099f3 --- /dev/null +++ b/api/static/bootstrap-icons/file-music-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-music.svg b/api/static/bootstrap-icons/file-music.svg new file mode 100644 index 0000000..a24d41e --- /dev/null +++ b/api/static/bootstrap-icons/file-music.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-pdf-fill.svg b/api/static/bootstrap-icons/file-pdf-fill.svg new file mode 100644 index 0000000..c88d1b8 --- /dev/null +++ b/api/static/bootstrap-icons/file-pdf-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-pdf.svg b/api/static/bootstrap-icons/file-pdf.svg new file mode 100644 index 0000000..e7bdcba --- /dev/null +++ b/api/static/bootstrap-icons/file-pdf.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-person-fill.svg b/api/static/bootstrap-icons/file-person-fill.svg new file mode 100644 index 0000000..c212b00 --- /dev/null +++ b/api/static/bootstrap-icons/file-person-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-person.svg b/api/static/bootstrap-icons/file-person.svg new file mode 100644 index 0000000..e102abf --- /dev/null +++ b/api/static/bootstrap-icons/file-person.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-play-fill.svg b/api/static/bootstrap-icons/file-play-fill.svg new file mode 100644 index 0000000..a6dce8a --- /dev/null +++ b/api/static/bootstrap-icons/file-play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-play.svg b/api/static/bootstrap-icons/file-play.svg new file mode 100644 index 0000000..d5505e3 --- /dev/null +++ b/api/static/bootstrap-icons/file-play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-plus-fill.svg b/api/static/bootstrap-icons/file-plus-fill.svg new file mode 100644 index 0000000..bdb7ee0 --- /dev/null +++ b/api/static/bootstrap-icons/file-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-plus.svg b/api/static/bootstrap-icons/file-plus.svg new file mode 100644 index 0000000..af41ae1 --- /dev/null +++ b/api/static/bootstrap-icons/file-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-post-fill.svg b/api/static/bootstrap-icons/file-post-fill.svg new file mode 100644 index 0000000..336f219 --- /dev/null +++ b/api/static/bootstrap-icons/file-post-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-post.svg b/api/static/bootstrap-icons/file-post.svg new file mode 100644 index 0000000..6807724 --- /dev/null +++ b/api/static/bootstrap-icons/file-post.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-ppt-fill.svg b/api/static/bootstrap-icons/file-ppt-fill.svg new file mode 100644 index 0000000..b8c3973 --- /dev/null +++ b/api/static/bootstrap-icons/file-ppt-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-ppt.svg b/api/static/bootstrap-icons/file-ppt.svg new file mode 100644 index 0000000..bee27d4 --- /dev/null +++ b/api/static/bootstrap-icons/file-ppt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-richtext-fill.svg b/api/static/bootstrap-icons/file-richtext-fill.svg new file mode 100644 index 0000000..a98e5d7 --- /dev/null +++ b/api/static/bootstrap-icons/file-richtext-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-richtext.svg b/api/static/bootstrap-icons/file-richtext.svg new file mode 100644 index 0000000..3ceb420 --- /dev/null +++ b/api/static/bootstrap-icons/file-richtext.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-ruled-fill.svg b/api/static/bootstrap-icons/file-ruled-fill.svg new file mode 100644 index 0000000..8bfe726 --- /dev/null +++ b/api/static/bootstrap-icons/file-ruled-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-ruled.svg b/api/static/bootstrap-icons/file-ruled.svg new file mode 100644 index 0000000..7236cfc --- /dev/null +++ b/api/static/bootstrap-icons/file-ruled.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-slides-fill.svg b/api/static/bootstrap-icons/file-slides-fill.svg new file mode 100644 index 0000000..b75d3f7 --- /dev/null +++ b/api/static/bootstrap-icons/file-slides-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-slides.svg b/api/static/bootstrap-icons/file-slides.svg new file mode 100644 index 0000000..0e63548 --- /dev/null +++ b/api/static/bootstrap-icons/file-slides.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-spreadsheet-fill.svg b/api/static/bootstrap-icons/file-spreadsheet-fill.svg new file mode 100644 index 0000000..6db7eb6 --- /dev/null +++ b/api/static/bootstrap-icons/file-spreadsheet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-spreadsheet.svg b/api/static/bootstrap-icons/file-spreadsheet.svg new file mode 100644 index 0000000..55b53ec --- /dev/null +++ b/api/static/bootstrap-icons/file-spreadsheet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-text-fill.svg b/api/static/bootstrap-icons/file-text-fill.svg new file mode 100644 index 0000000..6da36b2 --- /dev/null +++ b/api/static/bootstrap-icons/file-text-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-text.svg b/api/static/bootstrap-icons/file-text.svg new file mode 100644 index 0000000..95dc704 --- /dev/null +++ b/api/static/bootstrap-icons/file-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-word-fill.svg b/api/static/bootstrap-icons/file-word-fill.svg new file mode 100644 index 0000000..6f578f0 --- /dev/null +++ b/api/static/bootstrap-icons/file-word-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-word.svg b/api/static/bootstrap-icons/file-word.svg new file mode 100644 index 0000000..732b59a --- /dev/null +++ b/api/static/bootstrap-icons/file-word.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-x-fill.svg b/api/static/bootstrap-icons/file-x-fill.svg new file mode 100644 index 0000000..0455659 --- /dev/null +++ b/api/static/bootstrap-icons/file-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-x.svg b/api/static/bootstrap-icons/file-x.svg new file mode 100644 index 0000000..5ab0b48 --- /dev/null +++ b/api/static/bootstrap-icons/file-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-zip-fill.svg b/api/static/bootstrap-icons/file-zip-fill.svg new file mode 100644 index 0000000..1d80366 --- /dev/null +++ b/api/static/bootstrap-icons/file-zip-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file-zip.svg b/api/static/bootstrap-icons/file-zip.svg new file mode 100644 index 0000000..e3b633e --- /dev/null +++ b/api/static/bootstrap-icons/file-zip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/file.svg b/api/static/bootstrap-icons/file.svg new file mode 100644 index 0000000..4a5dd73 --- /dev/null +++ b/api/static/bootstrap-icons/file.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/files-alt.svg b/api/static/bootstrap-icons/files-alt.svg new file mode 100644 index 0000000..b42d764 --- /dev/null +++ b/api/static/bootstrap-icons/files-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/files.svg b/api/static/bootstrap-icons/files.svg new file mode 100644 index 0000000..6170ab5 --- /dev/null +++ b/api/static/bootstrap-icons/files.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-aac.svg b/api/static/bootstrap-icons/filetype-aac.svg new file mode 100644 index 0000000..b6a5c47 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-aac.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-ai.svg b/api/static/bootstrap-icons/filetype-ai.svg new file mode 100644 index 0000000..fe2bcaa --- /dev/null +++ b/api/static/bootstrap-icons/filetype-ai.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-bmp.svg b/api/static/bootstrap-icons/filetype-bmp.svg new file mode 100644 index 0000000..587381c --- /dev/null +++ b/api/static/bootstrap-icons/filetype-bmp.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-cs.svg b/api/static/bootstrap-icons/filetype-cs.svg new file mode 100644 index 0000000..90ed8de --- /dev/null +++ b/api/static/bootstrap-icons/filetype-cs.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-css.svg b/api/static/bootstrap-icons/filetype-css.svg new file mode 100644 index 0000000..8f0864f --- /dev/null +++ b/api/static/bootstrap-icons/filetype-css.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-csv.svg b/api/static/bootstrap-icons/filetype-csv.svg new file mode 100644 index 0000000..fa097aa --- /dev/null +++ b/api/static/bootstrap-icons/filetype-csv.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-doc.svg b/api/static/bootstrap-icons/filetype-doc.svg new file mode 100644 index 0000000..f75847f --- /dev/null +++ b/api/static/bootstrap-icons/filetype-doc.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-docx.svg b/api/static/bootstrap-icons/filetype-docx.svg new file mode 100644 index 0000000..1b6c172 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-docx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-exe.svg b/api/static/bootstrap-icons/filetype-exe.svg new file mode 100644 index 0000000..cdafeb1 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-exe.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-gif.svg b/api/static/bootstrap-icons/filetype-gif.svg new file mode 100644 index 0000000..b39234f --- /dev/null +++ b/api/static/bootstrap-icons/filetype-gif.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-heic.svg b/api/static/bootstrap-icons/filetype-heic.svg new file mode 100644 index 0000000..a022060 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-heic.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-html.svg b/api/static/bootstrap-icons/filetype-html.svg new file mode 100644 index 0000000..1661a94 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-html.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-java.svg b/api/static/bootstrap-icons/filetype-java.svg new file mode 100644 index 0000000..eeeab41 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-java.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-jpg.svg b/api/static/bootstrap-icons/filetype-jpg.svg new file mode 100644 index 0000000..7d939ec --- /dev/null +++ b/api/static/bootstrap-icons/filetype-jpg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-js.svg b/api/static/bootstrap-icons/filetype-js.svg new file mode 100644 index 0000000..4f4a00c --- /dev/null +++ b/api/static/bootstrap-icons/filetype-js.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-json.svg b/api/static/bootstrap-icons/filetype-json.svg new file mode 100644 index 0000000..a4ccced --- /dev/null +++ b/api/static/bootstrap-icons/filetype-json.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-jsx.svg b/api/static/bootstrap-icons/filetype-jsx.svg new file mode 100644 index 0000000..256b5c5 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-jsx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-key.svg b/api/static/bootstrap-icons/filetype-key.svg new file mode 100644 index 0000000..d164bc8 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-key.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-m4p.svg b/api/static/bootstrap-icons/filetype-m4p.svg new file mode 100644 index 0000000..ae8f611 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-m4p.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-md.svg b/api/static/bootstrap-icons/filetype-md.svg new file mode 100644 index 0000000..40e5139 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-md.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-mdx.svg b/api/static/bootstrap-icons/filetype-mdx.svg new file mode 100644 index 0000000..43a9153 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-mdx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-mov.svg b/api/static/bootstrap-icons/filetype-mov.svg new file mode 100644 index 0000000..27e6391 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-mov.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-mp3.svg b/api/static/bootstrap-icons/filetype-mp3.svg new file mode 100644 index 0000000..f25e6a8 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-mp3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-mp4.svg b/api/static/bootstrap-icons/filetype-mp4.svg new file mode 100644 index 0000000..d27e9ff --- /dev/null +++ b/api/static/bootstrap-icons/filetype-mp4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-otf.svg b/api/static/bootstrap-icons/filetype-otf.svg new file mode 100644 index 0000000..f16eb61 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-otf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-pdf.svg b/api/static/bootstrap-icons/filetype-pdf.svg new file mode 100644 index 0000000..e8bb772 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-pdf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-php.svg b/api/static/bootstrap-icons/filetype-php.svg new file mode 100644 index 0000000..4d532df --- /dev/null +++ b/api/static/bootstrap-icons/filetype-php.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-png.svg b/api/static/bootstrap-icons/filetype-png.svg new file mode 100644 index 0000000..659e266 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-png.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-ppt.svg b/api/static/bootstrap-icons/filetype-ppt.svg new file mode 100644 index 0000000..e53b1ec --- /dev/null +++ b/api/static/bootstrap-icons/filetype-ppt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-pptx.svg b/api/static/bootstrap-icons/filetype-pptx.svg new file mode 100644 index 0000000..f68e939 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-pptx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-psd.svg b/api/static/bootstrap-icons/filetype-psd.svg new file mode 100644 index 0000000..6fefd08 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-psd.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-py.svg b/api/static/bootstrap-icons/filetype-py.svg new file mode 100644 index 0000000..14fd4ef --- /dev/null +++ b/api/static/bootstrap-icons/filetype-py.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-raw.svg b/api/static/bootstrap-icons/filetype-raw.svg new file mode 100644 index 0000000..da98185 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-raw.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-rb.svg b/api/static/bootstrap-icons/filetype-rb.svg new file mode 100644 index 0000000..3466a1f --- /dev/null +++ b/api/static/bootstrap-icons/filetype-rb.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-sass.svg b/api/static/bootstrap-icons/filetype-sass.svg new file mode 100644 index 0000000..3632662 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-sass.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-scss.svg b/api/static/bootstrap-icons/filetype-scss.svg new file mode 100644 index 0000000..8d1935f --- /dev/null +++ b/api/static/bootstrap-icons/filetype-scss.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-sh.svg b/api/static/bootstrap-icons/filetype-sh.svg new file mode 100644 index 0000000..592c408 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-sh.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-sql.svg b/api/static/bootstrap-icons/filetype-sql.svg new file mode 100644 index 0000000..814137d --- /dev/null +++ b/api/static/bootstrap-icons/filetype-sql.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-svg.svg b/api/static/bootstrap-icons/filetype-svg.svg new file mode 100644 index 0000000..222d9ac --- /dev/null +++ b/api/static/bootstrap-icons/filetype-svg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-tiff.svg b/api/static/bootstrap-icons/filetype-tiff.svg new file mode 100644 index 0000000..e101575 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-tiff.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-tsx.svg b/api/static/bootstrap-icons/filetype-tsx.svg new file mode 100644 index 0000000..73dd643 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-tsx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-ttf.svg b/api/static/bootstrap-icons/filetype-ttf.svg new file mode 100644 index 0000000..9c93584 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-ttf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-txt.svg b/api/static/bootstrap-icons/filetype-txt.svg new file mode 100644 index 0000000..1e27bcf --- /dev/null +++ b/api/static/bootstrap-icons/filetype-txt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-wav.svg b/api/static/bootstrap-icons/filetype-wav.svg new file mode 100644 index 0000000..6725640 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-wav.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-woff.svg b/api/static/bootstrap-icons/filetype-woff.svg new file mode 100644 index 0000000..f29a4b1 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-woff.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-xls.svg b/api/static/bootstrap-icons/filetype-xls.svg new file mode 100644 index 0000000..5f79b16 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-xls.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-xlsx.svg b/api/static/bootstrap-icons/filetype-xlsx.svg new file mode 100644 index 0000000..5202bf7 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-xlsx.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-xml.svg b/api/static/bootstrap-icons/filetype-xml.svg new file mode 100644 index 0000000..ba9ffb6 --- /dev/null +++ b/api/static/bootstrap-icons/filetype-xml.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filetype-yml.svg b/api/static/bootstrap-icons/filetype-yml.svg new file mode 100644 index 0000000..17a9ebe --- /dev/null +++ b/api/static/bootstrap-icons/filetype-yml.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/film.svg b/api/static/bootstrap-icons/film.svg new file mode 100644 index 0000000..40c2eb9 --- /dev/null +++ b/api/static/bootstrap-icons/film.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-circle-fill.svg b/api/static/bootstrap-icons/filter-circle-fill.svg new file mode 100644 index 0000000..1aa0f39 --- /dev/null +++ b/api/static/bootstrap-icons/filter-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-circle.svg b/api/static/bootstrap-icons/filter-circle.svg new file mode 100644 index 0000000..42c1b84 --- /dev/null +++ b/api/static/bootstrap-icons/filter-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-left.svg b/api/static/bootstrap-icons/filter-left.svg new file mode 100644 index 0000000..bb1ee92 --- /dev/null +++ b/api/static/bootstrap-icons/filter-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-right.svg b/api/static/bootstrap-icons/filter-right.svg new file mode 100644 index 0000000..6a5083c --- /dev/null +++ b/api/static/bootstrap-icons/filter-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-square-fill.svg b/api/static/bootstrap-icons/filter-square-fill.svg new file mode 100644 index 0000000..438b8c2 --- /dev/null +++ b/api/static/bootstrap-icons/filter-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter-square.svg b/api/static/bootstrap-icons/filter-square.svg new file mode 100644 index 0000000..d243b0b --- /dev/null +++ b/api/static/bootstrap-icons/filter-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/filter.svg b/api/static/bootstrap-icons/filter.svg new file mode 100644 index 0000000..a7d7dac --- /dev/null +++ b/api/static/bootstrap-icons/filter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fingerprint.svg b/api/static/bootstrap-icons/fingerprint.svg new file mode 100644 index 0000000..08252bb --- /dev/null +++ b/api/static/bootstrap-icons/fingerprint.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fire.svg b/api/static/bootstrap-icons/fire.svg new file mode 100644 index 0000000..a58e6dd --- /dev/null +++ b/api/static/bootstrap-icons/fire.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/flag-fill.svg b/api/static/bootstrap-icons/flag-fill.svg new file mode 100644 index 0000000..8b92331 --- /dev/null +++ b/api/static/bootstrap-icons/flag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/flag.svg b/api/static/bootstrap-icons/flag.svg new file mode 100644 index 0000000..f8b6dab --- /dev/null +++ b/api/static/bootstrap-icons/flag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/floppy-fill.svg b/api/static/bootstrap-icons/floppy-fill.svg new file mode 100644 index 0000000..87a43ce --- /dev/null +++ b/api/static/bootstrap-icons/floppy-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/floppy.svg b/api/static/bootstrap-icons/floppy.svg new file mode 100644 index 0000000..65ae562 --- /dev/null +++ b/api/static/bootstrap-icons/floppy.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/floppy2-fill.svg b/api/static/bootstrap-icons/floppy2-fill.svg new file mode 100644 index 0000000..61a6cdb --- /dev/null +++ b/api/static/bootstrap-icons/floppy2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/floppy2.svg b/api/static/bootstrap-icons/floppy2.svg new file mode 100644 index 0000000..2412389 --- /dev/null +++ b/api/static/bootstrap-icons/floppy2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/flower1.svg b/api/static/bootstrap-icons/flower1.svg new file mode 100644 index 0000000..3495858 --- /dev/null +++ b/api/static/bootstrap-icons/flower1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/flower2.svg b/api/static/bootstrap-icons/flower2.svg new file mode 100644 index 0000000..664a9c2 --- /dev/null +++ b/api/static/bootstrap-icons/flower2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/flower3.svg b/api/static/bootstrap-icons/flower3.svg new file mode 100644 index 0000000..66845c3 --- /dev/null +++ b/api/static/bootstrap-icons/flower3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-check.svg b/api/static/bootstrap-icons/folder-check.svg new file mode 100644 index 0000000..57c6466 --- /dev/null +++ b/api/static/bootstrap-icons/folder-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-fill.svg b/api/static/bootstrap-icons/folder-fill.svg new file mode 100644 index 0000000..113350c --- /dev/null +++ b/api/static/bootstrap-icons/folder-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-minus.svg b/api/static/bootstrap-icons/folder-minus.svg new file mode 100644 index 0000000..41db30b --- /dev/null +++ b/api/static/bootstrap-icons/folder-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-plus.svg b/api/static/bootstrap-icons/folder-plus.svg new file mode 100644 index 0000000..85b5a18 --- /dev/null +++ b/api/static/bootstrap-icons/folder-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-symlink-fill.svg b/api/static/bootstrap-icons/folder-symlink-fill.svg new file mode 100644 index 0000000..6407400 --- /dev/null +++ b/api/static/bootstrap-icons/folder-symlink-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-symlink.svg b/api/static/bootstrap-icons/folder-symlink.svg new file mode 100644 index 0000000..7137637 --- /dev/null +++ b/api/static/bootstrap-icons/folder-symlink.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder-x.svg b/api/static/bootstrap-icons/folder-x.svg new file mode 100644 index 0000000..a6ed341 --- /dev/null +++ b/api/static/bootstrap-icons/folder-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder.svg b/api/static/bootstrap-icons/folder.svg new file mode 100644 index 0000000..a30c452 --- /dev/null +++ b/api/static/bootstrap-icons/folder.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder2-open.svg b/api/static/bootstrap-icons/folder2-open.svg new file mode 100644 index 0000000..7ffbb54 --- /dev/null +++ b/api/static/bootstrap-icons/folder2-open.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/folder2.svg b/api/static/bootstrap-icons/folder2.svg new file mode 100644 index 0000000..ce6a1af --- /dev/null +++ b/api/static/bootstrap-icons/folder2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fonts.svg b/api/static/bootstrap-icons/fonts.svg new file mode 100644 index 0000000..5e1f3c3 --- /dev/null +++ b/api/static/bootstrap-icons/fonts.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/forward-fill.svg b/api/static/bootstrap-icons/forward-fill.svg new file mode 100644 index 0000000..27462e2 --- /dev/null +++ b/api/static/bootstrap-icons/forward-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/forward.svg b/api/static/bootstrap-icons/forward.svg new file mode 100644 index 0000000..ffe887c --- /dev/null +++ b/api/static/bootstrap-icons/forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/front.svg b/api/static/bootstrap-icons/front.svg new file mode 100644 index 0000000..59d854e --- /dev/null +++ b/api/static/bootstrap-icons/front.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fuel-pump-diesel-fill.svg b/api/static/bootstrap-icons/fuel-pump-diesel-fill.svg new file mode 100644 index 0000000..997d6f8 --- /dev/null +++ b/api/static/bootstrap-icons/fuel-pump-diesel-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fuel-pump-diesel.svg b/api/static/bootstrap-icons/fuel-pump-diesel.svg new file mode 100644 index 0000000..e170eeb --- /dev/null +++ b/api/static/bootstrap-icons/fuel-pump-diesel.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fuel-pump-fill.svg b/api/static/bootstrap-icons/fuel-pump-fill.svg new file mode 100644 index 0000000..46f92c3 --- /dev/null +++ b/api/static/bootstrap-icons/fuel-pump-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fuel-pump.svg b/api/static/bootstrap-icons/fuel-pump.svg new file mode 100644 index 0000000..1704a6f --- /dev/null +++ b/api/static/bootstrap-icons/fuel-pump.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fullscreen-exit.svg b/api/static/bootstrap-icons/fullscreen-exit.svg new file mode 100644 index 0000000..cfde3a3 --- /dev/null +++ b/api/static/bootstrap-icons/fullscreen-exit.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/fullscreen.svg b/api/static/bootstrap-icons/fullscreen.svg new file mode 100644 index 0000000..d4f8a83 --- /dev/null +++ b/api/static/bootstrap-icons/fullscreen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/funnel-fill.svg b/api/static/bootstrap-icons/funnel-fill.svg new file mode 100644 index 0000000..04d31a6 --- /dev/null +++ b/api/static/bootstrap-icons/funnel-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/funnel.svg b/api/static/bootstrap-icons/funnel.svg new file mode 100644 index 0000000..28bfcf2 --- /dev/null +++ b/api/static/bootstrap-icons/funnel.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gear-fill.svg b/api/static/bootstrap-icons/gear-fill.svg new file mode 100644 index 0000000..ba8e2c5 --- /dev/null +++ b/api/static/bootstrap-icons/gear-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gear-wide-connected.svg b/api/static/bootstrap-icons/gear-wide-connected.svg new file mode 100644 index 0000000..19ddda9 --- /dev/null +++ b/api/static/bootstrap-icons/gear-wide-connected.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gear-wide.svg b/api/static/bootstrap-icons/gear-wide.svg new file mode 100644 index 0000000..c5de567 --- /dev/null +++ b/api/static/bootstrap-icons/gear-wide.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gear.svg b/api/static/bootstrap-icons/gear.svg new file mode 100644 index 0000000..30cfaa3 --- /dev/null +++ b/api/static/bootstrap-icons/gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gem.svg b/api/static/bootstrap-icons/gem.svg new file mode 100644 index 0000000..f56d871 --- /dev/null +++ b/api/static/bootstrap-icons/gem.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gender-ambiguous.svg b/api/static/bootstrap-icons/gender-ambiguous.svg new file mode 100644 index 0000000..674c526 --- /dev/null +++ b/api/static/bootstrap-icons/gender-ambiguous.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gender-female.svg b/api/static/bootstrap-icons/gender-female.svg new file mode 100644 index 0000000..ae6dc27 --- /dev/null +++ b/api/static/bootstrap-icons/gender-female.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gender-male.svg b/api/static/bootstrap-icons/gender-male.svg new file mode 100644 index 0000000..3931921 --- /dev/null +++ b/api/static/bootstrap-icons/gender-male.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gender-neuter.svg b/api/static/bootstrap-icons/gender-neuter.svg new file mode 100644 index 0000000..133db1a --- /dev/null +++ b/api/static/bootstrap-icons/gender-neuter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gender-trans.svg b/api/static/bootstrap-icons/gender-trans.svg new file mode 100644 index 0000000..005e6f8 --- /dev/null +++ b/api/static/bootstrap-icons/gender-trans.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/geo-alt-fill.svg b/api/static/bootstrap-icons/geo-alt-fill.svg new file mode 100644 index 0000000..77f0478 --- /dev/null +++ b/api/static/bootstrap-icons/geo-alt-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/geo-alt.svg b/api/static/bootstrap-icons/geo-alt.svg new file mode 100644 index 0000000..20e18ba --- /dev/null +++ b/api/static/bootstrap-icons/geo-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/geo-fill.svg b/api/static/bootstrap-icons/geo-fill.svg new file mode 100644 index 0000000..9678fa0 --- /dev/null +++ b/api/static/bootstrap-icons/geo-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/geo.svg b/api/static/bootstrap-icons/geo.svg new file mode 100644 index 0000000..2382b91 --- /dev/null +++ b/api/static/bootstrap-icons/geo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gift-fill.svg b/api/static/bootstrap-icons/gift-fill.svg new file mode 100644 index 0000000..bd78a8c --- /dev/null +++ b/api/static/bootstrap-icons/gift-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gift.svg b/api/static/bootstrap-icons/gift.svg new file mode 100644 index 0000000..5921507 --- /dev/null +++ b/api/static/bootstrap-icons/gift.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/git.svg b/api/static/bootstrap-icons/git.svg new file mode 100644 index 0000000..0979cdb --- /dev/null +++ b/api/static/bootstrap-icons/git.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/github.svg b/api/static/bootstrap-icons/github.svg new file mode 100644 index 0000000..013e025 --- /dev/null +++ b/api/static/bootstrap-icons/github.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gitlab.svg b/api/static/bootstrap-icons/gitlab.svg new file mode 100644 index 0000000..f8875f8 --- /dev/null +++ b/api/static/bootstrap-icons/gitlab.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe-americas.svg b/api/static/bootstrap-icons/globe-americas.svg new file mode 100644 index 0000000..5dcc7b2 --- /dev/null +++ b/api/static/bootstrap-icons/globe-americas.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe-asia-australia.svg b/api/static/bootstrap-icons/globe-asia-australia.svg new file mode 100644 index 0000000..8c27539 --- /dev/null +++ b/api/static/bootstrap-icons/globe-asia-australia.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe-central-south-asia.svg b/api/static/bootstrap-icons/globe-central-south-asia.svg new file mode 100644 index 0000000..80a13c1 --- /dev/null +++ b/api/static/bootstrap-icons/globe-central-south-asia.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe-europe-africa.svg b/api/static/bootstrap-icons/globe-europe-africa.svg new file mode 100644 index 0000000..c1c5dcb --- /dev/null +++ b/api/static/bootstrap-icons/globe-europe-africa.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe.svg b/api/static/bootstrap-icons/globe.svg new file mode 100644 index 0000000..835ff66 --- /dev/null +++ b/api/static/bootstrap-icons/globe.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/globe2.svg b/api/static/bootstrap-icons/globe2.svg new file mode 100644 index 0000000..b302063 --- /dev/null +++ b/api/static/bootstrap-icons/globe2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/google-play.svg b/api/static/bootstrap-icons/google-play.svg new file mode 100644 index 0000000..0751c90 --- /dev/null +++ b/api/static/bootstrap-icons/google-play.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/google.svg b/api/static/bootstrap-icons/google.svg new file mode 100644 index 0000000..9f603de --- /dev/null +++ b/api/static/bootstrap-icons/google.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/gpu-card.svg b/api/static/bootstrap-icons/gpu-card.svg new file mode 100644 index 0000000..6ec3152 --- /dev/null +++ b/api/static/bootstrap-icons/gpu-card.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/graph-down-arrow.svg b/api/static/bootstrap-icons/graph-down-arrow.svg new file mode 100644 index 0000000..d811884 --- /dev/null +++ b/api/static/bootstrap-icons/graph-down-arrow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/graph-down.svg b/api/static/bootstrap-icons/graph-down.svg new file mode 100644 index 0000000..47dd647 --- /dev/null +++ b/api/static/bootstrap-icons/graph-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/graph-up-arrow.svg b/api/static/bootstrap-icons/graph-up-arrow.svg new file mode 100644 index 0000000..7eda5f4 --- /dev/null +++ b/api/static/bootstrap-icons/graph-up-arrow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/graph-up.svg b/api/static/bootstrap-icons/graph-up.svg new file mode 100644 index 0000000..15e0bbf --- /dev/null +++ b/api/static/bootstrap-icons/graph-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-1x2-fill.svg b/api/static/bootstrap-icons/grid-1x2-fill.svg new file mode 100644 index 0000000..cc568cb --- /dev/null +++ b/api/static/bootstrap-icons/grid-1x2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-1x2.svg b/api/static/bootstrap-icons/grid-1x2.svg new file mode 100644 index 0000000..69ec79f --- /dev/null +++ b/api/static/bootstrap-icons/grid-1x2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x2-gap-fill.svg b/api/static/bootstrap-icons/grid-3x2-gap-fill.svg new file mode 100644 index 0000000..9c0e855 --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x2-gap-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x2-gap.svg b/api/static/bootstrap-icons/grid-3x2-gap.svg new file mode 100644 index 0000000..730ae65 --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x2-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x2.svg b/api/static/bootstrap-icons/grid-3x2.svg new file mode 100644 index 0000000..55ff9bb --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x3-gap-fill.svg b/api/static/bootstrap-icons/grid-3x3-gap-fill.svg new file mode 100644 index 0000000..982cb70 --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x3-gap-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x3-gap.svg b/api/static/bootstrap-icons/grid-3x3-gap.svg new file mode 100644 index 0000000..bbf8ce4 --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x3-gap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-3x3.svg b/api/static/bootstrap-icons/grid-3x3.svg new file mode 100644 index 0000000..d56aed7 --- /dev/null +++ b/api/static/bootstrap-icons/grid-3x3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid-fill.svg b/api/static/bootstrap-icons/grid-fill.svg new file mode 100644 index 0000000..356cc8f --- /dev/null +++ b/api/static/bootstrap-icons/grid-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grid.svg b/api/static/bootstrap-icons/grid.svg new file mode 100644 index 0000000..eebab73 --- /dev/null +++ b/api/static/bootstrap-icons/grid.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grip-horizontal.svg b/api/static/bootstrap-icons/grip-horizontal.svg new file mode 100644 index 0000000..85f7e27 --- /dev/null +++ b/api/static/bootstrap-icons/grip-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/grip-vertical.svg b/api/static/bootstrap-icons/grip-vertical.svg new file mode 100644 index 0000000..a8718ab --- /dev/null +++ b/api/static/bootstrap-icons/grip-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/h-circle-fill.svg b/api/static/bootstrap-icons/h-circle-fill.svg new file mode 100644 index 0000000..9106472 --- /dev/null +++ b/api/static/bootstrap-icons/h-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/h-circle.svg b/api/static/bootstrap-icons/h-circle.svg new file mode 100644 index 0000000..53c34b6 --- /dev/null +++ b/api/static/bootstrap-icons/h-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/h-square-fill.svg b/api/static/bootstrap-icons/h-square-fill.svg new file mode 100644 index 0000000..06269e0 --- /dev/null +++ b/api/static/bootstrap-icons/h-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/h-square.svg b/api/static/bootstrap-icons/h-square.svg new file mode 100644 index 0000000..2c5ad2c --- /dev/null +++ b/api/static/bootstrap-icons/h-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hammer.svg b/api/static/bootstrap-icons/hammer.svg new file mode 100644 index 0000000..8e07b5b --- /dev/null +++ b/api/static/bootstrap-icons/hammer.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-index-fill.svg b/api/static/bootstrap-icons/hand-index-fill.svg new file mode 100644 index 0000000..b2a7d64 --- /dev/null +++ b/api/static/bootstrap-icons/hand-index-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-index-thumb-fill.svg b/api/static/bootstrap-icons/hand-index-thumb-fill.svg new file mode 100644 index 0000000..774b18e --- /dev/null +++ b/api/static/bootstrap-icons/hand-index-thumb-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-index-thumb.svg b/api/static/bootstrap-icons/hand-index-thumb.svg new file mode 100644 index 0000000..13b5475 --- /dev/null +++ b/api/static/bootstrap-icons/hand-index-thumb.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-index.svg b/api/static/bootstrap-icons/hand-index.svg new file mode 100644 index 0000000..725757b --- /dev/null +++ b/api/static/bootstrap-icons/hand-index.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-thumbs-down-fill.svg b/api/static/bootstrap-icons/hand-thumbs-down-fill.svg new file mode 100644 index 0000000..53584f3 --- /dev/null +++ b/api/static/bootstrap-icons/hand-thumbs-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-thumbs-down.svg b/api/static/bootstrap-icons/hand-thumbs-down.svg new file mode 100644 index 0000000..f87f523 --- /dev/null +++ b/api/static/bootstrap-icons/hand-thumbs-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-thumbs-up-fill.svg b/api/static/bootstrap-icons/hand-thumbs-up-fill.svg new file mode 100644 index 0000000..c68bc07 --- /dev/null +++ b/api/static/bootstrap-icons/hand-thumbs-up-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hand-thumbs-up.svg b/api/static/bootstrap-icons/hand-thumbs-up.svg new file mode 100644 index 0000000..dc46d4d --- /dev/null +++ b/api/static/bootstrap-icons/hand-thumbs-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/handbag-fill.svg b/api/static/bootstrap-icons/handbag-fill.svg new file mode 100644 index 0000000..5f8f23f --- /dev/null +++ b/api/static/bootstrap-icons/handbag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/handbag.svg b/api/static/bootstrap-icons/handbag.svg new file mode 100644 index 0000000..c9ef874 --- /dev/null +++ b/api/static/bootstrap-icons/handbag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hash.svg b/api/static/bootstrap-icons/hash.svg new file mode 100644 index 0000000..f67d000 --- /dev/null +++ b/api/static/bootstrap-icons/hash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-fill.svg b/api/static/bootstrap-icons/hdd-fill.svg new file mode 100644 index 0000000..dbeda24 --- /dev/null +++ b/api/static/bootstrap-icons/hdd-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-network-fill.svg b/api/static/bootstrap-icons/hdd-network-fill.svg new file mode 100644 index 0000000..a74874d --- /dev/null +++ b/api/static/bootstrap-icons/hdd-network-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-network.svg b/api/static/bootstrap-icons/hdd-network.svg new file mode 100644 index 0000000..7223542 --- /dev/null +++ b/api/static/bootstrap-icons/hdd-network.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-rack-fill.svg b/api/static/bootstrap-icons/hdd-rack-fill.svg new file mode 100644 index 0000000..7c33aec --- /dev/null +++ b/api/static/bootstrap-icons/hdd-rack-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-rack.svg b/api/static/bootstrap-icons/hdd-rack.svg new file mode 100644 index 0000000..d19a514 --- /dev/null +++ b/api/static/bootstrap-icons/hdd-rack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-stack-fill.svg b/api/static/bootstrap-icons/hdd-stack-fill.svg new file mode 100644 index 0000000..27e8719 --- /dev/null +++ b/api/static/bootstrap-icons/hdd-stack-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd-stack.svg b/api/static/bootstrap-icons/hdd-stack.svg new file mode 100644 index 0000000..f9095e5 --- /dev/null +++ b/api/static/bootstrap-icons/hdd-stack.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdd.svg b/api/static/bootstrap-icons/hdd.svg new file mode 100644 index 0000000..92358f7 --- /dev/null +++ b/api/static/bootstrap-icons/hdd.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdmi-fill.svg b/api/static/bootstrap-icons/hdmi-fill.svg new file mode 100644 index 0000000..435b39d --- /dev/null +++ b/api/static/bootstrap-icons/hdmi-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hdmi.svg b/api/static/bootstrap-icons/hdmi.svg new file mode 100644 index 0000000..09d0849 --- /dev/null +++ b/api/static/bootstrap-icons/hdmi.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/headphones.svg b/api/static/bootstrap-icons/headphones.svg new file mode 100644 index 0000000..d50b3ee --- /dev/null +++ b/api/static/bootstrap-icons/headphones.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/headset-vr.svg b/api/static/bootstrap-icons/headset-vr.svg new file mode 100644 index 0000000..0498bd6 --- /dev/null +++ b/api/static/bootstrap-icons/headset-vr.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/headset.svg b/api/static/bootstrap-icons/headset.svg new file mode 100644 index 0000000..a921156 --- /dev/null +++ b/api/static/bootstrap-icons/headset.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart-arrow.svg b/api/static/bootstrap-icons/heart-arrow.svg new file mode 100644 index 0000000..45eb6a5 --- /dev/null +++ b/api/static/bootstrap-icons/heart-arrow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart-fill.svg b/api/static/bootstrap-icons/heart-fill.svg new file mode 100644 index 0000000..5e6b8ee --- /dev/null +++ b/api/static/bootstrap-icons/heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart-half.svg b/api/static/bootstrap-icons/heart-half.svg new file mode 100644 index 0000000..2e0dd31 --- /dev/null +++ b/api/static/bootstrap-icons/heart-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart-pulse-fill.svg b/api/static/bootstrap-icons/heart-pulse-fill.svg new file mode 100644 index 0000000..fc5e219 --- /dev/null +++ b/api/static/bootstrap-icons/heart-pulse-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart-pulse.svg b/api/static/bootstrap-icons/heart-pulse.svg new file mode 100644 index 0000000..dd957b3 --- /dev/null +++ b/api/static/bootstrap-icons/heart-pulse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heart.svg b/api/static/bootstrap-icons/heart.svg new file mode 100644 index 0000000..cd8eeb1 --- /dev/null +++ b/api/static/bootstrap-icons/heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heartbreak-fill.svg b/api/static/bootstrap-icons/heartbreak-fill.svg new file mode 100644 index 0000000..335cb6a --- /dev/null +++ b/api/static/bootstrap-icons/heartbreak-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heartbreak.svg b/api/static/bootstrap-icons/heartbreak.svg new file mode 100644 index 0000000..dcffc89 --- /dev/null +++ b/api/static/bootstrap-icons/heartbreak.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hearts.svg b/api/static/bootstrap-icons/hearts.svg new file mode 100644 index 0000000..ebd2dbb --- /dev/null +++ b/api/static/bootstrap-icons/hearts.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heptagon-fill.svg b/api/static/bootstrap-icons/heptagon-fill.svg new file mode 100644 index 0000000..a339328 --- /dev/null +++ b/api/static/bootstrap-icons/heptagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heptagon-half.svg b/api/static/bootstrap-icons/heptagon-half.svg new file mode 100644 index 0000000..b4fadcf --- /dev/null +++ b/api/static/bootstrap-icons/heptagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/heptagon.svg b/api/static/bootstrap-icons/heptagon.svg new file mode 100644 index 0000000..3140b8b --- /dev/null +++ b/api/static/bootstrap-icons/heptagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hexagon-fill.svg b/api/static/bootstrap-icons/hexagon-fill.svg new file mode 100644 index 0000000..50fdbfb --- /dev/null +++ b/api/static/bootstrap-icons/hexagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hexagon-half.svg b/api/static/bootstrap-icons/hexagon-half.svg new file mode 100644 index 0000000..452cb6e --- /dev/null +++ b/api/static/bootstrap-icons/hexagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hexagon.svg b/api/static/bootstrap-icons/hexagon.svg new file mode 100644 index 0000000..6e83939 --- /dev/null +++ b/api/static/bootstrap-icons/hexagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/highlighter.svg b/api/static/bootstrap-icons/highlighter.svg new file mode 100644 index 0000000..e26f1f7 --- /dev/null +++ b/api/static/bootstrap-icons/highlighter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/highlights.svg b/api/static/bootstrap-icons/highlights.svg new file mode 100644 index 0000000..b43fca0 --- /dev/null +++ b/api/static/bootstrap-icons/highlights.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hospital-fill.svg b/api/static/bootstrap-icons/hospital-fill.svg new file mode 100644 index 0000000..55bde0f --- /dev/null +++ b/api/static/bootstrap-icons/hospital-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hospital.svg b/api/static/bootstrap-icons/hospital.svg new file mode 100644 index 0000000..f6bd0da --- /dev/null +++ b/api/static/bootstrap-icons/hospital.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hourglass-bottom.svg b/api/static/bootstrap-icons/hourglass-bottom.svg new file mode 100644 index 0000000..946f882 --- /dev/null +++ b/api/static/bootstrap-icons/hourglass-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hourglass-split.svg b/api/static/bootstrap-icons/hourglass-split.svg new file mode 100644 index 0000000..a9d1c51 --- /dev/null +++ b/api/static/bootstrap-icons/hourglass-split.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hourglass-top.svg b/api/static/bootstrap-icons/hourglass-top.svg new file mode 100644 index 0000000..6a8a4a3 --- /dev/null +++ b/api/static/bootstrap-icons/hourglass-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hourglass.svg b/api/static/bootstrap-icons/hourglass.svg new file mode 100644 index 0000000..44ede0a --- /dev/null +++ b/api/static/bootstrap-icons/hourglass.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-add-fill.svg b/api/static/bootstrap-icons/house-add-fill.svg new file mode 100644 index 0000000..1e814ee --- /dev/null +++ b/api/static/bootstrap-icons/house-add-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-add.svg b/api/static/bootstrap-icons/house-add.svg new file mode 100644 index 0000000..2a89bbe --- /dev/null +++ b/api/static/bootstrap-icons/house-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-check-fill.svg b/api/static/bootstrap-icons/house-check-fill.svg new file mode 100644 index 0000000..f2ddeb9 --- /dev/null +++ b/api/static/bootstrap-icons/house-check-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-check.svg b/api/static/bootstrap-icons/house-check.svg new file mode 100644 index 0000000..5bd7900 --- /dev/null +++ b/api/static/bootstrap-icons/house-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-dash-fill.svg b/api/static/bootstrap-icons/house-dash-fill.svg new file mode 100644 index 0000000..2fa8c57 --- /dev/null +++ b/api/static/bootstrap-icons/house-dash-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-dash.svg b/api/static/bootstrap-icons/house-dash.svg new file mode 100644 index 0000000..b1cb832 --- /dev/null +++ b/api/static/bootstrap-icons/house-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-door-fill.svg b/api/static/bootstrap-icons/house-door-fill.svg new file mode 100644 index 0000000..cf6d439 --- /dev/null +++ b/api/static/bootstrap-icons/house-door-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-door.svg b/api/static/bootstrap-icons/house-door.svg new file mode 100644 index 0000000..daa093b --- /dev/null +++ b/api/static/bootstrap-icons/house-door.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-down-fill.svg b/api/static/bootstrap-icons/house-down-fill.svg new file mode 100644 index 0000000..351904f --- /dev/null +++ b/api/static/bootstrap-icons/house-down-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-down.svg b/api/static/bootstrap-icons/house-down.svg new file mode 100644 index 0000000..4d1d905 --- /dev/null +++ b/api/static/bootstrap-icons/house-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-exclamation-fill.svg b/api/static/bootstrap-icons/house-exclamation-fill.svg new file mode 100644 index 0000000..52fc0ae --- /dev/null +++ b/api/static/bootstrap-icons/house-exclamation-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-exclamation.svg b/api/static/bootstrap-icons/house-exclamation.svg new file mode 100644 index 0000000..6d414f3 --- /dev/null +++ b/api/static/bootstrap-icons/house-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-fill.svg b/api/static/bootstrap-icons/house-fill.svg new file mode 100644 index 0000000..89db164 --- /dev/null +++ b/api/static/bootstrap-icons/house-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-gear-fill.svg b/api/static/bootstrap-icons/house-gear-fill.svg new file mode 100644 index 0000000..9003152 --- /dev/null +++ b/api/static/bootstrap-icons/house-gear-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-gear.svg b/api/static/bootstrap-icons/house-gear.svg new file mode 100644 index 0000000..65b5abb --- /dev/null +++ b/api/static/bootstrap-icons/house-gear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-heart-fill.svg b/api/static/bootstrap-icons/house-heart-fill.svg new file mode 100644 index 0000000..be2e5f4 --- /dev/null +++ b/api/static/bootstrap-icons/house-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-heart.svg b/api/static/bootstrap-icons/house-heart.svg new file mode 100644 index 0000000..ece6c06 --- /dev/null +++ b/api/static/bootstrap-icons/house-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-lock-fill.svg b/api/static/bootstrap-icons/house-lock-fill.svg new file mode 100644 index 0000000..90cc8c7 --- /dev/null +++ b/api/static/bootstrap-icons/house-lock-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-lock.svg b/api/static/bootstrap-icons/house-lock.svg new file mode 100644 index 0000000..8dc5894 --- /dev/null +++ b/api/static/bootstrap-icons/house-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-slash-fill.svg b/api/static/bootstrap-icons/house-slash-fill.svg new file mode 100644 index 0000000..df8d7c6 --- /dev/null +++ b/api/static/bootstrap-icons/house-slash-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-slash.svg b/api/static/bootstrap-icons/house-slash.svg new file mode 100644 index 0000000..a81b0ed --- /dev/null +++ b/api/static/bootstrap-icons/house-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-up-fill.svg b/api/static/bootstrap-icons/house-up-fill.svg new file mode 100644 index 0000000..5e6a801 --- /dev/null +++ b/api/static/bootstrap-icons/house-up-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-up.svg b/api/static/bootstrap-icons/house-up.svg new file mode 100644 index 0000000..da183d2 --- /dev/null +++ b/api/static/bootstrap-icons/house-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-x-fill.svg b/api/static/bootstrap-icons/house-x-fill.svg new file mode 100644 index 0000000..729cdb5 --- /dev/null +++ b/api/static/bootstrap-icons/house-x-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house-x.svg b/api/static/bootstrap-icons/house-x.svg new file mode 100644 index 0000000..68137c0 --- /dev/null +++ b/api/static/bootstrap-icons/house-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/house.svg b/api/static/bootstrap-icons/house.svg new file mode 100644 index 0000000..cb57f68 --- /dev/null +++ b/api/static/bootstrap-icons/house.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/houses-fill.svg b/api/static/bootstrap-icons/houses-fill.svg new file mode 100644 index 0000000..63047bb --- /dev/null +++ b/api/static/bootstrap-icons/houses-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/houses.svg b/api/static/bootstrap-icons/houses.svg new file mode 100644 index 0000000..3a906be --- /dev/null +++ b/api/static/bootstrap-icons/houses.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hr.svg b/api/static/bootstrap-icons/hr.svg new file mode 100644 index 0000000..6e9fbd8 --- /dev/null +++ b/api/static/bootstrap-icons/hr.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hurricane.svg b/api/static/bootstrap-icons/hurricane.svg new file mode 100644 index 0000000..5bd9ae1 --- /dev/null +++ b/api/static/bootstrap-icons/hurricane.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/hypnotize.svg b/api/static/bootstrap-icons/hypnotize.svg new file mode 100644 index 0000000..6a28997 --- /dev/null +++ b/api/static/bootstrap-icons/hypnotize.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/image-alt.svg b/api/static/bootstrap-icons/image-alt.svg new file mode 100644 index 0000000..e56ee20 --- /dev/null +++ b/api/static/bootstrap-icons/image-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/image-fill.svg b/api/static/bootstrap-icons/image-fill.svg new file mode 100644 index 0000000..db26ae8 --- /dev/null +++ b/api/static/bootstrap-icons/image-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/image.svg b/api/static/bootstrap-icons/image.svg new file mode 100644 index 0000000..152c333 --- /dev/null +++ b/api/static/bootstrap-icons/image.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/images.svg b/api/static/bootstrap-icons/images.svg new file mode 100644 index 0000000..adc7abf --- /dev/null +++ b/api/static/bootstrap-icons/images.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/inbox-fill.svg b/api/static/bootstrap-icons/inbox-fill.svg new file mode 100644 index 0000000..7e4816d --- /dev/null +++ b/api/static/bootstrap-icons/inbox-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/inbox.svg b/api/static/bootstrap-icons/inbox.svg new file mode 100644 index 0000000..b60e949 --- /dev/null +++ b/api/static/bootstrap-icons/inbox.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/inboxes-fill.svg b/api/static/bootstrap-icons/inboxes-fill.svg new file mode 100644 index 0000000..4d8c5f7 --- /dev/null +++ b/api/static/bootstrap-icons/inboxes-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/inboxes.svg b/api/static/bootstrap-icons/inboxes.svg new file mode 100644 index 0000000..1a074ac --- /dev/null +++ b/api/static/bootstrap-icons/inboxes.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/incognito.svg b/api/static/bootstrap-icons/incognito.svg new file mode 100644 index 0000000..f2c8f9d --- /dev/null +++ b/api/static/bootstrap-icons/incognito.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/indent.svg b/api/static/bootstrap-icons/indent.svg new file mode 100644 index 0000000..0065aba --- /dev/null +++ b/api/static/bootstrap-icons/indent.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/infinity.svg b/api/static/bootstrap-icons/infinity.svg new file mode 100644 index 0000000..3dca19b --- /dev/null +++ b/api/static/bootstrap-icons/infinity.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info-circle-fill.svg b/api/static/bootstrap-icons/info-circle-fill.svg new file mode 100644 index 0000000..d2e382b --- /dev/null +++ b/api/static/bootstrap-icons/info-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info-circle.svg b/api/static/bootstrap-icons/info-circle.svg new file mode 100644 index 0000000..e2b50eb --- /dev/null +++ b/api/static/bootstrap-icons/info-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info-lg.svg b/api/static/bootstrap-icons/info-lg.svg new file mode 100644 index 0000000..ac064b9 --- /dev/null +++ b/api/static/bootstrap-icons/info-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info-square-fill.svg b/api/static/bootstrap-icons/info-square-fill.svg new file mode 100644 index 0000000..49196b4 --- /dev/null +++ b/api/static/bootstrap-icons/info-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info-square.svg b/api/static/bootstrap-icons/info-square.svg new file mode 100644 index 0000000..b64cfa8 --- /dev/null +++ b/api/static/bootstrap-icons/info-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/info.svg b/api/static/bootstrap-icons/info.svg new file mode 100644 index 0000000..43dc242 --- /dev/null +++ b/api/static/bootstrap-icons/info.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/input-cursor-text.svg b/api/static/bootstrap-icons/input-cursor-text.svg new file mode 100644 index 0000000..fc910f3 --- /dev/null +++ b/api/static/bootstrap-icons/input-cursor-text.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/input-cursor.svg b/api/static/bootstrap-icons/input-cursor.svg new file mode 100644 index 0000000..de6a35f --- /dev/null +++ b/api/static/bootstrap-icons/input-cursor.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/instagram.svg b/api/static/bootstrap-icons/instagram.svg new file mode 100644 index 0000000..855e653 --- /dev/null +++ b/api/static/bootstrap-icons/instagram.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/intersect.svg b/api/static/bootstrap-icons/intersect.svg new file mode 100644 index 0000000..220141d --- /dev/null +++ b/api/static/bootstrap-icons/intersect.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-album.svg b/api/static/bootstrap-icons/journal-album.svg new file mode 100644 index 0000000..de49ccc --- /dev/null +++ b/api/static/bootstrap-icons/journal-album.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-arrow-down.svg b/api/static/bootstrap-icons/journal-arrow-down.svg new file mode 100644 index 0000000..d922f3c --- /dev/null +++ b/api/static/bootstrap-icons/journal-arrow-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-arrow-up.svg b/api/static/bootstrap-icons/journal-arrow-up.svg new file mode 100644 index 0000000..7edc400 --- /dev/null +++ b/api/static/bootstrap-icons/journal-arrow-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-bookmark-fill.svg b/api/static/bootstrap-icons/journal-bookmark-fill.svg new file mode 100644 index 0000000..8e2f17a --- /dev/null +++ b/api/static/bootstrap-icons/journal-bookmark-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-bookmark.svg b/api/static/bootstrap-icons/journal-bookmark.svg new file mode 100644 index 0000000..4a8f4bb --- /dev/null +++ b/api/static/bootstrap-icons/journal-bookmark.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-check.svg b/api/static/bootstrap-icons/journal-check.svg new file mode 100644 index 0000000..eb398b9 --- /dev/null +++ b/api/static/bootstrap-icons/journal-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-code.svg b/api/static/bootstrap-icons/journal-code.svg new file mode 100644 index 0000000..41430d2 --- /dev/null +++ b/api/static/bootstrap-icons/journal-code.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-medical.svg b/api/static/bootstrap-icons/journal-medical.svg new file mode 100644 index 0000000..fb6d942 --- /dev/null +++ b/api/static/bootstrap-icons/journal-medical.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-minus.svg b/api/static/bootstrap-icons/journal-minus.svg new file mode 100644 index 0000000..cbdfdd7 --- /dev/null +++ b/api/static/bootstrap-icons/journal-minus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-plus.svg b/api/static/bootstrap-icons/journal-plus.svg new file mode 100644 index 0000000..5cb82c3 --- /dev/null +++ b/api/static/bootstrap-icons/journal-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-richtext.svg b/api/static/bootstrap-icons/journal-richtext.svg new file mode 100644 index 0000000..db92c70 --- /dev/null +++ b/api/static/bootstrap-icons/journal-richtext.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-text.svg b/api/static/bootstrap-icons/journal-text.svg new file mode 100644 index 0000000..13c58bc --- /dev/null +++ b/api/static/bootstrap-icons/journal-text.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal-x.svg b/api/static/bootstrap-icons/journal-x.svg new file mode 100644 index 0000000..fb3ea9f --- /dev/null +++ b/api/static/bootstrap-icons/journal-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journal.svg b/api/static/bootstrap-icons/journal.svg new file mode 100644 index 0000000..4c166e2 --- /dev/null +++ b/api/static/bootstrap-icons/journal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/journals.svg b/api/static/bootstrap-icons/journals.svg new file mode 100644 index 0000000..6e5386a --- /dev/null +++ b/api/static/bootstrap-icons/journals.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/joystick.svg b/api/static/bootstrap-icons/joystick.svg new file mode 100644 index 0000000..909369e --- /dev/null +++ b/api/static/bootstrap-icons/joystick.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/justify-left.svg b/api/static/bootstrap-icons/justify-left.svg new file mode 100644 index 0000000..17b45e4 --- /dev/null +++ b/api/static/bootstrap-icons/justify-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/justify-right.svg b/api/static/bootstrap-icons/justify-right.svg new file mode 100644 index 0000000..4d96c43 --- /dev/null +++ b/api/static/bootstrap-icons/justify-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/justify.svg b/api/static/bootstrap-icons/justify.svg new file mode 100644 index 0000000..3eedc74 --- /dev/null +++ b/api/static/bootstrap-icons/justify.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/kanban-fill.svg b/api/static/bootstrap-icons/kanban-fill.svg new file mode 100644 index 0000000..a8ed5bb --- /dev/null +++ b/api/static/bootstrap-icons/kanban-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/kanban.svg b/api/static/bootstrap-icons/kanban.svg new file mode 100644 index 0000000..cd13b32 --- /dev/null +++ b/api/static/bootstrap-icons/kanban.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/key-fill.svg b/api/static/bootstrap-icons/key-fill.svg new file mode 100644 index 0000000..fdab8d6 --- /dev/null +++ b/api/static/bootstrap-icons/key-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/key.svg b/api/static/bootstrap-icons/key.svg new file mode 100644 index 0000000..b0d1e16 --- /dev/null +++ b/api/static/bootstrap-icons/key.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/keyboard-fill.svg b/api/static/bootstrap-icons/keyboard-fill.svg new file mode 100644 index 0000000..b46ad2d --- /dev/null +++ b/api/static/bootstrap-icons/keyboard-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/keyboard.svg b/api/static/bootstrap-icons/keyboard.svg new file mode 100644 index 0000000..8ba49b6 --- /dev/null +++ b/api/static/bootstrap-icons/keyboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ladder.svg b/api/static/bootstrap-icons/ladder.svg new file mode 100644 index 0000000..7c6864f --- /dev/null +++ b/api/static/bootstrap-icons/ladder.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lamp-fill.svg b/api/static/bootstrap-icons/lamp-fill.svg new file mode 100644 index 0000000..836b0db --- /dev/null +++ b/api/static/bootstrap-icons/lamp-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lamp.svg b/api/static/bootstrap-icons/lamp.svg new file mode 100644 index 0000000..b3fa1d6 --- /dev/null +++ b/api/static/bootstrap-icons/lamp.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/laptop-fill.svg b/api/static/bootstrap-icons/laptop-fill.svg new file mode 100644 index 0000000..31e5880 --- /dev/null +++ b/api/static/bootstrap-icons/laptop-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/laptop.svg b/api/static/bootstrap-icons/laptop.svg new file mode 100644 index 0000000..8e71020 --- /dev/null +++ b/api/static/bootstrap-icons/laptop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layer-backward.svg b/api/static/bootstrap-icons/layer-backward.svg new file mode 100644 index 0000000..ed43c70 --- /dev/null +++ b/api/static/bootstrap-icons/layer-backward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layer-forward.svg b/api/static/bootstrap-icons/layer-forward.svg new file mode 100644 index 0000000..d0a4abf --- /dev/null +++ b/api/static/bootstrap-icons/layer-forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layers-fill.svg b/api/static/bootstrap-icons/layers-fill.svg new file mode 100644 index 0000000..3b6cdf6 --- /dev/null +++ b/api/static/bootstrap-icons/layers-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layers-half.svg b/api/static/bootstrap-icons/layers-half.svg new file mode 100644 index 0000000..8ceaaad --- /dev/null +++ b/api/static/bootstrap-icons/layers-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layers.svg b/api/static/bootstrap-icons/layers.svg new file mode 100644 index 0000000..52dbe79 --- /dev/null +++ b/api/static/bootstrap-icons/layers.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-sidebar-inset-reverse.svg b/api/static/bootstrap-icons/layout-sidebar-inset-reverse.svg new file mode 100644 index 0000000..0d8dc7f --- /dev/null +++ b/api/static/bootstrap-icons/layout-sidebar-inset-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-sidebar-inset.svg b/api/static/bootstrap-icons/layout-sidebar-inset.svg new file mode 100644 index 0000000..cc19c86 --- /dev/null +++ b/api/static/bootstrap-icons/layout-sidebar-inset.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-sidebar-reverse.svg b/api/static/bootstrap-icons/layout-sidebar-reverse.svg new file mode 100644 index 0000000..7c03f73 --- /dev/null +++ b/api/static/bootstrap-icons/layout-sidebar-reverse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-sidebar.svg b/api/static/bootstrap-icons/layout-sidebar.svg new file mode 100644 index 0000000..ff40858 --- /dev/null +++ b/api/static/bootstrap-icons/layout-sidebar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-split.svg b/api/static/bootstrap-icons/layout-split.svg new file mode 100644 index 0000000..4805b25 --- /dev/null +++ b/api/static/bootstrap-icons/layout-split.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-text-sidebar-reverse.svg b/api/static/bootstrap-icons/layout-text-sidebar-reverse.svg new file mode 100644 index 0000000..9179285 --- /dev/null +++ b/api/static/bootstrap-icons/layout-text-sidebar-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-text-sidebar.svg b/api/static/bootstrap-icons/layout-text-sidebar.svg new file mode 100644 index 0000000..6d89f67 --- /dev/null +++ b/api/static/bootstrap-icons/layout-text-sidebar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-text-window-reverse.svg b/api/static/bootstrap-icons/layout-text-window-reverse.svg new file mode 100644 index 0000000..8258ad3 --- /dev/null +++ b/api/static/bootstrap-icons/layout-text-window-reverse.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-text-window.svg b/api/static/bootstrap-icons/layout-text-window.svg new file mode 100644 index 0000000..4d27cf9 --- /dev/null +++ b/api/static/bootstrap-icons/layout-text-window.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-three-columns.svg b/api/static/bootstrap-icons/layout-three-columns.svg new file mode 100644 index 0000000..7117f07 --- /dev/null +++ b/api/static/bootstrap-icons/layout-three-columns.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/layout-wtf.svg b/api/static/bootstrap-icons/layout-wtf.svg new file mode 100644 index 0000000..fd8f5a1 --- /dev/null +++ b/api/static/bootstrap-icons/layout-wtf.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/life-preserver.svg b/api/static/bootstrap-icons/life-preserver.svg new file mode 100644 index 0000000..7282baa --- /dev/null +++ b/api/static/bootstrap-icons/life-preserver.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightbulb-fill.svg b/api/static/bootstrap-icons/lightbulb-fill.svg new file mode 100644 index 0000000..0ef90ea --- /dev/null +++ b/api/static/bootstrap-icons/lightbulb-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightbulb-off-fill.svg b/api/static/bootstrap-icons/lightbulb-off-fill.svg new file mode 100644 index 0000000..e533739 --- /dev/null +++ b/api/static/bootstrap-icons/lightbulb-off-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightbulb-off.svg b/api/static/bootstrap-icons/lightbulb-off.svg new file mode 100644 index 0000000..15e8200 --- /dev/null +++ b/api/static/bootstrap-icons/lightbulb-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightbulb.svg b/api/static/bootstrap-icons/lightbulb.svg new file mode 100644 index 0000000..67bf5bd --- /dev/null +++ b/api/static/bootstrap-icons/lightbulb.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightning-charge-fill.svg b/api/static/bootstrap-icons/lightning-charge-fill.svg new file mode 100644 index 0000000..5e197fb --- /dev/null +++ b/api/static/bootstrap-icons/lightning-charge-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightning-charge.svg b/api/static/bootstrap-icons/lightning-charge.svg new file mode 100644 index 0000000..5352e72 --- /dev/null +++ b/api/static/bootstrap-icons/lightning-charge.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightning-fill.svg b/api/static/bootstrap-icons/lightning-fill.svg new file mode 100644 index 0000000..b98af68 --- /dev/null +++ b/api/static/bootstrap-icons/lightning-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lightning.svg b/api/static/bootstrap-icons/lightning.svg new file mode 100644 index 0000000..d2faa0f --- /dev/null +++ b/api/static/bootstrap-icons/lightning.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/line.svg b/api/static/bootstrap-icons/line.svg new file mode 100644 index 0000000..3e4bfd3 --- /dev/null +++ b/api/static/bootstrap-icons/line.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/link-45deg.svg b/api/static/bootstrap-icons/link-45deg.svg new file mode 100644 index 0000000..abdc8cb --- /dev/null +++ b/api/static/bootstrap-icons/link-45deg.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/link.svg b/api/static/bootstrap-icons/link.svg new file mode 100644 index 0000000..823e4cd --- /dev/null +++ b/api/static/bootstrap-icons/link.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/linkedin.svg b/api/static/bootstrap-icons/linkedin.svg new file mode 100644 index 0000000..30fc0e3 --- /dev/null +++ b/api/static/bootstrap-icons/linkedin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-check.svg b/api/static/bootstrap-icons/list-check.svg new file mode 100644 index 0000000..e1db377 --- /dev/null +++ b/api/static/bootstrap-icons/list-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-columns-reverse.svg b/api/static/bootstrap-icons/list-columns-reverse.svg new file mode 100644 index 0000000..f5e2876 --- /dev/null +++ b/api/static/bootstrap-icons/list-columns-reverse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-columns.svg b/api/static/bootstrap-icons/list-columns.svg new file mode 100644 index 0000000..07d0b1a --- /dev/null +++ b/api/static/bootstrap-icons/list-columns.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-nested.svg b/api/static/bootstrap-icons/list-nested.svg new file mode 100644 index 0000000..26607c9 --- /dev/null +++ b/api/static/bootstrap-icons/list-nested.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-ol.svg b/api/static/bootstrap-icons/list-ol.svg new file mode 100644 index 0000000..d111f73 --- /dev/null +++ b/api/static/bootstrap-icons/list-ol.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-stars.svg b/api/static/bootstrap-icons/list-stars.svg new file mode 100644 index 0000000..c520bdf --- /dev/null +++ b/api/static/bootstrap-icons/list-stars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-task.svg b/api/static/bootstrap-icons/list-task.svg new file mode 100644 index 0000000..3905d7a --- /dev/null +++ b/api/static/bootstrap-icons/list-task.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list-ul.svg b/api/static/bootstrap-icons/list-ul.svg new file mode 100644 index 0000000..f1cc202 --- /dev/null +++ b/api/static/bootstrap-icons/list-ul.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/list.svg b/api/static/bootstrap-icons/list.svg new file mode 100644 index 0000000..de58858 --- /dev/null +++ b/api/static/bootstrap-icons/list.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lock-fill.svg b/api/static/bootstrap-icons/lock-fill.svg new file mode 100644 index 0000000..69646f6 --- /dev/null +++ b/api/static/bootstrap-icons/lock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lock.svg b/api/static/bootstrap-icons/lock.svg new file mode 100644 index 0000000..9c730b7 --- /dev/null +++ b/api/static/bootstrap-icons/lock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/luggage-fill.svg b/api/static/bootstrap-icons/luggage-fill.svg new file mode 100644 index 0000000..eb7378f --- /dev/null +++ b/api/static/bootstrap-icons/luggage-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/luggage.svg b/api/static/bootstrap-icons/luggage.svg new file mode 100644 index 0000000..ad037ba --- /dev/null +++ b/api/static/bootstrap-icons/luggage.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lungs-fill.svg b/api/static/bootstrap-icons/lungs-fill.svg new file mode 100644 index 0000000..2880fa6 --- /dev/null +++ b/api/static/bootstrap-icons/lungs-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/lungs.svg b/api/static/bootstrap-icons/lungs.svg new file mode 100644 index 0000000..082e7de --- /dev/null +++ b/api/static/bootstrap-icons/lungs.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/magic.svg b/api/static/bootstrap-icons/magic.svg new file mode 100644 index 0000000..0b2f1fd --- /dev/null +++ b/api/static/bootstrap-icons/magic.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/magnet-fill.svg b/api/static/bootstrap-icons/magnet-fill.svg new file mode 100644 index 0000000..026d0de --- /dev/null +++ b/api/static/bootstrap-icons/magnet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/magnet.svg b/api/static/bootstrap-icons/magnet.svg new file mode 100644 index 0000000..36b238b --- /dev/null +++ b/api/static/bootstrap-icons/magnet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mailbox-flag.svg b/api/static/bootstrap-icons/mailbox-flag.svg new file mode 100644 index 0000000..8e24db0 --- /dev/null +++ b/api/static/bootstrap-icons/mailbox-flag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mailbox.svg b/api/static/bootstrap-icons/mailbox.svg new file mode 100644 index 0000000..1048e2a --- /dev/null +++ b/api/static/bootstrap-icons/mailbox.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mailbox2-flag.svg b/api/static/bootstrap-icons/mailbox2-flag.svg new file mode 100644 index 0000000..a253700 --- /dev/null +++ b/api/static/bootstrap-icons/mailbox2-flag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mailbox2.svg b/api/static/bootstrap-icons/mailbox2.svg new file mode 100644 index 0000000..33e22a6 --- /dev/null +++ b/api/static/bootstrap-icons/mailbox2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/map-fill.svg b/api/static/bootstrap-icons/map-fill.svg new file mode 100644 index 0000000..7134540 --- /dev/null +++ b/api/static/bootstrap-icons/map-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/map.svg b/api/static/bootstrap-icons/map.svg new file mode 100644 index 0000000..2b579ce --- /dev/null +++ b/api/static/bootstrap-icons/map.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/markdown-fill.svg b/api/static/bootstrap-icons/markdown-fill.svg new file mode 100644 index 0000000..a932fbb --- /dev/null +++ b/api/static/bootstrap-icons/markdown-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/markdown.svg b/api/static/bootstrap-icons/markdown.svg new file mode 100644 index 0000000..33962c6 --- /dev/null +++ b/api/static/bootstrap-icons/markdown.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/marker-tip.svg b/api/static/bootstrap-icons/marker-tip.svg new file mode 100644 index 0000000..e00f931 --- /dev/null +++ b/api/static/bootstrap-icons/marker-tip.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mask.svg b/api/static/bootstrap-icons/mask.svg new file mode 100644 index 0000000..b51158c --- /dev/null +++ b/api/static/bootstrap-icons/mask.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mastodon.svg b/api/static/bootstrap-icons/mastodon.svg new file mode 100644 index 0000000..a8c2a26 --- /dev/null +++ b/api/static/bootstrap-icons/mastodon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/medium.svg b/api/static/bootstrap-icons/medium.svg new file mode 100644 index 0000000..065ace1 --- /dev/null +++ b/api/static/bootstrap-icons/medium.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/megaphone-fill.svg b/api/static/bootstrap-icons/megaphone-fill.svg new file mode 100644 index 0000000..9f44f2e --- /dev/null +++ b/api/static/bootstrap-icons/megaphone-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/megaphone.svg b/api/static/bootstrap-icons/megaphone.svg new file mode 100644 index 0000000..1cedb30 --- /dev/null +++ b/api/static/bootstrap-icons/megaphone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/memory.svg b/api/static/bootstrap-icons/memory.svg new file mode 100644 index 0000000..48764d2 --- /dev/null +++ b/api/static/bootstrap-icons/memory.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-app-fill.svg b/api/static/bootstrap-icons/menu-app-fill.svg new file mode 100644 index 0000000..65cfdcf --- /dev/null +++ b/api/static/bootstrap-icons/menu-app-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-app.svg b/api/static/bootstrap-icons/menu-app.svg new file mode 100644 index 0000000..ecda144 --- /dev/null +++ b/api/static/bootstrap-icons/menu-app.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-button-fill.svg b/api/static/bootstrap-icons/menu-button-fill.svg new file mode 100644 index 0000000..09b2805 --- /dev/null +++ b/api/static/bootstrap-icons/menu-button-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-button-wide-fill.svg b/api/static/bootstrap-icons/menu-button-wide-fill.svg new file mode 100644 index 0000000..d97ce7f --- /dev/null +++ b/api/static/bootstrap-icons/menu-button-wide-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-button-wide.svg b/api/static/bootstrap-icons/menu-button-wide.svg new file mode 100644 index 0000000..5636c10 --- /dev/null +++ b/api/static/bootstrap-icons/menu-button-wide.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-button.svg b/api/static/bootstrap-icons/menu-button.svg new file mode 100644 index 0000000..ec4c70a --- /dev/null +++ b/api/static/bootstrap-icons/menu-button.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-down.svg b/api/static/bootstrap-icons/menu-down.svg new file mode 100644 index 0000000..e53a5e9 --- /dev/null +++ b/api/static/bootstrap-icons/menu-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/menu-up.svg b/api/static/bootstrap-icons/menu-up.svg new file mode 100644 index 0000000..96ff58b --- /dev/null +++ b/api/static/bootstrap-icons/menu-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/messenger.svg b/api/static/bootstrap-icons/messenger.svg new file mode 100644 index 0000000..e896a79 --- /dev/null +++ b/api/static/bootstrap-icons/messenger.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/meta.svg b/api/static/bootstrap-icons/meta.svg new file mode 100644 index 0000000..03155a1 --- /dev/null +++ b/api/static/bootstrap-icons/meta.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mic-fill.svg b/api/static/bootstrap-icons/mic-fill.svg new file mode 100644 index 0000000..c92ade7 --- /dev/null +++ b/api/static/bootstrap-icons/mic-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mic-mute-fill.svg b/api/static/bootstrap-icons/mic-mute-fill.svg new file mode 100644 index 0000000..a10a1bc --- /dev/null +++ b/api/static/bootstrap-icons/mic-mute-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mic-mute.svg b/api/static/bootstrap-icons/mic-mute.svg new file mode 100644 index 0000000..59b04be --- /dev/null +++ b/api/static/bootstrap-icons/mic-mute.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mic.svg b/api/static/bootstrap-icons/mic.svg new file mode 100644 index 0000000..f07bf14 --- /dev/null +++ b/api/static/bootstrap-icons/mic.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/microsoft-teams.svg b/api/static/bootstrap-icons/microsoft-teams.svg new file mode 100644 index 0000000..6bf3a0c --- /dev/null +++ b/api/static/bootstrap-icons/microsoft-teams.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/microsoft.svg b/api/static/bootstrap-icons/microsoft.svg new file mode 100644 index 0000000..8d2a03c --- /dev/null +++ b/api/static/bootstrap-icons/microsoft.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/minecart-loaded.svg b/api/static/bootstrap-icons/minecart-loaded.svg new file mode 100644 index 0000000..48e523f --- /dev/null +++ b/api/static/bootstrap-icons/minecart-loaded.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/minecart.svg b/api/static/bootstrap-icons/minecart.svg new file mode 100644 index 0000000..c4869c2 --- /dev/null +++ b/api/static/bootstrap-icons/minecart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/modem-fill.svg b/api/static/bootstrap-icons/modem-fill.svg new file mode 100644 index 0000000..a5dd5e2 --- /dev/null +++ b/api/static/bootstrap-icons/modem-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/modem.svg b/api/static/bootstrap-icons/modem.svg new file mode 100644 index 0000000..f90ad6b --- /dev/null +++ b/api/static/bootstrap-icons/modem.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/moisture.svg b/api/static/bootstrap-icons/moisture.svg new file mode 100644 index 0000000..490fb49 --- /dev/null +++ b/api/static/bootstrap-icons/moisture.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/moon-fill.svg b/api/static/bootstrap-icons/moon-fill.svg new file mode 100644 index 0000000..67f6739 --- /dev/null +++ b/api/static/bootstrap-icons/moon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/moon-stars-fill.svg b/api/static/bootstrap-icons/moon-stars-fill.svg new file mode 100644 index 0000000..c50e070 --- /dev/null +++ b/api/static/bootstrap-icons/moon-stars-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/moon-stars.svg b/api/static/bootstrap-icons/moon-stars.svg new file mode 100644 index 0000000..ae138c2 --- /dev/null +++ b/api/static/bootstrap-icons/moon-stars.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/moon.svg b/api/static/bootstrap-icons/moon.svg new file mode 100644 index 0000000..46458ec --- /dev/null +++ b/api/static/bootstrap-icons/moon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mortarboard-fill.svg b/api/static/bootstrap-icons/mortarboard-fill.svg new file mode 100644 index 0000000..02f6c8c --- /dev/null +++ b/api/static/bootstrap-icons/mortarboard-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mortarboard.svg b/api/static/bootstrap-icons/mortarboard.svg new file mode 100644 index 0000000..94f9e97 --- /dev/null +++ b/api/static/bootstrap-icons/mortarboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/motherboard-fill.svg b/api/static/bootstrap-icons/motherboard-fill.svg new file mode 100644 index 0000000..fabff97 --- /dev/null +++ b/api/static/bootstrap-icons/motherboard-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/motherboard.svg b/api/static/bootstrap-icons/motherboard.svg new file mode 100644 index 0000000..d29e255 --- /dev/null +++ b/api/static/bootstrap-icons/motherboard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse-fill.svg b/api/static/bootstrap-icons/mouse-fill.svg new file mode 100644 index 0000000..24d275e --- /dev/null +++ b/api/static/bootstrap-icons/mouse-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse.svg b/api/static/bootstrap-icons/mouse.svg new file mode 100644 index 0000000..e018811 --- /dev/null +++ b/api/static/bootstrap-icons/mouse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse2-fill.svg b/api/static/bootstrap-icons/mouse2-fill.svg new file mode 100644 index 0000000..6277b44 --- /dev/null +++ b/api/static/bootstrap-icons/mouse2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse2.svg b/api/static/bootstrap-icons/mouse2.svg new file mode 100644 index 0000000..fd15e7c --- /dev/null +++ b/api/static/bootstrap-icons/mouse2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse3-fill.svg b/api/static/bootstrap-icons/mouse3-fill.svg new file mode 100644 index 0000000..16c1705 --- /dev/null +++ b/api/static/bootstrap-icons/mouse3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/mouse3.svg b/api/static/bootstrap-icons/mouse3.svg new file mode 100644 index 0000000..548b244 --- /dev/null +++ b/api/static/bootstrap-icons/mouse3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/music-note-beamed.svg b/api/static/bootstrap-icons/music-note-beamed.svg new file mode 100644 index 0000000..9eb1506 --- /dev/null +++ b/api/static/bootstrap-icons/music-note-beamed.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/music-note-list.svg b/api/static/bootstrap-icons/music-note-list.svg new file mode 100644 index 0000000..d33767d --- /dev/null +++ b/api/static/bootstrap-icons/music-note-list.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/music-note.svg b/api/static/bootstrap-icons/music-note.svg new file mode 100644 index 0000000..d6fe21e --- /dev/null +++ b/api/static/bootstrap-icons/music-note.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/music-player-fill.svg b/api/static/bootstrap-icons/music-player-fill.svg new file mode 100644 index 0000000..68a65b5 --- /dev/null +++ b/api/static/bootstrap-icons/music-player-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/music-player.svg b/api/static/bootstrap-icons/music-player.svg new file mode 100644 index 0000000..7eb9c92 --- /dev/null +++ b/api/static/bootstrap-icons/music-player.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/newspaper.svg b/api/static/bootstrap-icons/newspaper.svg new file mode 100644 index 0000000..9a1cf6d --- /dev/null +++ b/api/static/bootstrap-icons/newspaper.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nintendo-switch.svg b/api/static/bootstrap-icons/nintendo-switch.svg new file mode 100644 index 0000000..5849493 --- /dev/null +++ b/api/static/bootstrap-icons/nintendo-switch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/node-minus-fill.svg b/api/static/bootstrap-icons/node-minus-fill.svg new file mode 100644 index 0000000..802d678 --- /dev/null +++ b/api/static/bootstrap-icons/node-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/node-minus.svg b/api/static/bootstrap-icons/node-minus.svg new file mode 100644 index 0000000..8ffaa38 --- /dev/null +++ b/api/static/bootstrap-icons/node-minus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/node-plus-fill.svg b/api/static/bootstrap-icons/node-plus-fill.svg new file mode 100644 index 0000000..9559b26 --- /dev/null +++ b/api/static/bootstrap-icons/node-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/node-plus.svg b/api/static/bootstrap-icons/node-plus.svg new file mode 100644 index 0000000..028ef28 --- /dev/null +++ b/api/static/bootstrap-icons/node-plus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/noise-reduction.svg b/api/static/bootstrap-icons/noise-reduction.svg new file mode 100644 index 0000000..cd5e288 --- /dev/null +++ b/api/static/bootstrap-icons/noise-reduction.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nut-fill.svg b/api/static/bootstrap-icons/nut-fill.svg new file mode 100644 index 0000000..18dfeb1 --- /dev/null +++ b/api/static/bootstrap-icons/nut-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nut.svg b/api/static/bootstrap-icons/nut.svg new file mode 100644 index 0000000..75a401d --- /dev/null +++ b/api/static/bootstrap-icons/nut.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nvidia.svg b/api/static/bootstrap-icons/nvidia.svg new file mode 100644 index 0000000..438a6fc --- /dev/null +++ b/api/static/bootstrap-icons/nvidia.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nvme-fill.svg b/api/static/bootstrap-icons/nvme-fill.svg new file mode 100644 index 0000000..962c3c6 --- /dev/null +++ b/api/static/bootstrap-icons/nvme-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/nvme.svg b/api/static/bootstrap-icons/nvme.svg new file mode 100644 index 0000000..31a2fb6 --- /dev/null +++ b/api/static/bootstrap-icons/nvme.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/octagon-fill.svg b/api/static/bootstrap-icons/octagon-fill.svg new file mode 100644 index 0000000..73c80f0 --- /dev/null +++ b/api/static/bootstrap-icons/octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/octagon-half.svg b/api/static/bootstrap-icons/octagon-half.svg new file mode 100644 index 0000000..fe6eb41 --- /dev/null +++ b/api/static/bootstrap-icons/octagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/octagon.svg b/api/static/bootstrap-icons/octagon.svg new file mode 100644 index 0000000..d2d9c5c --- /dev/null +++ b/api/static/bootstrap-icons/octagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/opencollective.svg b/api/static/bootstrap-icons/opencollective.svg new file mode 100644 index 0000000..b9a0c9f --- /dev/null +++ b/api/static/bootstrap-icons/opencollective.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/optical-audio-fill.svg b/api/static/bootstrap-icons/optical-audio-fill.svg new file mode 100644 index 0000000..9b74060 --- /dev/null +++ b/api/static/bootstrap-icons/optical-audio-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/optical-audio.svg b/api/static/bootstrap-icons/optical-audio.svg new file mode 100644 index 0000000..253d1d7 --- /dev/null +++ b/api/static/bootstrap-icons/optical-audio.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/option.svg b/api/static/bootstrap-icons/option.svg new file mode 100644 index 0000000..32cce4c --- /dev/null +++ b/api/static/bootstrap-icons/option.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/outlet.svg b/api/static/bootstrap-icons/outlet.svg new file mode 100644 index 0000000..7787f35 --- /dev/null +++ b/api/static/bootstrap-icons/outlet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/p-circle-fill.svg b/api/static/bootstrap-icons/p-circle-fill.svg new file mode 100644 index 0000000..e57d158 --- /dev/null +++ b/api/static/bootstrap-icons/p-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/p-circle.svg b/api/static/bootstrap-icons/p-circle.svg new file mode 100644 index 0000000..bfe68d9 --- /dev/null +++ b/api/static/bootstrap-icons/p-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/p-square-fill.svg b/api/static/bootstrap-icons/p-square-fill.svg new file mode 100644 index 0000000..164f5eb --- /dev/null +++ b/api/static/bootstrap-icons/p-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/p-square.svg b/api/static/bootstrap-icons/p-square.svg new file mode 100644 index 0000000..1f6335d --- /dev/null +++ b/api/static/bootstrap-icons/p-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/paint-bucket.svg b/api/static/bootstrap-icons/paint-bucket.svg new file mode 100644 index 0000000..9ac2df4 --- /dev/null +++ b/api/static/bootstrap-icons/paint-bucket.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/palette-fill.svg b/api/static/bootstrap-icons/palette-fill.svg new file mode 100644 index 0000000..d7a6a3b --- /dev/null +++ b/api/static/bootstrap-icons/palette-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/palette.svg b/api/static/bootstrap-icons/palette.svg new file mode 100644 index 0000000..1cd490f --- /dev/null +++ b/api/static/bootstrap-icons/palette.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/palette2.svg b/api/static/bootstrap-icons/palette2.svg new file mode 100644 index 0000000..ae65e88 --- /dev/null +++ b/api/static/bootstrap-icons/palette2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/paperclip.svg b/api/static/bootstrap-icons/paperclip.svg new file mode 100644 index 0000000..c02950b --- /dev/null +++ b/api/static/bootstrap-icons/paperclip.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/paragraph.svg b/api/static/bootstrap-icons/paragraph.svg new file mode 100644 index 0000000..38c65d4 --- /dev/null +++ b/api/static/bootstrap-icons/paragraph.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pass-fill.svg b/api/static/bootstrap-icons/pass-fill.svg new file mode 100644 index 0000000..1e15dd9 --- /dev/null +++ b/api/static/bootstrap-icons/pass-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pass.svg b/api/static/bootstrap-icons/pass.svg new file mode 100644 index 0000000..20a06bc --- /dev/null +++ b/api/static/bootstrap-icons/pass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/passport-fill.svg b/api/static/bootstrap-icons/passport-fill.svg new file mode 100644 index 0000000..d42c1b9 --- /dev/null +++ b/api/static/bootstrap-icons/passport-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/passport.svg b/api/static/bootstrap-icons/passport.svg new file mode 100644 index 0000000..2ecee5a --- /dev/null +++ b/api/static/bootstrap-icons/passport.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-check-fill.svg b/api/static/bootstrap-icons/patch-check-fill.svg new file mode 100644 index 0000000..91283e2 --- /dev/null +++ b/api/static/bootstrap-icons/patch-check-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-check.svg b/api/static/bootstrap-icons/patch-check.svg new file mode 100644 index 0000000..1fd0a2e --- /dev/null +++ b/api/static/bootstrap-icons/patch-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-exclamation-fill.svg b/api/static/bootstrap-icons/patch-exclamation-fill.svg new file mode 100644 index 0000000..e745268 --- /dev/null +++ b/api/static/bootstrap-icons/patch-exclamation-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-exclamation.svg b/api/static/bootstrap-icons/patch-exclamation.svg new file mode 100644 index 0000000..2372cc6 --- /dev/null +++ b/api/static/bootstrap-icons/patch-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-minus-fill.svg b/api/static/bootstrap-icons/patch-minus-fill.svg new file mode 100644 index 0000000..bfeb96e --- /dev/null +++ b/api/static/bootstrap-icons/patch-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-minus.svg b/api/static/bootstrap-icons/patch-minus.svg new file mode 100644 index 0000000..35a380c --- /dev/null +++ b/api/static/bootstrap-icons/patch-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-plus-fill.svg b/api/static/bootstrap-icons/patch-plus-fill.svg new file mode 100644 index 0000000..b475098 --- /dev/null +++ b/api/static/bootstrap-icons/patch-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-plus.svg b/api/static/bootstrap-icons/patch-plus.svg new file mode 100644 index 0000000..4f332da --- /dev/null +++ b/api/static/bootstrap-icons/patch-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-question-fill.svg b/api/static/bootstrap-icons/patch-question-fill.svg new file mode 100644 index 0000000..101c255 --- /dev/null +++ b/api/static/bootstrap-icons/patch-question-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/patch-question.svg b/api/static/bootstrap-icons/patch-question.svg new file mode 100644 index 0000000..a777cef --- /dev/null +++ b/api/static/bootstrap-icons/patch-question.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause-btn-fill.svg b/api/static/bootstrap-icons/pause-btn-fill.svg new file mode 100644 index 0000000..81c0720 --- /dev/null +++ b/api/static/bootstrap-icons/pause-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause-btn.svg b/api/static/bootstrap-icons/pause-btn.svg new file mode 100644 index 0000000..e2d68f9 --- /dev/null +++ b/api/static/bootstrap-icons/pause-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause-circle-fill.svg b/api/static/bootstrap-icons/pause-circle-fill.svg new file mode 100644 index 0000000..90c4ca5 --- /dev/null +++ b/api/static/bootstrap-icons/pause-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause-circle.svg b/api/static/bootstrap-icons/pause-circle.svg new file mode 100644 index 0000000..6d3aeff --- /dev/null +++ b/api/static/bootstrap-icons/pause-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause-fill.svg b/api/static/bootstrap-icons/pause-fill.svg new file mode 100644 index 0000000..92e1588 --- /dev/null +++ b/api/static/bootstrap-icons/pause-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pause.svg b/api/static/bootstrap-icons/pause.svg new file mode 100644 index 0000000..7bfde2c --- /dev/null +++ b/api/static/bootstrap-icons/pause.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/paypal.svg b/api/static/bootstrap-icons/paypal.svg new file mode 100644 index 0000000..b2cec88 --- /dev/null +++ b/api/static/bootstrap-icons/paypal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pc-display-horizontal.svg b/api/static/bootstrap-icons/pc-display-horizontal.svg new file mode 100644 index 0000000..724ba86 --- /dev/null +++ b/api/static/bootstrap-icons/pc-display-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pc-display.svg b/api/static/bootstrap-icons/pc-display.svg new file mode 100644 index 0000000..c3cf9dd --- /dev/null +++ b/api/static/bootstrap-icons/pc-display.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pc-horizontal.svg b/api/static/bootstrap-icons/pc-horizontal.svg new file mode 100644 index 0000000..a8ae72f --- /dev/null +++ b/api/static/bootstrap-icons/pc-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pc.svg b/api/static/bootstrap-icons/pc.svg new file mode 100644 index 0000000..a8c023a --- /dev/null +++ b/api/static/bootstrap-icons/pc.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pci-card-network.svg b/api/static/bootstrap-icons/pci-card-network.svg new file mode 100644 index 0000000..a2b4359 --- /dev/null +++ b/api/static/bootstrap-icons/pci-card-network.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pci-card-sound.svg b/api/static/bootstrap-icons/pci-card-sound.svg new file mode 100644 index 0000000..2bb98f2 --- /dev/null +++ b/api/static/bootstrap-icons/pci-card-sound.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pci-card.svg b/api/static/bootstrap-icons/pci-card.svg new file mode 100644 index 0000000..66ff052 --- /dev/null +++ b/api/static/bootstrap-icons/pci-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/peace-fill.svg b/api/static/bootstrap-icons/peace-fill.svg new file mode 100644 index 0000000..a93e64d --- /dev/null +++ b/api/static/bootstrap-icons/peace-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/peace.svg b/api/static/bootstrap-icons/peace.svg new file mode 100644 index 0000000..22367e0 --- /dev/null +++ b/api/static/bootstrap-icons/peace.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pen-fill.svg b/api/static/bootstrap-icons/pen-fill.svg new file mode 100644 index 0000000..59bbb2e --- /dev/null +++ b/api/static/bootstrap-icons/pen-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pen.svg b/api/static/bootstrap-icons/pen.svg new file mode 100644 index 0000000..a63b250 --- /dev/null +++ b/api/static/bootstrap-icons/pen.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pencil-fill.svg b/api/static/bootstrap-icons/pencil-fill.svg new file mode 100644 index 0000000..4b3bdd7 --- /dev/null +++ b/api/static/bootstrap-icons/pencil-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pencil-square.svg b/api/static/bootstrap-icons/pencil-square.svg new file mode 100644 index 0000000..95c0529 --- /dev/null +++ b/api/static/bootstrap-icons/pencil-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pencil.svg b/api/static/bootstrap-icons/pencil.svg new file mode 100644 index 0000000..0b84e36 --- /dev/null +++ b/api/static/bootstrap-icons/pencil.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pentagon-fill.svg b/api/static/bootstrap-icons/pentagon-fill.svg new file mode 100644 index 0000000..9c80789 --- /dev/null +++ b/api/static/bootstrap-icons/pentagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pentagon-half.svg b/api/static/bootstrap-icons/pentagon-half.svg new file mode 100644 index 0000000..6811a93 --- /dev/null +++ b/api/static/bootstrap-icons/pentagon-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pentagon.svg b/api/static/bootstrap-icons/pentagon.svg new file mode 100644 index 0000000..b6f5fe3 --- /dev/null +++ b/api/static/bootstrap-icons/pentagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/people-fill.svg b/api/static/bootstrap-icons/people-fill.svg new file mode 100644 index 0000000..2b9f768 --- /dev/null +++ b/api/static/bootstrap-icons/people-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/people.svg b/api/static/bootstrap-icons/people.svg new file mode 100644 index 0000000..341861a --- /dev/null +++ b/api/static/bootstrap-icons/people.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/percent.svg b/api/static/bootstrap-icons/percent.svg new file mode 100644 index 0000000..c0fd22d --- /dev/null +++ b/api/static/bootstrap-icons/percent.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-add.svg b/api/static/bootstrap-icons/person-add.svg new file mode 100644 index 0000000..66e2508 --- /dev/null +++ b/api/static/bootstrap-icons/person-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-arms-up.svg b/api/static/bootstrap-icons/person-arms-up.svg new file mode 100644 index 0000000..deb50e8 --- /dev/null +++ b/api/static/bootstrap-icons/person-arms-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-badge-fill.svg b/api/static/bootstrap-icons/person-badge-fill.svg new file mode 100644 index 0000000..7110ed3 --- /dev/null +++ b/api/static/bootstrap-icons/person-badge-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-badge.svg b/api/static/bootstrap-icons/person-badge.svg new file mode 100644 index 0000000..680aee1 --- /dev/null +++ b/api/static/bootstrap-icons/person-badge.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-bounding-box.svg b/api/static/bootstrap-icons/person-bounding-box.svg new file mode 100644 index 0000000..d9be675 --- /dev/null +++ b/api/static/bootstrap-icons/person-bounding-box.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-check-fill.svg b/api/static/bootstrap-icons/person-check-fill.svg new file mode 100644 index 0000000..04b95d3 --- /dev/null +++ b/api/static/bootstrap-icons/person-check-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-check.svg b/api/static/bootstrap-icons/person-check.svg new file mode 100644 index 0000000..39b4219 --- /dev/null +++ b/api/static/bootstrap-icons/person-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-circle.svg b/api/static/bootstrap-icons/person-circle.svg new file mode 100644 index 0000000..a75f25f --- /dev/null +++ b/api/static/bootstrap-icons/person-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-dash-fill.svg b/api/static/bootstrap-icons/person-dash-fill.svg new file mode 100644 index 0000000..9879e6e --- /dev/null +++ b/api/static/bootstrap-icons/person-dash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-dash.svg b/api/static/bootstrap-icons/person-dash.svg new file mode 100644 index 0000000..b61190b --- /dev/null +++ b/api/static/bootstrap-icons/person-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-down.svg b/api/static/bootstrap-icons/person-down.svg new file mode 100644 index 0000000..79cf29a --- /dev/null +++ b/api/static/bootstrap-icons/person-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-exclamation.svg b/api/static/bootstrap-icons/person-exclamation.svg new file mode 100644 index 0000000..46fb506 --- /dev/null +++ b/api/static/bootstrap-icons/person-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-add.svg b/api/static/bootstrap-icons/person-fill-add.svg new file mode 100644 index 0000000..d6d15f9 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-check.svg b/api/static/bootstrap-icons/person-fill-check.svg new file mode 100644 index 0000000..19b88a4 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-dash.svg b/api/static/bootstrap-icons/person-fill-dash.svg new file mode 100644 index 0000000..24c2944 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-down.svg b/api/static/bootstrap-icons/person-fill-down.svg new file mode 100644 index 0000000..714ae50 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-exclamation.svg b/api/static/bootstrap-icons/person-fill-exclamation.svg new file mode 100644 index 0000000..5c3b7f5 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-gear.svg b/api/static/bootstrap-icons/person-fill-gear.svg new file mode 100644 index 0000000..33b120a --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-gear.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-lock.svg b/api/static/bootstrap-icons/person-fill-lock.svg new file mode 100644 index 0000000..adbccff --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-lock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-slash.svg b/api/static/bootstrap-icons/person-fill-slash.svg new file mode 100644 index 0000000..398d563 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-up.svg b/api/static/bootstrap-icons/person-fill-up.svg new file mode 100644 index 0000000..1edd97b --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill-x.svg b/api/static/bootstrap-icons/person-fill-x.svg new file mode 100644 index 0000000..e3a66ed --- /dev/null +++ b/api/static/bootstrap-icons/person-fill-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-fill.svg b/api/static/bootstrap-icons/person-fill.svg new file mode 100644 index 0000000..46d1a75 --- /dev/null +++ b/api/static/bootstrap-icons/person-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-gear.svg b/api/static/bootstrap-icons/person-gear.svg new file mode 100644 index 0000000..93ec4da --- /dev/null +++ b/api/static/bootstrap-icons/person-gear.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-heart.svg b/api/static/bootstrap-icons/person-heart.svg new file mode 100644 index 0000000..51b236e --- /dev/null +++ b/api/static/bootstrap-icons/person-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-hearts.svg b/api/static/bootstrap-icons/person-hearts.svg new file mode 100644 index 0000000..70bb2e0 --- /dev/null +++ b/api/static/bootstrap-icons/person-hearts.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-lines-fill.svg b/api/static/bootstrap-icons/person-lines-fill.svg new file mode 100644 index 0000000..cbe6c68 --- /dev/null +++ b/api/static/bootstrap-icons/person-lines-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-lock.svg b/api/static/bootstrap-icons/person-lock.svg new file mode 100644 index 0000000..d3672cd --- /dev/null +++ b/api/static/bootstrap-icons/person-lock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-plus-fill.svg b/api/static/bootstrap-icons/person-plus-fill.svg new file mode 100644 index 0000000..6c92aea --- /dev/null +++ b/api/static/bootstrap-icons/person-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-plus.svg b/api/static/bootstrap-icons/person-plus.svg new file mode 100644 index 0000000..4b88424 --- /dev/null +++ b/api/static/bootstrap-icons/person-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-raised-hand.svg b/api/static/bootstrap-icons/person-raised-hand.svg new file mode 100644 index 0000000..00ac301 --- /dev/null +++ b/api/static/bootstrap-icons/person-raised-hand.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-rolodex.svg b/api/static/bootstrap-icons/person-rolodex.svg new file mode 100644 index 0000000..2039494 --- /dev/null +++ b/api/static/bootstrap-icons/person-rolodex.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-slash.svg b/api/static/bootstrap-icons/person-slash.svg new file mode 100644 index 0000000..ab53647 --- /dev/null +++ b/api/static/bootstrap-icons/person-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-square.svg b/api/static/bootstrap-icons/person-square.svg new file mode 100644 index 0000000..12a33c5 --- /dev/null +++ b/api/static/bootstrap-icons/person-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-standing-dress.svg b/api/static/bootstrap-icons/person-standing-dress.svg new file mode 100644 index 0000000..4448606 --- /dev/null +++ b/api/static/bootstrap-icons/person-standing-dress.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-standing.svg b/api/static/bootstrap-icons/person-standing.svg new file mode 100644 index 0000000..ccd7b35 --- /dev/null +++ b/api/static/bootstrap-icons/person-standing.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-up.svg b/api/static/bootstrap-icons/person-up.svg new file mode 100644 index 0000000..93a430a --- /dev/null +++ b/api/static/bootstrap-icons/person-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-vcard-fill.svg b/api/static/bootstrap-icons/person-vcard-fill.svg new file mode 100644 index 0000000..9efb1b8 --- /dev/null +++ b/api/static/bootstrap-icons/person-vcard-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-vcard.svg b/api/static/bootstrap-icons/person-vcard.svg new file mode 100644 index 0000000..40ec41e --- /dev/null +++ b/api/static/bootstrap-icons/person-vcard.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-video.svg b/api/static/bootstrap-icons/person-video.svg new file mode 100644 index 0000000..a991759 --- /dev/null +++ b/api/static/bootstrap-icons/person-video.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-video2.svg b/api/static/bootstrap-icons/person-video2.svg new file mode 100644 index 0000000..80b3b8a --- /dev/null +++ b/api/static/bootstrap-icons/person-video2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-video3.svg b/api/static/bootstrap-icons/person-video3.svg new file mode 100644 index 0000000..472d998 --- /dev/null +++ b/api/static/bootstrap-icons/person-video3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-walking.svg b/api/static/bootstrap-icons/person-walking.svg new file mode 100644 index 0000000..16cc0b4 --- /dev/null +++ b/api/static/bootstrap-icons/person-walking.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-wheelchair.svg b/api/static/bootstrap-icons/person-wheelchair.svg new file mode 100644 index 0000000..416cad2 --- /dev/null +++ b/api/static/bootstrap-icons/person-wheelchair.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-workspace.svg b/api/static/bootstrap-icons/person-workspace.svg new file mode 100644 index 0000000..0b3cdce --- /dev/null +++ b/api/static/bootstrap-icons/person-workspace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-x-fill.svg b/api/static/bootstrap-icons/person-x-fill.svg new file mode 100644 index 0000000..9e31903 --- /dev/null +++ b/api/static/bootstrap-icons/person-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person-x.svg b/api/static/bootstrap-icons/person-x.svg new file mode 100644 index 0000000..7514c59 --- /dev/null +++ b/api/static/bootstrap-icons/person-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/person.svg b/api/static/bootstrap-icons/person.svg new file mode 100644 index 0000000..98ea060 --- /dev/null +++ b/api/static/bootstrap-icons/person.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-fill.svg b/api/static/bootstrap-icons/phone-fill.svg new file mode 100644 index 0000000..f25bd51 --- /dev/null +++ b/api/static/bootstrap-icons/phone-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-flip.svg b/api/static/bootstrap-icons/phone-flip.svg new file mode 100644 index 0000000..3ae28d3 --- /dev/null +++ b/api/static/bootstrap-icons/phone-flip.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-landscape-fill.svg b/api/static/bootstrap-icons/phone-landscape-fill.svg new file mode 100644 index 0000000..669bf6e --- /dev/null +++ b/api/static/bootstrap-icons/phone-landscape-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-landscape.svg b/api/static/bootstrap-icons/phone-landscape.svg new file mode 100644 index 0000000..4c30ef2 --- /dev/null +++ b/api/static/bootstrap-icons/phone-landscape.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-vibrate-fill.svg b/api/static/bootstrap-icons/phone-vibrate-fill.svg new file mode 100644 index 0000000..dc35ca0 --- /dev/null +++ b/api/static/bootstrap-icons/phone-vibrate-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone-vibrate.svg b/api/static/bootstrap-icons/phone-vibrate.svg new file mode 100644 index 0000000..58acbf6 --- /dev/null +++ b/api/static/bootstrap-icons/phone-vibrate.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/phone.svg b/api/static/bootstrap-icons/phone.svg new file mode 100644 index 0000000..4839331 --- /dev/null +++ b/api/static/bootstrap-icons/phone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pie-chart-fill.svg b/api/static/bootstrap-icons/pie-chart-fill.svg new file mode 100644 index 0000000..f667aea --- /dev/null +++ b/api/static/bootstrap-icons/pie-chart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pie-chart.svg b/api/static/bootstrap-icons/pie-chart.svg new file mode 100644 index 0000000..b49251b --- /dev/null +++ b/api/static/bootstrap-icons/pie-chart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/piggy-bank-fill.svg b/api/static/bootstrap-icons/piggy-bank-fill.svg new file mode 100644 index 0000000..592b31d --- /dev/null +++ b/api/static/bootstrap-icons/piggy-bank-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/piggy-bank.svg b/api/static/bootstrap-icons/piggy-bank.svg new file mode 100644 index 0000000..86e33eb --- /dev/null +++ b/api/static/bootstrap-icons/piggy-bank.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin-angle-fill.svg b/api/static/bootstrap-icons/pin-angle-fill.svg new file mode 100644 index 0000000..bc3078c --- /dev/null +++ b/api/static/bootstrap-icons/pin-angle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin-angle.svg b/api/static/bootstrap-icons/pin-angle.svg new file mode 100644 index 0000000..ecc4d16 --- /dev/null +++ b/api/static/bootstrap-icons/pin-angle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin-fill.svg b/api/static/bootstrap-icons/pin-fill.svg new file mode 100644 index 0000000..f345059 --- /dev/null +++ b/api/static/bootstrap-icons/pin-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin-map-fill.svg b/api/static/bootstrap-icons/pin-map-fill.svg new file mode 100644 index 0000000..9db0d29 --- /dev/null +++ b/api/static/bootstrap-icons/pin-map-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin-map.svg b/api/static/bootstrap-icons/pin-map.svg new file mode 100644 index 0000000..0462a5a --- /dev/null +++ b/api/static/bootstrap-icons/pin-map.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pin.svg b/api/static/bootstrap-icons/pin.svg new file mode 100644 index 0000000..4655620 --- /dev/null +++ b/api/static/bootstrap-icons/pin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pinterest.svg b/api/static/bootstrap-icons/pinterest.svg new file mode 100644 index 0000000..5c850b6 --- /dev/null +++ b/api/static/bootstrap-icons/pinterest.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pip-fill.svg b/api/static/bootstrap-icons/pip-fill.svg new file mode 100644 index 0000000..4865244 --- /dev/null +++ b/api/static/bootstrap-icons/pip-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/pip.svg b/api/static/bootstrap-icons/pip.svg new file mode 100644 index 0000000..458c9c9 --- /dev/null +++ b/api/static/bootstrap-icons/pip.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play-btn-fill.svg b/api/static/bootstrap-icons/play-btn-fill.svg new file mode 100644 index 0000000..3d0d1c3 --- /dev/null +++ b/api/static/bootstrap-icons/play-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play-btn.svg b/api/static/bootstrap-icons/play-btn.svg new file mode 100644 index 0000000..2fcbc5e --- /dev/null +++ b/api/static/bootstrap-icons/play-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play-circle-fill.svg b/api/static/bootstrap-icons/play-circle-fill.svg new file mode 100644 index 0000000..93eeb93 --- /dev/null +++ b/api/static/bootstrap-icons/play-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play-circle.svg b/api/static/bootstrap-icons/play-circle.svg new file mode 100644 index 0000000..a1d742e --- /dev/null +++ b/api/static/bootstrap-icons/play-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play-fill.svg b/api/static/bootstrap-icons/play-fill.svg new file mode 100644 index 0000000..e538083 --- /dev/null +++ b/api/static/bootstrap-icons/play-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/play.svg b/api/static/bootstrap-icons/play.svg new file mode 100644 index 0000000..98954e7 --- /dev/null +++ b/api/static/bootstrap-icons/play.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/playstation.svg b/api/static/bootstrap-icons/playstation.svg new file mode 100644 index 0000000..3275d59 --- /dev/null +++ b/api/static/bootstrap-icons/playstation.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plug-fill.svg b/api/static/bootstrap-icons/plug-fill.svg new file mode 100644 index 0000000..99858eb --- /dev/null +++ b/api/static/bootstrap-icons/plug-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plug.svg b/api/static/bootstrap-icons/plug.svg new file mode 100644 index 0000000..9d6a85b --- /dev/null +++ b/api/static/bootstrap-icons/plug.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plugin.svg b/api/static/bootstrap-icons/plugin.svg new file mode 100644 index 0000000..92e99d4 --- /dev/null +++ b/api/static/bootstrap-icons/plugin.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-circle-dotted.svg b/api/static/bootstrap-icons/plus-circle-dotted.svg new file mode 100644 index 0000000..2a20e2d --- /dev/null +++ b/api/static/bootstrap-icons/plus-circle-dotted.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-circle-fill.svg b/api/static/bootstrap-icons/plus-circle-fill.svg new file mode 100644 index 0000000..d1ec2d0 --- /dev/null +++ b/api/static/bootstrap-icons/plus-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-circle.svg b/api/static/bootstrap-icons/plus-circle.svg new file mode 100644 index 0000000..2832373 --- /dev/null +++ b/api/static/bootstrap-icons/plus-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-lg.svg b/api/static/bootstrap-icons/plus-lg.svg new file mode 100644 index 0000000..531e86c --- /dev/null +++ b/api/static/bootstrap-icons/plus-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-slash-minus.svg b/api/static/bootstrap-icons/plus-slash-minus.svg new file mode 100644 index 0000000..e0fee7d --- /dev/null +++ b/api/static/bootstrap-icons/plus-slash-minus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-square-dotted.svg b/api/static/bootstrap-icons/plus-square-dotted.svg new file mode 100644 index 0000000..e230a08 --- /dev/null +++ b/api/static/bootstrap-icons/plus-square-dotted.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-square-fill.svg b/api/static/bootstrap-icons/plus-square-fill.svg new file mode 100644 index 0000000..1dddd13 --- /dev/null +++ b/api/static/bootstrap-icons/plus-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus-square.svg b/api/static/bootstrap-icons/plus-square.svg new file mode 100644 index 0000000..ef11b48 --- /dev/null +++ b/api/static/bootstrap-icons/plus-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/plus.svg b/api/static/bootstrap-icons/plus.svg new file mode 100644 index 0000000..9012271 --- /dev/null +++ b/api/static/bootstrap-icons/plus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postage-fill.svg b/api/static/bootstrap-icons/postage-fill.svg new file mode 100644 index 0000000..861a3a1 --- /dev/null +++ b/api/static/bootstrap-icons/postage-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postage-heart-fill.svg b/api/static/bootstrap-icons/postage-heart-fill.svg new file mode 100644 index 0000000..4737a4d --- /dev/null +++ b/api/static/bootstrap-icons/postage-heart-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postage-heart.svg b/api/static/bootstrap-icons/postage-heart.svg new file mode 100644 index 0000000..aa35a6c --- /dev/null +++ b/api/static/bootstrap-icons/postage-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postage.svg b/api/static/bootstrap-icons/postage.svg new file mode 100644 index 0000000..54dcfa6 --- /dev/null +++ b/api/static/bootstrap-icons/postage.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postcard-fill.svg b/api/static/bootstrap-icons/postcard-fill.svg new file mode 100644 index 0000000..aeba518 --- /dev/null +++ b/api/static/bootstrap-icons/postcard-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postcard-heart-fill.svg b/api/static/bootstrap-icons/postcard-heart-fill.svg new file mode 100644 index 0000000..1e371b8 --- /dev/null +++ b/api/static/bootstrap-icons/postcard-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postcard-heart.svg b/api/static/bootstrap-icons/postcard-heart.svg new file mode 100644 index 0000000..52c0053 --- /dev/null +++ b/api/static/bootstrap-icons/postcard-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/postcard.svg b/api/static/bootstrap-icons/postcard.svg new file mode 100644 index 0000000..43ba40b --- /dev/null +++ b/api/static/bootstrap-icons/postcard.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/power.svg b/api/static/bootstrap-icons/power.svg new file mode 100644 index 0000000..937b842 --- /dev/null +++ b/api/static/bootstrap-icons/power.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/prescription.svg b/api/static/bootstrap-icons/prescription.svg new file mode 100644 index 0000000..b895b2b --- /dev/null +++ b/api/static/bootstrap-icons/prescription.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/prescription2.svg b/api/static/bootstrap-icons/prescription2.svg new file mode 100644 index 0000000..cb278b0 --- /dev/null +++ b/api/static/bootstrap-icons/prescription2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/printer-fill.svg b/api/static/bootstrap-icons/printer-fill.svg new file mode 100644 index 0000000..43cee36 --- /dev/null +++ b/api/static/bootstrap-icons/printer-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/printer.svg b/api/static/bootstrap-icons/printer.svg new file mode 100644 index 0000000..0886a57 --- /dev/null +++ b/api/static/bootstrap-icons/printer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/projector-fill.svg b/api/static/bootstrap-icons/projector-fill.svg new file mode 100644 index 0000000..046166c --- /dev/null +++ b/api/static/bootstrap-icons/projector-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/projector.svg b/api/static/bootstrap-icons/projector.svg new file mode 100644 index 0000000..77e68b0 --- /dev/null +++ b/api/static/bootstrap-icons/projector.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/puzzle-fill.svg b/api/static/bootstrap-icons/puzzle-fill.svg new file mode 100644 index 0000000..92c4ea0 --- /dev/null +++ b/api/static/bootstrap-icons/puzzle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/puzzle.svg b/api/static/bootstrap-icons/puzzle.svg new file mode 100644 index 0000000..44903f7 --- /dev/null +++ b/api/static/bootstrap-icons/puzzle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/qr-code-scan.svg b/api/static/bootstrap-icons/qr-code-scan.svg new file mode 100644 index 0000000..3c53387 --- /dev/null +++ b/api/static/bootstrap-icons/qr-code-scan.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/qr-code.svg b/api/static/bootstrap-icons/qr-code.svg new file mode 100644 index 0000000..e09157a --- /dev/null +++ b/api/static/bootstrap-icons/qr-code.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-circle-fill.svg b/api/static/bootstrap-icons/question-circle-fill.svg new file mode 100644 index 0000000..8b2a2c0 --- /dev/null +++ b/api/static/bootstrap-icons/question-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-circle.svg b/api/static/bootstrap-icons/question-circle.svg new file mode 100644 index 0000000..283e653 --- /dev/null +++ b/api/static/bootstrap-icons/question-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-diamond-fill.svg b/api/static/bootstrap-icons/question-diamond-fill.svg new file mode 100644 index 0000000..6bf3512 --- /dev/null +++ b/api/static/bootstrap-icons/question-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-diamond.svg b/api/static/bootstrap-icons/question-diamond.svg new file mode 100644 index 0000000..a777b47 --- /dev/null +++ b/api/static/bootstrap-icons/question-diamond.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-lg.svg b/api/static/bootstrap-icons/question-lg.svg new file mode 100644 index 0000000..756ea0f --- /dev/null +++ b/api/static/bootstrap-icons/question-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-octagon-fill.svg b/api/static/bootstrap-icons/question-octagon-fill.svg new file mode 100644 index 0000000..c0c43ef --- /dev/null +++ b/api/static/bootstrap-icons/question-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-octagon.svg b/api/static/bootstrap-icons/question-octagon.svg new file mode 100644 index 0000000..5116862 --- /dev/null +++ b/api/static/bootstrap-icons/question-octagon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-square-fill.svg b/api/static/bootstrap-icons/question-square-fill.svg new file mode 100644 index 0000000..a266f9f --- /dev/null +++ b/api/static/bootstrap-icons/question-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question-square.svg b/api/static/bootstrap-icons/question-square.svg new file mode 100644 index 0000000..ad44a20 --- /dev/null +++ b/api/static/bootstrap-icons/question-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/question.svg b/api/static/bootstrap-icons/question.svg new file mode 100644 index 0000000..ba185ad --- /dev/null +++ b/api/static/bootstrap-icons/question.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/quora.svg b/api/static/bootstrap-icons/quora.svg new file mode 100644 index 0000000..85ca1bd --- /dev/null +++ b/api/static/bootstrap-icons/quora.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/quote.svg b/api/static/bootstrap-icons/quote.svg new file mode 100644 index 0000000..0aa0e17 --- /dev/null +++ b/api/static/bootstrap-icons/quote.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/r-circle-fill.svg b/api/static/bootstrap-icons/r-circle-fill.svg new file mode 100644 index 0000000..810423e --- /dev/null +++ b/api/static/bootstrap-icons/r-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/r-circle.svg b/api/static/bootstrap-icons/r-circle.svg new file mode 100644 index 0000000..bf2d8d6 --- /dev/null +++ b/api/static/bootstrap-icons/r-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/r-square-fill.svg b/api/static/bootstrap-icons/r-square-fill.svg new file mode 100644 index 0000000..b1151f3 --- /dev/null +++ b/api/static/bootstrap-icons/r-square-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/r-square.svg b/api/static/bootstrap-icons/r-square.svg new file mode 100644 index 0000000..e19e688 --- /dev/null +++ b/api/static/bootstrap-icons/r-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/radar.svg b/api/static/bootstrap-icons/radar.svg new file mode 100644 index 0000000..024f3fd --- /dev/null +++ b/api/static/bootstrap-icons/radar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/radioactive.svg b/api/static/bootstrap-icons/radioactive.svg new file mode 100644 index 0000000..3eaaa56 --- /dev/null +++ b/api/static/bootstrap-icons/radioactive.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rainbow.svg b/api/static/bootstrap-icons/rainbow.svg new file mode 100644 index 0000000..e864abf --- /dev/null +++ b/api/static/bootstrap-icons/rainbow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/receipt-cutoff.svg b/api/static/bootstrap-icons/receipt-cutoff.svg new file mode 100644 index 0000000..21c3bc8 --- /dev/null +++ b/api/static/bootstrap-icons/receipt-cutoff.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/receipt.svg b/api/static/bootstrap-icons/receipt.svg new file mode 100644 index 0000000..ab29fe6 --- /dev/null +++ b/api/static/bootstrap-icons/receipt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reception-0.svg b/api/static/bootstrap-icons/reception-0.svg new file mode 100644 index 0000000..a7c7872 --- /dev/null +++ b/api/static/bootstrap-icons/reception-0.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reception-1.svg b/api/static/bootstrap-icons/reception-1.svg new file mode 100644 index 0000000..4081ceb --- /dev/null +++ b/api/static/bootstrap-icons/reception-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reception-2.svg b/api/static/bootstrap-icons/reception-2.svg new file mode 100644 index 0000000..7e1acc5 --- /dev/null +++ b/api/static/bootstrap-icons/reception-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reception-3.svg b/api/static/bootstrap-icons/reception-3.svg new file mode 100644 index 0000000..e9ea476 --- /dev/null +++ b/api/static/bootstrap-icons/reception-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reception-4.svg b/api/static/bootstrap-icons/reception-4.svg new file mode 100644 index 0000000..7791e4b --- /dev/null +++ b/api/static/bootstrap-icons/reception-4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record-btn-fill.svg b/api/static/bootstrap-icons/record-btn-fill.svg new file mode 100644 index 0000000..83ee303 --- /dev/null +++ b/api/static/bootstrap-icons/record-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record-btn.svg b/api/static/bootstrap-icons/record-btn.svg new file mode 100644 index 0000000..7ba84ce --- /dev/null +++ b/api/static/bootstrap-icons/record-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record-circle-fill.svg b/api/static/bootstrap-icons/record-circle-fill.svg new file mode 100644 index 0000000..0db59d1 --- /dev/null +++ b/api/static/bootstrap-icons/record-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record-circle.svg b/api/static/bootstrap-icons/record-circle.svg new file mode 100644 index 0000000..5dad17b --- /dev/null +++ b/api/static/bootstrap-icons/record-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record-fill.svg b/api/static/bootstrap-icons/record-fill.svg new file mode 100644 index 0000000..ef31df0 --- /dev/null +++ b/api/static/bootstrap-icons/record-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record.svg b/api/static/bootstrap-icons/record.svg new file mode 100644 index 0000000..5ec840c --- /dev/null +++ b/api/static/bootstrap-icons/record.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record2-fill.svg b/api/static/bootstrap-icons/record2-fill.svg new file mode 100644 index 0000000..8ad4fe3 --- /dev/null +++ b/api/static/bootstrap-icons/record2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/record2.svg b/api/static/bootstrap-icons/record2.svg new file mode 100644 index 0000000..3b5c5ca --- /dev/null +++ b/api/static/bootstrap-icons/record2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/recycle.svg b/api/static/bootstrap-icons/recycle.svg new file mode 100644 index 0000000..21d1bd9 --- /dev/null +++ b/api/static/bootstrap-icons/recycle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reddit.svg b/api/static/bootstrap-icons/reddit.svg new file mode 100644 index 0000000..777aead --- /dev/null +++ b/api/static/bootstrap-icons/reddit.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/regex.svg b/api/static/bootstrap-icons/regex.svg new file mode 100644 index 0000000..ec8bf00 --- /dev/null +++ b/api/static/bootstrap-icons/regex.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/repeat-1.svg b/api/static/bootstrap-icons/repeat-1.svg new file mode 100644 index 0000000..9357fcf --- /dev/null +++ b/api/static/bootstrap-icons/repeat-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/repeat.svg b/api/static/bootstrap-icons/repeat.svg new file mode 100644 index 0000000..51765c9 --- /dev/null +++ b/api/static/bootstrap-icons/repeat.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reply-all-fill.svg b/api/static/bootstrap-icons/reply-all-fill.svg new file mode 100644 index 0000000..95e18a2 --- /dev/null +++ b/api/static/bootstrap-icons/reply-all-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reply-all.svg b/api/static/bootstrap-icons/reply-all.svg new file mode 100644 index 0000000..decad51 --- /dev/null +++ b/api/static/bootstrap-icons/reply-all.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reply-fill.svg b/api/static/bootstrap-icons/reply-fill.svg new file mode 100644 index 0000000..82358b1 --- /dev/null +++ b/api/static/bootstrap-icons/reply-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/reply.svg b/api/static/bootstrap-icons/reply.svg new file mode 100644 index 0000000..5bb432e --- /dev/null +++ b/api/static/bootstrap-icons/reply.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind-btn-fill.svg b/api/static/bootstrap-icons/rewind-btn-fill.svg new file mode 100644 index 0000000..8ea4155 --- /dev/null +++ b/api/static/bootstrap-icons/rewind-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind-btn.svg b/api/static/bootstrap-icons/rewind-btn.svg new file mode 100644 index 0000000..47bd717 --- /dev/null +++ b/api/static/bootstrap-icons/rewind-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind-circle-fill.svg b/api/static/bootstrap-icons/rewind-circle-fill.svg new file mode 100644 index 0000000..b972044 --- /dev/null +++ b/api/static/bootstrap-icons/rewind-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind-circle.svg b/api/static/bootstrap-icons/rewind-circle.svg new file mode 100644 index 0000000..4952147 --- /dev/null +++ b/api/static/bootstrap-icons/rewind-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind-fill.svg b/api/static/bootstrap-icons/rewind-fill.svg new file mode 100644 index 0000000..5919f7e --- /dev/null +++ b/api/static/bootstrap-icons/rewind-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rewind.svg b/api/static/bootstrap-icons/rewind.svg new file mode 100644 index 0000000..bc731e7 --- /dev/null +++ b/api/static/bootstrap-icons/rewind.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/robot.svg b/api/static/bootstrap-icons/robot.svg new file mode 100644 index 0000000..a224202 --- /dev/null +++ b/api/static/bootstrap-icons/robot.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rocket-fill.svg b/api/static/bootstrap-icons/rocket-fill.svg new file mode 100644 index 0000000..f319029 --- /dev/null +++ b/api/static/bootstrap-icons/rocket-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rocket-takeoff-fill.svg b/api/static/bootstrap-icons/rocket-takeoff-fill.svg new file mode 100644 index 0000000..707d205 --- /dev/null +++ b/api/static/bootstrap-icons/rocket-takeoff-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rocket-takeoff.svg b/api/static/bootstrap-icons/rocket-takeoff.svg new file mode 100644 index 0000000..2abc6d4 --- /dev/null +++ b/api/static/bootstrap-icons/rocket-takeoff.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rocket.svg b/api/static/bootstrap-icons/rocket.svg new file mode 100644 index 0000000..b760e1f --- /dev/null +++ b/api/static/bootstrap-icons/rocket.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/router-fill.svg b/api/static/bootstrap-icons/router-fill.svg new file mode 100644 index 0000000..74d1469 --- /dev/null +++ b/api/static/bootstrap-icons/router-fill.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/router.svg b/api/static/bootstrap-icons/router.svg new file mode 100644 index 0000000..62fac78 --- /dev/null +++ b/api/static/bootstrap-icons/router.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rss-fill.svg b/api/static/bootstrap-icons/rss-fill.svg new file mode 100644 index 0000000..50d7cfd --- /dev/null +++ b/api/static/bootstrap-icons/rss-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rss.svg b/api/static/bootstrap-icons/rss.svg new file mode 100644 index 0000000..18dc9f1 --- /dev/null +++ b/api/static/bootstrap-icons/rss.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/rulers.svg b/api/static/bootstrap-icons/rulers.svg new file mode 100644 index 0000000..90fb01c --- /dev/null +++ b/api/static/bootstrap-icons/rulers.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/safe-fill.svg b/api/static/bootstrap-icons/safe-fill.svg new file mode 100644 index 0000000..6da7a7d --- /dev/null +++ b/api/static/bootstrap-icons/safe-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/safe.svg b/api/static/bootstrap-icons/safe.svg new file mode 100644 index 0000000..d6d24c2 --- /dev/null +++ b/api/static/bootstrap-icons/safe.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/safe2-fill.svg b/api/static/bootstrap-icons/safe2-fill.svg new file mode 100644 index 0000000..064e073 --- /dev/null +++ b/api/static/bootstrap-icons/safe2-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/safe2.svg b/api/static/bootstrap-icons/safe2.svg new file mode 100644 index 0000000..9c80f55 --- /dev/null +++ b/api/static/bootstrap-icons/safe2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/save-fill.svg b/api/static/bootstrap-icons/save-fill.svg new file mode 100644 index 0000000..1c42812 --- /dev/null +++ b/api/static/bootstrap-icons/save-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/save.svg b/api/static/bootstrap-icons/save.svg new file mode 100644 index 0000000..9dd7b2f --- /dev/null +++ b/api/static/bootstrap-icons/save.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/save2-fill.svg b/api/static/bootstrap-icons/save2-fill.svg new file mode 100644 index 0000000..207f91b --- /dev/null +++ b/api/static/bootstrap-icons/save2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/save2.svg b/api/static/bootstrap-icons/save2.svg new file mode 100644 index 0000000..988c4f1 --- /dev/null +++ b/api/static/bootstrap-icons/save2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/scissors.svg b/api/static/bootstrap-icons/scissors.svg new file mode 100644 index 0000000..2f566e4 --- /dev/null +++ b/api/static/bootstrap-icons/scissors.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/scooter.svg b/api/static/bootstrap-icons/scooter.svg new file mode 100644 index 0000000..8828452 --- /dev/null +++ b/api/static/bootstrap-icons/scooter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/screwdriver.svg b/api/static/bootstrap-icons/screwdriver.svg new file mode 100644 index 0000000..54d5a2c --- /dev/null +++ b/api/static/bootstrap-icons/screwdriver.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sd-card-fill.svg b/api/static/bootstrap-icons/sd-card-fill.svg new file mode 100644 index 0000000..655a96d --- /dev/null +++ b/api/static/bootstrap-icons/sd-card-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sd-card.svg b/api/static/bootstrap-icons/sd-card.svg new file mode 100644 index 0000000..564661a --- /dev/null +++ b/api/static/bootstrap-icons/sd-card.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/search-heart-fill.svg b/api/static/bootstrap-icons/search-heart-fill.svg new file mode 100644 index 0000000..c57bb48 --- /dev/null +++ b/api/static/bootstrap-icons/search-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/search-heart.svg b/api/static/bootstrap-icons/search-heart.svg new file mode 100644 index 0000000..d76bfe5 --- /dev/null +++ b/api/static/bootstrap-icons/search-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/search.svg b/api/static/bootstrap-icons/search.svg new file mode 100644 index 0000000..3318054 --- /dev/null +++ b/api/static/bootstrap-icons/search.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/segmented-nav.svg b/api/static/bootstrap-icons/segmented-nav.svg new file mode 100644 index 0000000..b274b68 --- /dev/null +++ b/api/static/bootstrap-icons/segmented-nav.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-arrow-down-fill.svg b/api/static/bootstrap-icons/send-arrow-down-fill.svg new file mode 100644 index 0000000..6d43965 --- /dev/null +++ b/api/static/bootstrap-icons/send-arrow-down-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-arrow-down.svg b/api/static/bootstrap-icons/send-arrow-down.svg new file mode 100644 index 0000000..dcbae56 --- /dev/null +++ b/api/static/bootstrap-icons/send-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-arrow-up-fill.svg b/api/static/bootstrap-icons/send-arrow-up-fill.svg new file mode 100644 index 0000000..19abab7 --- /dev/null +++ b/api/static/bootstrap-icons/send-arrow-up-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-arrow-up.svg b/api/static/bootstrap-icons/send-arrow-up.svg new file mode 100644 index 0000000..a642dac --- /dev/null +++ b/api/static/bootstrap-icons/send-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-check-fill.svg b/api/static/bootstrap-icons/send-check-fill.svg new file mode 100644 index 0000000..c4259c8 --- /dev/null +++ b/api/static/bootstrap-icons/send-check-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-check.svg b/api/static/bootstrap-icons/send-check.svg new file mode 100644 index 0000000..5221868 --- /dev/null +++ b/api/static/bootstrap-icons/send-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-dash-fill.svg b/api/static/bootstrap-icons/send-dash-fill.svg new file mode 100644 index 0000000..12a82df --- /dev/null +++ b/api/static/bootstrap-icons/send-dash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-dash.svg b/api/static/bootstrap-icons/send-dash.svg new file mode 100644 index 0000000..63fc38c --- /dev/null +++ b/api/static/bootstrap-icons/send-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-exclamation-fill.svg b/api/static/bootstrap-icons/send-exclamation-fill.svg new file mode 100644 index 0000000..fce810f --- /dev/null +++ b/api/static/bootstrap-icons/send-exclamation-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-exclamation.svg b/api/static/bootstrap-icons/send-exclamation.svg new file mode 100644 index 0000000..8a72f31 --- /dev/null +++ b/api/static/bootstrap-icons/send-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-fill.svg b/api/static/bootstrap-icons/send-fill.svg new file mode 100644 index 0000000..6e95d27 --- /dev/null +++ b/api/static/bootstrap-icons/send-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-plus-fill.svg b/api/static/bootstrap-icons/send-plus-fill.svg new file mode 100644 index 0000000..63b0482 --- /dev/null +++ b/api/static/bootstrap-icons/send-plus-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-plus.svg b/api/static/bootstrap-icons/send-plus.svg new file mode 100644 index 0000000..350b388 --- /dev/null +++ b/api/static/bootstrap-icons/send-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-slash-fill.svg b/api/static/bootstrap-icons/send-slash-fill.svg new file mode 100644 index 0000000..e98aa92 --- /dev/null +++ b/api/static/bootstrap-icons/send-slash-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-slash.svg b/api/static/bootstrap-icons/send-slash.svg new file mode 100644 index 0000000..e434afe --- /dev/null +++ b/api/static/bootstrap-icons/send-slash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-x-fill.svg b/api/static/bootstrap-icons/send-x-fill.svg new file mode 100644 index 0000000..45a98a4 --- /dev/null +++ b/api/static/bootstrap-icons/send-x-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send-x.svg b/api/static/bootstrap-icons/send-x.svg new file mode 100644 index 0000000..5b854c2 --- /dev/null +++ b/api/static/bootstrap-icons/send-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/send.svg b/api/static/bootstrap-icons/send.svg new file mode 100644 index 0000000..8db355e --- /dev/null +++ b/api/static/bootstrap-icons/send.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/server.svg b/api/static/bootstrap-icons/server.svg new file mode 100644 index 0000000..bb8ca8f --- /dev/null +++ b/api/static/bootstrap-icons/server.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shadows.svg b/api/static/bootstrap-icons/shadows.svg new file mode 100644 index 0000000..6b09f0f --- /dev/null +++ b/api/static/bootstrap-icons/shadows.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/share-fill.svg b/api/static/bootstrap-icons/share-fill.svg new file mode 100644 index 0000000..bdc07ca --- /dev/null +++ b/api/static/bootstrap-icons/share-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/share.svg b/api/static/bootstrap-icons/share.svg new file mode 100644 index 0000000..bc62b93 --- /dev/null +++ b/api/static/bootstrap-icons/share.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-check.svg b/api/static/bootstrap-icons/shield-check.svg new file mode 100644 index 0000000..3908fca --- /dev/null +++ b/api/static/bootstrap-icons/shield-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-exclamation.svg b/api/static/bootstrap-icons/shield-exclamation.svg new file mode 100644 index 0000000..9826504 --- /dev/null +++ b/api/static/bootstrap-icons/shield-exclamation.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill-check.svg b/api/static/bootstrap-icons/shield-fill-check.svg new file mode 100644 index 0000000..f914f1f --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill-exclamation.svg b/api/static/bootstrap-icons/shield-fill-exclamation.svg new file mode 100644 index 0000000..99a6bf9 --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill-exclamation.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill-minus.svg b/api/static/bootstrap-icons/shield-fill-minus.svg new file mode 100644 index 0000000..584f5ae --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill-minus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill-plus.svg b/api/static/bootstrap-icons/shield-fill-plus.svg new file mode 100644 index 0000000..43a3169 --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill-plus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill-x.svg b/api/static/bootstrap-icons/shield-fill-x.svg new file mode 100644 index 0000000..42267cf --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill-x.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-fill.svg b/api/static/bootstrap-icons/shield-fill.svg new file mode 100644 index 0000000..12a61bc --- /dev/null +++ b/api/static/bootstrap-icons/shield-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-lock-fill.svg b/api/static/bootstrap-icons/shield-lock-fill.svg new file mode 100644 index 0000000..0fccf6f --- /dev/null +++ b/api/static/bootstrap-icons/shield-lock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-lock.svg b/api/static/bootstrap-icons/shield-lock.svg new file mode 100644 index 0000000..316fb3c --- /dev/null +++ b/api/static/bootstrap-icons/shield-lock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-minus.svg b/api/static/bootstrap-icons/shield-minus.svg new file mode 100644 index 0000000..9fb8712 --- /dev/null +++ b/api/static/bootstrap-icons/shield-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-plus.svg b/api/static/bootstrap-icons/shield-plus.svg new file mode 100644 index 0000000..3b19b28 --- /dev/null +++ b/api/static/bootstrap-icons/shield-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-shaded.svg b/api/static/bootstrap-icons/shield-shaded.svg new file mode 100644 index 0000000..4908f5d --- /dev/null +++ b/api/static/bootstrap-icons/shield-shaded.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-slash-fill.svg b/api/static/bootstrap-icons/shield-slash-fill.svg new file mode 100644 index 0000000..d270d6d --- /dev/null +++ b/api/static/bootstrap-icons/shield-slash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-slash.svg b/api/static/bootstrap-icons/shield-slash.svg new file mode 100644 index 0000000..abc01b1 --- /dev/null +++ b/api/static/bootstrap-icons/shield-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield-x.svg b/api/static/bootstrap-icons/shield-x.svg new file mode 100644 index 0000000..cc9c59d --- /dev/null +++ b/api/static/bootstrap-icons/shield-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shield.svg b/api/static/bootstrap-icons/shield.svg new file mode 100644 index 0000000..7e18d1b --- /dev/null +++ b/api/static/bootstrap-icons/shield.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shift-fill.svg b/api/static/bootstrap-icons/shift-fill.svg new file mode 100644 index 0000000..37583e1 --- /dev/null +++ b/api/static/bootstrap-icons/shift-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shift.svg b/api/static/bootstrap-icons/shift.svg new file mode 100644 index 0000000..5d8a6e3 --- /dev/null +++ b/api/static/bootstrap-icons/shift.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shop-window.svg b/api/static/bootstrap-icons/shop-window.svg new file mode 100644 index 0000000..14e0d42 --- /dev/null +++ b/api/static/bootstrap-icons/shop-window.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shop.svg b/api/static/bootstrap-icons/shop.svg new file mode 100644 index 0000000..e6bb8c0 --- /dev/null +++ b/api/static/bootstrap-icons/shop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/shuffle.svg b/api/static/bootstrap-icons/shuffle.svg new file mode 100644 index 0000000..2787bf2 --- /dev/null +++ b/api/static/bootstrap-icons/shuffle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-dead-end-fill.svg b/api/static/bootstrap-icons/sign-dead-end-fill.svg new file mode 100644 index 0000000..b362833 --- /dev/null +++ b/api/static/bootstrap-icons/sign-dead-end-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-dead-end.svg b/api/static/bootstrap-icons/sign-dead-end.svg new file mode 100644 index 0000000..b87d368 --- /dev/null +++ b/api/static/bootstrap-icons/sign-dead-end.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-do-not-enter-fill.svg b/api/static/bootstrap-icons/sign-do-not-enter-fill.svg new file mode 100644 index 0000000..f86ebfa --- /dev/null +++ b/api/static/bootstrap-icons/sign-do-not-enter-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-do-not-enter.svg b/api/static/bootstrap-icons/sign-do-not-enter.svg new file mode 100644 index 0000000..2e2c877 --- /dev/null +++ b/api/static/bootstrap-icons/sign-do-not-enter.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-fill.svg b/api/static/bootstrap-icons/sign-intersection-fill.svg new file mode 100644 index 0000000..7fd8f3f --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-side-fill.svg b/api/static/bootstrap-icons/sign-intersection-side-fill.svg new file mode 100644 index 0000000..38870b5 --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-side-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-side.svg b/api/static/bootstrap-icons/sign-intersection-side.svg new file mode 100644 index 0000000..df9015a --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-side.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-t-fill.svg b/api/static/bootstrap-icons/sign-intersection-t-fill.svg new file mode 100644 index 0000000..15a007e --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-t-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-t.svg b/api/static/bootstrap-icons/sign-intersection-t.svg new file mode 100644 index 0000000..4ba9f6f --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-t.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-y-fill.svg b/api/static/bootstrap-icons/sign-intersection-y-fill.svg new file mode 100644 index 0000000..01a03d0 --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-y-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection-y.svg b/api/static/bootstrap-icons/sign-intersection-y.svg new file mode 100644 index 0000000..e0e387f --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection-y.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-intersection.svg b/api/static/bootstrap-icons/sign-intersection.svg new file mode 100644 index 0000000..be2ffdc --- /dev/null +++ b/api/static/bootstrap-icons/sign-intersection.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-merge-left-fill.svg b/api/static/bootstrap-icons/sign-merge-left-fill.svg new file mode 100644 index 0000000..1408133 --- /dev/null +++ b/api/static/bootstrap-icons/sign-merge-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-merge-left.svg b/api/static/bootstrap-icons/sign-merge-left.svg new file mode 100644 index 0000000..3447bcf --- /dev/null +++ b/api/static/bootstrap-icons/sign-merge-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-merge-right-fill.svg b/api/static/bootstrap-icons/sign-merge-right-fill.svg new file mode 100644 index 0000000..a952bb5 --- /dev/null +++ b/api/static/bootstrap-icons/sign-merge-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-merge-right.svg b/api/static/bootstrap-icons/sign-merge-right.svg new file mode 100644 index 0000000..ab3e08a --- /dev/null +++ b/api/static/bootstrap-icons/sign-merge-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-left-turn-fill.svg b/api/static/bootstrap-icons/sign-no-left-turn-fill.svg new file mode 100644 index 0000000..85f421a --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-left-turn-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-left-turn.svg b/api/static/bootstrap-icons/sign-no-left-turn.svg new file mode 100644 index 0000000..d45f090 --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-left-turn.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-parking-fill.svg b/api/static/bootstrap-icons/sign-no-parking-fill.svg new file mode 100644 index 0000000..c4100d9 --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-parking-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-parking.svg b/api/static/bootstrap-icons/sign-no-parking.svg new file mode 100644 index 0000000..1679603 --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-parking.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-right-turn-fill.svg b/api/static/bootstrap-icons/sign-no-right-turn-fill.svg new file mode 100644 index 0000000..c3883da --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-right-turn-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-no-right-turn.svg b/api/static/bootstrap-icons/sign-no-right-turn.svg new file mode 100644 index 0000000..209b918 --- /dev/null +++ b/api/static/bootstrap-icons/sign-no-right-turn.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-railroad-fill.svg b/api/static/bootstrap-icons/sign-railroad-fill.svg new file mode 100644 index 0000000..61d88a9 --- /dev/null +++ b/api/static/bootstrap-icons/sign-railroad-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-railroad.svg b/api/static/bootstrap-icons/sign-railroad.svg new file mode 100644 index 0000000..b5d7339 --- /dev/null +++ b/api/static/bootstrap-icons/sign-railroad.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-stop-fill.svg b/api/static/bootstrap-icons/sign-stop-fill.svg new file mode 100644 index 0000000..08efb9a --- /dev/null +++ b/api/static/bootstrap-icons/sign-stop-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-stop-lights-fill.svg b/api/static/bootstrap-icons/sign-stop-lights-fill.svg new file mode 100644 index 0000000..9be8e0c --- /dev/null +++ b/api/static/bootstrap-icons/sign-stop-lights-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-stop-lights.svg b/api/static/bootstrap-icons/sign-stop-lights.svg new file mode 100644 index 0000000..85918cf --- /dev/null +++ b/api/static/bootstrap-icons/sign-stop-lights.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-stop.svg b/api/static/bootstrap-icons/sign-stop.svg new file mode 100644 index 0000000..49128dc --- /dev/null +++ b/api/static/bootstrap-icons/sign-stop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-left-fill.svg b/api/static/bootstrap-icons/sign-turn-left-fill.svg new file mode 100644 index 0000000..4b8358e --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-left.svg b/api/static/bootstrap-icons/sign-turn-left.svg new file mode 100644 index 0000000..c1b34ed --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-right-fill.svg b/api/static/bootstrap-icons/sign-turn-right-fill.svg new file mode 100644 index 0000000..29d8d2c --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-right.svg b/api/static/bootstrap-icons/sign-turn-right.svg new file mode 100644 index 0000000..956614a --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-slight-left-fill.svg b/api/static/bootstrap-icons/sign-turn-slight-left-fill.svg new file mode 100644 index 0000000..80b2977 --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-slight-left-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-slight-left.svg b/api/static/bootstrap-icons/sign-turn-slight-left.svg new file mode 100644 index 0000000..98f0a0a --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-slight-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-slight-right-fill.svg b/api/static/bootstrap-icons/sign-turn-slight-right-fill.svg new file mode 100644 index 0000000..2734952 --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-slight-right-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-turn-slight-right.svg b/api/static/bootstrap-icons/sign-turn-slight-right.svg new file mode 100644 index 0000000..c462f19 --- /dev/null +++ b/api/static/bootstrap-icons/sign-turn-slight-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-yield-fill.svg b/api/static/bootstrap-icons/sign-yield-fill.svg new file mode 100644 index 0000000..79fa190 --- /dev/null +++ b/api/static/bootstrap-icons/sign-yield-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sign-yield.svg b/api/static/bootstrap-icons/sign-yield.svg new file mode 100644 index 0000000..23bd623 --- /dev/null +++ b/api/static/bootstrap-icons/sign-yield.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signal.svg b/api/static/bootstrap-icons/signal.svg new file mode 100644 index 0000000..1583f97 --- /dev/null +++ b/api/static/bootstrap-icons/signal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost-2-fill.svg b/api/static/bootstrap-icons/signpost-2-fill.svg new file mode 100644 index 0000000..58c05a6 --- /dev/null +++ b/api/static/bootstrap-icons/signpost-2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost-2.svg b/api/static/bootstrap-icons/signpost-2.svg new file mode 100644 index 0000000..e3454bd --- /dev/null +++ b/api/static/bootstrap-icons/signpost-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost-fill.svg b/api/static/bootstrap-icons/signpost-fill.svg new file mode 100644 index 0000000..00989a6 --- /dev/null +++ b/api/static/bootstrap-icons/signpost-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost-split-fill.svg b/api/static/bootstrap-icons/signpost-split-fill.svg new file mode 100644 index 0000000..9b720f0 --- /dev/null +++ b/api/static/bootstrap-icons/signpost-split-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost-split.svg b/api/static/bootstrap-icons/signpost-split.svg new file mode 100644 index 0000000..7fb69b7 --- /dev/null +++ b/api/static/bootstrap-icons/signpost-split.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/signpost.svg b/api/static/bootstrap-icons/signpost.svg new file mode 100644 index 0000000..940e664 --- /dev/null +++ b/api/static/bootstrap-icons/signpost.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sim-fill.svg b/api/static/bootstrap-icons/sim-fill.svg new file mode 100644 index 0000000..c7922b6 --- /dev/null +++ b/api/static/bootstrap-icons/sim-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sim-slash-fill.svg b/api/static/bootstrap-icons/sim-slash-fill.svg new file mode 100644 index 0000000..b608de7 --- /dev/null +++ b/api/static/bootstrap-icons/sim-slash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sim-slash.svg b/api/static/bootstrap-icons/sim-slash.svg new file mode 100644 index 0000000..c8e0dc4 --- /dev/null +++ b/api/static/bootstrap-icons/sim-slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sim.svg b/api/static/bootstrap-icons/sim.svg new file mode 100644 index 0000000..0d71a11 --- /dev/null +++ b/api/static/bootstrap-icons/sim.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sina-weibo.svg b/api/static/bootstrap-icons/sina-weibo.svg new file mode 100644 index 0000000..6d484d2 --- /dev/null +++ b/api/static/bootstrap-icons/sina-weibo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward-btn-fill.svg b/api/static/bootstrap-icons/skip-backward-btn-fill.svg new file mode 100644 index 0000000..2029489 --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward-btn.svg b/api/static/bootstrap-icons/skip-backward-btn.svg new file mode 100644 index 0000000..7cae681 --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward-circle-fill.svg b/api/static/bootstrap-icons/skip-backward-circle-fill.svg new file mode 100644 index 0000000..7526356 --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward-circle.svg b/api/static/bootstrap-icons/skip-backward-circle.svg new file mode 100644 index 0000000..8739f31 --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward-fill.svg b/api/static/bootstrap-icons/skip-backward-fill.svg new file mode 100644 index 0000000..bf8f63e --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-backward.svg b/api/static/bootstrap-icons/skip-backward.svg new file mode 100644 index 0000000..ff5b821 --- /dev/null +++ b/api/static/bootstrap-icons/skip-backward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end-btn-fill.svg b/api/static/bootstrap-icons/skip-end-btn-fill.svg new file mode 100644 index 0000000..e721821 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end-btn.svg b/api/static/bootstrap-icons/skip-end-btn.svg new file mode 100644 index 0000000..6815577 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end-circle-fill.svg b/api/static/bootstrap-icons/skip-end-circle-fill.svg new file mode 100644 index 0000000..63c0f68 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end-circle.svg b/api/static/bootstrap-icons/skip-end-circle.svg new file mode 100644 index 0000000..50f41d9 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end-fill.svg b/api/static/bootstrap-icons/skip-end-fill.svg new file mode 100644 index 0000000..afa88e3 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-end.svg b/api/static/bootstrap-icons/skip-end.svg new file mode 100644 index 0000000..b2dfde6 --- /dev/null +++ b/api/static/bootstrap-icons/skip-end.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward-btn-fill.svg b/api/static/bootstrap-icons/skip-forward-btn-fill.svg new file mode 100644 index 0000000..9547957 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward-btn.svg b/api/static/bootstrap-icons/skip-forward-btn.svg new file mode 100644 index 0000000..46a61b0 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward-circle-fill.svg b/api/static/bootstrap-icons/skip-forward-circle-fill.svg new file mode 100644 index 0000000..aefb633 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward-circle.svg b/api/static/bootstrap-icons/skip-forward-circle.svg new file mode 100644 index 0000000..7ebc928 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward-fill.svg b/api/static/bootstrap-icons/skip-forward-fill.svg new file mode 100644 index 0000000..6c54d79 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-forward.svg b/api/static/bootstrap-icons/skip-forward.svg new file mode 100644 index 0000000..c69cfc5 --- /dev/null +++ b/api/static/bootstrap-icons/skip-forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start-btn-fill.svg b/api/static/bootstrap-icons/skip-start-btn-fill.svg new file mode 100644 index 0000000..a0af702 --- /dev/null +++ b/api/static/bootstrap-icons/skip-start-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start-btn.svg b/api/static/bootstrap-icons/skip-start-btn.svg new file mode 100644 index 0000000..b829fdd --- /dev/null +++ b/api/static/bootstrap-icons/skip-start-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start-circle-fill.svg b/api/static/bootstrap-icons/skip-start-circle-fill.svg new file mode 100644 index 0000000..bb33ab0 --- /dev/null +++ b/api/static/bootstrap-icons/skip-start-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start-circle.svg b/api/static/bootstrap-icons/skip-start-circle.svg new file mode 100644 index 0000000..d0e3323 --- /dev/null +++ b/api/static/bootstrap-icons/skip-start-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start-fill.svg b/api/static/bootstrap-icons/skip-start-fill.svg new file mode 100644 index 0000000..56cccc3 --- /dev/null +++ b/api/static/bootstrap-icons/skip-start-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skip-start.svg b/api/static/bootstrap-icons/skip-start.svg new file mode 100644 index 0000000..76811a9 --- /dev/null +++ b/api/static/bootstrap-icons/skip-start.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/skype.svg b/api/static/bootstrap-icons/skype.svg new file mode 100644 index 0000000..ad4be4d --- /dev/null +++ b/api/static/bootstrap-icons/skype.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slack.svg b/api/static/bootstrap-icons/slack.svg new file mode 100644 index 0000000..d914abe --- /dev/null +++ b/api/static/bootstrap-icons/slack.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash-circle-fill.svg b/api/static/bootstrap-icons/slash-circle-fill.svg new file mode 100644 index 0000000..5f71707 --- /dev/null +++ b/api/static/bootstrap-icons/slash-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash-circle.svg b/api/static/bootstrap-icons/slash-circle.svg new file mode 100644 index 0000000..eb26f19 --- /dev/null +++ b/api/static/bootstrap-icons/slash-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash-lg.svg b/api/static/bootstrap-icons/slash-lg.svg new file mode 100644 index 0000000..8b8b132 --- /dev/null +++ b/api/static/bootstrap-icons/slash-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash-square-fill.svg b/api/static/bootstrap-icons/slash-square-fill.svg new file mode 100644 index 0000000..6fc9153 --- /dev/null +++ b/api/static/bootstrap-icons/slash-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash-square.svg b/api/static/bootstrap-icons/slash-square.svg new file mode 100644 index 0000000..0757006 --- /dev/null +++ b/api/static/bootstrap-icons/slash-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/slash.svg b/api/static/bootstrap-icons/slash.svg new file mode 100644 index 0000000..6d18af4 --- /dev/null +++ b/api/static/bootstrap-icons/slash.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sliders.svg b/api/static/bootstrap-icons/sliders.svg new file mode 100644 index 0000000..c64a06c --- /dev/null +++ b/api/static/bootstrap-icons/sliders.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sliders2-vertical.svg b/api/static/bootstrap-icons/sliders2-vertical.svg new file mode 100644 index 0000000..4fcb8ba --- /dev/null +++ b/api/static/bootstrap-icons/sliders2-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sliders2.svg b/api/static/bootstrap-icons/sliders2.svg new file mode 100644 index 0000000..975861e --- /dev/null +++ b/api/static/bootstrap-icons/sliders2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/smartwatch.svg b/api/static/bootstrap-icons/smartwatch.svg new file mode 100644 index 0000000..0a11991 --- /dev/null +++ b/api/static/bootstrap-icons/smartwatch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/snapchat.svg b/api/static/bootstrap-icons/snapchat.svg new file mode 100644 index 0000000..01d3684 --- /dev/null +++ b/api/static/bootstrap-icons/snapchat.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/snow.svg b/api/static/bootstrap-icons/snow.svg new file mode 100644 index 0000000..9b648a5 --- /dev/null +++ b/api/static/bootstrap-icons/snow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/snow2.svg b/api/static/bootstrap-icons/snow2.svg new file mode 100644 index 0000000..6533d63 --- /dev/null +++ b/api/static/bootstrap-icons/snow2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/snow3.svg b/api/static/bootstrap-icons/snow3.svg new file mode 100644 index 0000000..01c0d73 --- /dev/null +++ b/api/static/bootstrap-icons/snow3.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-alpha-down-alt.svg b/api/static/bootstrap-icons/sort-alpha-down-alt.svg new file mode 100644 index 0000000..d03f1aa --- /dev/null +++ b/api/static/bootstrap-icons/sort-alpha-down-alt.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-alpha-down.svg b/api/static/bootstrap-icons/sort-alpha-down.svg new file mode 100644 index 0000000..6ac3e84 --- /dev/null +++ b/api/static/bootstrap-icons/sort-alpha-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-alpha-up-alt.svg b/api/static/bootstrap-icons/sort-alpha-up-alt.svg new file mode 100644 index 0000000..a7b332e --- /dev/null +++ b/api/static/bootstrap-icons/sort-alpha-up-alt.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-alpha-up.svg b/api/static/bootstrap-icons/sort-alpha-up.svg new file mode 100644 index 0000000..c5f0e3a --- /dev/null +++ b/api/static/bootstrap-icons/sort-alpha-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-down-alt.svg b/api/static/bootstrap-icons/sort-down-alt.svg new file mode 100644 index 0000000..86a1bf6 --- /dev/null +++ b/api/static/bootstrap-icons/sort-down-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-down.svg b/api/static/bootstrap-icons/sort-down.svg new file mode 100644 index 0000000..8cfdf23 --- /dev/null +++ b/api/static/bootstrap-icons/sort-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-numeric-down-alt.svg b/api/static/bootstrap-icons/sort-numeric-down-alt.svg new file mode 100644 index 0000000..ce4e3c5 --- /dev/null +++ b/api/static/bootstrap-icons/sort-numeric-down-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-numeric-down.svg b/api/static/bootstrap-icons/sort-numeric-down.svg new file mode 100644 index 0000000..afa87be --- /dev/null +++ b/api/static/bootstrap-icons/sort-numeric-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-numeric-up-alt.svg b/api/static/bootstrap-icons/sort-numeric-up-alt.svg new file mode 100644 index 0000000..d83cbf9 --- /dev/null +++ b/api/static/bootstrap-icons/sort-numeric-up-alt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-numeric-up.svg b/api/static/bootstrap-icons/sort-numeric-up.svg new file mode 100644 index 0000000..25a1e54 --- /dev/null +++ b/api/static/bootstrap-icons/sort-numeric-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-up-alt.svg b/api/static/bootstrap-icons/sort-up-alt.svg new file mode 100644 index 0000000..9f78a20 --- /dev/null +++ b/api/static/bootstrap-icons/sort-up-alt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sort-up.svg b/api/static/bootstrap-icons/sort-up.svg new file mode 100644 index 0000000..cda9ac7 --- /dev/null +++ b/api/static/bootstrap-icons/sort-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/soundwave.svg b/api/static/bootstrap-icons/soundwave.svg new file mode 100644 index 0000000..1444777 --- /dev/null +++ b/api/static/bootstrap-icons/soundwave.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sourceforge.svg b/api/static/bootstrap-icons/sourceforge.svg new file mode 100644 index 0000000..13d0c5f --- /dev/null +++ b/api/static/bootstrap-icons/sourceforge.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/speaker-fill.svg b/api/static/bootstrap-icons/speaker-fill.svg new file mode 100644 index 0000000..f6d9e33 --- /dev/null +++ b/api/static/bootstrap-icons/speaker-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/speaker.svg b/api/static/bootstrap-icons/speaker.svg new file mode 100644 index 0000000..1415b5d --- /dev/null +++ b/api/static/bootstrap-icons/speaker.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/speedometer.svg b/api/static/bootstrap-icons/speedometer.svg new file mode 100644 index 0000000..f6e3e61 --- /dev/null +++ b/api/static/bootstrap-icons/speedometer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/speedometer2.svg b/api/static/bootstrap-icons/speedometer2.svg new file mode 100644 index 0000000..75e79c8 --- /dev/null +++ b/api/static/bootstrap-icons/speedometer2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/spellcheck.svg b/api/static/bootstrap-icons/spellcheck.svg new file mode 100644 index 0000000..69fec76 --- /dev/null +++ b/api/static/bootstrap-icons/spellcheck.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/spotify.svg b/api/static/bootstrap-icons/spotify.svg new file mode 100644 index 0000000..09d0e9f --- /dev/null +++ b/api/static/bootstrap-icons/spotify.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/square-fill.svg b/api/static/bootstrap-icons/square-fill.svg new file mode 100644 index 0000000..1e72d5e --- /dev/null +++ b/api/static/bootstrap-icons/square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/square-half.svg b/api/static/bootstrap-icons/square-half.svg new file mode 100644 index 0000000..aa3e349 --- /dev/null +++ b/api/static/bootstrap-icons/square-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/square.svg b/api/static/bootstrap-icons/square.svg new file mode 100644 index 0000000..0f086de --- /dev/null +++ b/api/static/bootstrap-icons/square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stack-overflow.svg b/api/static/bootstrap-icons/stack-overflow.svg new file mode 100644 index 0000000..c5e5be6 --- /dev/null +++ b/api/static/bootstrap-icons/stack-overflow.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stack.svg b/api/static/bootstrap-icons/stack.svg new file mode 100644 index 0000000..3cf0eca --- /dev/null +++ b/api/static/bootstrap-icons/stack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/star-fill.svg b/api/static/bootstrap-icons/star-fill.svg new file mode 100644 index 0000000..de09c4a --- /dev/null +++ b/api/static/bootstrap-icons/star-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/star-half.svg b/api/static/bootstrap-icons/star-half.svg new file mode 100644 index 0000000..8a70f53 --- /dev/null +++ b/api/static/bootstrap-icons/star-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/star.svg b/api/static/bootstrap-icons/star.svg new file mode 100644 index 0000000..fcdcb1c --- /dev/null +++ b/api/static/bootstrap-icons/star.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stars.svg b/api/static/bootstrap-icons/stars.svg new file mode 100644 index 0000000..b6fb4f2 --- /dev/null +++ b/api/static/bootstrap-icons/stars.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/steam.svg b/api/static/bootstrap-icons/steam.svg new file mode 100644 index 0000000..9daa3d3 --- /dev/null +++ b/api/static/bootstrap-icons/steam.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stickies-fill.svg b/api/static/bootstrap-icons/stickies-fill.svg new file mode 100644 index 0000000..039c3b8 --- /dev/null +++ b/api/static/bootstrap-icons/stickies-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stickies.svg b/api/static/bootstrap-icons/stickies.svg new file mode 100644 index 0000000..24e6492 --- /dev/null +++ b/api/static/bootstrap-icons/stickies.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sticky-fill.svg b/api/static/bootstrap-icons/sticky-fill.svg new file mode 100644 index 0000000..b36dcb1 --- /dev/null +++ b/api/static/bootstrap-icons/sticky-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sticky.svg b/api/static/bootstrap-icons/sticky.svg new file mode 100644 index 0000000..0d50e88 --- /dev/null +++ b/api/static/bootstrap-icons/sticky.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop-btn-fill.svg b/api/static/bootstrap-icons/stop-btn-fill.svg new file mode 100644 index 0000000..70e562e --- /dev/null +++ b/api/static/bootstrap-icons/stop-btn-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop-btn.svg b/api/static/bootstrap-icons/stop-btn.svg new file mode 100644 index 0000000..26348d5 --- /dev/null +++ b/api/static/bootstrap-icons/stop-btn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop-circle-fill.svg b/api/static/bootstrap-icons/stop-circle-fill.svg new file mode 100644 index 0000000..141668e --- /dev/null +++ b/api/static/bootstrap-icons/stop-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop-circle.svg b/api/static/bootstrap-icons/stop-circle.svg new file mode 100644 index 0000000..3e1933a --- /dev/null +++ b/api/static/bootstrap-icons/stop-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop-fill.svg b/api/static/bootstrap-icons/stop-fill.svg new file mode 100644 index 0000000..ca1b957 --- /dev/null +++ b/api/static/bootstrap-icons/stop-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stop.svg b/api/static/bootstrap-icons/stop.svg new file mode 100644 index 0000000..27f1fb6 --- /dev/null +++ b/api/static/bootstrap-icons/stop.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stoplights-fill.svg b/api/static/bootstrap-icons/stoplights-fill.svg new file mode 100644 index 0000000..f0b2d76 --- /dev/null +++ b/api/static/bootstrap-icons/stoplights-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stoplights.svg b/api/static/bootstrap-icons/stoplights.svg new file mode 100644 index 0000000..6db3e12 --- /dev/null +++ b/api/static/bootstrap-icons/stoplights.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stopwatch-fill.svg b/api/static/bootstrap-icons/stopwatch-fill.svg new file mode 100644 index 0000000..1228cf2 --- /dev/null +++ b/api/static/bootstrap-icons/stopwatch-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stopwatch.svg b/api/static/bootstrap-icons/stopwatch.svg new file mode 100644 index 0000000..aff8c33 --- /dev/null +++ b/api/static/bootstrap-icons/stopwatch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/strava.svg b/api/static/bootstrap-icons/strava.svg new file mode 100644 index 0000000..0ed6bab --- /dev/null +++ b/api/static/bootstrap-icons/strava.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/stripe.svg b/api/static/bootstrap-icons/stripe.svg new file mode 100644 index 0000000..ba961a0 --- /dev/null +++ b/api/static/bootstrap-icons/stripe.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/subscript.svg b/api/static/bootstrap-icons/subscript.svg new file mode 100644 index 0000000..51f5eea --- /dev/null +++ b/api/static/bootstrap-icons/subscript.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/substack.svg b/api/static/bootstrap-icons/substack.svg new file mode 100644 index 0000000..e54179a --- /dev/null +++ b/api/static/bootstrap-icons/substack.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/subtract.svg b/api/static/bootstrap-icons/subtract.svg new file mode 100644 index 0000000..129c3d5 --- /dev/null +++ b/api/static/bootstrap-icons/subtract.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-club-fill.svg b/api/static/bootstrap-icons/suit-club-fill.svg new file mode 100644 index 0000000..a787160 --- /dev/null +++ b/api/static/bootstrap-icons/suit-club-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-club.svg b/api/static/bootstrap-icons/suit-club.svg new file mode 100644 index 0000000..3fbf98b --- /dev/null +++ b/api/static/bootstrap-icons/suit-club.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-diamond-fill.svg b/api/static/bootstrap-icons/suit-diamond-fill.svg new file mode 100644 index 0000000..67617d6 --- /dev/null +++ b/api/static/bootstrap-icons/suit-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-diamond.svg b/api/static/bootstrap-icons/suit-diamond.svg new file mode 100644 index 0000000..79b54c1 --- /dev/null +++ b/api/static/bootstrap-icons/suit-diamond.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-heart-fill.svg b/api/static/bootstrap-icons/suit-heart-fill.svg new file mode 100644 index 0000000..d09850c --- /dev/null +++ b/api/static/bootstrap-icons/suit-heart-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-heart.svg b/api/static/bootstrap-icons/suit-heart.svg new file mode 100644 index 0000000..173b32f --- /dev/null +++ b/api/static/bootstrap-icons/suit-heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-spade-fill.svg b/api/static/bootstrap-icons/suit-spade-fill.svg new file mode 100644 index 0000000..cc465e5 --- /dev/null +++ b/api/static/bootstrap-icons/suit-spade-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suit-spade.svg b/api/static/bootstrap-icons/suit-spade.svg new file mode 100644 index 0000000..7123c10 --- /dev/null +++ b/api/static/bootstrap-icons/suit-spade.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase-fill.svg b/api/static/bootstrap-icons/suitcase-fill.svg new file mode 100644 index 0000000..df62651 --- /dev/null +++ b/api/static/bootstrap-icons/suitcase-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase-lg-fill.svg b/api/static/bootstrap-icons/suitcase-lg-fill.svg new file mode 100644 index 0000000..cef1da9 --- /dev/null +++ b/api/static/bootstrap-icons/suitcase-lg-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase-lg.svg b/api/static/bootstrap-icons/suitcase-lg.svg new file mode 100644 index 0000000..ea447d2 --- /dev/null +++ b/api/static/bootstrap-icons/suitcase-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase.svg b/api/static/bootstrap-icons/suitcase.svg new file mode 100644 index 0000000..65e619d --- /dev/null +++ b/api/static/bootstrap-icons/suitcase.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase2-fill.svg b/api/static/bootstrap-icons/suitcase2-fill.svg new file mode 100644 index 0000000..a2cb410 --- /dev/null +++ b/api/static/bootstrap-icons/suitcase2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/suitcase2.svg b/api/static/bootstrap-icons/suitcase2.svg new file mode 100644 index 0000000..e6ea533 --- /dev/null +++ b/api/static/bootstrap-icons/suitcase2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sun-fill.svg b/api/static/bootstrap-icons/sun-fill.svg new file mode 100644 index 0000000..c83f69a --- /dev/null +++ b/api/static/bootstrap-icons/sun-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sun.svg b/api/static/bootstrap-icons/sun.svg new file mode 100644 index 0000000..3777f07 --- /dev/null +++ b/api/static/bootstrap-icons/sun.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sunglasses.svg b/api/static/bootstrap-icons/sunglasses.svg new file mode 100644 index 0000000..1ff81f7 --- /dev/null +++ b/api/static/bootstrap-icons/sunglasses.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sunrise-fill.svg b/api/static/bootstrap-icons/sunrise-fill.svg new file mode 100644 index 0000000..c922d7c --- /dev/null +++ b/api/static/bootstrap-icons/sunrise-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sunrise.svg b/api/static/bootstrap-icons/sunrise.svg new file mode 100644 index 0000000..98adcfb --- /dev/null +++ b/api/static/bootstrap-icons/sunrise.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sunset-fill.svg b/api/static/bootstrap-icons/sunset-fill.svg new file mode 100644 index 0000000..91a8d0e --- /dev/null +++ b/api/static/bootstrap-icons/sunset-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/sunset.svg b/api/static/bootstrap-icons/sunset.svg new file mode 100644 index 0000000..e72d634 --- /dev/null +++ b/api/static/bootstrap-icons/sunset.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/superscript.svg b/api/static/bootstrap-icons/superscript.svg new file mode 100644 index 0000000..81543ae --- /dev/null +++ b/api/static/bootstrap-icons/superscript.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/symmetry-horizontal.svg b/api/static/bootstrap-icons/symmetry-horizontal.svg new file mode 100644 index 0000000..594735b --- /dev/null +++ b/api/static/bootstrap-icons/symmetry-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/symmetry-vertical.svg b/api/static/bootstrap-icons/symmetry-vertical.svg new file mode 100644 index 0000000..6907280 --- /dev/null +++ b/api/static/bootstrap-icons/symmetry-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/table.svg b/api/static/bootstrap-icons/table.svg new file mode 100644 index 0000000..8f70585 --- /dev/null +++ b/api/static/bootstrap-icons/table.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tablet-fill.svg b/api/static/bootstrap-icons/tablet-fill.svg new file mode 100644 index 0000000..0746ead --- /dev/null +++ b/api/static/bootstrap-icons/tablet-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tablet-landscape-fill.svg b/api/static/bootstrap-icons/tablet-landscape-fill.svg new file mode 100644 index 0000000..6290024 --- /dev/null +++ b/api/static/bootstrap-icons/tablet-landscape-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tablet-landscape.svg b/api/static/bootstrap-icons/tablet-landscape.svg new file mode 100644 index 0000000..438d4d1 --- /dev/null +++ b/api/static/bootstrap-icons/tablet-landscape.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tablet.svg b/api/static/bootstrap-icons/tablet.svg new file mode 100644 index 0000000..eebeee3 --- /dev/null +++ b/api/static/bootstrap-icons/tablet.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tag-fill.svg b/api/static/bootstrap-icons/tag-fill.svg new file mode 100644 index 0000000..6a95e2d --- /dev/null +++ b/api/static/bootstrap-icons/tag-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tag.svg b/api/static/bootstrap-icons/tag.svg new file mode 100644 index 0000000..01d19b5 --- /dev/null +++ b/api/static/bootstrap-icons/tag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tags-fill.svg b/api/static/bootstrap-icons/tags-fill.svg new file mode 100644 index 0000000..1673abb --- /dev/null +++ b/api/static/bootstrap-icons/tags-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tags.svg b/api/static/bootstrap-icons/tags.svg new file mode 100644 index 0000000..ade5519 --- /dev/null +++ b/api/static/bootstrap-icons/tags.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/taxi-front-fill.svg b/api/static/bootstrap-icons/taxi-front-fill.svg new file mode 100644 index 0000000..ef7f45b --- /dev/null +++ b/api/static/bootstrap-icons/taxi-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/taxi-front.svg b/api/static/bootstrap-icons/taxi-front.svg new file mode 100644 index 0000000..1b4337a --- /dev/null +++ b/api/static/bootstrap-icons/taxi-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telegram.svg b/api/static/bootstrap-icons/telegram.svg new file mode 100644 index 0000000..d260266 --- /dev/null +++ b/api/static/bootstrap-icons/telegram.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-fill.svg b/api/static/bootstrap-icons/telephone-fill.svg new file mode 100644 index 0000000..2e9de2e --- /dev/null +++ b/api/static/bootstrap-icons/telephone-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-forward-fill.svg b/api/static/bootstrap-icons/telephone-forward-fill.svg new file mode 100644 index 0000000..26fc35f --- /dev/null +++ b/api/static/bootstrap-icons/telephone-forward-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-forward.svg b/api/static/bootstrap-icons/telephone-forward.svg new file mode 100644 index 0000000..08c07bd --- /dev/null +++ b/api/static/bootstrap-icons/telephone-forward.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-inbound-fill.svg b/api/static/bootstrap-icons/telephone-inbound-fill.svg new file mode 100644 index 0000000..85434d0 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-inbound-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-inbound.svg b/api/static/bootstrap-icons/telephone-inbound.svg new file mode 100644 index 0000000..8ec20a6 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-inbound.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-minus-fill.svg b/api/static/bootstrap-icons/telephone-minus-fill.svg new file mode 100644 index 0000000..7b2fe9d --- /dev/null +++ b/api/static/bootstrap-icons/telephone-minus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-minus.svg b/api/static/bootstrap-icons/telephone-minus.svg new file mode 100644 index 0000000..6ebc50e --- /dev/null +++ b/api/static/bootstrap-icons/telephone-minus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-outbound-fill.svg b/api/static/bootstrap-icons/telephone-outbound-fill.svg new file mode 100644 index 0000000..0a18bda --- /dev/null +++ b/api/static/bootstrap-icons/telephone-outbound-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-outbound.svg b/api/static/bootstrap-icons/telephone-outbound.svg new file mode 100644 index 0000000..566eb46 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-outbound.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-plus-fill.svg b/api/static/bootstrap-icons/telephone-plus-fill.svg new file mode 100644 index 0000000..b02874f --- /dev/null +++ b/api/static/bootstrap-icons/telephone-plus-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-plus.svg b/api/static/bootstrap-icons/telephone-plus.svg new file mode 100644 index 0000000..787e0c6 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-x-fill.svg b/api/static/bootstrap-icons/telephone-x-fill.svg new file mode 100644 index 0000000..5410e16 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-x-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone-x.svg b/api/static/bootstrap-icons/telephone-x.svg new file mode 100644 index 0000000..3f483a1 --- /dev/null +++ b/api/static/bootstrap-icons/telephone-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/telephone.svg b/api/static/bootstrap-icons/telephone.svg new file mode 100644 index 0000000..679e8a9 --- /dev/null +++ b/api/static/bootstrap-icons/telephone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tencent-qq.svg b/api/static/bootstrap-icons/tencent-qq.svg new file mode 100644 index 0000000..0d5cd23 --- /dev/null +++ b/api/static/bootstrap-icons/tencent-qq.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal-dash.svg b/api/static/bootstrap-icons/terminal-dash.svg new file mode 100644 index 0000000..9f46e8e --- /dev/null +++ b/api/static/bootstrap-icons/terminal-dash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal-fill.svg b/api/static/bootstrap-icons/terminal-fill.svg new file mode 100644 index 0000000..fabd075 --- /dev/null +++ b/api/static/bootstrap-icons/terminal-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal-plus.svg b/api/static/bootstrap-icons/terminal-plus.svg new file mode 100644 index 0000000..32c6432 --- /dev/null +++ b/api/static/bootstrap-icons/terminal-plus.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal-split.svg b/api/static/bootstrap-icons/terminal-split.svg new file mode 100644 index 0000000..a378c37 --- /dev/null +++ b/api/static/bootstrap-icons/terminal-split.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal-x.svg b/api/static/bootstrap-icons/terminal-x.svg new file mode 100644 index 0000000..aa59e7f --- /dev/null +++ b/api/static/bootstrap-icons/terminal-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/terminal.svg b/api/static/bootstrap-icons/terminal.svg new file mode 100644 index 0000000..44aef95 --- /dev/null +++ b/api/static/bootstrap-icons/terminal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-center.svg b/api/static/bootstrap-icons/text-center.svg new file mode 100644 index 0000000..12d9e29 --- /dev/null +++ b/api/static/bootstrap-icons/text-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-indent-left.svg b/api/static/bootstrap-icons/text-indent-left.svg new file mode 100644 index 0000000..5a607af --- /dev/null +++ b/api/static/bootstrap-icons/text-indent-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-indent-right.svg b/api/static/bootstrap-icons/text-indent-right.svg new file mode 100644 index 0000000..de91d9e --- /dev/null +++ b/api/static/bootstrap-icons/text-indent-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-left.svg b/api/static/bootstrap-icons/text-left.svg new file mode 100644 index 0000000..36ae0d3 --- /dev/null +++ b/api/static/bootstrap-icons/text-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-paragraph.svg b/api/static/bootstrap-icons/text-paragraph.svg new file mode 100644 index 0000000..035a1c8 --- /dev/null +++ b/api/static/bootstrap-icons/text-paragraph.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-right.svg b/api/static/bootstrap-icons/text-right.svg new file mode 100644 index 0000000..98178e7 --- /dev/null +++ b/api/static/bootstrap-icons/text-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/text-wrap.svg b/api/static/bootstrap-icons/text-wrap.svg new file mode 100644 index 0000000..4c732d6 --- /dev/null +++ b/api/static/bootstrap-icons/text-wrap.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/textarea-resize.svg b/api/static/bootstrap-icons/textarea-resize.svg new file mode 100644 index 0000000..6401320 --- /dev/null +++ b/api/static/bootstrap-icons/textarea-resize.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/textarea-t.svg b/api/static/bootstrap-icons/textarea-t.svg new file mode 100644 index 0000000..145cbb7 --- /dev/null +++ b/api/static/bootstrap-icons/textarea-t.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/textarea.svg b/api/static/bootstrap-icons/textarea.svg new file mode 100644 index 0000000..176ca25 --- /dev/null +++ b/api/static/bootstrap-icons/textarea.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer-half.svg b/api/static/bootstrap-icons/thermometer-half.svg new file mode 100644 index 0000000..018eab1 --- /dev/null +++ b/api/static/bootstrap-icons/thermometer-half.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer-high.svg b/api/static/bootstrap-icons/thermometer-high.svg new file mode 100644 index 0000000..22e77d1 --- /dev/null +++ b/api/static/bootstrap-icons/thermometer-high.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer-low.svg b/api/static/bootstrap-icons/thermometer-low.svg new file mode 100644 index 0000000..1f0f5e1 --- /dev/null +++ b/api/static/bootstrap-icons/thermometer-low.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer-snow.svg b/api/static/bootstrap-icons/thermometer-snow.svg new file mode 100644 index 0000000..df7c1d1 --- /dev/null +++ b/api/static/bootstrap-icons/thermometer-snow.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer-sun.svg b/api/static/bootstrap-icons/thermometer-sun.svg new file mode 100644 index 0000000..c453dee --- /dev/null +++ b/api/static/bootstrap-icons/thermometer-sun.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thermometer.svg b/api/static/bootstrap-icons/thermometer.svg new file mode 100644 index 0000000..8a5529b --- /dev/null +++ b/api/static/bootstrap-icons/thermometer.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/threads-fill.svg b/api/static/bootstrap-icons/threads-fill.svg new file mode 100644 index 0000000..b19666d --- /dev/null +++ b/api/static/bootstrap-icons/threads-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/threads.svg b/api/static/bootstrap-icons/threads.svg new file mode 100644 index 0000000..13c9e7a --- /dev/null +++ b/api/static/bootstrap-icons/threads.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/three-dots-vertical.svg b/api/static/bootstrap-icons/three-dots-vertical.svg new file mode 100644 index 0000000..f5ef7d4 --- /dev/null +++ b/api/static/bootstrap-icons/three-dots-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/three-dots.svg b/api/static/bootstrap-icons/three-dots.svg new file mode 100644 index 0000000..4706f52 --- /dev/null +++ b/api/static/bootstrap-icons/three-dots.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thunderbolt-fill.svg b/api/static/bootstrap-icons/thunderbolt-fill.svg new file mode 100644 index 0000000..1faea43 --- /dev/null +++ b/api/static/bootstrap-icons/thunderbolt-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/thunderbolt.svg b/api/static/bootstrap-icons/thunderbolt.svg new file mode 100644 index 0000000..3655659 --- /dev/null +++ b/api/static/bootstrap-icons/thunderbolt.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket-detailed-fill.svg b/api/static/bootstrap-icons/ticket-detailed-fill.svg new file mode 100644 index 0000000..cd7a3a7 --- /dev/null +++ b/api/static/bootstrap-icons/ticket-detailed-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket-detailed.svg b/api/static/bootstrap-icons/ticket-detailed.svg new file mode 100644 index 0000000..cf32e88 --- /dev/null +++ b/api/static/bootstrap-icons/ticket-detailed.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket-fill.svg b/api/static/bootstrap-icons/ticket-fill.svg new file mode 100644 index 0000000..01e9108 --- /dev/null +++ b/api/static/bootstrap-icons/ticket-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket-perforated-fill.svg b/api/static/bootstrap-icons/ticket-perforated-fill.svg new file mode 100644 index 0000000..38c18dc --- /dev/null +++ b/api/static/bootstrap-icons/ticket-perforated-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket-perforated.svg b/api/static/bootstrap-icons/ticket-perforated.svg new file mode 100644 index 0000000..da44537 --- /dev/null +++ b/api/static/bootstrap-icons/ticket-perforated.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ticket.svg b/api/static/bootstrap-icons/ticket.svg new file mode 100644 index 0000000..eb813a1 --- /dev/null +++ b/api/static/bootstrap-icons/ticket.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tiktok.svg b/api/static/bootstrap-icons/tiktok.svg new file mode 100644 index 0000000..04c6679 --- /dev/null +++ b/api/static/bootstrap-icons/tiktok.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggle-off.svg b/api/static/bootstrap-icons/toggle-off.svg new file mode 100644 index 0000000..e1e89ad --- /dev/null +++ b/api/static/bootstrap-icons/toggle-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggle-on.svg b/api/static/bootstrap-icons/toggle-on.svg new file mode 100644 index 0000000..7cd6eb3 --- /dev/null +++ b/api/static/bootstrap-icons/toggle-on.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggle2-off.svg b/api/static/bootstrap-icons/toggle2-off.svg new file mode 100644 index 0000000..61739ce --- /dev/null +++ b/api/static/bootstrap-icons/toggle2-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggle2-on.svg b/api/static/bootstrap-icons/toggle2-on.svg new file mode 100644 index 0000000..d752ce8 --- /dev/null +++ b/api/static/bootstrap-icons/toggle2-on.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggles.svg b/api/static/bootstrap-icons/toggles.svg new file mode 100644 index 0000000..659c185 --- /dev/null +++ b/api/static/bootstrap-icons/toggles.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/toggles2.svg b/api/static/bootstrap-icons/toggles2.svg new file mode 100644 index 0000000..2f90344 --- /dev/null +++ b/api/static/bootstrap-icons/toggles2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tools.svg b/api/static/bootstrap-icons/tools.svg new file mode 100644 index 0000000..f6efdcc --- /dev/null +++ b/api/static/bootstrap-icons/tools.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tornado.svg b/api/static/bootstrap-icons/tornado.svg new file mode 100644 index 0000000..2a6397c --- /dev/null +++ b/api/static/bootstrap-icons/tornado.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-freight-front-fill.svg b/api/static/bootstrap-icons/train-freight-front-fill.svg new file mode 100644 index 0000000..e272051 --- /dev/null +++ b/api/static/bootstrap-icons/train-freight-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-freight-front.svg b/api/static/bootstrap-icons/train-freight-front.svg new file mode 100644 index 0000000..097c960 --- /dev/null +++ b/api/static/bootstrap-icons/train-freight-front.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-front-fill.svg b/api/static/bootstrap-icons/train-front-fill.svg new file mode 100644 index 0000000..4acad08 --- /dev/null +++ b/api/static/bootstrap-icons/train-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-front.svg b/api/static/bootstrap-icons/train-front.svg new file mode 100644 index 0000000..81ce139 --- /dev/null +++ b/api/static/bootstrap-icons/train-front.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-lightrail-front-fill.svg b/api/static/bootstrap-icons/train-lightrail-front-fill.svg new file mode 100644 index 0000000..7bd87fb --- /dev/null +++ b/api/static/bootstrap-icons/train-lightrail-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/train-lightrail-front.svg b/api/static/bootstrap-icons/train-lightrail-front.svg new file mode 100644 index 0000000..d7aa87f --- /dev/null +++ b/api/static/bootstrap-icons/train-lightrail-front.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/translate.svg b/api/static/bootstrap-icons/translate.svg new file mode 100644 index 0000000..2e0754e --- /dev/null +++ b/api/static/bootstrap-icons/translate.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/transparency.svg b/api/static/bootstrap-icons/transparency.svg new file mode 100644 index 0000000..289a4b9 --- /dev/null +++ b/api/static/bootstrap-icons/transparency.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash-fill.svg b/api/static/bootstrap-icons/trash-fill.svg new file mode 100644 index 0000000..b67453a --- /dev/null +++ b/api/static/bootstrap-icons/trash-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash.svg b/api/static/bootstrap-icons/trash.svg new file mode 100644 index 0000000..3020264 --- /dev/null +++ b/api/static/bootstrap-icons/trash.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash2-fill.svg b/api/static/bootstrap-icons/trash2-fill.svg new file mode 100644 index 0000000..fb1d90d --- /dev/null +++ b/api/static/bootstrap-icons/trash2-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash2.svg b/api/static/bootstrap-icons/trash2.svg new file mode 100644 index 0000000..0cabe8d --- /dev/null +++ b/api/static/bootstrap-icons/trash2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash3-fill.svg b/api/static/bootstrap-icons/trash3-fill.svg new file mode 100644 index 0000000..42fbfc5 --- /dev/null +++ b/api/static/bootstrap-icons/trash3-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trash3.svg b/api/static/bootstrap-icons/trash3.svg new file mode 100644 index 0000000..5194bf0 --- /dev/null +++ b/api/static/bootstrap-icons/trash3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tree-fill.svg b/api/static/bootstrap-icons/tree-fill.svg new file mode 100644 index 0000000..d00e733 --- /dev/null +++ b/api/static/bootstrap-icons/tree-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tree.svg b/api/static/bootstrap-icons/tree.svg new file mode 100644 index 0000000..17a5efe --- /dev/null +++ b/api/static/bootstrap-icons/tree.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trello.svg b/api/static/bootstrap-icons/trello.svg new file mode 100644 index 0000000..bd88732 --- /dev/null +++ b/api/static/bootstrap-icons/trello.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/triangle-fill.svg b/api/static/bootstrap-icons/triangle-fill.svg new file mode 100644 index 0000000..474c8bb --- /dev/null +++ b/api/static/bootstrap-icons/triangle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/triangle-half.svg b/api/static/bootstrap-icons/triangle-half.svg new file mode 100644 index 0000000..a495ca0 --- /dev/null +++ b/api/static/bootstrap-icons/triangle-half.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/triangle.svg b/api/static/bootstrap-icons/triangle.svg new file mode 100644 index 0000000..95a6a9b --- /dev/null +++ b/api/static/bootstrap-icons/triangle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trophy-fill.svg b/api/static/bootstrap-icons/trophy-fill.svg new file mode 100644 index 0000000..f469737 --- /dev/null +++ b/api/static/bootstrap-icons/trophy-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/trophy.svg b/api/static/bootstrap-icons/trophy.svg new file mode 100644 index 0000000..ae13957 --- /dev/null +++ b/api/static/bootstrap-icons/trophy.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tropical-storm.svg b/api/static/bootstrap-icons/tropical-storm.svg new file mode 100644 index 0000000..9eb3354 --- /dev/null +++ b/api/static/bootstrap-icons/tropical-storm.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/truck-flatbed.svg b/api/static/bootstrap-icons/truck-flatbed.svg new file mode 100644 index 0000000..4b38155 --- /dev/null +++ b/api/static/bootstrap-icons/truck-flatbed.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/truck-front-fill.svg b/api/static/bootstrap-icons/truck-front-fill.svg new file mode 100644 index 0000000..39f72d0 --- /dev/null +++ b/api/static/bootstrap-icons/truck-front-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/truck-front.svg b/api/static/bootstrap-icons/truck-front.svg new file mode 100644 index 0000000..d805db5 --- /dev/null +++ b/api/static/bootstrap-icons/truck-front.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/truck.svg b/api/static/bootstrap-icons/truck.svg new file mode 100644 index 0000000..72c5439 --- /dev/null +++ b/api/static/bootstrap-icons/truck.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tsunami.svg b/api/static/bootstrap-icons/tsunami.svg new file mode 100644 index 0000000..be5f9be --- /dev/null +++ b/api/static/bootstrap-icons/tsunami.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tv-fill.svg b/api/static/bootstrap-icons/tv-fill.svg new file mode 100644 index 0000000..483c9fd --- /dev/null +++ b/api/static/bootstrap-icons/tv-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/tv.svg b/api/static/bootstrap-icons/tv.svg new file mode 100644 index 0000000..fa8b3c1 --- /dev/null +++ b/api/static/bootstrap-icons/tv.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/twitch.svg b/api/static/bootstrap-icons/twitch.svg new file mode 100644 index 0000000..b2c8ff5 --- /dev/null +++ b/api/static/bootstrap-icons/twitch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/twitter-x.svg b/api/static/bootstrap-icons/twitter-x.svg new file mode 100644 index 0000000..2fafcc2 --- /dev/null +++ b/api/static/bootstrap-icons/twitter-x.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/twitter.svg b/api/static/bootstrap-icons/twitter.svg new file mode 100644 index 0000000..3001352 --- /dev/null +++ b/api/static/bootstrap-icons/twitter.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-bold.svg b/api/static/bootstrap-icons/type-bold.svg new file mode 100644 index 0000000..0814a2e --- /dev/null +++ b/api/static/bootstrap-icons/type-bold.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h1.svg b/api/static/bootstrap-icons/type-h1.svg new file mode 100644 index 0000000..0df41f6 --- /dev/null +++ b/api/static/bootstrap-icons/type-h1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h2.svg b/api/static/bootstrap-icons/type-h2.svg new file mode 100644 index 0000000..03379ed --- /dev/null +++ b/api/static/bootstrap-icons/type-h2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h3.svg b/api/static/bootstrap-icons/type-h3.svg new file mode 100644 index 0000000..97de531 --- /dev/null +++ b/api/static/bootstrap-icons/type-h3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h4.svg b/api/static/bootstrap-icons/type-h4.svg new file mode 100644 index 0000000..a7ddc81 --- /dev/null +++ b/api/static/bootstrap-icons/type-h4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h5.svg b/api/static/bootstrap-icons/type-h5.svg new file mode 100644 index 0000000..776bfa3 --- /dev/null +++ b/api/static/bootstrap-icons/type-h5.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-h6.svg b/api/static/bootstrap-icons/type-h6.svg new file mode 100644 index 0000000..9267192 --- /dev/null +++ b/api/static/bootstrap-icons/type-h6.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-italic.svg b/api/static/bootstrap-icons/type-italic.svg new file mode 100644 index 0000000..3ac6b09 --- /dev/null +++ b/api/static/bootstrap-icons/type-italic.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-strikethrough.svg b/api/static/bootstrap-icons/type-strikethrough.svg new file mode 100644 index 0000000..c64eba3 --- /dev/null +++ b/api/static/bootstrap-icons/type-strikethrough.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type-underline.svg b/api/static/bootstrap-icons/type-underline.svg new file mode 100644 index 0000000..1c0b6c4 --- /dev/null +++ b/api/static/bootstrap-icons/type-underline.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/type.svg b/api/static/bootstrap-icons/type.svg new file mode 100644 index 0000000..8c1fde1 --- /dev/null +++ b/api/static/bootstrap-icons/type.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ubuntu.svg b/api/static/bootstrap-icons/ubuntu.svg new file mode 100644 index 0000000..89c8830 --- /dev/null +++ b/api/static/bootstrap-icons/ubuntu.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ui-checks-grid.svg b/api/static/bootstrap-icons/ui-checks-grid.svg new file mode 100644 index 0000000..e5d1ed9 --- /dev/null +++ b/api/static/bootstrap-icons/ui-checks-grid.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ui-checks.svg b/api/static/bootstrap-icons/ui-checks.svg new file mode 100644 index 0000000..5d02869 --- /dev/null +++ b/api/static/bootstrap-icons/ui-checks.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ui-radios-grid.svg b/api/static/bootstrap-icons/ui-radios-grid.svg new file mode 100644 index 0000000..9f9aae0 --- /dev/null +++ b/api/static/bootstrap-icons/ui-radios-grid.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/ui-radios.svg b/api/static/bootstrap-icons/ui-radios.svg new file mode 100644 index 0000000..9165340 --- /dev/null +++ b/api/static/bootstrap-icons/ui-radios.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/umbrella-fill.svg b/api/static/bootstrap-icons/umbrella-fill.svg new file mode 100644 index 0000000..3efaf13 --- /dev/null +++ b/api/static/bootstrap-icons/umbrella-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/umbrella.svg b/api/static/bootstrap-icons/umbrella.svg new file mode 100644 index 0000000..f7b698c --- /dev/null +++ b/api/static/bootstrap-icons/umbrella.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/unindent.svg b/api/static/bootstrap-icons/unindent.svg new file mode 100644 index 0000000..9e68255 --- /dev/null +++ b/api/static/bootstrap-icons/unindent.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/union.svg b/api/static/bootstrap-icons/union.svg new file mode 100644 index 0000000..ba23f54 --- /dev/null +++ b/api/static/bootstrap-icons/union.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/unity.svg b/api/static/bootstrap-icons/unity.svg new file mode 100644 index 0000000..8b84508 --- /dev/null +++ b/api/static/bootstrap-icons/unity.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/universal-access-circle.svg b/api/static/bootstrap-icons/universal-access-circle.svg new file mode 100644 index 0000000..e5ea936 --- /dev/null +++ b/api/static/bootstrap-icons/universal-access-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/universal-access.svg b/api/static/bootstrap-icons/universal-access.svg new file mode 100644 index 0000000..0d0d6ef --- /dev/null +++ b/api/static/bootstrap-icons/universal-access.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/unlock-fill.svg b/api/static/bootstrap-icons/unlock-fill.svg new file mode 100644 index 0000000..07156e7 --- /dev/null +++ b/api/static/bootstrap-icons/unlock-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/unlock.svg b/api/static/bootstrap-icons/unlock.svg new file mode 100644 index 0000000..4dda5e9 --- /dev/null +++ b/api/static/bootstrap-icons/unlock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/upc-scan.svg b/api/static/bootstrap-icons/upc-scan.svg new file mode 100644 index 0000000..1a89554 --- /dev/null +++ b/api/static/bootstrap-icons/upc-scan.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/upc.svg b/api/static/bootstrap-icons/upc.svg new file mode 100644 index 0000000..785297d --- /dev/null +++ b/api/static/bootstrap-icons/upc.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/upload.svg b/api/static/bootstrap-icons/upload.svg new file mode 100644 index 0000000..9a4a363 --- /dev/null +++ b/api/static/bootstrap-icons/upload.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-c-fill.svg b/api/static/bootstrap-icons/usb-c-fill.svg new file mode 100644 index 0000000..759eee2 --- /dev/null +++ b/api/static/bootstrap-icons/usb-c-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-c.svg b/api/static/bootstrap-icons/usb-c.svg new file mode 100644 index 0000000..1198332 --- /dev/null +++ b/api/static/bootstrap-icons/usb-c.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-drive-fill.svg b/api/static/bootstrap-icons/usb-drive-fill.svg new file mode 100644 index 0000000..2f656ee --- /dev/null +++ b/api/static/bootstrap-icons/usb-drive-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-drive.svg b/api/static/bootstrap-icons/usb-drive.svg new file mode 100644 index 0000000..739051d --- /dev/null +++ b/api/static/bootstrap-icons/usb-drive.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-fill.svg b/api/static/bootstrap-icons/usb-fill.svg new file mode 100644 index 0000000..a3b17fa --- /dev/null +++ b/api/static/bootstrap-icons/usb-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-micro-fill.svg b/api/static/bootstrap-icons/usb-micro-fill.svg new file mode 100644 index 0000000..1469a9b --- /dev/null +++ b/api/static/bootstrap-icons/usb-micro-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-micro.svg b/api/static/bootstrap-icons/usb-micro.svg new file mode 100644 index 0000000..ece7da7 --- /dev/null +++ b/api/static/bootstrap-icons/usb-micro.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-mini-fill.svg b/api/static/bootstrap-icons/usb-mini-fill.svg new file mode 100644 index 0000000..3ab0747 --- /dev/null +++ b/api/static/bootstrap-icons/usb-mini-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-mini.svg b/api/static/bootstrap-icons/usb-mini.svg new file mode 100644 index 0000000..f095b67 --- /dev/null +++ b/api/static/bootstrap-icons/usb-mini.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-plug-fill.svg b/api/static/bootstrap-icons/usb-plug-fill.svg new file mode 100644 index 0000000..d1dc518 --- /dev/null +++ b/api/static/bootstrap-icons/usb-plug-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-plug.svg b/api/static/bootstrap-icons/usb-plug.svg new file mode 100644 index 0000000..f3d7220 --- /dev/null +++ b/api/static/bootstrap-icons/usb-plug.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb-symbol.svg b/api/static/bootstrap-icons/usb-symbol.svg new file mode 100644 index 0000000..457f93f --- /dev/null +++ b/api/static/bootstrap-icons/usb-symbol.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/usb.svg b/api/static/bootstrap-icons/usb.svg new file mode 100644 index 0000000..737bef5 --- /dev/null +++ b/api/static/bootstrap-icons/usb.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/valentine.svg b/api/static/bootstrap-icons/valentine.svg new file mode 100644 index 0000000..7b8f0a3 --- /dev/null +++ b/api/static/bootstrap-icons/valentine.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/valentine2.svg b/api/static/bootstrap-icons/valentine2.svg new file mode 100644 index 0000000..6d95a2d --- /dev/null +++ b/api/static/bootstrap-icons/valentine2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vector-pen.svg b/api/static/bootstrap-icons/vector-pen.svg new file mode 100644 index 0000000..60115b7 --- /dev/null +++ b/api/static/bootstrap-icons/vector-pen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/view-list.svg b/api/static/bootstrap-icons/view-list.svg new file mode 100644 index 0000000..9211543 --- /dev/null +++ b/api/static/bootstrap-icons/view-list.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/view-stacked.svg b/api/static/bootstrap-icons/view-stacked.svg new file mode 100644 index 0000000..84b5ccf --- /dev/null +++ b/api/static/bootstrap-icons/view-stacked.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vignette.svg b/api/static/bootstrap-icons/vignette.svg new file mode 100644 index 0000000..d179290 --- /dev/null +++ b/api/static/bootstrap-icons/vignette.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vimeo.svg b/api/static/bootstrap-icons/vimeo.svg new file mode 100644 index 0000000..6b8e4b5 --- /dev/null +++ b/api/static/bootstrap-icons/vimeo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vinyl-fill.svg b/api/static/bootstrap-icons/vinyl-fill.svg new file mode 100644 index 0000000..546d7bb --- /dev/null +++ b/api/static/bootstrap-icons/vinyl-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vinyl.svg b/api/static/bootstrap-icons/vinyl.svg new file mode 100644 index 0000000..63647e5 --- /dev/null +++ b/api/static/bootstrap-icons/vinyl.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/virus.svg b/api/static/bootstrap-icons/virus.svg new file mode 100644 index 0000000..fd291a5 --- /dev/null +++ b/api/static/bootstrap-icons/virus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/virus2.svg b/api/static/bootstrap-icons/virus2.svg new file mode 100644 index 0000000..53f44e9 --- /dev/null +++ b/api/static/bootstrap-icons/virus2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/voicemail.svg b/api/static/bootstrap-icons/voicemail.svg new file mode 100644 index 0000000..ba22eb1 --- /dev/null +++ b/api/static/bootstrap-icons/voicemail.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-down-fill.svg b/api/static/bootstrap-icons/volume-down-fill.svg new file mode 100644 index 0000000..681d349 --- /dev/null +++ b/api/static/bootstrap-icons/volume-down-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-down.svg b/api/static/bootstrap-icons/volume-down.svg new file mode 100644 index 0000000..3ca7e6a --- /dev/null +++ b/api/static/bootstrap-icons/volume-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-mute-fill.svg b/api/static/bootstrap-icons/volume-mute-fill.svg new file mode 100644 index 0000000..148628c --- /dev/null +++ b/api/static/bootstrap-icons/volume-mute-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-mute.svg b/api/static/bootstrap-icons/volume-mute.svg new file mode 100644 index 0000000..d06d3dc --- /dev/null +++ b/api/static/bootstrap-icons/volume-mute.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-off-fill.svg b/api/static/bootstrap-icons/volume-off-fill.svg new file mode 100644 index 0000000..315110a --- /dev/null +++ b/api/static/bootstrap-icons/volume-off-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-off.svg b/api/static/bootstrap-icons/volume-off.svg new file mode 100644 index 0000000..e5f82cc --- /dev/null +++ b/api/static/bootstrap-icons/volume-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-up-fill.svg b/api/static/bootstrap-icons/volume-up-fill.svg new file mode 100644 index 0000000..0f94073 --- /dev/null +++ b/api/static/bootstrap-icons/volume-up-fill.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/volume-up.svg b/api/static/bootstrap-icons/volume-up.svg new file mode 100644 index 0000000..6347f42 --- /dev/null +++ b/api/static/bootstrap-icons/volume-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/vr.svg b/api/static/bootstrap-icons/vr.svg new file mode 100644 index 0000000..5ad5438 --- /dev/null +++ b/api/static/bootstrap-icons/vr.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wallet-fill.svg b/api/static/bootstrap-icons/wallet-fill.svg new file mode 100644 index 0000000..ee1c27d --- /dev/null +++ b/api/static/bootstrap-icons/wallet-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wallet.svg b/api/static/bootstrap-icons/wallet.svg new file mode 100644 index 0000000..6c9d247 --- /dev/null +++ b/api/static/bootstrap-icons/wallet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wallet2.svg b/api/static/bootstrap-icons/wallet2.svg new file mode 100644 index 0000000..b127b0e --- /dev/null +++ b/api/static/bootstrap-icons/wallet2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/watch.svg b/api/static/bootstrap-icons/watch.svg new file mode 100644 index 0000000..542d4d8 --- /dev/null +++ b/api/static/bootstrap-icons/watch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/water.svg b/api/static/bootstrap-icons/water.svg new file mode 100644 index 0000000..666653b --- /dev/null +++ b/api/static/bootstrap-icons/water.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/webcam-fill.svg b/api/static/bootstrap-icons/webcam-fill.svg new file mode 100644 index 0000000..e8db7ba --- /dev/null +++ b/api/static/bootstrap-icons/webcam-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/webcam.svg b/api/static/bootstrap-icons/webcam.svg new file mode 100644 index 0000000..0d23803 --- /dev/null +++ b/api/static/bootstrap-icons/webcam.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wechat.svg b/api/static/bootstrap-icons/wechat.svg new file mode 100644 index 0000000..3bc67dd --- /dev/null +++ b/api/static/bootstrap-icons/wechat.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/whatsapp.svg b/api/static/bootstrap-icons/whatsapp.svg new file mode 100644 index 0000000..5cde6f7 --- /dev/null +++ b/api/static/bootstrap-icons/whatsapp.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wifi-1.svg b/api/static/bootstrap-icons/wifi-1.svg new file mode 100644 index 0000000..5f3d340 --- /dev/null +++ b/api/static/bootstrap-icons/wifi-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wifi-2.svg b/api/static/bootstrap-icons/wifi-2.svg new file mode 100644 index 0000000..09d26c2 --- /dev/null +++ b/api/static/bootstrap-icons/wifi-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wifi-off.svg b/api/static/bootstrap-icons/wifi-off.svg new file mode 100644 index 0000000..2f5e61f --- /dev/null +++ b/api/static/bootstrap-icons/wifi-off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wifi.svg b/api/static/bootstrap-icons/wifi.svg new file mode 100644 index 0000000..773e027 --- /dev/null +++ b/api/static/bootstrap-icons/wifi.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wikipedia.svg b/api/static/bootstrap-icons/wikipedia.svg new file mode 100644 index 0000000..11f2fc6 --- /dev/null +++ b/api/static/bootstrap-icons/wikipedia.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wind.svg b/api/static/bootstrap-icons/wind.svg new file mode 100644 index 0000000..2ac05cd --- /dev/null +++ b/api/static/bootstrap-icons/wind.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-dash.svg b/api/static/bootstrap-icons/window-dash.svg new file mode 100644 index 0000000..5e157af --- /dev/null +++ b/api/static/bootstrap-icons/window-dash.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-desktop.svg b/api/static/bootstrap-icons/window-desktop.svg new file mode 100644 index 0000000..fa17523 --- /dev/null +++ b/api/static/bootstrap-icons/window-desktop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-dock.svg b/api/static/bootstrap-icons/window-dock.svg new file mode 100644 index 0000000..41cdf69 --- /dev/null +++ b/api/static/bootstrap-icons/window-dock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-fullscreen.svg b/api/static/bootstrap-icons/window-fullscreen.svg new file mode 100644 index 0000000..421c4c5 --- /dev/null +++ b/api/static/bootstrap-icons/window-fullscreen.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-plus.svg b/api/static/bootstrap-icons/window-plus.svg new file mode 100644 index 0000000..e24ce0c --- /dev/null +++ b/api/static/bootstrap-icons/window-plus.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-sidebar.svg b/api/static/bootstrap-icons/window-sidebar.svg new file mode 100644 index 0000000..d020d13 --- /dev/null +++ b/api/static/bootstrap-icons/window-sidebar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-split.svg b/api/static/bootstrap-icons/window-split.svg new file mode 100644 index 0000000..96bdd24 --- /dev/null +++ b/api/static/bootstrap-icons/window-split.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-stack.svg b/api/static/bootstrap-icons/window-stack.svg new file mode 100644 index 0000000..8862976 --- /dev/null +++ b/api/static/bootstrap-icons/window-stack.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window-x.svg b/api/static/bootstrap-icons/window-x.svg new file mode 100644 index 0000000..c45e078 --- /dev/null +++ b/api/static/bootstrap-icons/window-x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/window.svg b/api/static/bootstrap-icons/window.svg new file mode 100644 index 0000000..9bd2a2a --- /dev/null +++ b/api/static/bootstrap-icons/window.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/windows.svg b/api/static/bootstrap-icons/windows.svg new file mode 100644 index 0000000..af3b18c --- /dev/null +++ b/api/static/bootstrap-icons/windows.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wordpress.svg b/api/static/bootstrap-icons/wordpress.svg new file mode 100644 index 0000000..7d5808c --- /dev/null +++ b/api/static/bootstrap-icons/wordpress.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wrench-adjustable-circle-fill.svg b/api/static/bootstrap-icons/wrench-adjustable-circle-fill.svg new file mode 100644 index 0000000..33156c7 --- /dev/null +++ b/api/static/bootstrap-icons/wrench-adjustable-circle-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wrench-adjustable-circle.svg b/api/static/bootstrap-icons/wrench-adjustable-circle.svg new file mode 100644 index 0000000..381fb30 --- /dev/null +++ b/api/static/bootstrap-icons/wrench-adjustable-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wrench-adjustable.svg b/api/static/bootstrap-icons/wrench-adjustable.svg new file mode 100644 index 0000000..e7456d7 --- /dev/null +++ b/api/static/bootstrap-icons/wrench-adjustable.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/wrench.svg b/api/static/bootstrap-icons/wrench.svg new file mode 100644 index 0000000..806cca0 --- /dev/null +++ b/api/static/bootstrap-icons/wrench.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-circle-fill.svg b/api/static/bootstrap-icons/x-circle-fill.svg new file mode 100644 index 0000000..4070fb3 --- /dev/null +++ b/api/static/bootstrap-icons/x-circle-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-circle.svg b/api/static/bootstrap-icons/x-circle.svg new file mode 100644 index 0000000..0e8c641 --- /dev/null +++ b/api/static/bootstrap-icons/x-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-diamond-fill.svg b/api/static/bootstrap-icons/x-diamond-fill.svg new file mode 100644 index 0000000..6ec461a --- /dev/null +++ b/api/static/bootstrap-icons/x-diamond-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-diamond.svg b/api/static/bootstrap-icons/x-diamond.svg new file mode 100644 index 0000000..b93295e --- /dev/null +++ b/api/static/bootstrap-icons/x-diamond.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-lg.svg b/api/static/bootstrap-icons/x-lg.svg new file mode 100644 index 0000000..b689cbb --- /dev/null +++ b/api/static/bootstrap-icons/x-lg.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-octagon-fill.svg b/api/static/bootstrap-icons/x-octagon-fill.svg new file mode 100644 index 0000000..dd9fc6a --- /dev/null +++ b/api/static/bootstrap-icons/x-octagon-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-octagon.svg b/api/static/bootstrap-icons/x-octagon.svg new file mode 100644 index 0000000..181a39f --- /dev/null +++ b/api/static/bootstrap-icons/x-octagon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-square-fill.svg b/api/static/bootstrap-icons/x-square-fill.svg new file mode 100644 index 0000000..5499578 --- /dev/null +++ b/api/static/bootstrap-icons/x-square-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x-square.svg b/api/static/bootstrap-icons/x-square.svg new file mode 100644 index 0000000..eb62b61 --- /dev/null +++ b/api/static/bootstrap-icons/x-square.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/x.svg b/api/static/bootstrap-icons/x.svg new file mode 100644 index 0000000..fdcc4e8 --- /dev/null +++ b/api/static/bootstrap-icons/x.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/xbox.svg b/api/static/bootstrap-icons/xbox.svg new file mode 100644 index 0000000..c0672b2 --- /dev/null +++ b/api/static/bootstrap-icons/xbox.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/yelp.svg b/api/static/bootstrap-icons/yelp.svg new file mode 100644 index 0000000..76e8884 --- /dev/null +++ b/api/static/bootstrap-icons/yelp.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/yin-yang.svg b/api/static/bootstrap-icons/yin-yang.svg new file mode 100644 index 0000000..1f50275 --- /dev/null +++ b/api/static/bootstrap-icons/yin-yang.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/youtube.svg b/api/static/bootstrap-icons/youtube.svg new file mode 100644 index 0000000..3c9c0be --- /dev/null +++ b/api/static/bootstrap-icons/youtube.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/zoom-in.svg b/api/static/bootstrap-icons/zoom-in.svg new file mode 100644 index 0000000..438e9bc --- /dev/null +++ b/api/static/bootstrap-icons/zoom-in.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/api/static/bootstrap-icons/zoom-out.svg b/api/static/bootstrap-icons/zoom-out.svg new file mode 100644 index 0000000..8be9f29 --- /dev/null +++ b/api/static/bootstrap-icons/zoom-out.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/domain/gateways/IPostRepository.go b/domain/gateways/IPostRepository.go index 4982e45..4d07dde 100644 --- a/domain/gateways/IPostRepository.go +++ b/domain/gateways/IPostRepository.go @@ -6,6 +6,7 @@ import ( type IPostRepository interface { Get(id uint32) (post.Post, error) + GetByName(name string) (post.Post, error) GetAll() []post.Post Create(post post.Post) (post.Post, error) } diff --git a/useCases/GetPostUseCase.go b/useCases/GetPostUseCase.go index ec8e8e2..7945e48 100644 --- a/useCases/GetPostUseCase.go +++ b/useCases/GetPostUseCase.go @@ -19,3 +19,7 @@ func NewGetPostUseCase(db *gorm.DB) *GetPostUseCase { func (g *GetPostUseCase) GetPost(id uint32) (post.Post, error) { return g.postRepository.Get(id) } + +func (g *GetPostUseCase) GetPostByName(name string) (post.Post, error) { + return g.postRepository.GetByName(name) +} From 92c6d06d0045712b7d6bb12177d8a8c1036d9411 Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Sat, 18 May 2024 12:24:54 +0200 Subject: [PATCH 3/4] feat: post edition save --- adapters/secondary/gateways/postRepository.go | 25 +++++++- .../gateways/web/templates/postEdit.html | 22 ++++--- api/dependecyInjection.go | 2 + api/page.go | 1 + api/pagePostEdit.go | 63 ++++++++++++++++--- domain/gateways/IPostRepository.go | 2 + useCases/UpdatePostUseCase.go | 20 ++++++ useCases/UpdateUserUseCase.go | 4 -- 8 files changed, 115 insertions(+), 24 deletions(-) create mode 100644 useCases/UpdatePostUseCase.go diff --git a/adapters/secondary/gateways/postRepository.go b/adapters/secondary/gateways/postRepository.go index 02c575a..9f098ac 100644 --- a/adapters/secondary/gateways/postRepository.go +++ b/adapters/secondary/gateways/postRepository.go @@ -31,9 +31,7 @@ func (a *PostRepository) Get(id uint32) (domain.Post, error) { func (a *PostRepository) GetByName(name string) (domain.Post, error) { var post entity.Post - err := a.db.Model(&entity.Post{ - Title: name, - }).First(&post).Error + err := a.db.Model(&entity.Post{}).Where("title = ?", name).First(&post).Error if err != nil { return domain.Post{}, err } @@ -71,4 +69,25 @@ func (a *PostRepository) GetAll() []domain.Post { return domainPosts } +func (a *PostRepository) UpdateBody(id uint32, body string) error { + var localPost entity.Post + err := a.db.Model(&entity.Post{}).First(&localPost, id).Error + if err != nil { + return err + } + + localPost.Body = body + err = a.db.Save(&localPost).Error + if err != nil { + return err + } + + return nil +} + +func (a *PostRepository) Delete(id uint32) error { + //TODO implement me + panic("implement me") +} + var _ gateways.IPostRepository = &PostRepository{} diff --git a/adapters/secondary/gateways/web/templates/postEdit.html b/adapters/secondary/gateways/web/templates/postEdit.html index f2280a6..164ec2b 100644 --- a/adapters/secondary/gateways/web/templates/postEdit.html +++ b/adapters/secondary/gateways/web/templates/postEdit.html @@ -6,28 +6,36 @@ {{.Navbar}} -
+

Post - edition

- +
+ {{ if .Alert.Message }} + + {{ end }}
-
- +
-
+