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
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is copied from the upstream ReadTheDocs Sphinx
|
|
3
|
+
* theme. To aid upgradability this file should *not* be edited.
|
|
4
|
+
* modifications we need should be included in theme_extra.css.
|
|
5
|
+
*
|
|
6
|
+
* https://github.com/readthedocs/sphinx_rtd_theme
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* sphinx_rtd_theme version 1.2.0 | MIT license */
|
|
10
|
+
html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .eqno .headerlink:before,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}/*!
|
|
11
|
+
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
|
12
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
|
13
|
+
*/@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:"/";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search>a:hover{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:" : "}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Wrap inline code samples otherwise they shoot of the side and
|
|
3
|
+
* can't be read at all.
|
|
4
|
+
*
|
|
5
|
+
* https://github.com/mkdocs/mkdocs/issues/313
|
|
6
|
+
* https://github.com/mkdocs/mkdocs/issues/233
|
|
7
|
+
* https://github.com/mkdocs/mkdocs/issues/834
|
|
8
|
+
*/
|
|
9
|
+
.rst-content code {
|
|
10
|
+
white-space: pre-wrap;
|
|
11
|
+
word-wrap: break-word;
|
|
12
|
+
padding: 2px 5px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Make code blocks display as blocks and give them the appropriate
|
|
17
|
+
* font size and padding.
|
|
18
|
+
*
|
|
19
|
+
* https://github.com/mkdocs/mkdocs/issues/855
|
|
20
|
+
* https://github.com/mkdocs/mkdocs/issues/834
|
|
21
|
+
* https://github.com/mkdocs/mkdocs/issues/233
|
|
22
|
+
*/
|
|
23
|
+
.rst-content pre code {
|
|
24
|
+
white-space: pre;
|
|
25
|
+
word-wrap: normal;
|
|
26
|
+
display: block;
|
|
27
|
+
padding: 12px;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Fix code colors
|
|
33
|
+
*
|
|
34
|
+
* https://github.com/mkdocs/mkdocs/issues/2027
|
|
35
|
+
*/
|
|
36
|
+
.rst-content code {
|
|
37
|
+
color: #E74C3C;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.rst-content pre code {
|
|
41
|
+
color: #000;
|
|
42
|
+
background: #f8f8f8;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/*
|
|
46
|
+
* Fix link colors when the link text is inline code.
|
|
47
|
+
*
|
|
48
|
+
* https://github.com/mkdocs/mkdocs/issues/718
|
|
49
|
+
*/
|
|
50
|
+
a code {
|
|
51
|
+
color: #2980B9;
|
|
52
|
+
}
|
|
53
|
+
a:hover code {
|
|
54
|
+
color: #3091d1;
|
|
55
|
+
}
|
|
56
|
+
a:visited code {
|
|
57
|
+
color: #9B59B6;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/*
|
|
61
|
+
* The CSS classes from highlight.js seem to clash with the
|
|
62
|
+
* ReadTheDocs theme causing some code to be incorrectly made
|
|
63
|
+
* bold and italic.
|
|
64
|
+
*
|
|
65
|
+
* https://github.com/mkdocs/mkdocs/issues/411
|
|
66
|
+
*/
|
|
67
|
+
pre .cs, pre .c {
|
|
68
|
+
font-weight: inherit;
|
|
69
|
+
font-style: inherit;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/*
|
|
73
|
+
* Fix some issues with the theme and non-highlighted code
|
|
74
|
+
* samples. Without and highlighting styles attached the
|
|
75
|
+
* formatting is broken.
|
|
76
|
+
*
|
|
77
|
+
* https://github.com/mkdocs/mkdocs/issues/319
|
|
78
|
+
*/
|
|
79
|
+
.rst-content .no-highlight {
|
|
80
|
+
display: block;
|
|
81
|
+
padding: 0.5em;
|
|
82
|
+
color: #333;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/*
|
|
87
|
+
* Additions specific to the search functionality provided by MkDocs
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
.search-results {
|
|
91
|
+
margin-top: 23px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.search-results article {
|
|
95
|
+
border-top: 1px solid #E1E4E5;
|
|
96
|
+
padding-top: 24px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.search-results article:first-child {
|
|
100
|
+
border-top: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
form .search-query {
|
|
104
|
+
width: 100%;
|
|
105
|
+
border-radius: 50px;
|
|
106
|
+
padding: 6px 12px;
|
|
107
|
+
border-color: #D1D4D5;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/*
|
|
111
|
+
* Improve inline code blocks within admonitions.
|
|
112
|
+
*
|
|
113
|
+
* https://github.com/mkdocs/mkdocs/issues/656
|
|
114
|
+
*/
|
|
115
|
+
.rst-content .admonition code {
|
|
116
|
+
color: #404040;
|
|
117
|
+
border: 1px solid #c7c9cb;
|
|
118
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
119
|
+
background: #f8fbfd;
|
|
120
|
+
background: rgba(255, 255, 255, 0.7);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/*
|
|
124
|
+
* Account for wide tables which go off the side.
|
|
125
|
+
* Override borders to avoid weirdness on narrow tables.
|
|
126
|
+
*
|
|
127
|
+
* https://github.com/mkdocs/mkdocs/issues/834
|
|
128
|
+
* https://github.com/mkdocs/mkdocs/pull/1034
|
|
129
|
+
*/
|
|
130
|
+
.rst-content .section .docutils {
|
|
131
|
+
width: 100%;
|
|
132
|
+
overflow: auto;
|
|
133
|
+
display: block;
|
|
134
|
+
border: none;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
td, th {
|
|
138
|
+
border: 1px solid #e1e4e5 !important;
|
|
139
|
+
border-collapse: collapse;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/*
|
|
143
|
+
* Without the following amendments, the navigation in the theme will be
|
|
144
|
+
* slightly cut off. This is due to the fact that the .wy-nav-side has a
|
|
145
|
+
* padding-bottom of 2em, which must not necessarily align with the font-size of
|
|
146
|
+
* 90 % on the .rst-current-version container, combined with the padding of 12px
|
|
147
|
+
* above and below. These amendments fix this in two steps: First, make sure the
|
|
148
|
+
* .rst-current-version container has a fixed height of 40px, achieved using
|
|
149
|
+
* line-height, and then applying a padding-bottom of 40px to this container. In
|
|
150
|
+
* a second step, the items within that container are re-aligned using flexbox.
|
|
151
|
+
*
|
|
152
|
+
* https://github.com/mkdocs/mkdocs/issues/2012
|
|
153
|
+
*/
|
|
154
|
+
.wy-nav-side {
|
|
155
|
+
padding-bottom: 40px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/* For section-index only */
|
|
159
|
+
.wy-menu-vertical .current-section p {
|
|
160
|
+
background-color: #e3e3e3;
|
|
161
|
+
color: #404040;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/*
|
|
165
|
+
* The second step of above amendment: Here we make sure the items are aligned
|
|
166
|
+
* correctly within the .rst-current-version container. Using flexbox, we
|
|
167
|
+
* achieve it in such a way that it will look like the following:
|
|
168
|
+
*
|
|
169
|
+
* [No repo_name]
|
|
170
|
+
* Next >> // On the first page
|
|
171
|
+
* << Previous Next >> // On all subsequent pages
|
|
172
|
+
*
|
|
173
|
+
* [With repo_name]
|
|
174
|
+
* <repo_name> Next >> // On the first page
|
|
175
|
+
* <repo_name> << Previous Next >> // On all subsequent pages
|
|
176
|
+
*
|
|
177
|
+
* https://github.com/mkdocs/mkdocs/issues/2012
|
|
178
|
+
*/
|
|
179
|
+
.rst-versions .rst-current-version {
|
|
180
|
+
padding: 0 12px;
|
|
181
|
+
display: flex;
|
|
182
|
+
font-size: initial;
|
|
183
|
+
justify-content: space-between;
|
|
184
|
+
align-items: center;
|
|
185
|
+
line-height: 40px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/*
|
|
189
|
+
* Please note that this amendment also involves removing certain inline-styles
|
|
190
|
+
* from the file ./mkdocs/themes/readthedocs/versions.html.
|
|
191
|
+
*
|
|
192
|
+
* https://github.com/mkdocs/mkdocs/issues/2012
|
|
193
|
+
*/
|
|
194
|
+
.rst-current-version span {
|
|
195
|
+
flex: 1;
|
|
196
|
+
text-align: center;
|
|
197
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<footer>
|
|
2
|
+
{%- block next_prev %}
|
|
3
|
+
{%- if config.theme.prev_next_buttons_location|lower in ['bottom', 'both']
|
|
4
|
+
and page and (page.next_page or page.previous_page) %}
|
|
5
|
+
<div class="rst-footer-buttons" role="navigation" aria-label="{% trans %}Footer Navigation{% endtrans %}">
|
|
6
|
+
{%- if page.previous_page %}
|
|
7
|
+
<a href="{{ page.previous_page.url|url }}" class="btn btn-neutral float-left" title="{{ page.previous_page.title }}"><span class="icon icon-circle-arrow-left"></span> {% trans %}Previous{% endtrans %}</a>
|
|
8
|
+
{%- endif %}
|
|
9
|
+
{%- if page.next_page %}
|
|
10
|
+
<a href="{{ page.next_page.url|url }}" class="btn btn-neutral float-right" title="{{ page.next_page.title }}">{% trans %}Next{% endtrans %} <span class="icon icon-circle-arrow-right"></span></a>
|
|
11
|
+
{%- endif %}
|
|
12
|
+
</div>
|
|
13
|
+
{%- endif %}
|
|
14
|
+
{%- endblock %}
|
|
15
|
+
|
|
16
|
+
<hr/>
|
|
17
|
+
|
|
18
|
+
<div role="contentinfo">
|
|
19
|
+
<!-- Copyright etc -->
|
|
20
|
+
{%- if config.copyright %}
|
|
21
|
+
<p>{{ config.copyright }}</p>
|
|
22
|
+
{%- endif %}
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
{% trans mkdocs_link='<a href="https://www.mkdocs.org/">MkDocs</a>', sphinx_link='<a href="https://github.com/readthedocs/sphinx_rtd_theme">{}</a>'.format(gettext('theme')), rtd_link='<a href="https://readthedocs.org">Read the Docs</a>' %}Built with %(mkdocs_link)s using a %(sphinx_link)s provided by %(rtd_link)s.{% endtrans %}
|
|
26
|
+
</footer>
|
|
Binary file
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
|
3
|
+
*/
|
|
4
|
+
!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document);
|