docsforge 9.7.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docsforge/__init__.py +11 -0
- docsforge/__main__.py +313 -0
- docsforge/_vendor/mkdocs/__init__.py +5 -0
- docsforge/_vendor/mkdocs/__main__.py +370 -0
- docsforge/_vendor/mkdocs/commands/__init__.py +0 -0
- docsforge/_vendor/mkdocs/commands/build.py +369 -0
- docsforge/_vendor/mkdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/mkdocs/commands/new.py +53 -0
- docsforge/_vendor/mkdocs/commands/serve.py +112 -0
- docsforge/_vendor/mkdocs/config/__init__.py +3 -0
- docsforge/_vendor/mkdocs/config/base.py +392 -0
- docsforge/_vendor/mkdocs/config/config_options.py +1226 -0
- docsforge/_vendor/mkdocs/config/defaults.py +218 -0
- docsforge/_vendor/mkdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/mkdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/mkdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/mkdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/mkdocs/exceptions.py +41 -0
- docsforge/_vendor/mkdocs/livereload/__init__.py +381 -0
- docsforge/_vendor/mkdocs/localization.py +92 -0
- docsforge/_vendor/mkdocs/plugins.py +697 -0
- docsforge/_vendor/mkdocs/py.typed +0 -0
- docsforge/_vendor/mkdocs/structure/__init__.py +36 -0
- docsforge/_vendor/mkdocs/structure/files.py +626 -0
- docsforge/_vendor/mkdocs/structure/nav.py +251 -0
- docsforge/_vendor/mkdocs/structure/pages.py +569 -0
- docsforge/_vendor/mkdocs/structure/toc.py +80 -0
- docsforge/_vendor/mkdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/mkdocs/theme.py +166 -0
- docsforge/_vendor/mkdocs/themes/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/404.html +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/base.html +251 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/content.html +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/base.css +366 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/brands.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/fontawesome.min.css +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/solid.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/v4-font-face.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/grid.png +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/base.js +287 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js +7 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/darkmode.js +65 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/keyboard-modal.html +40 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/mkdocs_theme.yml +28 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/nav-sub.html +14 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/search-modal.html +21 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/toc.html +26 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/404.html +9 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/base.html +199 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/breadcrumbs.html +44 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg +2671 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme.css +13 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme_extra.css +197 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/footer.html +26 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/html5shiv.min.js +4 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme_extra.js +8 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/mkdocs_theme.yml +25 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/nav.html +22 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/search.html +16 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/searchbox.html +5 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/toc.html +12 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/versions.html +27 -0
- docsforge/_vendor/mkdocs/utils/__init__.py +410 -0
- docsforge/_vendor/mkdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/mkdocs/utils/cache.py +36 -0
- docsforge/_vendor/mkdocs/utils/filters.py +1 -0
- docsforge/_vendor/mkdocs/utils/meta.py +100 -0
- docsforge/_vendor/mkdocs/utils/rendering.py +104 -0
- docsforge/_vendor/mkdocs/utils/templates.py +55 -0
- docsforge/_vendor/mkdocs/utils/yaml.py +150 -0
- docsforge/_vendor/properdocs/__init__.py +1 -0
- docsforge/_vendor/properdocs/__main__.py +382 -0
- docsforge/_vendor/properdocs/commands/__init__.py +0 -0
- docsforge/_vendor/properdocs/commands/build.py +379 -0
- docsforge/_vendor/properdocs/commands/get_deps.py +250 -0
- docsforge/_vendor/properdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/properdocs/commands/new.py +53 -0
- docsforge/_vendor/properdocs/commands/serve.py +125 -0
- docsforge/_vendor/properdocs/config/__init__.py +3 -0
- docsforge/_vendor/properdocs/config/base.py +381 -0
- docsforge/_vendor/properdocs/config/config_options.py +1226 -0
- docsforge/_vendor/properdocs/config/defaults.py +222 -0
- docsforge/_vendor/properdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/properdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/properdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/properdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/properdocs/exceptions.py +44 -0
- docsforge/_vendor/properdocs/livereload/__init__.py +382 -0
- docsforge/_vendor/properdocs/localization.py +93 -0
- docsforge/_vendor/properdocs/plugins.py +707 -0
- docsforge/_vendor/properdocs/py.typed +0 -0
- docsforge/_vendor/properdocs/replacement.py +42 -0
- docsforge/_vendor/properdocs/replacement_warning.py +91 -0
- docsforge/_vendor/properdocs/structure/__init__.py +36 -0
- docsforge/_vendor/properdocs/structure/files.py +628 -0
- docsforge/_vendor/properdocs/structure/nav.py +259 -0
- docsforge/_vendor/properdocs/structure/pages.py +582 -0
- docsforge/_vendor/properdocs/structure/toc.py +82 -0
- docsforge/_vendor/properdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/properdocs/theme.py +167 -0
- docsforge/_vendor/properdocs/themes/__init__.py +0 -0
- docsforge/_vendor/properdocs/utils/__init__.py +419 -0
- docsforge/_vendor/properdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/properdocs/utils/cache.py +75 -0
- docsforge/_vendor/properdocs/utils/filters.py +1 -0
- docsforge/_vendor/properdocs/utils/meta.py +101 -0
- docsforge/_vendor/properdocs/utils/rendering.py +104 -0
- docsforge/_vendor/properdocs/utils/templates.py +57 -0
- docsforge/_vendor/properdocs/utils/yaml.py +165 -0
- docsforge/_vendor_shims/__init__.py +5 -0
- docsforge/commands/__init__.py +0 -0
- docsforge/commands/build.py +377 -0
- docsforge/commands/get_deps.py +246 -0
- docsforge/commands/gh_deploy.py +169 -0
- docsforge/commands/new.py +53 -0
- docsforge/commands/serve.py +126 -0
- docsforge/config/__init__.py +3 -0
- docsforge/config/base.py +379 -0
- docsforge/config/config_options.py +1228 -0
- docsforge/config/defaults.py +222 -0
- docsforge/contrib/__init__.py +0 -0
- docsforge/contrib/search/__init__.py +121 -0
- docsforge/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/contrib/search/prebuild-index.js +56 -0
- docsforge/contrib/search/search_index.py +225 -0
- docsforge/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/contrib/search/templates/search/main.js +109 -0
- docsforge/contrib/search/templates/search/worker.js +133 -0
- docsforge/exceptions.py +44 -0
- docsforge/extensions/__init__.py +30 -0
- docsforge/extensions/emoji.py +108 -0
- docsforge/extensions/preview.py +234 -0
- docsforge/livereload/__init__.py +381 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js +5 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js.map +7 -0
- docsforge/overrides/assets/javascripts/iconsearch_index.json +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css.map +1 -0
- docsforge/overrides/home.html +29 -0
- docsforge/overrides/hooks/shortcodes.py +305 -0
- docsforge/overrides/hooks/translations.html +23 -0
- docsforge/overrides/hooks/translations.py +208 -0
- docsforge/overrides/main.html +27 -0
- docsforge/plugins/__init__.py +46 -0
- docsforge/plugins/blog/__init__.py +44 -0
- docsforge/plugins/blog/author.py +51 -0
- docsforge/plugins/blog/config.py +113 -0
- docsforge/plugins/blog/plugin.py +1094 -0
- docsforge/plugins/blog/readtime/__init__.py +62 -0
- docsforge/plugins/blog/readtime/parser.py +85 -0
- docsforge/plugins/blog/structure/__init__.py +348 -0
- docsforge/plugins/blog/structure/config.py +50 -0
- docsforge/plugins/blog/structure/markdown.py +72 -0
- docsforge/plugins/blog/structure/options.py +139 -0
- docsforge/plugins/group/__init__.py +30 -0
- docsforge/plugins/group/config.py +42 -0
- docsforge/plugins/group/plugin.py +172 -0
- docsforge/plugins/info/__init__.py +30 -0
- docsforge/plugins/info/config.py +46 -0
- docsforge/plugins/info/patterns.py +27 -0
- docsforge/plugins/info/plugin.py +574 -0
- docsforge/plugins/meta/__init__.py +30 -0
- docsforge/plugins/meta/config.py +44 -0
- docsforge/plugins/meta/plugin.py +133 -0
- docsforge/plugins/minify/__init__.py +0 -0
- docsforge/plugins/minify/plugin.py +240 -0
- docsforge/plugins/offline/__init__.py +30 -0
- docsforge/plugins/offline/config.py +41 -0
- docsforge/plugins/offline/plugin.py +80 -0
- docsforge/plugins/optimize/__init__.py +30 -0
- docsforge/plugins/optimize/config.py +63 -0
- docsforge/plugins/optimize/plugin.py +399 -0
- docsforge/plugins/privacy/__init__.py +30 -0
- docsforge/plugins/privacy/config.py +89 -0
- docsforge/plugins/privacy/parser.py +52 -0
- docsforge/plugins/privacy/plugin.py +691 -0
- docsforge/plugins/projects/__init__.py +30 -0
- docsforge/plugins/projects/builder/__init__.py +331 -0
- docsforge/plugins/projects/builder/log.py +111 -0
- docsforge/plugins/projects/builder/watcher/__init__.py +109 -0
- docsforge/plugins/projects/builder/watcher/handler.py +116 -0
- docsforge/plugins/projects/config.py +75 -0
- docsforge/plugins/projects/plugin.py +303 -0
- docsforge/plugins/projects/structure/__init__.py +252 -0
- docsforge/plugins/search/__init__.py +30 -0
- docsforge/plugins/search/config.py +74 -0
- docsforge/plugins/search/plugin.py +605 -0
- docsforge/plugins/social/__init__.py +30 -0
- docsforge/plugins/social/config.py +79 -0
- docsforge/plugins/social/layout.py +164 -0
- docsforge/plugins/social/plugin.py +1138 -0
- docsforge/plugins/social/templates/__init__.py +40 -0
- docsforge/plugins/social/templates/default/accent.yml +234 -0
- docsforge/plugins/social/templates/default/invert.yml +244 -0
- docsforge/plugins/social/templates/default/only/image.yml +77 -0
- docsforge/plugins/social/templates/default/variant.yml +255 -0
- docsforge/plugins/social/templates/default.yml +244 -0
- docsforge/plugins/tags/__init__.py +57 -0
- docsforge/plugins/tags/config.py +99 -0
- docsforge/plugins/tags/plugin.py +324 -0
- docsforge/plugins/tags/renderer/__init__.py +110 -0
- docsforge/plugins/tags/structure/__init__.py +30 -0
- docsforge/plugins/tags/structure/listing/__init__.py +234 -0
- docsforge/plugins/tags/structure/listing/config.py +126 -0
- docsforge/plugins/tags/structure/listing/manager/__init__.py +532 -0
- docsforge/plugins/tags/structure/listing/manager/toc.py +145 -0
- docsforge/plugins/tags/structure/listing/tree/__init__.py +176 -0
- docsforge/plugins/tags/structure/mapping/__init__.py +109 -0
- docsforge/plugins/tags/structure/mapping/manager/__init__.py +265 -0
- docsforge/plugins/tags/structure/mapping/storage/__init__.py +222 -0
- docsforge/plugins/tags/structure/tag/__init__.py +189 -0
- docsforge/plugins/tags/structure/tag/options.py +119 -0
- docsforge/plugins/tags/structure/tag/reference/__init__.py +91 -0
- docsforge/plugins/typeset/__init__.py +30 -0
- docsforge/plugins/typeset/config.py +41 -0
- docsforge/plugins/typeset/plugin.py +134 -0
- docsforge/structure/__init__.py +36 -0
- docsforge/structure/files.py +623 -0
- docsforge/structure/nav.py +260 -0
- docsforge/structure/pages.py +582 -0
- docsforge/structure/toc.py +82 -0
- docsforge/theme.py +37 -0
- docsforge/themes/material/templates/.icons/fontawesome/LICENSE.txt +165 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/11ty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/42-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accessible-icon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adversal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/affiliatetheme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amilia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angellist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angrycreative.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/asymmetrik.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/avianex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aviato.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/battle-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bimobject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/black-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/btc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buromobelexperte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buy-n-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cash-app.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-diners-club.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-discover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-visa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centercode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chromecast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudscale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudversify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cmplid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codiepie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/connectdevelop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cotton-bureau.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-by.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/critical-role.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cuttlefish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dart-lang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dashcube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deezer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/delicious.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deploydog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deskpro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dochub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/draft2digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dyalog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/earlybirds.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge-legacy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/empire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/envira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/expeditedssl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/files-pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox-browser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firstdraft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons-fi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/forumbee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/free-code-camp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fulcrum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-senate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/get-pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gofore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/golang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-scholar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gratipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gripfire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hips.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hire-a-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hooli.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hornbill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ideal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/innosoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instalod.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/invision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ioxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itch-io.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/java.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jedi-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joget.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jxl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kakao-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter-k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/korvue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/less.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon-drop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/magento.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mandalorian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/maxcdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medapps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium-m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medrt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/megaport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microblog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mintbit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mizuni.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/neos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-directional.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nimblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ns8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nutritionix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/octopus-deploy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/old-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opencart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/optin-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/osi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/page4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pagelines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/palfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/perbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/periscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/php.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/product-hunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/python.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quinscape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/r-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/react.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reacteurope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rebel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/red-river.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-alien.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rendact.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/replyd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/resolving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rocketchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rockrms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/schlix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/screenpal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/scribd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/searchengin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/servicestack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shoelace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/signal-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/simplybuilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sistrix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sitrox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skyatlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack-hash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/space-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speakap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speaker-deck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/staylinked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sticker-mule.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe-s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stubber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/studiovinari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/superpowers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/supple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tencent-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/the-red-yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeisle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/think-peaks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trade-federation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uncharted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uniregistry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ussunnah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viacoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vine.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vnv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/w3c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weebly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weixin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whmcs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wikipedia-w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/windows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wodu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpbeginner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpforms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpressr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wsh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/y-combinator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex-international.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/7.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/add.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/air-freshener.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/allergies.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ankh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/area-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-spin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/assistive-listening-systems.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/at.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/audio-description.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/austral-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/automobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/award.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacterium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bag-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bahai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baht-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban-smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/band-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-progress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-staggered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basket-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-concierge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bezier-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/birthday-cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blackboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bold.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bore-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-food.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-rice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowling-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-tissue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-packing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broadcast-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bugs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-ngo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/business-time.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cable-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake-candles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-day.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/campground.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/candy-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/capsules.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-crash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carriage-baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cedi-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cent-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-teacher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/champagne-glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/charging-station.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-area.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-column.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-combatant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-reaching.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/children.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/church.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-notch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clapperboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clinic-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-meatball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cny.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-pull-request.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/colon-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compact-disc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass-drafting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer-mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/concierge-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/couch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crutch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cutlery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/database.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deafness.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dedent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/delete-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/democrat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagnoses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-next.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-successor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-five.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-one.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-six.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-three.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-two.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digital-tachograph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/disease.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/display.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/divide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/donate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dong-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-left-and-up-right-to-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drafting-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dragon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/draw-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum-steelpan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drumstick-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/e.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-listen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-america.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/equals.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eur.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/explosion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-pointed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/female.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fighter-jet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-contract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-csv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-fragment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-half-dashed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/first-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish-fins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fist-raised.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-usa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask-vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/florin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/franc-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/funnel-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gas-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/genderless.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gifts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-cheers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-whiskey.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gopuram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/graduation-cap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guarani-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guitar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamsa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bubbles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-clapping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-helping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hanukiah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-of-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hashtag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-hard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-wizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/haykal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/header.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-music-camera-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heartbeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-safety.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heptagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/highlighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-avalanche.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-rockslide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hippo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/history.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/holly-berry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse-head.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotdog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-end.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-start.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-damage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icicles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/igloo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/industry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/institution.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/italic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/j.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jedi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/joint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jug-detergent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kaaba.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/key.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kip-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kit-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kitchen-set.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiwi-bird.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/krw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/l.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ladder-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/land-mine-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-dome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lari-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/layer-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/legal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/line-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lines-leaning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-squares.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ul.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/litecoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/locust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/luggage-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/male.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/manat-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-signs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-face.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-ventilator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/masks-theater.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mattress-pillow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medkit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mercury.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microchip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mill-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mitten.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/monument.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/motorcycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-saucer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/multiply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/museum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/music.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/n.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/naira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/navicon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/network-wired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/neuter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notdef.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notes-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/o.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-well.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/om.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/otter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/outdent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pager.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-roller.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paintbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parachute-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pastafarianism.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-fancy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-nib.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-pulling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-robbery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pepper-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percentage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-booth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-drowning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-half-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-harassing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-pointing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-to-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-shelter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-swimming.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-through-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peseta-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peso-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-volume.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pie-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pizza-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/place-of-worship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-arrival.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-departure.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plate-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-storm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pound-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/praying-hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/print.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/procedures.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/project-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/puzzle-piece.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/q.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/r.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rainbow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/random.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ranking-star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/record-vinyl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove-format.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reorder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/republican.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/restroom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/retweet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rmb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-barrier.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-spikes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-asclepius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rouble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/route.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-combined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupiah-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sailboat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite-dish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-balanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll-torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sd-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/section.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/seedling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/septagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/server.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shapes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheet-plastic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-halved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shipping-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shoe-prints.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shrimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-space.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-van.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-perfect.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signs-post.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sim-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sleigh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking-ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowplow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/socks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/space-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spinner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/splotch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-nfi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-person-confined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stapler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-and-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-david.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-life.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sterling-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch-20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stroopwafel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subtract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swatchbook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimming-pool.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/syringe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t-shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablets.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachograph-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tags.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teletype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/television.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tents.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/terminal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-height.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-width.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/theater-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thunderstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilets-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torii-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-observation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel-bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-front.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-loading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-moving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/try.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/u.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/underline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/universal-access.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/university.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unsorted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-astronaut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-friends.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-graduate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-injured.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-md.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-secret.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-between-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-viewfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensil-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/van-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest-patches.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vials.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vihara.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/viruses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-control-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vote-yea.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vr-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walkie-talkie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water-ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wave-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-move.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/whiskey-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/worm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x-ray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmarks-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/y.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/logo-monochrome.svg +3 -0
- docsforge/themes/material/templates/.icons/logo.svg +6 -0
- docsforge/themes/material/templates/.icons/material/LICENSE +20 -0
- docsforge/themes/material/templates/.icons/material/ab-testing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abacus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-arabic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-hebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-devanagari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-thai.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-conditioner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-horn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airbag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-landing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-takeoff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-snooze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/allergy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-aurebesh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-cyrillic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-greek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-latin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-piqad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-tengwar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/altimeter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ammunition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ampersand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-acute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-obtuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angularjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anvil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apache-kafka.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-finder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-command.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-option.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-safari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-horizontal-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-vertical-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aspect-ratio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/at.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-rca.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-stereo-minijack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-xlr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/augmented-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aurora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-fix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/av-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe-battle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backup-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badminton.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-checked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baguette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balcony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balloon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-unfill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-negative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-positive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee-flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beekeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/betamax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biathlon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-cargo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-penny-farthing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-clipless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bird.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/black-mesa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-software.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/block-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blood-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-linear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-radial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alphabet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boombox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boomerang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-outside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boxing-glove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/buffet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bugle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulkhead-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulldozer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulletin-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-double-decker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-uncovered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cabin-a-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cable-data.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cached.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cactus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-layered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-made.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-received.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-gopro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-iris.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-partial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-party-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/campfire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candycane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caps-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-2-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-3-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-abs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-fluid-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-low-pressure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-retarder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-worn-linings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-child-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clutch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-convertible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-coolant-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cruise-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-emergency.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-esp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-hatchback.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-lifted-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-dimmed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-limousine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-parking-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-cooler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-shift-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-speed-limiter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-sports.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-tire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-traction-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-turbocharger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carabiner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/case-sensitive-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cassette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/castle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-basic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chandelier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-arc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve-cumulative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-histogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-ppf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot-hexbin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chef-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chemical-weapon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circular-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clippy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clouds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coat-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-json.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-string.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/color-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-rose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console.svg +1 -0
- docsforge/themes/material/templates/.icons/material/consolidate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-copy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-cut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-duplicate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coolant-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyleft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cordova.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cosine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/counter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-32-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-64-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cricket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-free.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-bolnisi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-celtic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-gps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crowd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crystal-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-unfolded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupcake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-bdt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-brl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-btc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-cny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-fra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ils.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-inr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-krw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-kzt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-mnt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ngn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-thb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-try.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-twd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-uah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-ac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-dc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-ballroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deathly-hallows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-into.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deskphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower-monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dev-to.svg +1 -0
- docsforge/themes/material/templates/.icons/material/developer-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/devices.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diabetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dialpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diaper-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dip-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diversify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-flippers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-snorkel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-window.svg +1 -0
- docsforge/themes/material/templates/.icons/material/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dome-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domino-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/donkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dot-net.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drama-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/duck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dump-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-loop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-easter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-fried.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eiffel-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eight-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electron-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elephant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-decline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-rise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-mark-as-unread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-newsletter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/epsilon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/et.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-chademo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/excavator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-to-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-agent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/factory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/family-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fencing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferris-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cabinet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-gif-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-jpg-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-pdf-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-png-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-presentation-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-xml-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/film.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/finance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/find-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firewire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-red-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fleur-de-lis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-plan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-poppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-croissant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-fork-drink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-halal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-hot-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-kosher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food.svg +1 -0
- docsforge/themes/material/templates/.icons/material/foot-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-australian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forklift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-dropdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textarea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-password.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-middle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-clear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-highlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-italic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-upper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-ends-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-matches.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-starts-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-type.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checkbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered-rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-overline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-break.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-rotate-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-section.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-size.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-title.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline-wavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-inline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-tight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-top-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forwardburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen-tip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fraction-one-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/french-fries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/frequently-asked-questions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pineapple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-watermelon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gantry-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-and.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-not.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-or.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xnor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-stationary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-pinch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-spread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-button.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/git.svg +1 -0
- docsforge/themes/material/templates/.icons/material/github.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-flute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-fragile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-pint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-stange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-model.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-ads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-communities.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-classroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-downasaur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-fit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-hangouts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-keep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-lens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-maps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-my-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-nearby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-spreadsheet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grave-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grease-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-acoustic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guy-fawkes-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gymnastics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/halloween.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-okay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hands-pray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hanger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hat-fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hazard-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdmi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heating-coil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexadecimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/highway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/history.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-sticks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hololens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-automation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-flood.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-modern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hoop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horseshoe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-24.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hulu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-baby-changing-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-dance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-proximity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board-poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-queue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-walker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-white-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/humble-bundle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydro-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydrogen-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-pop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/identifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-auto-adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-black-white.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-weak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-frames.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-tilt-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-actual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito.svg +1 -0
- docsforge/themes/material/templates/.icons/material/induction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instrument-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/integrated-circuit-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ipod.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iv-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jeepney.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jump-rope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kabaddi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kangaroo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/karate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kayaking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-pour-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettlebell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-change.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-esc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f11.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-space.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kitesurfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/klingon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife-military.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knob.svg +1 -0
- docsforge/themes/material/templates/.icons/material/koala.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladybug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lambda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-disconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-pending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-fields.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-cpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-csharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-css3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-html5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-java.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-lua.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-python.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby-on-rails.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-rust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-swift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-xaml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laser-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lasso.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/latitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lava-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lead-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lectern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-shelves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library.svg +1 -0
- docsforge/themes/material/templates/.icons/material/license.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lifebuoy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-recessed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/line-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lingerie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux-mint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lipstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquid-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-status.svg +1 -0
- docsforge/themes/material/templates/.icons/material/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loading.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-enter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-reset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-smart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/longitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/looks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loupe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lumx.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magic-staff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-legend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-distance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-path.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/margin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-design.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-ui.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-cos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-sin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-tan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-cotton-swab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meditation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome-tick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/micro-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-access.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure-devops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-bing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-dynamics-365.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-office.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onedrive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onenote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-outlook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-sharepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-teams.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minecraft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mini-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minidisc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-martial-arts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-first-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-last-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped.svg +1 -0
- docsforge/themes/material/templates/.icons/material/more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-scroll-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/muffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multicast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multimedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-natural.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-alto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-bass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-treble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mustache.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/near-me.svg +1 -0
- docsforge/themes/material/templates/.icons/material/necklace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/new-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-game-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wii.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wiiu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nodejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/noodles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notification-clear-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/null.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-positive-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nutrition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocarina.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oci.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/material/offer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/om.svg +1 -0
- docsforge/themes/material/templates/.icons/material/omega.svg +1 -0
- docsforge/themes/material/templates/.icons/material/one-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/onepassword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-source-initiative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/outdoor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/overscan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/owl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pac-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-first.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-last.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-body.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-advanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palm-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-fisheye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-cut-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paragliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/party-popper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-biometric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pasta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patio-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/penguin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/periodic-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-voip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pickaxe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pillar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-disconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pirate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piston.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pitchfork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pizza.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-protected-content.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-speed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pliers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-bronze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-silver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/point-of-sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokeball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokemon-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poker-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polaroid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polymer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/popcorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post.svg +1 -0
- docsforge/themes/material/templates/.icons/material/postage-stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-au.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-ch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-de.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-fr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-it.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-uk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-us.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-standby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/powershell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/professional-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pumpkin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qqchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quadcopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/queue-first-in-last-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racing-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racquetball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-am.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-fm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-handheld.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-indeterminate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/railroad-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-vertex-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-vertex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-double-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-single-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/react.svg +1 -0
- docsforge/themes/material/templates/.icons/material/read.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-rec.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/regex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/registered-trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reiterate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relative-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reminder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-once.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/replay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reproduction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/responsive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rivet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rodent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollupjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-360.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rounded-corner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rowing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rugby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rv-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safety-goggles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat-sink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-uplink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saw-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sawtooth-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saxophone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-balance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-bathroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scan-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scissors-cutting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-lag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/search-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat-angled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-individual-suite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-reduced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seatbelt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seesaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/segment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-inverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-place.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-arrow-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/semantic-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/serial-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-top-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/settings-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-oval-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-polygon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-rectangle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-rounded-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sheep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ship-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shipping-pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-ballet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-cleat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-formal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-heel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-sneaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower-head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shredder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuriken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-caution.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-real-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-yield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-2g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-3g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-4g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-5g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-distance-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-freehand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-clean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork-knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/simple-icons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sina-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-cross-country.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sledding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-downhill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-uphill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-melt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowmobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowshoeing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-2-meters.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-6-feet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soldering-iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sony-playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-reverse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundbar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-pull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-invaders.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-slow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spellcheck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-thread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spirit-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spoon-sugar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/squeegee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ssh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stamper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-david.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/state-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-emoji.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stocking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stomach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-24-hour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/strategy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/submarine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/summit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sunglasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-3-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-7-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hangul.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hiragana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana-halfwidth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-unselected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-border.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-chair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-width.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-furniture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-merge-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-of-contents.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-pivot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-split-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-faces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tailwind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tangram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tanker-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-measure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teddy-bear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/telescope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-ambient-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-guide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-celsius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-fahrenheit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-kelvin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terrain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-long.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-short.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theme-light-dark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timelapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-complete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timetable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-oven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/torch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tortoise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toslink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/touch-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tournament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tow-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/town-hall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-autorack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-caboose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-intermodal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-detour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-skip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition-masked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-award.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-cargo-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trumpet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turtle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/two-factor-authentication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/typewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ultra-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/material/underwear-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unreal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/update.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-c-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-utility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanity-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-above.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-below.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-bezier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-combine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-intersection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-union.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vhs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-2d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-4k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-component.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-hdmi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-scart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-svideo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-stabilization.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-headline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/violin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virtual-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vlc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-source.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vpn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/walk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-giftcard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-membership.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-travel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallpaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watermark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-undercurrent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-dust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hazy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-pouring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webhook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-gram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-kilogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-lifter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheel-barrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair-accessibility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-incandescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-iridescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/windsock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wizard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xamarin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yeast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yoga.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-subscription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yurt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/z-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aquarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-cancer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-capricorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-gemini.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-leo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-libra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-pisces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-sagittarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-scorpio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-taurus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-virgo.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/LICENSE +21 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-filled-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-96.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-error-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-warning-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-reopen-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-merged-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-public-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-delete-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-deleted-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-32.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/webhook-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1001tracklists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1and1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1dot1dot1dot1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1panel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1password.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2fas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2k.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/30secondsofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/365datascience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/3m.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/42.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4chan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/7zip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/99designs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/9gag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/LICENSE.md +30 -0
- docsforge/themes/material/templates/.icons/simple/abb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbvie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abdownloadmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aboutdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abstract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abusedotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/academia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accenture.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accuweather.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actigraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activeloop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activitypub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actualbudget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adafruit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adaway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblockplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/addydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adidas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adminer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adonisjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adventofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adyen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aegisauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeroflot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeromexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afdian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/affine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afterpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aftership.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/agora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aidungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiohttp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiqfome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airasia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbrake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircanada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airchina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airfrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airindia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayvideo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airserbia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtransat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ajv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akamai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akasaair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akaunting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akiflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alacritty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alamy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/albertheijn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldinord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldisud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alfred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algorand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alienware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aliexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/allegro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alliedmodders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alltrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/almalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinelinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alternativeto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alwaysdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ameba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anaconda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/analogue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/andela.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/android.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidauto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anilist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animalplanet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ankermake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/answer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antena3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antennapod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anthropic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anycubic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anydesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apache.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheairflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheavro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecassandra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecloudstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecordova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecouchdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedolphinscheduler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedoris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedruid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheecharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheflink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachefreemarker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachegroovy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheguacamole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehadoop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachejmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekafka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekylin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachelucene.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachemaven.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenetbeanside.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenifi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheopenoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheparquet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachepulsar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacherocketmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesolr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachespark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachestorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesuperset.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachetomcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aparat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apifox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apmterminals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apollographql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apostrophe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appgallery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appimage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applearcade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepodcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appveyor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appwrite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aqua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arangodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arcgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archiveofourown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ardour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arduino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ariakit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arkecosystem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/armkeil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arstechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artifacthub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artixlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arxiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asahilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciidoctor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciinema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aseprite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/assemblyscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astonmartin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atandt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlasos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auchan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiobookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audioboom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiomack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiotechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aurelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autentique.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auth0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authentik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskmaya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskrevit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autohotkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/automattic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avajs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avaloniaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avianca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomelists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomewm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awwwards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axisbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/b4x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babelio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babylondotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backblaze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbonedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backendless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage_casting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/badoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baidu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bakalari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bamboo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bambulab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandrautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandsintown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bankofamerica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barclays.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baremetrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barmenia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baserow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basicattentiontoken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bastyon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/battledotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bazel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatsbydre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatstars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beekeeperstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beijingsubway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bento.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentoml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bereal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betfair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterdiscord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbasket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbluebutton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcartel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/binance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bioconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biolink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bisecthosting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoincash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoinsv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcomet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitdefender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/black.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackmagicdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazemeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blibli.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockbench.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockchaindotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bloglovin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blueprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmcsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bnbchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boardgamegeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boehringeringelheim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boeing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bohemiainteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bombardier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookalope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookbub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookingdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmyshow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boosty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/borgbackup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bosch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/botblecms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boulanger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/box.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boxysvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintrust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfolder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/breaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brenntag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brevo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/britishairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/broadcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bruno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bspwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/budibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buefy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugatti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugcrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buildkite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/builtbybit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bukalapak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bungie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunnydotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burgerking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burpsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buymeacoffee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buzzfeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/byjus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bytedance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/c.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cachet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cadillac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cafepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairographics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caixabank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cakephp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caldotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calendly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calibreweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/campaignmonitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/camunda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canonical.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/capacitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caprover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardmarket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carlsberggroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrefour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carthrottle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cashapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castorama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caterpillar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccleaner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cdprojekt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celestron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ceph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cesium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chakraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/changedetection.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/channel4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/charles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartmogul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatwoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmarx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chedraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cheerio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chemex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chessdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chevrolet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chianetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinaeasternairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinasouthernairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chocolatey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromatic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromewebstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chrysler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chupachups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinema4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinnamon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circleci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circuitverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cirrusci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cisco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citroen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civicrm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarifai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarivate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claude.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clerk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clevercloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clockify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clojure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloud66.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudbees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudcannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflarepages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflareworkers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudfoundry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudinary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudnativebuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clyp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cmake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cobalt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocacola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockpit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockroachlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocoapods.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeblocks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeceptjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codechef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeclimate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecov.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecrafters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefactor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeforces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeigniter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemagic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemirror.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codenewbie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codersrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesandbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codewars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingninjas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coffeescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinmarketcap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/collaboraonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comicfury.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commerzbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commitlint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commodore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonlisp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonworkflowlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/compilerexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/composer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comptia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comsol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/concourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/condaforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conekta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/construct3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/consul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contabo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contactlesspayment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/containerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentful.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/continente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contributorcovenant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conventionalcommits.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/convertio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cookiecutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolermaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/copaairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coppel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coreldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronaengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronarenderer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/corsair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/couchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/counterstrike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/countingworkspro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coursera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coveralls.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplusbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftsman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cratedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crayon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creality.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/createreactapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativecommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativetechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/credly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crehana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewunited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/criticalrole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdsource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchyroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptomator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crystal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/css.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssdesignawards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssmodules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csswizardry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cucumber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cultura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curseforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/customink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cyberdefenders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cycling74.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cypress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cytoscapedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dacia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailydotdev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daisyui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dapr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darkreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daserste.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dashlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dassaultsystemes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/databricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datacamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datagrip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dataiku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datastax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datefns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datocms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/davinciresolve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazhongdianping.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dbeaver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dblp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dcentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debridlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decapcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decentraland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dedge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepgram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepmind.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepnote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deliveroo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delonghi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delphi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deluge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/denon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependabot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependencycheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/depositphotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/derspiegel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebahn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschepost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschetelekom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschewelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devdotto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diagramsdotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dialogflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dictionarydotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digikeyelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digitalocean.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dinersclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dior.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/directus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discogs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discorddotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disroot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrokid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/django.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dji.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dmm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsdotrs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doctrine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docusaurus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dodopayments.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dogecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolibarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doordash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dota2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotenv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/douban.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doubanread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovecot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovetail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/downdetector.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dpd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dragonframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/draugiemdotlv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dreamstime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drizzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drooble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dsautomobiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ducati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckduckgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dungeonsanddragons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunked.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duplicati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dvc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwavesystems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dynatrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eagle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyeda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseadoptium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsejetty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsemosquitto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsevertdotx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecosia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecovacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edeka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edgeimpulse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/editorconfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edotleclerc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/educative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egghead.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egnyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eightsleep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ejs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elastic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elavon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elegoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/element.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elevenlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elgato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elixir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elsevier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embarcadero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emberdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emirates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emlakjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/endeavouros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enterprisedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envoyproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epicgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/equinixmetal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ericsson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erpnext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esbuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esotericsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esphome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/espressif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etcd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethiopianairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etihadairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/europeanunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eventstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/everydotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/excalidraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exercism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exordo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exoscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expensify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expertsexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/express.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eyeem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebookgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebooklive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/faceit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facepunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fairphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falcon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fampay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandango.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fanfou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fantom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farcaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fareharbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fathom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fauna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/favro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fcc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fdroid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/feedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrarinv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferretdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ffmpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fidoalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fifa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fila.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filament.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filedotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/files.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filezilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fillout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fineco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireflyiii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefoxbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firewalla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/first.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishshell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fitbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fivem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiverr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fizz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flashforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flathub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flatpak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flightaware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floatplane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flyway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fmod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fnac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fonoma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foobar2000.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foodpanda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ford.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/forgejo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formbricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formspree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortnite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossilscm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foundryvirtualtabletop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foxtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fozzy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework7.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/franprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frappe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fraunhofergesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecodecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freedesktopdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancermap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freepik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freetube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freshrss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frigate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fritz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontendmentor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fsharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fubo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fueler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fugacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujifilm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furaffinity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furrynetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fusionauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/futurelearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fyle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2a.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2g.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/galaxus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamebanana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamedeveloper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamejolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gameloft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamemaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamescience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gandi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garudalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gdal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geeksforgeeks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalmotors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/genius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geocaching.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geopandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gerrit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/getx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/giphy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/git.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitextensions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitforwindows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/github.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubactions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubcopilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubpages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubsponsors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitignoredotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitpod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glassdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gldotinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gleam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/globus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gltf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnometerminal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnubash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuicecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuprivacyguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnusocial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/go.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gocd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godaddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godotengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gofundme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gogdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gojek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goldmansachs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/google.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadmob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleappsscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecampaignmanager360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechrome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechronicle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleclassroom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudcomposer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudspanner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudstorage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecontaineroptimizedos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataproc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledisplayandvideo360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearthengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlefonts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleforms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlegemini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlehome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlejules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlekeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlelens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemarketingplatform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemeet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemessages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenearby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlephotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepubsub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlescholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesearchconsole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesheets.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleslides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlestreetview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesummerofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletagmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletasks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gotomeeting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gplv3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradleplaypublisher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grafana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grammarly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grandfrais.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grapheneos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite_editor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gravatar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graylog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greasyfork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greatlearning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greensock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greptimedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/griddotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gridsome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grocy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsmarenadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gstreamer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gtk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guangzhoumetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guitarpro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumtree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gunicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gurobi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gusto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gutenberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h2database.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/habr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackaday.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackernoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackmd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackthebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handlebarsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake_protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/happycow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harmonyos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashicorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hasura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hatenabookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haveibeenpwned.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/havells.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haxe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haystack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbomax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hcl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hdfcbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headlessui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headphonezone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearthisdotat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedgedoc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellofresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellyhansen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpscout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hepsiemlak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/here.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hermes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroicgameslauncher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hetzner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibernate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hilton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hiltonhotelsandresorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hitachi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive_blockchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hivemq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistantcommunitystore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebridge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homepage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeybadger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeygain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hono.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hootsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hoppscotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hostinger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotelsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houdini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hsbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htcvive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmlacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/httpie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huawei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huggingface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hugo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humblebundle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hungryjacks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/husqvarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperskill.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hypothesis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyprland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyundai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i18next.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ibeacon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iberia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iceland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icicibank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icinga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icomoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icons8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ieee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifixit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifttt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/igdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iheartradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ikea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iledefrancemobilites.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ilovepdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagedotsc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagej.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagetoolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imessage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imgur.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immersivetranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/improvmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiansuperleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiehackers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inductiveautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inertia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infiniti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infinityfree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/influxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infomaniak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infoq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infosys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infracost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ingress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkdrop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkscape.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inoreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inquirer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insomnia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inspire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insta360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instacart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instapaper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instatus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intellijidea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactiondesignfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intermarche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetarchive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetcomputer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intigriti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intuit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invidious.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invoiceninja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ipfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/irobot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isc2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/issuu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/istio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itchdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iterm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itvx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iveco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jaeger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jameson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jamstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/japanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jasmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jbl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jdoodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jekyll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jellyfin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetblue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetbrains.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetpackcompose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrogpipelines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jhipster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jinja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jirasoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitsi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/johndeere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joplin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jordan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jouav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jovian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jrgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsdelivr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/json.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsonwebtokens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juejin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/julia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junipernetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junit5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jupyter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/just.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justeat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justgiving.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k3s.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kagi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kahoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakaotalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kalilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kamailio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaniko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/karlsruherverkehrsverbund.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kasasmart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kashflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaspersky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/katana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaufland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeneon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdenlive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeplasma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kedro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keenetic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepachangelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepassxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kenmei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kentico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keras.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycloak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keystone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khanacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khronosgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kibana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kingstontechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinopoisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinsta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kirby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kiwix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kleinanzeigen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knexdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knowledgebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/known.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koenigsegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/komoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kong.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kongregate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konva.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koyeb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/krita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuaishou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubespray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kucoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kueski.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kununu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kyocera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lamborghini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/languagetool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lapce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelhorizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelnova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastdotfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/latex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/launchpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazarus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazyvim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lbry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaderprice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaflet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leagueoflegends.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leetcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lefthook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/legacygames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemmy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemonsqueezy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lenovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leptos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lequipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lerna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leroymerlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leslibraires.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/less.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letsencrypt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/levelsdotfyi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberadotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberapay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librariesdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librarything.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficecalc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficedraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficeimpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librewolf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libuv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lichess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lidl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lifx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightburn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/limesurvey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/line.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lineageos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lining.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkfire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linksys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lintcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxcontainers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxmint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxprofessionalinstitute.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lionair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liquibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listenhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listmonk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/literal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litiengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livejournal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livewire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/llvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lmms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lobsters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/local.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localsend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localxpose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lodash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logmein.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logseq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/looker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loopback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lootcrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lospec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lotpolishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lottiefiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ltspice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luanti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luau.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ludwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lufthansa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lumen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lunacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luogu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lutris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lvgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lydia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macpaw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macports.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magasinsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mahindra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailgun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailtrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mainwp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/majorleaguehacking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/make.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/makerbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malwarebytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mambaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/man.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manageiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangacollec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangaupdates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mantine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapillary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maplibre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maptiler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadbfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marriott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marvelapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maserati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercomfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesignicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialformkdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matillion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matomo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matterdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mattermost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matternet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mautic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/max.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maxplanckgesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maytag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mazda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcafee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcdonalds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mclaren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdblist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdnwebdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mealie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediafire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediamarkt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediapipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediatek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medibangpaint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medusa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meilisearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meituan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meizu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mentorcruise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercadopago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/merck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercurial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mermaid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metacritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metafilter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metasploit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodelaciudaddemexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodemadrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodeparis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mezmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microdotblog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microeditor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/micropython.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstrategy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/migadu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihoyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mikrotik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milanote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milvus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mingww64.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minimax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mintlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minutemailer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miraheze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/misskey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mistralai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mitsubishi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobxstatetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mocha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mockserviceworker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelcontextprotocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelscope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modrinth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mojeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moleculer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/momenteo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moneygram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoosedotws.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monogame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monoprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moonrepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moqups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/morrisons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moscowmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/motorola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/movistar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mozilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mpv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msibusiness.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mtr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mullvad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/multisim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mural.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/musicbrainz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mxlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myanimelist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myshows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mysql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n26.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n8n.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namecheap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namemc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namesilo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namuwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nanostores.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalgrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/natsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/naver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ndr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/near.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nederlandsespoorwegen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neo4j.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neovim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neptune.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nestjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netcup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neteasecloudmusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netgear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nette.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neutralinojs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newbalance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newgrounds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newjapanprowrestling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newpipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newrelic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newyorktimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nexon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbilliondotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginxproxymanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nicehash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/niconico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nikon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nissan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nobaralinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodebb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodegui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodemon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodered.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nokia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nomad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordicsemiconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/normalizedotcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norwegian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/note.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notebooklm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notepadplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nounproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/novu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/now.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nrwl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nsis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ntfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nubank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nucleo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nunjucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nushell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nutanix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvidia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nxp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nzxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/o2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/observable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsidian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obtainium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ocaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octanerender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octobercms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octoprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octopusdeploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oculus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ohdear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okcupid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ollama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/omadacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oneplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyfans.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onnx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onstar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/open3d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaigym.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openapiinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbadges.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbugbounty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencollective.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencontainersinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openfaas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opengl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openhab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjdk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjsfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openlayers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmediavault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmined.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opennebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openscad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourcehardware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourceinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openssl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstreetmap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentelemetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentofu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openwrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzeppelin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/operagx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opnsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oppo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opsgenie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opslevel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optimism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optuna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oreilly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/org.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/organicmaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osgeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oshkosh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/otto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/outline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ovh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owasp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owncloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/p5dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packagist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddlepaddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddypower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagerduty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagespeedinsights.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagseguro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/palantir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltonetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltosoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/panasonic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pantheon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperlessngx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperswithcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paradoxinteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paramountplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paritysubstrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parrotsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parsedotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passbolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pastebin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paychex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payhip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payloadcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payoneer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paysafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paytm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pcgamingwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peakdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pearson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peerlist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peertube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pegasusairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pelican.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peloton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penny.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penpot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/percy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perplexity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/persistent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/personio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/petsathome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peugeot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pexels.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pfsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/philipshue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phoenixframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phonepe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phosphoricons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photobucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photocrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photopea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/php.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpmyadmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piaggiogroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piapro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picardsurgeles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picartodottv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picsart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pihole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pimcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pingdom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pioneerdj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piped.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pipx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pivotaltracker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piwigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixabay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pkgsrc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planetscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plangrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platzi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plausibleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playcanvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationportable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationvita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pleroma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pluralsight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plurk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pnpm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastaddict.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastindex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polestar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polkadot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polymerproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polywork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pomerium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pond5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/popos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porkbun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porsche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portableappsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portainer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portswigger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postgresql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posthog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postiz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postmates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/powers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prdotco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/preact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/precommit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prefect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premierleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prepbytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prestashop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/presto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prettier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prevention.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prezi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primefaces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primeng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primereact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primevue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/printables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prisma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prismic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privatedivision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privateinternetaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/probot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processingfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/producthunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prometheus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pronounsdotpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prosieben.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proteus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protocolsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protodotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protoncalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protractor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proxmox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pterodactyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/publons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubmed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pulumi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppeteer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purgecss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pushbullet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pusher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pwa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycharm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycqa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pydantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyscaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pysyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/python.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pythonanywhere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytorch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qantas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qatarairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qbittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qemu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiskit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiwi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qnap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quad9.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualcomm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualtrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarkus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quasar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qubesos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quickbooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicklook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quizlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwiklabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qzone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rabbitmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/racket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radiofrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radixui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/railway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainyun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakuten.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakutenkobo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rancher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rapid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rarible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raspberrypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ratatui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raycast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raylib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razorpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rclone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/react.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactbootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacthookform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactiveresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactivex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacttable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readdotcv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readthedocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reason.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reasonstudios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/recoil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/red.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbubble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbull.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redcandlegames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhatopenshift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redsys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reduxsaga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redwoodjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reebok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refinedgithub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rekaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relianceindustrieslimited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remedyentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/removedotbg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/render.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renovate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replicate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/republicofgamers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescuetime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resharper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resurrectionremixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroachievements.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retropie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revanced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revealdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revenuecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reverbnation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revoltdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revolut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rezgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rhinoceros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rider.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rimacautomobili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riotgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ripple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riscv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riseup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ritzcarlton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roadmapdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roamresearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robinhood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roblox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robloxstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roboflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robotframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocketdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocksdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockstargames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockwellautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockylinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roll20.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollbar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rolldown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollsroyce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollupdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/root.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootsbedrock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootssage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rossmann.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rotaryinternational.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rottentomatoes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roundcube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rsocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rstudioide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtlzwei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubocop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubygems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubymine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubyonrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubysinatra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruff.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumahweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rundeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runrundotit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rustdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ryanair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rye.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/s7airlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sabanci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sagemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sahibinden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailfishos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/salla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saltproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsung.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsungpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saopaulometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sartorius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sat1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saturn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saucelabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saudia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scalar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scaleway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scania.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/schneiderelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scikitlearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scilab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scopus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scpfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scratch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/screencastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrimba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrollreveal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrumalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrutinizerci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scylladb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seafile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seagate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/searxng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seatgeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/securityscorecard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sefaria.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/selenium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sellfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticrelease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticscholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticuireact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semaphoreci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semrush.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sencha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sennheiser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sensu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sentry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sepa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sequelize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/servbay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverfault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/session.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sessionize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setuptools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sfml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadcnui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shanghaimetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shazam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shelly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shenzhenmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shieldsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shikimori.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shortcut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showwcase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidekiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidequest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siemens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sifive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/silverairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/similarweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simkl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelocalize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelogin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplenote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sinaweibo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singaporeairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singlestore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitecore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siyuan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skeleton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchfab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skillshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skypack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slackware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slashdot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slickpic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smartthings.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smashingmagazine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smoothcomp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smugmug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapcraft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapdragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snort.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snyk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socialblade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/society6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socketdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softcatala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softpedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sogou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solidity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sololearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeforide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonatype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songkick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonicwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soriana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcehut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/southwestairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spaceship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkasse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkfun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speakerdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spectrum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedtest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedypage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sphinx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spigotmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spinnaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/splunk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spoj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreadshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring_creators.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springboot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spyderide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlalchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/square.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squareenix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/srgssr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ssrn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackblitz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackhawk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackoverflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stadia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/staffbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stagetimer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starbucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stardock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starlingbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startrek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statamic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statista.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steelseries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steemit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steinberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stellar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stimulus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stmicroelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stockx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stopstalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storyblok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storybook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamrunners.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stremio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strongswan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stryker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stubhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/studio3t.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styledcomponents.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylelint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styleshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subaru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sublimetext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/substack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subtitleedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subversion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suckless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sumologic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sunrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supercrease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supermicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/superuser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surfshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surrealdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surveymonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suzuki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svelte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgtrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swagger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swarm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiggy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swisscows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symantec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symbolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symphony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sympy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/syncthing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/synology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/system76.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tabelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tablecheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tacobell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tado.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichigraphics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichilang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailwindcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taketwointeractivesoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talenthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tamiya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tampermonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tanstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taobao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tapas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/target.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tarom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/task.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tasmota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tauri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taxbuzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tcs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamcity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/techcrunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teepublic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teespring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tekton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tele5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telefonica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telenor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telequebec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/temporal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tensorflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teradata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teratail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/termius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testcafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testinglibrary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tether.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textpattern.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textual.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thangs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thanos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thealgorithms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theboringcompany.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theconversation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thefinals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theguardian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theirishtimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themighty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themodelsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themoviedatabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thenorthface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theodinproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theplanetarysociety.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theregister.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thesoundsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thespritersresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thestorygraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thewashingtonpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theweatherchannel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thingiverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thinkpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thirdweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threadless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderbird.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thurgauerkantonalbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thymeleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticketmaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticktick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiddlywiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidyverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tietoevry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tildapublishing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/timescale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tindie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinkercad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinygrad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinyletter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tistory.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tmux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/todoist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggltrack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokyometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomorrowland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomtom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topcoder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toptal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toshiba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/totvs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tourbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toyota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tplink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tqdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traccar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tradingview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikmesh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trailforks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trainerroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trakt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transifex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transmission.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforireland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforlondon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/travisci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trendmicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tresorit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treyarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tricentis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/triller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trillertv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trimble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trove.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trpc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/truenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trueup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trulia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustedshops.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustpilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryhackme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryitonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tsnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turborepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbosquid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turkishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turso.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuxedocomputers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tv4play.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tvtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twenty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinkly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinmotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubereats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubiquiti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ublockorigin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntumate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udotsdotnews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ufc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uipath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ukca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ultralytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ulule.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbrel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underarmour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underscoredotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/undertale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unilever.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo_ja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitedairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitednations.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unlicense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unocss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unpkg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unraid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unrealengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unstop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uphold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uplabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upptime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uptimekuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uservoice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/utorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v2ex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vagrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valorant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vanillaextract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vapor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaultwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vauxhall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vbulletin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorlogozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veeam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veepee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vegas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velocity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vencord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/venmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vercel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verdaccio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veritas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vespa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vestel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vexxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vfairs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viaplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viblo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victoriametrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victronenergy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vikunja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeolivestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vinted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virgin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginatlantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginmedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virtualbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virustotal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visualparadigm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivaldi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivawallet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vlcmediaplayer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vmware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vodafone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voelkner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voidlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voipdotms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volkswagen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volvo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vonage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vorondesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vowpalwabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vrchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vscodium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vtex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vueuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vulkan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vultr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vyond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/w3schools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wacom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagmi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagtail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wakatime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walkman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wallabag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walletconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wantedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wappalyzer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/warp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasabi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/watchtower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wattpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wayland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wazirx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wearos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weasyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/web3dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webassembly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webauthn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webcomponentsdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdotde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdriverio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weblate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmoney.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtrees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wegame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weightsandbiases.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/welcometothejungle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellfound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellsfargo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wemo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/westernunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wetransfer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wezterm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/what3words.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wheniwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikibooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediacommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediafoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiquote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikisource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiversity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikivoyage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/winamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/windsurf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wipro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wistia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wizzair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolfram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframmathematica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondershare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondersharefilmora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woocommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/worldhealthorganization.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wprocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/writedotas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wykop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wyze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xampp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdadevelopers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xendit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xfce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaohongshu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaomi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xrp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xsplit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xstate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xyflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yabai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahacorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahamotorcorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yandexcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ycombinator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yolo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youhodler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubegaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubekids.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubeshorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubestudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubetv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yubico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yunohost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zabka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zaim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zapier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zara.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zazzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebratechnologies.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zedindustries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zendesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zensar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerodha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerotier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zettlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee2mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ziggo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zilch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zillow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zincsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zingat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoho.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zomato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zorin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zotero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zulip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zyte.svg +1 -0
- docsforge/themes/material/templates/404.html +7 -0
- docsforge/themes/material/templates/__init__.py +70 -0
- docsforge/themes/material/templates/assets/images/favicon.png +0 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js +16 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js.map +7 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/tinyseg.js +206 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/wordcut.js +6708 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js +42 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js.map +7 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css.map +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css.map +1 -0
- docsforge/themes/material/templates/base.html +259 -0
- docsforge/themes/material/templates/blog-post.html +138 -0
- docsforge/themes/material/templates/blog.html +21 -0
- docsforge/themes/material/templates/fragments/tags/default/listing.html +19 -0
- docsforge/themes/material/templates/fragments/tags/default/tag.html +16 -0
- docsforge/themes/material/templates/main.html +4 -0
- docsforge/themes/material/templates/mkdocs_theme.yml +50 -0
- docsforge/themes/material/templates/partials/actions.html +22 -0
- docsforge/themes/material/templates/partials/alternate.html +22 -0
- docsforge/themes/material/templates/partials/comments.html +3 -0
- docsforge/themes/material/templates/partials/consent.html +71 -0
- docsforge/themes/material/templates/partials/content.html +12 -0
- docsforge/themes/material/templates/partials/copyright.html +16 -0
- docsforge/themes/material/templates/partials/feedback.html +47 -0
- docsforge/themes/material/templates/partials/footer.html +56 -0
- docsforge/themes/material/templates/partials/header.html +69 -0
- docsforge/themes/material/templates/partials/icons.html +52 -0
- docsforge/themes/material/templates/partials/integrations/analytics/google.html +7 -0
- docsforge/themes/material/templates/partials/integrations/analytics.html +14 -0
- docsforge/themes/material/templates/partials/javascripts/announce.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/base.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/consent.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/content.html +7 -0
- docsforge/themes/material/templates/partials/javascripts/outdated.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/palette.html +4 -0
- docsforge/themes/material/templates/partials/language.html +6 -0
- docsforge/themes/material/templates/partials/languages/af.html +56 -0
- docsforge/themes/material/templates/partials/languages/ar.html +57 -0
- docsforge/themes/material/templates/partials/languages/az.html +55 -0
- docsforge/themes/material/templates/partials/languages/be.html +57 -0
- docsforge/themes/material/templates/partials/languages/bg.html +56 -0
- docsforge/themes/material/templates/partials/languages/bn.html +56 -0
- docsforge/themes/material/templates/partials/languages/ca.html +55 -0
- docsforge/themes/material/templates/partials/languages/cs.html +55 -0
- docsforge/themes/material/templates/partials/languages/cy.html +55 -0
- docsforge/themes/material/templates/partials/languages/da.html +56 -0
- docsforge/themes/material/templates/partials/languages/de.html +57 -0
- docsforge/themes/material/templates/partials/languages/el.html +55 -0
- docsforge/themes/material/templates/partials/languages/en.html +60 -0
- docsforge/themes/material/templates/partials/languages/eo.html +56 -0
- docsforge/themes/material/templates/partials/languages/es.html +56 -0
- docsforge/themes/material/templates/partials/languages/et.html +55 -0
- docsforge/themes/material/templates/partials/languages/eu.html +55 -0
- docsforge/themes/material/templates/partials/languages/fa.html +57 -0
- docsforge/themes/material/templates/partials/languages/fi.html +56 -0
- docsforge/themes/material/templates/partials/languages/fr.html +56 -0
- docsforge/themes/material/templates/partials/languages/gl.html +56 -0
- docsforge/themes/material/templates/partials/languages/he.html +57 -0
- docsforge/themes/material/templates/partials/languages/hi.html +56 -0
- docsforge/themes/material/templates/partials/languages/hr.html +55 -0
- docsforge/themes/material/templates/partials/languages/hu.html +56 -0
- docsforge/themes/material/templates/partials/languages/hy.html +56 -0
- docsforge/themes/material/templates/partials/languages/id.html +56 -0
- docsforge/themes/material/templates/partials/languages/is.html +55 -0
- docsforge/themes/material/templates/partials/languages/it.html +56 -0
- docsforge/themes/material/templates/partials/languages/ja.html +58 -0
- docsforge/themes/material/templates/partials/languages/ka.html +48 -0
- docsforge/themes/material/templates/partials/languages/kn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ko.html +56 -0
- docsforge/themes/material/templates/partials/languages/ku-IQ.html +44 -0
- docsforge/themes/material/templates/partials/languages/lb.html +56 -0
- docsforge/themes/material/templates/partials/languages/lt.html +56 -0
- docsforge/themes/material/templates/partials/languages/lv.html +55 -0
- docsforge/themes/material/templates/partials/languages/mk.html +56 -0
- docsforge/themes/material/templates/partials/languages/mn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ms.html +55 -0
- docsforge/themes/material/templates/partials/languages/my.html +56 -0
- docsforge/themes/material/templates/partials/languages/nb.html +56 -0
- docsforge/themes/material/templates/partials/languages/nl.html +56 -0
- docsforge/themes/material/templates/partials/languages/nn.html +56 -0
- docsforge/themes/material/templates/partials/languages/pl.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt-BR.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt.html +56 -0
- docsforge/themes/material/templates/partials/languages/ro.html +56 -0
- docsforge/themes/material/templates/partials/languages/ru.html +56 -0
- docsforge/themes/material/templates/partials/languages/sa.html +55 -0
- docsforge/themes/material/templates/partials/languages/sh.html +55 -0
- docsforge/themes/material/templates/partials/languages/si.html +31 -0
- docsforge/themes/material/templates/partials/languages/sk.html +55 -0
- docsforge/themes/material/templates/partials/languages/sl.html +56 -0
- docsforge/themes/material/templates/partials/languages/sq.html +56 -0
- docsforge/themes/material/templates/partials/languages/sr.html +55 -0
- docsforge/themes/material/templates/partials/languages/sv.html +56 -0
- docsforge/themes/material/templates/partials/languages/ta.html +56 -0
- docsforge/themes/material/templates/partials/languages/te.html +55 -0
- docsforge/themes/material/templates/partials/languages/th.html +56 -0
- docsforge/themes/material/templates/partials/languages/tl.html +52 -0
- docsforge/themes/material/templates/partials/languages/tr.html +56 -0
- docsforge/themes/material/templates/partials/languages/uk.html +55 -0
- docsforge/themes/material/templates/partials/languages/ur.html +57 -0
- docsforge/themes/material/templates/partials/languages/uz.html +56 -0
- docsforge/themes/material/templates/partials/languages/vi.html +56 -0
- docsforge/themes/material/templates/partials/languages/zh-Hant.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh-TW.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh.html +57 -0
- docsforge/themes/material/templates/partials/logo.html +9 -0
- docsforge/themes/material/templates/partials/nav-item.html +170 -0
- docsforge/themes/material/templates/partials/nav.html +30 -0
- docsforge/themes/material/templates/partials/pagination.html +20 -0
- docsforge/themes/material/templates/partials/palette.html +16 -0
- docsforge/themes/material/templates/partials/path-item.html +29 -0
- docsforge/themes/material/templates/partials/path.html +23 -0
- docsforge/themes/material/templates/partials/post.html +68 -0
- docsforge/themes/material/templates/partials/progress.html +4 -0
- docsforge/themes/material/templates/partials/search.html +42 -0
- docsforge/themes/material/templates/partials/social.html +27 -0
- docsforge/themes/material/templates/partials/source-file.html +110 -0
- docsforge/themes/material/templates/partials/source.html +12 -0
- docsforge/themes/material/templates/partials/tabs-item.html +37 -0
- docsforge/themes/material/templates/partials/tabs.html +13 -0
- docsforge/themes/material/templates/partials/tags.html +31 -0
- docsforge/themes/material/templates/partials/toc-item.html +25 -0
- docsforge/themes/material/templates/partials/toc.html +25 -0
- docsforge/themes/material/templates/partials/top.html +8 -0
- docsforge/themes/material/templates/redirect.html +16 -0
- docsforge/utilities/__init__.py +30 -0
- docsforge/utilities/filter/__init__.py +135 -0
- docsforge/utilities/filter/config.py +58 -0
- docsforge/utils/__init__.py +403 -0
- docsforge/utils/babel_stub.py +29 -0
- docsforge/utils/cache.py +75 -0
- docsforge/utils/filters.py +1 -0
- docsforge/utils/meta.py +102 -0
- docsforge/utils/rendering.py +104 -0
- docsforge/utils/templates.py +57 -0
- docsforge/utils/yaml.py +165 -0
- docsforge-9.7.6.dist-info/METADATA +203 -0
- docsforge-9.7.6.dist-info/RECORD +14911 -0
- docsforge-9.7.6.dist-info/WHEEL +4 -0
- docsforge-9.7.6.dist-info/entry_points.txt +56 -0
- docsforge-9.7.6.dist-info/licenses/LICENSE +17 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.333 18.413 2.512-1.615 3.179 1.814 3.209-1.876 2.656 1.515-5.849 3.418zM5.273 6.239l6.687-3.907 6.73 3.839.022 6.755-2.654-1.513-.011-3.701-4.071-2.322-4.05 2.367.011 3.698-.903.526-1.739 1.118zm3.608 2.463 1.913 1.089-1.906 1.11zm4.337 5.514 2.634-1.544 3.271 1.862 2.221-1.296-.013-2.571-1.677-.957-.01-3.054 4.355 2.485.001 5.611-4.859 2.841zm-13.189.661L0 9.249l4.322-2.525.009 3.061-1.675.979.013 2.57 2.234 1.274L15.098 8.66l.009 3.062-10.189 5.944z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.895 11.048a.116.116 0 0 0 .031.201c1.621.579 2.393.66 2.393 2.081v4.011c0 .716-.051.88-.531 1.254-.877.683-6.185 4.747-6.392 4.913-.774.62-1.169.556-2.054.339a515 515 0 0 1-9.945-2.577c-1.746-.47-1.701-2.064-1.701-3.203 0-3.945-.015-7.468-.015-11.202 0-1.186.049-1.222.95-1.881.83-.607 4.296-3.135 6.153-4.499.553-.406.828-.607 1.618-.406 1.616.41 6.664 1.649 9.382 2.339 2.083.529 2.535.893 2.535 2.326V8.38c0 .465-.007.638-.408.981-.202.173-1.348 1.14-2.016 1.687m1.624-2.556a.113.113 0 0 0 .141-.112c.001-1.414.011-2.495.011-3.666 0-.622-.35-1.137-1.121-1.343C16.501 2.29 10.486.866 10.191.778c-.197-.059-.322.108-.322.199-.001 4.294.029 7.832.029 11.854 0 .741.408 1.525 1.292 1.765 3.582.973 6.578 1.655 10.331 2.667a.115.115 0 0 0 .143-.112c.001-.848.014-1.405.014-1.95 0-2.27.279-2.679-1.57-3.194-2.198-.612-5.306-1.378-5.554-1.441-.485-.124-.548-.266-.548-.591 0-.122-.011-2.346-.003-2.869.002-.157.006-.31.157-.397.134-.077.264-.046.664.053.448.111 4.598 1.186 6.695 1.73m-7.65 14.735a.114.114 0 0 0 .142-.111c.001-1.185.017-2.484.017-3.352 0-1.475.182-1.334-1.064-1.639-1.474-.36-4.433-1.146-5.967-1.552-.355-.094-.459-.424-.459-.998 0-1.726-.006-4.575-.006-6.577 0-1.834.193-1.599-.703-1.832-.565-.146-2.468-.637-3.313-.828-.144-.032-.225.085-.225.224-.003 3.939.053 8.211.053 11.994 0 1.228.439 1.815 1.321 2.051 3.589.963 6.446 1.652 10.204 2.62"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.23 0v24h15.541v-8.4h-7.172v3.6h-1.197V0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0M.745 12A11.25 11.25 0 0 1 12 .745c1.287 0 2.511.227 3.66.618L9.387 13.93l-8.113 1.476A11.3 11.3 0 0 1 .744 12M12 23.256c-4.997 0-9.237-3.269-10.7-7.773h7.836l7.079 6.952c-1.3.518-2.726.82-4.215.82m4.227-.833a2.25 2.25 0 0 0 .631-1.565c0-.707-.328-1.35-.845-1.754l-4.732-3.621H22.7a11.3 11.3 0 0 1-6.474 6.94m5.161-8.089h-2.7l.202.29h.92l.468.568h-5.086c0-1.009-.82-1.842-1.842-1.842-.1 0-.202.013-.29.025l-1.83.278 5.4-8.984c.215-.353.329-.757.329-1.186 0-.909-.505-1.716-1.25-2.095 4.392 1.527 7.547 5.69 7.547 10.612 0 1.11-.164 2.183-.467 3.192a1.75 1.75 0 0 1-1.401-.858"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.928 0H6.072A6.076 6.076 0 0 0 0 6.073v11.854A6.076 6.076 0 0 0 6.073 24h11.854A6.076 6.076 0 0 0 24 17.927V6.073A6.076 6.076 0 0 0 17.927 0m1.42 7.013a1.4 1.4 0 0 1-.26.39c-.11.11-.24.2-.39.26-.14.06-.3.09-.45.09-2.511 0-3.482 1.53-4.792 4.042l-.8 1.51c-1.231 2.382-2.762 5.323-6.894 5.323-.31 0-.62-.12-.84-.35a1.188 1.188 0 0 1 .84-2.031c2.511 0 3.482-1.53 4.792-4.042l.8-1.51c1.231-2.382 2.762-5.323 6.894-5.323q.24 0 .45.09c.14.06.27.15.39.26.11.11.2.24.26.39a1.17 1.17 0 0 1 0 .9"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.327 3.485c-.797.627-.975 1.621-1.165 3.317-.365 3.257-.64 5.198-1.047 8.658-.199 1.701.976 1.902 2.365 1.886h2.884c.26.002.352.123.319.38-.124.966-.258 2.79-1.19 2.79L0 20.492s2.83-1.032 3.165-3.372l1.34-10.887c.208-1.357 1.288-2.75 2.634-2.75zm5.556 17.03c1.346 0 2.426-1.392 2.634-2.749l1.34-10.887c.335-2.34 3.165-3.372 3.165-3.372l-11.493-.022c-.932 0-1.066 1.823-1.19 2.788-.033.258.059.379.32.38h2.883c1.39-.015 2.564.186 2.365 1.887-.406 3.46-.682 5.4-1.047 8.658-.19 1.696-.368 2.69-1.165 3.317zm8.319-13.862c.259 0 .496-.21.528-.466l.267-2.23a.41.41 0 0 0-.414-.472h-.88c-1.088 0-2.202 1.795-2.255 2.696a.408.408 0 0 0 .411.472z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.38 10.377-.272-.037c-.048.344-.082.695-.101 1.041l.275.016q.027-.512.098-1.02m3.756-7.088-.184-.205c-.258.232-.509.48-.746.734l.202.188c.231-.248.476-.49.728-.717m1.633-1.23-.146-.235q-.446.28-.863.594l.166.219c.27-.203.554-.399.843-.578m-3.945 16.31q.278.447.593.863l.22-.164a12 12 0 0 1-.58-.844zm-.697-1.967-.255.104q.195.479.431.943l.005.01.245-.125-.005-.01a12 12 0 0 1-.421-.922M.298 9.309l.269.063c.076-.332.168-.664.272-.986l-.261-.087c-.108.332-.202.672-.28 1.01M.274 12.42l-.275.01c.012.348.04.699.083 1.043l.273-.033c-.042-.336-.069-.68-.081-1.02m-.018 2.086c.073.34.162.682.264 1.014l.263-.08q-.15-.49-.258-.99zM11.573.275 11.563 0c-.348.012-.699.039-1.044.082l.034.273q.508-.062 1.02-.08m11.648 8.291c.1.326.186.66.256.992l.27-.059c-.072-.34-.16-.682-.262-1.014zm-5.6-7.177a12 12 0 0 0-.947-.449l-.107.252q.473.2.926.439zM15.693.572q-.499-.159-1.01-.277l-.063.268q.5.115.988.273zm-9.019.973q.449-.226.916-.418L7.486.873q-.478.192-.937.428l-.015.008.125.244zm17.053 10.043.275-.01a12 12 0 0 0-.082-1.045l-.273.033c.041.338.068.682.08 1.022M13.654.105q-.52-.07-1.043-.098l-.014.273c.339.018.683.051 1.019.098zm-4.11.422-.058-.27c-.34.072-.681.16-1.014.264l.081.262c.325-.099.659-.185.991-.256M1.921 5.469l.231.15c.185-.285.384-.566.592-.834l-.217-.17q-.321.416-.606.854M.943 7.318l.253.107c.132-.313.28-.625.439-.924l-.243-.128c-.163.307-.314.625-.449.945m17.28 14.625.145.234c.295-.186.586-.385.863-.594l-.164-.219c-.272.204-.557.4-.844.579m3.025-2.724.217.17c.215-.273.418-.561.607-.854l-.23-.148q-.28.429-.594.832m-1.393 1.496.184.203c.258-.23.51-.479.746-.732l-.201-.188c-.23.248-.477.488-.729.717m2.504-3.211.244.129c.162-.307.314-.625.449-.945l-.254-.107a11 11 0 0 1-.439.923m1.258-3.875.273.039q.073-.52.102-1.043l-.275-.014a11 11 0 0 1-.1 1.018m-.461 1.992.264.086q.161-.499.279-1.01l-.268-.063c-.077.333-.169.665-.275.987m-.703-8.949c.154.303.297.617.424.932l.256-.104a12 12 0 0 0-.436-.953zM8.296 23.418q.498.161 1.009.279l.062-.268a12 12 0 0 1-.986-.273zm2.039.471c.345.049.696.082 1.043.102l.014-.275a12 12 0 0 1-1.019-.098zm6.991-1.44q-.456.232-.926.424l.104.256c.318-.131.639-.275.947-.434l.004-.002-.123-.246zm-12.713-.982c.274.213.562.418.854.605l.149-.23a12 12 0 0 1-.833-.592zm7.804 2.258.009.275a13 13 0 0 0 1.045-.084l-.035-.271c-.336.041-.68.068-1.019.08M6.37 22.604q.463.245.946.449l.107-.254a12 12 0 0 1-.924-.439zm-3.287-2.563c.233.258.48.51.734.746l.188-.201c-.249-.23-.49-.477-.717-.729zm11.362 3.434.059.27a12 12 0 0 0 1.014-.266l-.082-.262c-.325.099-.659.185-.991.258M21.18.129a2.689 2.689 0 1 0 0 5.378 2.689 2.689 0 1 0 0-5.378m-5.856 15.318c0 .471.314.66.852.66.67 0 1.297-.396 1.297-1.016v-.645c-.23.107-.379.141-1.107.24-.735.109-1.042.306-1.042.761M12 2.818a9.18 9.18 0 0 0-9.18 9.18A9.18 9.18 0 1 0 12 2.818m-2.487 13.77H5.771v-6.023h.769v5.346h2.974zm4.13 0h-.619v-.67c-.405.57-.811.793-1.446.793-.843 0-1.38-.463-1.38-1.182v-3.271h.686v3c0 .52.347.85.893.85.719 0 1.181-.578 1.181-1.461v-2.389h.686v4.33zm-.53-8.393a2.69 2.69 0 1 1 5.375.001 2.69 2.69 0 0 1-5.375-.001m5.567 7.856v.52c-.223.059-.33.074-.471.074a.73.73 0 0 1-.711-.57 2.03 2.03 0 0 1-1.471.637c-.877 0-1.422-.463-1.422-1.248 0-.527.256-.916.76-1.123.266-.107.414-.141 1.389-.264.545-.066.719-.191.719-.48v-.182c0-.412-.348-.645-.967-.645-.645 0-.957.24-1.016.77h-.693c.041-1 .686-1.404 1.734-1.404 1.066 0 1.627.412 1.627 1.182v2.412c0 .215.133.338.373.338.041-.002.074-.002.149-.017"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.11 0 1.76 2.516v4.478L3.638 8.08.073 10.137v6.97L12.013 24l11.773-6.96.14-.083v-6.672l-3.323-1.92V6.148l-1.061-.613-1.156.774v.775l-1.11-.64v-.948c-.002-.11-.053-.182-.138-.24l-4.166-2.404a.28.28 0 0 0-.28 0q-1.31.758-2.62 1.515v-2.08Zm0 .64 3.41 1.966v4.297L6.11 8.867 2.312 6.676V2.834Zm6.721 2.77 3.613 2.086-4.382 2.531a.277.277 0 0 0 0 .48l3.27 1.891-7.2 4.07-7.227-4.171L4.19 8.398l.684.397v2.217l1.236.715 1.239-.715V8.795l2.722-1.572V5.008Zm3.89 2.569v.466l-3.56 2.059-.406-.234zm2.84.208.487.282v4.33l-.496.287-.614-.354V6.605ZM17 6.926l1.387.8v3.327l1.166.674 1.05-.61V9.006l2.77 1.6v.49L19.548 13.3l-3.381-1.951v-.944a.28.28 0 0 0-.139-.246l-2.314-1.338ZM5.429 9.113l.681.397.686-.397v1.576l-.686.397-.681-.397Zm-4.8 1.662 7.362 4.252c.086.05.19.051.278.002l7.343-4.154v.473l-7.76 4.386v1.43l.864.498v1.11l3.297 1.902 6.925-4.08v-1.19l1.11-.64v-1.112q1.661-.96 3.324-1.916v1.024l-2.217 1.277v.557l-1.11.638v1.11l-1.107.64v2.28l-6.93 4.095-3.599-2.08V20.17l-1.06-.611v-1.11c-.385-.225-.773-.445-1.159-.67v-2.215l-3.324-1.92v1.11l-1.107-.64v3.325l-1.131-.652Zm15.26 1.053c1.21.697 2.402 1.392 3.604 2.082v.533l-1.107.641v1.191l-6.375 3.758-2.742-1.582v-1.11l-.86-.495v-.787zm7.483 1.57v3.24l-3.879 2.24v-1.577l1.11-.64v-1.108l1.107-.64v-.556zM3.421 14.604l2.217 1.28v1.577l-1.446-.834-1.879 1.086v-2.64l1.108.64zm1.32 1.392-.138.24.119.069.138-.24zm.36.207-.14.24.12.07.139-.24zm-.909 1.065 1.446.834 1.11.638v1.11l1.106.642v.469l-5.027-2.904Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.072 18.928 24 0 18.928 5.072 0zM8.984 18.402l-.085.375.61.163 1.005-3.75-.641-.172-.731 2.728q-.39.483-1.125.286-.692-.186-.464-1.039l.649-2.422-.641-.172-.654 2.44q-.18.683.039 1.117.222.431.822.592.724.195 1.216-.146m3.818 1.42.672.18.015-.055q-.05-.34.088-.857l.462-1.725q.139-.573-.142-.994-.28-.423-.928-.597a1.9 1.9 0 0 0-.793-.05 1.4 1.4 0 0 0-.652.272.9.9 0 0 0-.343.488l.645.172q.066-.246.344-.357a.97.97 0 0 1 .622-.02q.39.105.54.36.147.252.057.588l-.079.295-.624-.167q-.807-.217-1.342-.01-.53.203-.687.789-.13.48.14.891.274.408.828.557.62.165 1.192-.179-.042.294-.015.42Zm-.934-.774a.8.8 0 0 1-.47-.307.6.6 0 0 1-.075-.526q.184-.69 1.363-.374l.502.135-.206.77a.98.98 0 0 1-.5.3 1.17 1.17 0 0 1-.614.002M21 6.804l-3.786-1.015L16.2 9.575l3.786 1.014zM3.818 16.832l1.207-4.502-.67-.18-1.352 5.047 3.06.82.146-.544-2.39-.64Zm12.944 3.654-.086.375.61.163 1.005-3.75-.641-.172-.731 2.728q-.39.483-1.124.286-.693-.186-.465-1.039l.65-2.422-.642-.172-.654 2.44q-.18.684.04 1.117t.821.592q.725.195 1.217-.146"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.287 4.723q.316-.031.63.004a3.17 3.17 0 0 1 2.41 1.642l5.665.781h-6.458a2.58 2.58 0 0 0-1.66-.955 2.57 2.57 0 0 0-1.371.192c-.43.19-.8.495-1.068.88-.268.387-.424.84-.451 1.31-.026.468.078.935.3 1.349a3.13 3.13 0 0 1-.795-1.68 3.13 3.13 0 0 1 .305-1.832 3.14 3.14 0 0 1 1.299-1.332 3.1 3.1 0 0 1 1.195-.36m-9.88 1.09 8.673 6.232-7.154-4.012a3.6 3.6 0 0 0-.072 2.022 3.57 3.57 0 0 0 1.998 2.34l4.748 1.334-6.002-.983c.061.58.275 1.133.619 1.604a3.33 3.33 0 0 0 2.652 1.33 3.95 3.95 0 0 1-3.062-.451 3.9 3.9 0 0 1-1.432-1.563 3.9 3.9 0 0 1-.398-2.08l1.32.371a4.7 4.7 0 0 1-1.246-.986 4.7 4.7 0 0 1-1.111-2.48 4.67 4.67 0 0 1 .466-2.678m11.667 3.132q-.01.138-.008.278c.007 1.143.535 2.21 1.057 3.226.523 1.017 1.064 2.076 1.094 3.22.024.95-.32 1.895-.899 2.651-.578.756-1.377 1.328-2.255 1.696a6.5 6.5 0 0 1-3.91.338l-1 2.373v-3.327a6.23 6.23 0 0 0 3.665-.31c.7-.285 1.352-.707 1.862-1.264s.875-1.255.986-2.002c.15-1-.151-2.007-.447-2.974s-.595-1.977-.436-2.975a3.3 3.3 0 0 1 .291-.93"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.382 20.714 12 0 3.618 20.714 2.288 24h19.423zM12 13.61l-5.73 7.058 1.288-3.184L12 6.505l4.442 10.978 1.289 3.184z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 3.694 4.8V24L12 19.2Zm0 19.2v4.502h8.305V14.4Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.483 1.123a1.1 1.1 0 0 0-.752.362 1.09 1.09 0 0 0 .088 1.54 11.96 11.96 0 0 1 4 8.946 7.62 7.62 0 0 1-7.637 7.636 7.62 7.62 0 0 1-7.637-7.636 3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09 1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818S24 17.379 24 11.971A14.16 14.16 0 0 0 19.272 1.4a1.1 1.1 0 0 0-.789-.277M9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637 1.09 1.09 0 0 0 1.54-.096 1.09 1.09 0 0 0-.095-1.54 11.96 11.96 0 0 1-4.063-9 7.62 7.62 0 0 1 7.636-7.637 7.62 7.62 0 0 1 7.637 7.636 3.256 3.256 0 0 1-3.273 3.273 3.256 3.256 0 0 1-3.273-3.273 1.09 1.09 0 0 0-1.09-1.09 1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm13.714 10.286V3.429h-3.428v10.285H20.57V3.43h-3.428v6.857h-3.429Zm-6.857 6.857V3.429H3.43V20.57h17.14v-3.428H6.857Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0-6.648-5.352-12-12-12C5.376 0 0 5.352 0 12c0 6.624 5.376 12 12 12 6.648 0 12-5.376 12-12m-.864 0c0 6.12-4.992 11.136-11.136 11.136C5.88 23.136.864 18.121.864 12 .864 5.856 5.88.864 12 .864 18.144.864 23.136 5.856 23.136 12m-6.888-.72c-.264 0-.6 0-1.032.024l.312-.528h.504c1.8 0 3.144.096 4.368.312l.552-.528c-1.368-.24-3.024-.384-4.704-.384h-.408l.264-.504h.456a26 26 0 0 1 4.872.432l.576-.552c-1.728-.336-3.576-.503-5.568-.503q-1.274.004-2.544.12c-.96 2.063-2.496 3.264-4.224 3.24-.672-.025-1.513-.312-2.592-.889l-1.008-.576.312-.288 2.328 1.008.504-.384-4.704-2.136-.72.552L2.112 9l.024.696c2.256 1.032 3.192 1.608 5.568 3.312 3.096 2.208 5.856 3.408 9.696 4.176l1.008-.96h-.24c-2.544 0-4.824-.84-6.144-2.256 1.104-.672 2.471-.983 4.368-.983.504 0 1.224.047 1.896.119l.576-.552a23 23 0 0 0-2.712-.168 22 22 0 0 0-1.824.072l.432-.528q.767-.045 1.536-.048c1.272 0 2.112.048 3.072.192l.552-.528c-1.008-.167-2.4-.264-3.672-.264"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.649 0a.75.75 0 0 0-.342.072l-4.878 2.23a.75.751 0 1 0 .624 1.366l4.878-2.23A.75.75 0 0 0 11.649 0m5.624.354a.75.75 0 0 0-.341.074L6.425 5.306a.75.75 0 0 0 .632 1.362L17.563 1.79a.75.75 0 0 0-.29-1.436m0 3.002a.75.75 0 0 0-.341.074L6.425 8.31a.75.75 0 0 0 .632 1.362l10.506-4.88a.75.75 0 0 0-.29-1.436m0 3.002a.75.75 0 0 0-.341.074L6.425 11.311a.75.75 0 0 0 .632 1.361l10.506-4.878a.75.75 0 0 0-.29-1.436m.009 3.003a.75.75 0 0 0-.342.07l-3.753 1.688a.75.75 0 0 0-.442.685v3.518l.001.047h-1.503v-2.627a.75.75 0 0 0-.761-.761.75.75 0 0 0-.74.761v2.58l.002.047h-.94a.46.46 0 0 0-.47.555l.19 1.14a.69.69 0 0 0 .656.557h2.28l-2.537.476a.375.375 0 1 0 .139.737l6.003-1.126a.375.375 0 0 0 .307-.41.6.6 0 0 0 .092-.232l.19-1.142a.46.46 0 0 0-.47-.555h-.94l.002-.047V12.29l3.31-1.49a.75.75 0 0 0-.274-1.438zm-2.292 9.385a.4.4 0 0 0-.063.007l-6.004 1.126a.375.375 0 1 0 .139.737l6.003-1.125a.375.375 0 0 0-.075-.745m0 1.876a.4.4 0 0 0-.063.008l-6.004 1.125a.375.375 0 1 0 .139.737l6.003-1.125a.375.375 0 0 0-.075-.745m-.743 1.876a.4.4 0 0 0-.064.006l-4.471.751a.375.375 0 1 0 .124.74l4.472-.75a.375.375 0 0 0-.061-.747"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.031 6h-6v12h11.996v-6l-5.996 5.996Zm6.563 2.309a4.01 4.01 0 0 1-2.371-2.375 4.03 4.03 0 0 1-2.375 2.375 4.04 4.04 0 0 1 2.375 2.375 4.01 4.01 0 0 1 2.37-2.375ZM0 9.602c0-3.364 0-5.043.652-6.325A6.04 6.04 0 0 1 3.277.652C4.56 0 6.238 0 9.602 0h4.796c3.364 0 5.043 0 6.325.652a6.04 6.04 0 0 1 2.625 2.625C24 4.56 24 6.238 24 9.602v4.796c0 3.364 0 5.043-.652 6.325a6.04 6.04 0 0 1-2.625 2.625C19.44 24 17.762 24 14.398 24H9.602c-3.364 0-5.043 0-6.325-.652a6.04 6.04 0 0 1-2.625-2.625C0 19.44 0 17.762 0 14.398Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.424 0c-.435-.005-.964.138-1.569.65-.967.817-2.554 3.235-3.56 4.38s-2.002 1.65-2.48 2.493c-.477.844-.824 1.598-.385 2.568s2.308 2.592 3.018 3.247.724.566 1.24.68c.517.113 1.38.188 1.857 0 .478-.19.993-.63 1.006-1.133s-.515-1.409-.928-1.887c-.413-.479-1.213-.769-1.549-.983s-.373-.076-.463-.303-.413-.59-.078-1.056c.336-.466 1.38-1.033 2.09-1.738s1.625-1.61 2.167-2.492 1.06-2.064 1.085-2.794C13.901.902 13.603.285 13.1.12a2.2 2.2 0 0 0-.676-.12m-.397 6.936c-.243.008-.443.037-.566.097-.492.24-.48.997-.151 1.515s1.618 1.223 2.124 1.59c.505.366.883.292.908.607.026.316.102.315-.757 1.287-.86.973-3.222 3.371-4.397 4.546-1.175 1.174-1.77 1.503-2.654 2.5S4.259 21.78 3.88 22.563s-.15.997.38 1.212c.531.214 2.11.34 2.804.075.695-.265.822-1.034 1.365-1.666.543-.63.721-.859 1.896-2.122.472-.507 1.242-1.32 1.998-2.118.048.151.126.324.243.525.423.727 1.922 2.219 2.537 3.009s.77 1.33 1.154 1.73c.384.402.55.564 1.152.677.602.112 1.998.188 2.459 0 .461-.189.552-.576.308-1.127-.243-.552-1.346-1.555-1.768-2.182-.423-.627-1.243-2.095-1.845-2.71s-1.025-.776-1.768-.977c-.43-.115-.982-.11-1.444-.034.769-.811 1.564-1.647 2.129-2.246 1.415-1.503 2.88-2.614 3.335-3.56.455-.948-.214-1.492-.606-2.123-.391-.631-1.124-1.363-1.743-1.666-.62-.303-1.151-.1-1.972-.151-.616-.038-1.737-.197-2.467-.173"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.231 18.89.001-.002c-1.293 3.243-5.218 5.232-9.447 5.105C5.3 23.993 0 18.48 0 11.906S5.276.001 11.785.001c1.793 0 3.493.406 5.015 1.13.081-.177.271-.544.451-.557.238-.017.374.137.526.309.154.172.46.429.46.429s1.393-.481 2.955.377 1.783 1.116 2.09 1.716c.152.301.195.829.2 1.282l-.07-.003c-.496 0-.96.455-.96 1.08 0 .263.082.496.215.678l-.01.007a2 2 0 0 0-.132.01 19 19 0 0 0-.389-.142 2.5 2.5 0 0 1-.82-.472 1.402 1.402 0 0 0-1.196-2.112c-.383 0-.73.156-.982.41-.472-.271-1.174-.482-2.527-.565l-.407-.011c-2.282.012-3.611.279-5.979 1.301-.603.283-1.206.615-1.785 1.001-.423.3-.639.67-.709 1.137a1.326 1.326 0 0 0 1.23 1.373h.042c1.27.06 2.039 1.99 2.063 2.497.004.05.004.023.003.08-.032.727-.37 1.267-1.088 1.246a1.23 1.23 0 0 1-.976-.494c-.063-.077-.103-.172-.159-.254-.666-1.081-1.732-1.36-2.771-1.523-.438-.068-1.073-.122-1.31.25a8.3 8.3 0 0 0-.577 3.063c-.02 5.036 4.041 9.118 9.026 9.118 2.575 0 5.349-.952 6.993-2.7l-.035.03c-1.772 1.473-4.66 1.941-6.027 1.941-4.302 0-7.818-3.232-7.818-7.578 0-1.276.288-2.396.814-3.36.495.183.947.483 1.28 1.022l.013.021c.064.092.111.197.182.284.424.524.881.658 1.342.68h.01c.43.013.768-.12 1.024-.342.347-.3.55-.79.577-1.382v-.014c.002-.085 0-.053-.004-.112-.024-.376-.333-1.318-.906-2.027-.266-.331-.587-.607-.95-.774l.12-.074c.756-.457 2.364-.977 4.592-.638 1.13.173 2.055.419 3.483.879 1.657.534 2.579 1.279 3.854 1.427q.226.026.45.003c.41 1.129.634 2.35.634 3.621 0 2.068-.59 3.995-1.611 5.62zm1.947-12.274s-.115.201-.364.322c-.103.05-.282-.075-.45.1-.359.726.516 1.332.923 1.315s.73-.432.712-.793c-.017-.558-.82-.944-.82-.944zm.234-1.432c.255 0 .462.26.462.58s-.207.58-.462.58c-.254 0-.46-.26-.46-.58s.206-.58.46-.58m-3.292-.951c.492 0 .89.403.89.9a.895.895 0 0 1-.89.898.895.895 0 0 1-.89-.899c0-.496.399-.899.89-.899"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.23 16.615h5.54c.51 0 .922.412.922.923v5.539a.92.92 0 0 1-.923.923H9.231a.92.92 0 0 1-.923-.923v-5.539a.92.92 0 0 1 .923-.923zM0 17.538c0-.51.413-.923.923-.923h5.539c.51 0 .923.413.923.923v5.539c0 .51-.414.923-.923.923H2.769A2.77 2.77 0 0 1 0 21.23zm.923-9.23h5.539a.92.92 0 0 1 .923.922v5.539a.92.92 0 0 1-.923.923H.923A.92.92 0 0 1 0 14.769V9.23c0-.511.412-.923.923-.923zM2.77 0A2.77 2.77 0 0 0 0 2.769V6.46c0 .51.413.923.923.923h5.539c1.02 0 1.846.827 1.846 1.846v5.539c0 .51.413.923.923.923h5.538c1.02 0 1.847.826 1.847 1.846v5.539c0 .51.413.923.923.923h3.692A2.77 2.77 0 0 0 24 21.23V2.77A2.77 2.77 0 0 0 21.23 0zm18 1.846a1.385 1.385 0 1 1 0 2.769 1.385 1.385 0 0 1 0-2.77z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m5.895 17.611a.4.4 0 0 1-.168.035h-1.155a.61.61 0 0 1-.56-.377l-4-9.613-3.991 9.607a.61.61 0 0 1-.56.377H6.273a.42.42 0 0 1-.385-.59L10.91 5.575a.79.79 0 0 1 .726-.475h.748a.79.79 0 0 1 .726.48l5.003 11.482a.42.42 0 0 1-.218.549"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.38 15.883c.036.042.125.135.125.135s-.094.059-.152.086a3.05 3.05 0 0 1-1.28.286C1.593 16.39 0 15.29 0 12.878v-8.78h3.512v9.365c0 .95.306 1.781.867 2.42zM24 11.122V7.61h-1.253c-.524-2.76-3.425-4.574-6.341-3.484-1.624.607-2.943 2.548-2.943 4.282v7.979h.153a3.5 3.5 0 0 0 2.38-1.077c.632-.658.98-1.522.98-2.432h1.463V9.366h-1.463V8.4c0-.375.198-.726.526-.909.9-.5 1.815.143 1.815.996v3.22c0 1.273.48 2.456 1.354 3.329a4.67 4.67 0 0 0 3.178 1.351H24v-3.51a1.17 1.17 0 0 1-1.17-1.17v-.586zm-14.927 1.17a.585.585 0 0 1-1.17 0V7.61H4.39v5.853a2.928 2.928 0 0 0 4.83 2.224c-.055.433-.294.792-.69 1.04-.373.234-.857.357-1.402.357a3.8 3.8 0 0 1-1.65-.382s-.093-.044-.21-.11v3.119a6.7 6.7 0 0 0 2.468.484c1.312 0 2.51-.41 3.371-1.155.967-.836 1.478-2.056 1.478-3.528V7.61H9.073z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.426 0v24h15.148V0Zm3.357 10.385c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.044.212h7.928c.218 0 .39.173.397.384v.512a.395.395 0 0 1-.391.384H8.827c.006-.013.012-.02.019-.032a1.22 1.22 0 0 0-.02-1.248m-1.121 2.83c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.198h8.012c.218 0 .39.173.39.378v.513a.395.395 0 0 1-.39.384h-8q.012-.001.013-.013c.16-.275.206-.608.122-.922a1.1 1.1 0 0 0-.147-.34M7.706 16.47c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012c.218 0 .39.172.39.384v.512a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.248m-1.037 2.83c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012a.38.38 0 0 1 .39.384v.513a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.249"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 14.727h.941v-2.453c0-.484.318-.835.771-.835.439 0 .71.276.71.722v2.566h.915V12.25c0-.48.31-.812.764-.812.46 0 .718.28.718.77v2.518h.94v-2.748c0-.801-.517-1.334-1.307-1.334-.578 0-1.054.31-1.247.805h-.023c-.147-.514-.552-.805-1.118-.805-.545 0-.968.306-1.142.771H.903v-.695H0v4.006zm7.82-.646c-.408 0-.68-.208-.68-.537 0-.318.26-.522.714-.552l.926-.057v.307c0 .483-.427.839-.96.839m-.284.71c.514 0 1.017-.268 1.248-.703h.018v.639h.908v-2.76c0-.804-.647-1.33-1.64-1.33-1.021 0-1.66.537-1.701 1.285h.873c.06-.332.344-.548.79-.548.464 0 .748.242.748.662v.287l-1.058.06c-.976.061-1.524.488-1.524 1.199 0 .721.564 1.209 1.338 1.209m6.305-2.642c-.065-.843-.719-1.512-1.777-1.512-1.164 0-1.92.805-1.92 2.087 0 1.3.756 2.082 1.928 2.082 1.005 0 1.697-.59 1.772-1.485h-.888c-.087.453-.397.725-.873.725-.597 0-.982-.483-.982-1.322 0-.824.381-1.323.975-1.323.502 0 .8.321.876.748zm2.906-2.967c-1.591 0-2.589 1.085-2.589 2.82s.998 2.816 2.59 2.816c1.586 0 2.584-1.081 2.584-2.816s-.997-2.82-2.585-2.82m0 .832c.971 0 1.591.77 1.591 1.988 0 1.213-.62 1.984-1.59 1.984-.976 0-1.592-.77-1.592-1.984 0-1.217.616-1.988 1.591-1.988m2.982 3.178c.042 1.006.866 1.626 2.12 1.626 1.32 0 2.151-.65 2.151-1.686 0-.813-.469-1.27-1.576-1.523l-.627-.144c-.67-.158-.945-.37-.945-.733 0-.453.415-.756 1.032-.756.623 0 1.05.306 1.096.817h.93c-.023-.96-.817-1.61-2.019-1.61-1.187 0-2.03.653-2.03 1.62 0 .78.477 1.263 1.482 1.494l.707.166c.688.163.967.39.967.782 0 .454-.457.779-1.115.779-.665 0-1.167-.329-1.228-.832z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.622.21c.235-.126 1.12-.432 1.38.06s-.483 1.061-.736 1.196c-.252.136-.664.122-.898-.321A.675.675 0 0 1 9.622.21m2.634 4.822c.236-.126 1.12-.431 1.38.06.26.492-.482 1.061-.735 1.196-.253.136-.664.123-.899-.32a.675.675 0 0 1 .254-.936M12 24a11.4 11.4 0 0 1-8.08-3.345 11.38 11.38 0 0 1-3.35-8.077 11.38 11.38 0 0 1 3.35-8.077 11.4 11.4 0 0 1 3.632-2.446 2.835 2.835 0 0 1 3.719 1.508 2.84 2.84 0 0 1-1.508 3.716c-.684.289-1.3.704-1.83 1.233a5.7 5.7 0 0 0-1.684 4.067 5.7 5.7 0 0 0 1.684 4.065A5.73 5.73 0 0 0 12 18.327a5.73 5.73 0 0 0 4.068-1.683 5.71 5.71 0 0 0 1.685-4.065 2.84 2.84 0 0 1 2.838-2.837 2.84 2.84 0 0 1 2.838 2.836 11.3 11.3 0 0 1-.9 4.447 11.4 11.4 0 0 1-2.447 3.63A11.42 11.42 0 0 1 12 24m.426-21.111c.263-.14 1.346-.533 1.635.016.29.549-.633 1.235-.915 1.386s-.742.136-1.003-.359a.754.754 0 0 1 .283-1.043m-1.004-1.806c.263-.14 1.32-.518 1.61.03.29.55-.608 1.221-.89 1.372s-.741.136-1.003-.358a.754.754 0 0 1 .283-1.044"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.055 4.154c-1.323 0-2.395 1.16-2.395 2.593v10.506c0 1.432 1.072 2.593 2.395 2.593h7.55c1.323 0 2.395-1.161 2.395-2.593V6.747c0-1.432-1.072-2.593-2.395-2.593zm3.604 3.004c1.34 0 2.296.256 2.938.77.628.485 1.027 1.283 1.027 2.225 0 .941-.3 1.754-.884 2.282-.742.685-1.84 1.013-3.124 1.013-.285 0-.542-.015-.741-.057v3.451H14.72V7.357c.67-.114 1.612-.2 2.938-.2zM.614 7.193 0 16.807h2.011l.186-3.652c.057-1.198.114-2.681.156-3.979h.029c.243 1.255.557 2.624.87 3.765L4.28 16.65h1.697l1.17-3.751A61 61 0 0 0 8.23 9.176h.029c0 1.398.042 2.796.085 3.95l.157 3.68h2.11L10.1 7.194H7.246l-1.013 3.195a53 53 0 0 0-.913 3.452h-.057a41 41 0 0 0-.813-3.438l-.94-3.21zm17.145 1.62c-.428 0-.727.028-.884.07v2.839c.185.043.399.057.727.057 1.155 0 1.868-.585 1.868-1.555 0-.884-.613-1.412-1.711-1.412z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.015.624 9.19 9.293H0l7.445 5.384-2.819 8.673L12 17.986l7.422 5.393-2.835-8.713L24 9.292h-9.162L12.015.622z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.49 7.179h-3.51c-.642 0-.73.26-.73.654v5.7c-.044 1.305-.53 1.723-1.46 1.723-.956 0-1.444-.44-1.464-1.828V7.833c0-.393-.092-.654-.734-.654h-3.51v6.78c0 1.5.29 2.134.912 2.778.962 1 2.645 1.423 4.794 1.423 2.15 0 3.834-.422 4.798-1.423.62-.644.911-1.278.911-2.778zM14.26.906C8.425-.23 2.7 3.809 1.47 9.924.246 16.042 3.98 21.92 9.817 23.054c5.84 1.132 11.565-2.905 12.792-9.02C23.834 7.917 20.1 2.038 14.261.904m-2.465 21.384c-5.664 0-10.253-4.582-10.253-10.234 0-5.65 4.59-10.23 10.253-10.23 5.661 0 10.253 4.58 10.253 10.23 0 5.652-4.592 10.234-10.253 10.234M.026 11.136C-.4 17.289 4.367 22.646 10.869 23.2q-.522-.046-1.052-.147C3.981 21.92.244 16.04 1.471 9.924 2.69 3.85 8.346-.172 14.14.884c-.488-.094-.98-.16-1.486-.196C6.041.235.46 4.91.028 11.138M13.388.755a8 8 0 0 0-.774-.037 10 10 0 0 1 1.648.186c5.836 1.134 9.573 7.01 8.346 13.128-1.228 6.114-6.953 10.153-12.79 9.02a10 10 0 0 1-.767-.182c.992.306 2.06.473 3.183.473 1.126 0 1.996-.152 2.827-.34 3.604-.816 6.523-3.342 7.98-6.506.635-1.421.961-2.96.959-4.515-.001-6.26-4.916-10.743-10.613-11.226"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a29.7 29.7 0 0 1-3.611 3.53A27.3 27.3 0 0 1 9.729 12c0 2.948-.47 5.792-1.34 8.47A29.7 29.7 0 0 1 12 24a29.7 29.7 0 0 1 3.611-3.53 27.3 27.3 0 0 1-1.34-8.47c0-2.948.47-5.792 1.34-8.47A29.7 29.7 0 0 1 12 0m6.109 5.381A27.4 27.4 0 0 0 17.3 12c0 2.278.28 4.494.809 6.619a30.7 30.7 0 0 1 4.391-2.424A13.7 13.7 0 0 1 21.843 12c0-1.46.23-2.868.657-4.195a30.7 30.7 0 0 1-4.391-2.424m-12.218 0A31 31 0 0 1 1.5 7.805 13.7 13.7 0 0 1 2.157 12c0 1.46-.23 2.868-.657 4.195a30.7 30.7 0 0 1 4.391 2.424C6.42 16.494 6.7 14.278 6.7 12s-.28-4.494-.809-6.619"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.857 14.458s.155.921-.034 2.952c-.236 2.546.97 6.59.97 6.59s1.645-4.052 1.358-6.67c-.236-2.152.107-2.904.034-2.803-1.264 1.746-2.328-.069-2.328-.069m3.082 2.185c.206 1.591-.023 2.462-.32 4.164-.15.861 3.068-2.589 4.302-4.645.206-.343-1.18 1.337-2.55.137-.952-.832-1.115-1.085-1.854-1.808-.249-.244.277 1.014.423 2.151zm-3.512-2.025c-.739.723-.903.976-1.853 1.808-1.371 1.2-2.757-.48-2.551-.137 1.234 2.057 4.452 5.506 4.302 4.645-.297-1.703-.526-2.574-.32-4.164.147-1.137.673-2.395.423-2.15zm3.166-2.839c1.504.434 2.088 2.523 3.606 2.781.314.053.667.148 1.08.128.77-.037 1.743-.472 3.044-2.318.385-.546-.955 3.514-4.313 3.563-2.46.036-2.747-2.408-4.387-2.482-.592-.027-.629-1.156-.629-1.156s.706-.774 1.598-.517zm-3.186-.012c-1.504.434-2.088 2.523-3.606 2.781-.314.053-.667.148-1.08.128-.77-.037-1.743-.472-3.044-2.318-.385-.546.955 3.514 4.313 3.563 2.46.036 2.747-2.408 4.387-2.482.592-.027.629-1.156.629-1.156s-.706-.774-1.598-.517zm5.626-.02c1.513 1.146 1.062 2.408 1.911 2.048 2.86-1.212 2.36-7.434 2.128-6.682-1.303 4.242-4.143 4.48-6.876 2.528-.534-.38 1.985 1.46 2.837 2.105zm-5.24-2.106C8.06 11.592 5.22 11.355 3.917 7.113c-.231-.752-.731 5.47 2.128 6.682.849.36.398-.902 1.91-2.048.853-.646 3.372-2.486 2.838-2.105zm5.526.584c3.3-.136 3.91-5.545 3.65-4.885-1.165 2.963-5.574 1.848-5.995 3.718-.083.367.747 1.233 2.345 1.167m-6.304-1.167c-.421-1.87-4.831-.755-5.995-3.718-.26-.66.35 4.75 3.65 4.885 1.599.066 2.428-.8 2.345-1.167m3.753-.824s1.794-.964 3.33-1.384c1.435-.393 2.512-1.359 2.631-2.38.09-.76-1.11-2.197-1.11-2.197s-.84 2.334-1.945 3.501c-1.2 1.27-.745 1.1-2.906 2.46m-6.453-2.46c-1.104-1.167-1.945-3.5-1.945-3.5S4.17 3.708 4.26 4.47c.12 1.021 1.196 1.987 2.63 2.38 1.537.421 3.331 1.384 3.331 1.384-2.162-1.36-1.705-1.19-2.906-2.46m6.235 2.312c1.943-1.594 2.976-3.673 4.657-5.949.317-.429-1.419-1.465-2.105-1.533S14.84 3.057 14.775 4.54c-.059 1.354-1.486 3.761-1.224 3.547zM9.214 4.54C9.149 3.056 8.573.535 7.887.603 7.2.671 5.465 1.707 5.782 2.136c1.68 2.276 2.713 4.356 4.657 5.95.261.213-1.165-2.194-1.224-3.548zm4.531-1.602c.137-1.098.631-1.9 1.613-2.574-.868-.29-1.591-.526-1.968-.217s-1.403 1.342-1.266 3.023.007 7.962.305 7.846c.16-4.302 1.522-5.538 1.316-8.077zm-2.186 8.077c.297.116.167-6.165.305-7.846S10.976.455 10.598.146c-.377-.309-1.1-.073-1.968.217.983.674 1.476 1.476 1.613 2.574-.206 2.54 1.156 3.775 1.316 8.077z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.145 11.311H6.78a.67.67 0 0 1 .674.66v1.509H5.009a.41.41 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338H4.945zm13.427-.787v2.959h-2.383a.41.41 0 0 1-.41-.403v-1.11a.67.67 0 0 1 .675-.659h1.357l-.2.422h-.948c-.188 0-.357.147-.357.337v.91c0 .046.049.08.092.08h1.644v-2.536zM10.2 13.483h.527v-1.51a.67.67 0 0 0-.674-.659H8.932l-.2.422h1.111c.188 0 .357.147.357.337zm-2.195-2.96v2.96h.527v-2.96zm-4.4 2.96h.527v-1.51a.67.67 0 0 0-.674-.659H0v2.169h.526v-1.669c0-.047.05-.081.093-.081h1.09c.043 0 .092.034.092.081v1.669h.527v-1.669c0-.047.049-.081.092-.081h.828c.188 0 .357.147.357.337zm17.72-2.172H20a.67.67 0 0 0-.674.66v1.509h.527v-1.41c0-.19.169-.337.357-.337h.914zm-6.753 0a.67.67 0 0 1 .675.66v1.509h-.527v-1.41c0-.19-.17-.337-.357-.337h-1.268v1.75h-.527v-2.169q.998-.002 2.004-.003m-3.19.137.527-.306v2.338h-.526zm.53-.609v-.322h-.526v.625zm9.782.472h1.632a.67.67 0 0 1 .674.66v1.509h-2.445a.41.41 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338h-1.622z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.196 20.014-7.711-5.836c-.48-.31-.733-.268-1.121.155l-.26.303c-.226.275-.353.451-.262.775.007.043 2.397 7.352 2.397 7.352.225.782.782 1.212 1.642 1.226h3.545c.543 0 .825-.112 1.142-.479l.966-1.283c.67-.951.592-1.459-.338-2.22m-10.22-5.8L9.81 6.494c.31-.48.268-.733-.155-1.12l-.303-.261c-.275-.226-.45-.353-.775-.261-.042.007-7.352 2.396-7.352 2.396C.444 7.475.014 8.032 0 8.892v3.545c0 .543.113.825.48 1.142l1.282.965c.952.67 1.46.593 2.22-.338m16.043-4.412-5.836 7.71c-.31.48-.268.734.155 1.122l.303.26c.275.226.45.353.775.261.042-.007 7.352-2.396 7.352-2.396.782-.226 1.212-.783 1.226-1.643v-3.545c0-.543-.113-.825-.48-1.142l-1.282-.965c-.952-.67-1.46-.593-2.22.338M9.79 3.986l7.711 5.836c.48.31.733.268 1.121-.155l.26-.303c.226-.275.353-.451.262-.775-.007-.043-2.397-7.352-2.397-7.352-.225-.782-.782-1.212-1.642-1.226h-3.546c-.542 0-.824.112-1.141.479l-.966 1.283c-.67.951-.592 1.459.338 2.22"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.267 0C6.791-.015-1.82 10.246 1.397 12.964l.79.669a3.9 3.9 0 0 0-.22 1.792c.084.84.518 1.644 1.22 2.266.666.59 1.542.964 2.392.964 1.406 3.24 4.62 5.228 8.386 5.34 4.04.12 7.433-1.776 8.854-5.182.093-.24.488-1.316.488-2.267 0-.956-.54-1.352-.885-1.352-.01-.037-.078-.286-.172-.586s-.19-.51-.19-.51c.375-.563.382-1.065.332-1.35-.053-.353-.2-.653-.496-.964s-.902-.63-1.753-.868l-.446-.124c-.002-.019-.024-1.053-.043-1.497-.014-.32-.042-.822-.197-1.315-.186-.668-.508-1.253-.911-1.627 1.112-1.152 1.806-2.422 1.804-3.511-.003-2.095-2.576-2.729-5.746-1.416l-.672.285L12.7.504C12.304.159 11.817.002 11.267 0m.073.873q.25 0 .465.058c.297.084 1.28 1.224 1.28 1.224s-1.826 1.013-3.52 2.426c-2.28 1.757-4.005 4.311-5.037 7.082-.811.158-1.526.618-1.963 1.253-.261-.218-.748-.64-.834-.804-.698-1.326.761-3.902 1.781-5.357C5.834 3.44 9.37.867 11.34.873m3.286 3.273c.04-.002.06.05.028.074-.143.11-.299.26-.413.414a.04.04 0 0 0 .031.064c.659.004 1.587.235 2.192.574.041.023.012.103-.034.092-.915-.21-2.414-.369-3.97.01-1.39.34-2.45.863-3.224 1.426-.04.028-.086-.023-.055-.06.896-1.035 1.999-1.935 2.987-2.44.034-.018.07.019.052.052-.079.143-.23.447-.278.678-.007.035.032.063.062.042.615-.42 1.684-.868 2.622-.926m3.023 3.205.056.001a.9.9 0 0 1 .456.146c.534.355.61 1.216.638 1.845.015.36.059 1.229.074 1.478.034.571.184.651.487.751.17.057.33.098.563.164.706.198 1.125.4 1.39.658.157.162.23.333.253.497.083.608-.472 1.36-1.942 2.041-1.607.746-3.557.935-4.904.785l-.471-.053c-1.078-.145-1.693 1.247-1.046 2.201.417.615 1.552 1.015 2.688 1.015 2.604 0 4.605-1.111 5.35-2.072a1 1 0 0 0 .06-.085c.036-.055.006-.085-.04-.054-.608.416-3.31 2.069-6.2 1.571 0 0-.351-.057-.672-.182-.255-.1-.788-.344-.853-.891 2.333.72 3.801.039 3.801.039a.07.07 0 0 0 .042-.072.067.067 0 0 0-.074-.06s-1.911.283-3.718-.378c.197-.64.72-.408 1.51-.345a11 11 0 0 0 3.647-.394c.818-.234 1.892-.697 2.727-1.356.281.618.38 1.299.38 1.299s.219-.04.4.073c.173.106.299.326.213.895-.176 1.063-.628 1.926-1.387 2.72a5.7 5.7 0 0 1-1.666 1.244q-.511.27-1.087.46c-2.863.935-5.794-.093-6.739-2.3a3.6 3.6 0 0 1-.189-.522c-.403-1.455-.06-3.2 1.008-4.299.065-.07.132-.153.132-.256 0-.087-.055-.179-.102-.243-.374-.543-1.669-1.466-1.409-3.254.187-1.284 1.31-2.189 2.357-2.135q.133.007.266.015c.453.027.85.085 1.223.1.625.028 1.187-.063 1.853-.618.225-.187.405-.35.71-.401.028-.005.092-.028.215-.028m.022 2.18a.4.4 0 0 0-.06.005c-.335.054-.347.468-.228 1.04.068.32.187.595.32.765q.264-.031.498 0c.089-.205.104-.557.024-.942-.112-.535-.261-.872-.554-.868m-3.66 1.546a1.72 1.72 0 0 0-1.016.326c-.16.117-.311.28-.29.378.008.032.031.056.088.063.131.015.592-.217 1.122-.25.374-.023.684.094.923.2.239.104.386.173.443.113.037-.038.026-.11-.031-.204-.118-.192-.36-.387-.618-.497a1.6 1.6 0 0 0-.621-.129m4.082.81c-.171-.003-.313.186-.317.42-.004.236.131.43.303.432s.314-.185.318-.42c.004-.236-.132-.429-.304-.432m-3.58.172q-.075 0-.155.008c-.311.05-.483.152-.593.247-.094.082-.152.173-.152.237a.075.075 0 0 0 .075.076c.07 0 .228-.063.228-.063a2 2 0 0 1 1.001-.104c.157.018.23.027.265-.026.01-.016.022-.049-.01-.1-.063-.103-.311-.269-.66-.275zm2.26.4c-.127 0-.235.051-.283.148-.075.154.035.363.246.466.21.104.443.063.52-.09.075-.155-.035-.364-.246-.467a.54.54 0 0 0-.237-.058zm-11.635.024q.072 0 .149.003c.73.04 1.806.6 2.052 2.19.217 1.41-.128 2.843-1.449 3.069q-.185.03-.374.026c-1.22-.033-2.539-1.132-2.67-2.435-.145-1.44.591-2.548 1.894-2.811q.177-.037.398-.042m-.07.927a1.14 1.14 0 0 0-.847.364c-.38.418-.439.988-.366 1.19.027.073.07.094.1.098.064.008.16-.039.22-.2l.017-.052a1.6 1.6 0 0 1 .157-.37.69.69 0 0 1 .955-.199c.266.174.369.5.255.81-.058.161-.154.469-.133.721.043.511.357.717.64.738.274.01.466-.143.515-.256.029-.067.005-.107-.011-.125-.043-.053-.113-.037-.18-.021a.6.6 0 0 1-.16.022.35.35 0 0 1-.294-.148c-.078-.12-.073-.3.013-.504q.017-.041.04-.092c.138-.308.368-.825.11-1.317-.195-.37-.513-.602-.894-.65a1 1 0 0 0-.138-.01z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.017-.008H0V15.66c0 1.406.96 2.571 2.246 2.914L24 24.01V5.99c.017-3.308-2.674-6-5.983-6zm3 15.668H18V8.786c0-.669-.223-2.229-2.211-2.229-1.32 0-2.28.909-2.28 2.229v6.874H10.49V8.786c0-.669-.205-2.229-2.194-2.229-1.354 0-2.28.909-2.28 2.229v6.874H3V3.609h5.297c1.594 0 2.897.634 3.737 1.662.892-1.028 2.212-1.662 3.737-1.662C19.063 3.609 21 5.786 21 8.854z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.61 12c0 1.99-1.62 3.61-3.61 3.61S8.39 13.99 8.39 12 10.01 8.39 12 8.39s3.61 1.62 3.61 3.61M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c2.424 0 4.761-.722 6.76-2.087l.034-.024-1.617-1.879-.027.017A9.5 9.5 0 0 1 12 21.54c-5.26 0-9.54-4.28-9.54-9.54S6.74 2.46 12 2.46s9.54 4.28 9.54 9.54a9.6 9.6 0 0 1-.225 2.05c-.301 1.239-1.169 1.618-1.82 1.568-.654-.053-1.42-.52-1.426-1.661V12A6.076 6.076 0 0 0 12 5.93 6.076 6.076 0 0 0 5.93 12 6.076 6.076 0 0 0 12 18.07a6.02 6.02 0 0 0 4.3-1.792 3.9 3.9 0 0 0 3.32 1.805c.874 0 1.74-.292 2.437-.821.719-.547 1.256-1.336 1.553-2.285.047-.154.135-.504.135-.507l.002-.013c.175-.76.253-1.52.253-2.457 0-6.617-5.383-12-12-12"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.837 0c6.602 0 11.984 5.381 11.984 11.994-.017 2.99-3.264 4.84-5.844 3.331l-.06-.035-.055-.033-.022.055c-2.554 4.63-9.162 4.758-11.894.232-2.732-4.527.46-10.313 5.746-10.416a6.87 6.87 0 0 1 7.002 6.866 1.265 1.265 0 0 0 2.52 0c0-5.18-4.197-9.38-9.377-9.387C4.611 2.594.081 10.41 3.683 16.673c3.238 5.632 11.08 6.351 15.289 1.402l1.997 1.686A11.95 11.95 0 0 1 11.837 24C2.6 23.72-2.87 13.543 1.992 5.684A12 12 0 0 1 11.837 0m0 7.745c-3.276-.163-5.5 3.281-4.003 6.2a4.26 4.26 0 0 0 4.014 2.31c3.276-.171 5.137-3.824 3.35-6.575a4.26 4.26 0 0 0-3.36-1.935Zm0 2.53c1.324 0 2.152 1.433 1.49 2.58a1.72 1.72 0 0 1-1.49.86 1.72 1.72 0 1 1 0-3.44"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.371 17.607-2.036 1.208c-.277.181-.15.494 0 .557l7.91 4.432a1.55 1.55 0 0 0 1.51 0l8.014-4.491c.243-.144.203-.436 0-.535l-2.153-1.163c-.182-.12-.587-.08-.73.017l-5.131 2.875a1.55 1.55 0 0 1-1.51 0l-5.176-2.9c-.193-.119-.499-.112-.698 0M11.245.197a1.55 1.55 0 0 1 1.51 0l6.37 3.568c.254.129.277.474 0 .63l-1.45.81a1.8 1.8 0 0 1-1.757-.003L12.755 3.43a1.55 1.55 0 0 0-1.51 0L8.078 5.204a1.8 1.8 0 0 1-1.757.002l-1.5-.836c-.236-.1-.285-.401 0-.574zm10.724 5.371c.467.262.755.746.755 1.27v10.325c0 .51-.32.606-.661.428l-2.36-1.273V9.376l-6.948 3.893a1.55 1.55 0 0 1-1.51 0L4.296 9.376v6.94L2.153 17.59c-.256.163-.877.214-.877-.426V6.838c0-.524.288-1.008.755-1.27.752-.393 1.529 0 1.529 0l8.44 4.74 8.427-4.74s.749-.45 1.542 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.4c1.325 0 2.4 1.076 2.4 2.4a2.4 2.4 0 0 1-.703 1.696 2.4 2.4 0 0 1-.595.436l2.978 12.267L12 21.602l-4.08-2.403 2.978-12.267a2.4 2.4 0 0 1-.593-.436 2.4 2.4 0 0 1-.703-1.695A2.4 2.4 0 0 1 12 2.4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.769 6.947q.096 0 .16.063a.23.23 0 0 1 .071.161v7.778a.21.21 0 0 1-.07.161.22.22 0 0 1-.161.064H22.07a.23.23 0 0 1-.231-.224v-2.715a.2.2 0 0 0-.063-.154c-.042-.042-.091-.056-.162-.056h-2.377a.25.25 0 0 0-.161.056.21.21 0 0 0-.07.154v2.714c0 .147-.078.225-.232.225h-1.683c-.155 0-.232-.078-.232-.225V7.171q0-.222.232-.224h1.683q.231.002.231.224v2.63q0 .223.232.225h2.377q.098 0 .162-.063a.22.22 0 0 0 .063-.162v-2.63a.21.21 0 0 1 .07-.161.22.22 0 0 1 .161-.063zm-8.374 6.207c.063 0 .119.02.154.063a.22.22 0 0 1 .063.161v1.55a.23.23 0 0 1-.063.161.2.2 0 0 1-.154.064h-5.45c-.154 0-.231-.078-.231-.225V7.171q0-.222.231-.224h1.67q.23.002.23.224v5.78a.19.19 0 0 0 .07.154c.043.042.099.056.162.056h3.318zm-7.75-6.102q.242.107.42.288c.12.119.21.26.288.42q.105.244.105.52v6.648a.2.2 0 0 1-.063.154.2.2 0 0 1-.154.064H6.649a.18.18 0 0 1-.148-.064.23.23 0 0 1-.056-.154V8.883H5.162v6.045a.23.23 0 0 1-.056.154.2.2 0 0 1-.147.064H3.514a.2.2 0 0 1-.155-.064.2.2 0 0 1-.063-.154V8.883H2.013v6.045c0 .147-.07.218-.218.218H.217c-.147 0-.217-.07-.217-.218V7.164q-.002-.219.217-.217H7.12c.189 0 .357.035.526.105zm16.341 9.314q.009.01.007.02v.45q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.639a.4.4 0 0 1-.084-.014q-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014h.75c.008 0 .022 0 .022.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.603c-.007 0-.021 0-.021.007q-.009.01-.007.021v.59q-.002.01.007.02c.007.008.014.008.02.008h.358q.01.002.021-.007.009-.01.007-.022v-.315c0-.007 0-.021.007-.021q.01-.009.021-.007h.253q.02.002.028.014m-1.466-.568q.041.021.07.042a.15.15 0 0 1 .042.07c.014.028.014.056.014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.02.007h-.253q-.01.002-.021-.007-.009-.01-.007-.02v-.892q.002-.01-.007-.02t-.021-.008h-.358c-.007 0-.021 0-.021.007s-.007.014-.007.021v.891q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h.821c.014-.007.042 0 .063.014M21.3 17.01q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035zm-.975-.701c-.007.007-.007.007 0 .014l.42.694q.012.01 0 .021c-.006.007-.006.007-.02.007h-.302c-.007 0-.02 0-.028-.007l-.02-.02-.274-.492q-.009-.01-.007 0l-.148.161q-.012.01-.014.029c-.007.014-.007.02-.007.035v.266q-.002.033-.035.035h-.245q-.033-.002-.035-.035v-1.2q.002-.032.035-.034h.252q.033.002.035.035v.54l.47-.547a.1.1 0 0 1 .028-.021q.02-.009.028-.007h.302q.012-.002.014.007.003.012-.007.02zm-1.648-.218q-.009.01-.007.021v.59q-.002.01.007.02c.007.008.014.008.02.008h.583c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.722a.4.4 0 0 1-.085-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.849q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.057-.014.085-.014h.722c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.582c-.007.035-.014.042-.021.042m-.82-.315q.04.002.083.014.041.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.021-.008h-.358c-.007 0-.02 0-.02.007q-.01.01-.008.021v.323q-.002.033-.035.035h-.252q-.033-.002-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.106.603v-.316h-.428v.316zm-1.066-.603c.007 0 .021 0 .021.007q.009.01.007.02v1.2c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.422q.002-.01-.007-.02t-.02-.008h-.358c-.007 0-.021 0-.021.007q-.009.01-.007.021v.421q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.407c0 .02.014.035.035.035h.357q.01.002.021-.007.009-.01.007-.021v-.407c0-.007 0-.021.007-.021q.01-.009.022-.007h.245zm-1.943.014q.009.01.007.02v.232q.002.01-.007.021-.01.009-.02.007h-.604q-.009-.002-.007.007v.197q-.002.009.007.007h.52q.01-.002.02.007.009.01.007.02v.183c0 .007 0 .021-.007.021q-.01.009-.02.007h-.52q-.009-.002-.007.007v.197q-.002.009.007.007h.604c.006 0 .02 0 .02.007q.009.01.007.02v.225c0 .007 0 .021-.007.021q-.01.009-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021q.01-.009.021-.007h.898a.1.1 0 0 0 .028.042m-1.255 0q.009.01.007.02v1.025a.4.4 0 0 1-.014.084q-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.085.014h-.638a.4.4 0 0 1-.084-.014q-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-1.024q.002-.033.035-.035h.252q.033.002.035.035v.89q-.002.012.007.022t.022.007h.357q.01.002.021-.007.009-.01.007-.021v-.891c0-.007 0-.021.007-.021q.01-.009.021-.007h.253c.02-.007.028 0 .035.007m-1.333.575q.009.01.007.02v.45a.4.4 0 0 1-.014.084q-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.638a.4.4 0 0 1-.084-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.043-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.029-.014.057-.014.085-.014h.75c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.02.007h-.604c-.007 0-.021 0-.021.007q-.009.01-.007.021v.59q-.002.01.007.02t.021.008h.358q.01.002.02-.007c.008-.007.008-.014.008-.022v-.315c0-.007 0-.021.007-.021q.01-.009.02-.007h.253c.007 0 .021.007.028.014m-1.55-.59c.028 0 .056.008.084.015q.042.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.26c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.02-.008h-.366c-.007 0-.02 0-.02.007q-.01.01-.008.021v.323q-.002.033-.035.035h-.252q-.033-.002-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.112.604v-.316h-.428v.316zm-1.038-.59q.009.012.007.022v.231q.002.01-.007.021-.01.009-.02.007H8.83q-.009-.002-.007.007v.197q-.002.009.007.007h.519q.01-.002.021.007.009.01.007.02v.183c0 .007 0 .021-.007.021q-.01.009-.021.007h-.52q-.008-.002-.006.007v.197q-.002.009.007.007h.604c.006 0 .02 0 .02.007q.009.01.007.02v.225c0 .007 0 .021-.007.021q-.01.009-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021q.01-.009.021-.007h.898a.1.1 0 0 0 .028.042zm-1.171.948q.01-.002.02.007t.008.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.779a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h.253c.02 0 .035.014.035.035v.89q-.002.011.007.022.01.009.021.007h.463zm-1.704.28q.01.01 0 .021c-.007.007-.007.007-.021.007H6.27c-.007 0-.021 0-.028-.007l-.021-.02-.19-.345q-.001-.009-.013-.007H5.8q-.009-.002-.007.007v.337q-.002.033-.035.035h-.252c-.021 0-.036-.014-.036-.035v-1.2c0-.02.015-.034.036-.034h.82q.042.002.084.014.041.021.07.042a.15.15 0 0 1 .043.07.2.2 0 0 1 .014.084v.477a.2.2 0 0 1-.043.126.23.23 0 0 1-.105.077h-.007q-.009.002-.007.014v.007zm-.358-.947h-.435v.309h.435zm-1.241-.294q.042.002.084.014.04.021.07.042a.15.15 0 0 1 .042.07.4.4 0 0 1 .014.084v.842q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.64q-.042-.002-.084-.014-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.113.308H4.44v.653h.427zm-1.03-.294q.007.01.006.02v1.025q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.547a.4.4 0 0 1-.084-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.386q.002-.033.035-.035h.252q.033.002.035.035v.26q-.002.01.007.02t.021.008h.26c.007 0 .02 0 .02-.007.008-.007.008-.014.008-.021v-.891c0-.007 0-.021.007-.021q.01-.009.02-.007h.253c.021-.014.035-.007.042 0zm-1.354-.014q.042.002.084.014.04.021.07.042a.15.15 0 0 1 .042.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.02.007h-.253c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.021-.008h-.358c-.007 0-.021 0-.021.007q-.009.01-.007.021v.323q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.057-.014.085-.014zm-.112.603v-.316h-.428v.316zm-1.158-.582q.041.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253q-.01.002-.021-.007-.009-.01-.007-.02v-.927H.828v.926c0 .007 0 .021-.007.021q-.01.009-.021.007H.568c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.927H.337v.926q-.002.033-.035.035H.049a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h1.094c.021-.007.05 0 .07.014"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.38 3.498c-.27 0-.511.19-.566.465L9.85 18.986a.58.58 0 0 0 .453.678l4.095.826a.58.58 0 0 0 .682-.455l2.963-15.021a.58.58 0 0 0-.453-.678l-4.096-.826a.6.6 0 0 0-.113-.012zm-5.876.098a.58.58 0 0 0-.516.318L.062 17.697a.575.575 0 0 0 .256.774l3.733 1.877a.58.58 0 0 0 .775-.258l6.926-13.781a.577.577 0 0 0-.256-.776L7.762 3.658a.6.6 0 0 0-.258-.062m11.74.115a.576.576 0 0 0-.576.576v15.426c0 .318.258.578.576.578h4.178a.58.58 0 0 0 .578-.578V4.287a.58.58 0 0 0-.578-.576Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.055 7.328a12 12 0 0 0-2.569-3.813A12 12 0 0 0 16.672.944 11.9 11.9 0 0 0 12 0a11.986 11.986 0 0 0-8.485 3.515A12 12 0 0 0 .943 7.328 11.9 11.9 0 0 0 0 12a11.971 11.971 0 0 0 3.514 8.485 12 12 0 0 0 3.813 2.57C8.81 23.686 10.38 24 12 24c1.619 0 3.189-.314 4.671-.944a12 12 0 0 0 3.814-2.564 12 12 0 0 0 2.57-3.811c.63-1.47.944-3.045.944-4.665 0-1.619-.314-3.18-.944-4.664zM12 22.335C6.293 22.335 1.665 17.707 1.665 12S6.293 1.665 12 1.665 22.335 6.293 22.335 12 17.707 22.335 12 22.335m3.242-18.214H8.757q-1.383 0-2.333.975a3.2 3.2 0 0 0-.953 2.334v10.182c0 .449.135.81.4 1.095.267.269.615.42 1.051.42q.668 0 1.079-.405.409-.406.409-1.08V7.08h2.141v10.529q0 .668.391 1.08.388.41 1.059.411.669 0 1.059-.411.39-.412.39-1.08V7.08h2.142v10.529q0 .668.408 1.08.412.41 1.08.411.651 0 1.05-.423.402-.421.401-1.069V7.426q0-1.364-.953-2.336-.949-.973-2.334-.975v.006z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.195 8.581c-.069 0-.285.026-.484.113-.432.181-.597.311-.597.58v5.023c0 .277.26.355.735.355.467 0 .649-.087.649-.355V8.858c0-.173-.113-.277-.303-.277m3.502 4.903c-.345.087-.45.113-.57.113-.147 0-.2-.044-.2-.2v-2.161h.788c.207 0 .285-.078.285-.285 0-.173-.078-.26-.285-.26h-.787v-.839c0-.259-.087-.363-.268-.363-.173 0-.415.156-.934.597-.528.45-.83.744-.83.951 0 .121.086.199.224.199h.424v2.335c0 .683.337 1.08.925 1.08.39 0 .675-.146 1.012-.406.311-.242.51-.432.51-.596 0-.139-.103-.217-.294-.165m-15.21-3.078c-.13 0-.285.026-.484.112-.433.19-.597.312-.597.58v3.2c0 .276.26.354.735.354.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277m1.816 0c-.355 0-.675.121-.986.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .251-.078.416-.078s.25.173.25.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.934-1.115m2.43 0c-.337 0-.692.121-1.003.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .25-.078.432-.078s.268.173.268.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.951-1.115m5.335 0a1.3 1.3 0 0 0-.484.112c-.26.113-.398.2-.467.312-.26-.303-.597-.398-.977-.398-1.116 0-1.911.942-1.911 2.283 0 1.124.605 1.954 1.461 1.954.26 0 .493-.104.77-.363.216-.2.32-.329.32-.45a.14.14 0 0 0-.147-.147c-.121 0-.251.104-.416.104-.354 0-.596-.545-.596-1.35 0-.803.32-1.348.804-1.348.32 0 .562.242.562.657v2.525c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277M3.499 13.563l-.21.21.619.618c.304.304.79.598 1.244.144.339-.34.26-.695.073-.98-.06.004-1.726.008-1.726.008m-.963-2.325.21-.21-.608-.607c-.304-.303-.765-.621-1.243-.143-.351.35-.273.692-.087.97Zm2.86.416a384 384 0 0 1-1.511 1.524h1.154c.43 0 .981-.101.981-.777 0-.496-.296-.683-.624-.747m-3.244-.031H.981c-.43 0-.981.135-.981.778 0 .479.307.676.641.745.04-.046 1.511-1.523 1.511-1.523m1.484 3.04-.618-.618-.608.607a3 3 0 0 1-.137.128c.07.333.266.639.745.639s.676-.307.745-.641q-.064-.054-.127-.115M2.41 10.15l.608.607.618-.618a2 2 0 0 1 .128-.118c-.065-.327-.251-.623-.747-.623s-.682.297-.746.625q.068.058.14.127zm2.742.117c-.455-.454-.94-.16-1.244.144l-2.87 2.87c-.303.303-.621.765-.143 1.243s.94.16 1.243-.143l2.87-2.87c.304-.304.598-.79.144-1.244"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.87 22.903c.157 0 .28-.124.28-.283 0-.124-.088-.283-.245-.283h-.088l-.193-.035c-3.238-.636-5.635-3.55-5.635-6.96 0-1.448.437-2.825 1.19-3.938.123-.159.315-.283.525-.088l5.111 5.228a.33.33 0 0 0 .193.088c.087 0 .157-.035.192-.088l5.146-5.193c.193-.194.368-.159.473.035a7.1 7.1 0 0 1 1.19 3.939 7.04 7.04 0 0 1-1.803 4.716l-.122.124c0 .035-.035.088-.035.123 0 .16.122.283.28.283h.035c.035 0 .087-.035.122-.035 6.826-2.897 6.512-9.75 6.512-9.75a12.21 12.21 0 0 0-4.674-9.626c-.122-.089-.315-.089-.403.035l-6.703 6.853a.305.305 0 0 1-.438 0L5.023 1.195a.297.297 0 0 0-.402-.035A12.24 12.24 0 0 0 0 10.786c0 6.288 4.709 11.48 10.783 12.117Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.045 15.831c1.303.349 2.496.773 3.91 1.042a30.7 30.7 0 0 0 .405 6.07c-1.698-1.908-4.137-5.187-4.315-7.112m15.843 0c-1.258.349-2.41.773-3.777 1.042a31.8 31.8 0 0 1-.39 6.07c1.644-1.908 4.001-5.187 4.167-7.112M6.783 1.057c2.317 4.17 9.686 3.63 11.46 0a6.2 6.2 0 0 1 2.337 1.386c-.087 3.608-2.338 4.898-2.338 4.898l.078.837c2.566-.742 3.522-.663 3.336-5.021 1.29 1.058 2.456 3.067 2.335 4.358-.125 1.342-2.037 5.377-1.8 5.306a88 88 0 0 1-8.444 3.204 2.93 2.93 0 0 0-1.944-1.672 12.8 12.8 0 0 0-1.784 1.78c-2.347-.853-4.424-1.8-6.594-2.722l-1.706-.628-.776-1.99C-.099 8.214-.573 6.778 1.1 4.515c.364-.492.997-1.56 1.555-1.795-.109 3.695-1.224 5.454 2.944 5.457l.078-.837s-1.81-.227-2.25-4.898zM8.856 12.26c-.208.279-.337.349-.543.628.052.14-.207.175-.156.314a2.87 2.87 0 0 0 .853 1.151 2.66 2.66 0 0 0 1.705-1.151c-.206-.44-1.443-1.163-1.86-.941Zm5.663 0c-.414.279-.905.663-1.32.942.13.21.802.732.932.942.39.235.296.427.776.21a1.4 1.4 0 0 0 .853-1.256c-.207-.245-.414-.593-.62-.838Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.102 9.629c.245-1.695 2.139-6.979 7.454-7.98 3.137-.592 7.005 1.034 9.72 3.788-1.354.929-2.259 1.732-2.944 2.708.511 1.892 2.018 2.663 3.078 2.984-1.175-.711-1.917-1.381-2.376-2.812 2.513-2.988 5.205-3.954 5.432-3.978 2.102 1.677 3.586 4.735 3.532 7.955-.062 3.728-2.09 7.569-4.415 9.121-.318.151-1.053-.25-1.153-.687.476-1.105 1.601-3.795 1.74-5.806.131-1.928-1.146-3.061-2.219-1.667-1.489 2.494-2.139 5.592-2.789 8.934-1.095.313-2.952.392-3.756-.036-.101-2.068.381-5.601-.991-6.84-.588-.533-1.169-.285-1.562.205-.992 1.227-.972 4.414-.78 6.479-1.109.686-2.99.543-4.179.117-.477-3.245-1.597-7.202-2.512-10.23a17.4 17.4 0 0 0-.34 3.908c-.611-.498-1.308-3.116-.94-6.163"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.979 14.943h2.05L15.46 18.7h-2.054l-.263-.409h-2.278l-.264.41H8.548zm1.025 1.568-.458.711h.916l-.458-.712zM0 17.372C0 10.704 5.372 5.3 12 5.3s12 5.405 12 12.073q0 .674-.072 1.328H22.58q.081-.653.082-1.328c0-5.924-4.774-10.726-10.662-10.726S1.339 11.449 1.339 17.373q0 .675.08 1.328H.073A12.254 12.274 0 0 1 0 17.372m2.237-2.43h1.83l1.22 1.228 1.22-1.227h1.831V18.7H6.363v-1.38l-1.075 1.082-1.076-1.082v1.38H2.237zm13.42 0h1.927l2.17 1.62v-1.62h1.975V18.7h-1.942l-2.156-1.605V18.7h-1.975Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.095.1C5.718.094.544 5.26.538 11.637v.022c0 2.069.547 4.005 1.496 5.683l2.869-2.868a7.7 7.7 0 0 1-.54-2.815c0-4.262 3.47-7.73 7.732-7.73s7.732 3.468 7.732 7.73-3.47 7.732-7.732 7.732a7.7 7.7 0 0 1-2.6-.46L6.596 21.83a11.5 11.5 0 0 0 5.499 1.388c2.316 0 4.467-.686 6.275-1.856l2.393 2.392L24 20.512l-2.349-2.349c1.262-1.852 2-4.09 2-6.505C23.66 5.269 18.452.078 12.096.101zm0 9.34c-1.225 0-2.214.991-2.214 2.217s.989 2.215 2.214 2.215a2.216 2.216 0 1 0 0-4.432m-4.24 3.368C7.57 13.09.273 20.39 0 20.662L3.24 23.9l7.855-7.855-3.24-3.238z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 0 1.609 6v12L12 24l10.39-6V6Zm0 3.114 7.695 4.443v8.886l-7.695 4.443-7.697-4.443V7.557Zm0 .556L4.786 7.836v8.33l7.215 4.164 7.213-4.164v-8.33Zm0 .55 6.736 3.89v7.78l-6.736 3.89-6.738-3.89V8.11Zm0 3.356c-.067 0-.134.004-.174.01a1.13 1.13 0 0 0-.732.463 1.2 1.2 0 0 0-.182.445l-.01.065-.027-.006a1.2 1.2 0 0 0-.426-.008 1.2 1.2 0 0 0-.433.174c-.09.058-.271.244-.342.351-.262.394-.242.892.053 1.262.044.055.09.086.851.604l.803.546.045-.044a.8.8 0 0 1 .468-.233l.032-.004v-1.148l.02-.018c.03-.029.083-.028.109 0l.017.016v1.15l.031.004a.8.8 0 0 1 .47.233l.044.046.8-.545c.441-.299.813-.557.825-.572.183-.214.277-.474.266-.742-.012-.31-.137-.557-.405-.807a1.1 1.1 0 0 0-.98-.265l-.027.006-.01-.067a1.2 1.2 0 0 0-.184-.447 1.4 1.4 0 0 0-.275-.275 1.2 1.2 0 0 0-.455-.184 1 1 0 0 0-.172-.01m3.441 2.518a1.7 1.7 0 0 0-.88.254c-.022.016-.44.302-.934.638-.494.337-.904.616-.91.623-.01.01-.008.015.006.043.028.054.053.14.064.207l.01.063h.83c.584 0 .836.005.855.012.015.005.032.014.037.023a.11.11 0 0 1-.007.096l-.018.02-.848.001-.85.004-.009.063a.8.8 0 0 1-.064.205c-.014.028-.015.036-.006.045.006.006.416.286.91.623.493.335.912.623.933.638.14.1.442.21.666.24.047.008.145.012.215.012a1.69 1.69 0 0 0 1.526-.949l.046-.098.03.006c.089.014.257.015.343 0 .418-.068.757-.376.862-.783l.021-.078-.015-.062a1.06 1.06 0 0 0-.268-.485 1.05 1.05 0 0 0-.566-.31 1.4 1.4 0 0 0-.352-.01l-.055.008-.048-.098a1.67 1.67 0 0 0-.778-.775 1.75 1.75 0 0 0-.746-.176m-6.88.006a1.6 1.6 0 0 0-.737.162c-.35.167-.625.438-.793.783l-.046.098-.055-.008a2 2 0 0 0-.172-.006.9.9 0 0 0-.361.068 1.07 1.07 0 0 0-.653.742l-.015.063.02.078c.08.306.293.561.583.697a.97.97 0 0 0 .477.096l.146-.01.03-.006.046.098a1.71 1.71 0 0 0 1.362.945 1.73 1.73 0 0 0 .918-.176 27 27 0 0 0 1.029-.687l.95-.648a.2.2 0 0 0-.019-.051.7.7 0 0 1-.06-.197l-.01-.065h-.836c-.618 0-.84-.002-.853-.01a.073.073 0 0 1-.02-.119l.024-.021.841-.002.844-.002.01-.06a.7.7 0 0 1 .06-.2.2.2 0 0 0 .018-.053c0-.002-.428-.292-.95-.646-.614-.419-.973-.66-1.028-.688a1.6 1.6 0 0 0-.75-.175m3.404 1.257a.6.6 0 0 0-.426.196.6.6 0 0 0-.164.28.7.7 0 0 0 0 .333c.065.23.258.415.486.465a.65.65 0 0 0 .777-.555.64.64 0 0 0-.355-.652.6.6 0 0 0-.318-.067m-.584 1.159-.799.546c-.44.3-.808.555-.82.567a1 1 0 0 0-.072.086 1.065 1.065 0 0 0 .129 1.39c.189.2.392.31.654.354.08.014.255.013.345-.004a1 1 0 0 1 .082-.012c.002.002.007.03.012.06.025.159.103.342.2.473.179.243.467.413.761.446.081.009.225.003.307-.01a1.15 1.15 0 0 0 .595-.307c.159-.158.276-.385.31-.601a.4.4 0 0 1 .013-.06 1.4 1.4 0 0 0 .428.016c.257-.045.463-.156.646-.347.148-.155.227-.278.285-.447a1.06 1.06 0 0 0-.225-1.041 36 36 0 0 0-.82-.568l-.795-.541-.045.046a.8.8 0 0 1-.469.23l-.03.007v1.105l-.022.022a.075.075 0 0 1-.106-.004l-.02-.024V12.8l-.03-.006a.8.8 0 0 1-.47-.23z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 0C2.02 0 0 2.02 0 4.5v15C0 21.98 2.02 24 4.5 24h15c2.48 0 4.5-2.02 4.5-4.5v-15C24 2.02 21.98 0 19.5 0Zm0 1.5h15c1.675 0 3 1.325 3 3v15c0 1.675-1.325 3-3 3h-15c-1.675 0-3-1.325-3-3v-15c0-1.675 1.325-3 3-3m12.791.595q-.712-.001-1.187.401-.45.38-.758 1-.334.664-.501 1.376-.166.713-.355 1.403a232 232 0 0 1-1.283 4.68 36.5 36.5 0 0 1-1.64 4.56 35.6 35.6 0 0 1-1.093-5.059 37 37 0 0 1-.355-5.156q0-.308.047-.592.047-.309.047-.618a1.39 1.39 0 0 0-.689-1.236 2.1 2.1 0 0 0-.688-.308q-.38-.12-.738-.12-.499 0-.926.214a2.9 2.9 0 0 0-.759.547 3.6 3.6 0 0 0-.548.783 3.6 3.6 0 0 0-.307.879 35 35 0 0 0-.405 2.115q-.142 1.044-.45 2.112a51 51 0 0 1-.786 2.353q-.428 1.26-.832 2.543-.405 1.28-.689 2.563-.284 1.26-.284 2.376 0 .524.07 1.046.096.499.335.902.237.405.641.642.404.26 1.02.26.665.002 1.022-.354.38-.333.548-.952.214-.833.214-1.664.023-.854.14-1.685.143-1.14.499-2.209a30 30 0 0 1 .855-2.138q.358 1.354.762 2.66.428 1.308.735 2.663.119.498.214 1.02.095.499.26.999.215.663.666 1.21t1.213.547q.474 0 .972-.143.524-.12.903-.451.166-.143.31-.428c.144-.285.182-.397.261-.618a6.4 6.4 0 0 0 .38-1.187q.143-.546.262-1.116.118-.57.284-1.116.19-.666.427-1.307.263-.665.525-1.306.333-.88.618-1.782.284-.904.545-1.807.285 1.14.38 2.279.095 1.141.118 2.306l.097 2.302q.07 1.14.307 2.283a2.7 2.7 0 0 0 .522 1.163q.404.474 1.166.474.617 0 .996-.284.38-.285.595-.712.212-.429.284-.952.072-.521.073-1.02v-.002q0-1.518-.237-2.989a40 40 0 0 0-.548-2.994 39 39 0 0 1-.642-3.516 30 30 0 0 1-.214-3.565q0-.38.027-.735.047-.38.047-.76 0-.521-.238-.855a1.46 1.46 0 0 0-.57-.547 2.2 2.2 0 0 0-.81-.285 4 4 0 0 0-.855-.093"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.182 0A2.177 2.177 0 0 0 0 2.182v19.636C0 23.027.973 24 2.182 24h4.363V6.545h8.728V0Zm15.273 0v24h4.363A2.177 2.177 0 0 0 24 21.818V2.182A2.177 2.177 0 0 0 21.818 0ZM8.727 8.727V24h6.546V8.727Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12 12-5.377 12-12S18.623 0 12 0m-1.613 6.15a.9.9 0 0 1 .59.176q.647.477 1.177 1.082h2.588a.91.91 0 0 1 .912.906.91.91 0 0 1-.912.907h-1.43c.4.908.604 1.889.602 2.88a7.1 7.1 0 0 1-.601 2.883h1.427a.91.91 0 0 1 .914.907.91.91 0 0 1-.914.906h-2.588a7.4 7.4 0 0 1-1.175 1.082.92.92 0 0 1-1.28-.19.904.904 0 0 1 .191-1.268 5.32 5.32 0 0 0 2.2-4.32c0-1.715-.801-3.29-2.2-4.32a.906.906 0 0 1-.191-1.268H9.7a.92.92 0 0 1 .688-.363zm-.778 4.295a1.36 1.36 0 0 1 1.354 1.354v.033a1.36 1.36 0 0 1-1.354 1.32 1.36 1.36 0 0 1-1.353-1.32v-.033a1.36 1.36 0 0 1 1.353-1.354"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m5.696 14.943c-4.103 4.103-11.433 2.794-11.433 2.794S4.94 10.421 9.057 6.304c2.281-2.281 6.061-2.187 8.45.189s2.471 6.168.189 8.45m-4.319-7.91-1.174 2.416-2.416 1.174 2.416 1.174 1.174 2.416 1.174-2.416 2.416-1.174-2.416-1.174z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.362 11.812c-.564-.305-.46-1.099.25-1.302.602-.17 5.495-1.81 6.975-2.308a.9.9 0 0 0 .565-.558L10.528.671C10.75.02 11.555.017 11.884.65c.117.224 4.546 8.25 4.7 8.591s.055.718-.295.935-.918.544-1.117.667c-.36.223-.704.068-.869-.277-.163-.346-1.427-2.577-1.942-3.525-.258-.472-1.033-.654-1.295.111-.187.553-.627 1.842-.857 2.514a.93.93 0 0 1-.567.564l-2.582.855c-.509.168-.756.948-.069 1.277.144.07 3.24 1.73 3.56 1.882s.497.59.31.9c-.255.425-.582.962-.7 1.138a.73.73 0 0 1-.948.224c-.34-.179-8.651-4.584-8.853-4.692zm22.528 11.91c-.334-.18-10.918-5.78-11.355-6.003-.436-.222-.542-.606-.308-1.021.118-.211.376-.633.586-.972.288-.467.709-.468.946-.33.238.138 3.598 1.906 3.816 2.025.512.284 1.27-.363.93-.93-.163-.27-1.579-2.853-2.03-3.705-.203-.387-.147-.736.31-.968a18 18 0 0 0 .98-.568c.357-.216.834-.052 1.028.27.193.325 5.926 10.887 6.109 11.215.362.651-.343 1.348-1.011.988"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 3.19c2.937 0 5.371 2.265 5.371 5.035 0 4.111-4.364 7.635-5.035 8.138-.084 0-.084.084-.084.084-.084.084-.168.084-.168.084s-.168 0-.168-.084l-.084-.084c-.84-.503-5.203-3.943-5.203-8.138 0-2.77 2.434-5.036 5.371-5.036zm0 2.601c-1.427 0-2.602 1.173-2.602 2.684 0 1.51 1.175 2.685 2.602 2.685s2.602-1.175 2.602-2.685S13.427 5.79 12 5.79zM8.979 17.287h6.042a.66.66 0 0 1 .67.672v2.014a.66.66 0 0 1-.67.67H8.98a.66.66 0 0 1-.67-.67v-2.014a.66.66 0 0 1 .67-.672zm.755 1.258v.924h4.448v-.924z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.794 1.655 4.188 4.188 4.204-4.204A6.13 6.13 0 0 0 12 0a6.14 6.14 0 0 0-4.204 1.655ZM3.25 6.197 7.455 1.99l4.19 4.19-4.206 4.207Zm-.315 8.697 4.168-4.168-2.889-2.89-1.298-1.299a6.19 6.19 0 0 0 .02 8.357zm14.728-5.64 3.073-3.073-4.208-4.207-4.207 4.207 4.207 4.206Zm-6.015 6.013L7.44 11.061l-4.172 4.172 4.206 4.208zm5.216-4.543 4.185 4.185a6.18 6.18 0 0 0 .02-8.387zm-2.448 6.639 2.093 2.092 4.207-4.206-4.188-4.188-4.207 4.206zM11.968 24a3007 3007 0 0 0 4.2-4.208l-4.187-4.188-4.17 4.174q2.08 2.11 4.157 4.222"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.157 4.412c-.676.284-.79.31-1.673.372-.65.045-.757.057-1.212.209-.75.246-1.395.75-2.02 1.59-.296.398-1.249 1.913-1.249 1.988 0 .057-.65.998-.915 1.32-.574.713-1.08 1.079-2.14 1.59-.77.36-1.224.524-4.102 1.477-1.073.353-2.133.738-2.367.864-.852.449-1.515 1.036-2.203 1.938-1.003 1.32-.972 1.313-3.042.947a12 12 0 0 0-.675-.063c-.644-.05-1.023.044-1.332.334L0 17.193l.177.088c.094.05.353.234.561.398.215.17.461.347.55.391.088.044.17.088.183.101s-.089.17-.228.353c-.435.581-.593.871-.574 1.048.019.164.032.17.43.17.517-.006.826-.056 1.261-.208.65-.233 2.058-.94 2.784-1.4.776-.5 1.717-.998 1.956-1.042.082-.02.354-.07.594-.114.58-.107 1.464-.095 2.587.05.108.013.373.045.6.064.227.025.43.057.454.076.026.012.474.037.998.056.934.026 1.104.007 1.3-.189.126-.133.385-.631.498-.985.209-.643.417-.921.366-.492-.113.966-.322 1.692-.713 2.411-.259.499-.663 1.092-.934 1.395-.322.347-.315.36.088.315.619-.063 1.471-.397 2.096-.82.827-.562 1.647-1.691 2.19-3.03.107-.27.22-.22.183.083-.013.094-.038.315-.057.498l-.031.328.353-.202c.833-.48 1.414-1.262 2.127-2.884.227-.518.877-2.922 1.073-3.976a10 10 0 0 1 .271-1.042c.127-.429.196-.555.48-.858.183-.19.625-.555.978-.808.72-.505.953-.75 1.187-1.205.208-.417.284-1.13.132-1.357-.132-.202-.284-.196-.763.006"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.475 4.031c-.369.013-.262.179-1.06.376-.805.198-1.78.077-2.646.441-2.267.95-2.634 4.624-5.335 6.045-1.77 1-3.576 1.229-5.19 1.735-1.295.52-2.101.864-3.051 1.683-.737.635-.917 1.252-1.687 2.05-.782 1.062-3.744.118-4.506 1.45.402.26.634.332 1.34.24-.146.276-1.074.64-.906 1.048 0 0 2.245.409 4.137-.733.882-.359 1.71-1.119 3.08-1.301 1.777-.236 3.778.373 5.925.544-.444.877-.902 1.395-1.391 2.119-.152.163.13.307.65.209.937-.232 1.615-.483 2.289-.949.878-.606 1.256-1.16 1.997-2.039.644 1.032 2.914 1.26 3.38.367-.867-.367-1.052-2.277-.755-3.101.35-.786.603-1.896.886-2.928.256-.93.413-2.349.718-3.075.365-.903 1.073-1.185 1.605-1.664S24.015 5.67 24 4.574c-.006-.356-.19-.553-.525-.543m-.573.445c.09.307.231.448.841.504-.089.774-.606 1.196-1.183 1.602-.509.356-1.066.7-1.424 1.258-.367.57-.951 2.23-1.52 4.159-.492 1.668-1.065 2.807-2.276 3.807-.15-.36.17-.568.03-.897-.175.496-.558 1.218-.789 1.66-.76 1.454-2.019 2.63-3.901 2.962.893-1.21 1.787-2.543 1.896-4.627-.4.087-.432 1.164-1.078 1.56-.415.045-.995-.05-1.573-.12-1.726-.203-3.465-.282-5.087.24-1.105.353-2.356 1.447-3.292 1.853-1.1.478-1.477.515-2.869.473-.174-.234 1.002-.536.936-1.047-.536-.058-.848.071-1.314-.14a.7.7 0 0 1 .223-.24c.854-.59 3.278-.14 3.927-.777.401-.392.663-.804.935-1.204.265-.388.538-.765.953-1.105.154-.125.394-.341.571-.463.709-.484 1.51-.831 2.373-1.133 1.174-.413 2.361-.552 3.613-1.03.774-.296 1.508-.576 2.193-1.088.162-.121.407-.326.55-.465 2.22-2.192 2.361-5.177 5.415-5.49.37-.038.672-.026.948-.034.317-.01.597-.047.902-.218m-.15.197c-.017 0-.049.015-.093.056-.265.272-.79.884-.98 1.454-.05.155.048.11.082.01.189-.584.788-1.226.971-1.42.045-.052.051-.099.02-.1m.08.133c-.017.002-.046.022-.084.069-.224.306-.657.77-.766 1.36-.027.16.064.103.082-.001.106-.605.608-1.11.763-1.327.037-.058.036-.105.006-.101zm.098.12c-.017.004-.044.026-.077.076-.199.325-.46.699-.519 1.295-.013.162.073.097.083-.008.052-.612.379-1.032.515-1.262.032-.06.028-.107-.002-.1zm.107.091q-.027.006-.071.082c-.169.34-.328.6-.334 1.2.002.163.08.09.081-.015 0-.614.22-.925.335-1.166.026-.063.018-.11-.011-.1zm-2.064.294q-.788.021-.938.68c.432.375 1.338.074 1.177-.672a2 2 0 0 0-.24-.008Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.27 19.385H1.73A1.73 1.73 0 0 1 0 17.655V6.345a1.73 1.73 0 0 1 1.73-1.73h20.54A1.73 1.73 0 0 1 24 6.345v11.308a1.73 1.73 0 0 1-1.73 1.731zM5.769 15.923v-4.5l2.308 2.885 2.307-2.885v4.5h2.308V8.078h-2.308l-2.307 2.885-2.308-2.885H3.46v7.847zM21.232 12h-2.309V8.077h-2.307V12h-2.308l3.461 4.039z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.4 5.46h-3.39l-2.3 3.77L7.4 5.46H4l-4 6.55 4 6.53h3.39l-4-6.54L5.7 8.23 8.01 12h3.39l2.31-3.78L16.03 12l-4.01 6.54h3.39l4-6.54zm4.6 0h-3.39l4 6.54-4.01 6.54h3.39L24 12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.802 11.083-1.178 2.41c-.8 1.425-1.931 3.167-3.646 3.603-.668.232-1.255.023-1.9-.023L0 20.476a1.6 1.6 0 0 0 .59.386c3.647 1.39 5.122-.1 8.722-8.238l3.403 7.249h4.53l-2.14-4.893 1.213-2.53 3.345 7.311 4.337.027-7.59-16.677-3.475 1.738 2.738 6.222-1.201 2.445L9.45 2.678l-3.7 1.877Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.339 8.13c1.373 0-1.162 7.076-.845 10.138s3.696 2.218 3.485.423c-.423-3.063 1.69-12.672 3.696-12.672 1.478 0-1.69 6.547-1.056 10.665.422 2.64 4.012 1.901 3.59.106-1.162-5.386 2.64-10.56 2.112-14.361C21.11.845 20.159 0 19.209 0c-3.379 0-6.125 6.97-6.125 6.97s.423-3.908-2.428-4.119C6.643 2.64 2.525 12.777 2.63 21.964c.106 2.957 3.696 2.429 3.485.106-.211-4.12 2.112-13.94 4.225-13.94z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.678 21.213h4.67v.909h-4.67zm.87 2.787h2.93v-1.409h-2.93zm-.844-5.313c.575.523.881 1.28.83 2.056h2.944a2.58 2.58 0 0 1 .818-2.056zm-3.052-2.17v.683h10.696v-.683zm.478 3.087a3.83 3.83 0 0 0 1.74-.917H7.009zm9.74 0 .121-.917h-1.86c.49.451 1.089.768 1.739.917m-8.666-4.556A74 74 0 0 0 5.913 8.63q.967.153 1.913.405A18.9 18.9 0 0 0 3.51 5.583c1.226 2.378 2.378 5.987 2.965 9.465zm9.326 0c.587-3.478 1.74-7.087 2.961-9.465a18.9 18.9 0 0 0-4.308 3.452q.945-.254 1.913-.405a66 66 0 0 0-2.292 6.418zM6.087 16.17h11.83v-.679H6.087zm5.135-1.144q.468-1.11.77-2.278.305 1.167.773 2.278h2.052c-1.743-2.87-2.234-6.665-2.343-10-.009-.343.13-.43.46-.283l1.053.474A15.5 15.5 0 0 1 11.991 0 15.5 15.5 0 0 1 10 5.217l1.052-.474c.33-.152.457-.06.457.283-.109 3.313-.6 7.109-2.34 10zm-5.135 3.191h11.83v-.678H6.087z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.343 18.031q.088.074.181.146a7.4 7.4 0 0 1-4.107 1.238 7.416 7.416 0 1 1 4.104-13.593c-.06.051-.12.098-.165.15A7.96 7.96 0 0 0 8.595 12a8 8 0 0 0 2.748 6.031m5.241-13.447c-1.52 0-2.931.456-4.105 1.238.06.051.12.098.165.15A7.96 7.96 0 0 1 15.405 12a8 8 0 0 1-2.748 6.031q-.088.074-.181.146a7.4 7.4 0 0 0 4.107 1.238A7.414 7.414 0 0 0 24 12a7.417 7.417 0 0 0-7.416-7.416M12 6.174q-.144.111-.28.231A7.39 7.39 0 0 0 9.169 12 7.39 7.39 0 0 0 12 17.827q.144-.112.28-.232A7.4 7.4 0 0 0 14.831 12 7.39 7.39 0 0 0 12 6.174"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.479 0 .174 5.304.174 11.826V24h1.337v-6.716C3.486 21.064 7.446 23.65 12 23.65s8.514-2.586 10.49-6.367V24h1.336V11.826h-1.337c0 5.798-4.69 10.489-10.489 10.489a10.484 10.484 0 0 1-10.49-10.49C1.51 6.028 6.203 1.338 12 1.338zm0 3.72a8.107 8.107 0 1 0 0 16.214 8.107 8.107 0 0 0 0-16.215zm0 1.336a6.77 6.77 0 1 1 0 13.538 6.77 6.77 0 0 1 0-13.538"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38q.398-.092.786-.213c.585-.184 1.27-.39 1.774-.753a.06.06 0 0 0 .023-.043v-1.809a.05.05 0 0 0-.02-.041.05.05 0 0 0-.046-.01 20.3 20.3 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.6 5.6 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422q.059-.011.11-.024c2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545m-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102q0-1.965 1.011-3.12c.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164q1.012 1.155 1.012 3.12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24a12 12 0 0 1-4.691-.927 12.6 12.6 0 0 1-3.818-2.564A12.6 12.6 0 0 1 .928 16.69 12 12 0 0 1 0 12q0-2.509.927-4.69a12.2 12.2 0 0 1 2.564-3.792A12 12 0 0 1 7.309.955 11.7 11.7 0 0 1 11.999 0q2.51 0 4.692.955a11.65 11.65 0 0 1 3.79 2.563 11.65 11.65 0 0 1 2.564 3.791Q23.999 9.492 24 12q0 2.482-.955 4.69a12 12 0 0 1-2.563 3.819 12.2 12.2 0 0 1-3.791 2.564Q14.509 24 12 24m-7.637-5.864V5.864A9.5 9.5 0 0 0 2.755 8.7q-.572 1.556-.572 3.3c0 1.744.19 2.273.572 3.327a9.6 9.6 0 0 0 1.609 2.81zm1.5-13.772h12.3a9.5 9.5 0 0 0-2.836-1.61A9.7 9.7 0 0 0 12 2.183q-1.746 0-3.327.573a9.6 9.6 0 0 0-2.81 1.609M12 14.727l4.118-8.181h-8.21Zm1.09 2.727h4.364V8.728Zm-6.545 0h4.364L6.545 8.728Zm8.782 3.791a9.5 9.5 0 0 0 2.836-1.609h-12.3a9.6 9.6 0 0 0 2.81 1.61 9.7 9.7 0 0 0 3.326.572 9.7 9.7 0 0 0 3.328-.573m4.309-3.109a9.6 9.6 0 0 0 1.609-2.809A9.7 9.7 0 0 0 21.817 12q0-1.745-.572-3.3a9.5 9.5 0 0 0-1.61-2.836Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h7.2v2.4h9.6V0H24v7.2h-2.4v9.6H24V24h-7.2v-2.4H7.2V24H0v-7.2h2.4V7.2H0zm16.8 7.2V4.8H7.2v2.4H4.8v9.6h2.4v2.4h9.6v-2.4h2.4V7.2M2.4 2.4v2.4h2.4V2.4m14.4 0v2.4h2.4V2.4M2.4 19.2v2.4h2.4v-2.4m14.4 0v2.4h2.4v-2.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.029 18.772.777 1.166-5.417 2.709L0 16.451V4.063l5.417-2.709 5.298 7.948 7.867-5.24L24 1.354V16.84l-5.417 2.709zm2.023-13.827v13.253l3.949-1.975V2.97zM5.076 2.642 1.458 4.45 12.73 21.358l3.618-1.809z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.552 0-1.104.142-1.598.428L2.777 4.831A3.2 3.2 0 0 0 1.18 7.597v8.806c0 1.141.609 2.195 1.597 2.766l7.625 4.403a3.2 3.2 0 0 0 3.195 0l7.626-4.403a3.2 3.2 0 0 0 1.597-2.766V7.597a3.2 3.2 0 0 0-1.597-2.766L13.597.428A3.2 3.2 0 0 0 12 0m.033 6.215a1.383 1.383 0 0 1 1.012 2.286l-7.277 8.403a1.382 1.382 0 0 1-2.09-1.81l7.278-8.402a1.37 1.37 0 0 1 1.077-.477m2.689 3.105.025.001.059.002.082.005.055.007a1 1 0 0 1 .135.026l.073.019.035.012.091.034.038.017q.044.02.087.043l.033.018q.04.023.077.048l.045.031.071.055q.008.006.018.013l.019.019q.034.03.065.062l.037.039.031.033 4.533 5.296a1.38 1.38 0 0 1-1.049 2.281h-.001a1.38 1.38 0 0 1-1.05-.484l-3.484-4.07-3.482 4.07a1.38 1.38 0 0 1-1.051.484h-.001A1.38 1.38 0 0 1 9.164 15.1l4.533-5.296.03-.033.037-.039.062-.059.023-.022.022-.017.066-.05q.023-.017.047-.033l.067-.042.049-.027.072-.036a1 1 0 0 1 .177-.066 1 1 0 0 1 .141-.035l.06-.01.058-.007.081-.005z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.664 15.37a3.336 3.336 0 0 1-3.332 3.332C1.495 18.702 0 17.208 0 15.37s1.495-3.333 3.332-3.333a3.34 3.34 0 0 1 3.332 3.333m11.565-3.644a3.66 3.66 0 0 1-1.987.591 3.64 3.64 0 0 1-1.872-.529l.008.012a3.7 3.7 0 0 1-1.235-1.19l-2.612-3.693a.2.2 0 0 1-.027-.033A3.31 3.31 0 0 0 7.67 5.298a3.32 3.32 0 0 0-2.848 1.586.2.2 0 0 1-.021.028l-3.428 5.343a3.663 3.663 0 0 1 5.094 1.18l.015.018 2.756 3.869a3.3 3.3 0 0 0 2.699 1.38 3.31 3.31 0 0 0 2.711-1.379l.009-.013c.073-.103.137-.202.195-.305l1.442-2.255zm5.275 1.902-.014-.028-.044-.066-.029-.044-3.525-5.37c.024.168.052.335.052.51 0 .741-.219 1.457-.634 2.068l-2.803 4.38 1.416 2.179-.002.002a.1.1 0 0 1 .024.028 3.34 3.34 0 0 0 2.723 1.415A3.335 3.335 0 0 0 24 15.37c0-.613-.171-1.216-.496-1.742m-7.262-1.666a3.336 3.336 0 0 0 3.332-3.333 3.336 3.336 0 0 0-3.332-3.332 3.336 3.336 0 0 0-3.332 3.332 3.34 3.34 0 0 0 3.332 3.333"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.632.55v22.9H2.28V24H0V0h2.28v.55zm7.043 7.26v1.157h.033a3.3 3.3 0 0 1 1.117-1.024c.433-.245.936-.365 1.5-.365q.81.002 1.481.314c.448.208.785.582 1.02 1.108q.382-.562 1.034-.992.651-.43 1.546-.43.679 0 1.26.167c.388.11.716.286.993.53.276.245.489.559.646.951q.229.587.23 1.417v5.728h-2.349V11.52q0-.43-.032-.812a1.8 1.8 0 0 0-.18-.66 1.1 1.1 0 0 0-.438-.448q-.292-.165-.785-.166-.498 0-.803.189a1.4 1.4 0 0 0-.48.499 2 2 0 0 0-.231.696 5.6 5.6 0 0 0-.06.785v4.768h-2.35v-4.8q.002-.38-.018-.752a2.1 2.1 0 0 0-.143-.688 1.05 1.05 0 0 0-.415-.503c-.194-.125-.476-.19-.854-.19q-.168 0-.439.074c-.18.051-.36.143-.53.282a1.64 1.64 0 0 0-.439.595q-.18.39-.18 1.02v4.966H5.46V7.81zm15.693 15.64V.55H21.72V0H24v24h-2.28v-.55z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.494 9.614c-.152 0-.265.046-.333.121a.41.41 0 0 0-.114.296q.001.47.416.469.25 0 .364-.114a.42.42 0 0 0 .11-.302q.002-.47-.417-.47h-.023zm-17.341.038-1.078 1.866L0 13.383h2.85v-1.9l-.058-.722Zm18.086.015v3.394l.25-.461.022.007a2.2 2.2 0 0 0 .73.224.3.3 0 0 0 .179-.053c.049-.03.068-.065.068-.125 0-.065-.027-.114-.099-.155a1.3 1.3 0 0 0-.17-.091 2.8 2.8 0 0 1-.738-.39c-.151-.129-.227-.322-.227-.567a.76.76 0 0 1 .303-.625 1.2 1.2 0 0 1 .753-.227c.295 0 .53.076.704.212a.84.84 0 0 1 .302.587v.022l-.726.14-.008-.03c-.011-.114-.038-.185-.087-.238a.3.3 0 0 0-.223-.08.23.23 0 0 0-.163.057q-.068.065-.068.129c0 .049.008.079.019.102a.3.3 0 0 0 .05.068l.075.064a1 1 0 0 0 .094.053l.13.05q.062.038.313.15v-.01a1.4 1.4 0 0 1 .44.275c.116.114.177.28.177.489q0 .317-.291.567a1 1 0 0 1-.492.227H24V9.667Zm-10.08.292-.726.215-.03.504-.333.045-.072.503h.39v1.124q0 .578.15.832c.107.17.322.254.655.254a1.43 1.43 0 0 0 .704-.197l-.136-.446a1.6 1.6 0 0 1-.288.049q-.171 0-.242-.102-.073-.1-.072-.356v-1.162h.59l.091-.556h-.68zm1.903 0-.726.215-.03.504-.333.045-.076.503h.394v1.124q0 .578.15.832.156.255.655.254a1.4 1.4 0 0 0 .7-.197l-.136-.446a1.6 1.6 0 0 1-.287.049q-.17 0-.242-.102-.069-.1-.069-.356v-1.162h.59l.091-.556h-.68zm-7.862.67a.85.85 0 0 0-.677.332h-.02l-.071-.31-.598.076.053.757v1.891h.772v-2.001a.39.39 0 0 1 .306-.148c.182 0 .277.114.277.33v1.82h.768v-2.002a.38.38 0 0 1 .31-.148c.178 0 .265.114.265.33v1.82h.78v-1.783q-.002-.965-.78-.965a.9.9 0 0 0-.727.33c-.12-.22-.333-.33-.628-.33Zm3.61 0a2.2 2.2 0 0 0-.564.086 2 2 0 0 0-.473.174l.215.477a2.6 2.6 0 0 1 .666-.151q.205.002.273.083.073.077.072.242v.2l-.44.076a1.4 1.4 0 0 0-.665.273q-.227.198-.227.594 0 .756.726.757a.91.91 0 0 0 .742-.379h.019a.96.96 0 0 0 .386.379l.435-.413a.8.8 0 0 1-.167-.25 1 1 0 0 1-.034-.302v-.95a1.6 1.6 0 0 0-.03-.34.7.7 0 0 0-.113-.277.52.52 0 0 0-.292-.211 1.5 1.5 0 0 0-.492-.069zm6.337 0c-.39.007-.68.136-.881.382a1.6 1.6 0 0 0-.303 1.033q.002 1.393 1.173 1.392a2 2 0 0 0 1.003-.273l-.16-.472a2.1 2.1 0 0 1-.688.147c-.19 0-.318-.05-.393-.147a.76.76 0 0 1-.114-.45h1.04l.36-.05q0-.319-.015-.53c-.03-.352-.114-.605-.242-.756q-.238-.278-.742-.277zm2.683 0a.6.6 0 0 0-.378.155.87.87 0 0 0-.254.423h-.019l-.094-.556-.583.076.057.749v1.9h.768v-1.514q0-.283.159-.428a.52.52 0 0 1 .355-.147 1 1 0 0 1 .273.049l.178-.605a.95.95 0 0 0-.432-.099h-.026zm3.05.018-.772.08v2.395a1.5 1.5 0 0 1-.053.507q-.051.13-.295.31l.423.447a1.9 1.9 0 0 0 .56-.466 1.06 1.06 0 0 0 .137-.598zm1.43 0a1.16 1.16 0 0 0-.727.224.69.69 0 0 0-.28.575c0 .242.076.408.216.526a2.8 2.8 0 0 0 .719.386 2 2 0 0 1 .182.102c.079.045.12.113.12.189a.19.19 0 0 1-.09.174.37.37 0 0 1-.208.05 2.1 2.1 0 0 1-.73-.205l-.25.45c.329.19.654.288.983.288a1.14 1.14 0 0 0 .769-.235c.185-.163.272-.337.272-.533a.6.6 0 0 0-.163-.454 1.3 1.3 0 0 0-.416-.258 4 4 0 0 1-.325-.147l-.114-.05a1 1 0 0 1-.113-.06l-.08-.068a.3.3 0 0 1-.06-.08.4.4 0 0 1-.015-.125.22.22 0 0 1 .075-.166.28.28 0 0 1 .197-.072c.106 0 .19.038.253.099a.44.44 0 0 1 .103.242l.62-.118a.8.8 0 0 0-.265-.53 1 1 0 0 0-.673-.204m-7.204.58h.022q.177 0 .227.113c.034.075.05.212.05.4h-.613a.8.8 0 0 1 .083-.381c.049-.084.125-.125.23-.133zm-6.103 1.01v.472a.47.47 0 0 1-.341.144q-.266 0-.265-.25c0-.113.05-.189.14-.242a1.4 1.4 0 0 1 .466-.125zm-4.295.128v1.007h.48v-.174zm14.094.064a.49.49 0 0 0-.454.489.49.49 0 0 0 .492.488.49.49 0 0 0 .484-.492.49.49 0 0 0-.488-.485h-.037zm2.437.742v.257h.704a2.2 2.2 0 0 1-.704-.257"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.081 0C7.048-.034 2.339 3.125.637 8.153c-2.125 6.276 1.24 13.086 7.516 15.21s13.086-1.24 15.21-7.516c1.727-5.1-.172-10.552-4.311-13.557l.126 2.547c2.065 2.282 2.88 5.512 1.852 8.549-1.534 4.532-6.594 6.915-11.3 5.321-4.708-1.593-7.28-6.559-5.745-11.092 1.031-3.046 3.655-5.121 6.694-5.67l1.642-1.94A5 5 0 0 0 12.08 0zm3.528 1.094a.3.3 0 0 0-.123.024l-.004.001a.3.3 0 0 0-.109.071c-.145.142-.657.828-.657.828L13.6 3.4l-1.3 1.585-2.232 2.776s-1.024 1.278-.798 2.851c.226 1.574 1.396 2.34 2.304 2.648.907.307 2.302.408 3.438-.704 1.135-1.112 1.098-2.75 1.098-2.75l-.087-3.56-.07-2.05-.047-1.775s.01-.856-.02-1.057a.3.3 0 0 0-.035-.107l-.006-.012-.007-.011a.28.28 0 0 0-.229-.14"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.229 4.18-4.066 2.327V1.826L11.993 0 8.827 1.83v4.677L4.78 4.17 1.606 6v3.664L5.657 12l-4.054 2.343V18l3.165 1.831 4.044-2.338v4.681L11.983 24l3.174-1.831v-4.676l4.052 2.327 3.173-1.829v-3.646L18.339 12l4.058-2.336V6l-3.164-1.82zm.373 3.429V5.715l1.639.942v1.905l-1.636-.953zm1.638 9.286-6.075-3.504 1.65-.945L21.239 15v1.896zm-6.827-3.95L12.763 12l6.452-3.726 1.641.944-6.446 3.727zM3.134 9.219l1.641-.944L11.228 12l-1.639.945zm5.69 4.17-6.075 3.508V15l4.435-2.555 1.641.945v-.001zM2.749 8.564V6.66l1.64-.945v1.898zm9.627 0V1.55l1.641.937V7.61zm-2.402-.96V2.493l1.64-.944v7.004zm8.866-1.889v1.898l-6.456 3.734V9.442zm-7.228 3.724v1.897L5.153 7.609V5.715l6.46 3.721zm-2.403 6.513-4.435 2.555-1.64-.944 6.074-3.508zm.765-2.343 1.64-.945v7.453l-1.64.959zm3.656 8.115-1.639.954-1.64-.951 1.64-.946 1.639.946zm.394-.657-1.648-.95v-7.441l1.648.944zm6.831-3.504-1.641.944-4.425-2.555v-1.897l6.075 3.508z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.394 0 0 5.374 0 12s5.394 12 12 12c6.626 0 12-5.394 12-11.98a11.9 11.9 0 0 0-.727-4.12.815.815 0 0 0-1.05-.486.815.815 0 0 0-.486 1.05c.425 1.132.627 2.324.627 3.556 0 5.717-4.647 10.364-10.364 10.364S1.637 17.737 1.637 12.02 6.283 1.657 12 1.657c1.374 0 2.707.262 3.98.787A.843.843 0 0 0 17.05 2a.843.843 0 0 0-.444-1.07A11.6 11.6 0 0 0 12 0m8.08 4.323-3.595.707.646.647L12 11.111 7.616 6.606 5.091 17.051h2.343l1.394-5.799L12 14.707l6.788-7.394.646.667zm-2.828 6.445-1.858 1.94 1.03 4.343h2.344z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.769 0A1.77 1.77 0 0 0 0 1.769V22.23A1.77 1.77 0 0 0 1.769 24H22.23A1.77 1.77 0 0 0 24 22.231V1.77A1.77 1.77 0 0 0 22.231 0zm12.485 3.28a4.3 4.3 0 0 1 4.3 4.302 4.3 4.3 0 0 1-1.993 3.63 6.1 6.1 0 0 1 1.054 3.422 6.085 6.085 0 0 1-6.085 6.085 6.085 6.085 0 0 1-6.085-6.085 6.085 6.085 0 0 1 4.66-5.916 4.3 4.3 0 0 1-.152-1.136 4.3 4.3 0 0 1 4.301-4.301zm0 1.849a2.453 2.453 0 0 0-2.453 2.453 2.453 2.453 0 0 0 2.453 2.453 2.453 2.453 0 0 0 2.453-2.453 2.453 2.453 0 0 0-2.453-2.453m-2.724 5.268a4.237 4.237 0 0 0-4.237 4.237 4.237 4.237 0 0 0 4.237 4.237 4.237 4.237 0 0 0 4.237-4.237 4.237 4.237 0 0 0-4.237-4.237m.032 2.54a1.781 1.781 0 1 1 0 3.562 1.781 1.781 0 0 1 0-3.562"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12.01 12.01 0 0 0 12 0m-.049.331A11.67 11.67 0 0 1 23.67 12 11.68 11.68 0 0 1 12 23.669 11.669 11.669 0 0 1 11.951.33zM12 1.464A10.56 10.56 0 0 0 1.45 12c0 3.371 1.715 6.617 4.503 8.64a1.5 1.5 0 0 0 .32.183.13.13 0 0 0 .126-.023l.034-.057a.11.11 0 0 0 .035-.092c0-.08-.103-.148-.24-.343a3.17 3.17 0 0 1-.537-1.725 2.53 2.53 0 0 1 .514-1.566c.423.446 1.337 1.246 1.314 1.989s-.789.777-.617 1.394c.103.389.389.229.446.526.08.503.765.834 1.062.788.08-.011.138.046.275.194.137.15.708.183.937.138.228-.046.468.16.914.103s.697-.103.937-.103 2.572-.035 4.115.205c.274.046.354-.08.24-.285-.56-.983-.64-1.806-.32-2.858.57.046 1.394.195 2.468-.457a1.26 1.26 0 0 0 .583-1.085c-.011-.24-.114-.537-.057-.766s.148-.308.24-.366c.411-.297.114-.525.046-.548a.39.39 0 0 0 .125-.526c-.08-.08-.308-.709-.045-.834.262-.126.605-.206.925-.355a.514.514 0 0 0 .275-.685 125 125 0 0 0-1.029-2.4c-.16-.355-.057-.583-.103-.835-.046-.251-.308-.8-.491-1.234-.08-.194.434-.148.046-.868 0-.023.537-.229 0-.629a3 3 0 0 1-.686-.766.114.114 0 0 1 0-.148c.308-.274.32-.663-.012-.857-.331-.195-.514 0-.765.16-.08.057-.126.09-.218.057l-.205-.137c.308-.298.377-.595.354-.64s-.526-.149-1.166.114l-.045-.034c.263-.446.114-.766.102-.79h-.011a9.3 9.3 0 0 1 1.417-1.519h.012c.022-.034.034-.069-.023-.103l-.115-.068A10.56 10.56 0 0 0 12 1.464m-.073.316a10.2 10.2 0 0 1 4.805 1.169.046.046 0 0 1 .012.08 11 11 0 0 0-1.166 1.302 8.35 8.35 0 0 0-3.577-.8A8.49 8.49 0 0 0 3.531 12a8.24 8.24 0 0 0 2.046 5.508 2.6 2.6 0 0 0-.217 1.075 2.9 2.9 0 0 0 .377 1.451C3.268 18.07 1.783 15.097 1.783 12A10.206 10.206 0 0 1 11.926 1.78zm.28.266c-.034 0-.046.023-.057.046l-.103 1.142a.046.046 0 0 0 .046.046h.125c.023.011.046-.011.046-.034l.114-1.143a.06.06 0 0 0-.046-.057zm-1.686.111q-.008 0-.017.003h-.137c-.023.011-.046.034-.035.057l.218 1.132c0 .034.023.045.057.045l.125-.023c.023 0 .046-.022.035-.045l-.217-1.132a.04.04 0 0 0-.03-.037zm3.514.106L13.59 3.36a.046.046 0 0 0 .034.069l.126.034a.06.06 0 0 0 .057-.034l.434-1.075a.046.046 0 0 0-.034-.068l-.137-.023zm-5.313.34-.013.003-.114.034a.046.046 0 0 0-.034.068l.514 1.04.057.023.126-.045a.046.046 0 0 0 .035-.069L8.766 2.63a.05.05 0 0 0-.045-.026zm6.913.134a.05.05 0 0 0-.034.017l-.743.949c-.023.023-.011.057.023.068l.126.046c.023.012.034 0 .057-.011l.743-.949a.06.06 0 0 0-.023-.068l-.126-.046a.1.1 0 0 0-.023-.006m-8.592.639a.03.03 0 0 0-.025.007l-.114.068c-.034.012-.034.046-.011.07l.765.879c.012.023.034.023.057.011l.115-.068a.046.046 0 0 0 .011-.069l-.766-.88a.06.06 0 0 0-.032-.018m4.93.498h.028a8 8 0 0 1 3.383.732 2.6 2.6 0 0 0-.469.297A7.2 7.2 0 0 0 12 4.32 7.69 7.69 0 0 0 4.32 12c0 1.84.571 3.451 1.691 4.8-.057.103-.148.24-.251.4h-.011A7.9 7.9 0 0 1 3.874 12a8.137 8.137 0 0 1 8.098-8.126zm-6.51.618-.102.09a.057.057 0 0 0 0 .08l.971.675c.023.011.046.012.058-.011l.103-.08a.057.057 0 0 0 0-.08l-.972-.674zm10.177.191q.012 0 .018.003c.069.034-.091.64-.446.983-.354.342-.925.708-.982.697-.058-.012.194-.674.491-1.017.3-.365.8-.659.919-.666m-3.616.025a6.5 6.5 0 0 1 2.56.526 3.6 3.6 0 0 0-.423.755c0-.218-.057-.389-.046-.526s-.582.103-1.108.948a2.3 2.3 0 0 0-.252.606c-.011-.32-.08-.56-.103-.56a1.84 1.84 0 0 0-.971 1.006 2.6 2.6 0 0 0-.126.388c-.023-.217-.08-.365-.103-.365s-.674.263-.982 1.017a1.8 1.8 0 0 0-.126.526c-.057-.263-.16-.423-.194-.389-.217.274-.652.4-.87 1.097a1.5 1.5 0 0 0-.079.48c-.091-.228-.229-.366-.263-.366s-.697.629-.8 1.246a1.8 1.8 0 0 0 .023.663c-.126-.206-.286-.343-.354-.549-.103.058-.652.572-.663 1.223a2.3 2.3 0 0 0 .08.697c-.183-.331-.434-.48-.469-.468s-.457.468-.548 1.268a1.4 1.4 0 0 0 .045.526c-.171-.194-.32-.297-.33-.286a2.6 2.6 0 0 0-.413 1.018A7.5 7.5 0 0 1 4.651 12c-.16-4.046 3.235-7.303 7.372-7.292zm4.571.618h.035c.091.011-.218.548-.755.777s-.971.285-1.017.263c-.046-.023.469-.663.914-.858a2 2 0 0 1 .823-.182m-2.643.316q.005-.001.003.004c-.011.045.24.754-.297 1.188a2.4 2.4 0 0 0-.64.732c-.057.102-.217-.572.194-1.212.236-.375.693-.71.74-.712M4.15 5.89a.03.03 0 0 0-.024.018l-.08.103a.046.046 0 0 0 .023.08l1.12.435a.05.05 0 0 0 .045-.023l.092-.103c.023-.023.011-.057-.023-.069l-1.12-.434a.06.06 0 0 0-.033-.007m13.44.1q.073 0 .124.044c.297.298-.331.469-.206.697a3.5 3.5 0 0 0 .858.96c.137.115.16.355-.377.469-.538.114-2.697.674-3.84 1.886-1.429 1.508-2.332 3.463-2.457 3.2-.126-.263-.412-.32-.366-.4 2.045-3.52 5.257-6.298 6.011-6.766a.47.47 0 0 1 .254-.09zm-1.339.113.183.126c.115.068.16.09.103.137C13.943 8.57 12 11.372 11.154 12.72c-.023.046-.068.034-.148.034-.903-.068-1.417 1.017-1.017 2.035-.046.205-.48.605-.515.628-.034.023-.114.16.034.149.15-.012.48-.366.618-.515.045.069.251.229.148.32a7.3 7.3 0 0 1-1.588 1.2c-.297.138.48.24 1.794-.948.08-.069.171.274.286.423-.229.743.331 2.183.24 2.628a.32.32 0 0 1-.32.309c-1.303.034-1.429-.034-2.092.16-.308.091-.228.297-.011.24s.526-.172 1.931-.08c.355.011.743-.069.743-.652s-.411-2.102-.274-2.32a.8.8 0 0 0 .4.16c-.023.515.8 2.172.434 3.086-.137.343-.731.309-1.76.206-1.748-.172-2.32.206-2.354 0-.034-.229.183-.446.183-.937s-.755-1.44-1.269-1.977a2.2 2.2 0 0 0 .903-.218c.754-.354.903-1.154.926-1.188a1.3 1.3 0 0 0-.435-.046l.092-.046c.731-.4.925-1.257.891-1.268a2 2 0 0 0-.457-.034l.229-.08c.777-.309.994-1.177.971-1.212a2 2 0 0 0-.4-.046l.217-.091c.709-.354.96-1.154.926-1.177a1.2 1.2 0 0 0-.377-.046 2.7 2.7 0 0 0 .514-.171c.766-.332 1.017-1.063.983-1.097a1.3 1.3 0 0 0-.343-.057 4 4 0 0 0 .503-.15c.754-.25 1.051-.97 1.006-.982l-.423-.091a2.8 2.8 0 0 0 .754-.149c.812-.274 1.097-.766 1.12-.983a.7.7 0 0 0-.263-.091 3.4 3.4 0 0 0 .538-.138c.754-.308 1.074-1.062 1.097-1.12a3.4 3.4 0 0 0 .445-.182zm-1.28.5a2 2 0 0 1 .229.014c.034.023-.286.56-.811.766s-1.006.217-1.075.171c-.057-.034.492-.651.937-.823a2 2 0 0 1 .72-.127zm-2.468.105c.057-.01.217.664 0 .984-.389.582-.412.377-.834.948-.023.023-.023-.743.125-1.074.24-.538.652-.846.709-.858m-9.36.823-.057.023a.6.6 0 0 1-.057.126.046.046 0 0 0 .034.069l1.2.171c.023 0 .045-.011.045-.034l.07-.115a.046.046 0 0 0-.035-.068zm10.289.233a2 2 0 0 1 .476.065c.058.022-.32.571-.88.742s-1.108.149-1.097.115c.012-.035.469-.675.926-.835a1.9 1.9 0 0 1 .575-.087m-2.152.019c.068-.012.194.651-.046 1.063-.194.343-.377.263-.708.765-.035.046-.126-.411.08-1.04a1.44 1.44 0 0 1 .674-.788m6.96.673c.034.005.06.035.034.104-.114.331-1.04.629-.994.4s0-.251.069-.263c.068-.011.4-.126.857-.24a.1.1 0 0 1 .035-.001zm-1.368.317q.047-.001.054.016c.034.091-.206.685-.537.8s-.537.103-.526.045a1.3 1.3 0 0 0 .057-.468c-.02-.12.739-.389.952-.393m1.286.187a.09.09 0 0 1 .093.069c.423 1.017.595 1.291.56 1.805-.034.515.995 2.457 1.075 2.64s.091.389 0 .48c-.377.332-.949.355-1.178.56s-.17.286-.045.594c.126.31.125.195-.126.263-.251.069-.468.663-1.006.56-.205-.034-.057.092.023.103.297.035.423-.057.526-.16s.252-.274.412-.331.33-.057.342.068c.012.126-.217.24-.308.286.114.057.445.217.16.411-.286.195-.526-.057-.56-.08-.035-.022-.194-.022-.149.035s.595.148.515.251c-.4.537-.07.858-.195 1.406-.126.549-.88.857-1.463.96-1.988.354-3.92-1.326-5.051-2.606.103-.24.091-.548-.012-.434-.102.114-.08.274-.32.331-.445.115-.65-.674-.788-.81-.549-.538-.766-1.304-.446-1.978s1.029-.537 1.303-.126.194.8.388.949c.195.148.55.023.618 0s.194.491.914.468.674-1.222.789-1.325c.982-.96.48-1.818.297-2.012s.114-.411.171-.423a1.49 1.49 0 0 0 1.074-.88s.96-.023 1.303-.708c.092-.183.378.171 1.018-.332a.1.1 0 0 1 .066-.034m-8.085.015c.13-.046.188.654-.016 1.094-.206.445-.331.457-.571.731-.035.046-.206-.423-.046-1.006s.457-.64.606-.8a.1.1 0 0 1 .027-.02zm1.82.027c.247.007.444.077.53.084.137.011-.149.514-.754.731-.606.217-1.029.206-1.109.172-.023-.023.389-.72.846-.903a1.2 1.2 0 0 1 .486-.084zm-8.22.22h-.004l-1.235.115-.045.034-.035.137c0 .035.023.07.057.058l1.223-.115a.034.034 0 0 0 .035-.034 1 1 0 0 0 .045-.125.046.046 0 0 0-.04-.07zm11.806.203c.032.003.044.032.052.083a1.2 1.2 0 0 1-.297.858c-.262.285-.525.263-.663.297-.137.034-.091.263-.274.388-.251.172-.606-.057-.537-.16a5 5 0 0 1 1.314-1.257c.243-.15.352-.215.405-.21zm-6.622.724c.092 0 .24.365.24.674a1.2 1.2 0 0 1-.046.343c-.148.491-.445.708-.605.926a1.8 1.8 0 0 1-.183-.663 1.74 1.74 0 0 1 .594-1.28m2.106.104a2 2 0 0 1 .294.021c.034.035-.217.629-.743.857a2.8 2.8 0 0 1-1.177.206c-.034-.023.503-.731.96-.948a1.8 1.8 0 0 1 .665-.136zm6.614.033c-.56.023-1.211.708-1.417.8-.206.091-.149.171-.023.125.126-.045.674-.537 1.223-.731s.411.206.571.183-.034-.389-.354-.377m-14.262.544-.023.004-1.19.412c-.022.011-.033.023-.033.045 0 .023-.012.092-.012.138a.046.046 0 0 0 .069.045l1.177-.411a.034.034 0 0 0 .034-.034c0-.046.012-.103.012-.15q-.001-.048-.034-.049m14.388.004c-.046.012.045.252-.195.263-.525.034-.948.537-1.268.686a1.5 1.5 0 0 1-.434.16.035.035 0 0 0 .011.068c1.337.183 1.851.126 1.863.08.011-.045-.068-.137-.046-.194a1.3 1.3 0 0 0 .012-.629c-.023-.09.205-.034.205-.148s-.068-.297-.148-.286m-.297.537a.09.09 0 0 1 .091.069 1.2 1.2 0 0 1 0 .457c-.023.103-.628.057-.948.023-.08 0-.206-.011.034-.16s.469-.32.823-.389m-3.848.003c.121.01.24.169.248.34.034.412-.206.64-.446.823s-.354.503-.297.583a.17.17 0 0 0 .217-.103c.171-.377.686-.56.766-.766s.034-.503.023-.64.102-.137.182-.125c.08.011.16.16.206.308.332.857-.491 1.372-.628 1.577-.138.206.125.789-.229 1.006-.457.286-.709-.251-.777-.354a.42.42 0 0 1-.057-.355c.034-.16.057-.377-.046-1.062-.046-.309.571-1.052.72-1.189a.15.15 0 0 1 .118-.043m-5.855.169c.057.205.423.365.423.743a1.7 1.7 0 0 1-.583 1.234 2 2 0 0 1-.251-.869c-.023-.72.274-.971.41-1.108zm2.283.046a2 2 0 0 1 .197.011c.034.011-.206.617-.709.869-.503.251-1.177.285-1.154.228.023-.046.4-.731.846-.937a2 2 0 0 1 .82-.17zm-6.738.875a.1.1 0 0 0-.025.004l-1.074.72c-.023 0-.023.023-.023.046s.011.092.011.137a.057.057 0 0 0 .08.035l1.075-.709c.01-.011.022-.023.01-.034v-.149a.06.06 0 0 0-.054-.05m9.195.438a.06.06 0 0 1 .06.047c.068.468 0 1.12-.411 1.028-.115-.023-.16-.24-.138-.331.023-.092.355-.595.457-.732a.06.06 0 0 1 .032-.012m-3.26.012a2 2 0 0 1 .234.012c.057.022-.194.64-.663.868-.468.229-.743.103-1.223.252.035-.172.343-.743.812-.949a2.1 2.1 0 0 1 .84-.183m-2.44.092c.206.103.446.388.468.937.023.548-.365.994-.525 1.074-.103-.423-.297-.503-.297-.914a2.06 2.06 0 0 1 .354-1.097m4.152.227c-.347.016-.568.511-.518 1.041a.91.91 0 0 0 .583.812c.263.091.069.457.423.457.16 0 .194-.24.103-.275-.08-.034-.057.138-.16.115s-.023-.149-.206-.343-.32-.137-.491-.411c-.172-.275-.035-1.372.354-1.235.388.137.183.572.114.914s.286.32.32.24-.126-.102-.16-.217c-.034-.114.4-.868-.206-1.074a.4.4 0 0 0-.156-.024m7.24.093a.08.08 0 0 0-.066.068 4 4 0 0 1-.08.606c-.046.206.137.457.411.308.274-.148.549-.33.834-.388.069-.011.08-.114.012-.114-.103 0-.515.183-.675.286s-.502.308-.48-.092c.012-.149.103-.503.103-.606 0-.051-.028-.071-.058-.068zm-14.64.772a.05.05 0 0 0-.032.016l-.88.972c-.012.011-.023.034-.012.045a.6.6 0 0 1 .046.138.046.046 0 0 0 .08.023l.869-.96c.011-.012.011-.023.011-.046l-.034-.149a.046.046 0 0 0-.047-.039zm4.976.149a.7.7 0 0 1 .226.016c.023.023-.171.674-.674.937s-1.086.309-1.143.24.172-.777.697-1.006c.329-.142.675-.183.894-.187m-2.523.264c.107.011.59.419.6.997a1.65 1.65 0 0 1-.388 1.052c-.149-.137-.469-.491-.503-.949v-.068c0-.492.217-.983.274-1.029q.006-.004.017-.003m1.985 1.07c.133.003.217.018.204.03-.034.035-.206.663-.708.915a1.38 1.38 0 0 1-.995.148c.263-.297.206-.731.64-.937.279-.129.638-.159.86-.155zm-3.866.133a.06.06 0 0 0-.044.023l-.617 1.177c-.012.012 0 .035 0 .046l.08.137a.046.046 0 0 0 .08-.011l.617-1.166c0-.011.011-.023 0-.046l-.069-.137a.06.06 0 0 0-.047-.023m7.66.829q.022.003.044.028c1.783 1.932 2.915 2.31 3.532 2.492.057.023.046.091.023.16-.286 1.005-.435 1.406 0 2.503.057.148.103.262-.023.24-.88-.16-1.075-.297-3.852-.069-.194.023.069-.388.035-.663.251-.034.663-.148.743-.56.08-.411-.24-.868-.206-.937.4-.766-.023-1.611-.354-3.04-.026-.103.012-.16.057-.154zm-6.873.5c-.017.003-.031.014-.031.031l-.331 1.372c-.012.023 0 .034 0 .046l.114.114a.046.046 0 0 0 .08-.012l.32-1.36c.011-.011 0-.023 0-.034l-.103-.137a.05.05 0 0 0-.049-.02m2.489 2.851c.056.007.111.04.154.083.114.115-.08.32-.103.492-.08.022-.331.034-.274-.309.036-.214.13-.277.223-.266m1.583.096c.155-.01.304.046.297.124-.035.492-.24 1.052.137 1.612.149.217-.594.251-.731-.32-.092-.423-.126-1.143.045-1.314a.4.4 0 0 1 .252-.102m.962.04c.203-.002.475.028.546.05.115.034-.091.777.777 1.12.08.034-.011 1.006-1.28.686-.182-.046-.685-.846-.274-1.806.013-.034.11-.048.23-.05zm1.938.018c.23.031.238.746-.112.866-.674.229-.948-.56-.834-.731.114-.172.503.114.834-.103a.16.16 0 0 1 .112-.032m-3.78.073c.128-.004.245.022.251.085.012.126-.126.617.034 1.165-.034.08-.525.046-.662-.32-.069-.308-.046-.72.057-.834.051-.057.191-.091.32-.096"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.167 9.864c-.714 0-1.193.194-1.513.465-.65.55-.648 1.373-.648 1.627 0 .297.025 1.285.61 1.784.338.286.72.396 1.312.396.62 0 .962-.407.962-.407h.026s.065.102.179.196c.105.085.256.16.256.16h.358s-.026-.249-.026-.716v-.662q0-.14.081-.198a.5.5 0 0 1 .236-.073v-.31h-1.803v.31c.066 0 .272.008.348.056.077.048.15.09.15.262v.418c0 .134.036.266.036.266-.226.213-.731.242-.954.16-.343-.126-.532-.321-.532-1.635 0-.36-.025-1.078.281-1.409.178-.192.47-.23.678-.23.38 0 .622.11.794.47.075.159.246.561.246.561h.325l-.056-1.282c-.206-.082-.57-.209-1.346-.209M.015 9.902v.345c.423 0 .582.077.582.287v2.843q0 .209-.15.295-.148.084-.447.084v.349h1.56v-.349q-.302 0-.428-.087-.125-.087-.125-.3v-2.7h.037l1.195 3.436h.579l1.047-3.435h.045v2.776c0 .108-.012.212-.118.268-.078.043-.274.042-.354.042v.349h3.526v-.349c-.09.002-.326-.016-.416-.054-.096-.04-.212-.159-.081-.58l.142-.462h1.303l.121.38c.15.465.195.595.078.66-.103.056-.303.056-.387.056v.349h2.064v-.35c-.045-.002-.158.002-.259-.07-.12-.096-.18-.268-.212-.367a69 69 0 0 1-.874-2.836 17 17 0 0 1-.155-.58H7.163l-1.03 3.099c-.08.24-.173.47-.28.6-.116.142-.297.155-.42.155-.279 0-.376-.05-.376-.31v-2.912c0-.21.16-.287.583-.287v-.345H3.659l-.749 2.623h-.037l-.878-2.623zm9.229 0v.345c.149 0 .262.017.33.049a.4.4 0 0 1 .171.192 75 75 0 0 1 1.026 2.23v.752a.3.3 0 0 1-.035.149.23.23 0 0 1-.113.087.7.7 0 0 1-.203.04 4 4 0 0 1-.283.01v.349h2.288v-.351l-.14-.007a.7.7 0 0 1-.212-.043.24.24 0 0 1-.118-.09.26.26 0 0 1-.037-.148v-.848l.816-1.78c.063-.147.167-.367.263-.434.096-.068.213-.064.41-.066.3-.002.357.04.405.104.042.057.052.184.051.363v2.669q0 .147-.158.215a1.2 1.2 0 0 1-.403.064v.352h2.273v-.352a1.2 1.2 0 0 1-.403-.064q-.158-.068-.158-.215v-2.67c0-.178.009-.303.048-.358.047-.068.104-.108.404-.108.243 0 .338.006.413.066.12.096.21.31.275.457l.176.386h.294l-.067-1.345h-4.583v.349c.138 0 .272.02.315.113.058.125-.012.398-.167.786-.225.564-.389.956-.389.956H11.7l-.562-1.223q-.198-.43-.198-.53c0-.055.01-.105.33-.105v-.346zm8.309 0-1.029 3.099c-.08.24-.167.44-.273.57a.47.47 0 0 1-.321.175v.359h1.424v-.349c-.09.002-.325-.016-.416-.054-.096-.04-.212-.159-.081-.58L17 12.66h1.3l.123.38c.15.465.194.595.077.66-.103.056-.303.056-.387.056v.349h2.065v-.35c-.046-.002-.159.002-.26-.07-.12-.096-.18-.268-.212-.367a71 71 0 0 1-.874-2.836c-.066-.24-.118-.424-.155-.58zm-10.247.66h.027l.475 1.761h-1.08zm10.39 0h.027l.475 1.761h-1.08Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 12.876c-.036 0-.105-.046-.222-.26a7.5 7.5 0 0 0-1.975-2.353A8.3 8.3 0 0 0 7.7 9.065l-.345-.136c-1.012-.4-2.061-.813-3.035-1.377a9 9 0 0 1-.32-.19c.194-.34.42-.665.67-.962a6 6 0 0 1 1.253-1.131 7.1 7.1 0 0 1 1.618-.806c1.218-.434 2.677-.647 4.458-.649 1.783.002 3.241.215 4.459.65a7 7 0 0 1 1.619.805 6 6 0 0 1 1.253 1.13c.25.298.475.623.67.963q-.156.097-.32.192c-.976.564-2.023.977-3.037 1.376l-.345.136a8.3 8.3 0 0 0-2.1 1.198 7.5 7.5 0 0 0-1.975 2.354c-.117.213-.187.259-.224.259m0 7.072c-1.544-.002-2.798-.129-3.83-.387-1.013-.252-1.855-.64-2.576-1.188a5.8 5.8 0 0 1-1.392-1.537 7.6 7.6 0 0 1-.81-1.768 10.3 10.3 0 0 1-.467-2.983c0-.674.047-1.313.135-1.901 1.106.596 2.153.895 3.08 1.16l.215.06c1.29.371 2.314.857 3.135 1.488.475.368.89.793 1.23 1.264.369.508.663 1.088.877 1.725.096.289.2.468.403.468.207 0 .308-.18.405-.468a6.12 6.12 0 0 1 2.107-2.988c.82-.632 1.845-1.118 3.135-1.489l.216-.06c.926-.265 1.973-.564 3.078-1.16.09.589.136 1.227.136 1.9 0 .458-.046 1.664-.465 2.984a7.6 7.6 0 0 1-.809 1.768 5.8 5.8 0 0 1-1.396 1.537c-.723.548-1.565.936-2.574 1.188-1.035.258-2.288.385-3.833.387m9.692-14.556c-1.909-2.05-4.99-2.99-9.692-2.995-4.7.005-7.781.944-9.69 2.994C.89 6.913 0 9.018 0 11.874c0 1.579.39 5.6 3.564 7.676 1.9 1.242 4.354 2.046 8.435 2.052 4.083-.006 6.536-.81 8.437-2.052C23.609 17.474 24 13.452 24 11.874c0-2.848-.897-4.968-2.31-6.483Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.126 16.547a3.787 3.787 0 0 1 0-5.389l4.078-4.042a3.87 3.87 0 0 1 4.68-.584c.456.27.452.886.077 1.258s-.988.34-1.497.192a1.93 1.93 0 0 0-1.901.481l-4.078 4.042a1.894 1.894 0 0 0 0 2.695c.75.744 1.968.744 2.719 0l8.155-8.084a3.87 3.87 0 0 1 5.437 0l4.078 4.042a3.787 3.787 0 0 1 0 5.389 3.87 3.87 0 0 1-5.437 0l-1.36-1.347-1.698 1.684a3.87 3.87 0 0 1-4.68.583c-.457-.268-.453-.885-.078-1.257.376-.372.988-.34 1.498-.192.652.189 1.386.029 1.9-.481l1.748-1.733a1.865 1.865 0 0 1 2.621 0l1.408 1.396c.75.744 1.968.744 2.719 0a1.894 1.894 0 0 0 0-2.695l-4.078-4.042a1.935 1.935 0 0 0-2.719 0l-8.155 8.084a3.87 3.87 0 0 1-5.437 0"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.823 1.58 0v19.177L12 24l10.42-4.823V0zm6.172 11.626-6.143 2.843-6.144-2.843V6.69l6.144 2.842 6.143-2.842z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.243 3.006c2.066 0 3.742 8.714 3.742 19.478H24c0-11.588-3.042-20.968-6.766-20.968-2.127 0-4.007 2.81-5.248 7.227-1.241-4.416-3.121-7.227-5.231-7.227C3.031 1.516 0 10.888 0 22.476h3.014c0-10.763 1.658-19.47 3.724-19.47s3.741 8.05 3.741 17.98h2.997c0-9.93 1.684-17.98 3.75-17.98Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.062 11.713c3.305-2.139 7.748-2.208 2.564 1.248l.082-.11c1.467-2.016-1.522-1.563-2.578-1.166zM6.967 13.236h1.399v.549H6.747c-.686 0-.987-.206-.987-.754v-.123c0-.466.274-.768.96-.768h1.646v.549H6.967a.25.25 0 0 0-.247.247v.069a.246.246 0 0 0 .247.231M9.6 11.864v1.371h.823v.549h-1.92v-1.92zm-5.198.247c.191-.154.427-.241.672-.247h.549v1.92H4.525v-.96l-1.056.96H2.468v-.96l-1.221.96H0l2.18-1.646c.206-.151.343-.274.699-.274h.686v.96zm9.312.206a.316.316 0 0 1 .343-.316h1.303v.549h-.686v1.234h-.96zm6.431-.316c.823 0 1.111.178 1.111.782v1.001h-.96v-.686a.41.41 0 0 0-.411-.411h-.411v1.097h-.96v-1.783zm-7.487 0c.631 0 .919.261.919.699v.411c0 .507-.288.672-.987.672h-1.083c-.398 0-.686-.041-.837-.178a.5.5 0 0 1-.11-.315v-.069c0-.274.165-.535.686-.535h1.234c0-.123.014-.137-.137-.137h-1.646V12zm-.179 1.166v-.069h-.754a.07.07 0 0 0 0 .138h.686a.07.07 0 0 0 .068-.069m5.02-1.166c.727 0 .878.219.878.521v.069c0 .329-.261.507-.686.507h-1.234c0 .123.123.137.274.137h1.508v.549H16.36c-.59 0-.864-.247-.864-.699v-.315c0-.521.288-.768.946-.768h1.057zm-.151.686a.07.07 0 0 0 0-.138h-.823a.07.07 0 0 0-.069.069v.069z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.928.029A2.47 2.47 0 0 0 .093 1.673c-.085.248-.09.629-.09 10.33s.005 10.08.09 10.33a2.51 2.51 0 0 0 1.512 1.558l.276.108h20.237l.277-.108a2.51 2.51 0 0 0 1.512-1.559c.085-.25.09-.63.09-10.33s-.005-10.08-.09-10.33A2.51 2.51 0 0 0 22.395.115l-.277-.109L12.117 0C6.615-.004 2.032.011 1.929.029m7.48 8.067 2.123 2.004v1.54c0 .897-.02 1.536-.043 1.527s-.92-.845-1.995-1.86c-1.071-1.01-1.962-1.84-1.977-1.84s-.024 1.91-.024 4.248v4.25H4.911V6.085h1.188l1.183.006zm9.729 3.93v5.94h-2.63l-.01-4.25-.013-4.25-1.907 1.795a367 367 0 0 1-1.98 1.864c-.076.056-.08-.047-.08-1.489v-1.555l2.127-1.995 2.122-1.995 1.187-.005h1.184z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.77 5.343c.023.337 0 .613-.073.817l-4.314 14.227c-.072.252-.24.445-.504.6a1.7 1.7 0 0 1-.805.23H3.772c-1.154 0-1.839-.337-2.079-1.01-.096-.264-.096-.469.012-.625.108-.144.288-.216.553-.216h12.52c.89 0 1.514-.168 1.85-.493s.686-1.07 1.034-2.21l3.954-13.05c.216-.71.12-1.334-.265-1.875-.384-.54-.937-.817-1.646-.817H8.735c-.12 0-.373.048-.734.132l.012-.048A2.5 2.5 0 0 0 7.33.933a1 1 0 0 0-.517.168 1.8 1.8 0 0 0-.385.337c-.096.12-.18.264-.276.456a6 6 0 0 0-.228.517 8 8 0 0 1-.217.505c-.084.18-.156.324-.24.444-.06.073-.144.18-.24.3-.096.121-.193.241-.265.337a.8.8 0 0 0-.132.265c-.024.084-.012.216.024.384s.048.289.048.373c-.036.36-.168.829-.396 1.394-.229.564-.433.973-.613 1.213a5 5 0 0 1-.312.325c-.169.168-.277.312-.313.444-.036.048-.036.18-.012.409.036.216.048.372.036.456q-.054.487-.36 1.298a9.5 9.5 0 0 1-.601 1.322c-.024.06-.108.168-.24.336-.133.168-.217.3-.24.409-.025.072-.013.216.011.408.024.193.024.337-.012.433-.072.36-.216.805-.432 1.322-.217.516-.433.949-.65 1.321-.06.097-.131.205-.24.337-.096.132-.18.24-.24.336a.9.9 0 0 0-.12.3.53.53 0 0 0 .048.277c.036.132.048.228.048.313-.012.132-.024.312-.06.528-.024.216-.048.349-.048.385-.216.576-.204 1.19.024 1.826.264.745.745 1.382 1.43 1.899.685.516 1.406.769 2.139.769H17.05c.625 0 1.214-.205 1.767-.625s.925-.937 1.105-1.55l3.966-13.05c.216-.696.12-1.31-.265-1.862-.204-.3-.48-.505-.853-.649M7.16 15.677l1.707-5.143h1.297c.457 0 3.46-.204 3.052 2.103s-2.259 3.028-4.422 3.052-1.634-.012-1.634-.012m2.283-.721c.565-.012 2.271-.349 2.656-2.055.384-1.706-1.382-1.61-1.382-1.61h-1.07l-1.225 3.665c.012.012.469.012 1.021 0m-.396-5.78 1.646-5.107h1.178l.096 4.086 2.835-4.086h1.19l-1.634 5.107h-.853l1.502-4.253-2.944 4.253h-.817l-.096-4.205-1.298 4.205z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.538 1.1-6.745 21.8h-2.77L18.77 1.1ZM24 1.1v21.8h-2.462V1.1Zm-12 0v21.8H9.538V1.1Zm-2.462 0L2.77 22.9H0L6.746 1.1Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.79 7.12h22.42c.436 0 .79.355.79.792v8.176a.79.79 0 0 1-.79.79H.79a.79.79 0 0 1-.79-.79V7.912a.79.79 0 0 1 .79-.791zm2.507 7.605v-3.122l1.89 1.89L7.12 11.56v3.122h1.055v-5.67l-2.99 2.99L2.24 9.056v5.67h1.055v-.001Zm8.44-1.845-1.474-1.473-.746.746 2.747 2.747 2.745-2.747-.746-.746-1.473 1.473v-4h-1.054v4Zm10.041.987-2.175-2.175 2.22-2.22-.746-.746-2.22 2.22-2.22-2.22-.747.746 2.22 2.22-2.176 2.177.746.746 2.177-2.177 2.176 2.175z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.619 13.59 1.444 8.427c-1.925-1.939-1.925-5.063 0-6.989l8.666 8.642zm6.551-.42 8.51 8.49-1.76 1.74-8.48-8.48-8.502 8.48-1.741-1.74L13.12 9.739l-.25-.272a2.45 2.45 0 0 1 0-3.472L18.23.6l1.14 1.135-3.99 4.024 1.18 1.161 3.99-4.012 1.15 1.136-4.01 4 1.15 1.189 4.03-4.017L24 6.377l-5.4 5.353c-.95.96-2.51.96-3.46 0l-.27-.25z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.13 7.171c-.496.42 2.943-.458 2.6 1.239-.332 1.633-3.62-.343-7.223-.176-1.594.073-3.054.53-3.985 1.668.973-1.108 2.901-.844 2.398-.081-1.172 1.776-3.376.497-4.92 3.975.185-.4.685-1.196 2.843-1.526 1.586-.242 4.214-.016 5.054 1.297.924 1.444-3.759 1.28-1.167 1.573 3.593.406 6.299 3.31 9.813 3.311 4.55 0 7.422-2.324 7.457-6.146.063-6.923-9.101-8.318-12.87-5.134m6.768 7.554c-1.195-.033-2.404-.512-3.364-.98-2.365-1.155-3.338-1.553-3.338-1.608 0-.067 1.42.484 3.813-.789 1.383-.735 1.432-1.377 2.89-1.505 1.73-.152 2.962 1.13 2.962 2.478s-1.222 2.453-2.963 2.404"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.829 22.075c-.064.192 2.63-2.76 2.63-2.76-.256-2.759-1.54-5.775-1.54-5.775-2.117-4.428-6.801-5.904-9.56-3.53-.129.065-.322.129-.45.193 2.118-2.952 6.93-2.695 10.075.963 0 0 1.412 1.732 2.438 4.363.257-.898.45-1.86.514-2.823-1.669-2.31-3.594-3.658-3.594-3.658-3.978-2.695-8.663-1.732-9.946 1.604-.129.193-.257.385-.321.578.385-3.594 4.684-5.84 9.176-4.3 0 0 2.182.835 4.428 2.631 0-.128-.064-.256-.128-.449-.257-.962-.578-1.86-1.027-2.695-2.567-1.155-4.877-1.347-4.877-1.347-4.877-.321-8.535 3.08-7.765 6.802v.513c-1.668-3.337.963-7.636 5.776-8.535 0 0 2.246-.385 5.005 0a11.8 11.8 0 0 0-2.374-1.989c-2.76.32-4.813 1.283-4.813 1.283-4.428 2.182-5.84 7.06-3.401 9.819.064.192.192.32.32.449-3.08-2.054-2.887-7.123.77-10.396 0 0 1.733-1.476 4.3-2.503C14.375.193 13.283 0 12.193 0 10.01 1.668 8.79 3.465 8.79 3.465c-2.759 4.171-1.604 9.113 1.99 10.268h.064c.128.064.192.128.32.192-3.657-.192-6.031-4.684-4.427-9.369 0 0 .77-2.053 2.374-4.171-.962.257-1.796.578-2.63 1.09-1.027 2.568-1.284 4.75-1.284 4.75-.321 4.94 3.016 8.599 6.61 7.893H12c.128 0 .257 0 .385-.065-3.273 1.669-7.444-1.026-8.406-5.903 0 0-.385-2.182 0-4.941-.77.77-1.476 1.604-2.054 2.63.321 2.696 1.284 4.685 1.284 4.685 2.181 4.492 6.994 5.968 9.754 3.401l.064-.064c.128-.064.256-.128.32-.257-1.989 3.145-6.994 3.016-10.203-.77 0 0-1.604-2.117-2.438-4.556 0-.064-.642 3.209-.642 3.209 1.604 1.925 3.658 3.529 3.658 3.529 3.979 2.695 8.663 1.668 9.946-1.668a1.4 1.4 0 0 0 .321-.514c-.385 3.594-4.684 5.84-9.176 4.236 0 0-1.99-.77-4.107-2.439 0 .064.064.193.064.257a15 15 0 0 0 1.091 2.823c2.438 1.027 4.62 1.22 4.62 1.22 4.877.32 8.47-3.08 7.765-6.674v-.514c1.54 3.337-1.09 7.508-5.84 8.47 0 0-2.117.386-4.748 0a11.2 11.2 0 0 0 2.117 1.798c2.76-.321 4.813-1.284 4.813-1.284 4.3-2.117 5.776-6.802 3.53-9.625-.065-.193-.193-.385-.321-.578 2.952 2.118 2.76 7.059-.899 10.267 0 0-1.796 1.476-4.427 2.567 1.026.321 2.117.578 3.208.642 2.246-1.733 3.594-3.658 3.594-3.658 2.76-4.17 1.604-9.112-1.925-10.267a1.04 1.04 0 0 0-.45-.257c3.722.193 6.032 4.685 4.428 9.37 0 0-.77 2.245-2.567 4.491.129 0 .257-.064.45-.128a17.6 17.6 0 0 0 2.566-.963c1.091-2.63 1.284-4.94 1.284-4.94.32-4.878-2.888-8.472-6.417-7.958-.129 0-.321-.064-.45-.064h-.128c3.273-1.412 7.316 1.219 8.214 5.968 0 0 .578 2.246.128 4.94-.064.386-.256.963-.577 1.54z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.182 0a2.18 2.18 0 0 0-2.18 2.114L0 2.182v6.545a2.182 2.182 0 0 0 4.364 0V2.182A2.18 2.18 0 0 0 2.182 0m6.545 0a2.18 2.18 0 0 0-2.18 2.114l-.002.068v13.09a2.182 2.182 0 0 0 4.364 0V2.183A2.18 2.18 0 0 0 8.727 0m6.546 0a2.18 2.18 0 0 0-2.182 2.182 2.18 2.18 0 0 0 2.182 2.182 2.18 2.18 0 0 0 2.182-2.182A2.18 2.18 0 0 0 15.273 0m6.545 0a2.18 2.18 0 0 0-2.18 2.114l-.002.068v19.636a2.182 2.182 0 0 0 4.364 0V2.182A2.18 2.18 0 0 0 21.818 0m-6.545 6.545c-1.183 0-2.145.94-2.181 2.114l-.001.068v13.091a2.182 2.182 0 0 0 4.364 0V8.728a2.18 2.18 0 0 0-2.182-2.183M2.182 13.091a2.18 2.18 0 0 0-2.18 2.114L0 15.273v6.545a2.182 2.182 0 0 0 4.364 0v-6.545a2.18 2.18 0 0 0-2.182-2.182m6.545 6.545a2.18 2.18 0 0 0-2.182 2.182A2.18 2.18 0 0 0 8.727 24a2.18 2.18 0 0 0 2.182-2.182 2.18 2.18 0 0 0-2.182-2.182"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.863 8.996c-.296 0-.664.21-.815.467L.064 14.537c-.15.257-.029.467.267.467h19.805c.297 0 .665-.21.816-.467l2.983-5.074c.15-.257.03-.467-.268-.467zm3.41 1.975h1.09l-.232.402h-.776c-.238 0-.312.093-.312.338v.807h1.37l-.233.402H6.502v-1.197c0-.589.307-.752.771-.752m1.444 0h.937c.703 0 1.002.27 1.002.959 0 .73-.301.99-.976.99h-.963zm7.832 0h1.09l-.233.402h-.775c-.239 0-.313.093-.313.338-.004.264-.002.539-.002.807h1.372l-.233.402h-1.678v-1.197c0-.589.308-.752.772-.752m-11.567.004v.986l.569-.984.65-.002v1.941h-.547v-1.191l-.672 1.191h-.546v-1.191l-.688 1.19h-.535l1.121-1.938zm5.98 0h.546v1.941h-.545zm1.798 0h.781v1.941h-.553v-1.383l-.797 1.383h-.552zm1.256 0h1.714l-.232.404h-.504v1.537h-.533v-1.537h-.68zm3.873 0h.547v1.941h-.547zm1.345 0h.545l-.558.968-.002.004h.002l.558.969h-.545l-.56-.97zm-9.994.398v1.145h.297c.432 0 .567-.104.567-.586 0-.483-.135-.559-.567-.559zm-1.847.416h.87l-.185.318h-.86zm9.255 0h.872l-.186.318h-.86Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.516 0H6.478L4.417.164a5.16 5.16 0 0 0-3.184 1.827 5.5 5.5 0 0 0-.981 2.06C-.068 5.336.015 6.992.015 8.548v7.284c0 2.377.038 4.504 1.007 5.878a5.15 5.15 0 0 0 2.435 1.873c1.232.332 2.509.467 3.783.401h6.967c.622 0 1.25.007 1.87.007 2.149 0 4.19-.092 5.504-.921a5.07 5.07 0 0 0 2.013-2.53c.459-1.308.398-3.127.398-4.871V9.415c0-3.264.115-5.748-1.335-7.565S18.727 0 15.516 0m0 .327a23 23 0 0 1 4.167.237 4.32 4.32 0 0 1 2.718 1.49 5.65 5.65 0 0 1 1.108 2.823c.143 1.284.195 2.576.156 3.867v7.475c.005 1.52.011 3.092-.382 4.212a4.72 4.72 0 0 1-1.878 2.36 5.75 5.75 0 0 1-2.307.724 23.5 23.5 0 0 1-3.021.147l-1.87-.008H7.241a12 12 0 0 1-3.675-.381 4.83 4.83 0 0 1-2.276-1.754 5.3 5.3 0 0 1-.81-2.414 26 26 0 0 1-.137-3.272V8.548c0-.268 0-.545-.005-.812A15.6 15.6 0 0 1 .567 4.13a5.2 5.2 0 0 1 .927-1.94A4.83 4.83 0 0 1 4.464.491L5.852.382l.639-.055zm2.147 8.845-.174-.286-.26-.357a7 7 0 0 0-.267-.331c-.029-.034-.055-.061-.085-.094.362 7.124-6.189 10.879-10.683 7.917a6.7 6.7 0 0 0 5.716 3.224c3.665 0 6.68-3.015 6.68-6.679 0-1.194-.32-2.366-.927-3.394M5.674 14.978c.081.207.636.521.795.626 4.195 2.764 10.247-.825 9.908-7.474-.007-.148-.006-.538-.089-.61a7.7 7.7 0 0 0-1.44-.995c-1.103 3.961-6.324 6.303-9.404 4.362a6.6 6.6 0 0 0 .23 4.091m-.075-4.598q.05.05.111.084c1.117.704 2.547.769 3.922.385 2.116-.591 4.119-2.248 4.735-4.458.014-.05.039-.156.028-.165a3.4 3.4 0 0 1-.341-.296c-.679-.715-.826-.975-.382-2.603-3.168.512-6.771 4.01-7.534 5.87q-.003.011-.005.022a6.7 6.7 0 0 0-.534 1.161"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.21 0A4.2 4.2 0 0 0 0 4.21v15.58A4.2 4.2 0 0 0 4.21 24h15.58A4.2 4.2 0 0 0 24 19.79v-1.093a5 5 0 0 1-.422.02c-2.577 0-4.027-2.146-4.09-4.832a8 8 0 0 1 .022-.708c.093-1.186.475-2.241 1.105-3.022a3.9 3.9 0 0 1 1.395-1.1c.468-.237 1.127-.367 1.664-.367h.023q.151 0 .303.01V4.211A4.2 4.2 0 0 0 19.79 0Zm.198 5.583h4.165l3.588 8.435 3.59-8.435h3.864v.146l-.019.004c-.705.16-1.063.397-1.063 1.254h-.003l.003 10.274c.06.676.424.885 1.063 1.03l.02.004v.145h-4.923v-.145l.019-.005c.639-.144.994-.353 1.054-1.03V7.267l-4.745 11.15h-.261L6.15 7.569v9.445c0 .857.358 1.094 1.063 1.253l.02.004v.147H4.405v-.147l.019-.004c.705-.16 1.065-.397 1.065-1.253V6.987c0-.857-.358-1.094-1.064-1.254l-.018-.004zm19.25 3.668c-1.086.023-1.733 1.323-1.813 3.124H24V9.298a1.4 1.4 0 0 0-.342-.047m-1.862 3.632c-.1 1.756.86 3.239 2.204 3.634v-3.634z"/></svg>
|