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.
Files changed (14911) hide show
  1. docsforge/__init__.py +11 -0
  2. docsforge/__main__.py +313 -0
  3. docsforge/_vendor/mkdocs/__init__.py +5 -0
  4. docsforge/_vendor/mkdocs/__main__.py +370 -0
  5. docsforge/_vendor/mkdocs/commands/__init__.py +0 -0
  6. docsforge/_vendor/mkdocs/commands/build.py +369 -0
  7. docsforge/_vendor/mkdocs/commands/gh_deploy.py +169 -0
  8. docsforge/_vendor/mkdocs/commands/new.py +53 -0
  9. docsforge/_vendor/mkdocs/commands/serve.py +112 -0
  10. docsforge/_vendor/mkdocs/config/__init__.py +3 -0
  11. docsforge/_vendor/mkdocs/config/base.py +392 -0
  12. docsforge/_vendor/mkdocs/config/config_options.py +1226 -0
  13. docsforge/_vendor/mkdocs/config/defaults.py +218 -0
  14. docsforge/_vendor/mkdocs/contrib/__init__.py +0 -0
  15. docsforge/_vendor/mkdocs/contrib/search/__init__.py +120 -0
  16. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
  17. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.da.js +284 -0
  18. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.de.js +384 -0
  19. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.du.js +450 -0
  20. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.es.js +599 -0
  21. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
  22. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
  23. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
  24. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
  25. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
  26. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.it.js +617 -0
  27. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
  28. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
  29. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
  30. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
  31. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
  32. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
  33. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.no.js +258 -0
  34. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
  35. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
  36. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
  37. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
  38. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  39. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
  40. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
  41. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.te.js +122 -0
  42. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.th.js +99 -0
  43. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
  44. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
  45. docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
  46. docsforge/_vendor/mkdocs/contrib/search/lunr-language/tinyseg.js +206 -0
  47. docsforge/_vendor/mkdocs/contrib/search/prebuild-index.js +56 -0
  48. docsforge/_vendor/mkdocs/contrib/search/search_index.py +225 -0
  49. docsforge/_vendor/mkdocs/contrib/search/templates/search/lunr.js +3475 -0
  50. docsforge/_vendor/mkdocs/contrib/search/templates/search/main.js +109 -0
  51. docsforge/_vendor/mkdocs/contrib/search/templates/search/worker.js +133 -0
  52. docsforge/_vendor/mkdocs/exceptions.py +41 -0
  53. docsforge/_vendor/mkdocs/livereload/__init__.py +381 -0
  54. docsforge/_vendor/mkdocs/localization.py +92 -0
  55. docsforge/_vendor/mkdocs/plugins.py +697 -0
  56. docsforge/_vendor/mkdocs/py.typed +0 -0
  57. docsforge/_vendor/mkdocs/structure/__init__.py +36 -0
  58. docsforge/_vendor/mkdocs/structure/files.py +626 -0
  59. docsforge/_vendor/mkdocs/structure/nav.py +251 -0
  60. docsforge/_vendor/mkdocs/structure/pages.py +569 -0
  61. docsforge/_vendor/mkdocs/structure/toc.py +80 -0
  62. docsforge/_vendor/mkdocs/templates/sitemap.xml +11 -0
  63. docsforge/_vendor/mkdocs/theme.py +166 -0
  64. docsforge/_vendor/mkdocs/themes/__init__.py +0 -0
  65. docsforge/_vendor/mkdocs/themes/mkdocs/404.html +12 -0
  66. docsforge/_vendor/mkdocs/themes/mkdocs/__init__.py +0 -0
  67. docsforge/_vendor/mkdocs/themes/mkdocs/base.html +251 -0
  68. docsforge/_vendor/mkdocs/themes/mkdocs/content.html +9 -0
  69. docsforge/_vendor/mkdocs/themes/mkdocs/css/base.css +366 -0
  70. docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css +12 -0
  71. docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css.map +1 -0
  72. docsforge/_vendor/mkdocs/themes/mkdocs/css/brands.min.css +6 -0
  73. docsforge/_vendor/mkdocs/themes/mkdocs/css/fontawesome.min.css +9 -0
  74. docsforge/_vendor/mkdocs/themes/mkdocs/css/solid.min.css +6 -0
  75. docsforge/_vendor/mkdocs/themes/mkdocs/css/v4-font-face.min.css +6 -0
  76. docsforge/_vendor/mkdocs/themes/mkdocs/img/favicon.ico +0 -0
  77. docsforge/_vendor/mkdocs/themes/mkdocs/img/grid.png +0 -0
  78. docsforge/_vendor/mkdocs/themes/mkdocs/js/base.js +287 -0
  79. docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js +7 -0
  80. docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js.map +1 -0
  81. docsforge/_vendor/mkdocs/themes/mkdocs/js/darkmode.js +65 -0
  82. docsforge/_vendor/mkdocs/themes/mkdocs/keyboard-modal.html +40 -0
  83. docsforge/_vendor/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  84. docsforge/_vendor/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  85. docsforge/_vendor/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  86. docsforge/_vendor/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  87. docsforge/_vendor/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  88. docsforge/_vendor/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  89. docsforge/_vendor/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  90. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
  91. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  92. docsforge/_vendor/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
  93. docsforge/_vendor/mkdocs/themes/mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  94. docsforge/_vendor/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  95. docsforge/_vendor/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  96. docsforge/_vendor/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  97. docsforge/_vendor/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  98. docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  99. docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  100. docsforge/_vendor/mkdocs/themes/mkdocs/main.html +10 -0
  101. docsforge/_vendor/mkdocs/themes/mkdocs/mkdocs_theme.yml +28 -0
  102. docsforge/_vendor/mkdocs/themes/mkdocs/nav-sub.html +14 -0
  103. docsforge/_vendor/mkdocs/themes/mkdocs/search-modal.html +21 -0
  104. docsforge/_vendor/mkdocs/themes/mkdocs/toc.html +26 -0
  105. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.ttf +0 -0
  106. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.woff2 +0 -0
  107. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.ttf +0 -0
  108. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.woff2 +0 -0
  109. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.ttf +0 -0
  110. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.woff2 +0 -0
  111. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
  112. docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
  113. docsforge/_vendor/mkdocs/themes/readthedocs/404.html +9 -0
  114. docsforge/_vendor/mkdocs/themes/readthedocs/__init__.py +0 -0
  115. docsforge/_vendor/mkdocs/themes/readthedocs/base.html +199 -0
  116. docsforge/_vendor/mkdocs/themes/readthedocs/breadcrumbs.html +44 -0
  117. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff +0 -0
  118. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
  119. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff +0 -0
  120. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
  121. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot +0 -0
  122. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg +2671 -0
  123. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf +0 -0
  124. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff +0 -0
  125. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2 +0 -0
  126. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff +0 -0
  127. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2 +0 -0
  128. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff +0 -0
  129. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2 +0 -0
  130. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff +0 -0
  131. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2 +0 -0
  132. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff +0 -0
  133. docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2 +0 -0
  134. docsforge/_vendor/mkdocs/themes/readthedocs/css/theme.css +13 -0
  135. docsforge/_vendor/mkdocs/themes/readthedocs/css/theme_extra.css +197 -0
  136. docsforge/_vendor/mkdocs/themes/readthedocs/footer.html +26 -0
  137. docsforge/_vendor/mkdocs/themes/readthedocs/img/favicon.ico +0 -0
  138. docsforge/_vendor/mkdocs/themes/readthedocs/js/html5shiv.min.js +4 -0
  139. docsforge/_vendor/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js +2 -0
  140. docsforge/_vendor/mkdocs/themes/readthedocs/js/theme.js +2 -0
  141. docsforge/_vendor/mkdocs/themes/readthedocs/js/theme_extra.js +8 -0
  142. docsforge/_vendor/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo +0 -0
  143. docsforge/_vendor/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo +0 -0
  144. docsforge/_vendor/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
  145. docsforge/_vendor/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
  146. docsforge/_vendor/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo +0 -0
  147. docsforge/_vendor/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo +0 -0
  148. docsforge/_vendor/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
  149. docsforge/_vendor/mkdocs/themes/readthedocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
  150. docsforge/_vendor/mkdocs/themes/readthedocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
  151. docsforge/_vendor/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
  152. docsforge/_vendor/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
  153. docsforge/_vendor/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
  154. docsforge/_vendor/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
  155. docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
  156. docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
  157. docsforge/_vendor/mkdocs/themes/readthedocs/main.html +10 -0
  158. docsforge/_vendor/mkdocs/themes/readthedocs/mkdocs_theme.yml +25 -0
  159. docsforge/_vendor/mkdocs/themes/readthedocs/nav.html +22 -0
  160. docsforge/_vendor/mkdocs/themes/readthedocs/search.html +16 -0
  161. docsforge/_vendor/mkdocs/themes/readthedocs/searchbox.html +5 -0
  162. docsforge/_vendor/mkdocs/themes/readthedocs/toc.html +12 -0
  163. docsforge/_vendor/mkdocs/themes/readthedocs/versions.html +27 -0
  164. docsforge/_vendor/mkdocs/utils/__init__.py +410 -0
  165. docsforge/_vendor/mkdocs/utils/babel_stub.py +29 -0
  166. docsforge/_vendor/mkdocs/utils/cache.py +36 -0
  167. docsforge/_vendor/mkdocs/utils/filters.py +1 -0
  168. docsforge/_vendor/mkdocs/utils/meta.py +100 -0
  169. docsforge/_vendor/mkdocs/utils/rendering.py +104 -0
  170. docsforge/_vendor/mkdocs/utils/templates.py +55 -0
  171. docsforge/_vendor/mkdocs/utils/yaml.py +150 -0
  172. docsforge/_vendor/properdocs/__init__.py +1 -0
  173. docsforge/_vendor/properdocs/__main__.py +382 -0
  174. docsforge/_vendor/properdocs/commands/__init__.py +0 -0
  175. docsforge/_vendor/properdocs/commands/build.py +379 -0
  176. docsforge/_vendor/properdocs/commands/get_deps.py +250 -0
  177. docsforge/_vendor/properdocs/commands/gh_deploy.py +169 -0
  178. docsforge/_vendor/properdocs/commands/new.py +53 -0
  179. docsforge/_vendor/properdocs/commands/serve.py +125 -0
  180. docsforge/_vendor/properdocs/config/__init__.py +3 -0
  181. docsforge/_vendor/properdocs/config/base.py +381 -0
  182. docsforge/_vendor/properdocs/config/config_options.py +1226 -0
  183. docsforge/_vendor/properdocs/config/defaults.py +222 -0
  184. docsforge/_vendor/properdocs/contrib/__init__.py +0 -0
  185. docsforge/_vendor/properdocs/contrib/search/__init__.py +120 -0
  186. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
  187. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.da.js +284 -0
  188. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.de.js +384 -0
  189. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.du.js +450 -0
  190. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.es.js +599 -0
  191. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
  192. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
  193. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
  194. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
  195. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
  196. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.it.js +617 -0
  197. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
  198. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
  199. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
  200. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
  201. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
  202. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
  203. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.no.js +258 -0
  204. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
  205. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
  206. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
  207. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
  208. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  209. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
  210. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
  211. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.te.js +122 -0
  212. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.th.js +99 -0
  213. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
  214. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
  215. docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
  216. docsforge/_vendor/properdocs/contrib/search/lunr-language/tinyseg.js +206 -0
  217. docsforge/_vendor/properdocs/contrib/search/prebuild-index.js +56 -0
  218. docsforge/_vendor/properdocs/contrib/search/search_index.py +225 -0
  219. docsforge/_vendor/properdocs/contrib/search/templates/search/lunr.js +3475 -0
  220. docsforge/_vendor/properdocs/contrib/search/templates/search/main.js +109 -0
  221. docsforge/_vendor/properdocs/contrib/search/templates/search/worker.js +133 -0
  222. docsforge/_vendor/properdocs/exceptions.py +44 -0
  223. docsforge/_vendor/properdocs/livereload/__init__.py +382 -0
  224. docsforge/_vendor/properdocs/localization.py +93 -0
  225. docsforge/_vendor/properdocs/plugins.py +707 -0
  226. docsforge/_vendor/properdocs/py.typed +0 -0
  227. docsforge/_vendor/properdocs/replacement.py +42 -0
  228. docsforge/_vendor/properdocs/replacement_warning.py +91 -0
  229. docsforge/_vendor/properdocs/structure/__init__.py +36 -0
  230. docsforge/_vendor/properdocs/structure/files.py +628 -0
  231. docsforge/_vendor/properdocs/structure/nav.py +259 -0
  232. docsforge/_vendor/properdocs/structure/pages.py +582 -0
  233. docsforge/_vendor/properdocs/structure/toc.py +82 -0
  234. docsforge/_vendor/properdocs/templates/sitemap.xml +11 -0
  235. docsforge/_vendor/properdocs/theme.py +167 -0
  236. docsforge/_vendor/properdocs/themes/__init__.py +0 -0
  237. docsforge/_vendor/properdocs/utils/__init__.py +419 -0
  238. docsforge/_vendor/properdocs/utils/babel_stub.py +29 -0
  239. docsforge/_vendor/properdocs/utils/cache.py +75 -0
  240. docsforge/_vendor/properdocs/utils/filters.py +1 -0
  241. docsforge/_vendor/properdocs/utils/meta.py +101 -0
  242. docsforge/_vendor/properdocs/utils/rendering.py +104 -0
  243. docsforge/_vendor/properdocs/utils/templates.py +57 -0
  244. docsforge/_vendor/properdocs/utils/yaml.py +165 -0
  245. docsforge/_vendor_shims/__init__.py +5 -0
  246. docsforge/commands/__init__.py +0 -0
  247. docsforge/commands/build.py +377 -0
  248. docsforge/commands/get_deps.py +246 -0
  249. docsforge/commands/gh_deploy.py +169 -0
  250. docsforge/commands/new.py +53 -0
  251. docsforge/commands/serve.py +126 -0
  252. docsforge/config/__init__.py +3 -0
  253. docsforge/config/base.py +379 -0
  254. docsforge/config/config_options.py +1228 -0
  255. docsforge/config/defaults.py +222 -0
  256. docsforge/contrib/__init__.py +0 -0
  257. docsforge/contrib/search/__init__.py +121 -0
  258. docsforge/contrib/search/lunr-language/lunr.ar.js +381 -0
  259. docsforge/contrib/search/lunr-language/lunr.da.js +284 -0
  260. docsforge/contrib/search/lunr-language/lunr.de.js +384 -0
  261. docsforge/contrib/search/lunr-language/lunr.du.js +450 -0
  262. docsforge/contrib/search/lunr-language/lunr.es.js +599 -0
  263. docsforge/contrib/search/lunr-language/lunr.fi.js +541 -0
  264. docsforge/contrib/search/lunr-language/lunr.fr.js +703 -0
  265. docsforge/contrib/search/lunr-language/lunr.hi.js +123 -0
  266. docsforge/contrib/search/lunr-language/lunr.hu.js +565 -0
  267. docsforge/contrib/search/lunr-language/lunr.hy.js +98 -0
  268. docsforge/contrib/search/lunr-language/lunr.it.js +617 -0
  269. docsforge/contrib/search/lunr-language/lunr.ja.js +188 -0
  270. docsforge/contrib/search/lunr-language/lunr.jp.js +5 -0
  271. docsforge/contrib/search/lunr-language/lunr.kn.js +110 -0
  272. docsforge/contrib/search/lunr-language/lunr.ko.js +114 -0
  273. docsforge/contrib/search/lunr-language/lunr.multi.js +79 -0
  274. docsforge/contrib/search/lunr-language/lunr.nl.js +448 -0
  275. docsforge/contrib/search/lunr-language/lunr.no.js +258 -0
  276. docsforge/contrib/search/lunr-language/lunr.pt.js +570 -0
  277. docsforge/contrib/search/lunr-language/lunr.ro.js +558 -0
  278. docsforge/contrib/search/lunr-language/lunr.ru.js +391 -0
  279. docsforge/contrib/search/lunr-language/lunr.sa.js +110 -0
  280. docsforge/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
  281. docsforge/contrib/search/lunr-language/lunr.sv.js +256 -0
  282. docsforge/contrib/search/lunr-language/lunr.ta.js +123 -0
  283. docsforge/contrib/search/lunr-language/lunr.te.js +122 -0
  284. docsforge/contrib/search/lunr-language/lunr.th.js +99 -0
  285. docsforge/contrib/search/lunr-language/lunr.tr.js +1087 -0
  286. docsforge/contrib/search/lunr-language/lunr.vi.js +84 -0
  287. docsforge/contrib/search/lunr-language/lunr.zh.js +145 -0
  288. docsforge/contrib/search/lunr-language/tinyseg.js +206 -0
  289. docsforge/contrib/search/prebuild-index.js +56 -0
  290. docsforge/contrib/search/search_index.py +225 -0
  291. docsforge/contrib/search/templates/search/lunr.js +3475 -0
  292. docsforge/contrib/search/templates/search/main.js +109 -0
  293. docsforge/contrib/search/templates/search/worker.js +133 -0
  294. docsforge/exceptions.py +44 -0
  295. docsforge/extensions/__init__.py +30 -0
  296. docsforge/extensions/emoji.py +108 -0
  297. docsforge/extensions/preview.py +234 -0
  298. docsforge/livereload/__init__.py +381 -0
  299. docsforge/overrides/assets/javascripts/custom.f46acd93.min.js +5 -0
  300. docsforge/overrides/assets/javascripts/custom.f46acd93.min.js.map +7 -0
  301. docsforge/overrides/assets/javascripts/iconsearch_index.json +1 -0
  302. docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css +1 -0
  303. docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css.map +1 -0
  304. docsforge/overrides/home.html +29 -0
  305. docsforge/overrides/hooks/shortcodes.py +305 -0
  306. docsforge/overrides/hooks/translations.html +23 -0
  307. docsforge/overrides/hooks/translations.py +208 -0
  308. docsforge/overrides/main.html +27 -0
  309. docsforge/plugins/__init__.py +46 -0
  310. docsforge/plugins/blog/__init__.py +44 -0
  311. docsforge/plugins/blog/author.py +51 -0
  312. docsforge/plugins/blog/config.py +113 -0
  313. docsforge/plugins/blog/plugin.py +1094 -0
  314. docsforge/plugins/blog/readtime/__init__.py +62 -0
  315. docsforge/plugins/blog/readtime/parser.py +85 -0
  316. docsforge/plugins/blog/structure/__init__.py +348 -0
  317. docsforge/plugins/blog/structure/config.py +50 -0
  318. docsforge/plugins/blog/structure/markdown.py +72 -0
  319. docsforge/plugins/blog/structure/options.py +139 -0
  320. docsforge/plugins/group/__init__.py +30 -0
  321. docsforge/plugins/group/config.py +42 -0
  322. docsforge/plugins/group/plugin.py +172 -0
  323. docsforge/plugins/info/__init__.py +30 -0
  324. docsforge/plugins/info/config.py +46 -0
  325. docsforge/plugins/info/patterns.py +27 -0
  326. docsforge/plugins/info/plugin.py +574 -0
  327. docsforge/plugins/meta/__init__.py +30 -0
  328. docsforge/plugins/meta/config.py +44 -0
  329. docsforge/plugins/meta/plugin.py +133 -0
  330. docsforge/plugins/minify/__init__.py +0 -0
  331. docsforge/plugins/minify/plugin.py +240 -0
  332. docsforge/plugins/offline/__init__.py +30 -0
  333. docsforge/plugins/offline/config.py +41 -0
  334. docsforge/plugins/offline/plugin.py +80 -0
  335. docsforge/plugins/optimize/__init__.py +30 -0
  336. docsforge/plugins/optimize/config.py +63 -0
  337. docsforge/plugins/optimize/plugin.py +399 -0
  338. docsforge/plugins/privacy/__init__.py +30 -0
  339. docsforge/plugins/privacy/config.py +89 -0
  340. docsforge/plugins/privacy/parser.py +52 -0
  341. docsforge/plugins/privacy/plugin.py +691 -0
  342. docsforge/plugins/projects/__init__.py +30 -0
  343. docsforge/plugins/projects/builder/__init__.py +331 -0
  344. docsforge/plugins/projects/builder/log.py +111 -0
  345. docsforge/plugins/projects/builder/watcher/__init__.py +109 -0
  346. docsforge/plugins/projects/builder/watcher/handler.py +116 -0
  347. docsforge/plugins/projects/config.py +75 -0
  348. docsforge/plugins/projects/plugin.py +303 -0
  349. docsforge/plugins/projects/structure/__init__.py +252 -0
  350. docsforge/plugins/search/__init__.py +30 -0
  351. docsforge/plugins/search/config.py +74 -0
  352. docsforge/plugins/search/plugin.py +605 -0
  353. docsforge/plugins/social/__init__.py +30 -0
  354. docsforge/plugins/social/config.py +79 -0
  355. docsforge/plugins/social/layout.py +164 -0
  356. docsforge/plugins/social/plugin.py +1138 -0
  357. docsforge/plugins/social/templates/__init__.py +40 -0
  358. docsforge/plugins/social/templates/default/accent.yml +234 -0
  359. docsforge/plugins/social/templates/default/invert.yml +244 -0
  360. docsforge/plugins/social/templates/default/only/image.yml +77 -0
  361. docsforge/plugins/social/templates/default/variant.yml +255 -0
  362. docsforge/plugins/social/templates/default.yml +244 -0
  363. docsforge/plugins/tags/__init__.py +57 -0
  364. docsforge/plugins/tags/config.py +99 -0
  365. docsforge/plugins/tags/plugin.py +324 -0
  366. docsforge/plugins/tags/renderer/__init__.py +110 -0
  367. docsforge/plugins/tags/structure/__init__.py +30 -0
  368. docsforge/plugins/tags/structure/listing/__init__.py +234 -0
  369. docsforge/plugins/tags/structure/listing/config.py +126 -0
  370. docsforge/plugins/tags/structure/listing/manager/__init__.py +532 -0
  371. docsforge/plugins/tags/structure/listing/manager/toc.py +145 -0
  372. docsforge/plugins/tags/structure/listing/tree/__init__.py +176 -0
  373. docsforge/plugins/tags/structure/mapping/__init__.py +109 -0
  374. docsforge/plugins/tags/structure/mapping/manager/__init__.py +265 -0
  375. docsforge/plugins/tags/structure/mapping/storage/__init__.py +222 -0
  376. docsforge/plugins/tags/structure/tag/__init__.py +189 -0
  377. docsforge/plugins/tags/structure/tag/options.py +119 -0
  378. docsforge/plugins/tags/structure/tag/reference/__init__.py +91 -0
  379. docsforge/plugins/typeset/__init__.py +30 -0
  380. docsforge/plugins/typeset/config.py +41 -0
  381. docsforge/plugins/typeset/plugin.py +134 -0
  382. docsforge/structure/__init__.py +36 -0
  383. docsforge/structure/files.py +623 -0
  384. docsforge/structure/nav.py +260 -0
  385. docsforge/structure/pages.py +582 -0
  386. docsforge/structure/toc.py +82 -0
  387. docsforge/theme.py +37 -0
  388. docsforge/themes/material/templates/.icons/fontawesome/LICENSE.txt +165 -0
  389. docsforge/themes/material/templates/.icons/fontawesome/brands/11ty.svg +1 -0
  390. docsforge/themes/material/templates/.icons/fontawesome/brands/42-group.svg +1 -0
  391. docsforge/themes/material/templates/.icons/fontawesome/brands/500px.svg +1 -0
  392. docsforge/themes/material/templates/.icons/fontawesome/brands/accessible-icon.svg +1 -0
  393. docsforge/themes/material/templates/.icons/fontawesome/brands/accusoft.svg +1 -0
  394. docsforge/themes/material/templates/.icons/fontawesome/brands/adn.svg +1 -0
  395. docsforge/themes/material/templates/.icons/fontawesome/brands/adversal.svg +1 -0
  396. docsforge/themes/material/templates/.icons/fontawesome/brands/affiliatetheme.svg +1 -0
  397. docsforge/themes/material/templates/.icons/fontawesome/brands/airbnb.svg +1 -0
  398. docsforge/themes/material/templates/.icons/fontawesome/brands/algolia.svg +1 -0
  399. docsforge/themes/material/templates/.icons/fontawesome/brands/alipay.svg +1 -0
  400. docsforge/themes/material/templates/.icons/fontawesome/brands/amazon-pay.svg +1 -0
  401. docsforge/themes/material/templates/.icons/fontawesome/brands/amazon.svg +1 -0
  402. docsforge/themes/material/templates/.icons/fontawesome/brands/amilia.svg +1 -0
  403. docsforge/themes/material/templates/.icons/fontawesome/brands/android.svg +1 -0
  404. docsforge/themes/material/templates/.icons/fontawesome/brands/angellist.svg +1 -0
  405. docsforge/themes/material/templates/.icons/fontawesome/brands/angrycreative.svg +1 -0
  406. docsforge/themes/material/templates/.icons/fontawesome/brands/angular.svg +1 -0
  407. docsforge/themes/material/templates/.icons/fontawesome/brands/app-store-ios.svg +1 -0
  408. docsforge/themes/material/templates/.icons/fontawesome/brands/app-store.svg +1 -0
  409. docsforge/themes/material/templates/.icons/fontawesome/brands/apper.svg +1 -0
  410. docsforge/themes/material/templates/.icons/fontawesome/brands/apple-pay.svg +1 -0
  411. docsforge/themes/material/templates/.icons/fontawesome/brands/apple.svg +1 -0
  412. docsforge/themes/material/templates/.icons/fontawesome/brands/artstation.svg +1 -0
  413. docsforge/themes/material/templates/.icons/fontawesome/brands/asymmetrik.svg +1 -0
  414. docsforge/themes/material/templates/.icons/fontawesome/brands/atlassian.svg +1 -0
  415. docsforge/themes/material/templates/.icons/fontawesome/brands/audible.svg +1 -0
  416. docsforge/themes/material/templates/.icons/fontawesome/brands/autoprefixer.svg +1 -0
  417. docsforge/themes/material/templates/.icons/fontawesome/brands/avianex.svg +1 -0
  418. docsforge/themes/material/templates/.icons/fontawesome/brands/aviato.svg +1 -0
  419. docsforge/themes/material/templates/.icons/fontawesome/brands/aws.svg +1 -0
  420. docsforge/themes/material/templates/.icons/fontawesome/brands/bandcamp.svg +1 -0
  421. docsforge/themes/material/templates/.icons/fontawesome/brands/battle-net.svg +1 -0
  422. docsforge/themes/material/templates/.icons/fontawesome/brands/behance-square.svg +1 -0
  423. docsforge/themes/material/templates/.icons/fontawesome/brands/behance.svg +1 -0
  424. docsforge/themes/material/templates/.icons/fontawesome/brands/bilibili.svg +1 -0
  425. docsforge/themes/material/templates/.icons/fontawesome/brands/bimobject.svg +1 -0
  426. docsforge/themes/material/templates/.icons/fontawesome/brands/bitbucket.svg +1 -0
  427. docsforge/themes/material/templates/.icons/fontawesome/brands/bitcoin.svg +1 -0
  428. docsforge/themes/material/templates/.icons/fontawesome/brands/bity.svg +1 -0
  429. docsforge/themes/material/templates/.icons/fontawesome/brands/black-tie.svg +1 -0
  430. docsforge/themes/material/templates/.icons/fontawesome/brands/blackberry.svg +1 -0
  431. docsforge/themes/material/templates/.icons/fontawesome/brands/blogger-b.svg +1 -0
  432. docsforge/themes/material/templates/.icons/fontawesome/brands/blogger.svg +1 -0
  433. docsforge/themes/material/templates/.icons/fontawesome/brands/bluesky.svg +1 -0
  434. docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth-b.svg +1 -0
  435. docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth.svg +1 -0
  436. docsforge/themes/material/templates/.icons/fontawesome/brands/bootstrap.svg +1 -0
  437. docsforge/themes/material/templates/.icons/fontawesome/brands/bots.svg +1 -0
  438. docsforge/themes/material/templates/.icons/fontawesome/brands/brave-reverse.svg +1 -0
  439. docsforge/themes/material/templates/.icons/fontawesome/brands/brave.svg +1 -0
  440. docsforge/themes/material/templates/.icons/fontawesome/brands/btc.svg +1 -0
  441. docsforge/themes/material/templates/.icons/fontawesome/brands/buffer.svg +1 -0
  442. docsforge/themes/material/templates/.icons/fontawesome/brands/buromobelexperte.svg +1 -0
  443. docsforge/themes/material/templates/.icons/fontawesome/brands/buy-n-large.svg +1 -0
  444. docsforge/themes/material/templates/.icons/fontawesome/brands/buysellads.svg +1 -0
  445. docsforge/themes/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg +1 -0
  446. docsforge/themes/material/templates/.icons/fontawesome/brands/cash-app.svg +1 -0
  447. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg +1 -0
  448. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amex.svg +1 -0
  449. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg +1 -0
  450. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-diners-club.svg +1 -0
  451. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-discover.svg +1 -0
  452. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-jcb.svg +1 -0
  453. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-mastercard.svg +1 -0
  454. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-paypal.svg +1 -0
  455. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-stripe.svg +1 -0
  456. docsforge/themes/material/templates/.icons/fontawesome/brands/cc-visa.svg +1 -0
  457. docsforge/themes/material/templates/.icons/fontawesome/brands/centercode.svg +1 -0
  458. docsforge/themes/material/templates/.icons/fontawesome/brands/centos.svg +1 -0
  459. docsforge/themes/material/templates/.icons/fontawesome/brands/chrome.svg +1 -0
  460. docsforge/themes/material/templates/.icons/fontawesome/brands/chromecast.svg +1 -0
  461. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudflare.svg +1 -0
  462. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudscale.svg +1 -0
  463. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudsmith.svg +1 -0
  464. docsforge/themes/material/templates/.icons/fontawesome/brands/cloudversify.svg +1 -0
  465. docsforge/themes/material/templates/.icons/fontawesome/brands/cmplid.svg +1 -0
  466. docsforge/themes/material/templates/.icons/fontawesome/brands/codepen.svg +1 -0
  467. docsforge/themes/material/templates/.icons/fontawesome/brands/codiepie.svg +1 -0
  468. docsforge/themes/material/templates/.icons/fontawesome/brands/confluence.svg +1 -0
  469. docsforge/themes/material/templates/.icons/fontawesome/brands/connectdevelop.svg +1 -0
  470. docsforge/themes/material/templates/.icons/fontawesome/brands/contao.svg +1 -0
  471. docsforge/themes/material/templates/.icons/fontawesome/brands/cotton-bureau.svg +1 -0
  472. docsforge/themes/material/templates/.icons/fontawesome/brands/cpanel.svg +1 -0
  473. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-by.svg +1 -0
  474. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg +1 -0
  475. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg +1 -0
  476. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg +1 -0
  477. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg +1 -0
  478. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg +1 -0
  479. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg +1 -0
  480. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg +1 -0
  481. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg +1 -0
  482. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +1 -0
  483. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg +1 -0
  484. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-share.svg +1 -0
  485. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg +1 -0
  486. docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons.svg +1 -0
  487. docsforge/themes/material/templates/.icons/fontawesome/brands/critical-role.svg +1 -0
  488. docsforge/themes/material/templates/.icons/fontawesome/brands/css.svg +1 -0
  489. docsforge/themes/material/templates/.icons/fontawesome/brands/css3-alt.svg +1 -0
  490. docsforge/themes/material/templates/.icons/fontawesome/brands/css3.svg +1 -0
  491. docsforge/themes/material/templates/.icons/fontawesome/brands/cuttlefish.svg +1 -0
  492. docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg +1 -0
  493. docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d.svg +1 -0
  494. docsforge/themes/material/templates/.icons/fontawesome/brands/dailymotion.svg +1 -0
  495. docsforge/themes/material/templates/.icons/fontawesome/brands/dart-lang.svg +1 -0
  496. docsforge/themes/material/templates/.icons/fontawesome/brands/dashcube.svg +1 -0
  497. docsforge/themes/material/templates/.icons/fontawesome/brands/debian.svg +1 -0
  498. docsforge/themes/material/templates/.icons/fontawesome/brands/deezer.svg +1 -0
  499. docsforge/themes/material/templates/.icons/fontawesome/brands/delicious.svg +1 -0
  500. docsforge/themes/material/templates/.icons/fontawesome/brands/deploydog.svg +1 -0
  501. docsforge/themes/material/templates/.icons/fontawesome/brands/deskpro.svg +1 -0
  502. docsforge/themes/material/templates/.icons/fontawesome/brands/dev.svg +1 -0
  503. docsforge/themes/material/templates/.icons/fontawesome/brands/deviantart.svg +1 -0
  504. docsforge/themes/material/templates/.icons/fontawesome/brands/dhl.svg +1 -0
  505. docsforge/themes/material/templates/.icons/fontawesome/brands/diaspora.svg +1 -0
  506. docsforge/themes/material/templates/.icons/fontawesome/brands/digg.svg +1 -0
  507. docsforge/themes/material/templates/.icons/fontawesome/brands/digital-ocean.svg +1 -0
  508. docsforge/themes/material/templates/.icons/fontawesome/brands/discord.svg +1 -0
  509. docsforge/themes/material/templates/.icons/fontawesome/brands/discourse.svg +1 -0
  510. docsforge/themes/material/templates/.icons/fontawesome/brands/disqus.svg +1 -0
  511. docsforge/themes/material/templates/.icons/fontawesome/brands/dochub.svg +1 -0
  512. docsforge/themes/material/templates/.icons/fontawesome/brands/docker.svg +1 -0
  513. docsforge/themes/material/templates/.icons/fontawesome/brands/draft2digital.svg +1 -0
  514. docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble-square.svg +1 -0
  515. docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble.svg +1 -0
  516. docsforge/themes/material/templates/.icons/fontawesome/brands/dropbox.svg +1 -0
  517. docsforge/themes/material/templates/.icons/fontawesome/brands/drupal.svg +1 -0
  518. docsforge/themes/material/templates/.icons/fontawesome/brands/duolingo.svg +1 -0
  519. docsforge/themes/material/templates/.icons/fontawesome/brands/dyalog.svg +1 -0
  520. docsforge/themes/material/templates/.icons/fontawesome/brands/earlybirds.svg +1 -0
  521. docsforge/themes/material/templates/.icons/fontawesome/brands/ebay.svg +1 -0
  522. docsforge/themes/material/templates/.icons/fontawesome/brands/edge-legacy.svg +1 -0
  523. docsforge/themes/material/templates/.icons/fontawesome/brands/edge.svg +1 -0
  524. docsforge/themes/material/templates/.icons/fontawesome/brands/elementor.svg +1 -0
  525. docsforge/themes/material/templates/.icons/fontawesome/brands/eleventy.svg +1 -0
  526. docsforge/themes/material/templates/.icons/fontawesome/brands/ello.svg +1 -0
  527. docsforge/themes/material/templates/.icons/fontawesome/brands/ember.svg +1 -0
  528. docsforge/themes/material/templates/.icons/fontawesome/brands/empire.svg +1 -0
  529. docsforge/themes/material/templates/.icons/fontawesome/brands/envira.svg +1 -0
  530. docsforge/themes/material/templates/.icons/fontawesome/brands/erlang.svg +1 -0
  531. docsforge/themes/material/templates/.icons/fontawesome/brands/ethereum.svg +1 -0
  532. docsforge/themes/material/templates/.icons/fontawesome/brands/etsy.svg +1 -0
  533. docsforge/themes/material/templates/.icons/fontawesome/brands/evernote.svg +1 -0
  534. docsforge/themes/material/templates/.icons/fontawesome/brands/expeditedssl.svg +1 -0
  535. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-f.svg +1 -0
  536. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-messenger.svg +1 -0
  537. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-square.svg +1 -0
  538. docsforge/themes/material/templates/.icons/fontawesome/brands/facebook.svg +1 -0
  539. docsforge/themes/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg +1 -0
  540. docsforge/themes/material/templates/.icons/fontawesome/brands/fedex.svg +1 -0
  541. docsforge/themes/material/templates/.icons/fontawesome/brands/fedora.svg +1 -0
  542. docsforge/themes/material/templates/.icons/fontawesome/brands/figma.svg +1 -0
  543. docsforge/themes/material/templates/.icons/fontawesome/brands/files-pinwheel.svg +1 -0
  544. docsforge/themes/material/templates/.icons/fontawesome/brands/firefox-browser.svg +1 -0
  545. docsforge/themes/material/templates/.icons/fontawesome/brands/firefox.svg +1 -0
  546. docsforge/themes/material/templates/.icons/fontawesome/brands/first-order-alt.svg +1 -0
  547. docsforge/themes/material/templates/.icons/fontawesome/brands/first-order.svg +1 -0
  548. docsforge/themes/material/templates/.icons/fontawesome/brands/firstdraft.svg +1 -0
  549. docsforge/themes/material/templates/.icons/fontawesome/brands/flickr.svg +1 -0
  550. docsforge/themes/material/templates/.icons/fontawesome/brands/flipboard.svg +1 -0
  551. docsforge/themes/material/templates/.icons/fontawesome/brands/flutter.svg +1 -0
  552. docsforge/themes/material/templates/.icons/fontawesome/brands/fly.svg +1 -0
  553. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-alt.svg +1 -0
  554. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-flag.svg +1 -0
  555. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-logo-full.svg +1 -0
  556. docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome.svg +1 -0
  557. docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons-fi.svg +1 -0
  558. docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons.svg +1 -0
  559. docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg +1 -0
  560. docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome.svg +1 -0
  561. docsforge/themes/material/templates/.icons/fontawesome/brands/forumbee.svg +1 -0
  562. docsforge/themes/material/templates/.icons/fontawesome/brands/foursquare.svg +1 -0
  563. docsforge/themes/material/templates/.icons/fontawesome/brands/free-code-camp.svg +1 -0
  564. docsforge/themes/material/templates/.icons/fontawesome/brands/freebsd.svg +1 -0
  565. docsforge/themes/material/templates/.icons/fontawesome/brands/fulcrum.svg +1 -0
  566. docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-republic.svg +1 -0
  567. docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-senate.svg +1 -0
  568. docsforge/themes/material/templates/.icons/fontawesome/brands/get-pocket.svg +1 -0
  569. docsforge/themes/material/templates/.icons/fontawesome/brands/gg-circle.svg +1 -0
  570. docsforge/themes/material/templates/.icons/fontawesome/brands/gg.svg +1 -0
  571. docsforge/themes/material/templates/.icons/fontawesome/brands/git-alt.svg +1 -0
  572. docsforge/themes/material/templates/.icons/fontawesome/brands/git-square.svg +1 -0
  573. docsforge/themes/material/templates/.icons/fontawesome/brands/git.svg +1 -0
  574. docsforge/themes/material/templates/.icons/fontawesome/brands/github-alt.svg +1 -0
  575. docsforge/themes/material/templates/.icons/fontawesome/brands/github-square.svg +1 -0
  576. docsforge/themes/material/templates/.icons/fontawesome/brands/github.svg +1 -0
  577. docsforge/themes/material/templates/.icons/fontawesome/brands/gitkraken.svg +1 -0
  578. docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab-square.svg +1 -0
  579. docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab.svg +1 -0
  580. docsforge/themes/material/templates/.icons/fontawesome/brands/gitter.svg +1 -0
  581. docsforge/themes/material/templates/.icons/fontawesome/brands/glide-g.svg +1 -0
  582. docsforge/themes/material/templates/.icons/fontawesome/brands/glide.svg +1 -0
  583. docsforge/themes/material/templates/.icons/fontawesome/brands/gofore.svg +1 -0
  584. docsforge/themes/material/templates/.icons/fontawesome/brands/golang.svg +1 -0
  585. docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads-g.svg +1 -0
  586. docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads.svg +1 -0
  587. docsforge/themes/material/templates/.icons/fontawesome/brands/google-drive.svg +1 -0
  588. docsforge/themes/material/templates/.icons/fontawesome/brands/google-pay.svg +1 -0
  589. docsforge/themes/material/templates/.icons/fontawesome/brands/google-play.svg +1 -0
  590. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-g.svg +1 -0
  591. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-square.svg +1 -0
  592. docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus.svg +1 -0
  593. docsforge/themes/material/templates/.icons/fontawesome/brands/google-scholar.svg +1 -0
  594. docsforge/themes/material/templates/.icons/fontawesome/brands/google-wallet.svg +1 -0
  595. docsforge/themes/material/templates/.icons/fontawesome/brands/google.svg +1 -0
  596. docsforge/themes/material/templates/.icons/fontawesome/brands/gratipay.svg +1 -0
  597. docsforge/themes/material/templates/.icons/fontawesome/brands/grav.svg +1 -0
  598. docsforge/themes/material/templates/.icons/fontawesome/brands/gripfire.svg +1 -0
  599. docsforge/themes/material/templates/.icons/fontawesome/brands/grunt.svg +1 -0
  600. docsforge/themes/material/templates/.icons/fontawesome/brands/guilded.svg +1 -0
  601. docsforge/themes/material/templates/.icons/fontawesome/brands/gulp.svg +1 -0
  602. docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news-square.svg +1 -0
  603. docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news.svg +1 -0
  604. docsforge/themes/material/templates/.icons/fontawesome/brands/hackerrank.svg +1 -0
  605. docsforge/themes/material/templates/.icons/fontawesome/brands/hashnode.svg +1 -0
  606. docsforge/themes/material/templates/.icons/fontawesome/brands/hips.svg +1 -0
  607. docsforge/themes/material/templates/.icons/fontawesome/brands/hire-a-helper.svg +1 -0
  608. docsforge/themes/material/templates/.icons/fontawesome/brands/hive.svg +1 -0
  609. docsforge/themes/material/templates/.icons/fontawesome/brands/hooli.svg +1 -0
  610. docsforge/themes/material/templates/.icons/fontawesome/brands/hornbill.svg +1 -0
  611. docsforge/themes/material/templates/.icons/fontawesome/brands/hotjar.svg +1 -0
  612. docsforge/themes/material/templates/.icons/fontawesome/brands/houzz.svg +1 -0
  613. docsforge/themes/material/templates/.icons/fontawesome/brands/html5.svg +1 -0
  614. docsforge/themes/material/templates/.icons/fontawesome/brands/hubspot.svg +1 -0
  615. docsforge/themes/material/templates/.icons/fontawesome/brands/ideal.svg +1 -0
  616. docsforge/themes/material/templates/.icons/fontawesome/brands/imdb.svg +1 -0
  617. docsforge/themes/material/templates/.icons/fontawesome/brands/innosoft.svg +1 -0
  618. docsforge/themes/material/templates/.icons/fontawesome/brands/instagram-square.svg +1 -0
  619. docsforge/themes/material/templates/.icons/fontawesome/brands/instagram.svg +1 -0
  620. docsforge/themes/material/templates/.icons/fontawesome/brands/instalod.svg +1 -0
  621. docsforge/themes/material/templates/.icons/fontawesome/brands/intercom.svg +1 -0
  622. docsforge/themes/material/templates/.icons/fontawesome/brands/internet-explorer.svg +1 -0
  623. docsforge/themes/material/templates/.icons/fontawesome/brands/invision.svg +1 -0
  624. docsforge/themes/material/templates/.icons/fontawesome/brands/ioxhost.svg +1 -0
  625. docsforge/themes/material/templates/.icons/fontawesome/brands/itch-io.svg +1 -0
  626. docsforge/themes/material/templates/.icons/fontawesome/brands/itunes-note.svg +1 -0
  627. docsforge/themes/material/templates/.icons/fontawesome/brands/itunes.svg +1 -0
  628. docsforge/themes/material/templates/.icons/fontawesome/brands/java.svg +1 -0
  629. docsforge/themes/material/templates/.icons/fontawesome/brands/jedi-order.svg +1 -0
  630. docsforge/themes/material/templates/.icons/fontawesome/brands/jenkins.svg +1 -0
  631. docsforge/themes/material/templates/.icons/fontawesome/brands/jira.svg +1 -0
  632. docsforge/themes/material/templates/.icons/fontawesome/brands/joget.svg +1 -0
  633. docsforge/themes/material/templates/.icons/fontawesome/brands/joomla.svg +1 -0
  634. docsforge/themes/material/templates/.icons/fontawesome/brands/js-square.svg +1 -0
  635. docsforge/themes/material/templates/.icons/fontawesome/brands/js.svg +1 -0
  636. docsforge/themes/material/templates/.icons/fontawesome/brands/jsfiddle.svg +1 -0
  637. docsforge/themes/material/templates/.icons/fontawesome/brands/jxl.svg +1 -0
  638. docsforge/themes/material/templates/.icons/fontawesome/brands/kaggle.svg +1 -0
  639. docsforge/themes/material/templates/.icons/fontawesome/brands/kakao-talk.svg +1 -0
  640. docsforge/themes/material/templates/.icons/fontawesome/brands/keybase.svg +1 -0
  641. docsforge/themes/material/templates/.icons/fontawesome/brands/keycdn.svg +1 -0
  642. docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter-k.svg +1 -0
  643. docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter.svg +1 -0
  644. docsforge/themes/material/templates/.icons/fontawesome/brands/korvue.svg +1 -0
  645. docsforge/themes/material/templates/.icons/fontawesome/brands/laravel.svg +1 -0
  646. docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm-square.svg +1 -0
  647. docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm.svg +1 -0
  648. docsforge/themes/material/templates/.icons/fontawesome/brands/leanpub.svg +1 -0
  649. docsforge/themes/material/templates/.icons/fontawesome/brands/less.svg +1 -0
  650. docsforge/themes/material/templates/.icons/fontawesome/brands/letterboxd.svg +1 -0
  651. docsforge/themes/material/templates/.icons/fontawesome/brands/line.svg +1 -0
  652. docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin-in.svg +1 -0
  653. docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin.svg +1 -0
  654. docsforge/themes/material/templates/.icons/fontawesome/brands/linktree.svg +1 -0
  655. docsforge/themes/material/templates/.icons/fontawesome/brands/linode.svg +1 -0
  656. docsforge/themes/material/templates/.icons/fontawesome/brands/linux.svg +1 -0
  657. docsforge/themes/material/templates/.icons/fontawesome/brands/lumon-drop.svg +1 -0
  658. docsforge/themes/material/templates/.icons/fontawesome/brands/lumon.svg +1 -0
  659. docsforge/themes/material/templates/.icons/fontawesome/brands/lyft.svg +1 -0
  660. docsforge/themes/material/templates/.icons/fontawesome/brands/magento.svg +1 -0
  661. docsforge/themes/material/templates/.icons/fontawesome/brands/mailchimp.svg +1 -0
  662. docsforge/themes/material/templates/.icons/fontawesome/brands/mandalorian.svg +1 -0
  663. docsforge/themes/material/templates/.icons/fontawesome/brands/markdown.svg +1 -0
  664. docsforge/themes/material/templates/.icons/fontawesome/brands/mastodon.svg +1 -0
  665. docsforge/themes/material/templates/.icons/fontawesome/brands/maxcdn.svg +1 -0
  666. docsforge/themes/material/templates/.icons/fontawesome/brands/mdb.svg +1 -0
  667. docsforge/themes/material/templates/.icons/fontawesome/brands/medapps.svg +1 -0
  668. docsforge/themes/material/templates/.icons/fontawesome/brands/medium-m.svg +1 -0
  669. docsforge/themes/material/templates/.icons/fontawesome/brands/medium.svg +1 -0
  670. docsforge/themes/material/templates/.icons/fontawesome/brands/medrt.svg +1 -0
  671. docsforge/themes/material/templates/.icons/fontawesome/brands/meetup.svg +1 -0
  672. docsforge/themes/material/templates/.icons/fontawesome/brands/megaport.svg +1 -0
  673. docsforge/themes/material/templates/.icons/fontawesome/brands/mendeley.svg +1 -0
  674. docsforge/themes/material/templates/.icons/fontawesome/brands/meta.svg +1 -0
  675. docsforge/themes/material/templates/.icons/fontawesome/brands/microblog.svg +1 -0
  676. docsforge/themes/material/templates/.icons/fontawesome/brands/microsoft.svg +1 -0
  677. docsforge/themes/material/templates/.icons/fontawesome/brands/mintbit.svg +1 -0
  678. docsforge/themes/material/templates/.icons/fontawesome/brands/mix.svg +1 -0
  679. docsforge/themes/material/templates/.icons/fontawesome/brands/mixcloud.svg +1 -0
  680. docsforge/themes/material/templates/.icons/fontawesome/brands/mixer.svg +1 -0
  681. docsforge/themes/material/templates/.icons/fontawesome/brands/mizuni.svg +1 -0
  682. docsforge/themes/material/templates/.icons/fontawesome/brands/modx.svg +1 -0
  683. docsforge/themes/material/templates/.icons/fontawesome/brands/monero.svg +1 -0
  684. docsforge/themes/material/templates/.icons/fontawesome/brands/napster.svg +1 -0
  685. docsforge/themes/material/templates/.icons/fontawesome/brands/neos.svg +1 -0
  686. docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-directional.svg +1 -0
  687. docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-symbol.svg +1 -0
  688. docsforge/themes/material/templates/.icons/fontawesome/brands/nimblr.svg +1 -0
  689. docsforge/themes/material/templates/.icons/fontawesome/brands/node-js.svg +1 -0
  690. docsforge/themes/material/templates/.icons/fontawesome/brands/node.svg +1 -0
  691. docsforge/themes/material/templates/.icons/fontawesome/brands/notion.svg +1 -0
  692. docsforge/themes/material/templates/.icons/fontawesome/brands/npm.svg +1 -0
  693. docsforge/themes/material/templates/.icons/fontawesome/brands/ns8.svg +1 -0
  694. docsforge/themes/material/templates/.icons/fontawesome/brands/nutritionix.svg +1 -0
  695. docsforge/themes/material/templates/.icons/fontawesome/brands/octopus-deploy.svg +1 -0
  696. docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki-square.svg +1 -0
  697. docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki.svg +1 -0
  698. docsforge/themes/material/templates/.icons/fontawesome/brands/odysee.svg +1 -0
  699. docsforge/themes/material/templates/.icons/fontawesome/brands/old-republic.svg +1 -0
  700. docsforge/themes/material/templates/.icons/fontawesome/brands/openai.svg +1 -0
  701. docsforge/themes/material/templates/.icons/fontawesome/brands/opencart.svg +1 -0
  702. docsforge/themes/material/templates/.icons/fontawesome/brands/openid.svg +1 -0
  703. docsforge/themes/material/templates/.icons/fontawesome/brands/opensuse.svg +1 -0
  704. docsforge/themes/material/templates/.icons/fontawesome/brands/opera.svg +1 -0
  705. docsforge/themes/material/templates/.icons/fontawesome/brands/optin-monster.svg +1 -0
  706. docsforge/themes/material/templates/.icons/fontawesome/brands/orcid.svg +1 -0
  707. docsforge/themes/material/templates/.icons/fontawesome/brands/osi.svg +1 -0
  708. docsforge/themes/material/templates/.icons/fontawesome/brands/padlet.svg +1 -0
  709. docsforge/themes/material/templates/.icons/fontawesome/brands/page4.svg +1 -0
  710. docsforge/themes/material/templates/.icons/fontawesome/brands/pagelines.svg +1 -0
  711. docsforge/themes/material/templates/.icons/fontawesome/brands/palfed.svg +1 -0
  712. docsforge/themes/material/templates/.icons/fontawesome/brands/pandora.svg +1 -0
  713. docsforge/themes/material/templates/.icons/fontawesome/brands/patreon.svg +1 -0
  714. docsforge/themes/material/templates/.icons/fontawesome/brands/paypal.svg +1 -0
  715. docsforge/themes/material/templates/.icons/fontawesome/brands/perbyte.svg +1 -0
  716. docsforge/themes/material/templates/.icons/fontawesome/brands/periscope.svg +1 -0
  717. docsforge/themes/material/templates/.icons/fontawesome/brands/phabricator.svg +1 -0
  718. docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-framework.svg +1 -0
  719. docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg +1 -0
  720. docsforge/themes/material/templates/.icons/fontawesome/brands/php.svg +1 -0
  721. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg +1 -0
  722. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg +1 -0
  723. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg +1 -0
  724. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-square.svg +1 -0
  725. docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper.svg +1 -0
  726. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-p.svg +1 -0
  727. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-square.svg +1 -0
  728. docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest.svg +1 -0
  729. docsforge/themes/material/templates/.icons/fontawesome/brands/pix.svg +1 -0
  730. docsforge/themes/material/templates/.icons/fontawesome/brands/pixelfed.svg +1 -0
  731. docsforge/themes/material/templates/.icons/fontawesome/brands/pixiv.svg +1 -0
  732. docsforge/themes/material/templates/.icons/fontawesome/brands/playstation.svg +1 -0
  733. docsforge/themes/material/templates/.icons/fontawesome/brands/product-hunt.svg +1 -0
  734. docsforge/themes/material/templates/.icons/fontawesome/brands/pushed.svg +1 -0
  735. docsforge/themes/material/templates/.icons/fontawesome/brands/python.svg +1 -0
  736. docsforge/themes/material/templates/.icons/fontawesome/brands/qq.svg +1 -0
  737. docsforge/themes/material/templates/.icons/fontawesome/brands/quinscape.svg +1 -0
  738. docsforge/themes/material/templates/.icons/fontawesome/brands/quora.svg +1 -0
  739. docsforge/themes/material/templates/.icons/fontawesome/brands/r-project.svg +1 -0
  740. docsforge/themes/material/templates/.icons/fontawesome/brands/raspberry-pi.svg +1 -0
  741. docsforge/themes/material/templates/.icons/fontawesome/brands/ravelry.svg +1 -0
  742. docsforge/themes/material/templates/.icons/fontawesome/brands/react.svg +1 -0
  743. docsforge/themes/material/templates/.icons/fontawesome/brands/reacteurope.svg +1 -0
  744. docsforge/themes/material/templates/.icons/fontawesome/brands/readme.svg +1 -0
  745. docsforge/themes/material/templates/.icons/fontawesome/brands/rebel.svg +1 -0
  746. docsforge/themes/material/templates/.icons/fontawesome/brands/red-river.svg +1 -0
  747. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-alien.svg +1 -0
  748. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-square.svg +1 -0
  749. docsforge/themes/material/templates/.icons/fontawesome/brands/reddit.svg +1 -0
  750. docsforge/themes/material/templates/.icons/fontawesome/brands/redhat.svg +1 -0
  751. docsforge/themes/material/templates/.icons/fontawesome/brands/rendact.svg +1 -0
  752. docsforge/themes/material/templates/.icons/fontawesome/brands/renren.svg +1 -0
  753. docsforge/themes/material/templates/.icons/fontawesome/brands/replyd.svg +1 -0
  754. docsforge/themes/material/templates/.icons/fontawesome/brands/researchgate.svg +1 -0
  755. docsforge/themes/material/templates/.icons/fontawesome/brands/resolving.svg +1 -0
  756. docsforge/themes/material/templates/.icons/fontawesome/brands/rev.svg +1 -0
  757. docsforge/themes/material/templates/.icons/fontawesome/brands/rocketchat.svg +1 -0
  758. docsforge/themes/material/templates/.icons/fontawesome/brands/rockrms.svg +1 -0
  759. docsforge/themes/material/templates/.icons/fontawesome/brands/rust.svg +1 -0
  760. docsforge/themes/material/templates/.icons/fontawesome/brands/safari.svg +1 -0
  761. docsforge/themes/material/templates/.icons/fontawesome/brands/salesforce.svg +1 -0
  762. docsforge/themes/material/templates/.icons/fontawesome/brands/sass.svg +1 -0
  763. docsforge/themes/material/templates/.icons/fontawesome/brands/schlix.svg +1 -0
  764. docsforge/themes/material/templates/.icons/fontawesome/brands/screenpal.svg +1 -0
  765. docsforge/themes/material/templates/.icons/fontawesome/brands/scribd.svg +1 -0
  766. docsforge/themes/material/templates/.icons/fontawesome/brands/searchengin.svg +1 -0
  767. docsforge/themes/material/templates/.icons/fontawesome/brands/sellcast.svg +1 -0
  768. docsforge/themes/material/templates/.icons/fontawesome/brands/sellsy.svg +1 -0
  769. docsforge/themes/material/templates/.icons/fontawesome/brands/servicestack.svg +1 -0
  770. docsforge/themes/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg +1 -0
  771. docsforge/themes/material/templates/.icons/fontawesome/brands/shoelace.svg +1 -0
  772. docsforge/themes/material/templates/.icons/fontawesome/brands/shopify.svg +1 -0
  773. docsforge/themes/material/templates/.icons/fontawesome/brands/shopware.svg +1 -0
  774. docsforge/themes/material/templates/.icons/fontawesome/brands/signal-messenger.svg +1 -0
  775. docsforge/themes/material/templates/.icons/fontawesome/brands/simplybuilt.svg +1 -0
  776. docsforge/themes/material/templates/.icons/fontawesome/brands/sistrix.svg +1 -0
  777. docsforge/themes/material/templates/.icons/fontawesome/brands/sith.svg +1 -0
  778. docsforge/themes/material/templates/.icons/fontawesome/brands/sitrox.svg +1 -0
  779. docsforge/themes/material/templates/.icons/fontawesome/brands/sketch.svg +1 -0
  780. docsforge/themes/material/templates/.icons/fontawesome/brands/skyatlas.svg +1 -0
  781. docsforge/themes/material/templates/.icons/fontawesome/brands/skype.svg +1 -0
  782. docsforge/themes/material/templates/.icons/fontawesome/brands/slack-hash.svg +1 -0
  783. docsforge/themes/material/templates/.icons/fontawesome/brands/slack.svg +1 -0
  784. docsforge/themes/material/templates/.icons/fontawesome/brands/slideshare.svg +1 -0
  785. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-ghost.svg +1 -0
  786. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-square.svg +1 -0
  787. docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat.svg +1 -0
  788. docsforge/themes/material/templates/.icons/fontawesome/brands/soundcloud.svg +1 -0
  789. docsforge/themes/material/templates/.icons/fontawesome/brands/sourcetree.svg +1 -0
  790. docsforge/themes/material/templates/.icons/fontawesome/brands/space-awesome.svg +1 -0
  791. docsforge/themes/material/templates/.icons/fontawesome/brands/speakap.svg +1 -0
  792. docsforge/themes/material/templates/.icons/fontawesome/brands/speaker-deck.svg +1 -0
  793. docsforge/themes/material/templates/.icons/fontawesome/brands/spotify.svg +1 -0
  794. docsforge/themes/material/templates/.icons/fontawesome/brands/square-behance.svg +1 -0
  795. docsforge/themes/material/templates/.icons/fontawesome/brands/square-bluesky.svg +1 -0
  796. docsforge/themes/material/templates/.icons/fontawesome/brands/square-dribbble.svg +1 -0
  797. docsforge/themes/material/templates/.icons/fontawesome/brands/square-facebook.svg +1 -0
  798. docsforge/themes/material/templates/.icons/fontawesome/brands/square-figma.svg +1 -0
  799. docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg +1 -0
  800. docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome.svg +1 -0
  801. docsforge/themes/material/templates/.icons/fontawesome/brands/square-git.svg +1 -0
  802. docsforge/themes/material/templates/.icons/fontawesome/brands/square-github.svg +1 -0
  803. docsforge/themes/material/templates/.icons/fontawesome/brands/square-gitlab.svg +1 -0
  804. docsforge/themes/material/templates/.icons/fontawesome/brands/square-google-plus.svg +1 -0
  805. docsforge/themes/material/templates/.icons/fontawesome/brands/square-hacker-news.svg +1 -0
  806. docsforge/themes/material/templates/.icons/fontawesome/brands/square-instagram.svg +1 -0
  807. docsforge/themes/material/templates/.icons/fontawesome/brands/square-js.svg +1 -0
  808. docsforge/themes/material/templates/.icons/fontawesome/brands/square-kickstarter.svg +1 -0
  809. docsforge/themes/material/templates/.icons/fontawesome/brands/square-lastfm.svg +1 -0
  810. docsforge/themes/material/templates/.icons/fontawesome/brands/square-letterboxd.svg +1 -0
  811. docsforge/themes/material/templates/.icons/fontawesome/brands/square-linkedin.svg +1 -0
  812. docsforge/themes/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg +1 -0
  813. docsforge/themes/material/templates/.icons/fontawesome/brands/square-pied-piper.svg +1 -0
  814. docsforge/themes/material/templates/.icons/fontawesome/brands/square-pinterest.svg +1 -0
  815. docsforge/themes/material/templates/.icons/fontawesome/brands/square-reddit.svg +1 -0
  816. docsforge/themes/material/templates/.icons/fontawesome/brands/square-snapchat.svg +1 -0
  817. docsforge/themes/material/templates/.icons/fontawesome/brands/square-steam.svg +1 -0
  818. docsforge/themes/material/templates/.icons/fontawesome/brands/square-threads.svg +1 -0
  819. docsforge/themes/material/templates/.icons/fontawesome/brands/square-tumblr.svg +1 -0
  820. docsforge/themes/material/templates/.icons/fontawesome/brands/square-twitter.svg +1 -0
  821. docsforge/themes/material/templates/.icons/fontawesome/brands/square-upwork.svg +1 -0
  822. docsforge/themes/material/templates/.icons/fontawesome/brands/square-viadeo.svg +1 -0
  823. docsforge/themes/material/templates/.icons/fontawesome/brands/square-vimeo.svg +1 -0
  824. docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg +1 -0
  825. docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome.svg +1 -0
  826. docsforge/themes/material/templates/.icons/fontawesome/brands/square-whatsapp.svg +1 -0
  827. docsforge/themes/material/templates/.icons/fontawesome/brands/square-x-twitter.svg +1 -0
  828. docsforge/themes/material/templates/.icons/fontawesome/brands/square-xing.svg +1 -0
  829. docsforge/themes/material/templates/.icons/fontawesome/brands/square-youtube.svg +1 -0
  830. docsforge/themes/material/templates/.icons/fontawesome/brands/squarespace.svg +1 -0
  831. docsforge/themes/material/templates/.icons/fontawesome/brands/stack-exchange.svg +1 -0
  832. docsforge/themes/material/templates/.icons/fontawesome/brands/stack-overflow.svg +1 -0
  833. docsforge/themes/material/templates/.icons/fontawesome/brands/stackpath.svg +1 -0
  834. docsforge/themes/material/templates/.icons/fontawesome/brands/staylinked.svg +1 -0
  835. docsforge/themes/material/templates/.icons/fontawesome/brands/steam-square.svg +1 -0
  836. docsforge/themes/material/templates/.icons/fontawesome/brands/steam-symbol.svg +1 -0
  837. docsforge/themes/material/templates/.icons/fontawesome/brands/steam.svg +1 -0
  838. docsforge/themes/material/templates/.icons/fontawesome/brands/sticker-mule.svg +1 -0
  839. docsforge/themes/material/templates/.icons/fontawesome/brands/strava.svg +1 -0
  840. docsforge/themes/material/templates/.icons/fontawesome/brands/stripe-s.svg +1 -0
  841. docsforge/themes/material/templates/.icons/fontawesome/brands/stripe.svg +1 -0
  842. docsforge/themes/material/templates/.icons/fontawesome/brands/stubber.svg +1 -0
  843. docsforge/themes/material/templates/.icons/fontawesome/brands/studiovinari.svg +1 -0
  844. docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg +1 -0
  845. docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon.svg +1 -0
  846. docsforge/themes/material/templates/.icons/fontawesome/brands/superpowers.svg +1 -0
  847. docsforge/themes/material/templates/.icons/fontawesome/brands/supple.svg +1 -0
  848. docsforge/themes/material/templates/.icons/fontawesome/brands/suse.svg +1 -0
  849. docsforge/themes/material/templates/.icons/fontawesome/brands/swift.svg +1 -0
  850. docsforge/themes/material/templates/.icons/fontawesome/brands/symfony.svg +1 -0
  851. docsforge/themes/material/templates/.icons/fontawesome/brands/teamspeak.svg +1 -0
  852. docsforge/themes/material/templates/.icons/fontawesome/brands/telegram-plane.svg +1 -0
  853. docsforge/themes/material/templates/.icons/fontawesome/brands/telegram.svg +1 -0
  854. docsforge/themes/material/templates/.icons/fontawesome/brands/tencent-weibo.svg +1 -0
  855. docsforge/themes/material/templates/.icons/fontawesome/brands/tex.svg +1 -0
  856. docsforge/themes/material/templates/.icons/fontawesome/brands/the-red-yeti.svg +1 -0
  857. docsforge/themes/material/templates/.icons/fontawesome/brands/themeco.svg +1 -0
  858. docsforge/themes/material/templates/.icons/fontawesome/brands/themeisle.svg +1 -0
  859. docsforge/themes/material/templates/.icons/fontawesome/brands/think-peaks.svg +1 -0
  860. docsforge/themes/material/templates/.icons/fontawesome/brands/threads.svg +1 -0
  861. docsforge/themes/material/templates/.icons/fontawesome/brands/tidal.svg +1 -0
  862. docsforge/themes/material/templates/.icons/fontawesome/brands/tiktok.svg +1 -0
  863. docsforge/themes/material/templates/.icons/fontawesome/brands/trade-federation.svg +1 -0
  864. docsforge/themes/material/templates/.icons/fontawesome/brands/trello.svg +1 -0
  865. docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr-square.svg +1 -0
  866. docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr.svg +1 -0
  867. docsforge/themes/material/templates/.icons/fontawesome/brands/twitch.svg +1 -0
  868. docsforge/themes/material/templates/.icons/fontawesome/brands/twitter-square.svg +1 -0
  869. docsforge/themes/material/templates/.icons/fontawesome/brands/twitter.svg +1 -0
  870. docsforge/themes/material/templates/.icons/fontawesome/brands/typo3.svg +1 -0
  871. docsforge/themes/material/templates/.icons/fontawesome/brands/uber.svg +1 -0
  872. docsforge/themes/material/templates/.icons/fontawesome/brands/ubuntu.svg +1 -0
  873. docsforge/themes/material/templates/.icons/fontawesome/brands/uikit.svg +1 -0
  874. docsforge/themes/material/templates/.icons/fontawesome/brands/umbraco.svg +1 -0
  875. docsforge/themes/material/templates/.icons/fontawesome/brands/uncharted.svg +1 -0
  876. docsforge/themes/material/templates/.icons/fontawesome/brands/uniregistry.svg +1 -0
  877. docsforge/themes/material/templates/.icons/fontawesome/brands/unity.svg +1 -0
  878. docsforge/themes/material/templates/.icons/fontawesome/brands/unsplash.svg +1 -0
  879. docsforge/themes/material/templates/.icons/fontawesome/brands/untappd.svg +1 -0
  880. docsforge/themes/material/templates/.icons/fontawesome/brands/ups.svg +1 -0
  881. docsforge/themes/material/templates/.icons/fontawesome/brands/upwork.svg +1 -0
  882. docsforge/themes/material/templates/.icons/fontawesome/brands/usb.svg +1 -0
  883. docsforge/themes/material/templates/.icons/fontawesome/brands/usps.svg +1 -0
  884. docsforge/themes/material/templates/.icons/fontawesome/brands/ussunnah.svg +1 -0
  885. docsforge/themes/material/templates/.icons/fontawesome/brands/vaadin.svg +1 -0
  886. docsforge/themes/material/templates/.icons/fontawesome/brands/viacoin.svg +1 -0
  887. docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo-square.svg +1 -0
  888. docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo.svg +1 -0
  889. docsforge/themes/material/templates/.icons/fontawesome/brands/viber.svg +1 -0
  890. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-square.svg +1 -0
  891. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-v.svg +1 -0
  892. docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo.svg +1 -0
  893. docsforge/themes/material/templates/.icons/fontawesome/brands/vine.svg +1 -0
  894. docsforge/themes/material/templates/.icons/fontawesome/brands/vk.svg +1 -0
  895. docsforge/themes/material/templates/.icons/fontawesome/brands/vnv.svg +1 -0
  896. docsforge/themes/material/templates/.icons/fontawesome/brands/vsco.svg +1 -0
  897. docsforge/themes/material/templates/.icons/fontawesome/brands/vuejs.svg +1 -0
  898. docsforge/themes/material/templates/.icons/fontawesome/brands/w3c.svg +1 -0
  899. docsforge/themes/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg +1 -0
  900. docsforge/themes/material/templates/.icons/fontawesome/brands/waze.svg +1 -0
  901. docsforge/themes/material/templates/.icons/fontawesome/brands/web-awesome.svg +1 -0
  902. docsforge/themes/material/templates/.icons/fontawesome/brands/webflow.svg +1 -0
  903. docsforge/themes/material/templates/.icons/fontawesome/brands/weebly.svg +1 -0
  904. docsforge/themes/material/templates/.icons/fontawesome/brands/weibo.svg +1 -0
  905. docsforge/themes/material/templates/.icons/fontawesome/brands/weixin.svg +1 -0
  906. docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp-square.svg +1 -0
  907. docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp.svg +1 -0
  908. docsforge/themes/material/templates/.icons/fontawesome/brands/whmcs.svg +1 -0
  909. docsforge/themes/material/templates/.icons/fontawesome/brands/wikipedia-w.svg +1 -0
  910. docsforge/themes/material/templates/.icons/fontawesome/brands/windows.svg +1 -0
  911. docsforge/themes/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg +1 -0
  912. docsforge/themes/material/templates/.icons/fontawesome/brands/wix.svg +1 -0
  913. docsforge/themes/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg +1 -0
  914. docsforge/themes/material/templates/.icons/fontawesome/brands/wodu.svg +1 -0
  915. docsforge/themes/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg +1 -0
  916. docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress-simple.svg +1 -0
  917. docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress.svg +1 -0
  918. docsforge/themes/material/templates/.icons/fontawesome/brands/wpbeginner.svg +1 -0
  919. docsforge/themes/material/templates/.icons/fontawesome/brands/wpexplorer.svg +1 -0
  920. docsforge/themes/material/templates/.icons/fontawesome/brands/wpforms.svg +1 -0
  921. docsforge/themes/material/templates/.icons/fontawesome/brands/wpressr.svg +1 -0
  922. docsforge/themes/material/templates/.icons/fontawesome/brands/wsh.svg +1 -0
  923. docsforge/themes/material/templates/.icons/fontawesome/brands/x-twitter.svg +1 -0
  924. docsforge/themes/material/templates/.icons/fontawesome/brands/xbox.svg +1 -0
  925. docsforge/themes/material/templates/.icons/fontawesome/brands/xing-square.svg +1 -0
  926. docsforge/themes/material/templates/.icons/fontawesome/brands/xing.svg +1 -0
  927. docsforge/themes/material/templates/.icons/fontawesome/brands/y-combinator.svg +1 -0
  928. docsforge/themes/material/templates/.icons/fontawesome/brands/yahoo.svg +1 -0
  929. docsforge/themes/material/templates/.icons/fontawesome/brands/yammer.svg +1 -0
  930. docsforge/themes/material/templates/.icons/fontawesome/brands/yandex-international.svg +1 -0
  931. docsforge/themes/material/templates/.icons/fontawesome/brands/yandex.svg +1 -0
  932. docsforge/themes/material/templates/.icons/fontawesome/brands/yarn.svg +1 -0
  933. docsforge/themes/material/templates/.icons/fontawesome/brands/yelp.svg +1 -0
  934. docsforge/themes/material/templates/.icons/fontawesome/brands/yoast.svg +1 -0
  935. docsforge/themes/material/templates/.icons/fontawesome/brands/youtube-square.svg +1 -0
  936. docsforge/themes/material/templates/.icons/fontawesome/brands/youtube.svg +1 -0
  937. docsforge/themes/material/templates/.icons/fontawesome/brands/zhihu.svg +1 -0
  938. docsforge/themes/material/templates/.icons/fontawesome/regular/address-book.svg +1 -0
  939. docsforge/themes/material/templates/.icons/fontawesome/regular/address-card.svg +1 -0
  940. docsforge/themes/material/templates/.icons/fontawesome/regular/alarm-clock.svg +1 -0
  941. docsforge/themes/material/templates/.icons/fontawesome/regular/angry.svg +1 -0
  942. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-down.svg +1 -0
  943. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-left.svg +1 -0
  944. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-right.svg +1 -0
  945. docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-up.svg +1 -0
  946. docsforge/themes/material/templates/.icons/fontawesome/regular/bar-chart.svg +1 -0
  947. docsforge/themes/material/templates/.icons/fontawesome/regular/bell-slash.svg +1 -0
  948. docsforge/themes/material/templates/.icons/fontawesome/regular/bell.svg +1 -0
  949. docsforge/themes/material/templates/.icons/fontawesome/regular/bookmark.svg +1 -0
  950. docsforge/themes/material/templates/.icons/fontawesome/regular/building.svg +1 -0
  951. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-alt.svg +1 -0
  952. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-check.svg +1 -0
  953. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-days.svg +1 -0
  954. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-minus.svg +1 -0
  955. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-plus.svg +1 -0
  956. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-times.svg +1 -0
  957. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-xmark.svg +1 -0
  958. docsforge/themes/material/templates/.icons/fontawesome/regular/calendar.svg +1 -0
  959. docsforge/themes/material/templates/.icons/fontawesome/regular/camera-alt.svg +1 -0
  960. docsforge/themes/material/templates/.icons/fontawesome/regular/camera.svg +1 -0
  961. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-down.svg +1 -0
  962. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-left.svg +1 -0
  963. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-right.svg +1 -0
  964. docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-up.svg +1 -0
  965. docsforge/themes/material/templates/.icons/fontawesome/regular/chart-bar.svg +1 -0
  966. docsforge/themes/material/templates/.icons/fontawesome/regular/check-circle.svg +1 -0
  967. docsforge/themes/material/templates/.icons/fontawesome/regular/check-square.svg +1 -0
  968. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-bishop.svg +1 -0
  969. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-king.svg +1 -0
  970. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-knight.svg +1 -0
  971. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-pawn.svg +1 -0
  972. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-queen.svg +1 -0
  973. docsforge/themes/material/templates/.icons/fontawesome/regular/chess-rook.svg +1 -0
  974. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-check.svg +1 -0
  975. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-dot.svg +1 -0
  976. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-down.svg +1 -0
  977. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-left.svg +1 -0
  978. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-pause.svg +1 -0
  979. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-play.svg +1 -0
  980. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-question.svg +1 -0
  981. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-right.svg +1 -0
  982. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-stop.svg +1 -0
  983. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-up.svg +1 -0
  984. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-user.svg +1 -0
  985. docsforge/themes/material/templates/.icons/fontawesome/regular/circle-xmark.svg +1 -0
  986. docsforge/themes/material/templates/.icons/fontawesome/regular/circle.svg +1 -0
  987. docsforge/themes/material/templates/.icons/fontawesome/regular/clipboard.svg +1 -0
  988. docsforge/themes/material/templates/.icons/fontawesome/regular/clock-four.svg +1 -0
  989. docsforge/themes/material/templates/.icons/fontawesome/regular/clock.svg +1 -0
  990. docsforge/themes/material/templates/.icons/fontawesome/regular/clone.svg +1 -0
  991. docsforge/themes/material/templates/.icons/fontawesome/regular/closed-captioning.svg +1 -0
  992. docsforge/themes/material/templates/.icons/fontawesome/regular/cloud.svg +1 -0
  993. docsforge/themes/material/templates/.icons/fontawesome/regular/comment-alt.svg +1 -0
  994. docsforge/themes/material/templates/.icons/fontawesome/regular/comment-dots.svg +1 -0
  995. docsforge/themes/material/templates/.icons/fontawesome/regular/comment.svg +1 -0
  996. docsforge/themes/material/templates/.icons/fontawesome/regular/commenting.svg +1 -0
  997. docsforge/themes/material/templates/.icons/fontawesome/regular/comments.svg +1 -0
  998. docsforge/themes/material/templates/.icons/fontawesome/regular/compass.svg +1 -0
  999. docsforge/themes/material/templates/.icons/fontawesome/regular/contact-book.svg +1 -0
  1000. docsforge/themes/material/templates/.icons/fontawesome/regular/contact-card.svg +1 -0
  1001. docsforge/themes/material/templates/.icons/fontawesome/regular/copy.svg +1 -0
  1002. docsforge/themes/material/templates/.icons/fontawesome/regular/copyright.svg +1 -0
  1003. docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card-alt.svg +1 -0
  1004. docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card.svg +1 -0
  1005. docsforge/themes/material/templates/.icons/fontawesome/regular/dizzy.svg +1 -0
  1006. docsforge/themes/material/templates/.icons/fontawesome/regular/dot-circle.svg +1 -0
  1007. docsforge/themes/material/templates/.icons/fontawesome/regular/drivers-license.svg +1 -0
  1008. docsforge/themes/material/templates/.icons/fontawesome/regular/edit.svg +1 -0
  1009. docsforge/themes/material/templates/.icons/fontawesome/regular/envelope-open.svg +1 -0
  1010. docsforge/themes/material/templates/.icons/fontawesome/regular/envelope.svg +1 -0
  1011. docsforge/themes/material/templates/.icons/fontawesome/regular/eye-slash.svg +1 -0
  1012. docsforge/themes/material/templates/.icons/fontawesome/regular/eye.svg +1 -0
  1013. docsforge/themes/material/templates/.icons/fontawesome/regular/face-angry.svg +1 -0
  1014. docsforge/themes/material/templates/.icons/fontawesome/regular/face-dizzy.svg +1 -0
  1015. docsforge/themes/material/templates/.icons/fontawesome/regular/face-flushed.svg +1 -0
  1016. docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown-open.svg +1 -0
  1017. docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown.svg +1 -0
  1018. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grimace.svg +1 -0
  1019. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg +1 -0
  1020. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam.svg +1 -0
  1021. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg +1 -0
  1022. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg +1 -0
  1023. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint.svg +1 -0
  1024. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-stars.svg +1 -0
  1025. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tears.svg +1 -0
  1026. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg +1 -0
  1027. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg +1 -0
  1028. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg +1 -0
  1029. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wide.svg +1 -0
  1030. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wink.svg +1 -0
  1031. docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin.svg +1 -0
  1032. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg +1 -0
  1033. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg +1 -0
  1034. docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss.svg +1 -0
  1035. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg +1 -0
  1036. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg +1 -0
  1037. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg +1 -0
  1038. docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh.svg +1 -0
  1039. docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh-blank.svg +1 -0
  1040. docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh.svg +1 -0
  1041. docsforge/themes/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg +1 -0
  1042. docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-cry.svg +1 -0
  1043. docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-tear.svg +1 -0
  1044. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-beam.svg +1 -0
  1045. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-wink.svg +1 -0
  1046. docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile.svg +1 -0
  1047. docsforge/themes/material/templates/.icons/fontawesome/regular/face-surprise.svg +1 -0
  1048. docsforge/themes/material/templates/.icons/fontawesome/regular/face-tired.svg +1 -0
  1049. docsforge/themes/material/templates/.icons/fontawesome/regular/file-alt.svg +1 -0
  1050. docsforge/themes/material/templates/.icons/fontawesome/regular/file-archive.svg +1 -0
  1051. docsforge/themes/material/templates/.icons/fontawesome/regular/file-audio.svg +1 -0
  1052. docsforge/themes/material/templates/.icons/fontawesome/regular/file-clipboard.svg +1 -0
  1053. docsforge/themes/material/templates/.icons/fontawesome/regular/file-code.svg +1 -0
  1054. docsforge/themes/material/templates/.icons/fontawesome/regular/file-excel.svg +1 -0
  1055. docsforge/themes/material/templates/.icons/fontawesome/regular/file-image.svg +1 -0
  1056. docsforge/themes/material/templates/.icons/fontawesome/regular/file-lines.svg +1 -0
  1057. docsforge/themes/material/templates/.icons/fontawesome/regular/file-pdf.svg +1 -0
  1058. docsforge/themes/material/templates/.icons/fontawesome/regular/file-powerpoint.svg +1 -0
  1059. docsforge/themes/material/templates/.icons/fontawesome/regular/file-text.svg +1 -0
  1060. docsforge/themes/material/templates/.icons/fontawesome/regular/file-video.svg +1 -0
  1061. docsforge/themes/material/templates/.icons/fontawesome/regular/file-word.svg +1 -0
  1062. docsforge/themes/material/templates/.icons/fontawesome/regular/file-zipper.svg +1 -0
  1063. docsforge/themes/material/templates/.icons/fontawesome/regular/file.svg +1 -0
  1064. docsforge/themes/material/templates/.icons/fontawesome/regular/flag.svg +1 -0
  1065. docsforge/themes/material/templates/.icons/fontawesome/regular/floppy-disk.svg +1 -0
  1066. docsforge/themes/material/templates/.icons/fontawesome/regular/flushed.svg +1 -0
  1067. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-blank.svg +1 -0
  1068. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-closed.svg +1 -0
  1069. docsforge/themes/material/templates/.icons/fontawesome/regular/folder-open.svg +1 -0
  1070. docsforge/themes/material/templates/.icons/fontawesome/regular/folder.svg +1 -0
  1071. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-flag.svg +1 -0
  1072. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-logo-full.svg +1 -0
  1073. docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome.svg +1 -0
  1074. docsforge/themes/material/templates/.icons/fontawesome/regular/frown-open.svg +1 -0
  1075. docsforge/themes/material/templates/.icons/fontawesome/regular/frown.svg +1 -0
  1076. docsforge/themes/material/templates/.icons/fontawesome/regular/futbol-ball.svg +1 -0
  1077. docsforge/themes/material/templates/.icons/fontawesome/regular/futbol.svg +1 -0
  1078. docsforge/themes/material/templates/.icons/fontawesome/regular/gem.svg +1 -0
  1079. docsforge/themes/material/templates/.icons/fontawesome/regular/grimace.svg +1 -0
  1080. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-alt.svg +1 -0
  1081. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam-sweat.svg +1 -0
  1082. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam.svg +1 -0
  1083. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-hearts.svg +1 -0
  1084. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint-tears.svg +1 -0
  1085. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint.svg +1 -0
  1086. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-stars.svg +1 -0
  1087. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tears.svg +1 -0
  1088. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-squint.svg +1 -0
  1089. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-wink.svg +1 -0
  1090. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue.svg +1 -0
  1091. docsforge/themes/material/templates/.icons/fontawesome/regular/grin-wink.svg +1 -0
  1092. docsforge/themes/material/templates/.icons/fontawesome/regular/grin.svg +1 -0
  1093. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-back-fist.svg +1 -0
  1094. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-lizard.svg +1 -0
  1095. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-paper.svg +1 -0
  1096. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-peace.svg +1 -0
  1097. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-down.svg +1 -0
  1098. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-left.svg +1 -0
  1099. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-right.svg +1 -0
  1100. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-up.svg +1 -0
  1101. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-pointer.svg +1 -0
  1102. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-rock.svg +1 -0
  1103. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-scissors.svg +1 -0
  1104. docsforge/themes/material/templates/.icons/fontawesome/regular/hand-spock.svg +1 -0
  1105. docsforge/themes/material/templates/.icons/fontawesome/regular/hand.svg +1 -0
  1106. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-alt.svg +1 -0
  1107. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-simple.svg +1 -0
  1108. docsforge/themes/material/templates/.icons/fontawesome/regular/handshake.svg +1 -0
  1109. docsforge/themes/material/templates/.icons/fontawesome/regular/hard-drive.svg +1 -0
  1110. docsforge/themes/material/templates/.icons/fontawesome/regular/hdd.svg +1 -0
  1111. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-alt.svg +1 -0
  1112. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-simple.svg +1 -0
  1113. docsforge/themes/material/templates/.icons/fontawesome/regular/headphones.svg +1 -0
  1114. docsforge/themes/material/templates/.icons/fontawesome/regular/heart.svg +1 -0
  1115. docsforge/themes/material/templates/.icons/fontawesome/regular/home-alt.svg +1 -0
  1116. docsforge/themes/material/templates/.icons/fontawesome/regular/home-lg-alt.svg +1 -0
  1117. docsforge/themes/material/templates/.icons/fontawesome/regular/home.svg +1 -0
  1118. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-alt.svg +1 -0
  1119. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-wide.svg +1 -0
  1120. docsforge/themes/material/templates/.icons/fontawesome/regular/hospital.svg +1 -0
  1121. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-2.svg +1 -0
  1122. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-empty.svg +1 -0
  1123. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-half.svg +1 -0
  1124. docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass.svg +1 -0
  1125. docsforge/themes/material/templates/.icons/fontawesome/regular/house.svg +1 -0
  1126. docsforge/themes/material/templates/.icons/fontawesome/regular/id-badge.svg +1 -0
  1127. docsforge/themes/material/templates/.icons/fontawesome/regular/id-card.svg +1 -0
  1128. docsforge/themes/material/templates/.icons/fontawesome/regular/image.svg +1 -0
  1129. docsforge/themes/material/templates/.icons/fontawesome/regular/images.svg +1 -0
  1130. docsforge/themes/material/templates/.icons/fontawesome/regular/keyboard.svg +1 -0
  1131. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-beam.svg +1 -0
  1132. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-wink-heart.svg +1 -0
  1133. docsforge/themes/material/templates/.icons/fontawesome/regular/kiss.svg +1 -0
  1134. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-beam.svg +1 -0
  1135. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-squint.svg +1 -0
  1136. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-wink.svg +1 -0
  1137. docsforge/themes/material/templates/.icons/fontawesome/regular/laugh.svg +1 -0
  1138. docsforge/themes/material/templates/.icons/fontawesome/regular/lemon.svg +1 -0
  1139. docsforge/themes/material/templates/.icons/fontawesome/regular/life-ring.svg +1 -0
  1140. docsforge/themes/material/templates/.icons/fontawesome/regular/lightbulb.svg +1 -0
  1141. docsforge/themes/material/templates/.icons/fontawesome/regular/list-alt.svg +1 -0
  1142. docsforge/themes/material/templates/.icons/fontawesome/regular/map.svg +1 -0
  1143. docsforge/themes/material/templates/.icons/fontawesome/regular/meh-blank.svg +1 -0
  1144. docsforge/themes/material/templates/.icons/fontawesome/regular/meh-rolling-eyes.svg +1 -0
  1145. docsforge/themes/material/templates/.icons/fontawesome/regular/meh.svg +1 -0
  1146. docsforge/themes/material/templates/.icons/fontawesome/regular/message.svg +1 -0
  1147. docsforge/themes/material/templates/.icons/fontawesome/regular/minus-square.svg +1 -0
  1148. docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-1.svg +1 -0
  1149. docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-alt.svg +1 -0
  1150. docsforge/themes/material/templates/.icons/fontawesome/regular/moon.svg +1 -0
  1151. docsforge/themes/material/templates/.icons/fontawesome/regular/newspaper.svg +1 -0
  1152. docsforge/themes/material/templates/.icons/fontawesome/regular/note-sticky.svg +1 -0
  1153. docsforge/themes/material/templates/.icons/fontawesome/regular/object-group.svg +1 -0
  1154. docsforge/themes/material/templates/.icons/fontawesome/regular/object-ungroup.svg +1 -0
  1155. docsforge/themes/material/templates/.icons/fontawesome/regular/paper-plane.svg +1 -0
  1156. docsforge/themes/material/templates/.icons/fontawesome/regular/paste.svg +1 -0
  1157. docsforge/themes/material/templates/.icons/fontawesome/regular/pause-circle.svg +1 -0
  1158. docsforge/themes/material/templates/.icons/fontawesome/regular/pen-to-square.svg +1 -0
  1159. docsforge/themes/material/templates/.icons/fontawesome/regular/play-circle.svg +1 -0
  1160. docsforge/themes/material/templates/.icons/fontawesome/regular/plus-square.svg +1 -0
  1161. docsforge/themes/material/templates/.icons/fontawesome/regular/question-circle.svg +1 -0
  1162. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-list.svg +1 -0
  1163. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-times.svg +1 -0
  1164. docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg +1 -0
  1165. docsforge/themes/material/templates/.icons/fontawesome/regular/registered.svg +1 -0
  1166. docsforge/themes/material/templates/.icons/fontawesome/regular/sad-cry.svg +1 -0
  1167. docsforge/themes/material/templates/.icons/fontawesome/regular/sad-tear.svg +1 -0
  1168. docsforge/themes/material/templates/.icons/fontawesome/regular/save.svg +1 -0
  1169. docsforge/themes/material/templates/.icons/fontawesome/regular/share-from-square.svg +1 -0
  1170. docsforge/themes/material/templates/.icons/fontawesome/regular/share-square.svg +1 -0
  1171. docsforge/themes/material/templates/.icons/fontawesome/regular/smile-beam.svg +1 -0
  1172. docsforge/themes/material/templates/.icons/fontawesome/regular/smile-wink.svg +1 -0
  1173. docsforge/themes/material/templates/.icons/fontawesome/regular/smile.svg +1 -0
  1174. docsforge/themes/material/templates/.icons/fontawesome/regular/snowflake.svg +1 -0
  1175. docsforge/themes/material/templates/.icons/fontawesome/regular/soccer-ball.svg +1 -0
  1176. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-down.svg +1 -0
  1177. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-left.svg +1 -0
  1178. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-right.svg +1 -0
  1179. docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-up.svg +1 -0
  1180. docsforge/themes/material/templates/.icons/fontawesome/regular/square-check.svg +1 -0
  1181. docsforge/themes/material/templates/.icons/fontawesome/regular/square-full.svg +1 -0
  1182. docsforge/themes/material/templates/.icons/fontawesome/regular/square-minus.svg +1 -0
  1183. docsforge/themes/material/templates/.icons/fontawesome/regular/square-plus.svg +1 -0
  1184. docsforge/themes/material/templates/.icons/fontawesome/regular/square.svg +1 -0
  1185. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-alt.svg +1 -0
  1186. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-stroke.svg +1 -0
  1187. docsforge/themes/material/templates/.icons/fontawesome/regular/star-half.svg +1 -0
  1188. docsforge/themes/material/templates/.icons/fontawesome/regular/star.svg +1 -0
  1189. docsforge/themes/material/templates/.icons/fontawesome/regular/sticky-note.svg +1 -0
  1190. docsforge/themes/material/templates/.icons/fontawesome/regular/stop-circle.svg +1 -0
  1191. docsforge/themes/material/templates/.icons/fontawesome/regular/sun.svg +1 -0
  1192. docsforge/themes/material/templates/.icons/fontawesome/regular/surprise.svg +1 -0
  1193. docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-down.svg +1 -0
  1194. docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-up.svg +1 -0
  1195. docsforge/themes/material/templates/.icons/fontawesome/regular/times-circle.svg +1 -0
  1196. docsforge/themes/material/templates/.icons/fontawesome/regular/times-rectangle.svg +1 -0
  1197. docsforge/themes/material/templates/.icons/fontawesome/regular/tired.svg +1 -0
  1198. docsforge/themes/material/templates/.icons/fontawesome/regular/trash-alt.svg +1 -0
  1199. docsforge/themes/material/templates/.icons/fontawesome/regular/trash-can.svg +1 -0
  1200. docsforge/themes/material/templates/.icons/fontawesome/regular/truck.svg +1 -0
  1201. docsforge/themes/material/templates/.icons/fontawesome/regular/user-alt.svg +1 -0
  1202. docsforge/themes/material/templates/.icons/fontawesome/regular/user-circle.svg +1 -0
  1203. docsforge/themes/material/templates/.icons/fontawesome/regular/user-large.svg +1 -0
  1204. docsforge/themes/material/templates/.icons/fontawesome/regular/user.svg +1 -0
  1205. docsforge/themes/material/templates/.icons/fontawesome/regular/vcard.svg +1 -0
  1206. docsforge/themes/material/templates/.icons/fontawesome/regular/window-close.svg +1 -0
  1207. docsforge/themes/material/templates/.icons/fontawesome/regular/window-maximize.svg +1 -0
  1208. docsforge/themes/material/templates/.icons/fontawesome/regular/window-minimize.svg +1 -0
  1209. docsforge/themes/material/templates/.icons/fontawesome/regular/window-restore.svg +1 -0
  1210. docsforge/themes/material/templates/.icons/fontawesome/regular/xmark-circle.svg +1 -0
  1211. docsforge/themes/material/templates/.icons/fontawesome/solid/0.svg +1 -0
  1212. docsforge/themes/material/templates/.icons/fontawesome/solid/1.svg +1 -0
  1213. docsforge/themes/material/templates/.icons/fontawesome/solid/2.svg +1 -0
  1214. docsforge/themes/material/templates/.icons/fontawesome/solid/3.svg +1 -0
  1215. docsforge/themes/material/templates/.icons/fontawesome/solid/4.svg +1 -0
  1216. docsforge/themes/material/templates/.icons/fontawesome/solid/5.svg +1 -0
  1217. docsforge/themes/material/templates/.icons/fontawesome/solid/6.svg +1 -0
  1218. docsforge/themes/material/templates/.icons/fontawesome/solid/7.svg +1 -0
  1219. docsforge/themes/material/templates/.icons/fontawesome/solid/8.svg +1 -0
  1220. docsforge/themes/material/templates/.icons/fontawesome/solid/9.svg +1 -0
  1221. docsforge/themes/material/templates/.icons/fontawesome/solid/a.svg +1 -0
  1222. docsforge/themes/material/templates/.icons/fontawesome/solid/ad.svg +1 -0
  1223. docsforge/themes/material/templates/.icons/fontawesome/solid/add.svg +1 -0
  1224. docsforge/themes/material/templates/.icons/fontawesome/solid/address-book.svg +1 -0
  1225. docsforge/themes/material/templates/.icons/fontawesome/solid/address-card.svg +1 -0
  1226. docsforge/themes/material/templates/.icons/fontawesome/solid/adjust.svg +1 -0
  1227. docsforge/themes/material/templates/.icons/fontawesome/solid/air-freshener.svg +1 -0
  1228. docsforge/themes/material/templates/.icons/fontawesome/solid/alarm-clock.svg +1 -0
  1229. docsforge/themes/material/templates/.icons/fontawesome/solid/align-center.svg +1 -0
  1230. docsforge/themes/material/templates/.icons/fontawesome/solid/align-justify.svg +1 -0
  1231. docsforge/themes/material/templates/.icons/fontawesome/solid/align-left.svg +1 -0
  1232. docsforge/themes/material/templates/.icons/fontawesome/solid/align-right.svg +1 -0
  1233. docsforge/themes/material/templates/.icons/fontawesome/solid/allergies.svg +1 -0
  1234. docsforge/themes/material/templates/.icons/fontawesome/solid/ambulance.svg +1 -0
  1235. docsforge/themes/material/templates/.icons/fontawesome/solid/american-sign-language-interpreting.svg +1 -0
  1236. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg +1 -0
  1237. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg +1 -0
  1238. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg +1 -0
  1239. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-lock.svg +1 -0
  1240. docsforge/themes/material/templates/.icons/fontawesome/solid/anchor.svg +1 -0
  1241. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-down.svg +1 -0
  1242. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-left.svg +1 -0
  1243. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-right.svg +1 -0
  1244. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-up.svg +1 -0
  1245. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-down.svg +1 -0
  1246. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-left.svg +1 -0
  1247. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-right.svg +1 -0
  1248. docsforge/themes/material/templates/.icons/fontawesome/solid/angle-up.svg +1 -0
  1249. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-down.svg +1 -0
  1250. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-left.svg +1 -0
  1251. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-right.svg +1 -0
  1252. docsforge/themes/material/templates/.icons/fontawesome/solid/angles-up.svg +1 -0
  1253. docsforge/themes/material/templates/.icons/fontawesome/solid/angry.svg +1 -0
  1254. docsforge/themes/material/templates/.icons/fontawesome/solid/ankh.svg +1 -0
  1255. docsforge/themes/material/templates/.icons/fontawesome/solid/apple-alt.svg +1 -0
  1256. docsforge/themes/material/templates/.icons/fontawesome/solid/apple-whole.svg +1 -0
  1257. docsforge/themes/material/templates/.icons/fontawesome/solid/archive.svg +1 -0
  1258. docsforge/themes/material/templates/.icons/fontawesome/solid/archway.svg +1 -0
  1259. docsforge/themes/material/templates/.icons/fontawesome/solid/area-chart.svg +1 -0
  1260. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-down.svg +1 -0
  1261. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-left.svg +1 -0
  1262. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-right.svg +1 -0
  1263. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-up.svg +1 -0
  1264. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-down.svg +1 -0
  1265. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-left.svg +1 -0
  1266. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-right.svg +1 -0
  1267. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-up.svg +1 -0
  1268. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg +1 -0
  1269. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg +1 -0
  1270. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg +1 -0
  1271. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-long.svg +1 -0
  1272. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg +1 -0
  1273. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg +1 -0
  1274. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg +1 -0
  1275. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg +1 -0
  1276. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg +1 -0
  1277. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down.svg +1 -0
  1278. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-long.svg +1 -0
  1279. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-rotate.svg +1 -0
  1280. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left.svg +1 -0
  1281. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-pointer.svg +1 -0
  1282. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg +1 -0
  1283. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg +1 -0
  1284. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-file.svg +1 -0
  1285. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-long.svg +1 -0
  1286. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-rotate.svg +1 -0
  1287. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg +1 -0
  1288. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg +1 -0
  1289. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-file.svg +1 -0
  1290. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right.svg +1 -0
  1291. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-back.svg +1 -0
  1292. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-backward.svg +1 -0
  1293. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-forward.svg +1 -0
  1294. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg +1 -0
  1295. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg +1 -0
  1296. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg +1 -0
  1297. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg +1 -0
  1298. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg +1 -0
  1299. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg +1 -0
  1300. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg +1 -0
  1301. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg +1 -0
  1302. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg +1 -0
  1303. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg +1 -0
  1304. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg +1 -0
  1305. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg +1 -0
  1306. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-long.svg +1 -0
  1307. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg +1 -0
  1308. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg +1 -0
  1309. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg +1 -0
  1310. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg +1 -0
  1311. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg +1 -0
  1312. docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up.svg +1 -0
  1313. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-h.svg +1 -0
  1314. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-v.svg +1 -0
  1315. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt.svg +1 -0
  1316. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg +1 -0
  1317. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg +1 -0
  1318. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-h.svg +1 -0
  1319. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg +1 -0
  1320. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right.svg +1 -0
  1321. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-rotate.svg +1 -0
  1322. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-spin.svg +1 -0
  1323. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg +1 -0
  1324. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg +1 -0
  1325. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg +1 -0
  1326. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg +1 -0
  1327. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg +1 -0
  1328. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg +1 -0
  1329. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg +1 -0
  1330. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down.svg +1 -0
  1331. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg +1 -0
  1332. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-v.svg +1 -0
  1333. docsforge/themes/material/templates/.icons/fontawesome/solid/arrows.svg +1 -0
  1334. docsforge/themes/material/templates/.icons/fontawesome/solid/asl-interpreting.svg +1 -0
  1335. docsforge/themes/material/templates/.icons/fontawesome/solid/assistive-listening-systems.svg +1 -0
  1336. docsforge/themes/material/templates/.icons/fontawesome/solid/asterisk.svg +1 -0
  1337. docsforge/themes/material/templates/.icons/fontawesome/solid/at.svg +1 -0
  1338. docsforge/themes/material/templates/.icons/fontawesome/solid/atlas.svg +1 -0
  1339. docsforge/themes/material/templates/.icons/fontawesome/solid/atom.svg +1 -0
  1340. docsforge/themes/material/templates/.icons/fontawesome/solid/audio-description.svg +1 -0
  1341. docsforge/themes/material/templates/.icons/fontawesome/solid/austral-sign.svg +1 -0
  1342. docsforge/themes/material/templates/.icons/fontawesome/solid/automobile.svg +1 -0
  1343. docsforge/themes/material/templates/.icons/fontawesome/solid/award.svg +1 -0
  1344. docsforge/themes/material/templates/.icons/fontawesome/solid/b.svg +1 -0
  1345. docsforge/themes/material/templates/.icons/fontawesome/solid/baby-carriage.svg +1 -0
  1346. docsforge/themes/material/templates/.icons/fontawesome/solid/baby.svg +1 -0
  1347. docsforge/themes/material/templates/.icons/fontawesome/solid/backspace.svg +1 -0
  1348. docsforge/themes/material/templates/.icons/fontawesome/solid/backward-fast.svg +1 -0
  1349. docsforge/themes/material/templates/.icons/fontawesome/solid/backward-step.svg +1 -0
  1350. docsforge/themes/material/templates/.icons/fontawesome/solid/backward.svg +1 -0
  1351. docsforge/themes/material/templates/.icons/fontawesome/solid/bacon.svg +1 -0
  1352. docsforge/themes/material/templates/.icons/fontawesome/solid/bacteria.svg +1 -0
  1353. docsforge/themes/material/templates/.icons/fontawesome/solid/bacterium.svg +1 -0
  1354. docsforge/themes/material/templates/.icons/fontawesome/solid/bag-shopping.svg +1 -0
  1355. docsforge/themes/material/templates/.icons/fontawesome/solid/bahai.svg +1 -0
  1356. docsforge/themes/material/templates/.icons/fontawesome/solid/baht-sign.svg +1 -0
  1357. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-left.svg +1 -0
  1358. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-right.svg +1 -0
  1359. docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale.svg +1 -0
  1360. docsforge/themes/material/templates/.icons/fontawesome/solid/ban-smoking.svg +1 -0
  1361. docsforge/themes/material/templates/.icons/fontawesome/solid/ban.svg +1 -0
  1362. docsforge/themes/material/templates/.icons/fontawesome/solid/band-aid.svg +1 -0
  1363. docsforge/themes/material/templates/.icons/fontawesome/solid/bandage.svg +1 -0
  1364. docsforge/themes/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg +1 -0
  1365. docsforge/themes/material/templates/.icons/fontawesome/solid/bank.svg +1 -0
  1366. docsforge/themes/material/templates/.icons/fontawesome/solid/bar-chart.svg +1 -0
  1367. docsforge/themes/material/templates/.icons/fontawesome/solid/barcode.svg +1 -0
  1368. docsforge/themes/material/templates/.icons/fontawesome/solid/bars-progress.svg +1 -0
  1369. docsforge/themes/material/templates/.icons/fontawesome/solid/bars-staggered.svg +1 -0
  1370. docsforge/themes/material/templates/.icons/fontawesome/solid/bars.svg +1 -0
  1371. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-ball.svg +1 -0
  1372. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg +1 -0
  1373. docsforge/themes/material/templates/.icons/fontawesome/solid/baseball.svg +1 -0
  1374. docsforge/themes/material/templates/.icons/fontawesome/solid/basket-shopping.svg +1 -0
  1375. docsforge/themes/material/templates/.icons/fontawesome/solid/basketball-ball.svg +1 -0
  1376. docsforge/themes/material/templates/.icons/fontawesome/solid/basketball.svg +1 -0
  1377. docsforge/themes/material/templates/.icons/fontawesome/solid/bath.svg +1 -0
  1378. docsforge/themes/material/templates/.icons/fontawesome/solid/bathtub.svg +1 -0
  1379. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-0.svg +1 -0
  1380. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-2.svg +1 -0
  1381. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-3.svg +1 -0
  1382. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-4.svg +1 -0
  1383. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-5.svg +1 -0
  1384. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-car.svg +1 -0
  1385. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-empty.svg +1 -0
  1386. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-full.svg +1 -0
  1387. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-half.svg +1 -0
  1388. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-quarter.svg +1 -0
  1389. docsforge/themes/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg +1 -0
  1390. docsforge/themes/material/templates/.icons/fontawesome/solid/battery.svg +1 -0
  1391. docsforge/themes/material/templates/.icons/fontawesome/solid/bed-pulse.svg +1 -0
  1392. docsforge/themes/material/templates/.icons/fontawesome/solid/bed.svg +1 -0
  1393. docsforge/themes/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg +1 -0
  1394. docsforge/themes/material/templates/.icons/fontawesome/solid/beer.svg +1 -0
  1395. docsforge/themes/material/templates/.icons/fontawesome/solid/bell-concierge.svg +1 -0
  1396. docsforge/themes/material/templates/.icons/fontawesome/solid/bell-slash.svg +1 -0
  1397. docsforge/themes/material/templates/.icons/fontawesome/solid/bell.svg +1 -0
  1398. docsforge/themes/material/templates/.icons/fontawesome/solid/bezier-curve.svg +1 -0
  1399. docsforge/themes/material/templates/.icons/fontawesome/solid/bible.svg +1 -0
  1400. docsforge/themes/material/templates/.icons/fontawesome/solid/bicycle.svg +1 -0
  1401. docsforge/themes/material/templates/.icons/fontawesome/solid/biking.svg +1 -0
  1402. docsforge/themes/material/templates/.icons/fontawesome/solid/binoculars.svg +1 -0
  1403. docsforge/themes/material/templates/.icons/fontawesome/solid/biohazard.svg +1 -0
  1404. docsforge/themes/material/templates/.icons/fontawesome/solid/birthday-cake.svg +1 -0
  1405. docsforge/themes/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg +1 -0
  1406. docsforge/themes/material/templates/.icons/fontawesome/solid/blackboard.svg +1 -0
  1407. docsforge/themes/material/templates/.icons/fontawesome/solid/blender-phone.svg +1 -0
  1408. docsforge/themes/material/templates/.icons/fontawesome/solid/blender.svg +1 -0
  1409. docsforge/themes/material/templates/.icons/fontawesome/solid/blind.svg +1 -0
  1410. docsforge/themes/material/templates/.icons/fontawesome/solid/blog.svg +1 -0
  1411. docsforge/themes/material/templates/.icons/fontawesome/solid/bold.svg +1 -0
  1412. docsforge/themes/material/templates/.icons/fontawesome/solid/bolt-lightning.svg +1 -0
  1413. docsforge/themes/material/templates/.icons/fontawesome/solid/bolt.svg +1 -0
  1414. docsforge/themes/material/templates/.icons/fontawesome/solid/bomb.svg +1 -0
  1415. docsforge/themes/material/templates/.icons/fontawesome/solid/bone.svg +1 -0
  1416. docsforge/themes/material/templates/.icons/fontawesome/solid/bong.svg +1 -0
  1417. docsforge/themes/material/templates/.icons/fontawesome/solid/book-atlas.svg +1 -0
  1418. docsforge/themes/material/templates/.icons/fontawesome/solid/book-bible.svg +1 -0
  1419. docsforge/themes/material/templates/.icons/fontawesome/solid/book-bookmark.svg +1 -0
  1420. docsforge/themes/material/templates/.icons/fontawesome/solid/book-dead.svg +1 -0
  1421. docsforge/themes/material/templates/.icons/fontawesome/solid/book-journal-whills.svg +1 -0
  1422. docsforge/themes/material/templates/.icons/fontawesome/solid/book-medical.svg +1 -0
  1423. docsforge/themes/material/templates/.icons/fontawesome/solid/book-open-reader.svg +1 -0
  1424. docsforge/themes/material/templates/.icons/fontawesome/solid/book-open.svg +1 -0
  1425. docsforge/themes/material/templates/.icons/fontawesome/solid/book-quran.svg +1 -0
  1426. docsforge/themes/material/templates/.icons/fontawesome/solid/book-reader.svg +1 -0
  1427. docsforge/themes/material/templates/.icons/fontawesome/solid/book-skull.svg +1 -0
  1428. docsforge/themes/material/templates/.icons/fontawesome/solid/book-tanakh.svg +1 -0
  1429. docsforge/themes/material/templates/.icons/fontawesome/solid/book.svg +1 -0
  1430. docsforge/themes/material/templates/.icons/fontawesome/solid/bookmark.svg +1 -0
  1431. docsforge/themes/material/templates/.icons/fontawesome/solid/border-all.svg +1 -0
  1432. docsforge/themes/material/templates/.icons/fontawesome/solid/border-none.svg +1 -0
  1433. docsforge/themes/material/templates/.icons/fontawesome/solid/border-style.svg +1 -0
  1434. docsforge/themes/material/templates/.icons/fontawesome/solid/border-top-left.svg +1 -0
  1435. docsforge/themes/material/templates/.icons/fontawesome/solid/bore-hole.svg +1 -0
  1436. docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-droplet.svg +1 -0
  1437. docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-water.svg +1 -0
  1438. docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-food.svg +1 -0
  1439. docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-rice.svg +1 -0
  1440. docsforge/themes/material/templates/.icons/fontawesome/solid/bowling-ball.svg +1 -0
  1441. docsforge/themes/material/templates/.icons/fontawesome/solid/box-archive.svg +1 -0
  1442. docsforge/themes/material/templates/.icons/fontawesome/solid/box-open.svg +1 -0
  1443. docsforge/themes/material/templates/.icons/fontawesome/solid/box-tissue.svg +1 -0
  1444. docsforge/themes/material/templates/.icons/fontawesome/solid/box.svg +1 -0
  1445. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-alt.svg +1 -0
  1446. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-packing.svg +1 -0
  1447. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-stacked.svg +1 -0
  1448. docsforge/themes/material/templates/.icons/fontawesome/solid/boxes.svg +1 -0
  1449. docsforge/themes/material/templates/.icons/fontawesome/solid/braille.svg +1 -0
  1450. docsforge/themes/material/templates/.icons/fontawesome/solid/brain.svg +1 -0
  1451. docsforge/themes/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg +1 -0
  1452. docsforge/themes/material/templates/.icons/fontawesome/solid/bread-slice.svg +1 -0
  1453. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg +1 -0
  1454. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg +1 -0
  1455. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg +1 -0
  1456. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-lock.svg +1 -0
  1457. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-water.svg +1 -0
  1458. docsforge/themes/material/templates/.icons/fontawesome/solid/bridge.svg +1 -0
  1459. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-clock.svg +1 -0
  1460. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-medical.svg +1 -0
  1461. docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase.svg +1 -0
  1462. docsforge/themes/material/templates/.icons/fontawesome/solid/broadcast-tower.svg +1 -0
  1463. docsforge/themes/material/templates/.icons/fontawesome/solid/broom-ball.svg +1 -0
  1464. docsforge/themes/material/templates/.icons/fontawesome/solid/broom.svg +1 -0
  1465. docsforge/themes/material/templates/.icons/fontawesome/solid/brush.svg +1 -0
  1466. docsforge/themes/material/templates/.icons/fontawesome/solid/bucket.svg +1 -0
  1467. docsforge/themes/material/templates/.icons/fontawesome/solid/bug-slash.svg +1 -0
  1468. docsforge/themes/material/templates/.icons/fontawesome/solid/bug.svg +1 -0
  1469. docsforge/themes/material/templates/.icons/fontawesome/solid/bugs.svg +1 -0
  1470. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg +1 -0
  1471. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-check.svg +1 -0
  1472. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg +1 -0
  1473. docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg +1 -0
  1474. docsforge/themes/material/templates/.icons/fontawesome/solid/building-columns.svg +1 -0
  1475. docsforge/themes/material/templates/.icons/fontawesome/solid/building-flag.svg +1 -0
  1476. docsforge/themes/material/templates/.icons/fontawesome/solid/building-lock.svg +1 -0
  1477. docsforge/themes/material/templates/.icons/fontawesome/solid/building-ngo.svg +1 -0
  1478. docsforge/themes/material/templates/.icons/fontawesome/solid/building-shield.svg +1 -0
  1479. docsforge/themes/material/templates/.icons/fontawesome/solid/building-un.svg +1 -0
  1480. docsforge/themes/material/templates/.icons/fontawesome/solid/building-user.svg +1 -0
  1481. docsforge/themes/material/templates/.icons/fontawesome/solid/building-wheat.svg +1 -0
  1482. docsforge/themes/material/templates/.icons/fontawesome/solid/building.svg +1 -0
  1483. docsforge/themes/material/templates/.icons/fontawesome/solid/bullhorn.svg +1 -0
  1484. docsforge/themes/material/templates/.icons/fontawesome/solid/bullseye.svg +1 -0
  1485. docsforge/themes/material/templates/.icons/fontawesome/solid/burger.svg +1 -0
  1486. docsforge/themes/material/templates/.icons/fontawesome/solid/burn.svg +1 -0
  1487. docsforge/themes/material/templates/.icons/fontawesome/solid/burst.svg +1 -0
  1488. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-alt.svg +1 -0
  1489. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-side.svg +1 -0
  1490. docsforge/themes/material/templates/.icons/fontawesome/solid/bus-simple.svg +1 -0
  1491. docsforge/themes/material/templates/.icons/fontawesome/solid/bus.svg +1 -0
  1492. docsforge/themes/material/templates/.icons/fontawesome/solid/business-time.svg +1 -0
  1493. docsforge/themes/material/templates/.icons/fontawesome/solid/c.svg +1 -0
  1494. docsforge/themes/material/templates/.icons/fontawesome/solid/cab.svg +1 -0
  1495. docsforge/themes/material/templates/.icons/fontawesome/solid/cable-car.svg +1 -0
  1496. docsforge/themes/material/templates/.icons/fontawesome/solid/cake-candles.svg +1 -0
  1497. docsforge/themes/material/templates/.icons/fontawesome/solid/cake.svg +1 -0
  1498. docsforge/themes/material/templates/.icons/fontawesome/solid/calculator.svg +1 -0
  1499. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-alt.svg +1 -0
  1500. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-check.svg +1 -0
  1501. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-day.svg +1 -0
  1502. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-days.svg +1 -0
  1503. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-minus.svg +1 -0
  1504. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-plus.svg +1 -0
  1505. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-times.svg +1 -0
  1506. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-week.svg +1 -0
  1507. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-xmark.svg +1 -0
  1508. docsforge/themes/material/templates/.icons/fontawesome/solid/calendar.svg +1 -0
  1509. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-alt.svg +1 -0
  1510. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-retro.svg +1 -0
  1511. docsforge/themes/material/templates/.icons/fontawesome/solid/camera-rotate.svg +1 -0
  1512. docsforge/themes/material/templates/.icons/fontawesome/solid/camera.svg +1 -0
  1513. docsforge/themes/material/templates/.icons/fontawesome/solid/campground.svg +1 -0
  1514. docsforge/themes/material/templates/.icons/fontawesome/solid/cancel.svg +1 -0
  1515. docsforge/themes/material/templates/.icons/fontawesome/solid/candy-cane.svg +1 -0
  1516. docsforge/themes/material/templates/.icons/fontawesome/solid/cannabis.svg +1 -0
  1517. docsforge/themes/material/templates/.icons/fontawesome/solid/capsules.svg +1 -0
  1518. docsforge/themes/material/templates/.icons/fontawesome/solid/car-alt.svg +1 -0
  1519. docsforge/themes/material/templates/.icons/fontawesome/solid/car-battery.svg +1 -0
  1520. docsforge/themes/material/templates/.icons/fontawesome/solid/car-burst.svg +1 -0
  1521. docsforge/themes/material/templates/.icons/fontawesome/solid/car-crash.svg +1 -0
  1522. docsforge/themes/material/templates/.icons/fontawesome/solid/car-on.svg +1 -0
  1523. docsforge/themes/material/templates/.icons/fontawesome/solid/car-rear.svg +1 -0
  1524. docsforge/themes/material/templates/.icons/fontawesome/solid/car-side.svg +1 -0
  1525. docsforge/themes/material/templates/.icons/fontawesome/solid/car-tunnel.svg +1 -0
  1526. docsforge/themes/material/templates/.icons/fontawesome/solid/car.svg +1 -0
  1527. docsforge/themes/material/templates/.icons/fontawesome/solid/caravan.svg +1 -0
  1528. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-down.svg +1 -0
  1529. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-left.svg +1 -0
  1530. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-right.svg +1 -0
  1531. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-down.svg +1 -0
  1532. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-left.svg +1 -0
  1533. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-right.svg +1 -0
  1534. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-up.svg +1 -0
  1535. docsforge/themes/material/templates/.icons/fontawesome/solid/caret-up.svg +1 -0
  1536. docsforge/themes/material/templates/.icons/fontawesome/solid/carriage-baby.svg +1 -0
  1537. docsforge/themes/material/templates/.icons/fontawesome/solid/carrot.svg +1 -0
  1538. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg +1 -0
  1539. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg +1 -0
  1540. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed.svg +1 -0
  1541. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-plus.svg +1 -0
  1542. docsforge/themes/material/templates/.icons/fontawesome/solid/cart-shopping.svg +1 -0
  1543. docsforge/themes/material/templates/.icons/fontawesome/solid/cash-register.svg +1 -0
  1544. docsforge/themes/material/templates/.icons/fontawesome/solid/cat.svg +1 -0
  1545. docsforge/themes/material/templates/.icons/fontawesome/solid/cedi-sign.svg +1 -0
  1546. docsforge/themes/material/templates/.icons/fontawesome/solid/cent-sign.svg +1 -0
  1547. docsforge/themes/material/templates/.icons/fontawesome/solid/certificate.svg +1 -0
  1548. docsforge/themes/material/templates/.icons/fontawesome/solid/chain-broken.svg +1 -0
  1549. docsforge/themes/material/templates/.icons/fontawesome/solid/chain-slash.svg +1 -0
  1550. docsforge/themes/material/templates/.icons/fontawesome/solid/chain.svg +1 -0
  1551. docsforge/themes/material/templates/.icons/fontawesome/solid/chair.svg +1 -0
  1552. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-teacher.svg +1 -0
  1553. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-user.svg +1 -0
  1554. docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard.svg +1 -0
  1555. docsforge/themes/material/templates/.icons/fontawesome/solid/champagne-glasses.svg +1 -0
  1556. docsforge/themes/material/templates/.icons/fontawesome/solid/charging-station.svg +1 -0
  1557. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-area.svg +1 -0
  1558. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-bar.svg +1 -0
  1559. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-column.svg +1 -0
  1560. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-diagram.svg +1 -0
  1561. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-gantt.svg +1 -0
  1562. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-line.svg +1 -0
  1563. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-pie.svg +1 -0
  1564. docsforge/themes/material/templates/.icons/fontawesome/solid/chart-simple.svg +1 -0
  1565. docsforge/themes/material/templates/.icons/fontawesome/solid/check-circle.svg +1 -0
  1566. docsforge/themes/material/templates/.icons/fontawesome/solid/check-double.svg +1 -0
  1567. docsforge/themes/material/templates/.icons/fontawesome/solid/check-square.svg +1 -0
  1568. docsforge/themes/material/templates/.icons/fontawesome/solid/check-to-slot.svg +1 -0
  1569. docsforge/themes/material/templates/.icons/fontawesome/solid/check.svg +1 -0
  1570. docsforge/themes/material/templates/.icons/fontawesome/solid/cheese.svg +1 -0
  1571. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-bishop.svg +1 -0
  1572. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-board.svg +1 -0
  1573. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-king.svg +1 -0
  1574. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-knight.svg +1 -0
  1575. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-pawn.svg +1 -0
  1576. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-queen.svg +1 -0
  1577. docsforge/themes/material/templates/.icons/fontawesome/solid/chess-rook.svg +1 -0
  1578. docsforge/themes/material/templates/.icons/fontawesome/solid/chess.svg +1 -0
  1579. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-down.svg +1 -0
  1580. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-left.svg +1 -0
  1581. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-right.svg +1 -0
  1582. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-up.svg +1 -0
  1583. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-down.svg +1 -0
  1584. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-left.svg +1 -0
  1585. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-right.svg +1 -0
  1586. docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-up.svg +1 -0
  1587. docsforge/themes/material/templates/.icons/fontawesome/solid/child-combatant.svg +1 -0
  1588. docsforge/themes/material/templates/.icons/fontawesome/solid/child-dress.svg +1 -0
  1589. docsforge/themes/material/templates/.icons/fontawesome/solid/child-reaching.svg +1 -0
  1590. docsforge/themes/material/templates/.icons/fontawesome/solid/child-rifle.svg +1 -0
  1591. docsforge/themes/material/templates/.icons/fontawesome/solid/child.svg +1 -0
  1592. docsforge/themes/material/templates/.icons/fontawesome/solid/children.svg +1 -0
  1593. docsforge/themes/material/templates/.icons/fontawesome/solid/church.svg +1 -0
  1594. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg +1 -0
  1595. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg +1 -0
  1596. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg +1 -0
  1597. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg +1 -0
  1598. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-check.svg +1 -0
  1599. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg +1 -0
  1600. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg +1 -0
  1601. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg +1 -0
  1602. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg +1 -0
  1603. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg +1 -0
  1604. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dot.svg +1 -0
  1605. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-down.svg +1 -0
  1606. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-exclamation.svg +1 -0
  1607. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-h.svg +1 -0
  1608. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg +1 -0
  1609. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-info.svg +1 -0
  1610. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-left.svg +1 -0
  1611. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-minus.svg +1 -0
  1612. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-nodes.svg +1 -0
  1613. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-notch.svg +1 -0
  1614. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-pause.svg +1 -0
  1615. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-play.svg +1 -0
  1616. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-plus.svg +1 -0
  1617. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-question.svg +1 -0
  1618. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-radiation.svg +1 -0
  1619. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-right.svg +1 -0
  1620. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-stop.svg +1 -0
  1621. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-up.svg +1 -0
  1622. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-user.svg +1 -0
  1623. docsforge/themes/material/templates/.icons/fontawesome/solid/circle-xmark.svg +1 -0
  1624. docsforge/themes/material/templates/.icons/fontawesome/solid/circle.svg +1 -0
  1625. docsforge/themes/material/templates/.icons/fontawesome/solid/city.svg +1 -0
  1626. docsforge/themes/material/templates/.icons/fontawesome/solid/clapperboard.svg +1 -0
  1627. docsforge/themes/material/templates/.icons/fontawesome/solid/clinic-medical.svg +1 -0
  1628. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-check.svg +1 -0
  1629. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-list.svg +1 -0
  1630. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-question.svg +1 -0
  1631. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-user.svg +1 -0
  1632. docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard.svg +1 -0
  1633. docsforge/themes/material/templates/.icons/fontawesome/solid/clock-four.svg +1 -0
  1634. docsforge/themes/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg +1 -0
  1635. docsforge/themes/material/templates/.icons/fontawesome/solid/clock.svg +1 -0
  1636. docsforge/themes/material/templates/.icons/fontawesome/solid/clone.svg +1 -0
  1637. docsforge/themes/material/templates/.icons/fontawesome/solid/close.svg +1 -0
  1638. docsforge/themes/material/templates/.icons/fontawesome/solid/closed-captioning.svg +1 -0
  1639. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg +1 -0
  1640. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg +1 -0
  1641. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-bolt.svg +1 -0
  1642. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download-alt.svg +1 -0
  1643. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download.svg +1 -0
  1644. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-meatball.svg +1 -0
  1645. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg +1 -0
  1646. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon.svg +1 -0
  1647. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-rain.svg +1 -0
  1648. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg +1 -0
  1649. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg +1 -0
  1650. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg +1 -0
  1651. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun.svg +1 -0
  1652. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload-alt.svg +1 -0
  1653. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload.svg +1 -0
  1654. docsforge/themes/material/templates/.icons/fontawesome/solid/cloud.svg +1 -0
  1655. docsforge/themes/material/templates/.icons/fontawesome/solid/clover.svg +1 -0
  1656. docsforge/themes/material/templates/.icons/fontawesome/solid/cny.svg +1 -0
  1657. docsforge/themes/material/templates/.icons/fontawesome/solid/cocktail.svg +1 -0
  1658. docsforge/themes/material/templates/.icons/fontawesome/solid/code-branch.svg +1 -0
  1659. docsforge/themes/material/templates/.icons/fontawesome/solid/code-commit.svg +1 -0
  1660. docsforge/themes/material/templates/.icons/fontawesome/solid/code-compare.svg +1 -0
  1661. docsforge/themes/material/templates/.icons/fontawesome/solid/code-fork.svg +1 -0
  1662. docsforge/themes/material/templates/.icons/fontawesome/solid/code-merge.svg +1 -0
  1663. docsforge/themes/material/templates/.icons/fontawesome/solid/code-pull-request.svg +1 -0
  1664. docsforge/themes/material/templates/.icons/fontawesome/solid/code.svg +1 -0
  1665. docsforge/themes/material/templates/.icons/fontawesome/solid/coffee.svg +1 -0
  1666. docsforge/themes/material/templates/.icons/fontawesome/solid/cog.svg +1 -0
  1667. docsforge/themes/material/templates/.icons/fontawesome/solid/cogs.svg +1 -0
  1668. docsforge/themes/material/templates/.icons/fontawesome/solid/coins.svg +1 -0
  1669. docsforge/themes/material/templates/.icons/fontawesome/solid/colon-sign.svg +1 -0
  1670. docsforge/themes/material/templates/.icons/fontawesome/solid/columns.svg +1 -0
  1671. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-alt.svg +1 -0
  1672. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dollar.svg +1 -0
  1673. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dots.svg +1 -0
  1674. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-medical.svg +1 -0
  1675. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-nodes.svg +1 -0
  1676. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-slash.svg +1 -0
  1677. docsforge/themes/material/templates/.icons/fontawesome/solid/comment-sms.svg +1 -0
  1678. docsforge/themes/material/templates/.icons/fontawesome/solid/comment.svg +1 -0
  1679. docsforge/themes/material/templates/.icons/fontawesome/solid/commenting.svg +1 -0
  1680. docsforge/themes/material/templates/.icons/fontawesome/solid/comments-dollar.svg +1 -0
  1681. docsforge/themes/material/templates/.icons/fontawesome/solid/comments.svg +1 -0
  1682. docsforge/themes/material/templates/.icons/fontawesome/solid/compact-disc.svg +1 -0
  1683. docsforge/themes/material/templates/.icons/fontawesome/solid/compass-drafting.svg +1 -0
  1684. docsforge/themes/material/templates/.icons/fontawesome/solid/compass.svg +1 -0
  1685. docsforge/themes/material/templates/.icons/fontawesome/solid/compress-alt.svg +1 -0
  1686. docsforge/themes/material/templates/.icons/fontawesome/solid/compress-arrows-alt.svg +1 -0
  1687. docsforge/themes/material/templates/.icons/fontawesome/solid/compress.svg +1 -0
  1688. docsforge/themes/material/templates/.icons/fontawesome/solid/computer-mouse.svg +1 -0
  1689. docsforge/themes/material/templates/.icons/fontawesome/solid/computer.svg +1 -0
  1690. docsforge/themes/material/templates/.icons/fontawesome/solid/concierge-bell.svg +1 -0
  1691. docsforge/themes/material/templates/.icons/fontawesome/solid/contact-book.svg +1 -0
  1692. docsforge/themes/material/templates/.icons/fontawesome/solid/contact-card.svg +1 -0
  1693. docsforge/themes/material/templates/.icons/fontawesome/solid/cookie-bite.svg +1 -0
  1694. docsforge/themes/material/templates/.icons/fontawesome/solid/cookie.svg +1 -0
  1695. docsforge/themes/material/templates/.icons/fontawesome/solid/copy.svg +1 -0
  1696. docsforge/themes/material/templates/.icons/fontawesome/solid/copyright.svg +1 -0
  1697. docsforge/themes/material/templates/.icons/fontawesome/solid/couch.svg +1 -0
  1698. docsforge/themes/material/templates/.icons/fontawesome/solid/cow.svg +1 -0
  1699. docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card-alt.svg +1 -0
  1700. docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card.svg +1 -0
  1701. docsforge/themes/material/templates/.icons/fontawesome/solid/crop-alt.svg +1 -0
  1702. docsforge/themes/material/templates/.icons/fontawesome/solid/crop-simple.svg +1 -0
  1703. docsforge/themes/material/templates/.icons/fontawesome/solid/crop.svg +1 -0
  1704. docsforge/themes/material/templates/.icons/fontawesome/solid/cross.svg +1 -0
  1705. docsforge/themes/material/templates/.icons/fontawesome/solid/crosshairs.svg +1 -0
  1706. docsforge/themes/material/templates/.icons/fontawesome/solid/crow.svg +1 -0
  1707. docsforge/themes/material/templates/.icons/fontawesome/solid/crown.svg +1 -0
  1708. docsforge/themes/material/templates/.icons/fontawesome/solid/crutch.svg +1 -0
  1709. docsforge/themes/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg +1 -0
  1710. docsforge/themes/material/templates/.icons/fontawesome/solid/cube.svg +1 -0
  1711. docsforge/themes/material/templates/.icons/fontawesome/solid/cubes-stacked.svg +1 -0
  1712. docsforge/themes/material/templates/.icons/fontawesome/solid/cubes.svg +1 -0
  1713. docsforge/themes/material/templates/.icons/fontawesome/solid/cut.svg +1 -0
  1714. docsforge/themes/material/templates/.icons/fontawesome/solid/cutlery.svg +1 -0
  1715. docsforge/themes/material/templates/.icons/fontawesome/solid/d.svg +1 -0
  1716. docsforge/themes/material/templates/.icons/fontawesome/solid/dashboard.svg +1 -0
  1717. docsforge/themes/material/templates/.icons/fontawesome/solid/database.svg +1 -0
  1718. docsforge/themes/material/templates/.icons/fontawesome/solid/deaf.svg +1 -0
  1719. docsforge/themes/material/templates/.icons/fontawesome/solid/deafness.svg +1 -0
  1720. docsforge/themes/material/templates/.icons/fontawesome/solid/dedent.svg +1 -0
  1721. docsforge/themes/material/templates/.icons/fontawesome/solid/delete-left.svg +1 -0
  1722. docsforge/themes/material/templates/.icons/fontawesome/solid/democrat.svg +1 -0
  1723. docsforge/themes/material/templates/.icons/fontawesome/solid/desktop-alt.svg +1 -0
  1724. docsforge/themes/material/templates/.icons/fontawesome/solid/desktop.svg +1 -0
  1725. docsforge/themes/material/templates/.icons/fontawesome/solid/dharmachakra.svg +1 -0
  1726. docsforge/themes/material/templates/.icons/fontawesome/solid/diagnoses.svg +1 -0
  1727. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-next.svg +1 -0
  1728. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg +1 -0
  1729. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-project.svg +1 -0
  1730. docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-successor.svg +1 -0
  1731. docsforge/themes/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg +1 -0
  1732. docsforge/themes/material/templates/.icons/fontawesome/solid/diamond.svg +1 -0
  1733. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d20.svg +1 -0
  1734. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d6.svg +1 -0
  1735. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-five.svg +1 -0
  1736. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-four.svg +1 -0
  1737. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-one.svg +1 -0
  1738. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-six.svg +1 -0
  1739. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-three.svg +1 -0
  1740. docsforge/themes/material/templates/.icons/fontawesome/solid/dice-two.svg +1 -0
  1741. docsforge/themes/material/templates/.icons/fontawesome/solid/dice.svg +1 -0
  1742. docsforge/themes/material/templates/.icons/fontawesome/solid/digging.svg +1 -0
  1743. docsforge/themes/material/templates/.icons/fontawesome/solid/digital-tachograph.svg +1 -0
  1744. docsforge/themes/material/templates/.icons/fontawesome/solid/directions.svg +1 -0
  1745. docsforge/themes/material/templates/.icons/fontawesome/solid/disease.svg +1 -0
  1746. docsforge/themes/material/templates/.icons/fontawesome/solid/display.svg +1 -0
  1747. docsforge/themes/material/templates/.icons/fontawesome/solid/divide.svg +1 -0
  1748. docsforge/themes/material/templates/.icons/fontawesome/solid/dizzy.svg +1 -0
  1749. docsforge/themes/material/templates/.icons/fontawesome/solid/dna.svg +1 -0
  1750. docsforge/themes/material/templates/.icons/fontawesome/solid/dog.svg +1 -0
  1751. docsforge/themes/material/templates/.icons/fontawesome/solid/dollar-sign.svg +1 -0
  1752. docsforge/themes/material/templates/.icons/fontawesome/solid/dollar.svg +1 -0
  1753. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-box.svg +1 -0
  1754. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-flatbed.svg +1 -0
  1755. docsforge/themes/material/templates/.icons/fontawesome/solid/dolly.svg +1 -0
  1756. docsforge/themes/material/templates/.icons/fontawesome/solid/donate.svg +1 -0
  1757. docsforge/themes/material/templates/.icons/fontawesome/solid/dong-sign.svg +1 -0
  1758. docsforge/themes/material/templates/.icons/fontawesome/solid/door-closed.svg +1 -0
  1759. docsforge/themes/material/templates/.icons/fontawesome/solid/door-open.svg +1 -0
  1760. docsforge/themes/material/templates/.icons/fontawesome/solid/dot-circle.svg +1 -0
  1761. docsforge/themes/material/templates/.icons/fontawesome/solid/dove.svg +1 -0
  1762. docsforge/themes/material/templates/.icons/fontawesome/solid/down-left-and-up-right-to-center.svg +1 -0
  1763. docsforge/themes/material/templates/.icons/fontawesome/solid/down-long.svg +1 -0
  1764. docsforge/themes/material/templates/.icons/fontawesome/solid/download.svg +1 -0
  1765. docsforge/themes/material/templates/.icons/fontawesome/solid/drafting-compass.svg +1 -0
  1766. docsforge/themes/material/templates/.icons/fontawesome/solid/dragon.svg +1 -0
  1767. docsforge/themes/material/templates/.icons/fontawesome/solid/draw-polygon.svg +1 -0
  1768. docsforge/themes/material/templates/.icons/fontawesome/solid/drivers-license.svg +1 -0
  1769. docsforge/themes/material/templates/.icons/fontawesome/solid/droplet-slash.svg +1 -0
  1770. docsforge/themes/material/templates/.icons/fontawesome/solid/droplet.svg +1 -0
  1771. docsforge/themes/material/templates/.icons/fontawesome/solid/drum-steelpan.svg +1 -0
  1772. docsforge/themes/material/templates/.icons/fontawesome/solid/drum.svg +1 -0
  1773. docsforge/themes/material/templates/.icons/fontawesome/solid/drumstick-bite.svg +1 -0
  1774. docsforge/themes/material/templates/.icons/fontawesome/solid/dumbbell.svg +1 -0
  1775. docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster-fire.svg +1 -0
  1776. docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster.svg +1 -0
  1777. docsforge/themes/material/templates/.icons/fontawesome/solid/dungeon.svg +1 -0
  1778. docsforge/themes/material/templates/.icons/fontawesome/solid/e.svg +1 -0
  1779. docsforge/themes/material/templates/.icons/fontawesome/solid/ear-deaf.svg +1 -0
  1780. docsforge/themes/material/templates/.icons/fontawesome/solid/ear-listen.svg +1 -0
  1781. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-africa.svg +1 -0
  1782. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-america.svg +1 -0
  1783. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-americas.svg +1 -0
  1784. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-asia.svg +1 -0
  1785. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-europe.svg +1 -0
  1786. docsforge/themes/material/templates/.icons/fontawesome/solid/earth-oceania.svg +1 -0
  1787. docsforge/themes/material/templates/.icons/fontawesome/solid/earth.svg +1 -0
  1788. docsforge/themes/material/templates/.icons/fontawesome/solid/edit.svg +1 -0
  1789. docsforge/themes/material/templates/.icons/fontawesome/solid/egg.svg +1 -0
  1790. docsforge/themes/material/templates/.icons/fontawesome/solid/eject.svg +1 -0
  1791. docsforge/themes/material/templates/.icons/fontawesome/solid/elevator.svg +1 -0
  1792. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-h.svg +1 -0
  1793. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-v.svg +1 -0
  1794. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg +1 -0
  1795. docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis.svg +1 -0
  1796. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg +1 -0
  1797. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open-text.svg +1 -0
  1798. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open.svg +1 -0
  1799. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-square.svg +1 -0
  1800. docsforge/themes/material/templates/.icons/fontawesome/solid/envelope.svg +1 -0
  1801. docsforge/themes/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg +1 -0
  1802. docsforge/themes/material/templates/.icons/fontawesome/solid/equals.svg +1 -0
  1803. docsforge/themes/material/templates/.icons/fontawesome/solid/eraser.svg +1 -0
  1804. docsforge/themes/material/templates/.icons/fontawesome/solid/ethernet.svg +1 -0
  1805. docsforge/themes/material/templates/.icons/fontawesome/solid/eur.svg +1 -0
  1806. docsforge/themes/material/templates/.icons/fontawesome/solid/euro-sign.svg +1 -0
  1807. docsforge/themes/material/templates/.icons/fontawesome/solid/euro.svg +1 -0
  1808. docsforge/themes/material/templates/.icons/fontawesome/solid/exchange-alt.svg +1 -0
  1809. docsforge/themes/material/templates/.icons/fontawesome/solid/exchange.svg +1 -0
  1810. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-circle.svg +1 -0
  1811. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-triangle.svg +1 -0
  1812. docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation.svg +1 -0
  1813. docsforge/themes/material/templates/.icons/fontawesome/solid/expand-alt.svg +1 -0
  1814. docsforge/themes/material/templates/.icons/fontawesome/solid/expand-arrows-alt.svg +1 -0
  1815. docsforge/themes/material/templates/.icons/fontawesome/solid/expand.svg +1 -0
  1816. docsforge/themes/material/templates/.icons/fontawesome/solid/explosion.svg +1 -0
  1817. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-alt.svg +1 -0
  1818. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square-alt.svg +1 -0
  1819. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square.svg +1 -0
  1820. docsforge/themes/material/templates/.icons/fontawesome/solid/external-link.svg +1 -0
  1821. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper-empty.svg +1 -0
  1822. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper.svg +1 -0
  1823. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-low-vision.svg +1 -0
  1824. docsforge/themes/material/templates/.icons/fontawesome/solid/eye-slash.svg +1 -0
  1825. docsforge/themes/material/templates/.icons/fontawesome/solid/eye.svg +1 -0
  1826. docsforge/themes/material/templates/.icons/fontawesome/solid/eyedropper.svg +1 -0
  1827. docsforge/themes/material/templates/.icons/fontawesome/solid/f.svg +1 -0
  1828. docsforge/themes/material/templates/.icons/fontawesome/solid/face-angry.svg +1 -0
  1829. docsforge/themes/material/templates/.icons/fontawesome/solid/face-dizzy.svg +1 -0
  1830. docsforge/themes/material/templates/.icons/fontawesome/solid/face-flushed.svg +1 -0
  1831. docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown-open.svg +1 -0
  1832. docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown.svg +1 -0
  1833. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grimace.svg +1 -0
  1834. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg +1 -0
  1835. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam.svg +1 -0
  1836. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg +1 -0
  1837. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg +1 -0
  1838. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint.svg +1 -0
  1839. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-stars.svg +1 -0
  1840. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tears.svg +1 -0
  1841. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg +1 -0
  1842. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg +1 -0
  1843. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg +1 -0
  1844. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wide.svg +1 -0
  1845. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wink.svg +1 -0
  1846. docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin.svg +1 -0
  1847. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg +1 -0
  1848. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg +1 -0
  1849. docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss.svg +1 -0
  1850. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg +1 -0
  1851. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg +1 -0
  1852. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg +1 -0
  1853. docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh.svg +1 -0
  1854. docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh-blank.svg +1 -0
  1855. docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh.svg +1 -0
  1856. docsforge/themes/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg +1 -0
  1857. docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-cry.svg +1 -0
  1858. docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-tear.svg +1 -0
  1859. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-beam.svg +1 -0
  1860. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-wink.svg +1 -0
  1861. docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile.svg +1 -0
  1862. docsforge/themes/material/templates/.icons/fontawesome/solid/face-surprise.svg +1 -0
  1863. docsforge/themes/material/templates/.icons/fontawesome/solid/face-tired.svg +1 -0
  1864. docsforge/themes/material/templates/.icons/fontawesome/solid/fan.svg +1 -0
  1865. docsforge/themes/material/templates/.icons/fontawesome/solid/fast-backward.svg +1 -0
  1866. docsforge/themes/material/templates/.icons/fontawesome/solid/fast-forward.svg +1 -0
  1867. docsforge/themes/material/templates/.icons/fontawesome/solid/faucet-drip.svg +1 -0
  1868. docsforge/themes/material/templates/.icons/fontawesome/solid/faucet.svg +1 -0
  1869. docsforge/themes/material/templates/.icons/fontawesome/solid/fax.svg +1 -0
  1870. docsforge/themes/material/templates/.icons/fontawesome/solid/feather-alt.svg +1 -0
  1871. docsforge/themes/material/templates/.icons/fontawesome/solid/feather-pointed.svg +1 -0
  1872. docsforge/themes/material/templates/.icons/fontawesome/solid/feather.svg +1 -0
  1873. docsforge/themes/material/templates/.icons/fontawesome/solid/feed.svg +1 -0
  1874. docsforge/themes/material/templates/.icons/fontawesome/solid/female.svg +1 -0
  1875. docsforge/themes/material/templates/.icons/fontawesome/solid/ferry.svg +1 -0
  1876. docsforge/themes/material/templates/.icons/fontawesome/solid/fighter-jet.svg +1 -0
  1877. docsforge/themes/material/templates/.icons/fontawesome/solid/file-alt.svg +1 -0
  1878. docsforge/themes/material/templates/.icons/fontawesome/solid/file-archive.svg +1 -0
  1879. docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-down.svg +1 -0
  1880. docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-up.svg +1 -0
  1881. docsforge/themes/material/templates/.icons/fontawesome/solid/file-audio.svg +1 -0
  1882. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-check.svg +1 -0
  1883. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg +1 -0
  1884. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-minus.svg +1 -0
  1885. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-plus.svg +1 -0
  1886. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-question.svg +1 -0
  1887. docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg +1 -0
  1888. docsforge/themes/material/templates/.icons/fontawesome/solid/file-clipboard.svg +1 -0
  1889. docsforge/themes/material/templates/.icons/fontawesome/solid/file-code.svg +1 -0
  1890. docsforge/themes/material/templates/.icons/fontawesome/solid/file-contract.svg +1 -0
  1891. docsforge/themes/material/templates/.icons/fontawesome/solid/file-csv.svg +1 -0
  1892. docsforge/themes/material/templates/.icons/fontawesome/solid/file-download.svg +1 -0
  1893. docsforge/themes/material/templates/.icons/fontawesome/solid/file-edit.svg +1 -0
  1894. docsforge/themes/material/templates/.icons/fontawesome/solid/file-excel.svg +1 -0
  1895. docsforge/themes/material/templates/.icons/fontawesome/solid/file-export.svg +1 -0
  1896. docsforge/themes/material/templates/.icons/fontawesome/solid/file-fragment.svg +1 -0
  1897. docsforge/themes/material/templates/.icons/fontawesome/solid/file-half-dashed.svg +1 -0
  1898. docsforge/themes/material/templates/.icons/fontawesome/solid/file-image.svg +1 -0
  1899. docsforge/themes/material/templates/.icons/fontawesome/solid/file-import.svg +1 -0
  1900. docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg +1 -0
  1901. docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice.svg +1 -0
  1902. docsforge/themes/material/templates/.icons/fontawesome/solid/file-lines.svg +1 -0
  1903. docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical-alt.svg +1 -0
  1904. docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical.svg +1 -0
  1905. docsforge/themes/material/templates/.icons/fontawesome/solid/file-pdf.svg +1 -0
  1906. docsforge/themes/material/templates/.icons/fontawesome/solid/file-pen.svg +1 -0
  1907. docsforge/themes/material/templates/.icons/fontawesome/solid/file-powerpoint.svg +1 -0
  1908. docsforge/themes/material/templates/.icons/fontawesome/solid/file-prescription.svg +1 -0
  1909. docsforge/themes/material/templates/.icons/fontawesome/solid/file-shield.svg +1 -0
  1910. docsforge/themes/material/templates/.icons/fontawesome/solid/file-signature.svg +1 -0
  1911. docsforge/themes/material/templates/.icons/fontawesome/solid/file-text.svg +1 -0
  1912. docsforge/themes/material/templates/.icons/fontawesome/solid/file-upload.svg +1 -0
  1913. docsforge/themes/material/templates/.icons/fontawesome/solid/file-video.svg +1 -0
  1914. docsforge/themes/material/templates/.icons/fontawesome/solid/file-waveform.svg +1 -0
  1915. docsforge/themes/material/templates/.icons/fontawesome/solid/file-word.svg +1 -0
  1916. docsforge/themes/material/templates/.icons/fontawesome/solid/file-zipper.svg +1 -0
  1917. docsforge/themes/material/templates/.icons/fontawesome/solid/file.svg +1 -0
  1918. docsforge/themes/material/templates/.icons/fontawesome/solid/fill-drip.svg +1 -0
  1919. docsforge/themes/material/templates/.icons/fontawesome/solid/fill.svg +1 -0
  1920. docsforge/themes/material/templates/.icons/fontawesome/solid/film-alt.svg +1 -0
  1921. docsforge/themes/material/templates/.icons/fontawesome/solid/film-simple.svg +1 -0
  1922. docsforge/themes/material/templates/.icons/fontawesome/solid/film.svg +1 -0
  1923. docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg +1 -0
  1924. docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg +1 -0
  1925. docsforge/themes/material/templates/.icons/fontawesome/solid/filter.svg +1 -0
  1926. docsforge/themes/material/templates/.icons/fontawesome/solid/fingerprint.svg +1 -0
  1927. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-alt.svg +1 -0
  1928. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-burner.svg +1 -0
  1929. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg +1 -0
  1930. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg +1 -0
  1931. docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg +1 -0
  1932. docsforge/themes/material/templates/.icons/fontawesome/solid/fire.svg +1 -0
  1933. docsforge/themes/material/templates/.icons/fontawesome/solid/first-aid.svg +1 -0
  1934. docsforge/themes/material/templates/.icons/fontawesome/solid/fish-fins.svg +1 -0
  1935. docsforge/themes/material/templates/.icons/fontawesome/solid/fish.svg +1 -0
  1936. docsforge/themes/material/templates/.icons/fontawesome/solid/fist-raised.svg +1 -0
  1937. docsforge/themes/material/templates/.icons/fontawesome/solid/flag-checkered.svg +1 -0
  1938. docsforge/themes/material/templates/.icons/fontawesome/solid/flag-usa.svg +1 -0
  1939. docsforge/themes/material/templates/.icons/fontawesome/solid/flag.svg +1 -0
  1940. docsforge/themes/material/templates/.icons/fontawesome/solid/flask-vial.svg +1 -0
  1941. docsforge/themes/material/templates/.icons/fontawesome/solid/flask.svg +1 -0
  1942. docsforge/themes/material/templates/.icons/fontawesome/solid/floppy-disk.svg +1 -0
  1943. docsforge/themes/material/templates/.icons/fontawesome/solid/florin-sign.svg +1 -0
  1944. docsforge/themes/material/templates/.icons/fontawesome/solid/flushed.svg +1 -0
  1945. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-blank.svg +1 -0
  1946. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-closed.svg +1 -0
  1947. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-minus.svg +1 -0
  1948. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-open.svg +1 -0
  1949. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-plus.svg +1 -0
  1950. docsforge/themes/material/templates/.icons/fontawesome/solid/folder-tree.svg +1 -0
  1951. docsforge/themes/material/templates/.icons/fontawesome/solid/folder.svg +1 -0
  1952. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-flag.svg +1 -0
  1953. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-logo-full.svg +1 -0
  1954. docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome.svg +1 -0
  1955. docsforge/themes/material/templates/.icons/fontawesome/solid/font.svg +1 -0
  1956. docsforge/themes/material/templates/.icons/fontawesome/solid/football-ball.svg +1 -0
  1957. docsforge/themes/material/templates/.icons/fontawesome/solid/football.svg +1 -0
  1958. docsforge/themes/material/templates/.icons/fontawesome/solid/forward-fast.svg +1 -0
  1959. docsforge/themes/material/templates/.icons/fontawesome/solid/forward-step.svg +1 -0
  1960. docsforge/themes/material/templates/.icons/fontawesome/solid/forward.svg +1 -0
  1961. docsforge/themes/material/templates/.icons/fontawesome/solid/franc-sign.svg +1 -0
  1962. docsforge/themes/material/templates/.icons/fontawesome/solid/frog.svg +1 -0
  1963. docsforge/themes/material/templates/.icons/fontawesome/solid/frown-open.svg +1 -0
  1964. docsforge/themes/material/templates/.icons/fontawesome/solid/frown.svg +1 -0
  1965. docsforge/themes/material/templates/.icons/fontawesome/solid/funnel-dollar.svg +1 -0
  1966. docsforge/themes/material/templates/.icons/fontawesome/solid/futbol-ball.svg +1 -0
  1967. docsforge/themes/material/templates/.icons/fontawesome/solid/futbol.svg +1 -0
  1968. docsforge/themes/material/templates/.icons/fontawesome/solid/g.svg +1 -0
  1969. docsforge/themes/material/templates/.icons/fontawesome/solid/gamepad.svg +1 -0
  1970. docsforge/themes/material/templates/.icons/fontawesome/solid/gas-pump.svg +1 -0
  1971. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-high.svg +1 -0
  1972. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-med.svg +1 -0
  1973. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg +1 -0
  1974. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-med.svg +1 -0
  1975. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple.svg +1 -0
  1976. docsforge/themes/material/templates/.icons/fontawesome/solid/gauge.svg +1 -0
  1977. docsforge/themes/material/templates/.icons/fontawesome/solid/gavel.svg +1 -0
  1978. docsforge/themes/material/templates/.icons/fontawesome/solid/gbp.svg +1 -0
  1979. docsforge/themes/material/templates/.icons/fontawesome/solid/gear.svg +1 -0
  1980. docsforge/themes/material/templates/.icons/fontawesome/solid/gears.svg +1 -0
  1981. docsforge/themes/material/templates/.icons/fontawesome/solid/gem.svg +1 -0
  1982. docsforge/themes/material/templates/.icons/fontawesome/solid/genderless.svg +1 -0
  1983. docsforge/themes/material/templates/.icons/fontawesome/solid/ghost.svg +1 -0
  1984. docsforge/themes/material/templates/.icons/fontawesome/solid/gift.svg +1 -0
  1985. docsforge/themes/material/templates/.icons/fontawesome/solid/gifts.svg +1 -0
  1986. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-cheers.svg +1 -0
  1987. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini-alt.svg +1 -0
  1988. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini.svg +1 -0
  1989. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg +1 -0
  1990. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water.svg +1 -0
  1991. docsforge/themes/material/templates/.icons/fontawesome/solid/glass-whiskey.svg +1 -0
  1992. docsforge/themes/material/templates/.icons/fontawesome/solid/glasses.svg +1 -0
  1993. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-africa.svg +1 -0
  1994. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-americas.svg +1 -0
  1995. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-asia.svg +1 -0
  1996. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-europe.svg +1 -0
  1997. docsforge/themes/material/templates/.icons/fontawesome/solid/globe-oceania.svg +1 -0
  1998. docsforge/themes/material/templates/.icons/fontawesome/solid/globe.svg +1 -0
  1999. docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg +1 -0
  2000. docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball.svg +1 -0
  2001. docsforge/themes/material/templates/.icons/fontawesome/solid/gopuram.svg +1 -0
  2002. docsforge/themes/material/templates/.icons/fontawesome/solid/graduation-cap.svg +1 -0
  2003. docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than-equal.svg +1 -0
  2004. docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than.svg +1 -0
  2005. docsforge/themes/material/templates/.icons/fontawesome/solid/grid-horizontal.svg +1 -0
  2006. docsforge/themes/material/templates/.icons/fontawesome/solid/grid-vertical.svg +1 -0
  2007. docsforge/themes/material/templates/.icons/fontawesome/solid/grimace.svg +1 -0
  2008. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-alt.svg +1 -0
  2009. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam-sweat.svg +1 -0
  2010. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam.svg +1 -0
  2011. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-hearts.svg +1 -0
  2012. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint-tears.svg +1 -0
  2013. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint.svg +1 -0
  2014. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-stars.svg +1 -0
  2015. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tears.svg +1 -0
  2016. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-squint.svg +1 -0
  2017. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-wink.svg +1 -0
  2018. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue.svg +1 -0
  2019. docsforge/themes/material/templates/.icons/fontawesome/solid/grin-wink.svg +1 -0
  2020. docsforge/themes/material/templates/.icons/fontawesome/solid/grin.svg +1 -0
  2021. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-horizontal.svg +1 -0
  2022. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg +1 -0
  2023. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines.svg +1 -0
  2024. docsforge/themes/material/templates/.icons/fontawesome/solid/grip-vertical.svg +1 -0
  2025. docsforge/themes/material/templates/.icons/fontawesome/solid/grip.svg +1 -0
  2026. docsforge/themes/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg +1 -0
  2027. docsforge/themes/material/templates/.icons/fontawesome/solid/guarani-sign.svg +1 -0
  2028. docsforge/themes/material/templates/.icons/fontawesome/solid/guitar.svg +1 -0
  2029. docsforge/themes/material/templates/.icons/fontawesome/solid/gun.svg +1 -0
  2030. docsforge/themes/material/templates/.icons/fontawesome/solid/h-square.svg +1 -0
  2031. docsforge/themes/material/templates/.icons/fontawesome/solid/h.svg +1 -0
  2032. docsforge/themes/material/templates/.icons/fontawesome/solid/hamburger.svg +1 -0
  2033. docsforge/themes/material/templates/.icons/fontawesome/solid/hammer.svg +1 -0
  2034. docsforge/themes/material/templates/.icons/fontawesome/solid/hamsa.svg +1 -0
  2035. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-back-fist.svg +1 -0
  2036. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-dots.svg +1 -0
  2037. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-fist.svg +1 -0
  2038. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg +1 -0
  2039. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg +1 -0
  2040. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg +1 -0
  2041. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg +1 -0
  2042. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg +1 -0
  2043. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-usd.svg +1 -0
  2044. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-water.svg +1 -0
  2045. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding.svg +1 -0
  2046. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-lizard.svg +1 -0
  2047. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg +1 -0
  2048. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-paper.svg +1 -0
  2049. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-peace.svg +1 -0
  2050. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-down.svg +1 -0
  2051. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-left.svg +1 -0
  2052. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-right.svg +1 -0
  2053. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-up.svg +1 -0
  2054. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-pointer.svg +1 -0
  2055. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-rock.svg +1 -0
  2056. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-scissors.svg +1 -0
  2057. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-sparkles.svg +1 -0
  2058. docsforge/themes/material/templates/.icons/fontawesome/solid/hand-spock.svg +1 -0
  2059. docsforge/themes/material/templates/.icons/fontawesome/solid/hand.svg +1 -0
  2060. docsforge/themes/material/templates/.icons/fontawesome/solid/handcuffs.svg +1 -0
  2061. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-american-sign-language-interpreting.svg +1 -0
  2062. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg +1 -0
  2063. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bound.svg +1 -0
  2064. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bubbles.svg +1 -0
  2065. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-clapping.svg +1 -0
  2066. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-helping.svg +1 -0
  2067. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-child.svg +1 -0
  2068. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg +1 -0
  2069. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding.svg +1 -0
  2070. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-praying.svg +1 -0
  2071. docsforge/themes/material/templates/.icons/fontawesome/solid/hands-wash.svg +1 -0
  2072. docsforge/themes/material/templates/.icons/fontawesome/solid/hands.svg +1 -0
  2073. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt-slash.svg +1 -0
  2074. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt.svg +1 -0
  2075. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-angle.svg +1 -0
  2076. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg +1 -0
  2077. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple.svg +1 -0
  2078. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-slash.svg +1 -0
  2079. docsforge/themes/material/templates/.icons/fontawesome/solid/handshake.svg +1 -0
  2080. docsforge/themes/material/templates/.icons/fontawesome/solid/hanukiah.svg +1 -0
  2081. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-drive.svg +1 -0
  2082. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-hat.svg +1 -0
  2083. docsforge/themes/material/templates/.icons/fontawesome/solid/hard-of-hearing.svg +1 -0
  2084. docsforge/themes/material/templates/.icons/fontawesome/solid/hashtag.svg +1 -0
  2085. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg +1 -0
  2086. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy.svg +1 -0
  2087. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-hard.svg +1 -0
  2088. docsforge/themes/material/templates/.icons/fontawesome/solid/hat-wizard.svg +1 -0
  2089. docsforge/themes/material/templates/.icons/fontawesome/solid/haykal.svg +1 -0
  2090. docsforge/themes/material/templates/.icons/fontawesome/solid/hdd.svg +1 -0
  2091. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg +1 -0
  2092. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough.svg +1 -0
  2093. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-mask.svg +1 -0
  2094. docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-virus.svg +1 -0
  2095. docsforge/themes/material/templates/.icons/fontawesome/solid/header.svg +1 -0
  2096. docsforge/themes/material/templates/.icons/fontawesome/solid/heading.svg +1 -0
  2097. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-alt.svg +1 -0
  2098. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-simple.svg +1 -0
  2099. docsforge/themes/material/templates/.icons/fontawesome/solid/headphones.svg +1 -0
  2100. docsforge/themes/material/templates/.icons/fontawesome/solid/headset.svg +1 -0
  2101. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-broken.svg +1 -0
  2102. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg +1 -0
  2103. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-check.svg +1 -0
  2104. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg +1 -0
  2105. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg +1 -0
  2106. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg +1 -0
  2107. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg +1 -0
  2108. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-crack.svg +1 -0
  2109. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-music-camera-bolt.svg +1 -0
  2110. docsforge/themes/material/templates/.icons/fontawesome/solid/heart-pulse.svg +1 -0
  2111. docsforge/themes/material/templates/.icons/fontawesome/solid/heart.svg +1 -0
  2112. docsforge/themes/material/templates/.icons/fontawesome/solid/heartbeat.svg +1 -0
  2113. docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg +1 -0
  2114. docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter.svg +1 -0
  2115. docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-safety.svg +1 -0
  2116. docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-un.svg +1 -0
  2117. docsforge/themes/material/templates/.icons/fontawesome/solid/heptagon.svg +1 -0
  2118. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg +1 -0
  2119. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg +1 -0
  2120. docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon.svg +1 -0
  2121. docsforge/themes/material/templates/.icons/fontawesome/solid/highlighter.svg +1 -0
  2122. docsforge/themes/material/templates/.icons/fontawesome/solid/hiking.svg +1 -0
  2123. docsforge/themes/material/templates/.icons/fontawesome/solid/hill-avalanche.svg +1 -0
  2124. docsforge/themes/material/templates/.icons/fontawesome/solid/hill-rockslide.svg +1 -0
  2125. docsforge/themes/material/templates/.icons/fontawesome/solid/hippo.svg +1 -0
  2126. docsforge/themes/material/templates/.icons/fontawesome/solid/history.svg +1 -0
  2127. docsforge/themes/material/templates/.icons/fontawesome/solid/hockey-puck.svg +1 -0
  2128. docsforge/themes/material/templates/.icons/fontawesome/solid/holly-berry.svg +1 -0
  2129. docsforge/themes/material/templates/.icons/fontawesome/solid/home-alt.svg +1 -0
  2130. docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg-alt.svg +1 -0
  2131. docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg.svg +1 -0
  2132. docsforge/themes/material/templates/.icons/fontawesome/solid/home-user.svg +1 -0
  2133. docsforge/themes/material/templates/.icons/fontawesome/solid/home.svg +1 -0
  2134. docsforge/themes/material/templates/.icons/fontawesome/solid/horse-head.svg +1 -0
  2135. docsforge/themes/material/templates/.icons/fontawesome/solid/horse.svg +1 -0
  2136. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-alt.svg +1 -0
  2137. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-symbol.svg +1 -0
  2138. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-user.svg +1 -0
  2139. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-wide.svg +1 -0
  2140. docsforge/themes/material/templates/.icons/fontawesome/solid/hospital.svg +1 -0
  2141. docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub-person.svg +1 -0
  2142. docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub.svg +1 -0
  2143. docsforge/themes/material/templates/.icons/fontawesome/solid/hotdog.svg +1 -0
  2144. docsforge/themes/material/templates/.icons/fontawesome/solid/hotel.svg +1 -0
  2145. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-1.svg +1 -0
  2146. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-2.svg +1 -0
  2147. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-3.svg +1 -0
  2148. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-empty.svg +1 -0
  2149. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-end.svg +1 -0
  2150. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-half.svg +1 -0
  2151. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-start.svg +1 -0
  2152. docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass.svg +1 -0
  2153. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg +1 -0
  2154. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg +1 -0
  2155. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-user.svg +1 -0
  2156. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-window.svg +1 -0
  2157. docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney.svg +1 -0
  2158. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-check.svg +1 -0
  2159. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg +1 -0
  2160. docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg +1 -0
  2161. docsforge/themes/material/templates/.icons/fontawesome/solid/house-crack.svg +1 -0
  2162. docsforge/themes/material/templates/.icons/fontawesome/solid/house-damage.svg +1 -0
  2163. docsforge/themes/material/templates/.icons/fontawesome/solid/house-fire.svg +1 -0
  2164. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flag.svg +1 -0
  2165. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water-circle-arrow-right.svg +1 -0
  2166. docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water.svg +1 -0
  2167. docsforge/themes/material/templates/.icons/fontawesome/solid/house-laptop.svg +1 -0
  2168. docsforge/themes/material/templates/.icons/fontawesome/solid/house-lock.svg +1 -0
  2169. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg +1 -0
  2170. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-exclamation.svg +1 -0
  2171. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg +1 -0
  2172. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-flag.svg +1 -0
  2173. docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical.svg +1 -0
  2174. docsforge/themes/material/templates/.icons/fontawesome/solid/house-signal.svg +1 -0
  2175. docsforge/themes/material/templates/.icons/fontawesome/solid/house-tsunami.svg +1 -0
  2176. docsforge/themes/material/templates/.icons/fontawesome/solid/house-user.svg +1 -0
  2177. docsforge/themes/material/templates/.icons/fontawesome/solid/house.svg +1 -0
  2178. docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg +1 -0
  2179. docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia.svg +1 -0
  2180. docsforge/themes/material/templates/.icons/fontawesome/solid/hurricane.svg +1 -0
  2181. docsforge/themes/material/templates/.icons/fontawesome/solid/i-cursor.svg +1 -0
  2182. docsforge/themes/material/templates/.icons/fontawesome/solid/i.svg +1 -0
  2183. docsforge/themes/material/templates/.icons/fontawesome/solid/ice-cream.svg +1 -0
  2184. docsforge/themes/material/templates/.icons/fontawesome/solid/icicles.svg +1 -0
  2185. docsforge/themes/material/templates/.icons/fontawesome/solid/icons.svg +1 -0
  2186. docsforge/themes/material/templates/.icons/fontawesome/solid/id-badge.svg +1 -0
  2187. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-alt.svg +1 -0
  2188. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-clip.svg +1 -0
  2189. docsforge/themes/material/templates/.icons/fontawesome/solid/id-card.svg +1 -0
  2190. docsforge/themes/material/templates/.icons/fontawesome/solid/igloo.svg +1 -0
  2191. docsforge/themes/material/templates/.icons/fontawesome/solid/ils.svg +1 -0
  2192. docsforge/themes/material/templates/.icons/fontawesome/solid/image-portrait.svg +1 -0
  2193. docsforge/themes/material/templates/.icons/fontawesome/solid/image.svg +1 -0
  2194. docsforge/themes/material/templates/.icons/fontawesome/solid/images.svg +1 -0
  2195. docsforge/themes/material/templates/.icons/fontawesome/solid/inbox.svg +1 -0
  2196. docsforge/themes/material/templates/.icons/fontawesome/solid/indent.svg +1 -0
  2197. docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg +1 -0
  2198. docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee.svg +1 -0
  2199. docsforge/themes/material/templates/.icons/fontawesome/solid/industry.svg +1 -0
  2200. docsforge/themes/material/templates/.icons/fontawesome/solid/infinity.svg +1 -0
  2201. docsforge/themes/material/templates/.icons/fontawesome/solid/info-circle.svg +1 -0
  2202. docsforge/themes/material/templates/.icons/fontawesome/solid/info.svg +1 -0
  2203. docsforge/themes/material/templates/.icons/fontawesome/solid/inr.svg +1 -0
  2204. docsforge/themes/material/templates/.icons/fontawesome/solid/institution.svg +1 -0
  2205. docsforge/themes/material/templates/.icons/fontawesome/solid/italic.svg +1 -0
  2206. docsforge/themes/material/templates/.icons/fontawesome/solid/j.svg +1 -0
  2207. docsforge/themes/material/templates/.icons/fontawesome/solid/jar-wheat.svg +1 -0
  2208. docsforge/themes/material/templates/.icons/fontawesome/solid/jar.svg +1 -0
  2209. docsforge/themes/material/templates/.icons/fontawesome/solid/jedi.svg +1 -0
  2210. docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg +1 -0
  2211. docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter.svg +1 -0
  2212. docsforge/themes/material/templates/.icons/fontawesome/solid/joint.svg +1 -0
  2213. docsforge/themes/material/templates/.icons/fontawesome/solid/journal-whills.svg +1 -0
  2214. docsforge/themes/material/templates/.icons/fontawesome/solid/jpy.svg +1 -0
  2215. docsforge/themes/material/templates/.icons/fontawesome/solid/jug-detergent.svg +1 -0
  2216. docsforge/themes/material/templates/.icons/fontawesome/solid/k.svg +1 -0
  2217. docsforge/themes/material/templates/.icons/fontawesome/solid/kaaba.svg +1 -0
  2218. docsforge/themes/material/templates/.icons/fontawesome/solid/key.svg +1 -0
  2219. docsforge/themes/material/templates/.icons/fontawesome/solid/keyboard.svg +1 -0
  2220. docsforge/themes/material/templates/.icons/fontawesome/solid/khanda.svg +1 -0
  2221. docsforge/themes/material/templates/.icons/fontawesome/solid/kip-sign.svg +1 -0
  2222. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-beam.svg +1 -0
  2223. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg +1 -0
  2224. docsforge/themes/material/templates/.icons/fontawesome/solid/kiss.svg +1 -0
  2225. docsforge/themes/material/templates/.icons/fontawesome/solid/kit-medical.svg +1 -0
  2226. docsforge/themes/material/templates/.icons/fontawesome/solid/kitchen-set.svg +1 -0
  2227. docsforge/themes/material/templates/.icons/fontawesome/solid/kiwi-bird.svg +1 -0
  2228. docsforge/themes/material/templates/.icons/fontawesome/solid/krw.svg +1 -0
  2229. docsforge/themes/material/templates/.icons/fontawesome/solid/l.svg +1 -0
  2230. docsforge/themes/material/templates/.icons/fontawesome/solid/ladder-water.svg +1 -0
  2231. docsforge/themes/material/templates/.icons/fontawesome/solid/land-mine-on.svg +1 -0
  2232. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-alt.svg +1 -0
  2233. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-dome.svg +1 -0
  2234. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-flag.svg +1 -0
  2235. docsforge/themes/material/templates/.icons/fontawesome/solid/landmark.svg +1 -0
  2236. docsforge/themes/material/templates/.icons/fontawesome/solid/language.svg +1 -0
  2237. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-code.svg +1 -0
  2238. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-file.svg +1 -0
  2239. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-house.svg +1 -0
  2240. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-medical.svg +1 -0
  2241. docsforge/themes/material/templates/.icons/fontawesome/solid/laptop.svg +1 -0
  2242. docsforge/themes/material/templates/.icons/fontawesome/solid/lari-sign.svg +1 -0
  2243. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-beam.svg +1 -0
  2244. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-squint.svg +1 -0
  2245. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-wink.svg +1 -0
  2246. docsforge/themes/material/templates/.icons/fontawesome/solid/laugh.svg +1 -0
  2247. docsforge/themes/material/templates/.icons/fontawesome/solid/layer-group.svg +1 -0
  2248. docsforge/themes/material/templates/.icons/fontawesome/solid/leaf.svg +1 -0
  2249. docsforge/themes/material/templates/.icons/fontawesome/solid/left-long.svg +1 -0
  2250. docsforge/themes/material/templates/.icons/fontawesome/solid/left-right.svg +1 -0
  2251. docsforge/themes/material/templates/.icons/fontawesome/solid/legal.svg +1 -0
  2252. docsforge/themes/material/templates/.icons/fontawesome/solid/lemon.svg +1 -0
  2253. docsforge/themes/material/templates/.icons/fontawesome/solid/less-than-equal.svg +1 -0
  2254. docsforge/themes/material/templates/.icons/fontawesome/solid/less-than.svg +1 -0
  2255. docsforge/themes/material/templates/.icons/fontawesome/solid/level-down-alt.svg +1 -0
  2256. docsforge/themes/material/templates/.icons/fontawesome/solid/level-down.svg +1 -0
  2257. docsforge/themes/material/templates/.icons/fontawesome/solid/level-up-alt.svg +1 -0
  2258. docsforge/themes/material/templates/.icons/fontawesome/solid/level-up.svg +1 -0
  2259. docsforge/themes/material/templates/.icons/fontawesome/solid/life-ring.svg +1 -0
  2260. docsforge/themes/material/templates/.icons/fontawesome/solid/lightbulb.svg +1 -0
  2261. docsforge/themes/material/templates/.icons/fontawesome/solid/line-chart.svg +1 -0
  2262. docsforge/themes/material/templates/.icons/fontawesome/solid/lines-leaning.svg +1 -0
  2263. docsforge/themes/material/templates/.icons/fontawesome/solid/link-slash.svg +1 -0
  2264. docsforge/themes/material/templates/.icons/fontawesome/solid/link.svg +1 -0
  2265. docsforge/themes/material/templates/.icons/fontawesome/solid/lira-sign.svg +1 -0
  2266. docsforge/themes/material/templates/.icons/fontawesome/solid/list-1-2.svg +1 -0
  2267. docsforge/themes/material/templates/.icons/fontawesome/solid/list-alt.svg +1 -0
  2268. docsforge/themes/material/templates/.icons/fontawesome/solid/list-check.svg +1 -0
  2269. docsforge/themes/material/templates/.icons/fontawesome/solid/list-dots.svg +1 -0
  2270. docsforge/themes/material/templates/.icons/fontawesome/solid/list-numeric.svg +1 -0
  2271. docsforge/themes/material/templates/.icons/fontawesome/solid/list-ol.svg +1 -0
  2272. docsforge/themes/material/templates/.icons/fontawesome/solid/list-squares.svg +1 -0
  2273. docsforge/themes/material/templates/.icons/fontawesome/solid/list-ul.svg +1 -0
  2274. docsforge/themes/material/templates/.icons/fontawesome/solid/list.svg +1 -0
  2275. docsforge/themes/material/templates/.icons/fontawesome/solid/litecoin-sign.svg +1 -0
  2276. docsforge/themes/material/templates/.icons/fontawesome/solid/location-arrow.svg +1 -0
  2277. docsforge/themes/material/templates/.icons/fontawesome/solid/location-crosshairs.svg +1 -0
  2278. docsforge/themes/material/templates/.icons/fontawesome/solid/location-dot.svg +1 -0
  2279. docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin-lock.svg +1 -0
  2280. docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin.svg +1 -0
  2281. docsforge/themes/material/templates/.icons/fontawesome/solid/location.svg +1 -0
  2282. docsforge/themes/material/templates/.icons/fontawesome/solid/lock-open.svg +1 -0
  2283. docsforge/themes/material/templates/.icons/fontawesome/solid/lock.svg +1 -0
  2284. docsforge/themes/material/templates/.icons/fontawesome/solid/locust.svg +1 -0
  2285. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg +1 -0
  2286. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg +1 -0
  2287. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg +1 -0
  2288. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg +1 -0
  2289. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-down.svg +1 -0
  2290. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-left.svg +1 -0
  2291. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-right.svg +1 -0
  2292. docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-up.svg +1 -0
  2293. docsforge/themes/material/templates/.icons/fontawesome/solid/low-vision.svg +1 -0
  2294. docsforge/themes/material/templates/.icons/fontawesome/solid/luggage-cart.svg +1 -0
  2295. docsforge/themes/material/templates/.icons/fontawesome/solid/lungs-virus.svg +1 -0
  2296. docsforge/themes/material/templates/.icons/fontawesome/solid/lungs.svg +1 -0
  2297. docsforge/themes/material/templates/.icons/fontawesome/solid/m.svg +1 -0
  2298. docsforge/themes/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg +1 -0
  2299. docsforge/themes/material/templates/.icons/fontawesome/solid/magic.svg +1 -0
  2300. docsforge/themes/material/templates/.icons/fontawesome/solid/magnet.svg +1 -0
  2301. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg +1 -0
  2302. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg +1 -0
  2303. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg +1 -0
  2304. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg +1 -0
  2305. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg +1 -0
  2306. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg +1 -0
  2307. docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass.svg +1 -0
  2308. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-bulk.svg +1 -0
  2309. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-forward.svg +1 -0
  2310. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply-all.svg +1 -0
  2311. docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply.svg +1 -0
  2312. docsforge/themes/material/templates/.icons/fontawesome/solid/male.svg +1 -0
  2313. docsforge/themes/material/templates/.icons/fontawesome/solid/manat-sign.svg +1 -0
  2314. docsforge/themes/material/templates/.icons/fontawesome/solid/map-location-dot.svg +1 -0
  2315. docsforge/themes/material/templates/.icons/fontawesome/solid/map-location.svg +1 -0
  2316. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked-alt.svg +1 -0
  2317. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked.svg +1 -0
  2318. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker-alt.svg +1 -0
  2319. docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker.svg +1 -0
  2320. docsforge/themes/material/templates/.icons/fontawesome/solid/map-pin.svg +1 -0
  2321. docsforge/themes/material/templates/.icons/fontawesome/solid/map-signs.svg +1 -0
  2322. docsforge/themes/material/templates/.icons/fontawesome/solid/map.svg +1 -0
  2323. docsforge/themes/material/templates/.icons/fontawesome/solid/marker.svg +1 -0
  2324. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg +1 -0
  2325. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus.svg +1 -0
  2326. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-double.svg +1 -0
  2327. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg +1 -0
  2328. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg +1 -0
  2329. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg +1 -0
  2330. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg +1 -0
  2331. docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke.svg +1 -0
  2332. docsforge/themes/material/templates/.icons/fontawesome/solid/mars.svg +1 -0
  2333. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg +1 -0
  2334. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg +1 -0
  2335. docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass.svg +1 -0
  2336. docsforge/themes/material/templates/.icons/fontawesome/solid/mask-face.svg +1 -0
  2337. docsforge/themes/material/templates/.icons/fontawesome/solid/mask-ventilator.svg +1 -0
  2338. docsforge/themes/material/templates/.icons/fontawesome/solid/mask.svg +1 -0
  2339. docsforge/themes/material/templates/.icons/fontawesome/solid/masks-theater.svg +1 -0
  2340. docsforge/themes/material/templates/.icons/fontawesome/solid/mattress-pillow.svg +1 -0
  2341. docsforge/themes/material/templates/.icons/fontawesome/solid/maximize.svg +1 -0
  2342. docsforge/themes/material/templates/.icons/fontawesome/solid/medal.svg +1 -0
  2343. docsforge/themes/material/templates/.icons/fontawesome/solid/medkit.svg +1 -0
  2344. docsforge/themes/material/templates/.icons/fontawesome/solid/meh-blank.svg +1 -0
  2345. docsforge/themes/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg +1 -0
  2346. docsforge/themes/material/templates/.icons/fontawesome/solid/meh.svg +1 -0
  2347. docsforge/themes/material/templates/.icons/fontawesome/solid/memory.svg +1 -0
  2348. docsforge/themes/material/templates/.icons/fontawesome/solid/menorah.svg +1 -0
  2349. docsforge/themes/material/templates/.icons/fontawesome/solid/mercury.svg +1 -0
  2350. docsforge/themes/material/templates/.icons/fontawesome/solid/message.svg +1 -0
  2351. docsforge/themes/material/templates/.icons/fontawesome/solid/meteor.svg +1 -0
  2352. docsforge/themes/material/templates/.icons/fontawesome/solid/microchip.svg +1 -0
  2353. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg +1 -0
  2354. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt.svg +1 -0
  2355. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg +1 -0
  2356. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines.svg +1 -0
  2357. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-slash.svg +1 -0
  2358. docsforge/themes/material/templates/.icons/fontawesome/solid/microphone.svg +1 -0
  2359. docsforge/themes/material/templates/.icons/fontawesome/solid/microscope.svg +1 -0
  2360. docsforge/themes/material/templates/.icons/fontawesome/solid/mill-sign.svg +1 -0
  2361. docsforge/themes/material/templates/.icons/fontawesome/solid/minimize.svg +1 -0
  2362. docsforge/themes/material/templates/.icons/fontawesome/solid/minus-circle.svg +1 -0
  2363. docsforge/themes/material/templates/.icons/fontawesome/solid/minus-square.svg +1 -0
  2364. docsforge/themes/material/templates/.icons/fontawesome/solid/minus.svg +1 -0
  2365. docsforge/themes/material/templates/.icons/fontawesome/solid/mitten.svg +1 -0
  2366. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-alt.svg +1 -0
  2367. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg +1 -0
  2368. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android.svg +1 -0
  2369. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-button.svg +1 -0
  2370. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-phone.svg +1 -0
  2371. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-retro.svg +1 -0
  2372. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg +1 -0
  2373. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen.svg +1 -0
  2374. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg +1 -0
  2375. docsforge/themes/material/templates/.icons/fontawesome/solid/mobile.svg +1 -0
  2376. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg +1 -0
  2377. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1.svg +1 -0
  2378. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-alt.svg +1 -0
  2379. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg +1 -0
  2380. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg +1 -0
  2381. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg +1 -0
  2382. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave.svg +1 -0
  2383. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg +1 -0
  2384. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill.svg +1 -0
  2385. docsforge/themes/material/templates/.icons/fontawesome/solid/money-bills.svg +1 -0
  2386. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-alt.svg +1 -0
  2387. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-dollar.svg +1 -0
  2388. docsforge/themes/material/templates/.icons/fontawesome/solid/money-check.svg +1 -0
  2389. docsforge/themes/material/templates/.icons/fontawesome/solid/monument.svg +1 -0
  2390. docsforge/themes/material/templates/.icons/fontawesome/solid/moon.svg +1 -0
  2391. docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-board.svg +1 -0
  2392. docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-pestle.svg +1 -0
  2393. docsforge/themes/material/templates/.icons/fontawesome/solid/mosque.svg +1 -0
  2394. docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito-net.svg +1 -0
  2395. docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito.svg +1 -0
  2396. docsforge/themes/material/templates/.icons/fontawesome/solid/motorcycle.svg +1 -0
  2397. docsforge/themes/material/templates/.icons/fontawesome/solid/mound.svg +1 -0
  2398. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-city.svg +1 -0
  2399. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-sun.svg +1 -0
  2400. docsforge/themes/material/templates/.icons/fontawesome/solid/mountain.svg +1 -0
  2401. docsforge/themes/material/templates/.icons/fontawesome/solid/mouse-pointer.svg +1 -0
  2402. docsforge/themes/material/templates/.icons/fontawesome/solid/mouse.svg +1 -0
  2403. docsforge/themes/material/templates/.icons/fontawesome/solid/mug-hot.svg +1 -0
  2404. docsforge/themes/material/templates/.icons/fontawesome/solid/mug-saucer.svg +1 -0
  2405. docsforge/themes/material/templates/.icons/fontawesome/solid/multiply.svg +1 -0
  2406. docsforge/themes/material/templates/.icons/fontawesome/solid/museum.svg +1 -0
  2407. docsforge/themes/material/templates/.icons/fontawesome/solid/music.svg +1 -0
  2408. docsforge/themes/material/templates/.icons/fontawesome/solid/n.svg +1 -0
  2409. docsforge/themes/material/templates/.icons/fontawesome/solid/naira-sign.svg +1 -0
  2410. docsforge/themes/material/templates/.icons/fontawesome/solid/navicon.svg +1 -0
  2411. docsforge/themes/material/templates/.icons/fontawesome/solid/network-wired.svg +1 -0
  2412. docsforge/themes/material/templates/.icons/fontawesome/solid/neuter.svg +1 -0
  2413. docsforge/themes/material/templates/.icons/fontawesome/solid/newspaper.svg +1 -0
  2414. docsforge/themes/material/templates/.icons/fontawesome/solid/non-binary.svg +1 -0
  2415. docsforge/themes/material/templates/.icons/fontawesome/solid/not-equal.svg +1 -0
  2416. docsforge/themes/material/templates/.icons/fontawesome/solid/notdef.svg +1 -0
  2417. docsforge/themes/material/templates/.icons/fontawesome/solid/note-sticky.svg +1 -0
  2418. docsforge/themes/material/templates/.icons/fontawesome/solid/notes-medical.svg +1 -0
  2419. docsforge/themes/material/templates/.icons/fontawesome/solid/o.svg +1 -0
  2420. docsforge/themes/material/templates/.icons/fontawesome/solid/object-group.svg +1 -0
  2421. docsforge/themes/material/templates/.icons/fontawesome/solid/object-ungroup.svg +1 -0
  2422. docsforge/themes/material/templates/.icons/fontawesome/solid/octagon.svg +1 -0
  2423. docsforge/themes/material/templates/.icons/fontawesome/solid/oil-can.svg +1 -0
  2424. docsforge/themes/material/templates/.icons/fontawesome/solid/oil-well.svg +1 -0
  2425. docsforge/themes/material/templates/.icons/fontawesome/solid/om.svg +1 -0
  2426. docsforge/themes/material/templates/.icons/fontawesome/solid/otter.svg +1 -0
  2427. docsforge/themes/material/templates/.icons/fontawesome/solid/outdent.svg +1 -0
  2428. docsforge/themes/material/templates/.icons/fontawesome/solid/p.svg +1 -0
  2429. docsforge/themes/material/templates/.icons/fontawesome/solid/pager.svg +1 -0
  2430. docsforge/themes/material/templates/.icons/fontawesome/solid/paint-brush.svg +1 -0
  2431. docsforge/themes/material/templates/.icons/fontawesome/solid/paint-roller.svg +1 -0
  2432. docsforge/themes/material/templates/.icons/fontawesome/solid/paintbrush.svg +1 -0
  2433. docsforge/themes/material/templates/.icons/fontawesome/solid/palette.svg +1 -0
  2434. docsforge/themes/material/templates/.icons/fontawesome/solid/pallet.svg +1 -0
  2435. docsforge/themes/material/templates/.icons/fontawesome/solid/panorama.svg +1 -0
  2436. docsforge/themes/material/templates/.icons/fontawesome/solid/paper-plane.svg +1 -0
  2437. docsforge/themes/material/templates/.icons/fontawesome/solid/paperclip.svg +1 -0
  2438. docsforge/themes/material/templates/.icons/fontawesome/solid/parachute-box.svg +1 -0
  2439. docsforge/themes/material/templates/.icons/fontawesome/solid/paragraph.svg +1 -0
  2440. docsforge/themes/material/templates/.icons/fontawesome/solid/parking.svg +1 -0
  2441. docsforge/themes/material/templates/.icons/fontawesome/solid/passport.svg +1 -0
  2442. docsforge/themes/material/templates/.icons/fontawesome/solid/pastafarianism.svg +1 -0
  2443. docsforge/themes/material/templates/.icons/fontawesome/solid/paste.svg +1 -0
  2444. docsforge/themes/material/templates/.icons/fontawesome/solid/pause-circle.svg +1 -0
  2445. docsforge/themes/material/templates/.icons/fontawesome/solid/pause.svg +1 -0
  2446. docsforge/themes/material/templates/.icons/fontawesome/solid/paw.svg +1 -0
  2447. docsforge/themes/material/templates/.icons/fontawesome/solid/peace.svg +1 -0
  2448. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-alt.svg +1 -0
  2449. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-clip.svg +1 -0
  2450. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-fancy.svg +1 -0
  2451. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-nib.svg +1 -0
  2452. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-ruler.svg +1 -0
  2453. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-square.svg +1 -0
  2454. docsforge/themes/material/templates/.icons/fontawesome/solid/pen-to-square.svg +1 -0
  2455. docsforge/themes/material/templates/.icons/fontawesome/solid/pen.svg +1 -0
  2456. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-alt.svg +1 -0
  2457. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-ruler.svg +1 -0
  2458. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-square.svg +1 -0
  2459. docsforge/themes/material/templates/.icons/fontawesome/solid/pencil.svg +1 -0
  2460. docsforge/themes/material/templates/.icons/fontawesome/solid/pentagon.svg +1 -0
  2461. docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg +1 -0
  2462. docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows.svg +1 -0
  2463. docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry-box.svg +1 -0
  2464. docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry.svg +1 -0
  2465. docsforge/themes/material/templates/.icons/fontawesome/solid/people-group.svg +1 -0
  2466. docsforge/themes/material/templates/.icons/fontawesome/solid/people-line.svg +1 -0
  2467. docsforge/themes/material/templates/.icons/fontawesome/solid/people-pulling.svg +1 -0
  2468. docsforge/themes/material/templates/.icons/fontawesome/solid/people-robbery.svg +1 -0
  2469. docsforge/themes/material/templates/.icons/fontawesome/solid/people-roof.svg +1 -0
  2470. docsforge/themes/material/templates/.icons/fontawesome/solid/pepper-hot.svg +1 -0
  2471. docsforge/themes/material/templates/.icons/fontawesome/solid/percent.svg +1 -0
  2472. docsforge/themes/material/templates/.icons/fontawesome/solid/percentage.svg +1 -0
  2473. docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg +1 -0
  2474. docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg +1 -0
  2475. docsforge/themes/material/templates/.icons/fontawesome/solid/person-biking.svg +1 -0
  2476. docsforge/themes/material/templates/.icons/fontawesome/solid/person-booth.svg +1 -0
  2477. docsforge/themes/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg +1 -0
  2478. docsforge/themes/material/templates/.icons/fontawesome/solid/person-burst.svg +1 -0
  2479. docsforge/themes/material/templates/.icons/fontawesome/solid/person-cane.svg +1 -0
  2480. docsforge/themes/material/templates/.icons/fontawesome/solid/person-chalkboard.svg +1 -0
  2481. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-check.svg +1 -0
  2482. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg +1 -0
  2483. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-minus.svg +1 -0
  2484. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-plus.svg +1 -0
  2485. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-question.svg +1 -0
  2486. docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg +1 -0
  2487. docsforge/themes/material/templates/.icons/fontawesome/solid/person-digging.svg +1 -0
  2488. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg +1 -0
  2489. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress-burst.svg +1 -0
  2490. docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress.svg +1 -0
  2491. docsforge/themes/material/templates/.icons/fontawesome/solid/person-drowning.svg +1 -0
  2492. docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling-burst.svg +1 -0
  2493. docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling.svg +1 -0
  2494. docsforge/themes/material/templates/.icons/fontawesome/solid/person-half-dress.svg +1 -0
  2495. docsforge/themes/material/templates/.icons/fontawesome/solid/person-harassing.svg +1 -0
  2496. docsforge/themes/material/templates/.icons/fontawesome/solid/person-hiking.svg +1 -0
  2497. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-pointing.svg +1 -0
  2498. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-rifle.svg +1 -0
  2499. docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-to-person.svg +1 -0
  2500. docsforge/themes/material/templates/.icons/fontawesome/solid/person-praying.svg +1 -0
  2501. docsforge/themes/material/templates/.icons/fontawesome/solid/person-pregnant.svg +1 -0
  2502. docsforge/themes/material/templates/.icons/fontawesome/solid/person-rays.svg +1 -0
  2503. docsforge/themes/material/templates/.icons/fontawesome/solid/person-rifle.svg +1 -0
  2504. docsforge/themes/material/templates/.icons/fontawesome/solid/person-running.svg +1 -0
  2505. docsforge/themes/material/templates/.icons/fontawesome/solid/person-shelter.svg +1 -0
  2506. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skating.svg +1 -0
  2507. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg +1 -0
  2508. docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing.svg +1 -0
  2509. docsforge/themes/material/templates/.icons/fontawesome/solid/person-snowboarding.svg +1 -0
  2510. docsforge/themes/material/templates/.icons/fontawesome/solid/person-swimming.svg +1 -0
  2511. docsforge/themes/material/templates/.icons/fontawesome/solid/person-through-window.svg +1 -0
  2512. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg +1 -0
  2513. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg +1 -0
  2514. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg +1 -0
  2515. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg +1 -0
  2516. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg +1 -0
  2517. docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking.svg +1 -0
  2518. docsforge/themes/material/templates/.icons/fontawesome/solid/person.svg +1 -0
  2519. docsforge/themes/material/templates/.icons/fontawesome/solid/peseta-sign.svg +1 -0
  2520. docsforge/themes/material/templates/.icons/fontawesome/solid/peso-sign.svg +1 -0
  2521. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-alt.svg +1 -0
  2522. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-flip.svg +1 -0
  2523. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-slash.svg +1 -0
  2524. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square-alt.svg +1 -0
  2525. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square.svg +1 -0
  2526. docsforge/themes/material/templates/.icons/fontawesome/solid/phone-volume.svg +1 -0
  2527. docsforge/themes/material/templates/.icons/fontawesome/solid/phone.svg +1 -0
  2528. docsforge/themes/material/templates/.icons/fontawesome/solid/photo-film.svg +1 -0
  2529. docsforge/themes/material/templates/.icons/fontawesome/solid/photo-video.svg +1 -0
  2530. docsforge/themes/material/templates/.icons/fontawesome/solid/pie-chart.svg +1 -0
  2531. docsforge/themes/material/templates/.icons/fontawesome/solid/piggy-bank.svg +1 -0
  2532. docsforge/themes/material/templates/.icons/fontawesome/solid/pills.svg +1 -0
  2533. docsforge/themes/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg +1 -0
  2534. docsforge/themes/material/templates/.icons/fontawesome/solid/pizza-slice.svg +1 -0
  2535. docsforge/themes/material/templates/.icons/fontawesome/solid/place-of-worship.svg +1 -0
  2536. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-arrival.svg +1 -0
  2537. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-check.svg +1 -0
  2538. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg +1 -0
  2539. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg +1 -0
  2540. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-departure.svg +1 -0
  2541. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-lock.svg +1 -0
  2542. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-slash.svg +1 -0
  2543. docsforge/themes/material/templates/.icons/fontawesome/solid/plane-up.svg +1 -0
  2544. docsforge/themes/material/templates/.icons/fontawesome/solid/plane.svg +1 -0
  2545. docsforge/themes/material/templates/.icons/fontawesome/solid/plant-wilt.svg +1 -0
  2546. docsforge/themes/material/templates/.icons/fontawesome/solid/plate-wheat.svg +1 -0
  2547. docsforge/themes/material/templates/.icons/fontawesome/solid/play-circle.svg +1 -0
  2548. docsforge/themes/material/templates/.icons/fontawesome/solid/play.svg +1 -0
  2549. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg +1 -0
  2550. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-check.svg +1 -0
  2551. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg +1 -0
  2552. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg +1 -0
  2553. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg +1 -0
  2554. docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg +1 -0
  2555. docsforge/themes/material/templates/.icons/fontawesome/solid/plug.svg +1 -0
  2556. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-circle.svg +1 -0
  2557. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-minus.svg +1 -0
  2558. docsforge/themes/material/templates/.icons/fontawesome/solid/plus-square.svg +1 -0
  2559. docsforge/themes/material/templates/.icons/fontawesome/solid/plus.svg +1 -0
  2560. docsforge/themes/material/templates/.icons/fontawesome/solid/podcast.svg +1 -0
  2561. docsforge/themes/material/templates/.icons/fontawesome/solid/poll-h.svg +1 -0
  2562. docsforge/themes/material/templates/.icons/fontawesome/solid/poll.svg +1 -0
  2563. docsforge/themes/material/templates/.icons/fontawesome/solid/poo-bolt.svg +1 -0
  2564. docsforge/themes/material/templates/.icons/fontawesome/solid/poo-storm.svg +1 -0
  2565. docsforge/themes/material/templates/.icons/fontawesome/solid/poo.svg +1 -0
  2566. docsforge/themes/material/templates/.icons/fontawesome/solid/poop.svg +1 -0
  2567. docsforge/themes/material/templates/.icons/fontawesome/solid/portrait.svg +1 -0
  2568. docsforge/themes/material/templates/.icons/fontawesome/solid/pound-sign.svg +1 -0
  2569. docsforge/themes/material/templates/.icons/fontawesome/solid/power-off.svg +1 -0
  2570. docsforge/themes/material/templates/.icons/fontawesome/solid/pray.svg +1 -0
  2571. docsforge/themes/material/templates/.icons/fontawesome/solid/praying-hands.svg +1 -0
  2572. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg +1 -0
  2573. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg +1 -0
  2574. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle.svg +1 -0
  2575. docsforge/themes/material/templates/.icons/fontawesome/solid/prescription.svg +1 -0
  2576. docsforge/themes/material/templates/.icons/fontawesome/solid/print.svg +1 -0
  2577. docsforge/themes/material/templates/.icons/fontawesome/solid/procedures.svg +1 -0
  2578. docsforge/themes/material/templates/.icons/fontawesome/solid/project-diagram.svg +1 -0
  2579. docsforge/themes/material/templates/.icons/fontawesome/solid/pump-medical.svg +1 -0
  2580. docsforge/themes/material/templates/.icons/fontawesome/solid/pump-soap.svg +1 -0
  2581. docsforge/themes/material/templates/.icons/fontawesome/solid/puzzle-piece.svg +1 -0
  2582. docsforge/themes/material/templates/.icons/fontawesome/solid/q.svg +1 -0
  2583. docsforge/themes/material/templates/.icons/fontawesome/solid/qrcode.svg +1 -0
  2584. docsforge/themes/material/templates/.icons/fontawesome/solid/question-circle.svg +1 -0
  2585. docsforge/themes/material/templates/.icons/fontawesome/solid/question.svg +1 -0
  2586. docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg +1 -0
  2587. docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch.svg +1 -0
  2588. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left-alt.svg +1 -0
  2589. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left.svg +1 -0
  2590. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right-alt.svg +1 -0
  2591. docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right.svg +1 -0
  2592. docsforge/themes/material/templates/.icons/fontawesome/solid/quran.svg +1 -0
  2593. docsforge/themes/material/templates/.icons/fontawesome/solid/r.svg +1 -0
  2594. docsforge/themes/material/templates/.icons/fontawesome/solid/radiation-alt.svg +1 -0
  2595. docsforge/themes/material/templates/.icons/fontawesome/solid/radiation.svg +1 -0
  2596. docsforge/themes/material/templates/.icons/fontawesome/solid/radio.svg +1 -0
  2597. docsforge/themes/material/templates/.icons/fontawesome/solid/rainbow.svg +1 -0
  2598. docsforge/themes/material/templates/.icons/fontawesome/solid/random.svg +1 -0
  2599. docsforge/themes/material/templates/.icons/fontawesome/solid/ranking-star.svg +1 -0
  2600. docsforge/themes/material/templates/.icons/fontawesome/solid/receipt.svg +1 -0
  2601. docsforge/themes/material/templates/.icons/fontawesome/solid/record-vinyl.svg +1 -0
  2602. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-ad.svg +1 -0
  2603. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-list.svg +1 -0
  2604. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-times.svg +1 -0
  2605. docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg +1 -0
  2606. docsforge/themes/material/templates/.icons/fontawesome/solid/recycle.svg +1 -0
  2607. docsforge/themes/material/templates/.icons/fontawesome/solid/redo-alt.svg +1 -0
  2608. docsforge/themes/material/templates/.icons/fontawesome/solid/redo.svg +1 -0
  2609. docsforge/themes/material/templates/.icons/fontawesome/solid/refresh.svg +1 -0
  2610. docsforge/themes/material/templates/.icons/fontawesome/solid/registered.svg +1 -0
  2611. docsforge/themes/material/templates/.icons/fontawesome/solid/remove-format.svg +1 -0
  2612. docsforge/themes/material/templates/.icons/fontawesome/solid/remove.svg +1 -0
  2613. docsforge/themes/material/templates/.icons/fontawesome/solid/reorder.svg +1 -0
  2614. docsforge/themes/material/templates/.icons/fontawesome/solid/repeat.svg +1 -0
  2615. docsforge/themes/material/templates/.icons/fontawesome/solid/reply-all.svg +1 -0
  2616. docsforge/themes/material/templates/.icons/fontawesome/solid/reply.svg +1 -0
  2617. docsforge/themes/material/templates/.icons/fontawesome/solid/republican.svg +1 -0
  2618. docsforge/themes/material/templates/.icons/fontawesome/solid/restroom.svg +1 -0
  2619. docsforge/themes/material/templates/.icons/fontawesome/solid/retweet.svg +1 -0
  2620. docsforge/themes/material/templates/.icons/fontawesome/solid/ribbon.svg +1 -0
  2621. docsforge/themes/material/templates/.icons/fontawesome/solid/right-from-bracket.svg +1 -0
  2622. docsforge/themes/material/templates/.icons/fontawesome/solid/right-left.svg +1 -0
  2623. docsforge/themes/material/templates/.icons/fontawesome/solid/right-long.svg +1 -0
  2624. docsforge/themes/material/templates/.icons/fontawesome/solid/right-to-bracket.svg +1 -0
  2625. docsforge/themes/material/templates/.icons/fontawesome/solid/ring.svg +1 -0
  2626. docsforge/themes/material/templates/.icons/fontawesome/solid/rmb.svg +1 -0
  2627. docsforge/themes/material/templates/.icons/fontawesome/solid/road-barrier.svg +1 -0
  2628. docsforge/themes/material/templates/.icons/fontawesome/solid/road-bridge.svg +1 -0
  2629. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-check.svg +1 -0
  2630. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg +1 -0
  2631. docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg +1 -0
  2632. docsforge/themes/material/templates/.icons/fontawesome/solid/road-lock.svg +1 -0
  2633. docsforge/themes/material/templates/.icons/fontawesome/solid/road-spikes.svg +1 -0
  2634. docsforge/themes/material/templates/.icons/fontawesome/solid/road.svg +1 -0
  2635. docsforge/themes/material/templates/.icons/fontawesome/solid/robot.svg +1 -0
  2636. docsforge/themes/material/templates/.icons/fontawesome/solid/rocket.svg +1 -0
  2637. docsforge/themes/material/templates/.icons/fontawesome/solid/rod-asclepius.svg +1 -0
  2638. docsforge/themes/material/templates/.icons/fontawesome/solid/rod-snake.svg +1 -0
  2639. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-back.svg +1 -0
  2640. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-backward.svg +1 -0
  2641. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-forward.svg +1 -0
  2642. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-left.svg +1 -0
  2643. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-right.svg +1 -0
  2644. docsforge/themes/material/templates/.icons/fontawesome/solid/rotate.svg +1 -0
  2645. docsforge/themes/material/templates/.icons/fontawesome/solid/rouble.svg +1 -0
  2646. docsforge/themes/material/templates/.icons/fontawesome/solid/route.svg +1 -0
  2647. docsforge/themes/material/templates/.icons/fontawesome/solid/rss-square.svg +1 -0
  2648. docsforge/themes/material/templates/.icons/fontawesome/solid/rss.svg +1 -0
  2649. docsforge/themes/material/templates/.icons/fontawesome/solid/rub.svg +1 -0
  2650. docsforge/themes/material/templates/.icons/fontawesome/solid/ruble-sign.svg +1 -0
  2651. docsforge/themes/material/templates/.icons/fontawesome/solid/ruble.svg +1 -0
  2652. docsforge/themes/material/templates/.icons/fontawesome/solid/rug.svg +1 -0
  2653. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-combined.svg +1 -0
  2654. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg +1 -0
  2655. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-vertical.svg +1 -0
  2656. docsforge/themes/material/templates/.icons/fontawesome/solid/ruler.svg +1 -0
  2657. docsforge/themes/material/templates/.icons/fontawesome/solid/running.svg +1 -0
  2658. docsforge/themes/material/templates/.icons/fontawesome/solid/rupee-sign.svg +1 -0
  2659. docsforge/themes/material/templates/.icons/fontawesome/solid/rupee.svg +1 -0
  2660. docsforge/themes/material/templates/.icons/fontawesome/solid/rupiah-sign.svg +1 -0
  2661. docsforge/themes/material/templates/.icons/fontawesome/solid/s.svg +1 -0
  2662. docsforge/themes/material/templates/.icons/fontawesome/solid/sack-dollar.svg +1 -0
  2663. docsforge/themes/material/templates/.icons/fontawesome/solid/sack-xmark.svg +1 -0
  2664. docsforge/themes/material/templates/.icons/fontawesome/solid/sad-cry.svg +1 -0
  2665. docsforge/themes/material/templates/.icons/fontawesome/solid/sad-tear.svg +1 -0
  2666. docsforge/themes/material/templates/.icons/fontawesome/solid/sailboat.svg +1 -0
  2667. docsforge/themes/material/templates/.icons/fontawesome/solid/satellite-dish.svg +1 -0
  2668. docsforge/themes/material/templates/.icons/fontawesome/solid/satellite.svg +1 -0
  2669. docsforge/themes/material/templates/.icons/fontawesome/solid/save.svg +1 -0
  2670. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-balanced.svg +1 -0
  2671. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg +1 -0
  2672. docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg +1 -0
  2673. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-check.svg +1 -0
  2674. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg +1 -0
  2675. docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg +1 -0
  2676. docsforge/themes/material/templates/.icons/fontawesome/solid/school-flag.svg +1 -0
  2677. docsforge/themes/material/templates/.icons/fontawesome/solid/school-lock.svg +1 -0
  2678. docsforge/themes/material/templates/.icons/fontawesome/solid/school.svg +1 -0
  2679. docsforge/themes/material/templates/.icons/fontawesome/solid/scissors.svg +1 -0
  2680. docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg +1 -0
  2681. docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver.svg +1 -0
  2682. docsforge/themes/material/templates/.icons/fontawesome/solid/scroll-torah.svg +1 -0
  2683. docsforge/themes/material/templates/.icons/fontawesome/solid/scroll.svg +1 -0
  2684. docsforge/themes/material/templates/.icons/fontawesome/solid/sd-card.svg +1 -0
  2685. docsforge/themes/material/templates/.icons/fontawesome/solid/search-dollar.svg +1 -0
  2686. docsforge/themes/material/templates/.icons/fontawesome/solid/search-location.svg +1 -0
  2687. docsforge/themes/material/templates/.icons/fontawesome/solid/search-minus.svg +1 -0
  2688. docsforge/themes/material/templates/.icons/fontawesome/solid/search-plus.svg +1 -0
  2689. docsforge/themes/material/templates/.icons/fontawesome/solid/search.svg +1 -0
  2690. docsforge/themes/material/templates/.icons/fontawesome/solid/section.svg +1 -0
  2691. docsforge/themes/material/templates/.icons/fontawesome/solid/seedling.svg +1 -0
  2692. docsforge/themes/material/templates/.icons/fontawesome/solid/septagon.svg +1 -0
  2693. docsforge/themes/material/templates/.icons/fontawesome/solid/server.svg +1 -0
  2694. docsforge/themes/material/templates/.icons/fontawesome/solid/shapes.svg +1 -0
  2695. docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt-square.svg +1 -0
  2696. docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt.svg +1 -0
  2697. docsforge/themes/material/templates/.icons/fontawesome/solid/share-from-square.svg +1 -0
  2698. docsforge/themes/material/templates/.icons/fontawesome/solid/share-nodes.svg +1 -0
  2699. docsforge/themes/material/templates/.icons/fontawesome/solid/share-square.svg +1 -0
  2700. docsforge/themes/material/templates/.icons/fontawesome/solid/share.svg +1 -0
  2701. docsforge/themes/material/templates/.icons/fontawesome/solid/sheet-plastic.svg +1 -0
  2702. docsforge/themes/material/templates/.icons/fontawesome/solid/shekel-sign.svg +1 -0
  2703. docsforge/themes/material/templates/.icons/fontawesome/solid/shekel.svg +1 -0
  2704. docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel-sign.svg +1 -0
  2705. docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel.svg +1 -0
  2706. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-alt.svg +1 -0
  2707. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-blank.svg +1 -0
  2708. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-cat.svg +1 -0
  2709. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-dog.svg +1 -0
  2710. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-halved.svg +1 -0
  2711. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-heart.svg +1 -0
  2712. docsforge/themes/material/templates/.icons/fontawesome/solid/shield-virus.svg +1 -0
  2713. docsforge/themes/material/templates/.icons/fontawesome/solid/shield.svg +1 -0
  2714. docsforge/themes/material/templates/.icons/fontawesome/solid/ship.svg +1 -0
  2715. docsforge/themes/material/templates/.icons/fontawesome/solid/shipping-fast.svg +1 -0
  2716. docsforge/themes/material/templates/.icons/fontawesome/solid/shirt.svg +1 -0
  2717. docsforge/themes/material/templates/.icons/fontawesome/solid/shoe-prints.svg +1 -0
  2718. docsforge/themes/material/templates/.icons/fontawesome/solid/shop-lock.svg +1 -0
  2719. docsforge/themes/material/templates/.icons/fontawesome/solid/shop-slash.svg +1 -0
  2720. docsforge/themes/material/templates/.icons/fontawesome/solid/shop.svg +1 -0
  2721. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-bag.svg +1 -0
  2722. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-basket.svg +1 -0
  2723. docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-cart.svg +1 -0
  2724. docsforge/themes/material/templates/.icons/fontawesome/solid/shower.svg +1 -0
  2725. docsforge/themes/material/templates/.icons/fontawesome/solid/shrimp.svg +1 -0
  2726. docsforge/themes/material/templates/.icons/fontawesome/solid/shuffle.svg +1 -0
  2727. docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-space.svg +1 -0
  2728. docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-van.svg +1 -0
  2729. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-hanging.svg +1 -0
  2730. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in-alt.svg +1 -0
  2731. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in.svg +1 -0
  2732. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-language.svg +1 -0
  2733. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out-alt.svg +1 -0
  2734. docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out.svg +1 -0
  2735. docsforge/themes/material/templates/.icons/fontawesome/solid/sign.svg +1 -0
  2736. docsforge/themes/material/templates/.icons/fontawesome/solid/signal-5.svg +1 -0
  2737. docsforge/themes/material/templates/.icons/fontawesome/solid/signal-perfect.svg +1 -0
  2738. docsforge/themes/material/templates/.icons/fontawesome/solid/signal.svg +1 -0
  2739. docsforge/themes/material/templates/.icons/fontawesome/solid/signature.svg +1 -0
  2740. docsforge/themes/material/templates/.icons/fontawesome/solid/signing.svg +1 -0
  2741. docsforge/themes/material/templates/.icons/fontawesome/solid/signs-post.svg +1 -0
  2742. docsforge/themes/material/templates/.icons/fontawesome/solid/sim-card.svg +1 -0
  2743. docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-left.svg +1 -0
  2744. docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-right.svg +1 -0
  2745. docsforge/themes/material/templates/.icons/fontawesome/solid/sink.svg +1 -0
  2746. docsforge/themes/material/templates/.icons/fontawesome/solid/sitemap.svg +1 -0
  2747. docsforge/themes/material/templates/.icons/fontawesome/solid/skating.svg +1 -0
  2748. docsforge/themes/material/templates/.icons/fontawesome/solid/skiing-nordic.svg +1 -0
  2749. docsforge/themes/material/templates/.icons/fontawesome/solid/skiing.svg +1 -0
  2750. docsforge/themes/material/templates/.icons/fontawesome/solid/skull-crossbones.svg +1 -0
  2751. docsforge/themes/material/templates/.icons/fontawesome/solid/skull.svg +1 -0
  2752. docsforge/themes/material/templates/.icons/fontawesome/solid/slash.svg +1 -0
  2753. docsforge/themes/material/templates/.icons/fontawesome/solid/sleigh.svg +1 -0
  2754. docsforge/themes/material/templates/.icons/fontawesome/solid/sliders-h.svg +1 -0
  2755. docsforge/themes/material/templates/.icons/fontawesome/solid/sliders.svg +1 -0
  2756. docsforge/themes/material/templates/.icons/fontawesome/solid/smile-beam.svg +1 -0
  2757. docsforge/themes/material/templates/.icons/fontawesome/solid/smile-wink.svg +1 -0
  2758. docsforge/themes/material/templates/.icons/fontawesome/solid/smile.svg +1 -0
  2759. docsforge/themes/material/templates/.icons/fontawesome/solid/smog.svg +1 -0
  2760. docsforge/themes/material/templates/.icons/fontawesome/solid/smoking-ban.svg +1 -0
  2761. docsforge/themes/material/templates/.icons/fontawesome/solid/smoking.svg +1 -0
  2762. docsforge/themes/material/templates/.icons/fontawesome/solid/sms.svg +1 -0
  2763. docsforge/themes/material/templates/.icons/fontawesome/solid/snowboarding.svg +1 -0
  2764. docsforge/themes/material/templates/.icons/fontawesome/solid/snowflake.svg +1 -0
  2765. docsforge/themes/material/templates/.icons/fontawesome/solid/snowman.svg +1 -0
  2766. docsforge/themes/material/templates/.icons/fontawesome/solid/snowplow.svg +1 -0
  2767. docsforge/themes/material/templates/.icons/fontawesome/solid/soap.svg +1 -0
  2768. docsforge/themes/material/templates/.icons/fontawesome/solid/soccer-ball.svg +1 -0
  2769. docsforge/themes/material/templates/.icons/fontawesome/solid/socks.svg +1 -0
  2770. docsforge/themes/material/templates/.icons/fontawesome/solid/solar-panel.svg +1 -0
  2771. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg +1 -0
  2772. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg +1 -0
  2773. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg +1 -0
  2774. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg +1 -0
  2775. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg +1 -0
  2776. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg +1 -0
  2777. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg +1 -0
  2778. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg +1 -0
  2779. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg +1 -0
  2780. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down.svg +1 -0
  2781. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg +1 -0
  2782. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up.svg +1 -0
  2783. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-asc.svg +1 -0
  2784. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-desc.svg +1 -0
  2785. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-down.svg +1 -0
  2786. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg +1 -0
  2787. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg +1 -0
  2788. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg +1 -0
  2789. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg +1 -0
  2790. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg +1 -0
  2791. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg +1 -0
  2792. docsforge/themes/material/templates/.icons/fontawesome/solid/sort-up.svg +1 -0
  2793. docsforge/themes/material/templates/.icons/fontawesome/solid/sort.svg +1 -0
  2794. docsforge/themes/material/templates/.icons/fontawesome/solid/spa.svg +1 -0
  2795. docsforge/themes/material/templates/.icons/fontawesome/solid/space-shuttle.svg +1 -0
  2796. docsforge/themes/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg +1 -0
  2797. docsforge/themes/material/templates/.icons/fontawesome/solid/spell-check.svg +1 -0
  2798. docsforge/themes/material/templates/.icons/fontawesome/solid/spider.svg +1 -0
  2799. docsforge/themes/material/templates/.icons/fontawesome/solid/spinner.svg +1 -0
  2800. docsforge/themes/material/templates/.icons/fontawesome/solid/spiral.svg +1 -0
  2801. docsforge/themes/material/templates/.icons/fontawesome/solid/splotch.svg +1 -0
  2802. docsforge/themes/material/templates/.icons/fontawesome/solid/spoon.svg +1 -0
  2803. docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg +1 -0
  2804. docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can.svg +1 -0
  2805. docsforge/themes/material/templates/.icons/fontawesome/solid/sprout.svg +1 -0
  2806. docsforge/themes/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg +1 -0
  2807. docsforge/themes/material/templates/.icons/fontawesome/solid/square-binary.svg +1 -0
  2808. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-down.svg +1 -0
  2809. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-left.svg +1 -0
  2810. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-right.svg +1 -0
  2811. docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-up.svg +1 -0
  2812. docsforge/themes/material/templates/.icons/fontawesome/solid/square-check.svg +1 -0
  2813. docsforge/themes/material/templates/.icons/fontawesome/solid/square-envelope.svg +1 -0
  2814. docsforge/themes/material/templates/.icons/fontawesome/solid/square-full.svg +1 -0
  2815. docsforge/themes/material/templates/.icons/fontawesome/solid/square-h.svg +1 -0
  2816. docsforge/themes/material/templates/.icons/fontawesome/solid/square-minus.svg +1 -0
  2817. docsforge/themes/material/templates/.icons/fontawesome/solid/square-nfi.svg +1 -0
  2818. docsforge/themes/material/templates/.icons/fontawesome/solid/square-parking.svg +1 -0
  2819. docsforge/themes/material/templates/.icons/fontawesome/solid/square-pen.svg +1 -0
  2820. docsforge/themes/material/templates/.icons/fontawesome/solid/square-person-confined.svg +1 -0
  2821. docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone-flip.svg +1 -0
  2822. docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone.svg +1 -0
  2823. docsforge/themes/material/templates/.icons/fontawesome/solid/square-plus.svg +1 -0
  2824. docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg +1 -0
  2825. docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg +1 -0
  2826. docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-alt.svg +1 -0
  2827. docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-variable.svg +1 -0
  2828. docsforge/themes/material/templates/.icons/fontawesome/solid/square-rss.svg +1 -0
  2829. docsforge/themes/material/templates/.icons/fontawesome/solid/square-share-nodes.svg +1 -0
  2830. docsforge/themes/material/templates/.icons/fontawesome/solid/square-up-right.svg +1 -0
  2831. docsforge/themes/material/templates/.icons/fontawesome/solid/square-virus.svg +1 -0
  2832. docsforge/themes/material/templates/.icons/fontawesome/solid/square-xmark.svg +1 -0
  2833. docsforge/themes/material/templates/.icons/fontawesome/solid/square.svg +1 -0
  2834. docsforge/themes/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg +1 -0
  2835. docsforge/themes/material/templates/.icons/fontawesome/solid/staff-snake.svg +1 -0
  2836. docsforge/themes/material/templates/.icons/fontawesome/solid/stairs.svg +1 -0
  2837. docsforge/themes/material/templates/.icons/fontawesome/solid/stamp.svg +1 -0
  2838. docsforge/themes/material/templates/.icons/fontawesome/solid/stapler.svg +1 -0
  2839. docsforge/themes/material/templates/.icons/fontawesome/solid/star-and-crescent.svg +1 -0
  2840. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-alt.svg +1 -0
  2841. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-stroke.svg +1 -0
  2842. docsforge/themes/material/templates/.icons/fontawesome/solid/star-half.svg +1 -0
  2843. docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-david.svg +1 -0
  2844. docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-life.svg +1 -0
  2845. docsforge/themes/material/templates/.icons/fontawesome/solid/star.svg +1 -0
  2846. docsforge/themes/material/templates/.icons/fontawesome/solid/step-backward.svg +1 -0
  2847. docsforge/themes/material/templates/.icons/fontawesome/solid/step-forward.svg +1 -0
  2848. docsforge/themes/material/templates/.icons/fontawesome/solid/sterling-sign.svg +1 -0
  2849. docsforge/themes/material/templates/.icons/fontawesome/solid/stethoscope.svg +1 -0
  2850. docsforge/themes/material/templates/.icons/fontawesome/solid/sticky-note.svg +1 -0
  2851. docsforge/themes/material/templates/.icons/fontawesome/solid/stop-circle.svg +1 -0
  2852. docsforge/themes/material/templates/.icons/fontawesome/solid/stop.svg +1 -0
  2853. docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch-20.svg +1 -0
  2854. docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch.svg +1 -0
  2855. docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt-slash.svg +1 -0
  2856. docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt.svg +1 -0
  2857. docsforge/themes/material/templates/.icons/fontawesome/solid/store-slash.svg +1 -0
  2858. docsforge/themes/material/templates/.icons/fontawesome/solid/store.svg +1 -0
  2859. docsforge/themes/material/templates/.icons/fontawesome/solid/stream.svg +1 -0
  2860. docsforge/themes/material/templates/.icons/fontawesome/solid/street-view.svg +1 -0
  2861. docsforge/themes/material/templates/.icons/fontawesome/solid/strikethrough.svg +1 -0
  2862. docsforge/themes/material/templates/.icons/fontawesome/solid/stroopwafel.svg +1 -0
  2863. docsforge/themes/material/templates/.icons/fontawesome/solid/subscript.svg +1 -0
  2864. docsforge/themes/material/templates/.icons/fontawesome/solid/subtract.svg +1 -0
  2865. docsforge/themes/material/templates/.icons/fontawesome/solid/subway.svg +1 -0
  2866. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-medical.svg +1 -0
  2867. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg +1 -0
  2868. docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase.svg +1 -0
  2869. docsforge/themes/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg +1 -0
  2870. docsforge/themes/material/templates/.icons/fontawesome/solid/sun.svg +1 -0
  2871. docsforge/themes/material/templates/.icons/fontawesome/solid/superscript.svg +1 -0
  2872. docsforge/themes/material/templates/.icons/fontawesome/solid/surprise.svg +1 -0
  2873. docsforge/themes/material/templates/.icons/fontawesome/solid/swatchbook.svg +1 -0
  2874. docsforge/themes/material/templates/.icons/fontawesome/solid/swimmer.svg +1 -0
  2875. docsforge/themes/material/templates/.icons/fontawesome/solid/swimming-pool.svg +1 -0
  2876. docsforge/themes/material/templates/.icons/fontawesome/solid/synagogue.svg +1 -0
  2877. docsforge/themes/material/templates/.icons/fontawesome/solid/sync-alt.svg +1 -0
  2878. docsforge/themes/material/templates/.icons/fontawesome/solid/sync.svg +1 -0
  2879. docsforge/themes/material/templates/.icons/fontawesome/solid/syringe.svg +1 -0
  2880. docsforge/themes/material/templates/.icons/fontawesome/solid/t-shirt.svg +1 -0
  2881. docsforge/themes/material/templates/.icons/fontawesome/solid/t.svg +1 -0
  2882. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg +1 -0
  2883. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-large.svg +1 -0
  2884. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg +1 -0
  2885. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg +1 -0
  2886. docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells.svg +1 -0
  2887. docsforge/themes/material/templates/.icons/fontawesome/solid/table-columns.svg +1 -0
  2888. docsforge/themes/material/templates/.icons/fontawesome/solid/table-list.svg +1 -0
  2889. docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg +1 -0
  2890. docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis.svg +1 -0
  2891. docsforge/themes/material/templates/.icons/fontawesome/solid/table.svg +1 -0
  2892. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-alt.svg +1 -0
  2893. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-android.svg +1 -0
  2894. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-button.svg +1 -0
  2895. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg +1 -0
  2896. docsforge/themes/material/templates/.icons/fontawesome/solid/tablet.svg +1 -0
  2897. docsforge/themes/material/templates/.icons/fontawesome/solid/tablets.svg +1 -0
  2898. docsforge/themes/material/templates/.icons/fontawesome/solid/tachograph-digital.svg +1 -0
  2899. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg +1 -0
  2900. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg +1 -0
  2901. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt.svg +1 -0
  2902. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-average.svg +1 -0
  2903. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-fast.svg +1 -0
  2904. docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer.svg +1 -0
  2905. docsforge/themes/material/templates/.icons/fontawesome/solid/tag.svg +1 -0
  2906. docsforge/themes/material/templates/.icons/fontawesome/solid/tags.svg +1 -0
  2907. docsforge/themes/material/templates/.icons/fontawesome/solid/tanakh.svg +1 -0
  2908. docsforge/themes/material/templates/.icons/fontawesome/solid/tape.svg +1 -0
  2909. docsforge/themes/material/templates/.icons/fontawesome/solid/tarp-droplet.svg +1 -0
  2910. docsforge/themes/material/templates/.icons/fontawesome/solid/tarp.svg +1 -0
  2911. docsforge/themes/material/templates/.icons/fontawesome/solid/tasks-alt.svg +1 -0
  2912. docsforge/themes/material/templates/.icons/fontawesome/solid/tasks.svg +1 -0
  2913. docsforge/themes/material/templates/.icons/fontawesome/solid/taxi.svg +1 -0
  2914. docsforge/themes/material/templates/.icons/fontawesome/solid/teeth-open.svg +1 -0
  2915. docsforge/themes/material/templates/.icons/fontawesome/solid/teeth.svg +1 -0
  2916. docsforge/themes/material/templates/.icons/fontawesome/solid/teletype.svg +1 -0
  2917. docsforge/themes/material/templates/.icons/fontawesome/solid/television.svg +1 -0
  2918. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-0.svg +1 -0
  2919. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-1.svg +1 -0
  2920. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-2.svg +1 -0
  2921. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-3.svg +1 -0
  2922. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-4.svg +1 -0
  2923. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg +1 -0
  2924. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg +1 -0
  2925. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-down.svg +1 -0
  2926. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-empty.svg +1 -0
  2927. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-full.svg +1 -0
  2928. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-half.svg +1 -0
  2929. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-high.svg +1 -0
  2930. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-low.svg +1 -0
  2931. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-quarter.svg +1 -0
  2932. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg +1 -0
  2933. docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-up.svg +1 -0
  2934. docsforge/themes/material/templates/.icons/fontawesome/solid/tenge-sign.svg +1 -0
  2935. docsforge/themes/material/templates/.icons/fontawesome/solid/tenge.svg +1 -0
  2936. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg +1 -0
  2937. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg +1 -0
  2938. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg +1 -0
  2939. docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg +1 -0
  2940. docsforge/themes/material/templates/.icons/fontawesome/solid/tent.svg +1 -0
  2941. docsforge/themes/material/templates/.icons/fontawesome/solid/tents.svg +1 -0
  2942. docsforge/themes/material/templates/.icons/fontawesome/solid/terminal.svg +1 -0
  2943. docsforge/themes/material/templates/.icons/fontawesome/solid/text-height.svg +1 -0
  2944. docsforge/themes/material/templates/.icons/fontawesome/solid/text-slash.svg +1 -0
  2945. docsforge/themes/material/templates/.icons/fontawesome/solid/text-width.svg +1 -0
  2946. docsforge/themes/material/templates/.icons/fontawesome/solid/th-large.svg +1 -0
  2947. docsforge/themes/material/templates/.icons/fontawesome/solid/th-list.svg +1 -0
  2948. docsforge/themes/material/templates/.icons/fontawesome/solid/th.svg +1 -0
  2949. docsforge/themes/material/templates/.icons/fontawesome/solid/theater-masks.svg +1 -0
  2950. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-0.svg +1 -0
  2951. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-1.svg +1 -0
  2952. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-2.svg +1 -0
  2953. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-3.svg +1 -0
  2954. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-4.svg +1 -0
  2955. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-empty.svg +1 -0
  2956. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-full.svg +1 -0
  2957. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-half.svg +1 -0
  2958. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg +1 -0
  2959. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg +1 -0
  2960. docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer.svg +1 -0
  2961. docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg +1 -0
  2962. docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack.svg +1 -0
  2963. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-down.svg +1 -0
  2964. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-up.svg +1 -0
  2965. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg +1 -0
  2966. docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack.svg +1 -0
  2967. docsforge/themes/material/templates/.icons/fontawesome/solid/thunderstorm.svg +1 -0
  2968. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-alt.svg +1 -0
  2969. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-simple.svg +1 -0
  2970. docsforge/themes/material/templates/.icons/fontawesome/solid/ticket.svg +1 -0
  2971. docsforge/themes/material/templates/.icons/fontawesome/solid/timeline.svg +1 -0
  2972. docsforge/themes/material/templates/.icons/fontawesome/solid/times-circle.svg +1 -0
  2973. docsforge/themes/material/templates/.icons/fontawesome/solid/times-rectangle.svg +1 -0
  2974. docsforge/themes/material/templates/.icons/fontawesome/solid/times-square.svg +1 -0
  2975. docsforge/themes/material/templates/.icons/fontawesome/solid/times.svg +1 -0
  2976. docsforge/themes/material/templates/.icons/fontawesome/solid/tint-slash.svg +1 -0
  2977. docsforge/themes/material/templates/.icons/fontawesome/solid/tint.svg +1 -0
  2978. docsforge/themes/material/templates/.icons/fontawesome/solid/tired.svg +1 -0
  2979. docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-off.svg +1 -0
  2980. docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-on.svg +1 -0
  2981. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg +1 -0
  2982. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg +1 -0
  2983. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg +1 -0
  2984. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper.svg +1 -0
  2985. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-portable.svg +1 -0
  2986. docsforge/themes/material/templates/.icons/fontawesome/solid/toilet.svg +1 -0
  2987. docsforge/themes/material/templates/.icons/fontawesome/solid/toilets-portable.svg +1 -0
  2988. docsforge/themes/material/templates/.icons/fontawesome/solid/toolbox.svg +1 -0
  2989. docsforge/themes/material/templates/.icons/fontawesome/solid/tools.svg +1 -0
  2990. docsforge/themes/material/templates/.icons/fontawesome/solid/tooth.svg +1 -0
  2991. docsforge/themes/material/templates/.icons/fontawesome/solid/torah.svg +1 -0
  2992. docsforge/themes/material/templates/.icons/fontawesome/solid/torii-gate.svg +1 -0
  2993. docsforge/themes/material/templates/.icons/fontawesome/solid/tornado.svg +1 -0
  2994. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-broadcast.svg +1 -0
  2995. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-cell.svg +1 -0
  2996. docsforge/themes/material/templates/.icons/fontawesome/solid/tower-observation.svg +1 -0
  2997. docsforge/themes/material/templates/.icons/fontawesome/solid/tractor.svg +1 -0
  2998. docsforge/themes/material/templates/.icons/fontawesome/solid/trademark.svg +1 -0
  2999. docsforge/themes/material/templates/.icons/fontawesome/solid/traffic-light.svg +1 -0
  3000. docsforge/themes/material/templates/.icons/fontawesome/solid/trailer.svg +1 -0
  3001. docsforge/themes/material/templates/.icons/fontawesome/solid/train-subway.svg +1 -0
  3002. docsforge/themes/material/templates/.icons/fontawesome/solid/train-tram.svg +1 -0
  3003. docsforge/themes/material/templates/.icons/fontawesome/solid/train.svg +1 -0
  3004. docsforge/themes/material/templates/.icons/fontawesome/solid/tram.svg +1 -0
  3005. docsforge/themes/material/templates/.icons/fontawesome/solid/transgender-alt.svg +1 -0
  3006. docsforge/themes/material/templates/.icons/fontawesome/solid/transgender.svg +1 -0
  3007. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-alt.svg +1 -0
  3008. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg +1 -0
  3009. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg +1 -0
  3010. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can.svg +1 -0
  3011. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg +1 -0
  3012. docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore.svg +1 -0
  3013. docsforge/themes/material/templates/.icons/fontawesome/solid/trash.svg +1 -0
  3014. docsforge/themes/material/templates/.icons/fontawesome/solid/tree-city.svg +1 -0
  3015. docsforge/themes/material/templates/.icons/fontawesome/solid/tree.svg +1 -0
  3016. docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg +1 -0
  3017. docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg +1 -0
  3018. docsforge/themes/material/templates/.icons/fontawesome/solid/trophy.svg +1 -0
  3019. docsforge/themes/material/templates/.icons/fontawesome/solid/trowel-bricks.svg +1 -0
  3020. docsforge/themes/material/templates/.icons/fontawesome/solid/trowel.svg +1 -0
  3021. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg +1 -0
  3022. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-droplet.svg +1 -0
  3023. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-fast.svg +1 -0
  3024. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field-un.svg +1 -0
  3025. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field.svg +1 -0
  3026. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-front.svg +1 -0
  3027. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-loading.svg +1 -0
  3028. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-medical.svg +1 -0
  3029. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-monster.svg +1 -0
  3030. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-moving.svg +1 -0
  3031. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-pickup.svg +1 -0
  3032. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-plane.svg +1 -0
  3033. docsforge/themes/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg +1 -0
  3034. docsforge/themes/material/templates/.icons/fontawesome/solid/truck.svg +1 -0
  3035. docsforge/themes/material/templates/.icons/fontawesome/solid/try.svg +1 -0
  3036. docsforge/themes/material/templates/.icons/fontawesome/solid/tshirt.svg +1 -0
  3037. docsforge/themes/material/templates/.icons/fontawesome/solid/tty.svg +1 -0
  3038. docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg +1 -0
  3039. docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira.svg +1 -0
  3040. docsforge/themes/material/templates/.icons/fontawesome/solid/turn-down.svg +1 -0
  3041. docsforge/themes/material/templates/.icons/fontawesome/solid/turn-up.svg +1 -0
  3042. docsforge/themes/material/templates/.icons/fontawesome/solid/tv-alt.svg +1 -0
  3043. docsforge/themes/material/templates/.icons/fontawesome/solid/tv.svg +1 -0
  3044. docsforge/themes/material/templates/.icons/fontawesome/solid/u.svg +1 -0
  3045. docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella-beach.svg +1 -0
  3046. docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella.svg +1 -0
  3047. docsforge/themes/material/templates/.icons/fontawesome/solid/underline.svg +1 -0
  3048. docsforge/themes/material/templates/.icons/fontawesome/solid/undo-alt.svg +1 -0
  3049. docsforge/themes/material/templates/.icons/fontawesome/solid/undo.svg +1 -0
  3050. docsforge/themes/material/templates/.icons/fontawesome/solid/universal-access.svg +1 -0
  3051. docsforge/themes/material/templates/.icons/fontawesome/solid/university.svg +1 -0
  3052. docsforge/themes/material/templates/.icons/fontawesome/solid/unlink.svg +1 -0
  3053. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-alt.svg +1 -0
  3054. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg +1 -0
  3055. docsforge/themes/material/templates/.icons/fontawesome/solid/unlock.svg +1 -0
  3056. docsforge/themes/material/templates/.icons/fontawesome/solid/unsorted.svg +1 -0
  3057. docsforge/themes/material/templates/.icons/fontawesome/solid/up-down-left-right.svg +1 -0
  3058. docsforge/themes/material/templates/.icons/fontawesome/solid/up-down.svg +1 -0
  3059. docsforge/themes/material/templates/.icons/fontawesome/solid/up-long.svg +1 -0
  3060. docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg +1 -0
  3061. docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-from-square.svg +1 -0
  3062. docsforge/themes/material/templates/.icons/fontawesome/solid/upload.svg +1 -0
  3063. docsforge/themes/material/templates/.icons/fontawesome/solid/usd.svg +1 -0
  3064. docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt-slash.svg +1 -0
  3065. docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt.svg +1 -0
  3066. docsforge/themes/material/templates/.icons/fontawesome/solid/user-astronaut.svg +1 -0
  3067. docsforge/themes/material/templates/.icons/fontawesome/solid/user-check.svg +1 -0
  3068. docsforge/themes/material/templates/.icons/fontawesome/solid/user-circle.svg +1 -0
  3069. docsforge/themes/material/templates/.icons/fontawesome/solid/user-clock.svg +1 -0
  3070. docsforge/themes/material/templates/.icons/fontawesome/solid/user-cog.svg +1 -0
  3071. docsforge/themes/material/templates/.icons/fontawesome/solid/user-doctor.svg +1 -0
  3072. docsforge/themes/material/templates/.icons/fontawesome/solid/user-edit.svg +1 -0
  3073. docsforge/themes/material/templates/.icons/fontawesome/solid/user-friends.svg +1 -0
  3074. docsforge/themes/material/templates/.icons/fontawesome/solid/user-gear.svg +1 -0
  3075. docsforge/themes/material/templates/.icons/fontawesome/solid/user-graduate.svg +1 -0
  3076. docsforge/themes/material/templates/.icons/fontawesome/solid/user-group.svg +1 -0
  3077. docsforge/themes/material/templates/.icons/fontawesome/solid/user-injured.svg +1 -0
  3078. docsforge/themes/material/templates/.icons/fontawesome/solid/user-large-slash.svg +1 -0
  3079. docsforge/themes/material/templates/.icons/fontawesome/solid/user-large.svg +1 -0
  3080. docsforge/themes/material/templates/.icons/fontawesome/solid/user-lock.svg +1 -0
  3081. docsforge/themes/material/templates/.icons/fontawesome/solid/user-md.svg +1 -0
  3082. docsforge/themes/material/templates/.icons/fontawesome/solid/user-minus.svg +1 -0
  3083. docsforge/themes/material/templates/.icons/fontawesome/solid/user-ninja.svg +1 -0
  3084. docsforge/themes/material/templates/.icons/fontawesome/solid/user-nurse.svg +1 -0
  3085. docsforge/themes/material/templates/.icons/fontawesome/solid/user-pen.svg +1 -0
  3086. docsforge/themes/material/templates/.icons/fontawesome/solid/user-plus.svg +1 -0
  3087. docsforge/themes/material/templates/.icons/fontawesome/solid/user-secret.svg +1 -0
  3088. docsforge/themes/material/templates/.icons/fontawesome/solid/user-shield.svg +1 -0
  3089. docsforge/themes/material/templates/.icons/fontawesome/solid/user-slash.svg +1 -0
  3090. docsforge/themes/material/templates/.icons/fontawesome/solid/user-tag.svg +1 -0
  3091. docsforge/themes/material/templates/.icons/fontawesome/solid/user-tie.svg +1 -0
  3092. docsforge/themes/material/templates/.icons/fontawesome/solid/user-times.svg +1 -0
  3093. docsforge/themes/material/templates/.icons/fontawesome/solid/user-xmark.svg +1 -0
  3094. docsforge/themes/material/templates/.icons/fontawesome/solid/user.svg +1 -0
  3095. docsforge/themes/material/templates/.icons/fontawesome/solid/users-between-lines.svg +1 -0
  3096. docsforge/themes/material/templates/.icons/fontawesome/solid/users-cog.svg +1 -0
  3097. docsforge/themes/material/templates/.icons/fontawesome/solid/users-gear.svg +1 -0
  3098. docsforge/themes/material/templates/.icons/fontawesome/solid/users-line.svg +1 -0
  3099. docsforge/themes/material/templates/.icons/fontawesome/solid/users-rays.svg +1 -0
  3100. docsforge/themes/material/templates/.icons/fontawesome/solid/users-rectangle.svg +1 -0
  3101. docsforge/themes/material/templates/.icons/fontawesome/solid/users-slash.svg +1 -0
  3102. docsforge/themes/material/templates/.icons/fontawesome/solid/users-viewfinder.svg +1 -0
  3103. docsforge/themes/material/templates/.icons/fontawesome/solid/users.svg +1 -0
  3104. docsforge/themes/material/templates/.icons/fontawesome/solid/utensil-spoon.svg +1 -0
  3105. docsforge/themes/material/templates/.icons/fontawesome/solid/utensils.svg +1 -0
  3106. docsforge/themes/material/templates/.icons/fontawesome/solid/v.svg +1 -0
  3107. docsforge/themes/material/templates/.icons/fontawesome/solid/van-shuttle.svg +1 -0
  3108. docsforge/themes/material/templates/.icons/fontawesome/solid/vault.svg +1 -0
  3109. docsforge/themes/material/templates/.icons/fontawesome/solid/vcard.svg +1 -0
  3110. docsforge/themes/material/templates/.icons/fontawesome/solid/vector-polygon.svg +1 -0
  3111. docsforge/themes/material/templates/.icons/fontawesome/solid/venus-double.svg +1 -0
  3112. docsforge/themes/material/templates/.icons/fontawesome/solid/venus-mars.svg +1 -0
  3113. docsforge/themes/material/templates/.icons/fontawesome/solid/venus.svg +1 -0
  3114. docsforge/themes/material/templates/.icons/fontawesome/solid/vest-patches.svg +1 -0
  3115. docsforge/themes/material/templates/.icons/fontawesome/solid/vest.svg +1 -0
  3116. docsforge/themes/material/templates/.icons/fontawesome/solid/vial-circle-check.svg +1 -0
  3117. docsforge/themes/material/templates/.icons/fontawesome/solid/vial-virus.svg +1 -0
  3118. docsforge/themes/material/templates/.icons/fontawesome/solid/vial.svg +1 -0
  3119. docsforge/themes/material/templates/.icons/fontawesome/solid/vials.svg +1 -0
  3120. docsforge/themes/material/templates/.icons/fontawesome/solid/video-camera.svg +1 -0
  3121. docsforge/themes/material/templates/.icons/fontawesome/solid/video-slash.svg +1 -0
  3122. docsforge/themes/material/templates/.icons/fontawesome/solid/video.svg +1 -0
  3123. docsforge/themes/material/templates/.icons/fontawesome/solid/vihara.svg +1 -0
  3124. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg +1 -0
  3125. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid.svg +1 -0
  3126. docsforge/themes/material/templates/.icons/fontawesome/solid/virus-slash.svg +1 -0
  3127. docsforge/themes/material/templates/.icons/fontawesome/solid/virus.svg +1 -0
  3128. docsforge/themes/material/templates/.icons/fontawesome/solid/viruses.svg +1 -0
  3129. docsforge/themes/material/templates/.icons/fontawesome/solid/voicemail.svg +1 -0
  3130. docsforge/themes/material/templates/.icons/fontawesome/solid/volcano.svg +1 -0
  3131. docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball-ball.svg +1 -0
  3132. docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball.svg +1 -0
  3133. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-control-phone.svg +1 -0
  3134. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-down.svg +1 -0
  3135. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-high.svg +1 -0
  3136. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-low.svg +1 -0
  3137. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-mute.svg +1 -0
  3138. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-off.svg +1 -0
  3139. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-times.svg +1 -0
  3140. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-up.svg +1 -0
  3141. docsforge/themes/material/templates/.icons/fontawesome/solid/volume-xmark.svg +1 -0
  3142. docsforge/themes/material/templates/.icons/fontawesome/solid/vote-yea.svg +1 -0
  3143. docsforge/themes/material/templates/.icons/fontawesome/solid/vr-cardboard.svg +1 -0
  3144. docsforge/themes/material/templates/.icons/fontawesome/solid/w.svg +1 -0
  3145. docsforge/themes/material/templates/.icons/fontawesome/solid/walkie-talkie.svg +1 -0
  3146. docsforge/themes/material/templates/.icons/fontawesome/solid/walking.svg +1 -0
  3147. docsforge/themes/material/templates/.icons/fontawesome/solid/wallet.svg +1 -0
  3148. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg +1 -0
  3149. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic.svg +1 -0
  3150. docsforge/themes/material/templates/.icons/fontawesome/solid/wand-sparkles.svg +1 -0
  3151. docsforge/themes/material/templates/.icons/fontawesome/solid/warehouse.svg +1 -0
  3152. docsforge/themes/material/templates/.icons/fontawesome/solid/warning.svg +1 -0
  3153. docsforge/themes/material/templates/.icons/fontawesome/solid/water-ladder.svg +1 -0
  3154. docsforge/themes/material/templates/.icons/fontawesome/solid/water.svg +1 -0
  3155. docsforge/themes/material/templates/.icons/fontawesome/solid/wave-square.svg +1 -0
  3156. docsforge/themes/material/templates/.icons/fontawesome/solid/web-awesome.svg +1 -0
  3157. docsforge/themes/material/templates/.icons/fontawesome/solid/weight-hanging.svg +1 -0
  3158. docsforge/themes/material/templates/.icons/fontawesome/solid/weight-scale.svg +1 -0
  3159. docsforge/themes/material/templates/.icons/fontawesome/solid/weight.svg +1 -0
  3160. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-alt.svg +1 -0
  3161. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg +1 -0
  3162. docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn.svg +1 -0
  3163. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg +1 -0
  3164. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-move.svg +1 -0
  3165. docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair.svg +1 -0
  3166. docsforge/themes/material/templates/.icons/fontawesome/solid/whiskey-glass.svg +1 -0
  3167. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-3.svg +1 -0
  3168. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-strong.svg +1 -0
  3169. docsforge/themes/material/templates/.icons/fontawesome/solid/wifi.svg +1 -0
  3170. docsforge/themes/material/templates/.icons/fontawesome/solid/wind.svg +1 -0
  3171. docsforge/themes/material/templates/.icons/fontawesome/solid/window-close.svg +1 -0
  3172. docsforge/themes/material/templates/.icons/fontawesome/solid/window-maximize.svg +1 -0
  3173. docsforge/themes/material/templates/.icons/fontawesome/solid/window-minimize.svg +1 -0
  3174. docsforge/themes/material/templates/.icons/fontawesome/solid/window-restore.svg +1 -0
  3175. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-bottle.svg +1 -0
  3176. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg +1 -0
  3177. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg +1 -0
  3178. docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass.svg +1 -0
  3179. docsforge/themes/material/templates/.icons/fontawesome/solid/won-sign.svg +1 -0
  3180. docsforge/themes/material/templates/.icons/fontawesome/solid/won.svg +1 -0
  3181. docsforge/themes/material/templates/.icons/fontawesome/solid/worm.svg +1 -0
  3182. docsforge/themes/material/templates/.icons/fontawesome/solid/wrench.svg +1 -0
  3183. docsforge/themes/material/templates/.icons/fontawesome/solid/x-ray.svg +1 -0
  3184. docsforge/themes/material/templates/.icons/fontawesome/solid/x.svg +1 -0
  3185. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-circle.svg +1 -0
  3186. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-square.svg +1 -0
  3187. docsforge/themes/material/templates/.icons/fontawesome/solid/xmark.svg +1 -0
  3188. docsforge/themes/material/templates/.icons/fontawesome/solid/xmarks-lines.svg +1 -0
  3189. docsforge/themes/material/templates/.icons/fontawesome/solid/y.svg +1 -0
  3190. docsforge/themes/material/templates/.icons/fontawesome/solid/yen-sign.svg +1 -0
  3191. docsforge/themes/material/templates/.icons/fontawesome/solid/yen.svg +1 -0
  3192. docsforge/themes/material/templates/.icons/fontawesome/solid/yin-yang.svg +1 -0
  3193. docsforge/themes/material/templates/.icons/fontawesome/solid/z.svg +1 -0
  3194. docsforge/themes/material/templates/.icons/fontawesome/solid/zap.svg +1 -0
  3195. docsforge/themes/material/templates/.icons/logo-monochrome.svg +3 -0
  3196. docsforge/themes/material/templates/.icons/logo.svg +6 -0
  3197. docsforge/themes/material/templates/.icons/material/LICENSE +20 -0
  3198. docsforge/themes/material/templates/.icons/material/ab-testing.svg +1 -0
  3199. docsforge/themes/material/templates/.icons/material/abacus.svg +1 -0
  3200. docsforge/themes/material/templates/.icons/material/abjad-arabic.svg +1 -0
  3201. docsforge/themes/material/templates/.icons/material/abjad-hebrew.svg +1 -0
  3202. docsforge/themes/material/templates/.icons/material/abugida-devanagari.svg +1 -0
  3203. docsforge/themes/material/templates/.icons/material/abugida-thai.svg +1 -0
  3204. docsforge/themes/material/templates/.icons/material/access-point-check.svg +1 -0
  3205. docsforge/themes/material/templates/.icons/material/access-point-minus.svg +1 -0
  3206. docsforge/themes/material/templates/.icons/material/access-point-network-off.svg +1 -0
  3207. docsforge/themes/material/templates/.icons/material/access-point-network.svg +1 -0
  3208. docsforge/themes/material/templates/.icons/material/access-point-off.svg +1 -0
  3209. docsforge/themes/material/templates/.icons/material/access-point-plus.svg +1 -0
  3210. docsforge/themes/material/templates/.icons/material/access-point-remove.svg +1 -0
  3211. docsforge/themes/material/templates/.icons/material/access-point.svg +1 -0
  3212. docsforge/themes/material/templates/.icons/material/account-alert-outline.svg +1 -0
  3213. docsforge/themes/material/templates/.icons/material/account-alert.svg +1 -0
  3214. docsforge/themes/material/templates/.icons/material/account-arrow-down-outline.svg +1 -0
  3215. docsforge/themes/material/templates/.icons/material/account-arrow-down.svg +1 -0
  3216. docsforge/themes/material/templates/.icons/material/account-arrow-left-outline.svg +1 -0
  3217. docsforge/themes/material/templates/.icons/material/account-arrow-left.svg +1 -0
  3218. docsforge/themes/material/templates/.icons/material/account-arrow-right-outline.svg +1 -0
  3219. docsforge/themes/material/templates/.icons/material/account-arrow-right.svg +1 -0
  3220. docsforge/themes/material/templates/.icons/material/account-arrow-up-outline.svg +1 -0
  3221. docsforge/themes/material/templates/.icons/material/account-arrow-up.svg +1 -0
  3222. docsforge/themes/material/templates/.icons/material/account-badge-outline.svg +1 -0
  3223. docsforge/themes/material/templates/.icons/material/account-badge.svg +1 -0
  3224. docsforge/themes/material/templates/.icons/material/account-box-edit-outline.svg +1 -0
  3225. docsforge/themes/material/templates/.icons/material/account-box-minus-outline.svg +1 -0
  3226. docsforge/themes/material/templates/.icons/material/account-box-multiple-outline.svg +1 -0
  3227. docsforge/themes/material/templates/.icons/material/account-box-multiple.svg +1 -0
  3228. docsforge/themes/material/templates/.icons/material/account-box-outline.svg +1 -0
  3229. docsforge/themes/material/templates/.icons/material/account-box-plus-outline.svg +1 -0
  3230. docsforge/themes/material/templates/.icons/material/account-box.svg +1 -0
  3231. docsforge/themes/material/templates/.icons/material/account-cancel-outline.svg +1 -0
  3232. docsforge/themes/material/templates/.icons/material/account-cancel.svg +1 -0
  3233. docsforge/themes/material/templates/.icons/material/account-card-outline.svg +1 -0
  3234. docsforge/themes/material/templates/.icons/material/account-card.svg +1 -0
  3235. docsforge/themes/material/templates/.icons/material/account-cash-outline.svg +1 -0
  3236. docsforge/themes/material/templates/.icons/material/account-cash.svg +1 -0
  3237. docsforge/themes/material/templates/.icons/material/account-check-outline.svg +1 -0
  3238. docsforge/themes/material/templates/.icons/material/account-check.svg +1 -0
  3239. docsforge/themes/material/templates/.icons/material/account-child-circle.svg +1 -0
  3240. docsforge/themes/material/templates/.icons/material/account-child-outline.svg +1 -0
  3241. docsforge/themes/material/templates/.icons/material/account-child.svg +1 -0
  3242. docsforge/themes/material/templates/.icons/material/account-circle-outline.svg +1 -0
  3243. docsforge/themes/material/templates/.icons/material/account-circle.svg +1 -0
  3244. docsforge/themes/material/templates/.icons/material/account-clock-outline.svg +1 -0
  3245. docsforge/themes/material/templates/.icons/material/account-clock.svg +1 -0
  3246. docsforge/themes/material/templates/.icons/material/account-cog-outline.svg +1 -0
  3247. docsforge/themes/material/templates/.icons/material/account-cog.svg +1 -0
  3248. docsforge/themes/material/templates/.icons/material/account-convert-outline.svg +1 -0
  3249. docsforge/themes/material/templates/.icons/material/account-convert.svg +1 -0
  3250. docsforge/themes/material/templates/.icons/material/account-cowboy-hat-outline.svg +1 -0
  3251. docsforge/themes/material/templates/.icons/material/account-cowboy-hat.svg +1 -0
  3252. docsforge/themes/material/templates/.icons/material/account-credit-card-outline.svg +1 -0
  3253. docsforge/themes/material/templates/.icons/material/account-credit-card.svg +1 -0
  3254. docsforge/themes/material/templates/.icons/material/account-details-outline.svg +1 -0
  3255. docsforge/themes/material/templates/.icons/material/account-details.svg +1 -0
  3256. docsforge/themes/material/templates/.icons/material/account-edit-outline.svg +1 -0
  3257. docsforge/themes/material/templates/.icons/material/account-edit.svg +1 -0
  3258. docsforge/themes/material/templates/.icons/material/account-eye-outline.svg +1 -0
  3259. docsforge/themes/material/templates/.icons/material/account-eye.svg +1 -0
  3260. docsforge/themes/material/templates/.icons/material/account-file-outline.svg +1 -0
  3261. docsforge/themes/material/templates/.icons/material/account-file-text-outline.svg +1 -0
  3262. docsforge/themes/material/templates/.icons/material/account-file-text.svg +1 -0
  3263. docsforge/themes/material/templates/.icons/material/account-file.svg +1 -0
  3264. docsforge/themes/material/templates/.icons/material/account-filter-outline.svg +1 -0
  3265. docsforge/themes/material/templates/.icons/material/account-filter.svg +1 -0
  3266. docsforge/themes/material/templates/.icons/material/account-group-outline.svg +1 -0
  3267. docsforge/themes/material/templates/.icons/material/account-group.svg +1 -0
  3268. docsforge/themes/material/templates/.icons/material/account-hard-hat-outline.svg +1 -0
  3269. docsforge/themes/material/templates/.icons/material/account-hard-hat.svg +1 -0
  3270. docsforge/themes/material/templates/.icons/material/account-heart-outline.svg +1 -0
  3271. docsforge/themes/material/templates/.icons/material/account-heart.svg +1 -0
  3272. docsforge/themes/material/templates/.icons/material/account-injury-outline.svg +1 -0
  3273. docsforge/themes/material/templates/.icons/material/account-injury.svg +1 -0
  3274. docsforge/themes/material/templates/.icons/material/account-key-outline.svg +1 -0
  3275. docsforge/themes/material/templates/.icons/material/account-key.svg +1 -0
  3276. docsforge/themes/material/templates/.icons/material/account-lock-open-outline.svg +1 -0
  3277. docsforge/themes/material/templates/.icons/material/account-lock-open.svg +1 -0
  3278. docsforge/themes/material/templates/.icons/material/account-lock-outline.svg +1 -0
  3279. docsforge/themes/material/templates/.icons/material/account-lock.svg +1 -0
  3280. docsforge/themes/material/templates/.icons/material/account-minus-outline.svg +1 -0
  3281. docsforge/themes/material/templates/.icons/material/account-minus.svg +1 -0
  3282. docsforge/themes/material/templates/.icons/material/account-multiple-check-outline.svg +1 -0
  3283. docsforge/themes/material/templates/.icons/material/account-multiple-check.svg +1 -0
  3284. docsforge/themes/material/templates/.icons/material/account-multiple-minus-outline.svg +1 -0
  3285. docsforge/themes/material/templates/.icons/material/account-multiple-minus.svg +1 -0
  3286. docsforge/themes/material/templates/.icons/material/account-multiple-outline.svg +1 -0
  3287. docsforge/themes/material/templates/.icons/material/account-multiple-plus-outline.svg +1 -0
  3288. docsforge/themes/material/templates/.icons/material/account-multiple-plus.svg +1 -0
  3289. docsforge/themes/material/templates/.icons/material/account-multiple-remove-outline.svg +1 -0
  3290. docsforge/themes/material/templates/.icons/material/account-multiple-remove.svg +1 -0
  3291. docsforge/themes/material/templates/.icons/material/account-multiple.svg +1 -0
  3292. docsforge/themes/material/templates/.icons/material/account-music-outline.svg +1 -0
  3293. docsforge/themes/material/templates/.icons/material/account-music.svg +1 -0
  3294. docsforge/themes/material/templates/.icons/material/account-network-off-outline.svg +1 -0
  3295. docsforge/themes/material/templates/.icons/material/account-network-off.svg +1 -0
  3296. docsforge/themes/material/templates/.icons/material/account-network-outline.svg +1 -0
  3297. docsforge/themes/material/templates/.icons/material/account-network.svg +1 -0
  3298. docsforge/themes/material/templates/.icons/material/account-off-outline.svg +1 -0
  3299. docsforge/themes/material/templates/.icons/material/account-off.svg +1 -0
  3300. docsforge/themes/material/templates/.icons/material/account-outline.svg +1 -0
  3301. docsforge/themes/material/templates/.icons/material/account-plus-outline.svg +1 -0
  3302. docsforge/themes/material/templates/.icons/material/account-plus.svg +1 -0
  3303. docsforge/themes/material/templates/.icons/material/account-question-outline.svg +1 -0
  3304. docsforge/themes/material/templates/.icons/material/account-question.svg +1 -0
  3305. docsforge/themes/material/templates/.icons/material/account-reactivate-outline.svg +1 -0
  3306. docsforge/themes/material/templates/.icons/material/account-reactivate.svg +1 -0
  3307. docsforge/themes/material/templates/.icons/material/account-remove-outline.svg +1 -0
  3308. docsforge/themes/material/templates/.icons/material/account-remove.svg +1 -0
  3309. docsforge/themes/material/templates/.icons/material/account-school-outline.svg +1 -0
  3310. docsforge/themes/material/templates/.icons/material/account-school.svg +1 -0
  3311. docsforge/themes/material/templates/.icons/material/account-search-outline.svg +1 -0
  3312. docsforge/themes/material/templates/.icons/material/account-search.svg +1 -0
  3313. docsforge/themes/material/templates/.icons/material/account-settings-outline.svg +1 -0
  3314. docsforge/themes/material/templates/.icons/material/account-settings.svg +1 -0
  3315. docsforge/themes/material/templates/.icons/material/account-star-outline.svg +1 -0
  3316. docsforge/themes/material/templates/.icons/material/account-star.svg +1 -0
  3317. docsforge/themes/material/templates/.icons/material/account-supervisor-circle-outline.svg +1 -0
  3318. docsforge/themes/material/templates/.icons/material/account-supervisor-circle.svg +1 -0
  3319. docsforge/themes/material/templates/.icons/material/account-supervisor-outline.svg +1 -0
  3320. docsforge/themes/material/templates/.icons/material/account-supervisor.svg +1 -0
  3321. docsforge/themes/material/templates/.icons/material/account-switch-outline.svg +1 -0
  3322. docsforge/themes/material/templates/.icons/material/account-switch.svg +1 -0
  3323. docsforge/themes/material/templates/.icons/material/account-sync-outline.svg +1 -0
  3324. docsforge/themes/material/templates/.icons/material/account-sync.svg +1 -0
  3325. docsforge/themes/material/templates/.icons/material/account-tag-outline.svg +1 -0
  3326. docsforge/themes/material/templates/.icons/material/account-tag.svg +1 -0
  3327. docsforge/themes/material/templates/.icons/material/account-tie-hat-outline.svg +1 -0
  3328. docsforge/themes/material/templates/.icons/material/account-tie-hat.svg +1 -0
  3329. docsforge/themes/material/templates/.icons/material/account-tie-outline.svg +1 -0
  3330. docsforge/themes/material/templates/.icons/material/account-tie-voice-off-outline.svg +1 -0
  3331. docsforge/themes/material/templates/.icons/material/account-tie-voice-off.svg +1 -0
  3332. docsforge/themes/material/templates/.icons/material/account-tie-voice-outline.svg +1 -0
  3333. docsforge/themes/material/templates/.icons/material/account-tie-voice.svg +1 -0
  3334. docsforge/themes/material/templates/.icons/material/account-tie-woman.svg +1 -0
  3335. docsforge/themes/material/templates/.icons/material/account-tie.svg +1 -0
  3336. docsforge/themes/material/templates/.icons/material/account-voice-off.svg +1 -0
  3337. docsforge/themes/material/templates/.icons/material/account-voice.svg +1 -0
  3338. docsforge/themes/material/templates/.icons/material/account-wrench-outline.svg +1 -0
  3339. docsforge/themes/material/templates/.icons/material/account-wrench.svg +1 -0
  3340. docsforge/themes/material/templates/.icons/material/account.svg +1 -0
  3341. docsforge/themes/material/templates/.icons/material/adjust.svg +1 -0
  3342. docsforge/themes/material/templates/.icons/material/advertisements-off.svg +1 -0
  3343. docsforge/themes/material/templates/.icons/material/advertisements.svg +1 -0
  3344. docsforge/themes/material/templates/.icons/material/air-conditioner.svg +1 -0
  3345. docsforge/themes/material/templates/.icons/material/air-filter.svg +1 -0
  3346. docsforge/themes/material/templates/.icons/material/air-horn.svg +1 -0
  3347. docsforge/themes/material/templates/.icons/material/air-humidifier-off.svg +1 -0
  3348. docsforge/themes/material/templates/.icons/material/air-humidifier.svg +1 -0
  3349. docsforge/themes/material/templates/.icons/material/air-purifier-off.svg +1 -0
  3350. docsforge/themes/material/templates/.icons/material/air-purifier.svg +1 -0
  3351. docsforge/themes/material/templates/.icons/material/airbag.svg +1 -0
  3352. docsforge/themes/material/templates/.icons/material/airballoon-outline.svg +1 -0
  3353. docsforge/themes/material/templates/.icons/material/airballoon.svg +1 -0
  3354. docsforge/themes/material/templates/.icons/material/airplane-alert.svg +1 -0
  3355. docsforge/themes/material/templates/.icons/material/airplane-check.svg +1 -0
  3356. docsforge/themes/material/templates/.icons/material/airplane-clock.svg +1 -0
  3357. docsforge/themes/material/templates/.icons/material/airplane-cog.svg +1 -0
  3358. docsforge/themes/material/templates/.icons/material/airplane-edit.svg +1 -0
  3359. docsforge/themes/material/templates/.icons/material/airplane-landing.svg +1 -0
  3360. docsforge/themes/material/templates/.icons/material/airplane-marker.svg +1 -0
  3361. docsforge/themes/material/templates/.icons/material/airplane-minus.svg +1 -0
  3362. docsforge/themes/material/templates/.icons/material/airplane-off.svg +1 -0
  3363. docsforge/themes/material/templates/.icons/material/airplane-plus.svg +1 -0
  3364. docsforge/themes/material/templates/.icons/material/airplane-remove.svg +1 -0
  3365. docsforge/themes/material/templates/.icons/material/airplane-search.svg +1 -0
  3366. docsforge/themes/material/templates/.icons/material/airplane-settings.svg +1 -0
  3367. docsforge/themes/material/templates/.icons/material/airplane-takeoff.svg +1 -0
  3368. docsforge/themes/material/templates/.icons/material/airplane.svg +1 -0
  3369. docsforge/themes/material/templates/.icons/material/airport.svg +1 -0
  3370. docsforge/themes/material/templates/.icons/material/alarm-bell.svg +1 -0
  3371. docsforge/themes/material/templates/.icons/material/alarm-check.svg +1 -0
  3372. docsforge/themes/material/templates/.icons/material/alarm-light-off-outline.svg +1 -0
  3373. docsforge/themes/material/templates/.icons/material/alarm-light-off.svg +1 -0
  3374. docsforge/themes/material/templates/.icons/material/alarm-light-outline.svg +1 -0
  3375. docsforge/themes/material/templates/.icons/material/alarm-light.svg +1 -0
  3376. docsforge/themes/material/templates/.icons/material/alarm-multiple.svg +1 -0
  3377. docsforge/themes/material/templates/.icons/material/alarm-note-off.svg +1 -0
  3378. docsforge/themes/material/templates/.icons/material/alarm-note.svg +1 -0
  3379. docsforge/themes/material/templates/.icons/material/alarm-off.svg +1 -0
  3380. docsforge/themes/material/templates/.icons/material/alarm-panel-outline.svg +1 -0
  3381. docsforge/themes/material/templates/.icons/material/alarm-panel.svg +1 -0
  3382. docsforge/themes/material/templates/.icons/material/alarm-plus.svg +1 -0
  3383. docsforge/themes/material/templates/.icons/material/alarm-snooze.svg +1 -0
  3384. docsforge/themes/material/templates/.icons/material/alarm.svg +1 -0
  3385. docsforge/themes/material/templates/.icons/material/album.svg +1 -0
  3386. docsforge/themes/material/templates/.icons/material/alert-box-outline.svg +1 -0
  3387. docsforge/themes/material/templates/.icons/material/alert-box.svg +1 -0
  3388. docsforge/themes/material/templates/.icons/material/alert-circle-check-outline.svg +1 -0
  3389. docsforge/themes/material/templates/.icons/material/alert-circle-check.svg +1 -0
  3390. docsforge/themes/material/templates/.icons/material/alert-circle-outline.svg +1 -0
  3391. docsforge/themes/material/templates/.icons/material/alert-circle.svg +1 -0
  3392. docsforge/themes/material/templates/.icons/material/alert-decagram-outline.svg +1 -0
  3393. docsforge/themes/material/templates/.icons/material/alert-decagram.svg +1 -0
  3394. docsforge/themes/material/templates/.icons/material/alert-minus-outline.svg +1 -0
  3395. docsforge/themes/material/templates/.icons/material/alert-minus.svg +1 -0
  3396. docsforge/themes/material/templates/.icons/material/alert-octagon-outline.svg +1 -0
  3397. docsforge/themes/material/templates/.icons/material/alert-octagon.svg +1 -0
  3398. docsforge/themes/material/templates/.icons/material/alert-octagram-outline.svg +1 -0
  3399. docsforge/themes/material/templates/.icons/material/alert-octagram.svg +1 -0
  3400. docsforge/themes/material/templates/.icons/material/alert-outline.svg +1 -0
  3401. docsforge/themes/material/templates/.icons/material/alert-plus-outline.svg +1 -0
  3402. docsforge/themes/material/templates/.icons/material/alert-plus.svg +1 -0
  3403. docsforge/themes/material/templates/.icons/material/alert-remove-outline.svg +1 -0
  3404. docsforge/themes/material/templates/.icons/material/alert-remove.svg +1 -0
  3405. docsforge/themes/material/templates/.icons/material/alert-rhombus-outline.svg +1 -0
  3406. docsforge/themes/material/templates/.icons/material/alert-rhombus.svg +1 -0
  3407. docsforge/themes/material/templates/.icons/material/alert.svg +1 -0
  3408. docsforge/themes/material/templates/.icons/material/alien-outline.svg +1 -0
  3409. docsforge/themes/material/templates/.icons/material/alien.svg +1 -0
  3410. docsforge/themes/material/templates/.icons/material/align-horizontal-center.svg +1 -0
  3411. docsforge/themes/material/templates/.icons/material/align-horizontal-distribute.svg +1 -0
  3412. docsforge/themes/material/templates/.icons/material/align-horizontal-left.svg +1 -0
  3413. docsforge/themes/material/templates/.icons/material/align-horizontal-right.svg +1 -0
  3414. docsforge/themes/material/templates/.icons/material/align-vertical-bottom.svg +1 -0
  3415. docsforge/themes/material/templates/.icons/material/align-vertical-center.svg +1 -0
  3416. docsforge/themes/material/templates/.icons/material/align-vertical-distribute.svg +1 -0
  3417. docsforge/themes/material/templates/.icons/material/align-vertical-top.svg +1 -0
  3418. docsforge/themes/material/templates/.icons/material/all-inclusive-box-outline.svg +1 -0
  3419. docsforge/themes/material/templates/.icons/material/all-inclusive-box.svg +1 -0
  3420. docsforge/themes/material/templates/.icons/material/all-inclusive.svg +1 -0
  3421. docsforge/themes/material/templates/.icons/material/allergy.svg +1 -0
  3422. docsforge/themes/material/templates/.icons/material/alpha-a-box-outline.svg +1 -0
  3423. docsforge/themes/material/templates/.icons/material/alpha-a-box.svg +1 -0
  3424. docsforge/themes/material/templates/.icons/material/alpha-a-circle-outline.svg +1 -0
  3425. docsforge/themes/material/templates/.icons/material/alpha-a-circle.svg +1 -0
  3426. docsforge/themes/material/templates/.icons/material/alpha-a.svg +1 -0
  3427. docsforge/themes/material/templates/.icons/material/alpha-b-box-outline.svg +1 -0
  3428. docsforge/themes/material/templates/.icons/material/alpha-b-box.svg +1 -0
  3429. docsforge/themes/material/templates/.icons/material/alpha-b-circle-outline.svg +1 -0
  3430. docsforge/themes/material/templates/.icons/material/alpha-b-circle.svg +1 -0
  3431. docsforge/themes/material/templates/.icons/material/alpha-b.svg +1 -0
  3432. docsforge/themes/material/templates/.icons/material/alpha-c-box-outline.svg +1 -0
  3433. docsforge/themes/material/templates/.icons/material/alpha-c-box.svg +1 -0
  3434. docsforge/themes/material/templates/.icons/material/alpha-c-circle-outline.svg +1 -0
  3435. docsforge/themes/material/templates/.icons/material/alpha-c-circle.svg +1 -0
  3436. docsforge/themes/material/templates/.icons/material/alpha-c.svg +1 -0
  3437. docsforge/themes/material/templates/.icons/material/alpha-d-box-outline.svg +1 -0
  3438. docsforge/themes/material/templates/.icons/material/alpha-d-box.svg +1 -0
  3439. docsforge/themes/material/templates/.icons/material/alpha-d-circle-outline.svg +1 -0
  3440. docsforge/themes/material/templates/.icons/material/alpha-d-circle.svg +1 -0
  3441. docsforge/themes/material/templates/.icons/material/alpha-d.svg +1 -0
  3442. docsforge/themes/material/templates/.icons/material/alpha-e-box-outline.svg +1 -0
  3443. docsforge/themes/material/templates/.icons/material/alpha-e-box.svg +1 -0
  3444. docsforge/themes/material/templates/.icons/material/alpha-e-circle-outline.svg +1 -0
  3445. docsforge/themes/material/templates/.icons/material/alpha-e-circle.svg +1 -0
  3446. docsforge/themes/material/templates/.icons/material/alpha-e.svg +1 -0
  3447. docsforge/themes/material/templates/.icons/material/alpha-f-box-outline.svg +1 -0
  3448. docsforge/themes/material/templates/.icons/material/alpha-f-box.svg +1 -0
  3449. docsforge/themes/material/templates/.icons/material/alpha-f-circle-outline.svg +1 -0
  3450. docsforge/themes/material/templates/.icons/material/alpha-f-circle.svg +1 -0
  3451. docsforge/themes/material/templates/.icons/material/alpha-f.svg +1 -0
  3452. docsforge/themes/material/templates/.icons/material/alpha-g-box-outline.svg +1 -0
  3453. docsforge/themes/material/templates/.icons/material/alpha-g-box.svg +1 -0
  3454. docsforge/themes/material/templates/.icons/material/alpha-g-circle-outline.svg +1 -0
  3455. docsforge/themes/material/templates/.icons/material/alpha-g-circle.svg +1 -0
  3456. docsforge/themes/material/templates/.icons/material/alpha-g.svg +1 -0
  3457. docsforge/themes/material/templates/.icons/material/alpha-h-box-outline.svg +1 -0
  3458. docsforge/themes/material/templates/.icons/material/alpha-h-box.svg +1 -0
  3459. docsforge/themes/material/templates/.icons/material/alpha-h-circle-outline.svg +1 -0
  3460. docsforge/themes/material/templates/.icons/material/alpha-h-circle.svg +1 -0
  3461. docsforge/themes/material/templates/.icons/material/alpha-h.svg +1 -0
  3462. docsforge/themes/material/templates/.icons/material/alpha-i-box-outline.svg +1 -0
  3463. docsforge/themes/material/templates/.icons/material/alpha-i-box.svg +1 -0
  3464. docsforge/themes/material/templates/.icons/material/alpha-i-circle-outline.svg +1 -0
  3465. docsforge/themes/material/templates/.icons/material/alpha-i-circle.svg +1 -0
  3466. docsforge/themes/material/templates/.icons/material/alpha-i.svg +1 -0
  3467. docsforge/themes/material/templates/.icons/material/alpha-j-box-outline.svg +1 -0
  3468. docsforge/themes/material/templates/.icons/material/alpha-j-box.svg +1 -0
  3469. docsforge/themes/material/templates/.icons/material/alpha-j-circle-outline.svg +1 -0
  3470. docsforge/themes/material/templates/.icons/material/alpha-j-circle.svg +1 -0
  3471. docsforge/themes/material/templates/.icons/material/alpha-j.svg +1 -0
  3472. docsforge/themes/material/templates/.icons/material/alpha-k-box-outline.svg +1 -0
  3473. docsforge/themes/material/templates/.icons/material/alpha-k-box.svg +1 -0
  3474. docsforge/themes/material/templates/.icons/material/alpha-k-circle-outline.svg +1 -0
  3475. docsforge/themes/material/templates/.icons/material/alpha-k-circle.svg +1 -0
  3476. docsforge/themes/material/templates/.icons/material/alpha-k.svg +1 -0
  3477. docsforge/themes/material/templates/.icons/material/alpha-l-box-outline.svg +1 -0
  3478. docsforge/themes/material/templates/.icons/material/alpha-l-box.svg +1 -0
  3479. docsforge/themes/material/templates/.icons/material/alpha-l-circle-outline.svg +1 -0
  3480. docsforge/themes/material/templates/.icons/material/alpha-l-circle.svg +1 -0
  3481. docsforge/themes/material/templates/.icons/material/alpha-l.svg +1 -0
  3482. docsforge/themes/material/templates/.icons/material/alpha-m-box-outline.svg +1 -0
  3483. docsforge/themes/material/templates/.icons/material/alpha-m-box.svg +1 -0
  3484. docsforge/themes/material/templates/.icons/material/alpha-m-circle-outline.svg +1 -0
  3485. docsforge/themes/material/templates/.icons/material/alpha-m-circle.svg +1 -0
  3486. docsforge/themes/material/templates/.icons/material/alpha-m.svg +1 -0
  3487. docsforge/themes/material/templates/.icons/material/alpha-n-box-outline.svg +1 -0
  3488. docsforge/themes/material/templates/.icons/material/alpha-n-box.svg +1 -0
  3489. docsforge/themes/material/templates/.icons/material/alpha-n-circle-outline.svg +1 -0
  3490. docsforge/themes/material/templates/.icons/material/alpha-n-circle.svg +1 -0
  3491. docsforge/themes/material/templates/.icons/material/alpha-n.svg +1 -0
  3492. docsforge/themes/material/templates/.icons/material/alpha-o-box-outline.svg +1 -0
  3493. docsforge/themes/material/templates/.icons/material/alpha-o-box.svg +1 -0
  3494. docsforge/themes/material/templates/.icons/material/alpha-o-circle-outline.svg +1 -0
  3495. docsforge/themes/material/templates/.icons/material/alpha-o-circle.svg +1 -0
  3496. docsforge/themes/material/templates/.icons/material/alpha-o.svg +1 -0
  3497. docsforge/themes/material/templates/.icons/material/alpha-p-box-outline.svg +1 -0
  3498. docsforge/themes/material/templates/.icons/material/alpha-p-box.svg +1 -0
  3499. docsforge/themes/material/templates/.icons/material/alpha-p-circle-outline.svg +1 -0
  3500. docsforge/themes/material/templates/.icons/material/alpha-p-circle.svg +1 -0
  3501. docsforge/themes/material/templates/.icons/material/alpha-p.svg +1 -0
  3502. docsforge/themes/material/templates/.icons/material/alpha-q-box-outline.svg +1 -0
  3503. docsforge/themes/material/templates/.icons/material/alpha-q-box.svg +1 -0
  3504. docsforge/themes/material/templates/.icons/material/alpha-q-circle-outline.svg +1 -0
  3505. docsforge/themes/material/templates/.icons/material/alpha-q-circle.svg +1 -0
  3506. docsforge/themes/material/templates/.icons/material/alpha-q.svg +1 -0
  3507. docsforge/themes/material/templates/.icons/material/alpha-r-box-outline.svg +1 -0
  3508. docsforge/themes/material/templates/.icons/material/alpha-r-box.svg +1 -0
  3509. docsforge/themes/material/templates/.icons/material/alpha-r-circle-outline.svg +1 -0
  3510. docsforge/themes/material/templates/.icons/material/alpha-r-circle.svg +1 -0
  3511. docsforge/themes/material/templates/.icons/material/alpha-r.svg +1 -0
  3512. docsforge/themes/material/templates/.icons/material/alpha-s-box-outline.svg +1 -0
  3513. docsforge/themes/material/templates/.icons/material/alpha-s-box.svg +1 -0
  3514. docsforge/themes/material/templates/.icons/material/alpha-s-circle-outline.svg +1 -0
  3515. docsforge/themes/material/templates/.icons/material/alpha-s-circle.svg +1 -0
  3516. docsforge/themes/material/templates/.icons/material/alpha-s.svg +1 -0
  3517. docsforge/themes/material/templates/.icons/material/alpha-t-box-outline.svg +1 -0
  3518. docsforge/themes/material/templates/.icons/material/alpha-t-box.svg +1 -0
  3519. docsforge/themes/material/templates/.icons/material/alpha-t-circle-outline.svg +1 -0
  3520. docsforge/themes/material/templates/.icons/material/alpha-t-circle.svg +1 -0
  3521. docsforge/themes/material/templates/.icons/material/alpha-t.svg +1 -0
  3522. docsforge/themes/material/templates/.icons/material/alpha-u-box-outline.svg +1 -0
  3523. docsforge/themes/material/templates/.icons/material/alpha-u-box.svg +1 -0
  3524. docsforge/themes/material/templates/.icons/material/alpha-u-circle-outline.svg +1 -0
  3525. docsforge/themes/material/templates/.icons/material/alpha-u-circle.svg +1 -0
  3526. docsforge/themes/material/templates/.icons/material/alpha-u.svg +1 -0
  3527. docsforge/themes/material/templates/.icons/material/alpha-v-box-outline.svg +1 -0
  3528. docsforge/themes/material/templates/.icons/material/alpha-v-box.svg +1 -0
  3529. docsforge/themes/material/templates/.icons/material/alpha-v-circle-outline.svg +1 -0
  3530. docsforge/themes/material/templates/.icons/material/alpha-v-circle.svg +1 -0
  3531. docsforge/themes/material/templates/.icons/material/alpha-v.svg +1 -0
  3532. docsforge/themes/material/templates/.icons/material/alpha-w-box-outline.svg +1 -0
  3533. docsforge/themes/material/templates/.icons/material/alpha-w-box.svg +1 -0
  3534. docsforge/themes/material/templates/.icons/material/alpha-w-circle-outline.svg +1 -0
  3535. docsforge/themes/material/templates/.icons/material/alpha-w-circle.svg +1 -0
  3536. docsforge/themes/material/templates/.icons/material/alpha-w.svg +1 -0
  3537. docsforge/themes/material/templates/.icons/material/alpha-x-box-outline.svg +1 -0
  3538. docsforge/themes/material/templates/.icons/material/alpha-x-box.svg +1 -0
  3539. docsforge/themes/material/templates/.icons/material/alpha-x-circle-outline.svg +1 -0
  3540. docsforge/themes/material/templates/.icons/material/alpha-x-circle.svg +1 -0
  3541. docsforge/themes/material/templates/.icons/material/alpha-x.svg +1 -0
  3542. docsforge/themes/material/templates/.icons/material/alpha-y-box-outline.svg +1 -0
  3543. docsforge/themes/material/templates/.icons/material/alpha-y-box.svg +1 -0
  3544. docsforge/themes/material/templates/.icons/material/alpha-y-circle-outline.svg +1 -0
  3545. docsforge/themes/material/templates/.icons/material/alpha-y-circle.svg +1 -0
  3546. docsforge/themes/material/templates/.icons/material/alpha-y.svg +1 -0
  3547. docsforge/themes/material/templates/.icons/material/alpha-z-box-outline.svg +1 -0
  3548. docsforge/themes/material/templates/.icons/material/alpha-z-box.svg +1 -0
  3549. docsforge/themes/material/templates/.icons/material/alpha-z-circle-outline.svg +1 -0
  3550. docsforge/themes/material/templates/.icons/material/alpha-z-circle.svg +1 -0
  3551. docsforge/themes/material/templates/.icons/material/alpha-z.svg +1 -0
  3552. docsforge/themes/material/templates/.icons/material/alpha.svg +1 -0
  3553. docsforge/themes/material/templates/.icons/material/alphabet-aurebesh.svg +1 -0
  3554. docsforge/themes/material/templates/.icons/material/alphabet-cyrillic.svg +1 -0
  3555. docsforge/themes/material/templates/.icons/material/alphabet-greek.svg +1 -0
  3556. docsforge/themes/material/templates/.icons/material/alphabet-latin.svg +1 -0
  3557. docsforge/themes/material/templates/.icons/material/alphabet-piqad.svg +1 -0
  3558. docsforge/themes/material/templates/.icons/material/alphabet-tengwar.svg +1 -0
  3559. docsforge/themes/material/templates/.icons/material/alphabetical-off.svg +1 -0
  3560. docsforge/themes/material/templates/.icons/material/alphabetical-variant-off.svg +1 -0
  3561. docsforge/themes/material/templates/.icons/material/alphabetical-variant.svg +1 -0
  3562. docsforge/themes/material/templates/.icons/material/alphabetical.svg +1 -0
  3563. docsforge/themes/material/templates/.icons/material/altimeter.svg +1 -0
  3564. docsforge/themes/material/templates/.icons/material/ambulance.svg +1 -0
  3565. docsforge/themes/material/templates/.icons/material/ammunition.svg +1 -0
  3566. docsforge/themes/material/templates/.icons/material/ampersand.svg +1 -0
  3567. docsforge/themes/material/templates/.icons/material/amplifier-off.svg +1 -0
  3568. docsforge/themes/material/templates/.icons/material/amplifier.svg +1 -0
  3569. docsforge/themes/material/templates/.icons/material/anchor.svg +1 -0
  3570. docsforge/themes/material/templates/.icons/material/android-studio.svg +1 -0
  3571. docsforge/themes/material/templates/.icons/material/android.svg +1 -0
  3572. docsforge/themes/material/templates/.icons/material/angle-acute.svg +1 -0
  3573. docsforge/themes/material/templates/.icons/material/angle-obtuse.svg +1 -0
  3574. docsforge/themes/material/templates/.icons/material/angle-right.svg +1 -0
  3575. docsforge/themes/material/templates/.icons/material/angular.svg +1 -0
  3576. docsforge/themes/material/templates/.icons/material/angularjs.svg +1 -0
  3577. docsforge/themes/material/templates/.icons/material/animation-outline.svg +1 -0
  3578. docsforge/themes/material/templates/.icons/material/animation-play-outline.svg +1 -0
  3579. docsforge/themes/material/templates/.icons/material/animation-play.svg +1 -0
  3580. docsforge/themes/material/templates/.icons/material/animation.svg +1 -0
  3581. docsforge/themes/material/templates/.icons/material/ansible.svg +1 -0
  3582. docsforge/themes/material/templates/.icons/material/antenna.svg +1 -0
  3583. docsforge/themes/material/templates/.icons/material/anvil.svg +1 -0
  3584. docsforge/themes/material/templates/.icons/material/apache-kafka.svg +1 -0
  3585. docsforge/themes/material/templates/.icons/material/api-off.svg +1 -0
  3586. docsforge/themes/material/templates/.icons/material/api.svg +1 -0
  3587. docsforge/themes/material/templates/.icons/material/apple-finder.svg +1 -0
  3588. docsforge/themes/material/templates/.icons/material/apple-icloud.svg +1 -0
  3589. docsforge/themes/material/templates/.icons/material/apple-ios.svg +1 -0
  3590. docsforge/themes/material/templates/.icons/material/apple-keyboard-caps.svg +1 -0
  3591. docsforge/themes/material/templates/.icons/material/apple-keyboard-command.svg +1 -0
  3592. docsforge/themes/material/templates/.icons/material/apple-keyboard-control.svg +1 -0
  3593. docsforge/themes/material/templates/.icons/material/apple-keyboard-option.svg +1 -0
  3594. docsforge/themes/material/templates/.icons/material/apple-keyboard-shift.svg +1 -0
  3595. docsforge/themes/material/templates/.icons/material/apple-safari.svg +1 -0
  3596. docsforge/themes/material/templates/.icons/material/apple.svg +1 -0
  3597. docsforge/themes/material/templates/.icons/material/application-array-outline.svg +1 -0
  3598. docsforge/themes/material/templates/.icons/material/application-array.svg +1 -0
  3599. docsforge/themes/material/templates/.icons/material/application-braces-outline.svg +1 -0
  3600. docsforge/themes/material/templates/.icons/material/application-braces.svg +1 -0
  3601. docsforge/themes/material/templates/.icons/material/application-brackets-outline.svg +1 -0
  3602. docsforge/themes/material/templates/.icons/material/application-brackets.svg +1 -0
  3603. docsforge/themes/material/templates/.icons/material/application-cog-outline.svg +1 -0
  3604. docsforge/themes/material/templates/.icons/material/application-cog.svg +1 -0
  3605. docsforge/themes/material/templates/.icons/material/application-edit-outline.svg +1 -0
  3606. docsforge/themes/material/templates/.icons/material/application-edit.svg +1 -0
  3607. docsforge/themes/material/templates/.icons/material/application-export.svg +1 -0
  3608. docsforge/themes/material/templates/.icons/material/application-import.svg +1 -0
  3609. docsforge/themes/material/templates/.icons/material/application-outline.svg +1 -0
  3610. docsforge/themes/material/templates/.icons/material/application-parentheses-outline.svg +1 -0
  3611. docsforge/themes/material/templates/.icons/material/application-parentheses.svg +1 -0
  3612. docsforge/themes/material/templates/.icons/material/application-settings-outline.svg +1 -0
  3613. docsforge/themes/material/templates/.icons/material/application-settings.svg +1 -0
  3614. docsforge/themes/material/templates/.icons/material/application-variable-outline.svg +1 -0
  3615. docsforge/themes/material/templates/.icons/material/application-variable.svg +1 -0
  3616. docsforge/themes/material/templates/.icons/material/application.svg +1 -0
  3617. docsforge/themes/material/templates/.icons/material/approximately-equal-box.svg +1 -0
  3618. docsforge/themes/material/templates/.icons/material/approximately-equal.svg +1 -0
  3619. docsforge/themes/material/templates/.icons/material/apps-box.svg +1 -0
  3620. docsforge/themes/material/templates/.icons/material/apps.svg +1 -0
  3621. docsforge/themes/material/templates/.icons/material/arch.svg +1 -0
  3622. docsforge/themes/material/templates/.icons/material/archive-alert-outline.svg +1 -0
  3623. docsforge/themes/material/templates/.icons/material/archive-alert.svg +1 -0
  3624. docsforge/themes/material/templates/.icons/material/archive-arrow-down-outline.svg +1 -0
  3625. docsforge/themes/material/templates/.icons/material/archive-arrow-down.svg +1 -0
  3626. docsforge/themes/material/templates/.icons/material/archive-arrow-up-outline.svg +1 -0
  3627. docsforge/themes/material/templates/.icons/material/archive-arrow-up.svg +1 -0
  3628. docsforge/themes/material/templates/.icons/material/archive-cancel-outline.svg +1 -0
  3629. docsforge/themes/material/templates/.icons/material/archive-cancel.svg +1 -0
  3630. docsforge/themes/material/templates/.icons/material/archive-check-outline.svg +1 -0
  3631. docsforge/themes/material/templates/.icons/material/archive-check.svg +1 -0
  3632. docsforge/themes/material/templates/.icons/material/archive-clock-outline.svg +1 -0
  3633. docsforge/themes/material/templates/.icons/material/archive-clock.svg +1 -0
  3634. docsforge/themes/material/templates/.icons/material/archive-cog-outline.svg +1 -0
  3635. docsforge/themes/material/templates/.icons/material/archive-cog.svg +1 -0
  3636. docsforge/themes/material/templates/.icons/material/archive-edit-outline.svg +1 -0
  3637. docsforge/themes/material/templates/.icons/material/archive-edit.svg +1 -0
  3638. docsforge/themes/material/templates/.icons/material/archive-eye-outline.svg +1 -0
  3639. docsforge/themes/material/templates/.icons/material/archive-eye.svg +1 -0
  3640. docsforge/themes/material/templates/.icons/material/archive-lock-open-outline.svg +1 -0
  3641. docsforge/themes/material/templates/.icons/material/archive-lock-open.svg +1 -0
  3642. docsforge/themes/material/templates/.icons/material/archive-lock-outline.svg +1 -0
  3643. docsforge/themes/material/templates/.icons/material/archive-lock.svg +1 -0
  3644. docsforge/themes/material/templates/.icons/material/archive-marker-outline.svg +1 -0
  3645. docsforge/themes/material/templates/.icons/material/archive-marker.svg +1 -0
  3646. docsforge/themes/material/templates/.icons/material/archive-minus-outline.svg +1 -0
  3647. docsforge/themes/material/templates/.icons/material/archive-minus.svg +1 -0
  3648. docsforge/themes/material/templates/.icons/material/archive-music-outline.svg +1 -0
  3649. docsforge/themes/material/templates/.icons/material/archive-music.svg +1 -0
  3650. docsforge/themes/material/templates/.icons/material/archive-off-outline.svg +1 -0
  3651. docsforge/themes/material/templates/.icons/material/archive-off.svg +1 -0
  3652. docsforge/themes/material/templates/.icons/material/archive-outline.svg +1 -0
  3653. docsforge/themes/material/templates/.icons/material/archive-plus-outline.svg +1 -0
  3654. docsforge/themes/material/templates/.icons/material/archive-plus.svg +1 -0
  3655. docsforge/themes/material/templates/.icons/material/archive-refresh-outline.svg +1 -0
  3656. docsforge/themes/material/templates/.icons/material/archive-refresh.svg +1 -0
  3657. docsforge/themes/material/templates/.icons/material/archive-remove-outline.svg +1 -0
  3658. docsforge/themes/material/templates/.icons/material/archive-remove.svg +1 -0
  3659. docsforge/themes/material/templates/.icons/material/archive-search-outline.svg +1 -0
  3660. docsforge/themes/material/templates/.icons/material/archive-search.svg +1 -0
  3661. docsforge/themes/material/templates/.icons/material/archive-settings-outline.svg +1 -0
  3662. docsforge/themes/material/templates/.icons/material/archive-settings.svg +1 -0
  3663. docsforge/themes/material/templates/.icons/material/archive-star-outline.svg +1 -0
  3664. docsforge/themes/material/templates/.icons/material/archive-star.svg +1 -0
  3665. docsforge/themes/material/templates/.icons/material/archive-sync-outline.svg +1 -0
  3666. docsforge/themes/material/templates/.icons/material/archive-sync.svg +1 -0
  3667. docsforge/themes/material/templates/.icons/material/archive.svg +1 -0
  3668. docsforge/themes/material/templates/.icons/material/arm-flex-outline.svg +1 -0
  3669. docsforge/themes/material/templates/.icons/material/arm-flex.svg +1 -0
  3670. docsforge/themes/material/templates/.icons/material/arrange-bring-forward.svg +1 -0
  3671. docsforge/themes/material/templates/.icons/material/arrange-bring-to-front.svg +1 -0
  3672. docsforge/themes/material/templates/.icons/material/arrange-send-backward.svg +1 -0
  3673. docsforge/themes/material/templates/.icons/material/arrange-send-to-back.svg +1 -0
  3674. docsforge/themes/material/templates/.icons/material/arrow-all.svg +1 -0
  3675. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg +1 -0
  3676. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box.svg +1 -0
  3677. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg +1 -0
  3678. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thick.svg +1 -0
  3679. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg +1 -0
  3680. docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin.svg +1 -0
  3681. docsforge/themes/material/templates/.icons/material/arrow-bottom-left.svg +1 -0
  3682. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg +1 -0
  3683. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box.svg +1 -0
  3684. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg +1 -0
  3685. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thick.svg +1 -0
  3686. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg +1 -0
  3687. docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin.svg +1 -0
  3688. docsforge/themes/material/templates/.icons/material/arrow-bottom-right.svg +1 -0
  3689. docsforge/themes/material/templates/.icons/material/arrow-collapse-all.svg +1 -0
  3690. docsforge/themes/material/templates/.icons/material/arrow-collapse-down.svg +1 -0
  3691. docsforge/themes/material/templates/.icons/material/arrow-collapse-horizontal.svg +1 -0
  3692. docsforge/themes/material/templates/.icons/material/arrow-collapse-left.svg +1 -0
  3693. docsforge/themes/material/templates/.icons/material/arrow-collapse-right.svg +1 -0
  3694. docsforge/themes/material/templates/.icons/material/arrow-collapse-up.svg +1 -0
  3695. docsforge/themes/material/templates/.icons/material/arrow-collapse-vertical.svg +1 -0
  3696. docsforge/themes/material/templates/.icons/material/arrow-collapse.svg +1 -0
  3697. docsforge/themes/material/templates/.icons/material/arrow-decision-auto-outline.svg +1 -0
  3698. docsforge/themes/material/templates/.icons/material/arrow-decision-auto.svg +1 -0
  3699. docsforge/themes/material/templates/.icons/material/arrow-decision-outline.svg +1 -0
  3700. docsforge/themes/material/templates/.icons/material/arrow-decision.svg +1 -0
  3701. docsforge/themes/material/templates/.icons/material/arrow-down-bold-box-outline.svg +1 -0
  3702. docsforge/themes/material/templates/.icons/material/arrow-down-bold-box.svg +1 -0
  3703. docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle-outline.svg +1 -0
  3704. docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle.svg +1 -0
  3705. docsforge/themes/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg +1 -0
  3706. docsforge/themes/material/templates/.icons/material/arrow-down-bold-outline.svg +1 -0
  3707. docsforge/themes/material/templates/.icons/material/arrow-down-bold.svg +1 -0
  3708. docsforge/themes/material/templates/.icons/material/arrow-down-box.svg +1 -0
  3709. docsforge/themes/material/templates/.icons/material/arrow-down-circle-outline.svg +1 -0
  3710. docsforge/themes/material/templates/.icons/material/arrow-down-circle.svg +1 -0
  3711. docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle-outline.svg +1 -0
  3712. docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle.svg +1 -0
  3713. docsforge/themes/material/templates/.icons/material/arrow-down-left-bold.svg +1 -0
  3714. docsforge/themes/material/templates/.icons/material/arrow-down-left.svg +1 -0
  3715. docsforge/themes/material/templates/.icons/material/arrow-down-right-bold.svg +1 -0
  3716. docsforge/themes/material/templates/.icons/material/arrow-down-right.svg +1 -0
  3717. docsforge/themes/material/templates/.icons/material/arrow-down-thick.svg +1 -0
  3718. docsforge/themes/material/templates/.icons/material/arrow-down-thin-circle-outline.svg +1 -0
  3719. docsforge/themes/material/templates/.icons/material/arrow-down-thin.svg +1 -0
  3720. docsforge/themes/material/templates/.icons/material/arrow-down.svg +1 -0
  3721. docsforge/themes/material/templates/.icons/material/arrow-expand-all.svg +1 -0
  3722. docsforge/themes/material/templates/.icons/material/arrow-expand-down.svg +1 -0
  3723. docsforge/themes/material/templates/.icons/material/arrow-expand-horizontal.svg +1 -0
  3724. docsforge/themes/material/templates/.icons/material/arrow-expand-left.svg +1 -0
  3725. docsforge/themes/material/templates/.icons/material/arrow-expand-right.svg +1 -0
  3726. docsforge/themes/material/templates/.icons/material/arrow-expand-up.svg +1 -0
  3727. docsforge/themes/material/templates/.icons/material/arrow-expand-vertical.svg +1 -0
  3728. docsforge/themes/material/templates/.icons/material/arrow-expand.svg +1 -0
  3729. docsforge/themes/material/templates/.icons/material/arrow-horizontal-lock.svg +1 -0
  3730. docsforge/themes/material/templates/.icons/material/arrow-left-bold-box-outline.svg +1 -0
  3731. docsforge/themes/material/templates/.icons/material/arrow-left-bold-box.svg +1 -0
  3732. docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle-outline.svg +1 -0
  3733. docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle.svg +1 -0
  3734. docsforge/themes/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg +1 -0
  3735. docsforge/themes/material/templates/.icons/material/arrow-left-bold-outline.svg +1 -0
  3736. docsforge/themes/material/templates/.icons/material/arrow-left-bold.svg +1 -0
  3737. docsforge/themes/material/templates/.icons/material/arrow-left-bottom-bold.svg +1 -0
  3738. docsforge/themes/material/templates/.icons/material/arrow-left-bottom.svg +1 -0
  3739. docsforge/themes/material/templates/.icons/material/arrow-left-box.svg +1 -0
  3740. docsforge/themes/material/templates/.icons/material/arrow-left-circle-outline.svg +1 -0
  3741. docsforge/themes/material/templates/.icons/material/arrow-left-circle.svg +1 -0
  3742. docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle-outline.svg +1 -0
  3743. docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle.svg +1 -0
  3744. docsforge/themes/material/templates/.icons/material/arrow-left-right-bold-outline.svg +1 -0
  3745. docsforge/themes/material/templates/.icons/material/arrow-left-right-bold.svg +1 -0
  3746. docsforge/themes/material/templates/.icons/material/arrow-left-right.svg +1 -0
  3747. docsforge/themes/material/templates/.icons/material/arrow-left-thick.svg +1 -0
  3748. docsforge/themes/material/templates/.icons/material/arrow-left-thin-circle-outline.svg +1 -0
  3749. docsforge/themes/material/templates/.icons/material/arrow-left-thin.svg +1 -0
  3750. docsforge/themes/material/templates/.icons/material/arrow-left-top-bold.svg +1 -0
  3751. docsforge/themes/material/templates/.icons/material/arrow-left-top.svg +1 -0
  3752. docsforge/themes/material/templates/.icons/material/arrow-left.svg +1 -0
  3753. docsforge/themes/material/templates/.icons/material/arrow-oscillating-off.svg +1 -0
  3754. docsforge/themes/material/templates/.icons/material/arrow-oscillating.svg +1 -0
  3755. docsforge/themes/material/templates/.icons/material/arrow-projectile-multiple.svg +1 -0
  3756. docsforge/themes/material/templates/.icons/material/arrow-projectile.svg +1 -0
  3757. docsforge/themes/material/templates/.icons/material/arrow-right-bold-box-outline.svg +1 -0
  3758. docsforge/themes/material/templates/.icons/material/arrow-right-bold-box.svg +1 -0
  3759. docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle-outline.svg +1 -0
  3760. docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle.svg +1 -0
  3761. docsforge/themes/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg +1 -0
  3762. docsforge/themes/material/templates/.icons/material/arrow-right-bold-outline.svg +1 -0
  3763. docsforge/themes/material/templates/.icons/material/arrow-right-bold.svg +1 -0
  3764. docsforge/themes/material/templates/.icons/material/arrow-right-bottom-bold.svg +1 -0
  3765. docsforge/themes/material/templates/.icons/material/arrow-right-bottom.svg +1 -0
  3766. docsforge/themes/material/templates/.icons/material/arrow-right-box.svg +1 -0
  3767. docsforge/themes/material/templates/.icons/material/arrow-right-circle-outline.svg +1 -0
  3768. docsforge/themes/material/templates/.icons/material/arrow-right-circle.svg +1 -0
  3769. docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle-outline.svg +1 -0
  3770. docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle.svg +1 -0
  3771. docsforge/themes/material/templates/.icons/material/arrow-right-thick.svg +1 -0
  3772. docsforge/themes/material/templates/.icons/material/arrow-right-thin-circle-outline.svg +1 -0
  3773. docsforge/themes/material/templates/.icons/material/arrow-right-thin.svg +1 -0
  3774. docsforge/themes/material/templates/.icons/material/arrow-right-top-bold.svg +1 -0
  3775. docsforge/themes/material/templates/.icons/material/arrow-right-top.svg +1 -0
  3776. docsforge/themes/material/templates/.icons/material/arrow-right.svg +1 -0
  3777. docsforge/themes/material/templates/.icons/material/arrow-split-horizontal.svg +1 -0
  3778. docsforge/themes/material/templates/.icons/material/arrow-split-vertical.svg +1 -0
  3779. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg +1 -0
  3780. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box.svg +1 -0
  3781. docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-outline.svg +1 -0
  3782. docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg +1 -0
  3783. docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right.svg +1 -0
  3784. docsforge/themes/material/templates/.icons/material/arrow-top-left-thick.svg +1 -0
  3785. docsforge/themes/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg +1 -0
  3786. docsforge/themes/material/templates/.icons/material/arrow-top-left-thin.svg +1 -0
  3787. docsforge/themes/material/templates/.icons/material/arrow-top-left.svg +1 -0
  3788. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg +1 -0
  3789. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box.svg +1 -0
  3790. docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-outline.svg +1 -0
  3791. docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg +1 -0
  3792. docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left.svg +1 -0
  3793. docsforge/themes/material/templates/.icons/material/arrow-top-right-thick.svg +1 -0
  3794. docsforge/themes/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg +1 -0
  3795. docsforge/themes/material/templates/.icons/material/arrow-top-right-thin.svg +1 -0
  3796. docsforge/themes/material/templates/.icons/material/arrow-top-right.svg +1 -0
  3797. docsforge/themes/material/templates/.icons/material/arrow-u-down-left-bold.svg +1 -0
  3798. docsforge/themes/material/templates/.icons/material/arrow-u-down-left.svg +1 -0
  3799. docsforge/themes/material/templates/.icons/material/arrow-u-down-right-bold.svg +1 -0
  3800. docsforge/themes/material/templates/.icons/material/arrow-u-down-right.svg +1 -0
  3801. docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom-bold.svg +1 -0
  3802. docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom.svg +1 -0
  3803. docsforge/themes/material/templates/.icons/material/arrow-u-left-top-bold.svg +1 -0
  3804. docsforge/themes/material/templates/.icons/material/arrow-u-left-top.svg +1 -0
  3805. docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom-bold.svg +1 -0
  3806. docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom.svg +1 -0
  3807. docsforge/themes/material/templates/.icons/material/arrow-u-right-top-bold.svg +1 -0
  3808. docsforge/themes/material/templates/.icons/material/arrow-u-right-top.svg +1 -0
  3809. docsforge/themes/material/templates/.icons/material/arrow-u-up-left-bold.svg +1 -0
  3810. docsforge/themes/material/templates/.icons/material/arrow-u-up-left.svg +1 -0
  3811. docsforge/themes/material/templates/.icons/material/arrow-u-up-right-bold.svg +1 -0
  3812. docsforge/themes/material/templates/.icons/material/arrow-u-up-right.svg +1 -0
  3813. docsforge/themes/material/templates/.icons/material/arrow-up-bold-box-outline.svg +1 -0
  3814. docsforge/themes/material/templates/.icons/material/arrow-up-bold-box.svg +1 -0
  3815. docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle-outline.svg +1 -0
  3816. docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle.svg +1 -0
  3817. docsforge/themes/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg +1 -0
  3818. docsforge/themes/material/templates/.icons/material/arrow-up-bold-outline.svg +1 -0
  3819. docsforge/themes/material/templates/.icons/material/arrow-up-bold.svg +1 -0
  3820. docsforge/themes/material/templates/.icons/material/arrow-up-box.svg +1 -0
  3821. docsforge/themes/material/templates/.icons/material/arrow-up-circle-outline.svg +1 -0
  3822. docsforge/themes/material/templates/.icons/material/arrow-up-circle.svg +1 -0
  3823. docsforge/themes/material/templates/.icons/material/arrow-up-down-bold-outline.svg +1 -0
  3824. docsforge/themes/material/templates/.icons/material/arrow-up-down-bold.svg +1 -0
  3825. docsforge/themes/material/templates/.icons/material/arrow-up-down.svg +1 -0
  3826. docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle-outline.svg +1 -0
  3827. docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle.svg +1 -0
  3828. docsforge/themes/material/templates/.icons/material/arrow-up-left-bold.svg +1 -0
  3829. docsforge/themes/material/templates/.icons/material/arrow-up-left.svg +1 -0
  3830. docsforge/themes/material/templates/.icons/material/arrow-up-right-bold.svg +1 -0
  3831. docsforge/themes/material/templates/.icons/material/arrow-up-right.svg +1 -0
  3832. docsforge/themes/material/templates/.icons/material/arrow-up-thick.svg +1 -0
  3833. docsforge/themes/material/templates/.icons/material/arrow-up-thin-circle-outline.svg +1 -0
  3834. docsforge/themes/material/templates/.icons/material/arrow-up-thin.svg +1 -0
  3835. docsforge/themes/material/templates/.icons/material/arrow-up.svg +1 -0
  3836. docsforge/themes/material/templates/.icons/material/arrow-vertical-lock.svg +1 -0
  3837. docsforge/themes/material/templates/.icons/material/artboard.svg +1 -0
  3838. docsforge/themes/material/templates/.icons/material/artstation.svg +1 -0
  3839. docsforge/themes/material/templates/.icons/material/aspect-ratio.svg +1 -0
  3840. docsforge/themes/material/templates/.icons/material/assistant.svg +1 -0
  3841. docsforge/themes/material/templates/.icons/material/asterisk-circle-outline.svg +1 -0
  3842. docsforge/themes/material/templates/.icons/material/asterisk.svg +1 -0
  3843. docsforge/themes/material/templates/.icons/material/at.svg +1 -0
  3844. docsforge/themes/material/templates/.icons/material/atlassian.svg +1 -0
  3845. docsforge/themes/material/templates/.icons/material/atm.svg +1 -0
  3846. docsforge/themes/material/templates/.icons/material/atom-variant.svg +1 -0
  3847. docsforge/themes/material/templates/.icons/material/atom.svg +1 -0
  3848. docsforge/themes/material/templates/.icons/material/attachment-check.svg +1 -0
  3849. docsforge/themes/material/templates/.icons/material/attachment-lock.svg +1 -0
  3850. docsforge/themes/material/templates/.icons/material/attachment-minus.svg +1 -0
  3851. docsforge/themes/material/templates/.icons/material/attachment-off.svg +1 -0
  3852. docsforge/themes/material/templates/.icons/material/attachment-plus.svg +1 -0
  3853. docsforge/themes/material/templates/.icons/material/attachment-remove.svg +1 -0
  3854. docsforge/themes/material/templates/.icons/material/attachment.svg +1 -0
  3855. docsforge/themes/material/templates/.icons/material/atv.svg +1 -0
  3856. docsforge/themes/material/templates/.icons/material/audio-input-rca.svg +1 -0
  3857. docsforge/themes/material/templates/.icons/material/audio-input-stereo-minijack.svg +1 -0
  3858. docsforge/themes/material/templates/.icons/material/audio-input-xlr.svg +1 -0
  3859. docsforge/themes/material/templates/.icons/material/audio-video-off.svg +1 -0
  3860. docsforge/themes/material/templates/.icons/material/audio-video.svg +1 -0
  3861. docsforge/themes/material/templates/.icons/material/augmented-reality.svg +1 -0
  3862. docsforge/themes/material/templates/.icons/material/aurora.svg +1 -0
  3863. docsforge/themes/material/templates/.icons/material/auto-download.svg +1 -0
  3864. docsforge/themes/material/templates/.icons/material/auto-fix.svg +1 -0
  3865. docsforge/themes/material/templates/.icons/material/auto-mode.svg +1 -0
  3866. docsforge/themes/material/templates/.icons/material/auto-upload.svg +1 -0
  3867. docsforge/themes/material/templates/.icons/material/autorenew-off.svg +1 -0
  3868. docsforge/themes/material/templates/.icons/material/autorenew.svg +1 -0
  3869. docsforge/themes/material/templates/.icons/material/av-timer.svg +1 -0
  3870. docsforge/themes/material/templates/.icons/material/awning-outline.svg +1 -0
  3871. docsforge/themes/material/templates/.icons/material/awning.svg +1 -0
  3872. docsforge/themes/material/templates/.icons/material/aws.svg +1 -0
  3873. docsforge/themes/material/templates/.icons/material/axe-battle.svg +1 -0
  3874. docsforge/themes/material/templates/.icons/material/axe.svg +1 -0
  3875. docsforge/themes/material/templates/.icons/material/axis-arrow-info.svg +1 -0
  3876. docsforge/themes/material/templates/.icons/material/axis-arrow-lock.svg +1 -0
  3877. docsforge/themes/material/templates/.icons/material/axis-arrow.svg +1 -0
  3878. docsforge/themes/material/templates/.icons/material/axis-lock.svg +1 -0
  3879. docsforge/themes/material/templates/.icons/material/axis-x-arrow-lock.svg +1 -0
  3880. docsforge/themes/material/templates/.icons/material/axis-x-arrow.svg +1 -0
  3881. docsforge/themes/material/templates/.icons/material/axis-x-rotate-clockwise.svg +1 -0
  3882. docsforge/themes/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg +1 -0
  3883. docsforge/themes/material/templates/.icons/material/axis-x-y-arrow-lock.svg +1 -0
  3884. docsforge/themes/material/templates/.icons/material/axis-y-arrow-lock.svg +1 -0
  3885. docsforge/themes/material/templates/.icons/material/axis-y-arrow.svg +1 -0
  3886. docsforge/themes/material/templates/.icons/material/axis-y-rotate-clockwise.svg +1 -0
  3887. docsforge/themes/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg +1 -0
  3888. docsforge/themes/material/templates/.icons/material/axis-z-arrow-lock.svg +1 -0
  3889. docsforge/themes/material/templates/.icons/material/axis-z-arrow.svg +1 -0
  3890. docsforge/themes/material/templates/.icons/material/axis-z-rotate-clockwise.svg +1 -0
  3891. docsforge/themes/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg +1 -0
  3892. docsforge/themes/material/templates/.icons/material/axis.svg +1 -0
  3893. docsforge/themes/material/templates/.icons/material/babel.svg +1 -0
  3894. docsforge/themes/material/templates/.icons/material/baby-bottle-outline.svg +1 -0
  3895. docsforge/themes/material/templates/.icons/material/baby-bottle.svg +1 -0
  3896. docsforge/themes/material/templates/.icons/material/baby-buggy-off.svg +1 -0
  3897. docsforge/themes/material/templates/.icons/material/baby-buggy.svg +1 -0
  3898. docsforge/themes/material/templates/.icons/material/baby-carriage-off.svg +1 -0
  3899. docsforge/themes/material/templates/.icons/material/baby-carriage.svg +1 -0
  3900. docsforge/themes/material/templates/.icons/material/baby-face-outline.svg +1 -0
  3901. docsforge/themes/material/templates/.icons/material/baby-face.svg +1 -0
  3902. docsforge/themes/material/templates/.icons/material/baby.svg +1 -0
  3903. docsforge/themes/material/templates/.icons/material/backburger.svg +1 -0
  3904. docsforge/themes/material/templates/.icons/material/backspace-outline.svg +1 -0
  3905. docsforge/themes/material/templates/.icons/material/backspace-reverse-outline.svg +1 -0
  3906. docsforge/themes/material/templates/.icons/material/backspace-reverse.svg +1 -0
  3907. docsforge/themes/material/templates/.icons/material/backspace.svg +1 -0
  3908. docsforge/themes/material/templates/.icons/material/backup-restore.svg +1 -0
  3909. docsforge/themes/material/templates/.icons/material/bacteria-outline.svg +1 -0
  3910. docsforge/themes/material/templates/.icons/material/bacteria.svg +1 -0
  3911. docsforge/themes/material/templates/.icons/material/badge-account-alert-outline.svg +1 -0
  3912. docsforge/themes/material/templates/.icons/material/badge-account-alert.svg +1 -0
  3913. docsforge/themes/material/templates/.icons/material/badge-account-horizontal-outline.svg +1 -0
  3914. docsforge/themes/material/templates/.icons/material/badge-account-horizontal.svg +1 -0
  3915. docsforge/themes/material/templates/.icons/material/badge-account-outline.svg +1 -0
  3916. docsforge/themes/material/templates/.icons/material/badge-account.svg +1 -0
  3917. docsforge/themes/material/templates/.icons/material/badminton.svg +1 -0
  3918. docsforge/themes/material/templates/.icons/material/bag-carry-on-check.svg +1 -0
  3919. docsforge/themes/material/templates/.icons/material/bag-carry-on-off.svg +1 -0
  3920. docsforge/themes/material/templates/.icons/material/bag-carry-on.svg +1 -0
  3921. docsforge/themes/material/templates/.icons/material/bag-checked.svg +1 -0
  3922. docsforge/themes/material/templates/.icons/material/bag-personal-off-outline.svg +1 -0
  3923. docsforge/themes/material/templates/.icons/material/bag-personal-off.svg +1 -0
  3924. docsforge/themes/material/templates/.icons/material/bag-personal-outline.svg +1 -0
  3925. docsforge/themes/material/templates/.icons/material/bag-personal-plus-outline.svg +1 -0
  3926. docsforge/themes/material/templates/.icons/material/bag-personal-plus.svg +1 -0
  3927. docsforge/themes/material/templates/.icons/material/bag-personal-tag-outline.svg +1 -0
  3928. docsforge/themes/material/templates/.icons/material/bag-personal-tag.svg +1 -0
  3929. docsforge/themes/material/templates/.icons/material/bag-personal.svg +1 -0
  3930. docsforge/themes/material/templates/.icons/material/bag-suitcase-off-outline.svg +1 -0
  3931. docsforge/themes/material/templates/.icons/material/bag-suitcase-off.svg +1 -0
  3932. docsforge/themes/material/templates/.icons/material/bag-suitcase-outline.svg +1 -0
  3933. docsforge/themes/material/templates/.icons/material/bag-suitcase.svg +1 -0
  3934. docsforge/themes/material/templates/.icons/material/baguette.svg +1 -0
  3935. docsforge/themes/material/templates/.icons/material/balcony.svg +1 -0
  3936. docsforge/themes/material/templates/.icons/material/balloon.svg +1 -0
  3937. docsforge/themes/material/templates/.icons/material/ballot-outline.svg +1 -0
  3938. docsforge/themes/material/templates/.icons/material/ballot-recount-outline.svg +1 -0
  3939. docsforge/themes/material/templates/.icons/material/ballot-recount.svg +1 -0
  3940. docsforge/themes/material/templates/.icons/material/ballot.svg +1 -0
  3941. docsforge/themes/material/templates/.icons/material/bandage.svg +1 -0
  3942. docsforge/themes/material/templates/.icons/material/bank-check.svg +1 -0
  3943. docsforge/themes/material/templates/.icons/material/bank-circle-outline.svg +1 -0
  3944. docsforge/themes/material/templates/.icons/material/bank-circle.svg +1 -0
  3945. docsforge/themes/material/templates/.icons/material/bank-minus.svg +1 -0
  3946. docsforge/themes/material/templates/.icons/material/bank-off-outline.svg +1 -0
  3947. docsforge/themes/material/templates/.icons/material/bank-off.svg +1 -0
  3948. docsforge/themes/material/templates/.icons/material/bank-outline.svg +1 -0
  3949. docsforge/themes/material/templates/.icons/material/bank-plus.svg +1 -0
  3950. docsforge/themes/material/templates/.icons/material/bank-remove.svg +1 -0
  3951. docsforge/themes/material/templates/.icons/material/bank-transfer-in.svg +1 -0
  3952. docsforge/themes/material/templates/.icons/material/bank-transfer-out.svg +1 -0
  3953. docsforge/themes/material/templates/.icons/material/bank-transfer.svg +1 -0
  3954. docsforge/themes/material/templates/.icons/material/bank.svg +1 -0
  3955. docsforge/themes/material/templates/.icons/material/barcode-off.svg +1 -0
  3956. docsforge/themes/material/templates/.icons/material/barcode-scan.svg +1 -0
  3957. docsforge/themes/material/templates/.icons/material/barcode.svg +1 -0
  3958. docsforge/themes/material/templates/.icons/material/barley-off.svg +1 -0
  3959. docsforge/themes/material/templates/.icons/material/barley.svg +1 -0
  3960. docsforge/themes/material/templates/.icons/material/barn.svg +1 -0
  3961. docsforge/themes/material/templates/.icons/material/barrel-outline.svg +1 -0
  3962. docsforge/themes/material/templates/.icons/material/barrel.svg +1 -0
  3963. docsforge/themes/material/templates/.icons/material/baseball-bat.svg +1 -0
  3964. docsforge/themes/material/templates/.icons/material/baseball-diamond-outline.svg +1 -0
  3965. docsforge/themes/material/templates/.icons/material/baseball-diamond.svg +1 -0
  3966. docsforge/themes/material/templates/.icons/material/baseball-outline.svg +1 -0
  3967. docsforge/themes/material/templates/.icons/material/baseball.svg +1 -0
  3968. docsforge/themes/material/templates/.icons/material/bash.svg +1 -0
  3969. docsforge/themes/material/templates/.icons/material/basket-check-outline.svg +1 -0
  3970. docsforge/themes/material/templates/.icons/material/basket-check.svg +1 -0
  3971. docsforge/themes/material/templates/.icons/material/basket-fill.svg +1 -0
  3972. docsforge/themes/material/templates/.icons/material/basket-minus-outline.svg +1 -0
  3973. docsforge/themes/material/templates/.icons/material/basket-minus.svg +1 -0
  3974. docsforge/themes/material/templates/.icons/material/basket-off-outline.svg +1 -0
  3975. docsforge/themes/material/templates/.icons/material/basket-off.svg +1 -0
  3976. docsforge/themes/material/templates/.icons/material/basket-outline.svg +1 -0
  3977. docsforge/themes/material/templates/.icons/material/basket-plus-outline.svg +1 -0
  3978. docsforge/themes/material/templates/.icons/material/basket-plus.svg +1 -0
  3979. docsforge/themes/material/templates/.icons/material/basket-remove-outline.svg +1 -0
  3980. docsforge/themes/material/templates/.icons/material/basket-remove.svg +1 -0
  3981. docsforge/themes/material/templates/.icons/material/basket-unfill.svg +1 -0
  3982. docsforge/themes/material/templates/.icons/material/basket.svg +1 -0
  3983. docsforge/themes/material/templates/.icons/material/basketball-hoop-outline.svg +1 -0
  3984. docsforge/themes/material/templates/.icons/material/basketball-hoop.svg +1 -0
  3985. docsforge/themes/material/templates/.icons/material/basketball.svg +1 -0
  3986. docsforge/themes/material/templates/.icons/material/bat.svg +1 -0
  3987. docsforge/themes/material/templates/.icons/material/bathtub-outline.svg +1 -0
  3988. docsforge/themes/material/templates/.icons/material/bathtub.svg +1 -0
  3989. docsforge/themes/material/templates/.icons/material/battery-10-bluetooth.svg +1 -0
  3990. docsforge/themes/material/templates/.icons/material/battery-10.svg +1 -0
  3991. docsforge/themes/material/templates/.icons/material/battery-20-bluetooth.svg +1 -0
  3992. docsforge/themes/material/templates/.icons/material/battery-20.svg +1 -0
  3993. docsforge/themes/material/templates/.icons/material/battery-30-bluetooth.svg +1 -0
  3994. docsforge/themes/material/templates/.icons/material/battery-30.svg +1 -0
  3995. docsforge/themes/material/templates/.icons/material/battery-40-bluetooth.svg +1 -0
  3996. docsforge/themes/material/templates/.icons/material/battery-40.svg +1 -0
  3997. docsforge/themes/material/templates/.icons/material/battery-50-bluetooth.svg +1 -0
  3998. docsforge/themes/material/templates/.icons/material/battery-50.svg +1 -0
  3999. docsforge/themes/material/templates/.icons/material/battery-60-bluetooth.svg +1 -0
  4000. docsforge/themes/material/templates/.icons/material/battery-60.svg +1 -0
  4001. docsforge/themes/material/templates/.icons/material/battery-70-bluetooth.svg +1 -0
  4002. docsforge/themes/material/templates/.icons/material/battery-70.svg +1 -0
  4003. docsforge/themes/material/templates/.icons/material/battery-80-bluetooth.svg +1 -0
  4004. docsforge/themes/material/templates/.icons/material/battery-80.svg +1 -0
  4005. docsforge/themes/material/templates/.icons/material/battery-90-bluetooth.svg +1 -0
  4006. docsforge/themes/material/templates/.icons/material/battery-90.svg +1 -0
  4007. docsforge/themes/material/templates/.icons/material/battery-alert-bluetooth.svg +1 -0
  4008. docsforge/themes/material/templates/.icons/material/battery-alert-variant-outline.svg +1 -0
  4009. docsforge/themes/material/templates/.icons/material/battery-alert-variant.svg +1 -0
  4010. docsforge/themes/material/templates/.icons/material/battery-alert.svg +1 -0
  4011. docsforge/themes/material/templates/.icons/material/battery-arrow-down-outline.svg +1 -0
  4012. docsforge/themes/material/templates/.icons/material/battery-arrow-down.svg +1 -0
  4013. docsforge/themes/material/templates/.icons/material/battery-arrow-up-outline.svg +1 -0
  4014. docsforge/themes/material/templates/.icons/material/battery-arrow-up.svg +1 -0
  4015. docsforge/themes/material/templates/.icons/material/battery-bluetooth-variant.svg +1 -0
  4016. docsforge/themes/material/templates/.icons/material/battery-bluetooth.svg +1 -0
  4017. docsforge/themes/material/templates/.icons/material/battery-charging-10.svg +1 -0
  4018. docsforge/themes/material/templates/.icons/material/battery-charging-100.svg +1 -0
  4019. docsforge/themes/material/templates/.icons/material/battery-charging-20.svg +1 -0
  4020. docsforge/themes/material/templates/.icons/material/battery-charging-30.svg +1 -0
  4021. docsforge/themes/material/templates/.icons/material/battery-charging-40.svg +1 -0
  4022. docsforge/themes/material/templates/.icons/material/battery-charging-50.svg +1 -0
  4023. docsforge/themes/material/templates/.icons/material/battery-charging-60.svg +1 -0
  4024. docsforge/themes/material/templates/.icons/material/battery-charging-70.svg +1 -0
  4025. docsforge/themes/material/templates/.icons/material/battery-charging-80.svg +1 -0
  4026. docsforge/themes/material/templates/.icons/material/battery-charging-90.svg +1 -0
  4027. docsforge/themes/material/templates/.icons/material/battery-charging-high.svg +1 -0
  4028. docsforge/themes/material/templates/.icons/material/battery-charging-low.svg +1 -0
  4029. docsforge/themes/material/templates/.icons/material/battery-charging-medium.svg +1 -0
  4030. docsforge/themes/material/templates/.icons/material/battery-charging-outline.svg +1 -0
  4031. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-10.svg +1 -0
  4032. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-20.svg +1 -0
  4033. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-30.svg +1 -0
  4034. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-40.svg +1 -0
  4035. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-50.svg +1 -0
  4036. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-60.svg +1 -0
  4037. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-70.svg +1 -0
  4038. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-80.svg +1 -0
  4039. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-90.svg +1 -0
  4040. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-alert.svg +1 -0
  4041. docsforge/themes/material/templates/.icons/material/battery-charging-wireless-outline.svg +1 -0
  4042. docsforge/themes/material/templates/.icons/material/battery-charging-wireless.svg +1 -0
  4043. docsforge/themes/material/templates/.icons/material/battery-charging.svg +1 -0
  4044. docsforge/themes/material/templates/.icons/material/battery-check-outline.svg +1 -0
  4045. docsforge/themes/material/templates/.icons/material/battery-check.svg +1 -0
  4046. docsforge/themes/material/templates/.icons/material/battery-clock-outline.svg +1 -0
  4047. docsforge/themes/material/templates/.icons/material/battery-clock.svg +1 -0
  4048. docsforge/themes/material/templates/.icons/material/battery-heart-outline.svg +1 -0
  4049. docsforge/themes/material/templates/.icons/material/battery-heart-variant.svg +1 -0
  4050. docsforge/themes/material/templates/.icons/material/battery-heart.svg +1 -0
  4051. docsforge/themes/material/templates/.icons/material/battery-high.svg +1 -0
  4052. docsforge/themes/material/templates/.icons/material/battery-lock-open.svg +1 -0
  4053. docsforge/themes/material/templates/.icons/material/battery-lock.svg +1 -0
  4054. docsforge/themes/material/templates/.icons/material/battery-low.svg +1 -0
  4055. docsforge/themes/material/templates/.icons/material/battery-medium.svg +1 -0
  4056. docsforge/themes/material/templates/.icons/material/battery-minus-outline.svg +1 -0
  4057. docsforge/themes/material/templates/.icons/material/battery-minus-variant.svg +1 -0
  4058. docsforge/themes/material/templates/.icons/material/battery-minus.svg +1 -0
  4059. docsforge/themes/material/templates/.icons/material/battery-negative.svg +1 -0
  4060. docsforge/themes/material/templates/.icons/material/battery-off-outline.svg +1 -0
  4061. docsforge/themes/material/templates/.icons/material/battery-off.svg +1 -0
  4062. docsforge/themes/material/templates/.icons/material/battery-outline.svg +1 -0
  4063. docsforge/themes/material/templates/.icons/material/battery-plus-outline.svg +1 -0
  4064. docsforge/themes/material/templates/.icons/material/battery-plus-variant.svg +1 -0
  4065. docsforge/themes/material/templates/.icons/material/battery-plus.svg +1 -0
  4066. docsforge/themes/material/templates/.icons/material/battery-positive.svg +1 -0
  4067. docsforge/themes/material/templates/.icons/material/battery-remove-outline.svg +1 -0
  4068. docsforge/themes/material/templates/.icons/material/battery-remove.svg +1 -0
  4069. docsforge/themes/material/templates/.icons/material/battery-sync-outline.svg +1 -0
  4070. docsforge/themes/material/templates/.icons/material/battery-sync.svg +1 -0
  4071. docsforge/themes/material/templates/.icons/material/battery-unknown-bluetooth.svg +1 -0
  4072. docsforge/themes/material/templates/.icons/material/battery-unknown.svg +1 -0
  4073. docsforge/themes/material/templates/.icons/material/battery.svg +1 -0
  4074. docsforge/themes/material/templates/.icons/material/beach.svg +1 -0
  4075. docsforge/themes/material/templates/.icons/material/beaker-alert-outline.svg +1 -0
  4076. docsforge/themes/material/templates/.icons/material/beaker-alert.svg +1 -0
  4077. docsforge/themes/material/templates/.icons/material/beaker-check-outline.svg +1 -0
  4078. docsforge/themes/material/templates/.icons/material/beaker-check.svg +1 -0
  4079. docsforge/themes/material/templates/.icons/material/beaker-minus-outline.svg +1 -0
  4080. docsforge/themes/material/templates/.icons/material/beaker-minus.svg +1 -0
  4081. docsforge/themes/material/templates/.icons/material/beaker-outline.svg +1 -0
  4082. docsforge/themes/material/templates/.icons/material/beaker-plus-outline.svg +1 -0
  4083. docsforge/themes/material/templates/.icons/material/beaker-plus.svg +1 -0
  4084. docsforge/themes/material/templates/.icons/material/beaker-question-outline.svg +1 -0
  4085. docsforge/themes/material/templates/.icons/material/beaker-question.svg +1 -0
  4086. docsforge/themes/material/templates/.icons/material/beaker-remove-outline.svg +1 -0
  4087. docsforge/themes/material/templates/.icons/material/beaker-remove.svg +1 -0
  4088. docsforge/themes/material/templates/.icons/material/beaker.svg +1 -0
  4089. docsforge/themes/material/templates/.icons/material/bed-clock.svg +1 -0
  4090. docsforge/themes/material/templates/.icons/material/bed-double-outline.svg +1 -0
  4091. docsforge/themes/material/templates/.icons/material/bed-double.svg +1 -0
  4092. docsforge/themes/material/templates/.icons/material/bed-empty.svg +1 -0
  4093. docsforge/themes/material/templates/.icons/material/bed-king-outline.svg +1 -0
  4094. docsforge/themes/material/templates/.icons/material/bed-king.svg +1 -0
  4095. docsforge/themes/material/templates/.icons/material/bed-outline.svg +1 -0
  4096. docsforge/themes/material/templates/.icons/material/bed-queen-outline.svg +1 -0
  4097. docsforge/themes/material/templates/.icons/material/bed-queen.svg +1 -0
  4098. docsforge/themes/material/templates/.icons/material/bed-single-outline.svg +1 -0
  4099. docsforge/themes/material/templates/.icons/material/bed-single.svg +1 -0
  4100. docsforge/themes/material/templates/.icons/material/bed.svg +1 -0
  4101. docsforge/themes/material/templates/.icons/material/bee-flower.svg +1 -0
  4102. docsforge/themes/material/templates/.icons/material/bee.svg +1 -0
  4103. docsforge/themes/material/templates/.icons/material/beehive-off-outline.svg +1 -0
  4104. docsforge/themes/material/templates/.icons/material/beehive-outline.svg +1 -0
  4105. docsforge/themes/material/templates/.icons/material/beekeeper.svg +1 -0
  4106. docsforge/themes/material/templates/.icons/material/beer-outline.svg +1 -0
  4107. docsforge/themes/material/templates/.icons/material/beer.svg +1 -0
  4108. docsforge/themes/material/templates/.icons/material/bell-alert-outline.svg +1 -0
  4109. docsforge/themes/material/templates/.icons/material/bell-alert.svg +1 -0
  4110. docsforge/themes/material/templates/.icons/material/bell-badge-outline.svg +1 -0
  4111. docsforge/themes/material/templates/.icons/material/bell-badge.svg +1 -0
  4112. docsforge/themes/material/templates/.icons/material/bell-cancel-outline.svg +1 -0
  4113. docsforge/themes/material/templates/.icons/material/bell-cancel.svg +1 -0
  4114. docsforge/themes/material/templates/.icons/material/bell-check-outline.svg +1 -0
  4115. docsforge/themes/material/templates/.icons/material/bell-check.svg +1 -0
  4116. docsforge/themes/material/templates/.icons/material/bell-circle-outline.svg +1 -0
  4117. docsforge/themes/material/templates/.icons/material/bell-circle.svg +1 -0
  4118. docsforge/themes/material/templates/.icons/material/bell-cog-outline.svg +1 -0
  4119. docsforge/themes/material/templates/.icons/material/bell-cog.svg +1 -0
  4120. docsforge/themes/material/templates/.icons/material/bell-minus-outline.svg +1 -0
  4121. docsforge/themes/material/templates/.icons/material/bell-minus.svg +1 -0
  4122. docsforge/themes/material/templates/.icons/material/bell-off-outline.svg +1 -0
  4123. docsforge/themes/material/templates/.icons/material/bell-off.svg +1 -0
  4124. docsforge/themes/material/templates/.icons/material/bell-outline.svg +1 -0
  4125. docsforge/themes/material/templates/.icons/material/bell-plus-outline.svg +1 -0
  4126. docsforge/themes/material/templates/.icons/material/bell-plus.svg +1 -0
  4127. docsforge/themes/material/templates/.icons/material/bell-remove-outline.svg +1 -0
  4128. docsforge/themes/material/templates/.icons/material/bell-remove.svg +1 -0
  4129. docsforge/themes/material/templates/.icons/material/bell-ring-outline.svg +1 -0
  4130. docsforge/themes/material/templates/.icons/material/bell-ring.svg +1 -0
  4131. docsforge/themes/material/templates/.icons/material/bell-sleep-outline.svg +1 -0
  4132. docsforge/themes/material/templates/.icons/material/bell-sleep.svg +1 -0
  4133. docsforge/themes/material/templates/.icons/material/bell.svg +1 -0
  4134. docsforge/themes/material/templates/.icons/material/bench-back.svg +1 -0
  4135. docsforge/themes/material/templates/.icons/material/bench.svg +1 -0
  4136. docsforge/themes/material/templates/.icons/material/beta.svg +1 -0
  4137. docsforge/themes/material/templates/.icons/material/betamax.svg +1 -0
  4138. docsforge/themes/material/templates/.icons/material/biathlon.svg +1 -0
  4139. docsforge/themes/material/templates/.icons/material/bicycle-basket.svg +1 -0
  4140. docsforge/themes/material/templates/.icons/material/bicycle-cargo.svg +1 -0
  4141. docsforge/themes/material/templates/.icons/material/bicycle-electric.svg +1 -0
  4142. docsforge/themes/material/templates/.icons/material/bicycle-penny-farthing.svg +1 -0
  4143. docsforge/themes/material/templates/.icons/material/bicycle.svg +1 -0
  4144. docsforge/themes/material/templates/.icons/material/bike-fast.svg +1 -0
  4145. docsforge/themes/material/templates/.icons/material/bike-pedal-clipless.svg +1 -0
  4146. docsforge/themes/material/templates/.icons/material/bike-pedal-mountain.svg +1 -0
  4147. docsforge/themes/material/templates/.icons/material/bike-pedal.svg +1 -0
  4148. docsforge/themes/material/templates/.icons/material/bike.svg +1 -0
  4149. docsforge/themes/material/templates/.icons/material/billboard.svg +1 -0
  4150. docsforge/themes/material/templates/.icons/material/billiards-rack.svg +1 -0
  4151. docsforge/themes/material/templates/.icons/material/billiards.svg +1 -0
  4152. docsforge/themes/material/templates/.icons/material/binoculars.svg +1 -0
  4153. docsforge/themes/material/templates/.icons/material/bio.svg +1 -0
  4154. docsforge/themes/material/templates/.icons/material/biohazard.svg +1 -0
  4155. docsforge/themes/material/templates/.icons/material/bird.svg +1 -0
  4156. docsforge/themes/material/templates/.icons/material/bitbucket.svg +1 -0
  4157. docsforge/themes/material/templates/.icons/material/bitcoin.svg +1 -0
  4158. docsforge/themes/material/templates/.icons/material/black-mesa.svg +1 -0
  4159. docsforge/themes/material/templates/.icons/material/blender-outline.svg +1 -0
  4160. docsforge/themes/material/templates/.icons/material/blender-software.svg +1 -0
  4161. docsforge/themes/material/templates/.icons/material/blender.svg +1 -0
  4162. docsforge/themes/material/templates/.icons/material/blinds-horizontal-closed.svg +1 -0
  4163. docsforge/themes/material/templates/.icons/material/blinds-horizontal.svg +1 -0
  4164. docsforge/themes/material/templates/.icons/material/blinds-open.svg +1 -0
  4165. docsforge/themes/material/templates/.icons/material/blinds-vertical-closed.svg +1 -0
  4166. docsforge/themes/material/templates/.icons/material/blinds-vertical.svg +1 -0
  4167. docsforge/themes/material/templates/.icons/material/blinds.svg +1 -0
  4168. docsforge/themes/material/templates/.icons/material/block-helper.svg +1 -0
  4169. docsforge/themes/material/templates/.icons/material/blood-bag.svg +1 -0
  4170. docsforge/themes/material/templates/.icons/material/bluetooth-audio.svg +1 -0
  4171. docsforge/themes/material/templates/.icons/material/bluetooth-connect.svg +1 -0
  4172. docsforge/themes/material/templates/.icons/material/bluetooth-off.svg +1 -0
  4173. docsforge/themes/material/templates/.icons/material/bluetooth-settings.svg +1 -0
  4174. docsforge/themes/material/templates/.icons/material/bluetooth-transfer.svg +1 -0
  4175. docsforge/themes/material/templates/.icons/material/bluetooth.svg +1 -0
  4176. docsforge/themes/material/templates/.icons/material/blur-linear.svg +1 -0
  4177. docsforge/themes/material/templates/.icons/material/blur-off.svg +1 -0
  4178. docsforge/themes/material/templates/.icons/material/blur-radial.svg +1 -0
  4179. docsforge/themes/material/templates/.icons/material/blur.svg +1 -0
  4180. docsforge/themes/material/templates/.icons/material/bolt.svg +1 -0
  4181. docsforge/themes/material/templates/.icons/material/bomb-off.svg +1 -0
  4182. docsforge/themes/material/templates/.icons/material/bomb.svg +1 -0
  4183. docsforge/themes/material/templates/.icons/material/bone-off.svg +1 -0
  4184. docsforge/themes/material/templates/.icons/material/bone.svg +1 -0
  4185. docsforge/themes/material/templates/.icons/material/book-account-outline.svg +1 -0
  4186. docsforge/themes/material/templates/.icons/material/book-account.svg +1 -0
  4187. docsforge/themes/material/templates/.icons/material/book-alert-outline.svg +1 -0
  4188. docsforge/themes/material/templates/.icons/material/book-alert.svg +1 -0
  4189. docsforge/themes/material/templates/.icons/material/book-alphabet.svg +1 -0
  4190. docsforge/themes/material/templates/.icons/material/book-arrow-down-outline.svg +1 -0
  4191. docsforge/themes/material/templates/.icons/material/book-arrow-down.svg +1 -0
  4192. docsforge/themes/material/templates/.icons/material/book-arrow-left-outline.svg +1 -0
  4193. docsforge/themes/material/templates/.icons/material/book-arrow-left.svg +1 -0
  4194. docsforge/themes/material/templates/.icons/material/book-arrow-right-outline.svg +1 -0
  4195. docsforge/themes/material/templates/.icons/material/book-arrow-right.svg +1 -0
  4196. docsforge/themes/material/templates/.icons/material/book-arrow-up-outline.svg +1 -0
  4197. docsforge/themes/material/templates/.icons/material/book-arrow-up.svg +1 -0
  4198. docsforge/themes/material/templates/.icons/material/book-cancel-outline.svg +1 -0
  4199. docsforge/themes/material/templates/.icons/material/book-cancel.svg +1 -0
  4200. docsforge/themes/material/templates/.icons/material/book-check-outline.svg +1 -0
  4201. docsforge/themes/material/templates/.icons/material/book-check.svg +1 -0
  4202. docsforge/themes/material/templates/.icons/material/book-clock-outline.svg +1 -0
  4203. docsforge/themes/material/templates/.icons/material/book-clock.svg +1 -0
  4204. docsforge/themes/material/templates/.icons/material/book-cog-outline.svg +1 -0
  4205. docsforge/themes/material/templates/.icons/material/book-cog.svg +1 -0
  4206. docsforge/themes/material/templates/.icons/material/book-cross.svg +1 -0
  4207. docsforge/themes/material/templates/.icons/material/book-edit-outline.svg +1 -0
  4208. docsforge/themes/material/templates/.icons/material/book-edit.svg +1 -0
  4209. docsforge/themes/material/templates/.icons/material/book-education-outline.svg +1 -0
  4210. docsforge/themes/material/templates/.icons/material/book-education.svg +1 -0
  4211. docsforge/themes/material/templates/.icons/material/book-heart-outline.svg +1 -0
  4212. docsforge/themes/material/templates/.icons/material/book-heart.svg +1 -0
  4213. docsforge/themes/material/templates/.icons/material/book-information-variant.svg +1 -0
  4214. docsforge/themes/material/templates/.icons/material/book-lock-open-outline.svg +1 -0
  4215. docsforge/themes/material/templates/.icons/material/book-lock-open.svg +1 -0
  4216. docsforge/themes/material/templates/.icons/material/book-lock-outline.svg +1 -0
  4217. docsforge/themes/material/templates/.icons/material/book-lock.svg +1 -0
  4218. docsforge/themes/material/templates/.icons/material/book-marker-outline.svg +1 -0
  4219. docsforge/themes/material/templates/.icons/material/book-marker.svg +1 -0
  4220. docsforge/themes/material/templates/.icons/material/book-minus-multiple-outline.svg +1 -0
  4221. docsforge/themes/material/templates/.icons/material/book-minus-multiple.svg +1 -0
  4222. docsforge/themes/material/templates/.icons/material/book-minus-outline.svg +1 -0
  4223. docsforge/themes/material/templates/.icons/material/book-minus.svg +1 -0
  4224. docsforge/themes/material/templates/.icons/material/book-multiple-outline.svg +1 -0
  4225. docsforge/themes/material/templates/.icons/material/book-multiple.svg +1 -0
  4226. docsforge/themes/material/templates/.icons/material/book-music-outline.svg +1 -0
  4227. docsforge/themes/material/templates/.icons/material/book-music.svg +1 -0
  4228. docsforge/themes/material/templates/.icons/material/book-off-outline.svg +1 -0
  4229. docsforge/themes/material/templates/.icons/material/book-off.svg +1 -0
  4230. docsforge/themes/material/templates/.icons/material/book-open-blank-variant-outline.svg +1 -0
  4231. docsforge/themes/material/templates/.icons/material/book-open-blank-variant.svg +1 -0
  4232. docsforge/themes/material/templates/.icons/material/book-open-outline.svg +1 -0
  4233. docsforge/themes/material/templates/.icons/material/book-open-page-variant-outline.svg +1 -0
  4234. docsforge/themes/material/templates/.icons/material/book-open-page-variant.svg +1 -0
  4235. docsforge/themes/material/templates/.icons/material/book-open-variant-outline.svg +1 -0
  4236. docsforge/themes/material/templates/.icons/material/book-open-variant.svg +1 -0
  4237. docsforge/themes/material/templates/.icons/material/book-open.svg +1 -0
  4238. docsforge/themes/material/templates/.icons/material/book-outline.svg +1 -0
  4239. docsforge/themes/material/templates/.icons/material/book-play-outline.svg +1 -0
  4240. docsforge/themes/material/templates/.icons/material/book-play.svg +1 -0
  4241. docsforge/themes/material/templates/.icons/material/book-plus-multiple-outline.svg +1 -0
  4242. docsforge/themes/material/templates/.icons/material/book-plus-multiple.svg +1 -0
  4243. docsforge/themes/material/templates/.icons/material/book-plus-outline.svg +1 -0
  4244. docsforge/themes/material/templates/.icons/material/book-plus.svg +1 -0
  4245. docsforge/themes/material/templates/.icons/material/book-refresh-outline.svg +1 -0
  4246. docsforge/themes/material/templates/.icons/material/book-refresh.svg +1 -0
  4247. docsforge/themes/material/templates/.icons/material/book-remove-multiple-outline.svg +1 -0
  4248. docsforge/themes/material/templates/.icons/material/book-remove-multiple.svg +1 -0
  4249. docsforge/themes/material/templates/.icons/material/book-remove-outline.svg +1 -0
  4250. docsforge/themes/material/templates/.icons/material/book-remove.svg +1 -0
  4251. docsforge/themes/material/templates/.icons/material/book-search-outline.svg +1 -0
  4252. docsforge/themes/material/templates/.icons/material/book-search.svg +1 -0
  4253. docsforge/themes/material/templates/.icons/material/book-settings-outline.svg +1 -0
  4254. docsforge/themes/material/templates/.icons/material/book-settings.svg +1 -0
  4255. docsforge/themes/material/templates/.icons/material/book-sync-outline.svg +1 -0
  4256. docsforge/themes/material/templates/.icons/material/book-sync.svg +1 -0
  4257. docsforge/themes/material/templates/.icons/material/book-variant.svg +1 -0
  4258. docsforge/themes/material/templates/.icons/material/book.svg +1 -0
  4259. docsforge/themes/material/templates/.icons/material/bookmark-box-multiple-outline.svg +1 -0
  4260. docsforge/themes/material/templates/.icons/material/bookmark-box-multiple.svg +1 -0
  4261. docsforge/themes/material/templates/.icons/material/bookmark-box-outline.svg +1 -0
  4262. docsforge/themes/material/templates/.icons/material/bookmark-box.svg +1 -0
  4263. docsforge/themes/material/templates/.icons/material/bookmark-check-outline.svg +1 -0
  4264. docsforge/themes/material/templates/.icons/material/bookmark-check.svg +1 -0
  4265. docsforge/themes/material/templates/.icons/material/bookmark-minus-outline.svg +1 -0
  4266. docsforge/themes/material/templates/.icons/material/bookmark-minus.svg +1 -0
  4267. docsforge/themes/material/templates/.icons/material/bookmark-multiple-outline.svg +1 -0
  4268. docsforge/themes/material/templates/.icons/material/bookmark-multiple.svg +1 -0
  4269. docsforge/themes/material/templates/.icons/material/bookmark-music-outline.svg +1 -0
  4270. docsforge/themes/material/templates/.icons/material/bookmark-music.svg +1 -0
  4271. docsforge/themes/material/templates/.icons/material/bookmark-off-outline.svg +1 -0
  4272. docsforge/themes/material/templates/.icons/material/bookmark-off.svg +1 -0
  4273. docsforge/themes/material/templates/.icons/material/bookmark-outline.svg +1 -0
  4274. docsforge/themes/material/templates/.icons/material/bookmark-plus-outline.svg +1 -0
  4275. docsforge/themes/material/templates/.icons/material/bookmark-plus.svg +1 -0
  4276. docsforge/themes/material/templates/.icons/material/bookmark-remove-outline.svg +1 -0
  4277. docsforge/themes/material/templates/.icons/material/bookmark-remove.svg +1 -0
  4278. docsforge/themes/material/templates/.icons/material/bookmark.svg +1 -0
  4279. docsforge/themes/material/templates/.icons/material/bookshelf.svg +1 -0
  4280. docsforge/themes/material/templates/.icons/material/boom-gate-alert-outline.svg +1 -0
  4281. docsforge/themes/material/templates/.icons/material/boom-gate-alert.svg +1 -0
  4282. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down-outline.svg +1 -0
  4283. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down.svg +1 -0
  4284. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up-outline.svg +1 -0
  4285. docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up.svg +1 -0
  4286. docsforge/themes/material/templates/.icons/material/boom-gate-outline.svg +1 -0
  4287. docsforge/themes/material/templates/.icons/material/boom-gate-up-outline.svg +1 -0
  4288. docsforge/themes/material/templates/.icons/material/boom-gate-up.svg +1 -0
  4289. docsforge/themes/material/templates/.icons/material/boom-gate.svg +1 -0
  4290. docsforge/themes/material/templates/.icons/material/boombox.svg +1 -0
  4291. docsforge/themes/material/templates/.icons/material/boomerang.svg +1 -0
  4292. docsforge/themes/material/templates/.icons/material/bootstrap.svg +1 -0
  4293. docsforge/themes/material/templates/.icons/material/border-all-variant.svg +1 -0
  4294. docsforge/themes/material/templates/.icons/material/border-all.svg +1 -0
  4295. docsforge/themes/material/templates/.icons/material/border-bottom-variant.svg +1 -0
  4296. docsforge/themes/material/templates/.icons/material/border-bottom.svg +1 -0
  4297. docsforge/themes/material/templates/.icons/material/border-color.svg +1 -0
  4298. docsforge/themes/material/templates/.icons/material/border-horizontal.svg +1 -0
  4299. docsforge/themes/material/templates/.icons/material/border-inside.svg +1 -0
  4300. docsforge/themes/material/templates/.icons/material/border-left-variant.svg +1 -0
  4301. docsforge/themes/material/templates/.icons/material/border-left.svg +1 -0
  4302. docsforge/themes/material/templates/.icons/material/border-none-variant.svg +1 -0
  4303. docsforge/themes/material/templates/.icons/material/border-none.svg +1 -0
  4304. docsforge/themes/material/templates/.icons/material/border-outside.svg +1 -0
  4305. docsforge/themes/material/templates/.icons/material/border-radius.svg +1 -0
  4306. docsforge/themes/material/templates/.icons/material/border-right-variant.svg +1 -0
  4307. docsforge/themes/material/templates/.icons/material/border-right.svg +1 -0
  4308. docsforge/themes/material/templates/.icons/material/border-style.svg +1 -0
  4309. docsforge/themes/material/templates/.icons/material/border-top-variant.svg +1 -0
  4310. docsforge/themes/material/templates/.icons/material/border-top.svg +1 -0
  4311. docsforge/themes/material/templates/.icons/material/border-vertical.svg +1 -0
  4312. docsforge/themes/material/templates/.icons/material/bottle-soda-classic-outline.svg +1 -0
  4313. docsforge/themes/material/templates/.icons/material/bottle-soda-classic.svg +1 -0
  4314. docsforge/themes/material/templates/.icons/material/bottle-soda-outline.svg +1 -0
  4315. docsforge/themes/material/templates/.icons/material/bottle-soda.svg +1 -0
  4316. docsforge/themes/material/templates/.icons/material/bottle-tonic-outline.svg +1 -0
  4317. docsforge/themes/material/templates/.icons/material/bottle-tonic-plus-outline.svg +1 -0
  4318. docsforge/themes/material/templates/.icons/material/bottle-tonic-plus.svg +1 -0
  4319. docsforge/themes/material/templates/.icons/material/bottle-tonic-skull-outline.svg +1 -0
  4320. docsforge/themes/material/templates/.icons/material/bottle-tonic-skull.svg +1 -0
  4321. docsforge/themes/material/templates/.icons/material/bottle-tonic.svg +1 -0
  4322. docsforge/themes/material/templates/.icons/material/bottle-wine-outline.svg +1 -0
  4323. docsforge/themes/material/templates/.icons/material/bottle-wine.svg +1 -0
  4324. docsforge/themes/material/templates/.icons/material/bow-arrow.svg +1 -0
  4325. docsforge/themes/material/templates/.icons/material/bow-tie.svg +1 -0
  4326. docsforge/themes/material/templates/.icons/material/bowl-mix-outline.svg +1 -0
  4327. docsforge/themes/material/templates/.icons/material/bowl-mix.svg +1 -0
  4328. docsforge/themes/material/templates/.icons/material/bowl-outline.svg +1 -0
  4329. docsforge/themes/material/templates/.icons/material/bowl.svg +1 -0
  4330. docsforge/themes/material/templates/.icons/material/bowling.svg +1 -0
  4331. docsforge/themes/material/templates/.icons/material/box-cutter-off.svg +1 -0
  4332. docsforge/themes/material/templates/.icons/material/box-cutter.svg +1 -0
  4333. docsforge/themes/material/templates/.icons/material/box-shadow.svg +1 -0
  4334. docsforge/themes/material/templates/.icons/material/box.svg +1 -0
  4335. docsforge/themes/material/templates/.icons/material/boxing-glove.svg +1 -0
  4336. docsforge/themes/material/templates/.icons/material/braille.svg +1 -0
  4337. docsforge/themes/material/templates/.icons/material/brain.svg +1 -0
  4338. docsforge/themes/material/templates/.icons/material/bread-slice-outline.svg +1 -0
  4339. docsforge/themes/material/templates/.icons/material/bread-slice.svg +1 -0
  4340. docsforge/themes/material/templates/.icons/material/bridge.svg +1 -0
  4341. docsforge/themes/material/templates/.icons/material/briefcase-account-outline.svg +1 -0
  4342. docsforge/themes/material/templates/.icons/material/briefcase-account.svg +1 -0
  4343. docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg +1 -0
  4344. docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right.svg +1 -0
  4345. docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg +1 -0
  4346. docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down.svg +1 -0
  4347. docsforge/themes/material/templates/.icons/material/briefcase-check-outline.svg +1 -0
  4348. docsforge/themes/material/templates/.icons/material/briefcase-check.svg +1 -0
  4349. docsforge/themes/material/templates/.icons/material/briefcase-clock-outline.svg +1 -0
  4350. docsforge/themes/material/templates/.icons/material/briefcase-clock.svg +1 -0
  4351. docsforge/themes/material/templates/.icons/material/briefcase-download-outline.svg +1 -0
  4352. docsforge/themes/material/templates/.icons/material/briefcase-download.svg +1 -0
  4353. docsforge/themes/material/templates/.icons/material/briefcase-edit-outline.svg +1 -0
  4354. docsforge/themes/material/templates/.icons/material/briefcase-edit.svg +1 -0
  4355. docsforge/themes/material/templates/.icons/material/briefcase-eye-outline.svg +1 -0
  4356. docsforge/themes/material/templates/.icons/material/briefcase-eye.svg +1 -0
  4357. docsforge/themes/material/templates/.icons/material/briefcase-minus-outline.svg +1 -0
  4358. docsforge/themes/material/templates/.icons/material/briefcase-minus.svg +1 -0
  4359. docsforge/themes/material/templates/.icons/material/briefcase-off-outline.svg +1 -0
  4360. docsforge/themes/material/templates/.icons/material/briefcase-off.svg +1 -0
  4361. docsforge/themes/material/templates/.icons/material/briefcase-outline.svg +1 -0
  4362. docsforge/themes/material/templates/.icons/material/briefcase-plus-outline.svg +1 -0
  4363. docsforge/themes/material/templates/.icons/material/briefcase-plus.svg +1 -0
  4364. docsforge/themes/material/templates/.icons/material/briefcase-remove-outline.svg +1 -0
  4365. docsforge/themes/material/templates/.icons/material/briefcase-remove.svg +1 -0
  4366. docsforge/themes/material/templates/.icons/material/briefcase-search-outline.svg +1 -0
  4367. docsforge/themes/material/templates/.icons/material/briefcase-search.svg +1 -0
  4368. docsforge/themes/material/templates/.icons/material/briefcase-upload-outline.svg +1 -0
  4369. docsforge/themes/material/templates/.icons/material/briefcase-upload.svg +1 -0
  4370. docsforge/themes/material/templates/.icons/material/briefcase-variant-off-outline.svg +1 -0
  4371. docsforge/themes/material/templates/.icons/material/briefcase-variant-off.svg +1 -0
  4372. docsforge/themes/material/templates/.icons/material/briefcase-variant-outline.svg +1 -0
  4373. docsforge/themes/material/templates/.icons/material/briefcase-variant.svg +1 -0
  4374. docsforge/themes/material/templates/.icons/material/briefcase.svg +1 -0
  4375. docsforge/themes/material/templates/.icons/material/brightness-1.svg +1 -0
  4376. docsforge/themes/material/templates/.icons/material/brightness-2.svg +1 -0
  4377. docsforge/themes/material/templates/.icons/material/brightness-3.svg +1 -0
  4378. docsforge/themes/material/templates/.icons/material/brightness-4.svg +1 -0
  4379. docsforge/themes/material/templates/.icons/material/brightness-5.svg +1 -0
  4380. docsforge/themes/material/templates/.icons/material/brightness-6.svg +1 -0
  4381. docsforge/themes/material/templates/.icons/material/brightness-7.svg +1 -0
  4382. docsforge/themes/material/templates/.icons/material/brightness-auto.svg +1 -0
  4383. docsforge/themes/material/templates/.icons/material/brightness-percent.svg +1 -0
  4384. docsforge/themes/material/templates/.icons/material/broadcast-off.svg +1 -0
  4385. docsforge/themes/material/templates/.icons/material/broadcast.svg +1 -0
  4386. docsforge/themes/material/templates/.icons/material/broom.svg +1 -0
  4387. docsforge/themes/material/templates/.icons/material/brush-off.svg +1 -0
  4388. docsforge/themes/material/templates/.icons/material/brush-outline.svg +1 -0
  4389. docsforge/themes/material/templates/.icons/material/brush-variant.svg +1 -0
  4390. docsforge/themes/material/templates/.icons/material/brush.svg +1 -0
  4391. docsforge/themes/material/templates/.icons/material/bucket-outline.svg +1 -0
  4392. docsforge/themes/material/templates/.icons/material/bucket.svg +1 -0
  4393. docsforge/themes/material/templates/.icons/material/buffet.svg +1 -0
  4394. docsforge/themes/material/templates/.icons/material/bug-check-outline.svg +1 -0
  4395. docsforge/themes/material/templates/.icons/material/bug-check.svg +1 -0
  4396. docsforge/themes/material/templates/.icons/material/bug-outline.svg +1 -0
  4397. docsforge/themes/material/templates/.icons/material/bug-pause-outline.svg +1 -0
  4398. docsforge/themes/material/templates/.icons/material/bug-pause.svg +1 -0
  4399. docsforge/themes/material/templates/.icons/material/bug-play-outline.svg +1 -0
  4400. docsforge/themes/material/templates/.icons/material/bug-play.svg +1 -0
  4401. docsforge/themes/material/templates/.icons/material/bug-stop-outline.svg +1 -0
  4402. docsforge/themes/material/templates/.icons/material/bug-stop.svg +1 -0
  4403. docsforge/themes/material/templates/.icons/material/bug.svg +1 -0
  4404. docsforge/themes/material/templates/.icons/material/bugle.svg +1 -0
  4405. docsforge/themes/material/templates/.icons/material/bulkhead-light.svg +1 -0
  4406. docsforge/themes/material/templates/.icons/material/bulldozer.svg +1 -0
  4407. docsforge/themes/material/templates/.icons/material/bullet.svg +1 -0
  4408. docsforge/themes/material/templates/.icons/material/bulletin-board.svg +1 -0
  4409. docsforge/themes/material/templates/.icons/material/bullhorn-outline.svg +1 -0
  4410. docsforge/themes/material/templates/.icons/material/bullhorn-variant-outline.svg +1 -0
  4411. docsforge/themes/material/templates/.icons/material/bullhorn-variant.svg +1 -0
  4412. docsforge/themes/material/templates/.icons/material/bullhorn.svg +1 -0
  4413. docsforge/themes/material/templates/.icons/material/bullseye-arrow.svg +1 -0
  4414. docsforge/themes/material/templates/.icons/material/bullseye.svg +1 -0
  4415. docsforge/themes/material/templates/.icons/material/bulma.svg +1 -0
  4416. docsforge/themes/material/templates/.icons/material/bunk-bed-outline.svg +1 -0
  4417. docsforge/themes/material/templates/.icons/material/bunk-bed.svg +1 -0
  4418. docsforge/themes/material/templates/.icons/material/bus-alert.svg +1 -0
  4419. docsforge/themes/material/templates/.icons/material/bus-articulated-end.svg +1 -0
  4420. docsforge/themes/material/templates/.icons/material/bus-articulated-front.svg +1 -0
  4421. docsforge/themes/material/templates/.icons/material/bus-clock.svg +1 -0
  4422. docsforge/themes/material/templates/.icons/material/bus-double-decker.svg +1 -0
  4423. docsforge/themes/material/templates/.icons/material/bus-electric.svg +1 -0
  4424. docsforge/themes/material/templates/.icons/material/bus-marker.svg +1 -0
  4425. docsforge/themes/material/templates/.icons/material/bus-multiple.svg +1 -0
  4426. docsforge/themes/material/templates/.icons/material/bus-school.svg +1 -0
  4427. docsforge/themes/material/templates/.icons/material/bus-side.svg +1 -0
  4428. docsforge/themes/material/templates/.icons/material/bus-sign.svg +1 -0
  4429. docsforge/themes/material/templates/.icons/material/bus-stop-covered.svg +1 -0
  4430. docsforge/themes/material/templates/.icons/material/bus-stop-uncovered.svg +1 -0
  4431. docsforge/themes/material/templates/.icons/material/bus-stop.svg +1 -0
  4432. docsforge/themes/material/templates/.icons/material/bus-wrench.svg +1 -0
  4433. docsforge/themes/material/templates/.icons/material/bus.svg +1 -0
  4434. docsforge/themes/material/templates/.icons/material/butterfly-outline.svg +1 -0
  4435. docsforge/themes/material/templates/.icons/material/butterfly.svg +1 -0
  4436. docsforge/themes/material/templates/.icons/material/button-cursor.svg +1 -0
  4437. docsforge/themes/material/templates/.icons/material/button-pointer.svg +1 -0
  4438. docsforge/themes/material/templates/.icons/material/cabin-a-frame.svg +1 -0
  4439. docsforge/themes/material/templates/.icons/material/cable-data.svg +1 -0
  4440. docsforge/themes/material/templates/.icons/material/cached.svg +1 -0
  4441. docsforge/themes/material/templates/.icons/material/cactus.svg +1 -0
  4442. docsforge/themes/material/templates/.icons/material/cake-layered.svg +1 -0
  4443. docsforge/themes/material/templates/.icons/material/cake-variant-outline.svg +1 -0
  4444. docsforge/themes/material/templates/.icons/material/cake-variant.svg +1 -0
  4445. docsforge/themes/material/templates/.icons/material/cake.svg +1 -0
  4446. docsforge/themes/material/templates/.icons/material/calculator-variant-outline.svg +1 -0
  4447. docsforge/themes/material/templates/.icons/material/calculator-variant.svg +1 -0
  4448. docsforge/themes/material/templates/.icons/material/calculator.svg +1 -0
  4449. docsforge/themes/material/templates/.icons/material/calendar-account-outline.svg +1 -0
  4450. docsforge/themes/material/templates/.icons/material/calendar-account.svg +1 -0
  4451. docsforge/themes/material/templates/.icons/material/calendar-alert-outline.svg +1 -0
  4452. docsforge/themes/material/templates/.icons/material/calendar-alert.svg +1 -0
  4453. docsforge/themes/material/templates/.icons/material/calendar-arrow-left.svg +1 -0
  4454. docsforge/themes/material/templates/.icons/material/calendar-arrow-right.svg +1 -0
  4455. docsforge/themes/material/templates/.icons/material/calendar-badge-outline.svg +1 -0
  4456. docsforge/themes/material/templates/.icons/material/calendar-badge.svg +1 -0
  4457. docsforge/themes/material/templates/.icons/material/calendar-blank-multiple.svg +1 -0
  4458. docsforge/themes/material/templates/.icons/material/calendar-blank-outline.svg +1 -0
  4459. docsforge/themes/material/templates/.icons/material/calendar-blank.svg +1 -0
  4460. docsforge/themes/material/templates/.icons/material/calendar-check-outline.svg +1 -0
  4461. docsforge/themes/material/templates/.icons/material/calendar-check.svg +1 -0
  4462. docsforge/themes/material/templates/.icons/material/calendar-clock-outline.svg +1 -0
  4463. docsforge/themes/material/templates/.icons/material/calendar-clock.svg +1 -0
  4464. docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg +1 -0
  4465. docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal.svg +1 -0
  4466. docsforge/themes/material/templates/.icons/material/calendar-cursor-outline.svg +1 -0
  4467. docsforge/themes/material/templates/.icons/material/calendar-cursor.svg +1 -0
  4468. docsforge/themes/material/templates/.icons/material/calendar-edit-outline.svg +1 -0
  4469. docsforge/themes/material/templates/.icons/material/calendar-edit.svg +1 -0
  4470. docsforge/themes/material/templates/.icons/material/calendar-end-outline.svg +1 -0
  4471. docsforge/themes/material/templates/.icons/material/calendar-end.svg +1 -0
  4472. docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal-outline.svg +1 -0
  4473. docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal.svg +1 -0
  4474. docsforge/themes/material/templates/.icons/material/calendar-export-outline.svg +1 -0
  4475. docsforge/themes/material/templates/.icons/material/calendar-export.svg +1 -0
  4476. docsforge/themes/material/templates/.icons/material/calendar-filter-outline.svg +1 -0
  4477. docsforge/themes/material/templates/.icons/material/calendar-filter.svg +1 -0
  4478. docsforge/themes/material/templates/.icons/material/calendar-heart-outline.svg +1 -0
  4479. docsforge/themes/material/templates/.icons/material/calendar-heart.svg +1 -0
  4480. docsforge/themes/material/templates/.icons/material/calendar-import-outline.svg +1 -0
  4481. docsforge/themes/material/templates/.icons/material/calendar-import.svg +1 -0
  4482. docsforge/themes/material/templates/.icons/material/calendar-lock-open-outline.svg +1 -0
  4483. docsforge/themes/material/templates/.icons/material/calendar-lock-open.svg +1 -0
  4484. docsforge/themes/material/templates/.icons/material/calendar-lock-outline.svg +1 -0
  4485. docsforge/themes/material/templates/.icons/material/calendar-lock.svg +1 -0
  4486. docsforge/themes/material/templates/.icons/material/calendar-minus-outline.svg +1 -0
  4487. docsforge/themes/material/templates/.icons/material/calendar-minus.svg +1 -0
  4488. docsforge/themes/material/templates/.icons/material/calendar-month-outline.svg +1 -0
  4489. docsforge/themes/material/templates/.icons/material/calendar-month.svg +1 -0
  4490. docsforge/themes/material/templates/.icons/material/calendar-multiple-check.svg +1 -0
  4491. docsforge/themes/material/templates/.icons/material/calendar-multiple.svg +1 -0
  4492. docsforge/themes/material/templates/.icons/material/calendar-multiselect-outline.svg +1 -0
  4493. docsforge/themes/material/templates/.icons/material/calendar-multiselect.svg +1 -0
  4494. docsforge/themes/material/templates/.icons/material/calendar-outline.svg +1 -0
  4495. docsforge/themes/material/templates/.icons/material/calendar-plus-outline.svg +1 -0
  4496. docsforge/themes/material/templates/.icons/material/calendar-plus.svg +1 -0
  4497. docsforge/themes/material/templates/.icons/material/calendar-question-outline.svg +1 -0
  4498. docsforge/themes/material/templates/.icons/material/calendar-question.svg +1 -0
  4499. docsforge/themes/material/templates/.icons/material/calendar-range-outline.svg +1 -0
  4500. docsforge/themes/material/templates/.icons/material/calendar-range.svg +1 -0
  4501. docsforge/themes/material/templates/.icons/material/calendar-refresh-outline.svg +1 -0
  4502. docsforge/themes/material/templates/.icons/material/calendar-refresh.svg +1 -0
  4503. docsforge/themes/material/templates/.icons/material/calendar-remove-outline.svg +1 -0
  4504. docsforge/themes/material/templates/.icons/material/calendar-remove.svg +1 -0
  4505. docsforge/themes/material/templates/.icons/material/calendar-search-outline.svg +1 -0
  4506. docsforge/themes/material/templates/.icons/material/calendar-search.svg +1 -0
  4507. docsforge/themes/material/templates/.icons/material/calendar-star-four-points.svg +1 -0
  4508. docsforge/themes/material/templates/.icons/material/calendar-star-outline.svg +1 -0
  4509. docsforge/themes/material/templates/.icons/material/calendar-star.svg +1 -0
  4510. docsforge/themes/material/templates/.icons/material/calendar-start-outline.svg +1 -0
  4511. docsforge/themes/material/templates/.icons/material/calendar-start.svg +1 -0
  4512. docsforge/themes/material/templates/.icons/material/calendar-sync-outline.svg +1 -0
  4513. docsforge/themes/material/templates/.icons/material/calendar-sync.svg +1 -0
  4514. docsforge/themes/material/templates/.icons/material/calendar-text-outline.svg +1 -0
  4515. docsforge/themes/material/templates/.icons/material/calendar-text.svg +1 -0
  4516. docsforge/themes/material/templates/.icons/material/calendar-today-outline.svg +1 -0
  4517. docsforge/themes/material/templates/.icons/material/calendar-today.svg +1 -0
  4518. docsforge/themes/material/templates/.icons/material/calendar-week-begin-outline.svg +1 -0
  4519. docsforge/themes/material/templates/.icons/material/calendar-week-begin.svg +1 -0
  4520. docsforge/themes/material/templates/.icons/material/calendar-week-outline.svg +1 -0
  4521. docsforge/themes/material/templates/.icons/material/calendar-week.svg +1 -0
  4522. docsforge/themes/material/templates/.icons/material/calendar-weekend-outline.svg +1 -0
  4523. docsforge/themes/material/templates/.icons/material/calendar-weekend.svg +1 -0
  4524. docsforge/themes/material/templates/.icons/material/calendar.svg +1 -0
  4525. docsforge/themes/material/templates/.icons/material/call-made.svg +1 -0
  4526. docsforge/themes/material/templates/.icons/material/call-merge.svg +1 -0
  4527. docsforge/themes/material/templates/.icons/material/call-missed.svg +1 -0
  4528. docsforge/themes/material/templates/.icons/material/call-received.svg +1 -0
  4529. docsforge/themes/material/templates/.icons/material/call-split.svg +1 -0
  4530. docsforge/themes/material/templates/.icons/material/camcorder-off.svg +1 -0
  4531. docsforge/themes/material/templates/.icons/material/camcorder.svg +1 -0
  4532. docsforge/themes/material/templates/.icons/material/camera-account.svg +1 -0
  4533. docsforge/themes/material/templates/.icons/material/camera-burst.svg +1 -0
  4534. docsforge/themes/material/templates/.icons/material/camera-control.svg +1 -0
  4535. docsforge/themes/material/templates/.icons/material/camera-document-off.svg +1 -0
  4536. docsforge/themes/material/templates/.icons/material/camera-document.svg +1 -0
  4537. docsforge/themes/material/templates/.icons/material/camera-enhance-outline.svg +1 -0
  4538. docsforge/themes/material/templates/.icons/material/camera-enhance.svg +1 -0
  4539. docsforge/themes/material/templates/.icons/material/camera-flip-outline.svg +1 -0
  4540. docsforge/themes/material/templates/.icons/material/camera-flip.svg +1 -0
  4541. docsforge/themes/material/templates/.icons/material/camera-front-variant.svg +1 -0
  4542. docsforge/themes/material/templates/.icons/material/camera-front.svg +1 -0
  4543. docsforge/themes/material/templates/.icons/material/camera-gopro.svg +1 -0
  4544. docsforge/themes/material/templates/.icons/material/camera-image.svg +1 -0
  4545. docsforge/themes/material/templates/.icons/material/camera-iris.svg +1 -0
  4546. docsforge/themes/material/templates/.icons/material/camera-lock-open-outline.svg +1 -0
  4547. docsforge/themes/material/templates/.icons/material/camera-lock-open.svg +1 -0
  4548. docsforge/themes/material/templates/.icons/material/camera-lock-outline.svg +1 -0
  4549. docsforge/themes/material/templates/.icons/material/camera-lock.svg +1 -0
  4550. docsforge/themes/material/templates/.icons/material/camera-marker-outline.svg +1 -0
  4551. docsforge/themes/material/templates/.icons/material/camera-marker.svg +1 -0
  4552. docsforge/themes/material/templates/.icons/material/camera-metering-center.svg +1 -0
  4553. docsforge/themes/material/templates/.icons/material/camera-metering-matrix.svg +1 -0
  4554. docsforge/themes/material/templates/.icons/material/camera-metering-partial.svg +1 -0
  4555. docsforge/themes/material/templates/.icons/material/camera-metering-spot.svg +1 -0
  4556. docsforge/themes/material/templates/.icons/material/camera-off-outline.svg +1 -0
  4557. docsforge/themes/material/templates/.icons/material/camera-off.svg +1 -0
  4558. docsforge/themes/material/templates/.icons/material/camera-outline.svg +1 -0
  4559. docsforge/themes/material/templates/.icons/material/camera-party-mode.svg +1 -0
  4560. docsforge/themes/material/templates/.icons/material/camera-plus-outline.svg +1 -0
  4561. docsforge/themes/material/templates/.icons/material/camera-plus.svg +1 -0
  4562. docsforge/themes/material/templates/.icons/material/camera-rear-variant.svg +1 -0
  4563. docsforge/themes/material/templates/.icons/material/camera-rear.svg +1 -0
  4564. docsforge/themes/material/templates/.icons/material/camera-retake-outline.svg +1 -0
  4565. docsforge/themes/material/templates/.icons/material/camera-retake.svg +1 -0
  4566. docsforge/themes/material/templates/.icons/material/camera-switch-outline.svg +1 -0
  4567. docsforge/themes/material/templates/.icons/material/camera-switch.svg +1 -0
  4568. docsforge/themes/material/templates/.icons/material/camera-timer.svg +1 -0
  4569. docsforge/themes/material/templates/.icons/material/camera-wireless-outline.svg +1 -0
  4570. docsforge/themes/material/templates/.icons/material/camera-wireless.svg +1 -0
  4571. docsforge/themes/material/templates/.icons/material/camera.svg +1 -0
  4572. docsforge/themes/material/templates/.icons/material/campfire.svg +1 -0
  4573. docsforge/themes/material/templates/.icons/material/cancel.svg +1 -0
  4574. docsforge/themes/material/templates/.icons/material/candelabra-fire.svg +1 -0
  4575. docsforge/themes/material/templates/.icons/material/candelabra.svg +1 -0
  4576. docsforge/themes/material/templates/.icons/material/candle.svg +1 -0
  4577. docsforge/themes/material/templates/.icons/material/candy-off-outline.svg +1 -0
  4578. docsforge/themes/material/templates/.icons/material/candy-off.svg +1 -0
  4579. docsforge/themes/material/templates/.icons/material/candy-outline.svg +1 -0
  4580. docsforge/themes/material/templates/.icons/material/candy.svg +1 -0
  4581. docsforge/themes/material/templates/.icons/material/candycane.svg +1 -0
  4582. docsforge/themes/material/templates/.icons/material/cannabis-off.svg +1 -0
  4583. docsforge/themes/material/templates/.icons/material/cannabis.svg +1 -0
  4584. docsforge/themes/material/templates/.icons/material/caps-lock.svg +1 -0
  4585. docsforge/themes/material/templates/.icons/material/car-2-plus.svg +1 -0
  4586. docsforge/themes/material/templates/.icons/material/car-3-plus.svg +1 -0
  4587. docsforge/themes/material/templates/.icons/material/car-arrow-left.svg +1 -0
  4588. docsforge/themes/material/templates/.icons/material/car-arrow-right.svg +1 -0
  4589. docsforge/themes/material/templates/.icons/material/car-back.svg +1 -0
  4590. docsforge/themes/material/templates/.icons/material/car-battery.svg +1 -0
  4591. docsforge/themes/material/templates/.icons/material/car-brake-abs.svg +1 -0
  4592. docsforge/themes/material/templates/.icons/material/car-brake-alert.svg +1 -0
  4593. docsforge/themes/material/templates/.icons/material/car-brake-fluid-level.svg +1 -0
  4594. docsforge/themes/material/templates/.icons/material/car-brake-hold.svg +1 -0
  4595. docsforge/themes/material/templates/.icons/material/car-brake-low-pressure.svg +1 -0
  4596. docsforge/themes/material/templates/.icons/material/car-brake-parking.svg +1 -0
  4597. docsforge/themes/material/templates/.icons/material/car-brake-retarder.svg +1 -0
  4598. docsforge/themes/material/templates/.icons/material/car-brake-temperature.svg +1 -0
  4599. docsforge/themes/material/templates/.icons/material/car-brake-worn-linings.svg +1 -0
  4600. docsforge/themes/material/templates/.icons/material/car-child-seat.svg +1 -0
  4601. docsforge/themes/material/templates/.icons/material/car-clock.svg +1 -0
  4602. docsforge/themes/material/templates/.icons/material/car-clutch.svg +1 -0
  4603. docsforge/themes/material/templates/.icons/material/car-cog.svg +1 -0
  4604. docsforge/themes/material/templates/.icons/material/car-connected.svg +1 -0
  4605. docsforge/themes/material/templates/.icons/material/car-convertible.svg +1 -0
  4606. docsforge/themes/material/templates/.icons/material/car-coolant-level.svg +1 -0
  4607. docsforge/themes/material/templates/.icons/material/car-cruise-control.svg +1 -0
  4608. docsforge/themes/material/templates/.icons/material/car-defrost-front.svg +1 -0
  4609. docsforge/themes/material/templates/.icons/material/car-defrost-rear.svg +1 -0
  4610. docsforge/themes/material/templates/.icons/material/car-door-lock-open.svg +1 -0
  4611. docsforge/themes/material/templates/.icons/material/car-door-lock.svg +1 -0
  4612. docsforge/themes/material/templates/.icons/material/car-door.svg +1 -0
  4613. docsforge/themes/material/templates/.icons/material/car-electric-outline.svg +1 -0
  4614. docsforge/themes/material/templates/.icons/material/car-electric.svg +1 -0
  4615. docsforge/themes/material/templates/.icons/material/car-emergency.svg +1 -0
  4616. docsforge/themes/material/templates/.icons/material/car-esp.svg +1 -0
  4617. docsforge/themes/material/templates/.icons/material/car-estate.svg +1 -0
  4618. docsforge/themes/material/templates/.icons/material/car-hatchback.svg +1 -0
  4619. docsforge/themes/material/templates/.icons/material/car-info.svg +1 -0
  4620. docsforge/themes/material/templates/.icons/material/car-key.svg +1 -0
  4621. docsforge/themes/material/templates/.icons/material/car-lifted-pickup.svg +1 -0
  4622. docsforge/themes/material/templates/.icons/material/car-light-alert.svg +1 -0
  4623. docsforge/themes/material/templates/.icons/material/car-light-dimmed.svg +1 -0
  4624. docsforge/themes/material/templates/.icons/material/car-light-fog.svg +1 -0
  4625. docsforge/themes/material/templates/.icons/material/car-light-high.svg +1 -0
  4626. docsforge/themes/material/templates/.icons/material/car-limousine.svg +1 -0
  4627. docsforge/themes/material/templates/.icons/material/car-multiple.svg +1 -0
  4628. docsforge/themes/material/templates/.icons/material/car-off.svg +1 -0
  4629. docsforge/themes/material/templates/.icons/material/car-outline.svg +1 -0
  4630. docsforge/themes/material/templates/.icons/material/car-parking-lights.svg +1 -0
  4631. docsforge/themes/material/templates/.icons/material/car-pickup.svg +1 -0
  4632. docsforge/themes/material/templates/.icons/material/car-search-outline.svg +1 -0
  4633. docsforge/themes/material/templates/.icons/material/car-search.svg +1 -0
  4634. docsforge/themes/material/templates/.icons/material/car-seat-cooler.svg +1 -0
  4635. docsforge/themes/material/templates/.icons/material/car-seat-heater.svg +1 -0
  4636. docsforge/themes/material/templates/.icons/material/car-seat.svg +1 -0
  4637. docsforge/themes/material/templates/.icons/material/car-select.svg +1 -0
  4638. docsforge/themes/material/templates/.icons/material/car-settings.svg +1 -0
  4639. docsforge/themes/material/templates/.icons/material/car-shift-pattern.svg +1 -0
  4640. docsforge/themes/material/templates/.icons/material/car-side.svg +1 -0
  4641. docsforge/themes/material/templates/.icons/material/car-speed-limiter.svg +1 -0
  4642. docsforge/themes/material/templates/.icons/material/car-sports.svg +1 -0
  4643. docsforge/themes/material/templates/.icons/material/car-tire-alert.svg +1 -0
  4644. docsforge/themes/material/templates/.icons/material/car-traction-control.svg +1 -0
  4645. docsforge/themes/material/templates/.icons/material/car-turbocharger.svg +1 -0
  4646. docsforge/themes/material/templates/.icons/material/car-wash.svg +1 -0
  4647. docsforge/themes/material/templates/.icons/material/car-windshield-outline.svg +1 -0
  4648. docsforge/themes/material/templates/.icons/material/car-windshield.svg +1 -0
  4649. docsforge/themes/material/templates/.icons/material/car-wireless.svg +1 -0
  4650. docsforge/themes/material/templates/.icons/material/car-wrench.svg +1 -0
  4651. docsforge/themes/material/templates/.icons/material/car.svg +1 -0
  4652. docsforge/themes/material/templates/.icons/material/carabiner.svg +1 -0
  4653. docsforge/themes/material/templates/.icons/material/caravan.svg +1 -0
  4654. docsforge/themes/material/templates/.icons/material/card-account-details-outline.svg +1 -0
  4655. docsforge/themes/material/templates/.icons/material/card-account-details-star-outline.svg +1 -0
  4656. docsforge/themes/material/templates/.icons/material/card-account-details-star.svg +1 -0
  4657. docsforge/themes/material/templates/.icons/material/card-account-details.svg +1 -0
  4658. docsforge/themes/material/templates/.icons/material/card-account-mail-outline.svg +1 -0
  4659. docsforge/themes/material/templates/.icons/material/card-account-mail.svg +1 -0
  4660. docsforge/themes/material/templates/.icons/material/card-account-phone-outline.svg +1 -0
  4661. docsforge/themes/material/templates/.icons/material/card-account-phone.svg +1 -0
  4662. docsforge/themes/material/templates/.icons/material/card-bulleted-off-outline.svg +1 -0
  4663. docsforge/themes/material/templates/.icons/material/card-bulleted-off.svg +1 -0
  4664. docsforge/themes/material/templates/.icons/material/card-bulleted-outline.svg +1 -0
  4665. docsforge/themes/material/templates/.icons/material/card-bulleted-settings-outline.svg +1 -0
  4666. docsforge/themes/material/templates/.icons/material/card-bulleted-settings.svg +1 -0
  4667. docsforge/themes/material/templates/.icons/material/card-bulleted.svg +1 -0
  4668. docsforge/themes/material/templates/.icons/material/card-minus-outline.svg +1 -0
  4669. docsforge/themes/material/templates/.icons/material/card-minus.svg +1 -0
  4670. docsforge/themes/material/templates/.icons/material/card-multiple-outline.svg +1 -0
  4671. docsforge/themes/material/templates/.icons/material/card-multiple.svg +1 -0
  4672. docsforge/themes/material/templates/.icons/material/card-off-outline.svg +1 -0
  4673. docsforge/themes/material/templates/.icons/material/card-off.svg +1 -0
  4674. docsforge/themes/material/templates/.icons/material/card-outline.svg +1 -0
  4675. docsforge/themes/material/templates/.icons/material/card-plus-outline.svg +1 -0
  4676. docsforge/themes/material/templates/.icons/material/card-plus.svg +1 -0
  4677. docsforge/themes/material/templates/.icons/material/card-remove-outline.svg +1 -0
  4678. docsforge/themes/material/templates/.icons/material/card-remove.svg +1 -0
  4679. docsforge/themes/material/templates/.icons/material/card-search-outline.svg +1 -0
  4680. docsforge/themes/material/templates/.icons/material/card-search.svg +1 -0
  4681. docsforge/themes/material/templates/.icons/material/card-text-outline.svg +1 -0
  4682. docsforge/themes/material/templates/.icons/material/card-text.svg +1 -0
  4683. docsforge/themes/material/templates/.icons/material/card.svg +1 -0
  4684. docsforge/themes/material/templates/.icons/material/cards-club-outline.svg +1 -0
  4685. docsforge/themes/material/templates/.icons/material/cards-club.svg +1 -0
  4686. docsforge/themes/material/templates/.icons/material/cards-diamond-outline.svg +1 -0
  4687. docsforge/themes/material/templates/.icons/material/cards-diamond.svg +1 -0
  4688. docsforge/themes/material/templates/.icons/material/cards-heart-outline.svg +1 -0
  4689. docsforge/themes/material/templates/.icons/material/cards-heart.svg +1 -0
  4690. docsforge/themes/material/templates/.icons/material/cards-outline.svg +1 -0
  4691. docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple-outline.svg +1 -0
  4692. docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple.svg +1 -0
  4693. docsforge/themes/material/templates/.icons/material/cards-playing-club-outline.svg +1 -0
  4694. docsforge/themes/material/templates/.icons/material/cards-playing-club.svg +1 -0
  4695. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg +1 -0
  4696. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple.svg +1 -0
  4697. docsforge/themes/material/templates/.icons/material/cards-playing-diamond-outline.svg +1 -0
  4698. docsforge/themes/material/templates/.icons/material/cards-playing-diamond.svg +1 -0
  4699. docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg +1 -0
  4700. docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple.svg +1 -0
  4701. docsforge/themes/material/templates/.icons/material/cards-playing-heart-outline.svg +1 -0
  4702. docsforge/themes/material/templates/.icons/material/cards-playing-heart.svg +1 -0
  4703. docsforge/themes/material/templates/.icons/material/cards-playing-outline.svg +1 -0
  4704. docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg +1 -0
  4705. docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple.svg +1 -0
  4706. docsforge/themes/material/templates/.icons/material/cards-playing-spade-outline.svg +1 -0
  4707. docsforge/themes/material/templates/.icons/material/cards-playing-spade.svg +1 -0
  4708. docsforge/themes/material/templates/.icons/material/cards-playing.svg +1 -0
  4709. docsforge/themes/material/templates/.icons/material/cards-spade-outline.svg +1 -0
  4710. docsforge/themes/material/templates/.icons/material/cards-spade.svg +1 -0
  4711. docsforge/themes/material/templates/.icons/material/cards-variant.svg +1 -0
  4712. docsforge/themes/material/templates/.icons/material/cards.svg +1 -0
  4713. docsforge/themes/material/templates/.icons/material/carrot.svg +1 -0
  4714. docsforge/themes/material/templates/.icons/material/cart-arrow-down.svg +1 -0
  4715. docsforge/themes/material/templates/.icons/material/cart-arrow-right.svg +1 -0
  4716. docsforge/themes/material/templates/.icons/material/cart-arrow-up.svg +1 -0
  4717. docsforge/themes/material/templates/.icons/material/cart-check.svg +1 -0
  4718. docsforge/themes/material/templates/.icons/material/cart-heart.svg +1 -0
  4719. docsforge/themes/material/templates/.icons/material/cart-minus.svg +1 -0
  4720. docsforge/themes/material/templates/.icons/material/cart-off.svg +1 -0
  4721. docsforge/themes/material/templates/.icons/material/cart-outline.svg +1 -0
  4722. docsforge/themes/material/templates/.icons/material/cart-percent.svg +1 -0
  4723. docsforge/themes/material/templates/.icons/material/cart-plus.svg +1 -0
  4724. docsforge/themes/material/templates/.icons/material/cart-remove.svg +1 -0
  4725. docsforge/themes/material/templates/.icons/material/cart-variant.svg +1 -0
  4726. docsforge/themes/material/templates/.icons/material/cart.svg +1 -0
  4727. docsforge/themes/material/templates/.icons/material/case-sensitive-alt.svg +1 -0
  4728. docsforge/themes/material/templates/.icons/material/cash-100.svg +1 -0
  4729. docsforge/themes/material/templates/.icons/material/cash-check.svg +1 -0
  4730. docsforge/themes/material/templates/.icons/material/cash-clock.svg +1 -0
  4731. docsforge/themes/material/templates/.icons/material/cash-edit.svg +1 -0
  4732. docsforge/themes/material/templates/.icons/material/cash-fast.svg +1 -0
  4733. docsforge/themes/material/templates/.icons/material/cash-lock-open.svg +1 -0
  4734. docsforge/themes/material/templates/.icons/material/cash-lock.svg +1 -0
  4735. docsforge/themes/material/templates/.icons/material/cash-marker.svg +1 -0
  4736. docsforge/themes/material/templates/.icons/material/cash-minus.svg +1 -0
  4737. docsforge/themes/material/templates/.icons/material/cash-multiple.svg +1 -0
  4738. docsforge/themes/material/templates/.icons/material/cash-off.svg +1 -0
  4739. docsforge/themes/material/templates/.icons/material/cash-plus.svg +1 -0
  4740. docsforge/themes/material/templates/.icons/material/cash-refund.svg +1 -0
  4741. docsforge/themes/material/templates/.icons/material/cash-register.svg +1 -0
  4742. docsforge/themes/material/templates/.icons/material/cash-remove.svg +1 -0
  4743. docsforge/themes/material/templates/.icons/material/cash-sync.svg +1 -0
  4744. docsforge/themes/material/templates/.icons/material/cash.svg +1 -0
  4745. docsforge/themes/material/templates/.icons/material/cassette.svg +1 -0
  4746. docsforge/themes/material/templates/.icons/material/cast-audio-variant.svg +1 -0
  4747. docsforge/themes/material/templates/.icons/material/cast-audio.svg +1 -0
  4748. docsforge/themes/material/templates/.icons/material/cast-connected.svg +1 -0
  4749. docsforge/themes/material/templates/.icons/material/cast-education.svg +1 -0
  4750. docsforge/themes/material/templates/.icons/material/cast-off.svg +1 -0
  4751. docsforge/themes/material/templates/.icons/material/cast-variant.svg +1 -0
  4752. docsforge/themes/material/templates/.icons/material/cast.svg +1 -0
  4753. docsforge/themes/material/templates/.icons/material/castle.svg +1 -0
  4754. docsforge/themes/material/templates/.icons/material/cat.svg +1 -0
  4755. docsforge/themes/material/templates/.icons/material/cctv-off.svg +1 -0
  4756. docsforge/themes/material/templates/.icons/material/cctv.svg +1 -0
  4757. docsforge/themes/material/templates/.icons/material/ceiling-fan-light.svg +1 -0
  4758. docsforge/themes/material/templates/.icons/material/ceiling-fan.svg +1 -0
  4759. docsforge/themes/material/templates/.icons/material/ceiling-light-multiple-outline.svg +1 -0
  4760. docsforge/themes/material/templates/.icons/material/ceiling-light-multiple.svg +1 -0
  4761. docsforge/themes/material/templates/.icons/material/ceiling-light-outline.svg +1 -0
  4762. docsforge/themes/material/templates/.icons/material/ceiling-light.svg +1 -0
  4763. docsforge/themes/material/templates/.icons/material/cellphone-arrow-down-variant.svg +1 -0
  4764. docsforge/themes/material/templates/.icons/material/cellphone-arrow-down.svg +1 -0
  4765. docsforge/themes/material/templates/.icons/material/cellphone-basic.svg +1 -0
  4766. docsforge/themes/material/templates/.icons/material/cellphone-charging.svg +1 -0
  4767. docsforge/themes/material/templates/.icons/material/cellphone-check.svg +1 -0
  4768. docsforge/themes/material/templates/.icons/material/cellphone-cog.svg +1 -0
  4769. docsforge/themes/material/templates/.icons/material/cellphone-dock.svg +1 -0
  4770. docsforge/themes/material/templates/.icons/material/cellphone-information.svg +1 -0
  4771. docsforge/themes/material/templates/.icons/material/cellphone-key.svg +1 -0
  4772. docsforge/themes/material/templates/.icons/material/cellphone-link-off.svg +1 -0
  4773. docsforge/themes/material/templates/.icons/material/cellphone-link.svg +1 -0
  4774. docsforge/themes/material/templates/.icons/material/cellphone-lock.svg +1 -0
  4775. docsforge/themes/material/templates/.icons/material/cellphone-marker.svg +1 -0
  4776. docsforge/themes/material/templates/.icons/material/cellphone-message-off.svg +1 -0
  4777. docsforge/themes/material/templates/.icons/material/cellphone-message.svg +1 -0
  4778. docsforge/themes/material/templates/.icons/material/cellphone-nfc-off.svg +1 -0
  4779. docsforge/themes/material/templates/.icons/material/cellphone-nfc.svg +1 -0
  4780. docsforge/themes/material/templates/.icons/material/cellphone-off.svg +1 -0
  4781. docsforge/themes/material/templates/.icons/material/cellphone-play.svg +1 -0
  4782. docsforge/themes/material/templates/.icons/material/cellphone-remove.svg +1 -0
  4783. docsforge/themes/material/templates/.icons/material/cellphone-screenshot.svg +1 -0
  4784. docsforge/themes/material/templates/.icons/material/cellphone-settings.svg +1 -0
  4785. docsforge/themes/material/templates/.icons/material/cellphone-sound.svg +1 -0
  4786. docsforge/themes/material/templates/.icons/material/cellphone-text.svg +1 -0
  4787. docsforge/themes/material/templates/.icons/material/cellphone-wireless.svg +1 -0
  4788. docsforge/themes/material/templates/.icons/material/cellphone.svg +1 -0
  4789. docsforge/themes/material/templates/.icons/material/centos.svg +1 -0
  4790. docsforge/themes/material/templates/.icons/material/certificate-outline.svg +1 -0
  4791. docsforge/themes/material/templates/.icons/material/certificate.svg +1 -0
  4792. docsforge/themes/material/templates/.icons/material/chair-rolling.svg +1 -0
  4793. docsforge/themes/material/templates/.icons/material/chair-school.svg +1 -0
  4794. docsforge/themes/material/templates/.icons/material/chandelier.svg +1 -0
  4795. docsforge/themes/material/templates/.icons/material/charity-search.svg +1 -0
  4796. docsforge/themes/material/templates/.icons/material/charity.svg +1 -0
  4797. docsforge/themes/material/templates/.icons/material/chart-arc.svg +1 -0
  4798. docsforge/themes/material/templates/.icons/material/chart-areaspline-variant.svg +1 -0
  4799. docsforge/themes/material/templates/.icons/material/chart-areaspline.svg +1 -0
  4800. docsforge/themes/material/templates/.icons/material/chart-bar-stacked.svg +1 -0
  4801. docsforge/themes/material/templates/.icons/material/chart-bar.svg +1 -0
  4802. docsforge/themes/material/templates/.icons/material/chart-bell-curve-cumulative.svg +1 -0
  4803. docsforge/themes/material/templates/.icons/material/chart-bell-curve.svg +1 -0
  4804. docsforge/themes/material/templates/.icons/material/chart-box-multiple-outline.svg +1 -0
  4805. docsforge/themes/material/templates/.icons/material/chart-box-multiple.svg +1 -0
  4806. docsforge/themes/material/templates/.icons/material/chart-box-outline.svg +1 -0
  4807. docsforge/themes/material/templates/.icons/material/chart-box-plus-outline.svg +1 -0
  4808. docsforge/themes/material/templates/.icons/material/chart-box.svg +1 -0
  4809. docsforge/themes/material/templates/.icons/material/chart-bubble.svg +1 -0
  4810. docsforge/themes/material/templates/.icons/material/chart-donut-variant.svg +1 -0
  4811. docsforge/themes/material/templates/.icons/material/chart-donut.svg +1 -0
  4812. docsforge/themes/material/templates/.icons/material/chart-gantt.svg +1 -0
  4813. docsforge/themes/material/templates/.icons/material/chart-histogram.svg +1 -0
  4814. docsforge/themes/material/templates/.icons/material/chart-line-stacked.svg +1 -0
  4815. docsforge/themes/material/templates/.icons/material/chart-line-variant.svg +1 -0
  4816. docsforge/themes/material/templates/.icons/material/chart-line.svg +1 -0
  4817. docsforge/themes/material/templates/.icons/material/chart-multiline.svg +1 -0
  4818. docsforge/themes/material/templates/.icons/material/chart-multiple.svg +1 -0
  4819. docsforge/themes/material/templates/.icons/material/chart-pie-outline.svg +1 -0
  4820. docsforge/themes/material/templates/.icons/material/chart-pie.svg +1 -0
  4821. docsforge/themes/material/templates/.icons/material/chart-ppf.svg +1 -0
  4822. docsforge/themes/material/templates/.icons/material/chart-sankey-variant.svg +1 -0
  4823. docsforge/themes/material/templates/.icons/material/chart-sankey.svg +1 -0
  4824. docsforge/themes/material/templates/.icons/material/chart-scatter-plot-hexbin.svg +1 -0
  4825. docsforge/themes/material/templates/.icons/material/chart-scatter-plot.svg +1 -0
  4826. docsforge/themes/material/templates/.icons/material/chart-timeline-variant-shimmer.svg +1 -0
  4827. docsforge/themes/material/templates/.icons/material/chart-timeline-variant.svg +1 -0
  4828. docsforge/themes/material/templates/.icons/material/chart-timeline.svg +1 -0
  4829. docsforge/themes/material/templates/.icons/material/chart-tree.svg +1 -0
  4830. docsforge/themes/material/templates/.icons/material/chart-waterfall.svg +1 -0
  4831. docsforge/themes/material/templates/.icons/material/chat-alert-outline.svg +1 -0
  4832. docsforge/themes/material/templates/.icons/material/chat-alert.svg +1 -0
  4833. docsforge/themes/material/templates/.icons/material/chat-minus-outline.svg +1 -0
  4834. docsforge/themes/material/templates/.icons/material/chat-minus.svg +1 -0
  4835. docsforge/themes/material/templates/.icons/material/chat-outline.svg +1 -0
  4836. docsforge/themes/material/templates/.icons/material/chat-plus-outline.svg +1 -0
  4837. docsforge/themes/material/templates/.icons/material/chat-plus.svg +1 -0
  4838. docsforge/themes/material/templates/.icons/material/chat-processing-outline.svg +1 -0
  4839. docsforge/themes/material/templates/.icons/material/chat-processing.svg +1 -0
  4840. docsforge/themes/material/templates/.icons/material/chat-question-outline.svg +1 -0
  4841. docsforge/themes/material/templates/.icons/material/chat-question.svg +1 -0
  4842. docsforge/themes/material/templates/.icons/material/chat-remove-outline.svg +1 -0
  4843. docsforge/themes/material/templates/.icons/material/chat-remove.svg +1 -0
  4844. docsforge/themes/material/templates/.icons/material/chat-sleep-outline.svg +1 -0
  4845. docsforge/themes/material/templates/.icons/material/chat-sleep.svg +1 -0
  4846. docsforge/themes/material/templates/.icons/material/chat.svg +1 -0
  4847. docsforge/themes/material/templates/.icons/material/check-all.svg +1 -0
  4848. docsforge/themes/material/templates/.icons/material/check-bold.svg +1 -0
  4849. docsforge/themes/material/templates/.icons/material/check-circle-outline.svg +1 -0
  4850. docsforge/themes/material/templates/.icons/material/check-circle.svg +1 -0
  4851. docsforge/themes/material/templates/.icons/material/check-decagram-outline.svg +1 -0
  4852. docsforge/themes/material/templates/.icons/material/check-decagram.svg +1 -0
  4853. docsforge/themes/material/templates/.icons/material/check-network-outline.svg +1 -0
  4854. docsforge/themes/material/templates/.icons/material/check-network.svg +1 -0
  4855. docsforge/themes/material/templates/.icons/material/check-outline.svg +1 -0
  4856. docsforge/themes/material/templates/.icons/material/check-underline-circle-outline.svg +1 -0
  4857. docsforge/themes/material/templates/.icons/material/check-underline-circle.svg +1 -0
  4858. docsforge/themes/material/templates/.icons/material/check-underline.svg +1 -0
  4859. docsforge/themes/material/templates/.icons/material/check.svg +1 -0
  4860. docsforge/themes/material/templates/.icons/material/checkbook-arrow-left.svg +1 -0
  4861. docsforge/themes/material/templates/.icons/material/checkbook-arrow-right.svg +1 -0
  4862. docsforge/themes/material/templates/.icons/material/checkbook.svg +1 -0
  4863. docsforge/themes/material/templates/.icons/material/checkbox-blank-badge-outline.svg +1 -0
  4864. docsforge/themes/material/templates/.icons/material/checkbox-blank-badge.svg +1 -0
  4865. docsforge/themes/material/templates/.icons/material/checkbox-blank-circle-outline.svg +1 -0
  4866. docsforge/themes/material/templates/.icons/material/checkbox-blank-circle.svg +1 -0
  4867. docsforge/themes/material/templates/.icons/material/checkbox-blank-off-outline.svg +1 -0
  4868. docsforge/themes/material/templates/.icons/material/checkbox-blank-off.svg +1 -0
  4869. docsforge/themes/material/templates/.icons/material/checkbox-blank-outline.svg +1 -0
  4870. docsforge/themes/material/templates/.icons/material/checkbox-blank.svg +1 -0
  4871. docsforge/themes/material/templates/.icons/material/checkbox-intermediate-variant.svg +1 -0
  4872. docsforge/themes/material/templates/.icons/material/checkbox-intermediate.svg +1 -0
  4873. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg +1 -0
  4874. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg +1 -0
  4875. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-outline.svg +1 -0
  4876. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg +1 -0
  4877. docsforge/themes/material/templates/.icons/material/checkbox-marked-circle.svg +1 -0
  4878. docsforge/themes/material/templates/.icons/material/checkbox-marked-outline.svg +1 -0
  4879. docsforge/themes/material/templates/.icons/material/checkbox-marked.svg +1 -0
  4880. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg +1 -0
  4881. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle.svg +1 -0
  4882. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-outline.svg +1 -0
  4883. docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank.svg +1 -0
  4884. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg +1 -0
  4885. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle.svg +1 -0
  4886. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-outline.svg +1 -0
  4887. docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked.svg +1 -0
  4888. docsforge/themes/material/templates/.icons/material/checkbox-multiple-outline.svg +1 -0
  4889. docsforge/themes/material/templates/.icons/material/checkbox-outline.svg +1 -0
  4890. docsforge/themes/material/templates/.icons/material/checkerboard-minus.svg +1 -0
  4891. docsforge/themes/material/templates/.icons/material/checkerboard-plus.svg +1 -0
  4892. docsforge/themes/material/templates/.icons/material/checkerboard-remove.svg +1 -0
  4893. docsforge/themes/material/templates/.icons/material/checkerboard.svg +1 -0
  4894. docsforge/themes/material/templates/.icons/material/cheese-off.svg +1 -0
  4895. docsforge/themes/material/templates/.icons/material/cheese.svg +1 -0
  4896. docsforge/themes/material/templates/.icons/material/chef-hat.svg +1 -0
  4897. docsforge/themes/material/templates/.icons/material/chemical-weapon.svg +1 -0
  4898. docsforge/themes/material/templates/.icons/material/chess-bishop.svg +1 -0
  4899. docsforge/themes/material/templates/.icons/material/chess-king.svg +1 -0
  4900. docsforge/themes/material/templates/.icons/material/chess-knight.svg +1 -0
  4901. docsforge/themes/material/templates/.icons/material/chess-pawn.svg +1 -0
  4902. docsforge/themes/material/templates/.icons/material/chess-queen.svg +1 -0
  4903. docsforge/themes/material/templates/.icons/material/chess-rook.svg +1 -0
  4904. docsforge/themes/material/templates/.icons/material/chevron-double-down.svg +1 -0
  4905. docsforge/themes/material/templates/.icons/material/chevron-double-left.svg +1 -0
  4906. docsforge/themes/material/templates/.icons/material/chevron-double-right.svg +1 -0
  4907. docsforge/themes/material/templates/.icons/material/chevron-double-up.svg +1 -0
  4908. docsforge/themes/material/templates/.icons/material/chevron-down-box-outline.svg +1 -0
  4909. docsforge/themes/material/templates/.icons/material/chevron-down-box.svg +1 -0
  4910. docsforge/themes/material/templates/.icons/material/chevron-down-circle-outline.svg +1 -0
  4911. docsforge/themes/material/templates/.icons/material/chevron-down-circle.svg +1 -0
  4912. docsforge/themes/material/templates/.icons/material/chevron-down.svg +1 -0
  4913. docsforge/themes/material/templates/.icons/material/chevron-left-box-outline.svg +1 -0
  4914. docsforge/themes/material/templates/.icons/material/chevron-left-box.svg +1 -0
  4915. docsforge/themes/material/templates/.icons/material/chevron-left-circle-outline.svg +1 -0
  4916. docsforge/themes/material/templates/.icons/material/chevron-left-circle.svg +1 -0
  4917. docsforge/themes/material/templates/.icons/material/chevron-left.svg +1 -0
  4918. docsforge/themes/material/templates/.icons/material/chevron-right-box-outline.svg +1 -0
  4919. docsforge/themes/material/templates/.icons/material/chevron-right-box.svg +1 -0
  4920. docsforge/themes/material/templates/.icons/material/chevron-right-circle-outline.svg +1 -0
  4921. docsforge/themes/material/templates/.icons/material/chevron-right-circle.svg +1 -0
  4922. docsforge/themes/material/templates/.icons/material/chevron-right.svg +1 -0
  4923. docsforge/themes/material/templates/.icons/material/chevron-triple-down.svg +1 -0
  4924. docsforge/themes/material/templates/.icons/material/chevron-triple-left.svg +1 -0
  4925. docsforge/themes/material/templates/.icons/material/chevron-triple-right.svg +1 -0
  4926. docsforge/themes/material/templates/.icons/material/chevron-triple-up.svg +1 -0
  4927. docsforge/themes/material/templates/.icons/material/chevron-up-box-outline.svg +1 -0
  4928. docsforge/themes/material/templates/.icons/material/chevron-up-box.svg +1 -0
  4929. docsforge/themes/material/templates/.icons/material/chevron-up-circle-outline.svg +1 -0
  4930. docsforge/themes/material/templates/.icons/material/chevron-up-circle.svg +1 -0
  4931. docsforge/themes/material/templates/.icons/material/chevron-up.svg +1 -0
  4932. docsforge/themes/material/templates/.icons/material/chili-alert-outline.svg +1 -0
  4933. docsforge/themes/material/templates/.icons/material/chili-alert.svg +1 -0
  4934. docsforge/themes/material/templates/.icons/material/chili-hot-outline.svg +1 -0
  4935. docsforge/themes/material/templates/.icons/material/chili-hot.svg +1 -0
  4936. docsforge/themes/material/templates/.icons/material/chili-medium-outline.svg +1 -0
  4937. docsforge/themes/material/templates/.icons/material/chili-medium.svg +1 -0
  4938. docsforge/themes/material/templates/.icons/material/chili-mild-outline.svg +1 -0
  4939. docsforge/themes/material/templates/.icons/material/chili-mild.svg +1 -0
  4940. docsforge/themes/material/templates/.icons/material/chili-off-outline.svg +1 -0
  4941. docsforge/themes/material/templates/.icons/material/chili-off.svg +1 -0
  4942. docsforge/themes/material/templates/.icons/material/chip.svg +1 -0
  4943. docsforge/themes/material/templates/.icons/material/church-outline.svg +1 -0
  4944. docsforge/themes/material/templates/.icons/material/church.svg +1 -0
  4945. docsforge/themes/material/templates/.icons/material/cigar-off.svg +1 -0
  4946. docsforge/themes/material/templates/.icons/material/cigar.svg +1 -0
  4947. docsforge/themes/material/templates/.icons/material/circle-box-outline.svg +1 -0
  4948. docsforge/themes/material/templates/.icons/material/circle-box.svg +1 -0
  4949. docsforge/themes/material/templates/.icons/material/circle-double.svg +1 -0
  4950. docsforge/themes/material/templates/.icons/material/circle-edit-outline.svg +1 -0
  4951. docsforge/themes/material/templates/.icons/material/circle-expand.svg +1 -0
  4952. docsforge/themes/material/templates/.icons/material/circle-half-full.svg +1 -0
  4953. docsforge/themes/material/templates/.icons/material/circle-half.svg +1 -0
  4954. docsforge/themes/material/templates/.icons/material/circle-medium.svg +1 -0
  4955. docsforge/themes/material/templates/.icons/material/circle-multiple-outline.svg +1 -0
  4956. docsforge/themes/material/templates/.icons/material/circle-multiple.svg +1 -0
  4957. docsforge/themes/material/templates/.icons/material/circle-off-outline.svg +1 -0
  4958. docsforge/themes/material/templates/.icons/material/circle-opacity.svg +1 -0
  4959. docsforge/themes/material/templates/.icons/material/circle-outline.svg +1 -0
  4960. docsforge/themes/material/templates/.icons/material/circle-slice-1.svg +1 -0
  4961. docsforge/themes/material/templates/.icons/material/circle-slice-2.svg +1 -0
  4962. docsforge/themes/material/templates/.icons/material/circle-slice-3.svg +1 -0
  4963. docsforge/themes/material/templates/.icons/material/circle-slice-4.svg +1 -0
  4964. docsforge/themes/material/templates/.icons/material/circle-slice-5.svg +1 -0
  4965. docsforge/themes/material/templates/.icons/material/circle-slice-6.svg +1 -0
  4966. docsforge/themes/material/templates/.icons/material/circle-slice-7.svg +1 -0
  4967. docsforge/themes/material/templates/.icons/material/circle-slice-8.svg +1 -0
  4968. docsforge/themes/material/templates/.icons/material/circle-small.svg +1 -0
  4969. docsforge/themes/material/templates/.icons/material/circle.svg +1 -0
  4970. docsforge/themes/material/templates/.icons/material/circular-saw.svg +1 -0
  4971. docsforge/themes/material/templates/.icons/material/city-switch.svg +1 -0
  4972. docsforge/themes/material/templates/.icons/material/city-variant-outline.svg +1 -0
  4973. docsforge/themes/material/templates/.icons/material/city-variant.svg +1 -0
  4974. docsforge/themes/material/templates/.icons/material/city.svg +1 -0
  4975. docsforge/themes/material/templates/.icons/material/clipboard-account-outline.svg +1 -0
  4976. docsforge/themes/material/templates/.icons/material/clipboard-account.svg +1 -0
  4977. docsforge/themes/material/templates/.icons/material/clipboard-alert-outline.svg +1 -0
  4978. docsforge/themes/material/templates/.icons/material/clipboard-alert.svg +1 -0
  4979. docsforge/themes/material/templates/.icons/material/clipboard-arrow-down-outline.svg +1 -0
  4980. docsforge/themes/material/templates/.icons/material/clipboard-arrow-down.svg +1 -0
  4981. docsforge/themes/material/templates/.icons/material/clipboard-arrow-left-outline.svg +1 -0
  4982. docsforge/themes/material/templates/.icons/material/clipboard-arrow-left.svg +1 -0
  4983. docsforge/themes/material/templates/.icons/material/clipboard-arrow-right-outline.svg +1 -0
  4984. docsforge/themes/material/templates/.icons/material/clipboard-arrow-right.svg +1 -0
  4985. docsforge/themes/material/templates/.icons/material/clipboard-arrow-up-outline.svg +1 -0
  4986. docsforge/themes/material/templates/.icons/material/clipboard-arrow-up.svg +1 -0
  4987. docsforge/themes/material/templates/.icons/material/clipboard-check-multiple-outline.svg +1 -0
  4988. docsforge/themes/material/templates/.icons/material/clipboard-check-multiple.svg +1 -0
  4989. docsforge/themes/material/templates/.icons/material/clipboard-check-outline.svg +1 -0
  4990. docsforge/themes/material/templates/.icons/material/clipboard-check.svg +1 -0
  4991. docsforge/themes/material/templates/.icons/material/clipboard-clock-outline.svg +1 -0
  4992. docsforge/themes/material/templates/.icons/material/clipboard-clock.svg +1 -0
  4993. docsforge/themes/material/templates/.icons/material/clipboard-edit-outline.svg +1 -0
  4994. docsforge/themes/material/templates/.icons/material/clipboard-edit.svg +1 -0
  4995. docsforge/themes/material/templates/.icons/material/clipboard-file-outline.svg +1 -0
  4996. docsforge/themes/material/templates/.icons/material/clipboard-file.svg +1 -0
  4997. docsforge/themes/material/templates/.icons/material/clipboard-flow-outline.svg +1 -0
  4998. docsforge/themes/material/templates/.icons/material/clipboard-flow.svg +1 -0
  4999. docsforge/themes/material/templates/.icons/material/clipboard-list-outline.svg +1 -0
  5000. docsforge/themes/material/templates/.icons/material/clipboard-list.svg +1 -0
  5001. docsforge/themes/material/templates/.icons/material/clipboard-minus-outline.svg +1 -0
  5002. docsforge/themes/material/templates/.icons/material/clipboard-minus.svg +1 -0
  5003. docsforge/themes/material/templates/.icons/material/clipboard-multiple-outline.svg +1 -0
  5004. docsforge/themes/material/templates/.icons/material/clipboard-multiple.svg +1 -0
  5005. docsforge/themes/material/templates/.icons/material/clipboard-off-outline.svg +1 -0
  5006. docsforge/themes/material/templates/.icons/material/clipboard-off.svg +1 -0
  5007. docsforge/themes/material/templates/.icons/material/clipboard-outline.svg +1 -0
  5008. docsforge/themes/material/templates/.icons/material/clipboard-play-multiple-outline.svg +1 -0
  5009. docsforge/themes/material/templates/.icons/material/clipboard-play-multiple.svg +1 -0
  5010. docsforge/themes/material/templates/.icons/material/clipboard-play-outline.svg +1 -0
  5011. docsforge/themes/material/templates/.icons/material/clipboard-play.svg +1 -0
  5012. docsforge/themes/material/templates/.icons/material/clipboard-plus-outline.svg +1 -0
  5013. docsforge/themes/material/templates/.icons/material/clipboard-plus.svg +1 -0
  5014. docsforge/themes/material/templates/.icons/material/clipboard-pulse-outline.svg +1 -0
  5015. docsforge/themes/material/templates/.icons/material/clipboard-pulse.svg +1 -0
  5016. docsforge/themes/material/templates/.icons/material/clipboard-remove-outline.svg +1 -0
  5017. docsforge/themes/material/templates/.icons/material/clipboard-remove.svg +1 -0
  5018. docsforge/themes/material/templates/.icons/material/clipboard-search-outline.svg +1 -0
  5019. docsforge/themes/material/templates/.icons/material/clipboard-search.svg +1 -0
  5020. docsforge/themes/material/templates/.icons/material/clipboard-text-clock-outline.svg +1 -0
  5021. docsforge/themes/material/templates/.icons/material/clipboard-text-clock.svg +1 -0
  5022. docsforge/themes/material/templates/.icons/material/clipboard-text-multiple-outline.svg +1 -0
  5023. docsforge/themes/material/templates/.icons/material/clipboard-text-multiple.svg +1 -0
  5024. docsforge/themes/material/templates/.icons/material/clipboard-text-off-outline.svg +1 -0
  5025. docsforge/themes/material/templates/.icons/material/clipboard-text-off.svg +1 -0
  5026. docsforge/themes/material/templates/.icons/material/clipboard-text-outline.svg +1 -0
  5027. docsforge/themes/material/templates/.icons/material/clipboard-text-play-outline.svg +1 -0
  5028. docsforge/themes/material/templates/.icons/material/clipboard-text-play.svg +1 -0
  5029. docsforge/themes/material/templates/.icons/material/clipboard-text-search-outline.svg +1 -0
  5030. docsforge/themes/material/templates/.icons/material/clipboard-text-search.svg +1 -0
  5031. docsforge/themes/material/templates/.icons/material/clipboard-text.svg +1 -0
  5032. docsforge/themes/material/templates/.icons/material/clipboard.svg +1 -0
  5033. docsforge/themes/material/templates/.icons/material/clippy.svg +1 -0
  5034. docsforge/themes/material/templates/.icons/material/clock-alert-outline.svg +1 -0
  5035. docsforge/themes/material/templates/.icons/material/clock-alert.svg +1 -0
  5036. docsforge/themes/material/templates/.icons/material/clock-check-outline.svg +1 -0
  5037. docsforge/themes/material/templates/.icons/material/clock-check.svg +1 -0
  5038. docsforge/themes/material/templates/.icons/material/clock-digital.svg +1 -0
  5039. docsforge/themes/material/templates/.icons/material/clock-edit-outline.svg +1 -0
  5040. docsforge/themes/material/templates/.icons/material/clock-edit.svg +1 -0
  5041. docsforge/themes/material/templates/.icons/material/clock-end.svg +1 -0
  5042. docsforge/themes/material/templates/.icons/material/clock-fast.svg +1 -0
  5043. docsforge/themes/material/templates/.icons/material/clock-in.svg +1 -0
  5044. docsforge/themes/material/templates/.icons/material/clock-minus-outline.svg +1 -0
  5045. docsforge/themes/material/templates/.icons/material/clock-minus.svg +1 -0
  5046. docsforge/themes/material/templates/.icons/material/clock-out.svg +1 -0
  5047. docsforge/themes/material/templates/.icons/material/clock-outline.svg +1 -0
  5048. docsforge/themes/material/templates/.icons/material/clock-plus-outline.svg +1 -0
  5049. docsforge/themes/material/templates/.icons/material/clock-plus.svg +1 -0
  5050. docsforge/themes/material/templates/.icons/material/clock-remove-outline.svg +1 -0
  5051. docsforge/themes/material/templates/.icons/material/clock-remove.svg +1 -0
  5052. docsforge/themes/material/templates/.icons/material/clock-star-four-points-outline.svg +1 -0
  5053. docsforge/themes/material/templates/.icons/material/clock-star-four-points.svg +1 -0
  5054. docsforge/themes/material/templates/.icons/material/clock-start.svg +1 -0
  5055. docsforge/themes/material/templates/.icons/material/clock-time-eight-outline.svg +1 -0
  5056. docsforge/themes/material/templates/.icons/material/clock-time-eight.svg +1 -0
  5057. docsforge/themes/material/templates/.icons/material/clock-time-eleven-outline.svg +1 -0
  5058. docsforge/themes/material/templates/.icons/material/clock-time-eleven.svg +1 -0
  5059. docsforge/themes/material/templates/.icons/material/clock-time-five-outline.svg +1 -0
  5060. docsforge/themes/material/templates/.icons/material/clock-time-five.svg +1 -0
  5061. docsforge/themes/material/templates/.icons/material/clock-time-four-outline.svg +1 -0
  5062. docsforge/themes/material/templates/.icons/material/clock-time-four.svg +1 -0
  5063. docsforge/themes/material/templates/.icons/material/clock-time-nine-outline.svg +1 -0
  5064. docsforge/themes/material/templates/.icons/material/clock-time-nine.svg +1 -0
  5065. docsforge/themes/material/templates/.icons/material/clock-time-one-outline.svg +1 -0
  5066. docsforge/themes/material/templates/.icons/material/clock-time-one.svg +1 -0
  5067. docsforge/themes/material/templates/.icons/material/clock-time-seven-outline.svg +1 -0
  5068. docsforge/themes/material/templates/.icons/material/clock-time-seven.svg +1 -0
  5069. docsforge/themes/material/templates/.icons/material/clock-time-six-outline.svg +1 -0
  5070. docsforge/themes/material/templates/.icons/material/clock-time-six.svg +1 -0
  5071. docsforge/themes/material/templates/.icons/material/clock-time-ten-outline.svg +1 -0
  5072. docsforge/themes/material/templates/.icons/material/clock-time-ten.svg +1 -0
  5073. docsforge/themes/material/templates/.icons/material/clock-time-three-outline.svg +1 -0
  5074. docsforge/themes/material/templates/.icons/material/clock-time-three.svg +1 -0
  5075. docsforge/themes/material/templates/.icons/material/clock-time-twelve-outline.svg +1 -0
  5076. docsforge/themes/material/templates/.icons/material/clock-time-twelve.svg +1 -0
  5077. docsforge/themes/material/templates/.icons/material/clock-time-two-outline.svg +1 -0
  5078. docsforge/themes/material/templates/.icons/material/clock-time-two.svg +1 -0
  5079. docsforge/themes/material/templates/.icons/material/clock.svg +1 -0
  5080. docsforge/themes/material/templates/.icons/material/close-box-multiple-outline.svg +1 -0
  5081. docsforge/themes/material/templates/.icons/material/close-box-multiple.svg +1 -0
  5082. docsforge/themes/material/templates/.icons/material/close-box-outline.svg +1 -0
  5083. docsforge/themes/material/templates/.icons/material/close-box.svg +1 -0
  5084. docsforge/themes/material/templates/.icons/material/close-circle-multiple-outline.svg +1 -0
  5085. docsforge/themes/material/templates/.icons/material/close-circle-multiple.svg +1 -0
  5086. docsforge/themes/material/templates/.icons/material/close-circle-outline.svg +1 -0
  5087. docsforge/themes/material/templates/.icons/material/close-circle.svg +1 -0
  5088. docsforge/themes/material/templates/.icons/material/close-network-outline.svg +1 -0
  5089. docsforge/themes/material/templates/.icons/material/close-network.svg +1 -0
  5090. docsforge/themes/material/templates/.icons/material/close-octagon-outline.svg +1 -0
  5091. docsforge/themes/material/templates/.icons/material/close-octagon.svg +1 -0
  5092. docsforge/themes/material/templates/.icons/material/close-outline.svg +1 -0
  5093. docsforge/themes/material/templates/.icons/material/close-thick.svg +1 -0
  5094. docsforge/themes/material/templates/.icons/material/close.svg +1 -0
  5095. docsforge/themes/material/templates/.icons/material/closed-caption-outline.svg +1 -0
  5096. docsforge/themes/material/templates/.icons/material/closed-caption.svg +1 -0
  5097. docsforge/themes/material/templates/.icons/material/cloud-alert-outline.svg +1 -0
  5098. docsforge/themes/material/templates/.icons/material/cloud-alert.svg +1 -0
  5099. docsforge/themes/material/templates/.icons/material/cloud-arrow-down-outline.svg +1 -0
  5100. docsforge/themes/material/templates/.icons/material/cloud-arrow-down.svg +1 -0
  5101. docsforge/themes/material/templates/.icons/material/cloud-arrow-left-outline.svg +1 -0
  5102. docsforge/themes/material/templates/.icons/material/cloud-arrow-left.svg +1 -0
  5103. docsforge/themes/material/templates/.icons/material/cloud-arrow-right-outline.svg +1 -0
  5104. docsforge/themes/material/templates/.icons/material/cloud-arrow-right.svg +1 -0
  5105. docsforge/themes/material/templates/.icons/material/cloud-arrow-up-outline.svg +1 -0
  5106. docsforge/themes/material/templates/.icons/material/cloud-arrow-up.svg +1 -0
  5107. docsforge/themes/material/templates/.icons/material/cloud-braces.svg +1 -0
  5108. docsforge/themes/material/templates/.icons/material/cloud-cancel-outline.svg +1 -0
  5109. docsforge/themes/material/templates/.icons/material/cloud-cancel.svg +1 -0
  5110. docsforge/themes/material/templates/.icons/material/cloud-check-outline.svg +1 -0
  5111. docsforge/themes/material/templates/.icons/material/cloud-check-variant-outline.svg +1 -0
  5112. docsforge/themes/material/templates/.icons/material/cloud-check-variant.svg +1 -0
  5113. docsforge/themes/material/templates/.icons/material/cloud-check.svg +1 -0
  5114. docsforge/themes/material/templates/.icons/material/cloud-circle-outline.svg +1 -0
  5115. docsforge/themes/material/templates/.icons/material/cloud-circle.svg +1 -0
  5116. docsforge/themes/material/templates/.icons/material/cloud-clock-outline.svg +1 -0
  5117. docsforge/themes/material/templates/.icons/material/cloud-clock.svg +1 -0
  5118. docsforge/themes/material/templates/.icons/material/cloud-cog-outline.svg +1 -0
  5119. docsforge/themes/material/templates/.icons/material/cloud-cog.svg +1 -0
  5120. docsforge/themes/material/templates/.icons/material/cloud-download-outline.svg +1 -0
  5121. docsforge/themes/material/templates/.icons/material/cloud-download.svg +1 -0
  5122. docsforge/themes/material/templates/.icons/material/cloud-key-outline.svg +1 -0
  5123. docsforge/themes/material/templates/.icons/material/cloud-key.svg +1 -0
  5124. docsforge/themes/material/templates/.icons/material/cloud-lock-open-outline.svg +1 -0
  5125. docsforge/themes/material/templates/.icons/material/cloud-lock-open.svg +1 -0
  5126. docsforge/themes/material/templates/.icons/material/cloud-lock-outline.svg +1 -0
  5127. docsforge/themes/material/templates/.icons/material/cloud-lock.svg +1 -0
  5128. docsforge/themes/material/templates/.icons/material/cloud-minus-outline.svg +1 -0
  5129. docsforge/themes/material/templates/.icons/material/cloud-minus.svg +1 -0
  5130. docsforge/themes/material/templates/.icons/material/cloud-off-outline.svg +1 -0
  5131. docsforge/themes/material/templates/.icons/material/cloud-off.svg +1 -0
  5132. docsforge/themes/material/templates/.icons/material/cloud-outline.svg +1 -0
  5133. docsforge/themes/material/templates/.icons/material/cloud-percent-outline.svg +1 -0
  5134. docsforge/themes/material/templates/.icons/material/cloud-percent.svg +1 -0
  5135. docsforge/themes/material/templates/.icons/material/cloud-plus-outline.svg +1 -0
  5136. docsforge/themes/material/templates/.icons/material/cloud-plus.svg +1 -0
  5137. docsforge/themes/material/templates/.icons/material/cloud-print-outline.svg +1 -0
  5138. docsforge/themes/material/templates/.icons/material/cloud-print.svg +1 -0
  5139. docsforge/themes/material/templates/.icons/material/cloud-question-outline.svg +1 -0
  5140. docsforge/themes/material/templates/.icons/material/cloud-question.svg +1 -0
  5141. docsforge/themes/material/templates/.icons/material/cloud-refresh-outline.svg +1 -0
  5142. docsforge/themes/material/templates/.icons/material/cloud-refresh-variant-outline.svg +1 -0
  5143. docsforge/themes/material/templates/.icons/material/cloud-refresh-variant.svg +1 -0
  5144. docsforge/themes/material/templates/.icons/material/cloud-refresh.svg +1 -0
  5145. docsforge/themes/material/templates/.icons/material/cloud-remove-outline.svg +1 -0
  5146. docsforge/themes/material/templates/.icons/material/cloud-remove.svg +1 -0
  5147. docsforge/themes/material/templates/.icons/material/cloud-search-outline.svg +1 -0
  5148. docsforge/themes/material/templates/.icons/material/cloud-search.svg +1 -0
  5149. docsforge/themes/material/templates/.icons/material/cloud-sync-outline.svg +1 -0
  5150. docsforge/themes/material/templates/.icons/material/cloud-sync.svg +1 -0
  5151. docsforge/themes/material/templates/.icons/material/cloud-tags.svg +1 -0
  5152. docsforge/themes/material/templates/.icons/material/cloud-upload-outline.svg +1 -0
  5153. docsforge/themes/material/templates/.icons/material/cloud-upload.svg +1 -0
  5154. docsforge/themes/material/templates/.icons/material/cloud.svg +1 -0
  5155. docsforge/themes/material/templates/.icons/material/clouds.svg +1 -0
  5156. docsforge/themes/material/templates/.icons/material/clover-outline.svg +1 -0
  5157. docsforge/themes/material/templates/.icons/material/clover.svg +1 -0
  5158. docsforge/themes/material/templates/.icons/material/coach-lamp-variant.svg +1 -0
  5159. docsforge/themes/material/templates/.icons/material/coach-lamp.svg +1 -0
  5160. docsforge/themes/material/templates/.icons/material/coat-rack.svg +1 -0
  5161. docsforge/themes/material/templates/.icons/material/code-array.svg +1 -0
  5162. docsforge/themes/material/templates/.icons/material/code-block-braces.svg +1 -0
  5163. docsforge/themes/material/templates/.icons/material/code-block-brackets.svg +1 -0
  5164. docsforge/themes/material/templates/.icons/material/code-block-parentheses.svg +1 -0
  5165. docsforge/themes/material/templates/.icons/material/code-block-tags.svg +1 -0
  5166. docsforge/themes/material/templates/.icons/material/code-braces-box.svg +1 -0
  5167. docsforge/themes/material/templates/.icons/material/code-braces.svg +1 -0
  5168. docsforge/themes/material/templates/.icons/material/code-brackets.svg +1 -0
  5169. docsforge/themes/material/templates/.icons/material/code-equal.svg +1 -0
  5170. docsforge/themes/material/templates/.icons/material/code-greater-than-or-equal.svg +1 -0
  5171. docsforge/themes/material/templates/.icons/material/code-greater-than.svg +1 -0
  5172. docsforge/themes/material/templates/.icons/material/code-json.svg +1 -0
  5173. docsforge/themes/material/templates/.icons/material/code-less-than-or-equal.svg +1 -0
  5174. docsforge/themes/material/templates/.icons/material/code-less-than.svg +1 -0
  5175. docsforge/themes/material/templates/.icons/material/code-not-equal-variant.svg +1 -0
  5176. docsforge/themes/material/templates/.icons/material/code-not-equal.svg +1 -0
  5177. docsforge/themes/material/templates/.icons/material/code-parentheses-box.svg +1 -0
  5178. docsforge/themes/material/templates/.icons/material/code-parentheses.svg +1 -0
  5179. docsforge/themes/material/templates/.icons/material/code-string.svg +1 -0
  5180. docsforge/themes/material/templates/.icons/material/code-tags-check.svg +1 -0
  5181. docsforge/themes/material/templates/.icons/material/code-tags.svg +1 -0
  5182. docsforge/themes/material/templates/.icons/material/codepen.svg +1 -0
  5183. docsforge/themes/material/templates/.icons/material/coffee-maker-check-outline.svg +1 -0
  5184. docsforge/themes/material/templates/.icons/material/coffee-maker-check.svg +1 -0
  5185. docsforge/themes/material/templates/.icons/material/coffee-maker-outline.svg +1 -0
  5186. docsforge/themes/material/templates/.icons/material/coffee-maker.svg +1 -0
  5187. docsforge/themes/material/templates/.icons/material/coffee-off-outline.svg +1 -0
  5188. docsforge/themes/material/templates/.icons/material/coffee-off.svg +1 -0
  5189. docsforge/themes/material/templates/.icons/material/coffee-outline.svg +1 -0
  5190. docsforge/themes/material/templates/.icons/material/coffee-to-go-outline.svg +1 -0
  5191. docsforge/themes/material/templates/.icons/material/coffee-to-go.svg +1 -0
  5192. docsforge/themes/material/templates/.icons/material/coffee.svg +1 -0
  5193. docsforge/themes/material/templates/.icons/material/coffin.svg +1 -0
  5194. docsforge/themes/material/templates/.icons/material/cog-box.svg +1 -0
  5195. docsforge/themes/material/templates/.icons/material/cog-clockwise.svg +1 -0
  5196. docsforge/themes/material/templates/.icons/material/cog-counterclockwise.svg +1 -0
  5197. docsforge/themes/material/templates/.icons/material/cog-off-outline.svg +1 -0
  5198. docsforge/themes/material/templates/.icons/material/cog-off.svg +1 -0
  5199. docsforge/themes/material/templates/.icons/material/cog-outline.svg +1 -0
  5200. docsforge/themes/material/templates/.icons/material/cog-pause-outline.svg +1 -0
  5201. docsforge/themes/material/templates/.icons/material/cog-pause.svg +1 -0
  5202. docsforge/themes/material/templates/.icons/material/cog-play-outline.svg +1 -0
  5203. docsforge/themes/material/templates/.icons/material/cog-play.svg +1 -0
  5204. docsforge/themes/material/templates/.icons/material/cog-refresh-outline.svg +1 -0
  5205. docsforge/themes/material/templates/.icons/material/cog-refresh.svg +1 -0
  5206. docsforge/themes/material/templates/.icons/material/cog-stop-outline.svg +1 -0
  5207. docsforge/themes/material/templates/.icons/material/cog-stop.svg +1 -0
  5208. docsforge/themes/material/templates/.icons/material/cog-sync-outline.svg +1 -0
  5209. docsforge/themes/material/templates/.icons/material/cog-sync.svg +1 -0
  5210. docsforge/themes/material/templates/.icons/material/cog-transfer-outline.svg +1 -0
  5211. docsforge/themes/material/templates/.icons/material/cog-transfer.svg +1 -0
  5212. docsforge/themes/material/templates/.icons/material/cog.svg +1 -0
  5213. docsforge/themes/material/templates/.icons/material/cogs.svg +1 -0
  5214. docsforge/themes/material/templates/.icons/material/collage.svg +1 -0
  5215. docsforge/themes/material/templates/.icons/material/collapse-all-outline.svg +1 -0
  5216. docsforge/themes/material/templates/.icons/material/collapse-all.svg +1 -0
  5217. docsforge/themes/material/templates/.icons/material/color-helper.svg +1 -0
  5218. docsforge/themes/material/templates/.icons/material/comma-box-outline.svg +1 -0
  5219. docsforge/themes/material/templates/.icons/material/comma-box.svg +1 -0
  5220. docsforge/themes/material/templates/.icons/material/comma-circle-outline.svg +1 -0
  5221. docsforge/themes/material/templates/.icons/material/comma-circle.svg +1 -0
  5222. docsforge/themes/material/templates/.icons/material/comma.svg +1 -0
  5223. docsforge/themes/material/templates/.icons/material/comment-account-outline.svg +1 -0
  5224. docsforge/themes/material/templates/.icons/material/comment-account.svg +1 -0
  5225. docsforge/themes/material/templates/.icons/material/comment-alert-outline.svg +1 -0
  5226. docsforge/themes/material/templates/.icons/material/comment-alert.svg +1 -0
  5227. docsforge/themes/material/templates/.icons/material/comment-arrow-left-outline.svg +1 -0
  5228. docsforge/themes/material/templates/.icons/material/comment-arrow-left.svg +1 -0
  5229. docsforge/themes/material/templates/.icons/material/comment-arrow-right-outline.svg +1 -0
  5230. docsforge/themes/material/templates/.icons/material/comment-arrow-right.svg +1 -0
  5231. docsforge/themes/material/templates/.icons/material/comment-bookmark-outline.svg +1 -0
  5232. docsforge/themes/material/templates/.icons/material/comment-bookmark.svg +1 -0
  5233. docsforge/themes/material/templates/.icons/material/comment-check-outline.svg +1 -0
  5234. docsforge/themes/material/templates/.icons/material/comment-check.svg +1 -0
  5235. docsforge/themes/material/templates/.icons/material/comment-edit-outline.svg +1 -0
  5236. docsforge/themes/material/templates/.icons/material/comment-edit.svg +1 -0
  5237. docsforge/themes/material/templates/.icons/material/comment-eye-outline.svg +1 -0
  5238. docsforge/themes/material/templates/.icons/material/comment-eye.svg +1 -0
  5239. docsforge/themes/material/templates/.icons/material/comment-flash-outline.svg +1 -0
  5240. docsforge/themes/material/templates/.icons/material/comment-flash.svg +1 -0
  5241. docsforge/themes/material/templates/.icons/material/comment-minus-outline.svg +1 -0
  5242. docsforge/themes/material/templates/.icons/material/comment-minus.svg +1 -0
  5243. docsforge/themes/material/templates/.icons/material/comment-multiple-outline.svg +1 -0
  5244. docsforge/themes/material/templates/.icons/material/comment-multiple.svg +1 -0
  5245. docsforge/themes/material/templates/.icons/material/comment-off-outline.svg +1 -0
  5246. docsforge/themes/material/templates/.icons/material/comment-off.svg +1 -0
  5247. docsforge/themes/material/templates/.icons/material/comment-outline.svg +1 -0
  5248. docsforge/themes/material/templates/.icons/material/comment-plus-outline.svg +1 -0
  5249. docsforge/themes/material/templates/.icons/material/comment-plus.svg +1 -0
  5250. docsforge/themes/material/templates/.icons/material/comment-processing-outline.svg +1 -0
  5251. docsforge/themes/material/templates/.icons/material/comment-processing.svg +1 -0
  5252. docsforge/themes/material/templates/.icons/material/comment-question-outline.svg +1 -0
  5253. docsforge/themes/material/templates/.icons/material/comment-question.svg +1 -0
  5254. docsforge/themes/material/templates/.icons/material/comment-quote-outline.svg +1 -0
  5255. docsforge/themes/material/templates/.icons/material/comment-quote.svg +1 -0
  5256. docsforge/themes/material/templates/.icons/material/comment-remove-outline.svg +1 -0
  5257. docsforge/themes/material/templates/.icons/material/comment-remove.svg +1 -0
  5258. docsforge/themes/material/templates/.icons/material/comment-search-outline.svg +1 -0
  5259. docsforge/themes/material/templates/.icons/material/comment-search.svg +1 -0
  5260. docsforge/themes/material/templates/.icons/material/comment-text-multiple-outline.svg +1 -0
  5261. docsforge/themes/material/templates/.icons/material/comment-text-multiple.svg +1 -0
  5262. docsforge/themes/material/templates/.icons/material/comment-text-outline.svg +1 -0
  5263. docsforge/themes/material/templates/.icons/material/comment-text.svg +1 -0
  5264. docsforge/themes/material/templates/.icons/material/comment.svg +1 -0
  5265. docsforge/themes/material/templates/.icons/material/compare-horizontal.svg +1 -0
  5266. docsforge/themes/material/templates/.icons/material/compare-remove.svg +1 -0
  5267. docsforge/themes/material/templates/.icons/material/compare-vertical.svg +1 -0
  5268. docsforge/themes/material/templates/.icons/material/compare.svg +1 -0
  5269. docsforge/themes/material/templates/.icons/material/compass-off-outline.svg +1 -0
  5270. docsforge/themes/material/templates/.icons/material/compass-off.svg +1 -0
  5271. docsforge/themes/material/templates/.icons/material/compass-outline.svg +1 -0
  5272. docsforge/themes/material/templates/.icons/material/compass-rose.svg +1 -0
  5273. docsforge/themes/material/templates/.icons/material/compass.svg +1 -0
  5274. docsforge/themes/material/templates/.icons/material/compost.svg +1 -0
  5275. docsforge/themes/material/templates/.icons/material/cone-off.svg +1 -0
  5276. docsforge/themes/material/templates/.icons/material/cone.svg +1 -0
  5277. docsforge/themes/material/templates/.icons/material/connection.svg +1 -0
  5278. docsforge/themes/material/templates/.icons/material/console-line.svg +1 -0
  5279. docsforge/themes/material/templates/.icons/material/console-network-outline.svg +1 -0
  5280. docsforge/themes/material/templates/.icons/material/console-network.svg +1 -0
  5281. docsforge/themes/material/templates/.icons/material/console.svg +1 -0
  5282. docsforge/themes/material/templates/.icons/material/consolidate.svg +1 -0
  5283. docsforge/themes/material/templates/.icons/material/contactless-payment-circle-outline.svg +1 -0
  5284. docsforge/themes/material/templates/.icons/material/contactless-payment-circle.svg +1 -0
  5285. docsforge/themes/material/templates/.icons/material/contactless-payment.svg +1 -0
  5286. docsforge/themes/material/templates/.icons/material/contacts-outline.svg +1 -0
  5287. docsforge/themes/material/templates/.icons/material/contacts.svg +1 -0
  5288. docsforge/themes/material/templates/.icons/material/contain-end.svg +1 -0
  5289. docsforge/themes/material/templates/.icons/material/contain-start.svg +1 -0
  5290. docsforge/themes/material/templates/.icons/material/contain.svg +1 -0
  5291. docsforge/themes/material/templates/.icons/material/content-copy.svg +1 -0
  5292. docsforge/themes/material/templates/.icons/material/content-cut.svg +1 -0
  5293. docsforge/themes/material/templates/.icons/material/content-duplicate.svg +1 -0
  5294. docsforge/themes/material/templates/.icons/material/content-paste.svg +1 -0
  5295. docsforge/themes/material/templates/.icons/material/content-save-alert-outline.svg +1 -0
  5296. docsforge/themes/material/templates/.icons/material/content-save-alert.svg +1 -0
  5297. docsforge/themes/material/templates/.icons/material/content-save-all-outline.svg +1 -0
  5298. docsforge/themes/material/templates/.icons/material/content-save-all.svg +1 -0
  5299. docsforge/themes/material/templates/.icons/material/content-save-check-outline.svg +1 -0
  5300. docsforge/themes/material/templates/.icons/material/content-save-check.svg +1 -0
  5301. docsforge/themes/material/templates/.icons/material/content-save-cog-outline.svg +1 -0
  5302. docsforge/themes/material/templates/.icons/material/content-save-cog.svg +1 -0
  5303. docsforge/themes/material/templates/.icons/material/content-save-edit-outline.svg +1 -0
  5304. docsforge/themes/material/templates/.icons/material/content-save-edit.svg +1 -0
  5305. docsforge/themes/material/templates/.icons/material/content-save-minus-outline.svg +1 -0
  5306. docsforge/themes/material/templates/.icons/material/content-save-minus.svg +1 -0
  5307. docsforge/themes/material/templates/.icons/material/content-save-move-outline.svg +1 -0
  5308. docsforge/themes/material/templates/.icons/material/content-save-move.svg +1 -0
  5309. docsforge/themes/material/templates/.icons/material/content-save-off-outline.svg +1 -0
  5310. docsforge/themes/material/templates/.icons/material/content-save-off.svg +1 -0
  5311. docsforge/themes/material/templates/.icons/material/content-save-outline.svg +1 -0
  5312. docsforge/themes/material/templates/.icons/material/content-save-plus-outline.svg +1 -0
  5313. docsforge/themes/material/templates/.icons/material/content-save-plus.svg +1 -0
  5314. docsforge/themes/material/templates/.icons/material/content-save-settings-outline.svg +1 -0
  5315. docsforge/themes/material/templates/.icons/material/content-save-settings.svg +1 -0
  5316. docsforge/themes/material/templates/.icons/material/content-save.svg +1 -0
  5317. docsforge/themes/material/templates/.icons/material/contrast-box.svg +1 -0
  5318. docsforge/themes/material/templates/.icons/material/contrast-circle.svg +1 -0
  5319. docsforge/themes/material/templates/.icons/material/contrast.svg +1 -0
  5320. docsforge/themes/material/templates/.icons/material/controller-classic-outline.svg +1 -0
  5321. docsforge/themes/material/templates/.icons/material/controller-classic.svg +1 -0
  5322. docsforge/themes/material/templates/.icons/material/controller-off.svg +1 -0
  5323. docsforge/themes/material/templates/.icons/material/controller.svg +1 -0
  5324. docsforge/themes/material/templates/.icons/material/cookie-alert-outline.svg +1 -0
  5325. docsforge/themes/material/templates/.icons/material/cookie-alert.svg +1 -0
  5326. docsforge/themes/material/templates/.icons/material/cookie-check-outline.svg +1 -0
  5327. docsforge/themes/material/templates/.icons/material/cookie-check.svg +1 -0
  5328. docsforge/themes/material/templates/.icons/material/cookie-clock-outline.svg +1 -0
  5329. docsforge/themes/material/templates/.icons/material/cookie-clock.svg +1 -0
  5330. docsforge/themes/material/templates/.icons/material/cookie-cog-outline.svg +1 -0
  5331. docsforge/themes/material/templates/.icons/material/cookie-cog.svg +1 -0
  5332. docsforge/themes/material/templates/.icons/material/cookie-edit-outline.svg +1 -0
  5333. docsforge/themes/material/templates/.icons/material/cookie-edit.svg +1 -0
  5334. docsforge/themes/material/templates/.icons/material/cookie-lock-outline.svg +1 -0
  5335. docsforge/themes/material/templates/.icons/material/cookie-lock.svg +1 -0
  5336. docsforge/themes/material/templates/.icons/material/cookie-minus-outline.svg +1 -0
  5337. docsforge/themes/material/templates/.icons/material/cookie-minus.svg +1 -0
  5338. docsforge/themes/material/templates/.icons/material/cookie-off-outline.svg +1 -0
  5339. docsforge/themes/material/templates/.icons/material/cookie-off.svg +1 -0
  5340. docsforge/themes/material/templates/.icons/material/cookie-outline.svg +1 -0
  5341. docsforge/themes/material/templates/.icons/material/cookie-plus-outline.svg +1 -0
  5342. docsforge/themes/material/templates/.icons/material/cookie-plus.svg +1 -0
  5343. docsforge/themes/material/templates/.icons/material/cookie-refresh-outline.svg +1 -0
  5344. docsforge/themes/material/templates/.icons/material/cookie-refresh.svg +1 -0
  5345. docsforge/themes/material/templates/.icons/material/cookie-remove-outline.svg +1 -0
  5346. docsforge/themes/material/templates/.icons/material/cookie-remove.svg +1 -0
  5347. docsforge/themes/material/templates/.icons/material/cookie-settings-outline.svg +1 -0
  5348. docsforge/themes/material/templates/.icons/material/cookie-settings.svg +1 -0
  5349. docsforge/themes/material/templates/.icons/material/cookie.svg +1 -0
  5350. docsforge/themes/material/templates/.icons/material/coolant-temperature.svg +1 -0
  5351. docsforge/themes/material/templates/.icons/material/copyleft.svg +1 -0
  5352. docsforge/themes/material/templates/.icons/material/copyright.svg +1 -0
  5353. docsforge/themes/material/templates/.icons/material/cordova.svg +1 -0
  5354. docsforge/themes/material/templates/.icons/material/corn-off.svg +1 -0
  5355. docsforge/themes/material/templates/.icons/material/corn.svg +1 -0
  5356. docsforge/themes/material/templates/.icons/material/cosine-wave.svg +1 -0
  5357. docsforge/themes/material/templates/.icons/material/counter.svg +1 -0
  5358. docsforge/themes/material/templates/.icons/material/countertop-outline.svg +1 -0
  5359. docsforge/themes/material/templates/.icons/material/countertop.svg +1 -0
  5360. docsforge/themes/material/templates/.icons/material/cow-off.svg +1 -0
  5361. docsforge/themes/material/templates/.icons/material/cow.svg +1 -0
  5362. docsforge/themes/material/templates/.icons/material/cpu-32-bit.svg +1 -0
  5363. docsforge/themes/material/templates/.icons/material/cpu-64-bit.svg +1 -0
  5364. docsforge/themes/material/templates/.icons/material/cradle-outline.svg +1 -0
  5365. docsforge/themes/material/templates/.icons/material/cradle.svg +1 -0
  5366. docsforge/themes/material/templates/.icons/material/crane.svg +1 -0
  5367. docsforge/themes/material/templates/.icons/material/creation-outline.svg +1 -0
  5368. docsforge/themes/material/templates/.icons/material/creation.svg +1 -0
  5369. docsforge/themes/material/templates/.icons/material/creative-commons.svg +1 -0
  5370. docsforge/themes/material/templates/.icons/material/credit-card-check-outline.svg +1 -0
  5371. docsforge/themes/material/templates/.icons/material/credit-card-check.svg +1 -0
  5372. docsforge/themes/material/templates/.icons/material/credit-card-chip-outline.svg +1 -0
  5373. docsforge/themes/material/templates/.icons/material/credit-card-chip.svg +1 -0
  5374. docsforge/themes/material/templates/.icons/material/credit-card-clock-outline.svg +1 -0
  5375. docsforge/themes/material/templates/.icons/material/credit-card-clock.svg +1 -0
  5376. docsforge/themes/material/templates/.icons/material/credit-card-edit-outline.svg +1 -0
  5377. docsforge/themes/material/templates/.icons/material/credit-card-edit.svg +1 -0
  5378. docsforge/themes/material/templates/.icons/material/credit-card-fast-outline.svg +1 -0
  5379. docsforge/themes/material/templates/.icons/material/credit-card-fast.svg +1 -0
  5380. docsforge/themes/material/templates/.icons/material/credit-card-lock-outline.svg +1 -0
  5381. docsforge/themes/material/templates/.icons/material/credit-card-lock.svg +1 -0
  5382. docsforge/themes/material/templates/.icons/material/credit-card-marker-outline.svg +1 -0
  5383. docsforge/themes/material/templates/.icons/material/credit-card-marker.svg +1 -0
  5384. docsforge/themes/material/templates/.icons/material/credit-card-minus-outline.svg +1 -0
  5385. docsforge/themes/material/templates/.icons/material/credit-card-minus.svg +1 -0
  5386. docsforge/themes/material/templates/.icons/material/credit-card-multiple-outline.svg +1 -0
  5387. docsforge/themes/material/templates/.icons/material/credit-card-multiple.svg +1 -0
  5388. docsforge/themes/material/templates/.icons/material/credit-card-off-outline.svg +1 -0
  5389. docsforge/themes/material/templates/.icons/material/credit-card-off.svg +1 -0
  5390. docsforge/themes/material/templates/.icons/material/credit-card-outline.svg +1 -0
  5391. docsforge/themes/material/templates/.icons/material/credit-card-plus-outline.svg +1 -0
  5392. docsforge/themes/material/templates/.icons/material/credit-card-plus.svg +1 -0
  5393. docsforge/themes/material/templates/.icons/material/credit-card-refresh-outline.svg +1 -0
  5394. docsforge/themes/material/templates/.icons/material/credit-card-refresh.svg +1 -0
  5395. docsforge/themes/material/templates/.icons/material/credit-card-refund-outline.svg +1 -0
  5396. docsforge/themes/material/templates/.icons/material/credit-card-refund.svg +1 -0
  5397. docsforge/themes/material/templates/.icons/material/credit-card-remove-outline.svg +1 -0
  5398. docsforge/themes/material/templates/.icons/material/credit-card-remove.svg +1 -0
  5399. docsforge/themes/material/templates/.icons/material/credit-card-scan-outline.svg +1 -0
  5400. docsforge/themes/material/templates/.icons/material/credit-card-scan.svg +1 -0
  5401. docsforge/themes/material/templates/.icons/material/credit-card-search-outline.svg +1 -0
  5402. docsforge/themes/material/templates/.icons/material/credit-card-search.svg +1 -0
  5403. docsforge/themes/material/templates/.icons/material/credit-card-settings-outline.svg +1 -0
  5404. docsforge/themes/material/templates/.icons/material/credit-card-settings.svg +1 -0
  5405. docsforge/themes/material/templates/.icons/material/credit-card-sync-outline.svg +1 -0
  5406. docsforge/themes/material/templates/.icons/material/credit-card-sync.svg +1 -0
  5407. docsforge/themes/material/templates/.icons/material/credit-card-wireless-off-outline.svg +1 -0
  5408. docsforge/themes/material/templates/.icons/material/credit-card-wireless-off.svg +1 -0
  5409. docsforge/themes/material/templates/.icons/material/credit-card-wireless-outline.svg +1 -0
  5410. docsforge/themes/material/templates/.icons/material/credit-card-wireless.svg +1 -0
  5411. docsforge/themes/material/templates/.icons/material/credit-card.svg +1 -0
  5412. docsforge/themes/material/templates/.icons/material/cricket.svg +1 -0
  5413. docsforge/themes/material/templates/.icons/material/crop-free.svg +1 -0
  5414. docsforge/themes/material/templates/.icons/material/crop-landscape.svg +1 -0
  5415. docsforge/themes/material/templates/.icons/material/crop-portrait.svg +1 -0
  5416. docsforge/themes/material/templates/.icons/material/crop-rotate.svg +1 -0
  5417. docsforge/themes/material/templates/.icons/material/crop-square.svg +1 -0
  5418. docsforge/themes/material/templates/.icons/material/crop.svg +1 -0
  5419. docsforge/themes/material/templates/.icons/material/cross-bolnisi.svg +1 -0
  5420. docsforge/themes/material/templates/.icons/material/cross-celtic.svg +1 -0
  5421. docsforge/themes/material/templates/.icons/material/cross-outline.svg +1 -0
  5422. docsforge/themes/material/templates/.icons/material/cross.svg +1 -0
  5423. docsforge/themes/material/templates/.icons/material/crosshairs-gps.svg +1 -0
  5424. docsforge/themes/material/templates/.icons/material/crosshairs-off.svg +1 -0
  5425. docsforge/themes/material/templates/.icons/material/crosshairs-question.svg +1 -0
  5426. docsforge/themes/material/templates/.icons/material/crosshairs.svg +1 -0
  5427. docsforge/themes/material/templates/.icons/material/crowd.svg +1 -0
  5428. docsforge/themes/material/templates/.icons/material/crown-circle-outline.svg +1 -0
  5429. docsforge/themes/material/templates/.icons/material/crown-circle.svg +1 -0
  5430. docsforge/themes/material/templates/.icons/material/crown-outline.svg +1 -0
  5431. docsforge/themes/material/templates/.icons/material/crown.svg +1 -0
  5432. docsforge/themes/material/templates/.icons/material/cryengine.svg +1 -0
  5433. docsforge/themes/material/templates/.icons/material/crystal-ball.svg +1 -0
  5434. docsforge/themes/material/templates/.icons/material/cube-off-outline.svg +1 -0
  5435. docsforge/themes/material/templates/.icons/material/cube-off.svg +1 -0
  5436. docsforge/themes/material/templates/.icons/material/cube-outline.svg +1 -0
  5437. docsforge/themes/material/templates/.icons/material/cube-scan.svg +1 -0
  5438. docsforge/themes/material/templates/.icons/material/cube-send.svg +1 -0
  5439. docsforge/themes/material/templates/.icons/material/cube-unfolded.svg +1 -0
  5440. docsforge/themes/material/templates/.icons/material/cube.svg +1 -0
  5441. docsforge/themes/material/templates/.icons/material/cup-off-outline.svg +1 -0
  5442. docsforge/themes/material/templates/.icons/material/cup-off.svg +1 -0
  5443. docsforge/themes/material/templates/.icons/material/cup-outline.svg +1 -0
  5444. docsforge/themes/material/templates/.icons/material/cup-water.svg +1 -0
  5445. docsforge/themes/material/templates/.icons/material/cup.svg +1 -0
  5446. docsforge/themes/material/templates/.icons/material/cupboard-outline.svg +1 -0
  5447. docsforge/themes/material/templates/.icons/material/cupboard.svg +1 -0
  5448. docsforge/themes/material/templates/.icons/material/cupcake.svg +1 -0
  5449. docsforge/themes/material/templates/.icons/material/curling.svg +1 -0
  5450. docsforge/themes/material/templates/.icons/material/currency-bdt.svg +1 -0
  5451. docsforge/themes/material/templates/.icons/material/currency-brl.svg +1 -0
  5452. docsforge/themes/material/templates/.icons/material/currency-btc.svg +1 -0
  5453. docsforge/themes/material/templates/.icons/material/currency-cny.svg +1 -0
  5454. docsforge/themes/material/templates/.icons/material/currency-eth.svg +1 -0
  5455. docsforge/themes/material/templates/.icons/material/currency-eur-off.svg +1 -0
  5456. docsforge/themes/material/templates/.icons/material/currency-eur.svg +1 -0
  5457. docsforge/themes/material/templates/.icons/material/currency-fra.svg +1 -0
  5458. docsforge/themes/material/templates/.icons/material/currency-gbp.svg +1 -0
  5459. docsforge/themes/material/templates/.icons/material/currency-ils.svg +1 -0
  5460. docsforge/themes/material/templates/.icons/material/currency-inr.svg +1 -0
  5461. docsforge/themes/material/templates/.icons/material/currency-jpy.svg +1 -0
  5462. docsforge/themes/material/templates/.icons/material/currency-krw.svg +1 -0
  5463. docsforge/themes/material/templates/.icons/material/currency-kzt.svg +1 -0
  5464. docsforge/themes/material/templates/.icons/material/currency-mnt.svg +1 -0
  5465. docsforge/themes/material/templates/.icons/material/currency-ngn.svg +1 -0
  5466. docsforge/themes/material/templates/.icons/material/currency-php.svg +1 -0
  5467. docsforge/themes/material/templates/.icons/material/currency-rial.svg +1 -0
  5468. docsforge/themes/material/templates/.icons/material/currency-rub.svg +1 -0
  5469. docsforge/themes/material/templates/.icons/material/currency-rupee.svg +1 -0
  5470. docsforge/themes/material/templates/.icons/material/currency-sign.svg +1 -0
  5471. docsforge/themes/material/templates/.icons/material/currency-thb.svg +1 -0
  5472. docsforge/themes/material/templates/.icons/material/currency-try.svg +1 -0
  5473. docsforge/themes/material/templates/.icons/material/currency-twd.svg +1 -0
  5474. docsforge/themes/material/templates/.icons/material/currency-uah.svg +1 -0
  5475. docsforge/themes/material/templates/.icons/material/currency-usd-off.svg +1 -0
  5476. docsforge/themes/material/templates/.icons/material/currency-usd.svg +1 -0
  5477. docsforge/themes/material/templates/.icons/material/current-ac.svg +1 -0
  5478. docsforge/themes/material/templates/.icons/material/current-dc.svg +1 -0
  5479. docsforge/themes/material/templates/.icons/material/cursor-default-click-outline.svg +1 -0
  5480. docsforge/themes/material/templates/.icons/material/cursor-default-click.svg +1 -0
  5481. docsforge/themes/material/templates/.icons/material/cursor-default-gesture-outline.svg +1 -0
  5482. docsforge/themes/material/templates/.icons/material/cursor-default-gesture.svg +1 -0
  5483. docsforge/themes/material/templates/.icons/material/cursor-default-outline.svg +1 -0
  5484. docsforge/themes/material/templates/.icons/material/cursor-default.svg +1 -0
  5485. docsforge/themes/material/templates/.icons/material/cursor-move.svg +1 -0
  5486. docsforge/themes/material/templates/.icons/material/cursor-pointer.svg +1 -0
  5487. docsforge/themes/material/templates/.icons/material/cursor-text.svg +1 -0
  5488. docsforge/themes/material/templates/.icons/material/curtains-closed.svg +1 -0
  5489. docsforge/themes/material/templates/.icons/material/curtains.svg +1 -0
  5490. docsforge/themes/material/templates/.icons/material/cylinder-off.svg +1 -0
  5491. docsforge/themes/material/templates/.icons/material/cylinder.svg +1 -0
  5492. docsforge/themes/material/templates/.icons/material/dance-ballroom.svg +1 -0
  5493. docsforge/themes/material/templates/.icons/material/dance-pole.svg +1 -0
  5494. docsforge/themes/material/templates/.icons/material/data-matrix-edit.svg +1 -0
  5495. docsforge/themes/material/templates/.icons/material/data-matrix-minus.svg +1 -0
  5496. docsforge/themes/material/templates/.icons/material/data-matrix-plus.svg +1 -0
  5497. docsforge/themes/material/templates/.icons/material/data-matrix-remove.svg +1 -0
  5498. docsforge/themes/material/templates/.icons/material/data-matrix-scan.svg +1 -0
  5499. docsforge/themes/material/templates/.icons/material/data-matrix.svg +1 -0
  5500. docsforge/themes/material/templates/.icons/material/database-alert-outline.svg +1 -0
  5501. docsforge/themes/material/templates/.icons/material/database-alert.svg +1 -0
  5502. docsforge/themes/material/templates/.icons/material/database-arrow-down-outline.svg +1 -0
  5503. docsforge/themes/material/templates/.icons/material/database-arrow-down.svg +1 -0
  5504. docsforge/themes/material/templates/.icons/material/database-arrow-left-outline.svg +1 -0
  5505. docsforge/themes/material/templates/.icons/material/database-arrow-left.svg +1 -0
  5506. docsforge/themes/material/templates/.icons/material/database-arrow-right-outline.svg +1 -0
  5507. docsforge/themes/material/templates/.icons/material/database-arrow-right.svg +1 -0
  5508. docsforge/themes/material/templates/.icons/material/database-arrow-up-outline.svg +1 -0
  5509. docsforge/themes/material/templates/.icons/material/database-arrow-up.svg +1 -0
  5510. docsforge/themes/material/templates/.icons/material/database-check-outline.svg +1 -0
  5511. docsforge/themes/material/templates/.icons/material/database-check.svg +1 -0
  5512. docsforge/themes/material/templates/.icons/material/database-clock-outline.svg +1 -0
  5513. docsforge/themes/material/templates/.icons/material/database-clock.svg +1 -0
  5514. docsforge/themes/material/templates/.icons/material/database-cog-outline.svg +1 -0
  5515. docsforge/themes/material/templates/.icons/material/database-cog.svg +1 -0
  5516. docsforge/themes/material/templates/.icons/material/database-edit-outline.svg +1 -0
  5517. docsforge/themes/material/templates/.icons/material/database-edit.svg +1 -0
  5518. docsforge/themes/material/templates/.icons/material/database-export-outline.svg +1 -0
  5519. docsforge/themes/material/templates/.icons/material/database-export.svg +1 -0
  5520. docsforge/themes/material/templates/.icons/material/database-eye-off-outline.svg +1 -0
  5521. docsforge/themes/material/templates/.icons/material/database-eye-off.svg +1 -0
  5522. docsforge/themes/material/templates/.icons/material/database-eye-outline.svg +1 -0
  5523. docsforge/themes/material/templates/.icons/material/database-eye.svg +1 -0
  5524. docsforge/themes/material/templates/.icons/material/database-import-outline.svg +1 -0
  5525. docsforge/themes/material/templates/.icons/material/database-import.svg +1 -0
  5526. docsforge/themes/material/templates/.icons/material/database-lock-outline.svg +1 -0
  5527. docsforge/themes/material/templates/.icons/material/database-lock.svg +1 -0
  5528. docsforge/themes/material/templates/.icons/material/database-marker-outline.svg +1 -0
  5529. docsforge/themes/material/templates/.icons/material/database-marker.svg +1 -0
  5530. docsforge/themes/material/templates/.icons/material/database-minus-outline.svg +1 -0
  5531. docsforge/themes/material/templates/.icons/material/database-minus.svg +1 -0
  5532. docsforge/themes/material/templates/.icons/material/database-off-outline.svg +1 -0
  5533. docsforge/themes/material/templates/.icons/material/database-off.svg +1 -0
  5534. docsforge/themes/material/templates/.icons/material/database-outline.svg +1 -0
  5535. docsforge/themes/material/templates/.icons/material/database-plus-outline.svg +1 -0
  5536. docsforge/themes/material/templates/.icons/material/database-plus.svg +1 -0
  5537. docsforge/themes/material/templates/.icons/material/database-refresh-outline.svg +1 -0
  5538. docsforge/themes/material/templates/.icons/material/database-refresh.svg +1 -0
  5539. docsforge/themes/material/templates/.icons/material/database-remove-outline.svg +1 -0
  5540. docsforge/themes/material/templates/.icons/material/database-remove.svg +1 -0
  5541. docsforge/themes/material/templates/.icons/material/database-search-outline.svg +1 -0
  5542. docsforge/themes/material/templates/.icons/material/database-search.svg +1 -0
  5543. docsforge/themes/material/templates/.icons/material/database-settings-outline.svg +1 -0
  5544. docsforge/themes/material/templates/.icons/material/database-settings.svg +1 -0
  5545. docsforge/themes/material/templates/.icons/material/database-sync-outline.svg +1 -0
  5546. docsforge/themes/material/templates/.icons/material/database-sync.svg +1 -0
  5547. docsforge/themes/material/templates/.icons/material/database.svg +1 -0
  5548. docsforge/themes/material/templates/.icons/material/death-star-variant.svg +1 -0
  5549. docsforge/themes/material/templates/.icons/material/death-star.svg +1 -0
  5550. docsforge/themes/material/templates/.icons/material/deathly-hallows.svg +1 -0
  5551. docsforge/themes/material/templates/.icons/material/debian.svg +1 -0
  5552. docsforge/themes/material/templates/.icons/material/debug-step-into.svg +1 -0
  5553. docsforge/themes/material/templates/.icons/material/debug-step-out.svg +1 -0
  5554. docsforge/themes/material/templates/.icons/material/debug-step-over.svg +1 -0
  5555. docsforge/themes/material/templates/.icons/material/decagram-outline.svg +1 -0
  5556. docsforge/themes/material/templates/.icons/material/decagram.svg +1 -0
  5557. docsforge/themes/material/templates/.icons/material/decimal-comma-decrease.svg +1 -0
  5558. docsforge/themes/material/templates/.icons/material/decimal-comma-increase.svg +1 -0
  5559. docsforge/themes/material/templates/.icons/material/decimal-comma.svg +1 -0
  5560. docsforge/themes/material/templates/.icons/material/decimal-decrease.svg +1 -0
  5561. docsforge/themes/material/templates/.icons/material/decimal-increase.svg +1 -0
  5562. docsforge/themes/material/templates/.icons/material/decimal.svg +1 -0
  5563. docsforge/themes/material/templates/.icons/material/delete-alert-outline.svg +1 -0
  5564. docsforge/themes/material/templates/.icons/material/delete-alert.svg +1 -0
  5565. docsforge/themes/material/templates/.icons/material/delete-circle-outline.svg +1 -0
  5566. docsforge/themes/material/templates/.icons/material/delete-circle.svg +1 -0
  5567. docsforge/themes/material/templates/.icons/material/delete-clock-outline.svg +1 -0
  5568. docsforge/themes/material/templates/.icons/material/delete-clock.svg +1 -0
  5569. docsforge/themes/material/templates/.icons/material/delete-empty-outline.svg +1 -0
  5570. docsforge/themes/material/templates/.icons/material/delete-empty.svg +1 -0
  5571. docsforge/themes/material/templates/.icons/material/delete-forever-outline.svg +1 -0
  5572. docsforge/themes/material/templates/.icons/material/delete-forever.svg +1 -0
  5573. docsforge/themes/material/templates/.icons/material/delete-off-outline.svg +1 -0
  5574. docsforge/themes/material/templates/.icons/material/delete-off.svg +1 -0
  5575. docsforge/themes/material/templates/.icons/material/delete-outline.svg +1 -0
  5576. docsforge/themes/material/templates/.icons/material/delete-restore.svg +1 -0
  5577. docsforge/themes/material/templates/.icons/material/delete-sweep-outline.svg +1 -0
  5578. docsforge/themes/material/templates/.icons/material/delete-sweep.svg +1 -0
  5579. docsforge/themes/material/templates/.icons/material/delete-variant.svg +1 -0
  5580. docsforge/themes/material/templates/.icons/material/delete.svg +1 -0
  5581. docsforge/themes/material/templates/.icons/material/delta.svg +1 -0
  5582. docsforge/themes/material/templates/.icons/material/desk-lamp-off.svg +1 -0
  5583. docsforge/themes/material/templates/.icons/material/desk-lamp-on.svg +1 -0
  5584. docsforge/themes/material/templates/.icons/material/desk-lamp.svg +1 -0
  5585. docsforge/themes/material/templates/.icons/material/desk.svg +1 -0
  5586. docsforge/themes/material/templates/.icons/material/deskphone.svg +1 -0
  5587. docsforge/themes/material/templates/.icons/material/desktop-classic.svg +1 -0
  5588. docsforge/themes/material/templates/.icons/material/desktop-tower-monitor.svg +1 -0
  5589. docsforge/themes/material/templates/.icons/material/desktop-tower.svg +1 -0
  5590. docsforge/themes/material/templates/.icons/material/details.svg +1 -0
  5591. docsforge/themes/material/templates/.icons/material/dev-to.svg +1 -0
  5592. docsforge/themes/material/templates/.icons/material/developer-board.svg +1 -0
  5593. docsforge/themes/material/templates/.icons/material/deviantart.svg +1 -0
  5594. docsforge/themes/material/templates/.icons/material/devices.svg +1 -0
  5595. docsforge/themes/material/templates/.icons/material/dharmachakra.svg +1 -0
  5596. docsforge/themes/material/templates/.icons/material/diabetes.svg +1 -0
  5597. docsforge/themes/material/templates/.icons/material/dialpad.svg +1 -0
  5598. docsforge/themes/material/templates/.icons/material/diameter-outline.svg +1 -0
  5599. docsforge/themes/material/templates/.icons/material/diameter-variant.svg +1 -0
  5600. docsforge/themes/material/templates/.icons/material/diameter.svg +1 -0
  5601. docsforge/themes/material/templates/.icons/material/diamond-outline.svg +1 -0
  5602. docsforge/themes/material/templates/.icons/material/diamond-stone.svg +1 -0
  5603. docsforge/themes/material/templates/.icons/material/diamond.svg +1 -0
  5604. docsforge/themes/material/templates/.icons/material/diaper-outline.svg +1 -0
  5605. docsforge/themes/material/templates/.icons/material/dice-1-outline.svg +1 -0
  5606. docsforge/themes/material/templates/.icons/material/dice-1.svg +1 -0
  5607. docsforge/themes/material/templates/.icons/material/dice-2-outline.svg +1 -0
  5608. docsforge/themes/material/templates/.icons/material/dice-2.svg +1 -0
  5609. docsforge/themes/material/templates/.icons/material/dice-3-outline.svg +1 -0
  5610. docsforge/themes/material/templates/.icons/material/dice-3.svg +1 -0
  5611. docsforge/themes/material/templates/.icons/material/dice-4-outline.svg +1 -0
  5612. docsforge/themes/material/templates/.icons/material/dice-4.svg +1 -0
  5613. docsforge/themes/material/templates/.icons/material/dice-5-outline.svg +1 -0
  5614. docsforge/themes/material/templates/.icons/material/dice-5.svg +1 -0
  5615. docsforge/themes/material/templates/.icons/material/dice-6-outline.svg +1 -0
  5616. docsforge/themes/material/templates/.icons/material/dice-6.svg +1 -0
  5617. docsforge/themes/material/templates/.icons/material/dice-d10-outline.svg +1 -0
  5618. docsforge/themes/material/templates/.icons/material/dice-d10.svg +1 -0
  5619. docsforge/themes/material/templates/.icons/material/dice-d12-outline.svg +1 -0
  5620. docsforge/themes/material/templates/.icons/material/dice-d12.svg +1 -0
  5621. docsforge/themes/material/templates/.icons/material/dice-d20-outline.svg +1 -0
  5622. docsforge/themes/material/templates/.icons/material/dice-d20.svg +1 -0
  5623. docsforge/themes/material/templates/.icons/material/dice-d4-outline.svg +1 -0
  5624. docsforge/themes/material/templates/.icons/material/dice-d4.svg +1 -0
  5625. docsforge/themes/material/templates/.icons/material/dice-d6-outline.svg +1 -0
  5626. docsforge/themes/material/templates/.icons/material/dice-d6.svg +1 -0
  5627. docsforge/themes/material/templates/.icons/material/dice-d8-outline.svg +1 -0
  5628. docsforge/themes/material/templates/.icons/material/dice-d8.svg +1 -0
  5629. docsforge/themes/material/templates/.icons/material/dice-multiple-outline.svg +1 -0
  5630. docsforge/themes/material/templates/.icons/material/dice-multiple.svg +1 -0
  5631. docsforge/themes/material/templates/.icons/material/digital-ocean.svg +1 -0
  5632. docsforge/themes/material/templates/.icons/material/dip-switch.svg +1 -0
  5633. docsforge/themes/material/templates/.icons/material/directions-fork.svg +1 -0
  5634. docsforge/themes/material/templates/.icons/material/directions.svg +1 -0
  5635. docsforge/themes/material/templates/.icons/material/disc-alert.svg +1 -0
  5636. docsforge/themes/material/templates/.icons/material/disc-player.svg +1 -0
  5637. docsforge/themes/material/templates/.icons/material/disc.svg +1 -0
  5638. docsforge/themes/material/templates/.icons/material/dishwasher-alert.svg +1 -0
  5639. docsforge/themes/material/templates/.icons/material/dishwasher-off.svg +1 -0
  5640. docsforge/themes/material/templates/.icons/material/dishwasher.svg +1 -0
  5641. docsforge/themes/material/templates/.icons/material/disqus.svg +1 -0
  5642. docsforge/themes/material/templates/.icons/material/distribute-horizontal-center.svg +1 -0
  5643. docsforge/themes/material/templates/.icons/material/distribute-horizontal-left.svg +1 -0
  5644. docsforge/themes/material/templates/.icons/material/distribute-horizontal-right.svg +1 -0
  5645. docsforge/themes/material/templates/.icons/material/distribute-vertical-bottom.svg +1 -0
  5646. docsforge/themes/material/templates/.icons/material/distribute-vertical-center.svg +1 -0
  5647. docsforge/themes/material/templates/.icons/material/distribute-vertical-top.svg +1 -0
  5648. docsforge/themes/material/templates/.icons/material/diversify.svg +1 -0
  5649. docsforge/themes/material/templates/.icons/material/diving-flippers.svg +1 -0
  5650. docsforge/themes/material/templates/.icons/material/diving-helmet.svg +1 -0
  5651. docsforge/themes/material/templates/.icons/material/diving-scuba-flag.svg +1 -0
  5652. docsforge/themes/material/templates/.icons/material/diving-scuba-mask.svg +1 -0
  5653. docsforge/themes/material/templates/.icons/material/diving-scuba-tank-multiple.svg +1 -0
  5654. docsforge/themes/material/templates/.icons/material/diving-scuba-tank.svg +1 -0
  5655. docsforge/themes/material/templates/.icons/material/diving-scuba.svg +1 -0
  5656. docsforge/themes/material/templates/.icons/material/diving-snorkel.svg +1 -0
  5657. docsforge/themes/material/templates/.icons/material/diving.svg +1 -0
  5658. docsforge/themes/material/templates/.icons/material/division-box.svg +1 -0
  5659. docsforge/themes/material/templates/.icons/material/division.svg +1 -0
  5660. docsforge/themes/material/templates/.icons/material/dlna.svg +1 -0
  5661. docsforge/themes/material/templates/.icons/material/dna.svg +1 -0
  5662. docsforge/themes/material/templates/.icons/material/dns-outline.svg +1 -0
  5663. docsforge/themes/material/templates/.icons/material/dns.svg +1 -0
  5664. docsforge/themes/material/templates/.icons/material/dock-bottom.svg +1 -0
  5665. docsforge/themes/material/templates/.icons/material/dock-left.svg +1 -0
  5666. docsforge/themes/material/templates/.icons/material/dock-right.svg +1 -0
  5667. docsforge/themes/material/templates/.icons/material/dock-top.svg +1 -0
  5668. docsforge/themes/material/templates/.icons/material/dock-window.svg +1 -0
  5669. docsforge/themes/material/templates/.icons/material/docker.svg +1 -0
  5670. docsforge/themes/material/templates/.icons/material/doctor.svg +1 -0
  5671. docsforge/themes/material/templates/.icons/material/dog-service.svg +1 -0
  5672. docsforge/themes/material/templates/.icons/material/dog-side-off.svg +1 -0
  5673. docsforge/themes/material/templates/.icons/material/dog-side.svg +1 -0
  5674. docsforge/themes/material/templates/.icons/material/dog.svg +1 -0
  5675. docsforge/themes/material/templates/.icons/material/dolby.svg +1 -0
  5676. docsforge/themes/material/templates/.icons/material/dolly.svg +1 -0
  5677. docsforge/themes/material/templates/.icons/material/dolphin.svg +1 -0
  5678. docsforge/themes/material/templates/.icons/material/domain-off.svg +1 -0
  5679. docsforge/themes/material/templates/.icons/material/domain-plus.svg +1 -0
  5680. docsforge/themes/material/templates/.icons/material/domain-remove.svg +1 -0
  5681. docsforge/themes/material/templates/.icons/material/domain-switch.svg +1 -0
  5682. docsforge/themes/material/templates/.icons/material/domain.svg +1 -0
  5683. docsforge/themes/material/templates/.icons/material/dome-light.svg +1 -0
  5684. docsforge/themes/material/templates/.icons/material/domino-mask.svg +1 -0
  5685. docsforge/themes/material/templates/.icons/material/donkey.svg +1 -0
  5686. docsforge/themes/material/templates/.icons/material/door-closed-cancel.svg +1 -0
  5687. docsforge/themes/material/templates/.icons/material/door-closed-lock.svg +1 -0
  5688. docsforge/themes/material/templates/.icons/material/door-closed.svg +1 -0
  5689. docsforge/themes/material/templates/.icons/material/door-open.svg +1 -0
  5690. docsforge/themes/material/templates/.icons/material/door-sliding-lock.svg +1 -0
  5691. docsforge/themes/material/templates/.icons/material/door-sliding-open.svg +1 -0
  5692. docsforge/themes/material/templates/.icons/material/door-sliding.svg +1 -0
  5693. docsforge/themes/material/templates/.icons/material/door.svg +1 -0
  5694. docsforge/themes/material/templates/.icons/material/doorbell-video.svg +1 -0
  5695. docsforge/themes/material/templates/.icons/material/doorbell.svg +1 -0
  5696. docsforge/themes/material/templates/.icons/material/dot-net.svg +1 -0
  5697. docsforge/themes/material/templates/.icons/material/dots-circle.svg +1 -0
  5698. docsforge/themes/material/templates/.icons/material/dots-grid.svg +1 -0
  5699. docsforge/themes/material/templates/.icons/material/dots-hexagon.svg +1 -0
  5700. docsforge/themes/material/templates/.icons/material/dots-horizontal-circle-outline.svg +1 -0
  5701. docsforge/themes/material/templates/.icons/material/dots-horizontal-circle.svg +1 -0
  5702. docsforge/themes/material/templates/.icons/material/dots-horizontal.svg +1 -0
  5703. docsforge/themes/material/templates/.icons/material/dots-square.svg +1 -0
  5704. docsforge/themes/material/templates/.icons/material/dots-triangle.svg +1 -0
  5705. docsforge/themes/material/templates/.icons/material/dots-vertical-circle-outline.svg +1 -0
  5706. docsforge/themes/material/templates/.icons/material/dots-vertical-circle.svg +1 -0
  5707. docsforge/themes/material/templates/.icons/material/dots-vertical.svg +1 -0
  5708. docsforge/themes/material/templates/.icons/material/download-box-outline.svg +1 -0
  5709. docsforge/themes/material/templates/.icons/material/download-box.svg +1 -0
  5710. docsforge/themes/material/templates/.icons/material/download-circle-outline.svg +1 -0
  5711. docsforge/themes/material/templates/.icons/material/download-circle.svg +1 -0
  5712. docsforge/themes/material/templates/.icons/material/download-lock-outline.svg +1 -0
  5713. docsforge/themes/material/templates/.icons/material/download-lock.svg +1 -0
  5714. docsforge/themes/material/templates/.icons/material/download-multiple-outline.svg +1 -0
  5715. docsforge/themes/material/templates/.icons/material/download-multiple.svg +1 -0
  5716. docsforge/themes/material/templates/.icons/material/download-network-outline.svg +1 -0
  5717. docsforge/themes/material/templates/.icons/material/download-network.svg +1 -0
  5718. docsforge/themes/material/templates/.icons/material/download-off-outline.svg +1 -0
  5719. docsforge/themes/material/templates/.icons/material/download-off.svg +1 -0
  5720. docsforge/themes/material/templates/.icons/material/download-outline.svg +1 -0
  5721. docsforge/themes/material/templates/.icons/material/download.svg +1 -0
  5722. docsforge/themes/material/templates/.icons/material/drag-horizontal-variant.svg +1 -0
  5723. docsforge/themes/material/templates/.icons/material/drag-horizontal.svg +1 -0
  5724. docsforge/themes/material/templates/.icons/material/drag-variant.svg +1 -0
  5725. docsforge/themes/material/templates/.icons/material/drag-vertical-variant.svg +1 -0
  5726. docsforge/themes/material/templates/.icons/material/drag-vertical.svg +1 -0
  5727. docsforge/themes/material/templates/.icons/material/drag.svg +1 -0
  5728. docsforge/themes/material/templates/.icons/material/drama-masks.svg +1 -0
  5729. docsforge/themes/material/templates/.icons/material/draw-pen.svg +1 -0
  5730. docsforge/themes/material/templates/.icons/material/draw.svg +1 -0
  5731. docsforge/themes/material/templates/.icons/material/drawing-box.svg +1 -0
  5732. docsforge/themes/material/templates/.icons/material/drawing.svg +1 -0
  5733. docsforge/themes/material/templates/.icons/material/dresser-outline.svg +1 -0
  5734. docsforge/themes/material/templates/.icons/material/dresser.svg +1 -0
  5735. docsforge/themes/material/templates/.icons/material/drone.svg +1 -0
  5736. docsforge/themes/material/templates/.icons/material/dropbox.svg +1 -0
  5737. docsforge/themes/material/templates/.icons/material/drupal.svg +1 -0
  5738. docsforge/themes/material/templates/.icons/material/duck.svg +1 -0
  5739. docsforge/themes/material/templates/.icons/material/dumbbell.svg +1 -0
  5740. docsforge/themes/material/templates/.icons/material/dump-truck.svg +1 -0
  5741. docsforge/themes/material/templates/.icons/material/ear-hearing-loop.svg +1 -0
  5742. docsforge/themes/material/templates/.icons/material/ear-hearing-off.svg +1 -0
  5743. docsforge/themes/material/templates/.icons/material/ear-hearing.svg +1 -0
  5744. docsforge/themes/material/templates/.icons/material/earbuds-off-outline.svg +1 -0
  5745. docsforge/themes/material/templates/.icons/material/earbuds-off.svg +1 -0
  5746. docsforge/themes/material/templates/.icons/material/earbuds-outline.svg +1 -0
  5747. docsforge/themes/material/templates/.icons/material/earbuds.svg +1 -0
  5748. docsforge/themes/material/templates/.icons/material/earth-arrow-down.svg +1 -0
  5749. docsforge/themes/material/templates/.icons/material/earth-arrow-left.svg +1 -0
  5750. docsforge/themes/material/templates/.icons/material/earth-arrow-right.svg +1 -0
  5751. docsforge/themes/material/templates/.icons/material/earth-arrow-up.svg +1 -0
  5752. docsforge/themes/material/templates/.icons/material/earth-box-minus.svg +1 -0
  5753. docsforge/themes/material/templates/.icons/material/earth-box-off.svg +1 -0
  5754. docsforge/themes/material/templates/.icons/material/earth-box-plus.svg +1 -0
  5755. docsforge/themes/material/templates/.icons/material/earth-box-remove.svg +1 -0
  5756. docsforge/themes/material/templates/.icons/material/earth-box.svg +1 -0
  5757. docsforge/themes/material/templates/.icons/material/earth-minus.svg +1 -0
  5758. docsforge/themes/material/templates/.icons/material/earth-off.svg +1 -0
  5759. docsforge/themes/material/templates/.icons/material/earth-plus.svg +1 -0
  5760. docsforge/themes/material/templates/.icons/material/earth-remove.svg +1 -0
  5761. docsforge/themes/material/templates/.icons/material/earth.svg +1 -0
  5762. docsforge/themes/material/templates/.icons/material/egg-easter.svg +1 -0
  5763. docsforge/themes/material/templates/.icons/material/egg-fried.svg +1 -0
  5764. docsforge/themes/material/templates/.icons/material/egg-off-outline.svg +1 -0
  5765. docsforge/themes/material/templates/.icons/material/egg-off.svg +1 -0
  5766. docsforge/themes/material/templates/.icons/material/egg-outline.svg +1 -0
  5767. docsforge/themes/material/templates/.icons/material/egg.svg +1 -0
  5768. docsforge/themes/material/templates/.icons/material/eiffel-tower.svg +1 -0
  5769. docsforge/themes/material/templates/.icons/material/eight-track.svg +1 -0
  5770. docsforge/themes/material/templates/.icons/material/eject-circle-outline.svg +1 -0
  5771. docsforge/themes/material/templates/.icons/material/eject-circle.svg +1 -0
  5772. docsforge/themes/material/templates/.icons/material/eject-outline.svg +1 -0
  5773. docsforge/themes/material/templates/.icons/material/eject.svg +1 -0
  5774. docsforge/themes/material/templates/.icons/material/electric-switch-closed.svg +1 -0
  5775. docsforge/themes/material/templates/.icons/material/electric-switch.svg +1 -0
  5776. docsforge/themes/material/templates/.icons/material/electron-framework.svg +1 -0
  5777. docsforge/themes/material/templates/.icons/material/elephant.svg +1 -0
  5778. docsforge/themes/material/templates/.icons/material/elevation-decline.svg +1 -0
  5779. docsforge/themes/material/templates/.icons/material/elevation-rise.svg +1 -0
  5780. docsforge/themes/material/templates/.icons/material/elevator-down.svg +1 -0
  5781. docsforge/themes/material/templates/.icons/material/elevator-passenger-off-outline.svg +1 -0
  5782. docsforge/themes/material/templates/.icons/material/elevator-passenger-off.svg +1 -0
  5783. docsforge/themes/material/templates/.icons/material/elevator-passenger-outline.svg +1 -0
  5784. docsforge/themes/material/templates/.icons/material/elevator-passenger.svg +1 -0
  5785. docsforge/themes/material/templates/.icons/material/elevator-up.svg +1 -0
  5786. docsforge/themes/material/templates/.icons/material/elevator.svg +1 -0
  5787. docsforge/themes/material/templates/.icons/material/ellipse-outline.svg +1 -0
  5788. docsforge/themes/material/templates/.icons/material/ellipse.svg +1 -0
  5789. docsforge/themes/material/templates/.icons/material/email-alert-outline.svg +1 -0
  5790. docsforge/themes/material/templates/.icons/material/email-alert.svg +1 -0
  5791. docsforge/themes/material/templates/.icons/material/email-arrow-left-outline.svg +1 -0
  5792. docsforge/themes/material/templates/.icons/material/email-arrow-left.svg +1 -0
  5793. docsforge/themes/material/templates/.icons/material/email-arrow-right-outline.svg +1 -0
  5794. docsforge/themes/material/templates/.icons/material/email-arrow-right.svg +1 -0
  5795. docsforge/themes/material/templates/.icons/material/email-box.svg +1 -0
  5796. docsforge/themes/material/templates/.icons/material/email-check-outline.svg +1 -0
  5797. docsforge/themes/material/templates/.icons/material/email-check.svg +1 -0
  5798. docsforge/themes/material/templates/.icons/material/email-edit-outline.svg +1 -0
  5799. docsforge/themes/material/templates/.icons/material/email-edit.svg +1 -0
  5800. docsforge/themes/material/templates/.icons/material/email-fast-outline.svg +1 -0
  5801. docsforge/themes/material/templates/.icons/material/email-fast.svg +1 -0
  5802. docsforge/themes/material/templates/.icons/material/email-heart-outline.svg +1 -0
  5803. docsforge/themes/material/templates/.icons/material/email-lock-outline.svg +1 -0
  5804. docsforge/themes/material/templates/.icons/material/email-lock.svg +1 -0
  5805. docsforge/themes/material/templates/.icons/material/email-mark-as-unread.svg +1 -0
  5806. docsforge/themes/material/templates/.icons/material/email-minus-outline.svg +1 -0
  5807. docsforge/themes/material/templates/.icons/material/email-minus.svg +1 -0
  5808. docsforge/themes/material/templates/.icons/material/email-multiple-outline.svg +1 -0
  5809. docsforge/themes/material/templates/.icons/material/email-multiple.svg +1 -0
  5810. docsforge/themes/material/templates/.icons/material/email-newsletter.svg +1 -0
  5811. docsforge/themes/material/templates/.icons/material/email-off-outline.svg +1 -0
  5812. docsforge/themes/material/templates/.icons/material/email-off.svg +1 -0
  5813. docsforge/themes/material/templates/.icons/material/email-open-heart-outline.svg +1 -0
  5814. docsforge/themes/material/templates/.icons/material/email-open-multiple-outline.svg +1 -0
  5815. docsforge/themes/material/templates/.icons/material/email-open-multiple.svg +1 -0
  5816. docsforge/themes/material/templates/.icons/material/email-open-outline.svg +1 -0
  5817. docsforge/themes/material/templates/.icons/material/email-open.svg +1 -0
  5818. docsforge/themes/material/templates/.icons/material/email-outline.svg +1 -0
  5819. docsforge/themes/material/templates/.icons/material/email-plus-outline.svg +1 -0
  5820. docsforge/themes/material/templates/.icons/material/email-plus.svg +1 -0
  5821. docsforge/themes/material/templates/.icons/material/email-remove-outline.svg +1 -0
  5822. docsforge/themes/material/templates/.icons/material/email-remove.svg +1 -0
  5823. docsforge/themes/material/templates/.icons/material/email-seal-outline.svg +1 -0
  5824. docsforge/themes/material/templates/.icons/material/email-seal.svg +1 -0
  5825. docsforge/themes/material/templates/.icons/material/email-search-outline.svg +1 -0
  5826. docsforge/themes/material/templates/.icons/material/email-search.svg +1 -0
  5827. docsforge/themes/material/templates/.icons/material/email-sync-outline.svg +1 -0
  5828. docsforge/themes/material/templates/.icons/material/email-sync.svg +1 -0
  5829. docsforge/themes/material/templates/.icons/material/email-variant.svg +1 -0
  5830. docsforge/themes/material/templates/.icons/material/email.svg +1 -0
  5831. docsforge/themes/material/templates/.icons/material/ember.svg +1 -0
  5832. docsforge/themes/material/templates/.icons/material/emby.svg +1 -0
  5833. docsforge/themes/material/templates/.icons/material/emoticon-angry-outline.svg +1 -0
  5834. docsforge/themes/material/templates/.icons/material/emoticon-angry.svg +1 -0
  5835. docsforge/themes/material/templates/.icons/material/emoticon-confused-outline.svg +1 -0
  5836. docsforge/themes/material/templates/.icons/material/emoticon-confused.svg +1 -0
  5837. docsforge/themes/material/templates/.icons/material/emoticon-cool-outline.svg +1 -0
  5838. docsforge/themes/material/templates/.icons/material/emoticon-cool.svg +1 -0
  5839. docsforge/themes/material/templates/.icons/material/emoticon-cry-outline.svg +1 -0
  5840. docsforge/themes/material/templates/.icons/material/emoticon-cry.svg +1 -0
  5841. docsforge/themes/material/templates/.icons/material/emoticon-dead-outline.svg +1 -0
  5842. docsforge/themes/material/templates/.icons/material/emoticon-dead.svg +1 -0
  5843. docsforge/themes/material/templates/.icons/material/emoticon-devil-outline.svg +1 -0
  5844. docsforge/themes/material/templates/.icons/material/emoticon-devil.svg +1 -0
  5845. docsforge/themes/material/templates/.icons/material/emoticon-excited-outline.svg +1 -0
  5846. docsforge/themes/material/templates/.icons/material/emoticon-excited.svg +1 -0
  5847. docsforge/themes/material/templates/.icons/material/emoticon-frown-outline.svg +1 -0
  5848. docsforge/themes/material/templates/.icons/material/emoticon-frown.svg +1 -0
  5849. docsforge/themes/material/templates/.icons/material/emoticon-happy-outline.svg +1 -0
  5850. docsforge/themes/material/templates/.icons/material/emoticon-happy.svg +1 -0
  5851. docsforge/themes/material/templates/.icons/material/emoticon-kiss-outline.svg +1 -0
  5852. docsforge/themes/material/templates/.icons/material/emoticon-kiss.svg +1 -0
  5853. docsforge/themes/material/templates/.icons/material/emoticon-lol-outline.svg +1 -0
  5854. docsforge/themes/material/templates/.icons/material/emoticon-lol.svg +1 -0
  5855. docsforge/themes/material/templates/.icons/material/emoticon-minus-outline.svg +1 -0
  5856. docsforge/themes/material/templates/.icons/material/emoticon-minus.svg +1 -0
  5857. docsforge/themes/material/templates/.icons/material/emoticon-neutral-outline.svg +1 -0
  5858. docsforge/themes/material/templates/.icons/material/emoticon-neutral.svg +1 -0
  5859. docsforge/themes/material/templates/.icons/material/emoticon-outline.svg +1 -0
  5860. docsforge/themes/material/templates/.icons/material/emoticon-plus-outline.svg +1 -0
  5861. docsforge/themes/material/templates/.icons/material/emoticon-plus.svg +1 -0
  5862. docsforge/themes/material/templates/.icons/material/emoticon-poop-outline.svg +1 -0
  5863. docsforge/themes/material/templates/.icons/material/emoticon-poop.svg +1 -0
  5864. docsforge/themes/material/templates/.icons/material/emoticon-remove-outline.svg +1 -0
  5865. docsforge/themes/material/templates/.icons/material/emoticon-remove.svg +1 -0
  5866. docsforge/themes/material/templates/.icons/material/emoticon-sad-outline.svg +1 -0
  5867. docsforge/themes/material/templates/.icons/material/emoticon-sad.svg +1 -0
  5868. docsforge/themes/material/templates/.icons/material/emoticon-sick-outline.svg +1 -0
  5869. docsforge/themes/material/templates/.icons/material/emoticon-sick.svg +1 -0
  5870. docsforge/themes/material/templates/.icons/material/emoticon-tongue-outline.svg +1 -0
  5871. docsforge/themes/material/templates/.icons/material/emoticon-tongue.svg +1 -0
  5872. docsforge/themes/material/templates/.icons/material/emoticon-wink-outline.svg +1 -0
  5873. docsforge/themes/material/templates/.icons/material/emoticon-wink.svg +1 -0
  5874. docsforge/themes/material/templates/.icons/material/emoticon.svg +1 -0
  5875. docsforge/themes/material/templates/.icons/material/engine-off-outline.svg +1 -0
  5876. docsforge/themes/material/templates/.icons/material/engine-off.svg +1 -0
  5877. docsforge/themes/material/templates/.icons/material/engine-outline.svg +1 -0
  5878. docsforge/themes/material/templates/.icons/material/engine.svg +1 -0
  5879. docsforge/themes/material/templates/.icons/material/epsilon.svg +1 -0
  5880. docsforge/themes/material/templates/.icons/material/equal-box.svg +1 -0
  5881. docsforge/themes/material/templates/.icons/material/equal.svg +1 -0
  5882. docsforge/themes/material/templates/.icons/material/equalizer-outline.svg +1 -0
  5883. docsforge/themes/material/templates/.icons/material/equalizer.svg +1 -0
  5884. docsforge/themes/material/templates/.icons/material/eraser-variant.svg +1 -0
  5885. docsforge/themes/material/templates/.icons/material/eraser.svg +1 -0
  5886. docsforge/themes/material/templates/.icons/material/escalator-box.svg +1 -0
  5887. docsforge/themes/material/templates/.icons/material/escalator-down.svg +1 -0
  5888. docsforge/themes/material/templates/.icons/material/escalator-up.svg +1 -0
  5889. docsforge/themes/material/templates/.icons/material/escalator.svg +1 -0
  5890. docsforge/themes/material/templates/.icons/material/eslint.svg +1 -0
  5891. docsforge/themes/material/templates/.icons/material/et.svg +1 -0
  5892. docsforge/themes/material/templates/.icons/material/ethereum.svg +1 -0
  5893. docsforge/themes/material/templates/.icons/material/ethernet-cable-off.svg +1 -0
  5894. docsforge/themes/material/templates/.icons/material/ethernet-cable.svg +1 -0
  5895. docsforge/themes/material/templates/.icons/material/ethernet-off.svg +1 -0
  5896. docsforge/themes/material/templates/.icons/material/ethernet.svg +1 -0
  5897. docsforge/themes/material/templates/.icons/material/ev-plug-ccs1.svg +1 -0
  5898. docsforge/themes/material/templates/.icons/material/ev-plug-ccs2.svg +1 -0
  5899. docsforge/themes/material/templates/.icons/material/ev-plug-chademo.svg +1 -0
  5900. docsforge/themes/material/templates/.icons/material/ev-plug-tesla.svg +1 -0
  5901. docsforge/themes/material/templates/.icons/material/ev-plug-type1.svg +1 -0
  5902. docsforge/themes/material/templates/.icons/material/ev-plug-type2.svg +1 -0
  5903. docsforge/themes/material/templates/.icons/material/ev-station.svg +1 -0
  5904. docsforge/themes/material/templates/.icons/material/evernote.svg +1 -0
  5905. docsforge/themes/material/templates/.icons/material/excavator.svg +1 -0
  5906. docsforge/themes/material/templates/.icons/material/exclamation-thick.svg +1 -0
  5907. docsforge/themes/material/templates/.icons/material/exclamation.svg +1 -0
  5908. docsforge/themes/material/templates/.icons/material/exit-run.svg +1 -0
  5909. docsforge/themes/material/templates/.icons/material/exit-to-app.svg +1 -0
  5910. docsforge/themes/material/templates/.icons/material/expand-all-outline.svg +1 -0
  5911. docsforge/themes/material/templates/.icons/material/expand-all.svg +1 -0
  5912. docsforge/themes/material/templates/.icons/material/expansion-card-variant.svg +1 -0
  5913. docsforge/themes/material/templates/.icons/material/expansion-card.svg +1 -0
  5914. docsforge/themes/material/templates/.icons/material/exponent-box.svg +1 -0
  5915. docsforge/themes/material/templates/.icons/material/exponent.svg +1 -0
  5916. docsforge/themes/material/templates/.icons/material/export-variant.svg +1 -0
  5917. docsforge/themes/material/templates/.icons/material/export.svg +1 -0
  5918. docsforge/themes/material/templates/.icons/material/eye-arrow-left-outline.svg +1 -0
  5919. docsforge/themes/material/templates/.icons/material/eye-arrow-left.svg +1 -0
  5920. docsforge/themes/material/templates/.icons/material/eye-arrow-right-outline.svg +1 -0
  5921. docsforge/themes/material/templates/.icons/material/eye-arrow-right.svg +1 -0
  5922. docsforge/themes/material/templates/.icons/material/eye-check-outline.svg +1 -0
  5923. docsforge/themes/material/templates/.icons/material/eye-check.svg +1 -0
  5924. docsforge/themes/material/templates/.icons/material/eye-circle-outline.svg +1 -0
  5925. docsforge/themes/material/templates/.icons/material/eye-circle.svg +1 -0
  5926. docsforge/themes/material/templates/.icons/material/eye-closed.svg +1 -0
  5927. docsforge/themes/material/templates/.icons/material/eye-lock-open-outline.svg +1 -0
  5928. docsforge/themes/material/templates/.icons/material/eye-lock-open.svg +1 -0
  5929. docsforge/themes/material/templates/.icons/material/eye-lock-outline.svg +1 -0
  5930. docsforge/themes/material/templates/.icons/material/eye-lock.svg +1 -0
  5931. docsforge/themes/material/templates/.icons/material/eye-minus-outline.svg +1 -0
  5932. docsforge/themes/material/templates/.icons/material/eye-minus.svg +1 -0
  5933. docsforge/themes/material/templates/.icons/material/eye-off-outline.svg +1 -0
  5934. docsforge/themes/material/templates/.icons/material/eye-off.svg +1 -0
  5935. docsforge/themes/material/templates/.icons/material/eye-outline.svg +1 -0
  5936. docsforge/themes/material/templates/.icons/material/eye-plus-outline.svg +1 -0
  5937. docsforge/themes/material/templates/.icons/material/eye-plus.svg +1 -0
  5938. docsforge/themes/material/templates/.icons/material/eye-refresh-outline.svg +1 -0
  5939. docsforge/themes/material/templates/.icons/material/eye-refresh.svg +1 -0
  5940. docsforge/themes/material/templates/.icons/material/eye-remove-outline.svg +1 -0
  5941. docsforge/themes/material/templates/.icons/material/eye-remove.svg +1 -0
  5942. docsforge/themes/material/templates/.icons/material/eye-settings-outline.svg +1 -0
  5943. docsforge/themes/material/templates/.icons/material/eye-settings.svg +1 -0
  5944. docsforge/themes/material/templates/.icons/material/eye.svg +1 -0
  5945. docsforge/themes/material/templates/.icons/material/eyedropper-minus.svg +1 -0
  5946. docsforge/themes/material/templates/.icons/material/eyedropper-off.svg +1 -0
  5947. docsforge/themes/material/templates/.icons/material/eyedropper-plus.svg +1 -0
  5948. docsforge/themes/material/templates/.icons/material/eyedropper-remove.svg +1 -0
  5949. docsforge/themes/material/templates/.icons/material/eyedropper-variant.svg +1 -0
  5950. docsforge/themes/material/templates/.icons/material/eyedropper.svg +1 -0
  5951. docsforge/themes/material/templates/.icons/material/face-agent.svg +1 -0
  5952. docsforge/themes/material/templates/.icons/material/face-man-outline.svg +1 -0
  5953. docsforge/themes/material/templates/.icons/material/face-man-profile.svg +1 -0
  5954. docsforge/themes/material/templates/.icons/material/face-man-shimmer-outline.svg +1 -0
  5955. docsforge/themes/material/templates/.icons/material/face-man-shimmer.svg +1 -0
  5956. docsforge/themes/material/templates/.icons/material/face-man.svg +1 -0
  5957. docsforge/themes/material/templates/.icons/material/face-mask-outline.svg +1 -0
  5958. docsforge/themes/material/templates/.icons/material/face-mask.svg +1 -0
  5959. docsforge/themes/material/templates/.icons/material/face-recognition.svg +1 -0
  5960. docsforge/themes/material/templates/.icons/material/face-woman-outline.svg +1 -0
  5961. docsforge/themes/material/templates/.icons/material/face-woman-profile.svg +1 -0
  5962. docsforge/themes/material/templates/.icons/material/face-woman-shimmer-outline.svg +1 -0
  5963. docsforge/themes/material/templates/.icons/material/face-woman-shimmer.svg +1 -0
  5964. docsforge/themes/material/templates/.icons/material/face-woman.svg +1 -0
  5965. docsforge/themes/material/templates/.icons/material/facebook-gaming.svg +1 -0
  5966. docsforge/themes/material/templates/.icons/material/facebook-messenger.svg +1 -0
  5967. docsforge/themes/material/templates/.icons/material/facebook-workplace.svg +1 -0
  5968. docsforge/themes/material/templates/.icons/material/facebook.svg +1 -0
  5969. docsforge/themes/material/templates/.icons/material/factory.svg +1 -0
  5970. docsforge/themes/material/templates/.icons/material/family-tree.svg +1 -0
  5971. docsforge/themes/material/templates/.icons/material/fan-alert.svg +1 -0
  5972. docsforge/themes/material/templates/.icons/material/fan-auto.svg +1 -0
  5973. docsforge/themes/material/templates/.icons/material/fan-chevron-down.svg +1 -0
  5974. docsforge/themes/material/templates/.icons/material/fan-chevron-up.svg +1 -0
  5975. docsforge/themes/material/templates/.icons/material/fan-clock.svg +1 -0
  5976. docsforge/themes/material/templates/.icons/material/fan-minus.svg +1 -0
  5977. docsforge/themes/material/templates/.icons/material/fan-off.svg +1 -0
  5978. docsforge/themes/material/templates/.icons/material/fan-plus.svg +1 -0
  5979. docsforge/themes/material/templates/.icons/material/fan-remove.svg +1 -0
  5980. docsforge/themes/material/templates/.icons/material/fan-speed-1.svg +1 -0
  5981. docsforge/themes/material/templates/.icons/material/fan-speed-2.svg +1 -0
  5982. docsforge/themes/material/templates/.icons/material/fan-speed-3.svg +1 -0
  5983. docsforge/themes/material/templates/.icons/material/fan.svg +1 -0
  5984. docsforge/themes/material/templates/.icons/material/fast-forward-10.svg +1 -0
  5985. docsforge/themes/material/templates/.icons/material/fast-forward-15.svg +1 -0
  5986. docsforge/themes/material/templates/.icons/material/fast-forward-30.svg +1 -0
  5987. docsforge/themes/material/templates/.icons/material/fast-forward-45.svg +1 -0
  5988. docsforge/themes/material/templates/.icons/material/fast-forward-5.svg +1 -0
  5989. docsforge/themes/material/templates/.icons/material/fast-forward-60.svg +1 -0
  5990. docsforge/themes/material/templates/.icons/material/fast-forward-outline.svg +1 -0
  5991. docsforge/themes/material/templates/.icons/material/fast-forward.svg +1 -0
  5992. docsforge/themes/material/templates/.icons/material/faucet-variant.svg +1 -0
  5993. docsforge/themes/material/templates/.icons/material/faucet.svg +1 -0
  5994. docsforge/themes/material/templates/.icons/material/fax.svg +1 -0
  5995. docsforge/themes/material/templates/.icons/material/feather.svg +1 -0
  5996. docsforge/themes/material/templates/.icons/material/feature-search-outline.svg +1 -0
  5997. docsforge/themes/material/templates/.icons/material/feature-search.svg +1 -0
  5998. docsforge/themes/material/templates/.icons/material/fedora.svg +1 -0
  5999. docsforge/themes/material/templates/.icons/material/fence-electric.svg +1 -0
  6000. docsforge/themes/material/templates/.icons/material/fence.svg +1 -0
  6001. docsforge/themes/material/templates/.icons/material/fencing.svg +1 -0
  6002. docsforge/themes/material/templates/.icons/material/ferris-wheel.svg +1 -0
  6003. docsforge/themes/material/templates/.icons/material/ferry.svg +1 -0
  6004. docsforge/themes/material/templates/.icons/material/file-account-outline.svg +1 -0
  6005. docsforge/themes/material/templates/.icons/material/file-account.svg +1 -0
  6006. docsforge/themes/material/templates/.icons/material/file-alert-outline.svg +1 -0
  6007. docsforge/themes/material/templates/.icons/material/file-alert.svg +1 -0
  6008. docsforge/themes/material/templates/.icons/material/file-arrow-left-right-outline.svg +1 -0
  6009. docsforge/themes/material/templates/.icons/material/file-arrow-left-right.svg +1 -0
  6010. docsforge/themes/material/templates/.icons/material/file-arrow-up-down-outline.svg +1 -0
  6011. docsforge/themes/material/templates/.icons/material/file-arrow-up-down.svg +1 -0
  6012. docsforge/themes/material/templates/.icons/material/file-cabinet.svg +1 -0
  6013. docsforge/themes/material/templates/.icons/material/file-cad-box.svg +1 -0
  6014. docsforge/themes/material/templates/.icons/material/file-cad.svg +1 -0
  6015. docsforge/themes/material/templates/.icons/material/file-cancel-outline.svg +1 -0
  6016. docsforge/themes/material/templates/.icons/material/file-cancel.svg +1 -0
  6017. docsforge/themes/material/templates/.icons/material/file-certificate-outline.svg +1 -0
  6018. docsforge/themes/material/templates/.icons/material/file-certificate.svg +1 -0
  6019. docsforge/themes/material/templates/.icons/material/file-chart-check-outline.svg +1 -0
  6020. docsforge/themes/material/templates/.icons/material/file-chart-check.svg +1 -0
  6021. docsforge/themes/material/templates/.icons/material/file-chart-outline.svg +1 -0
  6022. docsforge/themes/material/templates/.icons/material/file-chart.svg +1 -0
  6023. docsforge/themes/material/templates/.icons/material/file-check-outline.svg +1 -0
  6024. docsforge/themes/material/templates/.icons/material/file-check.svg +1 -0
  6025. docsforge/themes/material/templates/.icons/material/file-clock-outline.svg +1 -0
  6026. docsforge/themes/material/templates/.icons/material/file-clock.svg +1 -0
  6027. docsforge/themes/material/templates/.icons/material/file-cloud-outline.svg +1 -0
  6028. docsforge/themes/material/templates/.icons/material/file-cloud.svg +1 -0
  6029. docsforge/themes/material/templates/.icons/material/file-code-outline.svg +1 -0
  6030. docsforge/themes/material/templates/.icons/material/file-code.svg +1 -0
  6031. docsforge/themes/material/templates/.icons/material/file-cog-outline.svg +1 -0
  6032. docsforge/themes/material/templates/.icons/material/file-cog.svg +1 -0
  6033. docsforge/themes/material/templates/.icons/material/file-compare.svg +1 -0
  6034. docsforge/themes/material/templates/.icons/material/file-delimited-outline.svg +1 -0
  6035. docsforge/themes/material/templates/.icons/material/file-delimited.svg +1 -0
  6036. docsforge/themes/material/templates/.icons/material/file-document-alert-outline.svg +1 -0
  6037. docsforge/themes/material/templates/.icons/material/file-document-alert.svg +1 -0
  6038. docsforge/themes/material/templates/.icons/material/file-document-arrow-right-outline.svg +1 -0
  6039. docsforge/themes/material/templates/.icons/material/file-document-arrow-right.svg +1 -0
  6040. docsforge/themes/material/templates/.icons/material/file-document-check-outline.svg +1 -0
  6041. docsforge/themes/material/templates/.icons/material/file-document-check.svg +1 -0
  6042. docsforge/themes/material/templates/.icons/material/file-document-edit-outline.svg +1 -0
  6043. docsforge/themes/material/templates/.icons/material/file-document-edit.svg +1 -0
  6044. docsforge/themes/material/templates/.icons/material/file-document-minus-outline.svg +1 -0
  6045. docsforge/themes/material/templates/.icons/material/file-document-minus.svg +1 -0
  6046. docsforge/themes/material/templates/.icons/material/file-document-multiple-outline.svg +1 -0
  6047. docsforge/themes/material/templates/.icons/material/file-document-multiple.svg +1 -0
  6048. docsforge/themes/material/templates/.icons/material/file-document-outline.svg +1 -0
  6049. docsforge/themes/material/templates/.icons/material/file-document-plus-outline.svg +1 -0
  6050. docsforge/themes/material/templates/.icons/material/file-document-plus.svg +1 -0
  6051. docsforge/themes/material/templates/.icons/material/file-document-refresh-outline.svg +1 -0
  6052. docsforge/themes/material/templates/.icons/material/file-document-refresh.svg +1 -0
  6053. docsforge/themes/material/templates/.icons/material/file-document-remove-outline.svg +1 -0
  6054. docsforge/themes/material/templates/.icons/material/file-document-remove.svg +1 -0
  6055. docsforge/themes/material/templates/.icons/material/file-document.svg +1 -0
  6056. docsforge/themes/material/templates/.icons/material/file-download-outline.svg +1 -0
  6057. docsforge/themes/material/templates/.icons/material/file-download.svg +1 -0
  6058. docsforge/themes/material/templates/.icons/material/file-edit-outline.svg +1 -0
  6059. docsforge/themes/material/templates/.icons/material/file-edit.svg +1 -0
  6060. docsforge/themes/material/templates/.icons/material/file-excel-box-outline.svg +1 -0
  6061. docsforge/themes/material/templates/.icons/material/file-excel-box.svg +1 -0
  6062. docsforge/themes/material/templates/.icons/material/file-excel-outline.svg +1 -0
  6063. docsforge/themes/material/templates/.icons/material/file-excel.svg +1 -0
  6064. docsforge/themes/material/templates/.icons/material/file-export-outline.svg +1 -0
  6065. docsforge/themes/material/templates/.icons/material/file-export.svg +1 -0
  6066. docsforge/themes/material/templates/.icons/material/file-eye-outline.svg +1 -0
  6067. docsforge/themes/material/templates/.icons/material/file-eye.svg +1 -0
  6068. docsforge/themes/material/templates/.icons/material/file-find-outline.svg +1 -0
  6069. docsforge/themes/material/templates/.icons/material/file-find.svg +1 -0
  6070. docsforge/themes/material/templates/.icons/material/file-gif-box.svg +1 -0
  6071. docsforge/themes/material/templates/.icons/material/file-hidden.svg +1 -0
  6072. docsforge/themes/material/templates/.icons/material/file-image-marker-outline.svg +1 -0
  6073. docsforge/themes/material/templates/.icons/material/file-image-marker.svg +1 -0
  6074. docsforge/themes/material/templates/.icons/material/file-image-minus-outline.svg +1 -0
  6075. docsforge/themes/material/templates/.icons/material/file-image-minus.svg +1 -0
  6076. docsforge/themes/material/templates/.icons/material/file-image-outline.svg +1 -0
  6077. docsforge/themes/material/templates/.icons/material/file-image-plus-outline.svg +1 -0
  6078. docsforge/themes/material/templates/.icons/material/file-image-plus.svg +1 -0
  6079. docsforge/themes/material/templates/.icons/material/file-image-remove-outline.svg +1 -0
  6080. docsforge/themes/material/templates/.icons/material/file-image-remove.svg +1 -0
  6081. docsforge/themes/material/templates/.icons/material/file-image.svg +1 -0
  6082. docsforge/themes/material/templates/.icons/material/file-import-outline.svg +1 -0
  6083. docsforge/themes/material/templates/.icons/material/file-import.svg +1 -0
  6084. docsforge/themes/material/templates/.icons/material/file-jpg-box.svg +1 -0
  6085. docsforge/themes/material/templates/.icons/material/file-key-outline.svg +1 -0
  6086. docsforge/themes/material/templates/.icons/material/file-key.svg +1 -0
  6087. docsforge/themes/material/templates/.icons/material/file-link-outline.svg +1 -0
  6088. docsforge/themes/material/templates/.icons/material/file-link.svg +1 -0
  6089. docsforge/themes/material/templates/.icons/material/file-lock-open-outline.svg +1 -0
  6090. docsforge/themes/material/templates/.icons/material/file-lock-open.svg +1 -0
  6091. docsforge/themes/material/templates/.icons/material/file-lock-outline.svg +1 -0
  6092. docsforge/themes/material/templates/.icons/material/file-lock.svg +1 -0
  6093. docsforge/themes/material/templates/.icons/material/file-marker-outline.svg +1 -0
  6094. docsforge/themes/material/templates/.icons/material/file-marker.svg +1 -0
  6095. docsforge/themes/material/templates/.icons/material/file-minus-outline.svg +1 -0
  6096. docsforge/themes/material/templates/.icons/material/file-minus.svg +1 -0
  6097. docsforge/themes/material/templates/.icons/material/file-move-outline.svg +1 -0
  6098. docsforge/themes/material/templates/.icons/material/file-move.svg +1 -0
  6099. docsforge/themes/material/templates/.icons/material/file-multiple-outline.svg +1 -0
  6100. docsforge/themes/material/templates/.icons/material/file-multiple.svg +1 -0
  6101. docsforge/themes/material/templates/.icons/material/file-music-outline.svg +1 -0
  6102. docsforge/themes/material/templates/.icons/material/file-music.svg +1 -0
  6103. docsforge/themes/material/templates/.icons/material/file-outline.svg +1 -0
  6104. docsforge/themes/material/templates/.icons/material/file-pdf-box.svg +1 -0
  6105. docsforge/themes/material/templates/.icons/material/file-percent-outline.svg +1 -0
  6106. docsforge/themes/material/templates/.icons/material/file-percent.svg +1 -0
  6107. docsforge/themes/material/templates/.icons/material/file-phone-outline.svg +1 -0
  6108. docsforge/themes/material/templates/.icons/material/file-phone.svg +1 -0
  6109. docsforge/themes/material/templates/.icons/material/file-plus-outline.svg +1 -0
  6110. docsforge/themes/material/templates/.icons/material/file-plus.svg +1 -0
  6111. docsforge/themes/material/templates/.icons/material/file-png-box.svg +1 -0
  6112. docsforge/themes/material/templates/.icons/material/file-powerpoint-box-outline.svg +1 -0
  6113. docsforge/themes/material/templates/.icons/material/file-powerpoint-box.svg +1 -0
  6114. docsforge/themes/material/templates/.icons/material/file-powerpoint-outline.svg +1 -0
  6115. docsforge/themes/material/templates/.icons/material/file-powerpoint.svg +1 -0
  6116. docsforge/themes/material/templates/.icons/material/file-presentation-box.svg +1 -0
  6117. docsforge/themes/material/templates/.icons/material/file-question-outline.svg +1 -0
  6118. docsforge/themes/material/templates/.icons/material/file-question.svg +1 -0
  6119. docsforge/themes/material/templates/.icons/material/file-refresh-outline.svg +1 -0
  6120. docsforge/themes/material/templates/.icons/material/file-refresh.svg +1 -0
  6121. docsforge/themes/material/templates/.icons/material/file-remove-outline.svg +1 -0
  6122. docsforge/themes/material/templates/.icons/material/file-remove.svg +1 -0
  6123. docsforge/themes/material/templates/.icons/material/file-replace-outline.svg +1 -0
  6124. docsforge/themes/material/templates/.icons/material/file-replace.svg +1 -0
  6125. docsforge/themes/material/templates/.icons/material/file-restore-outline.svg +1 -0
  6126. docsforge/themes/material/templates/.icons/material/file-restore.svg +1 -0
  6127. docsforge/themes/material/templates/.icons/material/file-rotate-left-outline.svg +1 -0
  6128. docsforge/themes/material/templates/.icons/material/file-rotate-left.svg +1 -0
  6129. docsforge/themes/material/templates/.icons/material/file-rotate-right-outline.svg +1 -0
  6130. docsforge/themes/material/templates/.icons/material/file-rotate-right.svg +1 -0
  6131. docsforge/themes/material/templates/.icons/material/file-search-outline.svg +1 -0
  6132. docsforge/themes/material/templates/.icons/material/file-search.svg +1 -0
  6133. docsforge/themes/material/templates/.icons/material/file-send-outline.svg +1 -0
  6134. docsforge/themes/material/templates/.icons/material/file-send.svg +1 -0
  6135. docsforge/themes/material/templates/.icons/material/file-settings-outline.svg +1 -0
  6136. docsforge/themes/material/templates/.icons/material/file-settings.svg +1 -0
  6137. docsforge/themes/material/templates/.icons/material/file-sign.svg +1 -0
  6138. docsforge/themes/material/templates/.icons/material/file-star-four-points-outline.svg +1 -0
  6139. docsforge/themes/material/templates/.icons/material/file-star-four-points.svg +1 -0
  6140. docsforge/themes/material/templates/.icons/material/file-star-outline.svg +1 -0
  6141. docsforge/themes/material/templates/.icons/material/file-star.svg +1 -0
  6142. docsforge/themes/material/templates/.icons/material/file-swap-outline.svg +1 -0
  6143. docsforge/themes/material/templates/.icons/material/file-swap.svg +1 -0
  6144. docsforge/themes/material/templates/.icons/material/file-sync-outline.svg +1 -0
  6145. docsforge/themes/material/templates/.icons/material/file-sync.svg +1 -0
  6146. docsforge/themes/material/templates/.icons/material/file-table-box-multiple-outline.svg +1 -0
  6147. docsforge/themes/material/templates/.icons/material/file-table-box-multiple.svg +1 -0
  6148. docsforge/themes/material/templates/.icons/material/file-table-box-outline.svg +1 -0
  6149. docsforge/themes/material/templates/.icons/material/file-table-box.svg +1 -0
  6150. docsforge/themes/material/templates/.icons/material/file-table-outline.svg +1 -0
  6151. docsforge/themes/material/templates/.icons/material/file-table.svg +1 -0
  6152. docsforge/themes/material/templates/.icons/material/file-tree-outline.svg +1 -0
  6153. docsforge/themes/material/templates/.icons/material/file-tree.svg +1 -0
  6154. docsforge/themes/material/templates/.icons/material/file-undo-outline.svg +1 -0
  6155. docsforge/themes/material/templates/.icons/material/file-undo.svg +1 -0
  6156. docsforge/themes/material/templates/.icons/material/file-upload-outline.svg +1 -0
  6157. docsforge/themes/material/templates/.icons/material/file-upload.svg +1 -0
  6158. docsforge/themes/material/templates/.icons/material/file-video-outline.svg +1 -0
  6159. docsforge/themes/material/templates/.icons/material/file-video.svg +1 -0
  6160. docsforge/themes/material/templates/.icons/material/file-word-box-outline.svg +1 -0
  6161. docsforge/themes/material/templates/.icons/material/file-word-box.svg +1 -0
  6162. docsforge/themes/material/templates/.icons/material/file-word-outline.svg +1 -0
  6163. docsforge/themes/material/templates/.icons/material/file-word.svg +1 -0
  6164. docsforge/themes/material/templates/.icons/material/file-xml-box.svg +1 -0
  6165. docsforge/themes/material/templates/.icons/material/file.svg +1 -0
  6166. docsforge/themes/material/templates/.icons/material/film.svg +1 -0
  6167. docsforge/themes/material/templates/.icons/material/filmstrip-box-multiple.svg +1 -0
  6168. docsforge/themes/material/templates/.icons/material/filmstrip-box.svg +1 -0
  6169. docsforge/themes/material/templates/.icons/material/filmstrip-off.svg +1 -0
  6170. docsforge/themes/material/templates/.icons/material/filmstrip.svg +1 -0
  6171. docsforge/themes/material/templates/.icons/material/filter-check-outline.svg +1 -0
  6172. docsforge/themes/material/templates/.icons/material/filter-check.svg +1 -0
  6173. docsforge/themes/material/templates/.icons/material/filter-cog-outline.svg +1 -0
  6174. docsforge/themes/material/templates/.icons/material/filter-cog.svg +1 -0
  6175. docsforge/themes/material/templates/.icons/material/filter-menu-outline.svg +1 -0
  6176. docsforge/themes/material/templates/.icons/material/filter-menu.svg +1 -0
  6177. docsforge/themes/material/templates/.icons/material/filter-minus-outline.svg +1 -0
  6178. docsforge/themes/material/templates/.icons/material/filter-minus.svg +1 -0
  6179. docsforge/themes/material/templates/.icons/material/filter-multiple-outline.svg +1 -0
  6180. docsforge/themes/material/templates/.icons/material/filter-multiple.svg +1 -0
  6181. docsforge/themes/material/templates/.icons/material/filter-off-outline.svg +1 -0
  6182. docsforge/themes/material/templates/.icons/material/filter-off.svg +1 -0
  6183. docsforge/themes/material/templates/.icons/material/filter-outline.svg +1 -0
  6184. docsforge/themes/material/templates/.icons/material/filter-plus-outline.svg +1 -0
  6185. docsforge/themes/material/templates/.icons/material/filter-plus.svg +1 -0
  6186. docsforge/themes/material/templates/.icons/material/filter-remove-outline.svg +1 -0
  6187. docsforge/themes/material/templates/.icons/material/filter-remove.svg +1 -0
  6188. docsforge/themes/material/templates/.icons/material/filter-settings-outline.svg +1 -0
  6189. docsforge/themes/material/templates/.icons/material/filter-settings.svg +1 -0
  6190. docsforge/themes/material/templates/.icons/material/filter-variant-minus.svg +1 -0
  6191. docsforge/themes/material/templates/.icons/material/filter-variant-plus.svg +1 -0
  6192. docsforge/themes/material/templates/.icons/material/filter-variant-remove.svg +1 -0
  6193. docsforge/themes/material/templates/.icons/material/filter-variant.svg +1 -0
  6194. docsforge/themes/material/templates/.icons/material/filter.svg +1 -0
  6195. docsforge/themes/material/templates/.icons/material/finance.svg +1 -0
  6196. docsforge/themes/material/templates/.icons/material/find-replace.svg +1 -0
  6197. docsforge/themes/material/templates/.icons/material/fingerprint-off.svg +1 -0
  6198. docsforge/themes/material/templates/.icons/material/fingerprint.svg +1 -0
  6199. docsforge/themes/material/templates/.icons/material/fire-alert.svg +1 -0
  6200. docsforge/themes/material/templates/.icons/material/fire-circle.svg +1 -0
  6201. docsforge/themes/material/templates/.icons/material/fire-extinguisher.svg +1 -0
  6202. docsforge/themes/material/templates/.icons/material/fire-hydrant-alert.svg +1 -0
  6203. docsforge/themes/material/templates/.icons/material/fire-hydrant-off.svg +1 -0
  6204. docsforge/themes/material/templates/.icons/material/fire-hydrant.svg +1 -0
  6205. docsforge/themes/material/templates/.icons/material/fire-off.svg +1 -0
  6206. docsforge/themes/material/templates/.icons/material/fire-station.svg +1 -0
  6207. docsforge/themes/material/templates/.icons/material/fire-truck.svg +1 -0
  6208. docsforge/themes/material/templates/.icons/material/fire.svg +1 -0
  6209. docsforge/themes/material/templates/.icons/material/firebase.svg +1 -0
  6210. docsforge/themes/material/templates/.icons/material/firefox.svg +1 -0
  6211. docsforge/themes/material/templates/.icons/material/fireplace-off.svg +1 -0
  6212. docsforge/themes/material/templates/.icons/material/fireplace.svg +1 -0
  6213. docsforge/themes/material/templates/.icons/material/firewire.svg +1 -0
  6214. docsforge/themes/material/templates/.icons/material/firework-off.svg +1 -0
  6215. docsforge/themes/material/templates/.icons/material/firework.svg +1 -0
  6216. docsforge/themes/material/templates/.icons/material/fish-off.svg +1 -0
  6217. docsforge/themes/material/templates/.icons/material/fish.svg +1 -0
  6218. docsforge/themes/material/templates/.icons/material/fishbowl-outline.svg +1 -0
  6219. docsforge/themes/material/templates/.icons/material/fishbowl.svg +1 -0
  6220. docsforge/themes/material/templates/.icons/material/fit-to-page-outline.svg +1 -0
  6221. docsforge/themes/material/templates/.icons/material/fit-to-page.svg +1 -0
  6222. docsforge/themes/material/templates/.icons/material/fit-to-screen-outline.svg +1 -0
  6223. docsforge/themes/material/templates/.icons/material/fit-to-screen.svg +1 -0
  6224. docsforge/themes/material/templates/.icons/material/flag-checkered.svg +1 -0
  6225. docsforge/themes/material/templates/.icons/material/flag-minus-outline.svg +1 -0
  6226. docsforge/themes/material/templates/.icons/material/flag-minus.svg +1 -0
  6227. docsforge/themes/material/templates/.icons/material/flag-off-outline.svg +1 -0
  6228. docsforge/themes/material/templates/.icons/material/flag-off.svg +1 -0
  6229. docsforge/themes/material/templates/.icons/material/flag-outline.svg +1 -0
  6230. docsforge/themes/material/templates/.icons/material/flag-plus-outline.svg +1 -0
  6231. docsforge/themes/material/templates/.icons/material/flag-plus.svg +1 -0
  6232. docsforge/themes/material/templates/.icons/material/flag-remove-outline.svg +1 -0
  6233. docsforge/themes/material/templates/.icons/material/flag-remove.svg +1 -0
  6234. docsforge/themes/material/templates/.icons/material/flag-triangle.svg +1 -0
  6235. docsforge/themes/material/templates/.icons/material/flag-variant-minus-outline.svg +1 -0
  6236. docsforge/themes/material/templates/.icons/material/flag-variant-minus.svg +1 -0
  6237. docsforge/themes/material/templates/.icons/material/flag-variant-off-outline.svg +1 -0
  6238. docsforge/themes/material/templates/.icons/material/flag-variant-off.svg +1 -0
  6239. docsforge/themes/material/templates/.icons/material/flag-variant-outline.svg +1 -0
  6240. docsforge/themes/material/templates/.icons/material/flag-variant-plus-outline.svg +1 -0
  6241. docsforge/themes/material/templates/.icons/material/flag-variant-plus.svg +1 -0
  6242. docsforge/themes/material/templates/.icons/material/flag-variant-remove-outline.svg +1 -0
  6243. docsforge/themes/material/templates/.icons/material/flag-variant-remove.svg +1 -0
  6244. docsforge/themes/material/templates/.icons/material/flag-variant.svg +1 -0
  6245. docsforge/themes/material/templates/.icons/material/flag.svg +1 -0
  6246. docsforge/themes/material/templates/.icons/material/flare.svg +1 -0
  6247. docsforge/themes/material/templates/.icons/material/flash-alert-outline.svg +1 -0
  6248. docsforge/themes/material/templates/.icons/material/flash-alert.svg +1 -0
  6249. docsforge/themes/material/templates/.icons/material/flash-auto.svg +1 -0
  6250. docsforge/themes/material/templates/.icons/material/flash-off-outline.svg +1 -0
  6251. docsforge/themes/material/templates/.icons/material/flash-off.svg +1 -0
  6252. docsforge/themes/material/templates/.icons/material/flash-outline.svg +1 -0
  6253. docsforge/themes/material/templates/.icons/material/flash-red-eye.svg +1 -0
  6254. docsforge/themes/material/templates/.icons/material/flash-triangle-outline.svg +1 -0
  6255. docsforge/themes/material/templates/.icons/material/flash-triangle.svg +1 -0
  6256. docsforge/themes/material/templates/.icons/material/flash.svg +1 -0
  6257. docsforge/themes/material/templates/.icons/material/flashlight-off.svg +1 -0
  6258. docsforge/themes/material/templates/.icons/material/flashlight.svg +1 -0
  6259. docsforge/themes/material/templates/.icons/material/flask-empty-minus-outline.svg +1 -0
  6260. docsforge/themes/material/templates/.icons/material/flask-empty-minus.svg +1 -0
  6261. docsforge/themes/material/templates/.icons/material/flask-empty-off-outline.svg +1 -0
  6262. docsforge/themes/material/templates/.icons/material/flask-empty-off.svg +1 -0
  6263. docsforge/themes/material/templates/.icons/material/flask-empty-outline.svg +1 -0
  6264. docsforge/themes/material/templates/.icons/material/flask-empty-plus-outline.svg +1 -0
  6265. docsforge/themes/material/templates/.icons/material/flask-empty-plus.svg +1 -0
  6266. docsforge/themes/material/templates/.icons/material/flask-empty-remove-outline.svg +1 -0
  6267. docsforge/themes/material/templates/.icons/material/flask-empty-remove.svg +1 -0
  6268. docsforge/themes/material/templates/.icons/material/flask-empty.svg +1 -0
  6269. docsforge/themes/material/templates/.icons/material/flask-minus-outline.svg +1 -0
  6270. docsforge/themes/material/templates/.icons/material/flask-minus.svg +1 -0
  6271. docsforge/themes/material/templates/.icons/material/flask-off-outline.svg +1 -0
  6272. docsforge/themes/material/templates/.icons/material/flask-off.svg +1 -0
  6273. docsforge/themes/material/templates/.icons/material/flask-outline.svg +1 -0
  6274. docsforge/themes/material/templates/.icons/material/flask-plus-outline.svg +1 -0
  6275. docsforge/themes/material/templates/.icons/material/flask-plus.svg +1 -0
  6276. docsforge/themes/material/templates/.icons/material/flask-remove-outline.svg +1 -0
  6277. docsforge/themes/material/templates/.icons/material/flask-remove.svg +1 -0
  6278. docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty-outline.svg +1 -0
  6279. docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty.svg +1 -0
  6280. docsforge/themes/material/templates/.icons/material/flask-round-bottom-outline.svg +1 -0
  6281. docsforge/themes/material/templates/.icons/material/flask-round-bottom.svg +1 -0
  6282. docsforge/themes/material/templates/.icons/material/flask.svg +1 -0
  6283. docsforge/themes/material/templates/.icons/material/fleur-de-lis.svg +1 -0
  6284. docsforge/themes/material/templates/.icons/material/flip-horizontal.svg +1 -0
  6285. docsforge/themes/material/templates/.icons/material/flip-to-back.svg +1 -0
  6286. docsforge/themes/material/templates/.icons/material/flip-to-front.svg +1 -0
  6287. docsforge/themes/material/templates/.icons/material/flip-vertical.svg +1 -0
  6288. docsforge/themes/material/templates/.icons/material/floor-lamp-dual-outline.svg +1 -0
  6289. docsforge/themes/material/templates/.icons/material/floor-lamp-dual.svg +1 -0
  6290. docsforge/themes/material/templates/.icons/material/floor-lamp-outline.svg +1 -0
  6291. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-outline.svg +1 -0
  6292. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg +1 -0
  6293. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant.svg +1 -0
  6294. docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere.svg +1 -0
  6295. docsforge/themes/material/templates/.icons/material/floor-lamp.svg +1 -0
  6296. docsforge/themes/material/templates/.icons/material/floor-plan.svg +1 -0
  6297. docsforge/themes/material/templates/.icons/material/floppy-variant.svg +1 -0
  6298. docsforge/themes/material/templates/.icons/material/floppy.svg +1 -0
  6299. docsforge/themes/material/templates/.icons/material/flower-outline.svg +1 -0
  6300. docsforge/themes/material/templates/.icons/material/flower-pollen-outline.svg +1 -0
  6301. docsforge/themes/material/templates/.icons/material/flower-pollen.svg +1 -0
  6302. docsforge/themes/material/templates/.icons/material/flower-poppy.svg +1 -0
  6303. docsforge/themes/material/templates/.icons/material/flower-tulip-outline.svg +1 -0
  6304. docsforge/themes/material/templates/.icons/material/flower-tulip.svg +1 -0
  6305. docsforge/themes/material/templates/.icons/material/flower.svg +1 -0
  6306. docsforge/themes/material/templates/.icons/material/focus-auto.svg +1 -0
  6307. docsforge/themes/material/templates/.icons/material/focus-field-horizontal.svg +1 -0
  6308. docsforge/themes/material/templates/.icons/material/focus-field-vertical.svg +1 -0
  6309. docsforge/themes/material/templates/.icons/material/focus-field.svg +1 -0
  6310. docsforge/themes/material/templates/.icons/material/folder-account-outline.svg +1 -0
  6311. docsforge/themes/material/templates/.icons/material/folder-account.svg +1 -0
  6312. docsforge/themes/material/templates/.icons/material/folder-alert-outline.svg +1 -0
  6313. docsforge/themes/material/templates/.icons/material/folder-alert.svg +1 -0
  6314. docsforge/themes/material/templates/.icons/material/folder-arrow-down-outline.svg +1 -0
  6315. docsforge/themes/material/templates/.icons/material/folder-arrow-down.svg +1 -0
  6316. docsforge/themes/material/templates/.icons/material/folder-arrow-left-outline.svg +1 -0
  6317. docsforge/themes/material/templates/.icons/material/folder-arrow-left-right-outline.svg +1 -0
  6318. docsforge/themes/material/templates/.icons/material/folder-arrow-left-right.svg +1 -0
  6319. docsforge/themes/material/templates/.icons/material/folder-arrow-left.svg +1 -0
  6320. docsforge/themes/material/templates/.icons/material/folder-arrow-right-outline.svg +1 -0
  6321. docsforge/themes/material/templates/.icons/material/folder-arrow-right.svg +1 -0
  6322. docsforge/themes/material/templates/.icons/material/folder-arrow-up-down-outline.svg +1 -0
  6323. docsforge/themes/material/templates/.icons/material/folder-arrow-up-down.svg +1 -0
  6324. docsforge/themes/material/templates/.icons/material/folder-arrow-up-outline.svg +1 -0
  6325. docsforge/themes/material/templates/.icons/material/folder-arrow-up.svg +1 -0
  6326. docsforge/themes/material/templates/.icons/material/folder-cancel-outline.svg +1 -0
  6327. docsforge/themes/material/templates/.icons/material/folder-cancel.svg +1 -0
  6328. docsforge/themes/material/templates/.icons/material/folder-check-outline.svg +1 -0
  6329. docsforge/themes/material/templates/.icons/material/folder-check.svg +1 -0
  6330. docsforge/themes/material/templates/.icons/material/folder-clock-outline.svg +1 -0
  6331. docsforge/themes/material/templates/.icons/material/folder-clock.svg +1 -0
  6332. docsforge/themes/material/templates/.icons/material/folder-cog-outline.svg +1 -0
  6333. docsforge/themes/material/templates/.icons/material/folder-cog.svg +1 -0
  6334. docsforge/themes/material/templates/.icons/material/folder-download-outline.svg +1 -0
  6335. docsforge/themes/material/templates/.icons/material/folder-download.svg +1 -0
  6336. docsforge/themes/material/templates/.icons/material/folder-edit-outline.svg +1 -0
  6337. docsforge/themes/material/templates/.icons/material/folder-edit.svg +1 -0
  6338. docsforge/themes/material/templates/.icons/material/folder-eye-outline.svg +1 -0
  6339. docsforge/themes/material/templates/.icons/material/folder-eye.svg +1 -0
  6340. docsforge/themes/material/templates/.icons/material/folder-file-outline.svg +1 -0
  6341. docsforge/themes/material/templates/.icons/material/folder-file.svg +1 -0
  6342. docsforge/themes/material/templates/.icons/material/folder-google-drive.svg +1 -0
  6343. docsforge/themes/material/templates/.icons/material/folder-heart-outline.svg +1 -0
  6344. docsforge/themes/material/templates/.icons/material/folder-heart.svg +1 -0
  6345. docsforge/themes/material/templates/.icons/material/folder-hidden.svg +1 -0
  6346. docsforge/themes/material/templates/.icons/material/folder-home-outline.svg +1 -0
  6347. docsforge/themes/material/templates/.icons/material/folder-home.svg +1 -0
  6348. docsforge/themes/material/templates/.icons/material/folder-image.svg +1 -0
  6349. docsforge/themes/material/templates/.icons/material/folder-information-outline.svg +1 -0
  6350. docsforge/themes/material/templates/.icons/material/folder-information.svg +1 -0
  6351. docsforge/themes/material/templates/.icons/material/folder-key-network-outline.svg +1 -0
  6352. docsforge/themes/material/templates/.icons/material/folder-key-network.svg +1 -0
  6353. docsforge/themes/material/templates/.icons/material/folder-key-outline.svg +1 -0
  6354. docsforge/themes/material/templates/.icons/material/folder-key.svg +1 -0
  6355. docsforge/themes/material/templates/.icons/material/folder-lock-open-outline.svg +1 -0
  6356. docsforge/themes/material/templates/.icons/material/folder-lock-open.svg +1 -0
  6357. docsforge/themes/material/templates/.icons/material/folder-lock-outline.svg +1 -0
  6358. docsforge/themes/material/templates/.icons/material/folder-lock.svg +1 -0
  6359. docsforge/themes/material/templates/.icons/material/folder-marker-outline.svg +1 -0
  6360. docsforge/themes/material/templates/.icons/material/folder-marker.svg +1 -0
  6361. docsforge/themes/material/templates/.icons/material/folder-minus-outline.svg +1 -0
  6362. docsforge/themes/material/templates/.icons/material/folder-minus.svg +1 -0
  6363. docsforge/themes/material/templates/.icons/material/folder-move-outline.svg +1 -0
  6364. docsforge/themes/material/templates/.icons/material/folder-move.svg +1 -0
  6365. docsforge/themes/material/templates/.icons/material/folder-multiple-image.svg +1 -0
  6366. docsforge/themes/material/templates/.icons/material/folder-multiple-outline.svg +1 -0
  6367. docsforge/themes/material/templates/.icons/material/folder-multiple-plus-outline.svg +1 -0
  6368. docsforge/themes/material/templates/.icons/material/folder-multiple-plus.svg +1 -0
  6369. docsforge/themes/material/templates/.icons/material/folder-multiple.svg +1 -0
  6370. docsforge/themes/material/templates/.icons/material/folder-music-outline.svg +1 -0
  6371. docsforge/themes/material/templates/.icons/material/folder-music.svg +1 -0
  6372. docsforge/themes/material/templates/.icons/material/folder-network-outline.svg +1 -0
  6373. docsforge/themes/material/templates/.icons/material/folder-network.svg +1 -0
  6374. docsforge/themes/material/templates/.icons/material/folder-off-outline.svg +1 -0
  6375. docsforge/themes/material/templates/.icons/material/folder-off.svg +1 -0
  6376. docsforge/themes/material/templates/.icons/material/folder-open-outline.svg +1 -0
  6377. docsforge/themes/material/templates/.icons/material/folder-open.svg +1 -0
  6378. docsforge/themes/material/templates/.icons/material/folder-outline.svg +1 -0
  6379. docsforge/themes/material/templates/.icons/material/folder-play-outline.svg +1 -0
  6380. docsforge/themes/material/templates/.icons/material/folder-play.svg +1 -0
  6381. docsforge/themes/material/templates/.icons/material/folder-plus-outline.svg +1 -0
  6382. docsforge/themes/material/templates/.icons/material/folder-plus.svg +1 -0
  6383. docsforge/themes/material/templates/.icons/material/folder-pound-outline.svg +1 -0
  6384. docsforge/themes/material/templates/.icons/material/folder-pound.svg +1 -0
  6385. docsforge/themes/material/templates/.icons/material/folder-question-outline.svg +1 -0
  6386. docsforge/themes/material/templates/.icons/material/folder-question.svg +1 -0
  6387. docsforge/themes/material/templates/.icons/material/folder-refresh-outline.svg +1 -0
  6388. docsforge/themes/material/templates/.icons/material/folder-refresh.svg +1 -0
  6389. docsforge/themes/material/templates/.icons/material/folder-remove-outline.svg +1 -0
  6390. docsforge/themes/material/templates/.icons/material/folder-remove.svg +1 -0
  6391. docsforge/themes/material/templates/.icons/material/folder-search-outline.svg +1 -0
  6392. docsforge/themes/material/templates/.icons/material/folder-search.svg +1 -0
  6393. docsforge/themes/material/templates/.icons/material/folder-settings-outline.svg +1 -0
  6394. docsforge/themes/material/templates/.icons/material/folder-settings.svg +1 -0
  6395. docsforge/themes/material/templates/.icons/material/folder-star-multiple-outline.svg +1 -0
  6396. docsforge/themes/material/templates/.icons/material/folder-star-multiple.svg +1 -0
  6397. docsforge/themes/material/templates/.icons/material/folder-star-outline.svg +1 -0
  6398. docsforge/themes/material/templates/.icons/material/folder-star.svg +1 -0
  6399. docsforge/themes/material/templates/.icons/material/folder-swap-outline.svg +1 -0
  6400. docsforge/themes/material/templates/.icons/material/folder-swap.svg +1 -0
  6401. docsforge/themes/material/templates/.icons/material/folder-sync-outline.svg +1 -0
  6402. docsforge/themes/material/templates/.icons/material/folder-sync.svg +1 -0
  6403. docsforge/themes/material/templates/.icons/material/folder-table-outline.svg +1 -0
  6404. docsforge/themes/material/templates/.icons/material/folder-table.svg +1 -0
  6405. docsforge/themes/material/templates/.icons/material/folder-text-outline.svg +1 -0
  6406. docsforge/themes/material/templates/.icons/material/folder-text.svg +1 -0
  6407. docsforge/themes/material/templates/.icons/material/folder-upload-outline.svg +1 -0
  6408. docsforge/themes/material/templates/.icons/material/folder-upload.svg +1 -0
  6409. docsforge/themes/material/templates/.icons/material/folder-wrench-outline.svg +1 -0
  6410. docsforge/themes/material/templates/.icons/material/folder-wrench.svg +1 -0
  6411. docsforge/themes/material/templates/.icons/material/folder-zip-outline.svg +1 -0
  6412. docsforge/themes/material/templates/.icons/material/folder-zip.svg +1 -0
  6413. docsforge/themes/material/templates/.icons/material/folder.svg +1 -0
  6414. docsforge/themes/material/templates/.icons/material/font-awesome.svg +1 -0
  6415. docsforge/themes/material/templates/.icons/material/food-apple-outline.svg +1 -0
  6416. docsforge/themes/material/templates/.icons/material/food-apple.svg +1 -0
  6417. docsforge/themes/material/templates/.icons/material/food-croissant.svg +1 -0
  6418. docsforge/themes/material/templates/.icons/material/food-drumstick-off-outline.svg +1 -0
  6419. docsforge/themes/material/templates/.icons/material/food-drumstick-off.svg +1 -0
  6420. docsforge/themes/material/templates/.icons/material/food-drumstick-outline.svg +1 -0
  6421. docsforge/themes/material/templates/.icons/material/food-drumstick.svg +1 -0
  6422. docsforge/themes/material/templates/.icons/material/food-fork-drink.svg +1 -0
  6423. docsforge/themes/material/templates/.icons/material/food-halal.svg +1 -0
  6424. docsforge/themes/material/templates/.icons/material/food-hot-dog.svg +1 -0
  6425. docsforge/themes/material/templates/.icons/material/food-kosher.svg +1 -0
  6426. docsforge/themes/material/templates/.icons/material/food-off-outline.svg +1 -0
  6427. docsforge/themes/material/templates/.icons/material/food-off.svg +1 -0
  6428. docsforge/themes/material/templates/.icons/material/food-outline.svg +1 -0
  6429. docsforge/themes/material/templates/.icons/material/food-steak-off.svg +1 -0
  6430. docsforge/themes/material/templates/.icons/material/food-steak.svg +1 -0
  6431. docsforge/themes/material/templates/.icons/material/food-takeout-box-outline.svg +1 -0
  6432. docsforge/themes/material/templates/.icons/material/food-takeout-box.svg +1 -0
  6433. docsforge/themes/material/templates/.icons/material/food-turkey.svg +1 -0
  6434. docsforge/themes/material/templates/.icons/material/food-variant-off.svg +1 -0
  6435. docsforge/themes/material/templates/.icons/material/food-variant.svg +1 -0
  6436. docsforge/themes/material/templates/.icons/material/food.svg +1 -0
  6437. docsforge/themes/material/templates/.icons/material/foot-print.svg +1 -0
  6438. docsforge/themes/material/templates/.icons/material/football-australian.svg +1 -0
  6439. docsforge/themes/material/templates/.icons/material/football-helmet.svg +1 -0
  6440. docsforge/themes/material/templates/.icons/material/football.svg +1 -0
  6441. docsforge/themes/material/templates/.icons/material/forest-outline.svg +1 -0
  6442. docsforge/themes/material/templates/.icons/material/forest.svg +1 -0
  6443. docsforge/themes/material/templates/.icons/material/forklift.svg +1 -0
  6444. docsforge/themes/material/templates/.icons/material/form-dropdown.svg +1 -0
  6445. docsforge/themes/material/templates/.icons/material/form-select.svg +1 -0
  6446. docsforge/themes/material/templates/.icons/material/form-textarea.svg +1 -0
  6447. docsforge/themes/material/templates/.icons/material/form-textbox-lock.svg +1 -0
  6448. docsforge/themes/material/templates/.icons/material/form-textbox-password.svg +1 -0
  6449. docsforge/themes/material/templates/.icons/material/form-textbox.svg +1 -0
  6450. docsforge/themes/material/templates/.icons/material/format-align-bottom.svg +1 -0
  6451. docsforge/themes/material/templates/.icons/material/format-align-center.svg +1 -0
  6452. docsforge/themes/material/templates/.icons/material/format-align-justify.svg +1 -0
  6453. docsforge/themes/material/templates/.icons/material/format-align-left.svg +1 -0
  6454. docsforge/themes/material/templates/.icons/material/format-align-middle.svg +1 -0
  6455. docsforge/themes/material/templates/.icons/material/format-align-right.svg +1 -0
  6456. docsforge/themes/material/templates/.icons/material/format-align-top.svg +1 -0
  6457. docsforge/themes/material/templates/.icons/material/format-annotation-minus.svg +1 -0
  6458. docsforge/themes/material/templates/.icons/material/format-annotation-plus.svg +1 -0
  6459. docsforge/themes/material/templates/.icons/material/format-bold.svg +1 -0
  6460. docsforge/themes/material/templates/.icons/material/format-clear.svg +1 -0
  6461. docsforge/themes/material/templates/.icons/material/format-color-fill.svg +1 -0
  6462. docsforge/themes/material/templates/.icons/material/format-color-highlight.svg +1 -0
  6463. docsforge/themes/material/templates/.icons/material/format-color-marker-cancel.svg +1 -0
  6464. docsforge/themes/material/templates/.icons/material/format-color-text.svg +1 -0
  6465. docsforge/themes/material/templates/.icons/material/format-columns.svg +1 -0
  6466. docsforge/themes/material/templates/.icons/material/format-float-center.svg +1 -0
  6467. docsforge/themes/material/templates/.icons/material/format-float-left.svg +1 -0
  6468. docsforge/themes/material/templates/.icons/material/format-float-none.svg +1 -0
  6469. docsforge/themes/material/templates/.icons/material/format-float-right.svg +1 -0
  6470. docsforge/themes/material/templates/.icons/material/format-font-size-decrease.svg +1 -0
  6471. docsforge/themes/material/templates/.icons/material/format-font-size-increase.svg +1 -0
  6472. docsforge/themes/material/templates/.icons/material/format-font.svg +1 -0
  6473. docsforge/themes/material/templates/.icons/material/format-header-1.svg +1 -0
  6474. docsforge/themes/material/templates/.icons/material/format-header-2.svg +1 -0
  6475. docsforge/themes/material/templates/.icons/material/format-header-3.svg +1 -0
  6476. docsforge/themes/material/templates/.icons/material/format-header-4.svg +1 -0
  6477. docsforge/themes/material/templates/.icons/material/format-header-5.svg +1 -0
  6478. docsforge/themes/material/templates/.icons/material/format-header-6.svg +1 -0
  6479. docsforge/themes/material/templates/.icons/material/format-header-decrease.svg +1 -0
  6480. docsforge/themes/material/templates/.icons/material/format-header-equal.svg +1 -0
  6481. docsforge/themes/material/templates/.icons/material/format-header-increase.svg +1 -0
  6482. docsforge/themes/material/templates/.icons/material/format-header-pound.svg +1 -0
  6483. docsforge/themes/material/templates/.icons/material/format-horizontal-align-center.svg +1 -0
  6484. docsforge/themes/material/templates/.icons/material/format-horizontal-align-left.svg +1 -0
  6485. docsforge/themes/material/templates/.icons/material/format-horizontal-align-right.svg +1 -0
  6486. docsforge/themes/material/templates/.icons/material/format-indent-decrease.svg +1 -0
  6487. docsforge/themes/material/templates/.icons/material/format-indent-increase.svg +1 -0
  6488. docsforge/themes/material/templates/.icons/material/format-italic.svg +1 -0
  6489. docsforge/themes/material/templates/.icons/material/format-letter-case-lower.svg +1 -0
  6490. docsforge/themes/material/templates/.icons/material/format-letter-case-upper.svg +1 -0
  6491. docsforge/themes/material/templates/.icons/material/format-letter-case.svg +1 -0
  6492. docsforge/themes/material/templates/.icons/material/format-letter-ends-with.svg +1 -0
  6493. docsforge/themes/material/templates/.icons/material/format-letter-matches.svg +1 -0
  6494. docsforge/themes/material/templates/.icons/material/format-letter-spacing-variant.svg +1 -0
  6495. docsforge/themes/material/templates/.icons/material/format-letter-spacing.svg +1 -0
  6496. docsforge/themes/material/templates/.icons/material/format-letter-starts-with.svg +1 -0
  6497. docsforge/themes/material/templates/.icons/material/format-line-height.svg +1 -0
  6498. docsforge/themes/material/templates/.icons/material/format-line-spacing.svg +1 -0
  6499. docsforge/themes/material/templates/.icons/material/format-line-style.svg +1 -0
  6500. docsforge/themes/material/templates/.icons/material/format-line-weight.svg +1 -0
  6501. docsforge/themes/material/templates/.icons/material/format-list-bulleted-square.svg +1 -0
  6502. docsforge/themes/material/templates/.icons/material/format-list-bulleted-triangle.svg +1 -0
  6503. docsforge/themes/material/templates/.icons/material/format-list-bulleted-type.svg +1 -0
  6504. docsforge/themes/material/templates/.icons/material/format-list-bulleted.svg +1 -0
  6505. docsforge/themes/material/templates/.icons/material/format-list-checkbox.svg +1 -0
  6506. docsforge/themes/material/templates/.icons/material/format-list-checks.svg +1 -0
  6507. docsforge/themes/material/templates/.icons/material/format-list-group-plus.svg +1 -0
  6508. docsforge/themes/material/templates/.icons/material/format-list-group.svg +1 -0
  6509. docsforge/themes/material/templates/.icons/material/format-list-numbered-rtl.svg +1 -0
  6510. docsforge/themes/material/templates/.icons/material/format-list-numbered.svg +1 -0
  6511. docsforge/themes/material/templates/.icons/material/format-list-text.svg +1 -0
  6512. docsforge/themes/material/templates/.icons/material/format-overline.svg +1 -0
  6513. docsforge/themes/material/templates/.icons/material/format-page-break.svg +1 -0
  6514. docsforge/themes/material/templates/.icons/material/format-page-split.svg +1 -0
  6515. docsforge/themes/material/templates/.icons/material/format-paint.svg +1 -0
  6516. docsforge/themes/material/templates/.icons/material/format-paragraph-spacing.svg +1 -0
  6517. docsforge/themes/material/templates/.icons/material/format-paragraph.svg +1 -0
  6518. docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-left.svg +1 -0
  6519. docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-right.svg +1 -0
  6520. docsforge/themes/material/templates/.icons/material/format-pilcrow.svg +1 -0
  6521. docsforge/themes/material/templates/.icons/material/format-quote-close-outline.svg +1 -0
  6522. docsforge/themes/material/templates/.icons/material/format-quote-close.svg +1 -0
  6523. docsforge/themes/material/templates/.icons/material/format-quote-open-outline.svg +1 -0
  6524. docsforge/themes/material/templates/.icons/material/format-quote-open.svg +1 -0
  6525. docsforge/themes/material/templates/.icons/material/format-rotate-90.svg +1 -0
  6526. docsforge/themes/material/templates/.icons/material/format-section.svg +1 -0
  6527. docsforge/themes/material/templates/.icons/material/format-size.svg +1 -0
  6528. docsforge/themes/material/templates/.icons/material/format-strikethrough-variant.svg +1 -0
  6529. docsforge/themes/material/templates/.icons/material/format-strikethrough.svg +1 -0
  6530. docsforge/themes/material/templates/.icons/material/format-subscript.svg +1 -0
  6531. docsforge/themes/material/templates/.icons/material/format-superscript.svg +1 -0
  6532. docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-down.svg +1 -0
  6533. docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-up.svg +1 -0
  6534. docsforge/themes/material/templates/.icons/material/format-text-rotation-down-vertical.svg +1 -0
  6535. docsforge/themes/material/templates/.icons/material/format-text-rotation-down.svg +1 -0
  6536. docsforge/themes/material/templates/.icons/material/format-text-rotation-none.svg +1 -0
  6537. docsforge/themes/material/templates/.icons/material/format-text-rotation-up.svg +1 -0
  6538. docsforge/themes/material/templates/.icons/material/format-text-rotation-vertical.svg +1 -0
  6539. docsforge/themes/material/templates/.icons/material/format-text-variant-outline.svg +1 -0
  6540. docsforge/themes/material/templates/.icons/material/format-text-variant.svg +1 -0
  6541. docsforge/themes/material/templates/.icons/material/format-text-wrapping-clip.svg +1 -0
  6542. docsforge/themes/material/templates/.icons/material/format-text-wrapping-overflow.svg +1 -0
  6543. docsforge/themes/material/templates/.icons/material/format-text-wrapping-wrap.svg +1 -0
  6544. docsforge/themes/material/templates/.icons/material/format-text.svg +1 -0
  6545. docsforge/themes/material/templates/.icons/material/format-textbox.svg +1 -0
  6546. docsforge/themes/material/templates/.icons/material/format-title.svg +1 -0
  6547. docsforge/themes/material/templates/.icons/material/format-underline-wavy.svg +1 -0
  6548. docsforge/themes/material/templates/.icons/material/format-underline.svg +1 -0
  6549. docsforge/themes/material/templates/.icons/material/format-vertical-align-bottom.svg +1 -0
  6550. docsforge/themes/material/templates/.icons/material/format-vertical-align-center.svg +1 -0
  6551. docsforge/themes/material/templates/.icons/material/format-vertical-align-top.svg +1 -0
  6552. docsforge/themes/material/templates/.icons/material/format-wrap-inline.svg +1 -0
  6553. docsforge/themes/material/templates/.icons/material/format-wrap-square.svg +1 -0
  6554. docsforge/themes/material/templates/.icons/material/format-wrap-tight.svg +1 -0
  6555. docsforge/themes/material/templates/.icons/material/format-wrap-top-bottom.svg +1 -0
  6556. docsforge/themes/material/templates/.icons/material/forum-minus-outline.svg +1 -0
  6557. docsforge/themes/material/templates/.icons/material/forum-minus.svg +1 -0
  6558. docsforge/themes/material/templates/.icons/material/forum-outline.svg +1 -0
  6559. docsforge/themes/material/templates/.icons/material/forum-plus-outline.svg +1 -0
  6560. docsforge/themes/material/templates/.icons/material/forum-plus.svg +1 -0
  6561. docsforge/themes/material/templates/.icons/material/forum-remove-outline.svg +1 -0
  6562. docsforge/themes/material/templates/.icons/material/forum-remove.svg +1 -0
  6563. docsforge/themes/material/templates/.icons/material/forum.svg +1 -0
  6564. docsforge/themes/material/templates/.icons/material/forward.svg +1 -0
  6565. docsforge/themes/material/templates/.icons/material/forwardburger.svg +1 -0
  6566. docsforge/themes/material/templates/.icons/material/fountain-pen-tip.svg +1 -0
  6567. docsforge/themes/material/templates/.icons/material/fountain-pen.svg +1 -0
  6568. docsforge/themes/material/templates/.icons/material/fountain.svg +1 -0
  6569. docsforge/themes/material/templates/.icons/material/fraction-one-half.svg +1 -0
  6570. docsforge/themes/material/templates/.icons/material/freebsd.svg +1 -0
  6571. docsforge/themes/material/templates/.icons/material/french-fries.svg +1 -0
  6572. docsforge/themes/material/templates/.icons/material/frequently-asked-questions.svg +1 -0
  6573. docsforge/themes/material/templates/.icons/material/fridge-alert-outline.svg +1 -0
  6574. docsforge/themes/material/templates/.icons/material/fridge-alert.svg +1 -0
  6575. docsforge/themes/material/templates/.icons/material/fridge-bottom.svg +1 -0
  6576. docsforge/themes/material/templates/.icons/material/fridge-industrial-alert-outline.svg +1 -0
  6577. docsforge/themes/material/templates/.icons/material/fridge-industrial-alert.svg +1 -0
  6578. docsforge/themes/material/templates/.icons/material/fridge-industrial-off-outline.svg +1 -0
  6579. docsforge/themes/material/templates/.icons/material/fridge-industrial-off.svg +1 -0
  6580. docsforge/themes/material/templates/.icons/material/fridge-industrial-outline.svg +1 -0
  6581. docsforge/themes/material/templates/.icons/material/fridge-industrial.svg +1 -0
  6582. docsforge/themes/material/templates/.icons/material/fridge-off-outline.svg +1 -0
  6583. docsforge/themes/material/templates/.icons/material/fridge-off.svg +1 -0
  6584. docsforge/themes/material/templates/.icons/material/fridge-outline.svg +1 -0
  6585. docsforge/themes/material/templates/.icons/material/fridge-top.svg +1 -0
  6586. docsforge/themes/material/templates/.icons/material/fridge-variant-alert-outline.svg +1 -0
  6587. docsforge/themes/material/templates/.icons/material/fridge-variant-alert.svg +1 -0
  6588. docsforge/themes/material/templates/.icons/material/fridge-variant-off-outline.svg +1 -0
  6589. docsforge/themes/material/templates/.icons/material/fridge-variant-off.svg +1 -0
  6590. docsforge/themes/material/templates/.icons/material/fridge-variant-outline.svg +1 -0
  6591. docsforge/themes/material/templates/.icons/material/fridge-variant.svg +1 -0
  6592. docsforge/themes/material/templates/.icons/material/fridge.svg +1 -0
  6593. docsforge/themes/material/templates/.icons/material/fruit-cherries-off.svg +1 -0
  6594. docsforge/themes/material/templates/.icons/material/fruit-cherries.svg +1 -0
  6595. docsforge/themes/material/templates/.icons/material/fruit-citrus-off.svg +1 -0
  6596. docsforge/themes/material/templates/.icons/material/fruit-citrus.svg +1 -0
  6597. docsforge/themes/material/templates/.icons/material/fruit-grapes-outline.svg +1 -0
  6598. docsforge/themes/material/templates/.icons/material/fruit-grapes.svg +1 -0
  6599. docsforge/themes/material/templates/.icons/material/fruit-pear.svg +1 -0
  6600. docsforge/themes/material/templates/.icons/material/fruit-pineapple.svg +1 -0
  6601. docsforge/themes/material/templates/.icons/material/fruit-watermelon.svg +1 -0
  6602. docsforge/themes/material/templates/.icons/material/fuel-cell.svg +1 -0
  6603. docsforge/themes/material/templates/.icons/material/fuel.svg +1 -0
  6604. docsforge/themes/material/templates/.icons/material/fullscreen-exit.svg +1 -0
  6605. docsforge/themes/material/templates/.icons/material/fullscreen.svg +1 -0
  6606. docsforge/themes/material/templates/.icons/material/function-variant.svg +1 -0
  6607. docsforge/themes/material/templates/.icons/material/function.svg +1 -0
  6608. docsforge/themes/material/templates/.icons/material/furigana-horizontal.svg +1 -0
  6609. docsforge/themes/material/templates/.icons/material/furigana-vertical.svg +1 -0
  6610. docsforge/themes/material/templates/.icons/material/fuse-alert.svg +1 -0
  6611. docsforge/themes/material/templates/.icons/material/fuse-blade.svg +1 -0
  6612. docsforge/themes/material/templates/.icons/material/fuse-off.svg +1 -0
  6613. docsforge/themes/material/templates/.icons/material/fuse.svg +1 -0
  6614. docsforge/themes/material/templates/.icons/material/gamepad-circle-down.svg +1 -0
  6615. docsforge/themes/material/templates/.icons/material/gamepad-circle-left.svg +1 -0
  6616. docsforge/themes/material/templates/.icons/material/gamepad-circle-outline.svg +1 -0
  6617. docsforge/themes/material/templates/.icons/material/gamepad-circle-right.svg +1 -0
  6618. docsforge/themes/material/templates/.icons/material/gamepad-circle-up.svg +1 -0
  6619. docsforge/themes/material/templates/.icons/material/gamepad-circle.svg +1 -0
  6620. docsforge/themes/material/templates/.icons/material/gamepad-down.svg +1 -0
  6621. docsforge/themes/material/templates/.icons/material/gamepad-left.svg +1 -0
  6622. docsforge/themes/material/templates/.icons/material/gamepad-outline.svg +1 -0
  6623. docsforge/themes/material/templates/.icons/material/gamepad-right.svg +1 -0
  6624. docsforge/themes/material/templates/.icons/material/gamepad-round-down.svg +1 -0
  6625. docsforge/themes/material/templates/.icons/material/gamepad-round-left.svg +1 -0
  6626. docsforge/themes/material/templates/.icons/material/gamepad-round-outline.svg +1 -0
  6627. docsforge/themes/material/templates/.icons/material/gamepad-round-right.svg +1 -0
  6628. docsforge/themes/material/templates/.icons/material/gamepad-round-up.svg +1 -0
  6629. docsforge/themes/material/templates/.icons/material/gamepad-round.svg +1 -0
  6630. docsforge/themes/material/templates/.icons/material/gamepad-square-outline.svg +1 -0
  6631. docsforge/themes/material/templates/.icons/material/gamepad-square.svg +1 -0
  6632. docsforge/themes/material/templates/.icons/material/gamepad-up.svg +1 -0
  6633. docsforge/themes/material/templates/.icons/material/gamepad-variant-outline.svg +1 -0
  6634. docsforge/themes/material/templates/.icons/material/gamepad-variant.svg +1 -0
  6635. docsforge/themes/material/templates/.icons/material/gamepad.svg +1 -0
  6636. docsforge/themes/material/templates/.icons/material/gamma.svg +1 -0
  6637. docsforge/themes/material/templates/.icons/material/gantry-crane.svg +1 -0
  6638. docsforge/themes/material/templates/.icons/material/garage-alert-variant.svg +1 -0
  6639. docsforge/themes/material/templates/.icons/material/garage-alert.svg +1 -0
  6640. docsforge/themes/material/templates/.icons/material/garage-lock.svg +1 -0
  6641. docsforge/themes/material/templates/.icons/material/garage-open-variant.svg +1 -0
  6642. docsforge/themes/material/templates/.icons/material/garage-open.svg +1 -0
  6643. docsforge/themes/material/templates/.icons/material/garage-variant-lock.svg +1 -0
  6644. docsforge/themes/material/templates/.icons/material/garage-variant.svg +1 -0
  6645. docsforge/themes/material/templates/.icons/material/garage.svg +1 -0
  6646. docsforge/themes/material/templates/.icons/material/gas-burner.svg +1 -0
  6647. docsforge/themes/material/templates/.icons/material/gas-cylinder.svg +1 -0
  6648. docsforge/themes/material/templates/.icons/material/gas-station-in-use-outline.svg +1 -0
  6649. docsforge/themes/material/templates/.icons/material/gas-station-in-use.svg +1 -0
  6650. docsforge/themes/material/templates/.icons/material/gas-station-off-outline.svg +1 -0
  6651. docsforge/themes/material/templates/.icons/material/gas-station-off.svg +1 -0
  6652. docsforge/themes/material/templates/.icons/material/gas-station-outline.svg +1 -0
  6653. docsforge/themes/material/templates/.icons/material/gas-station.svg +1 -0
  6654. docsforge/themes/material/templates/.icons/material/gate-alert.svg +1 -0
  6655. docsforge/themes/material/templates/.icons/material/gate-and.svg +1 -0
  6656. docsforge/themes/material/templates/.icons/material/gate-arrow-left.svg +1 -0
  6657. docsforge/themes/material/templates/.icons/material/gate-arrow-right.svg +1 -0
  6658. docsforge/themes/material/templates/.icons/material/gate-buffer.svg +1 -0
  6659. docsforge/themes/material/templates/.icons/material/gate-nand.svg +1 -0
  6660. docsforge/themes/material/templates/.icons/material/gate-nor.svg +1 -0
  6661. docsforge/themes/material/templates/.icons/material/gate-not.svg +1 -0
  6662. docsforge/themes/material/templates/.icons/material/gate-open.svg +1 -0
  6663. docsforge/themes/material/templates/.icons/material/gate-or.svg +1 -0
  6664. docsforge/themes/material/templates/.icons/material/gate-xnor.svg +1 -0
  6665. docsforge/themes/material/templates/.icons/material/gate-xor.svg +1 -0
  6666. docsforge/themes/material/templates/.icons/material/gate.svg +1 -0
  6667. docsforge/themes/material/templates/.icons/material/gatsby.svg +1 -0
  6668. docsforge/themes/material/templates/.icons/material/gauge-empty.svg +1 -0
  6669. docsforge/themes/material/templates/.icons/material/gauge-full.svg +1 -0
  6670. docsforge/themes/material/templates/.icons/material/gauge-low.svg +1 -0
  6671. docsforge/themes/material/templates/.icons/material/gauge.svg +1 -0
  6672. docsforge/themes/material/templates/.icons/material/gavel.svg +1 -0
  6673. docsforge/themes/material/templates/.icons/material/gender-female.svg +1 -0
  6674. docsforge/themes/material/templates/.icons/material/gender-male-female-variant.svg +1 -0
  6675. docsforge/themes/material/templates/.icons/material/gender-male-female.svg +1 -0
  6676. docsforge/themes/material/templates/.icons/material/gender-male.svg +1 -0
  6677. docsforge/themes/material/templates/.icons/material/gender-non-binary.svg +1 -0
  6678. docsforge/themes/material/templates/.icons/material/gender-transgender.svg +1 -0
  6679. docsforge/themes/material/templates/.icons/material/generator-mobile.svg +1 -0
  6680. docsforge/themes/material/templates/.icons/material/generator-portable.svg +1 -0
  6681. docsforge/themes/material/templates/.icons/material/generator-stationary.svg +1 -0
  6682. docsforge/themes/material/templates/.icons/material/gentoo.svg +1 -0
  6683. docsforge/themes/material/templates/.icons/material/gesture-double-tap.svg +1 -0
  6684. docsforge/themes/material/templates/.icons/material/gesture-pinch.svg +1 -0
  6685. docsforge/themes/material/templates/.icons/material/gesture-spread.svg +1 -0
  6686. docsforge/themes/material/templates/.icons/material/gesture-swipe-down.svg +1 -0
  6687. docsforge/themes/material/templates/.icons/material/gesture-swipe-horizontal.svg +1 -0
  6688. docsforge/themes/material/templates/.icons/material/gesture-swipe-left.svg +1 -0
  6689. docsforge/themes/material/templates/.icons/material/gesture-swipe-right.svg +1 -0
  6690. docsforge/themes/material/templates/.icons/material/gesture-swipe-up.svg +1 -0
  6691. docsforge/themes/material/templates/.icons/material/gesture-swipe-vertical.svg +1 -0
  6692. docsforge/themes/material/templates/.icons/material/gesture-swipe.svg +1 -0
  6693. docsforge/themes/material/templates/.icons/material/gesture-tap-box.svg +1 -0
  6694. docsforge/themes/material/templates/.icons/material/gesture-tap-button.svg +1 -0
  6695. docsforge/themes/material/templates/.icons/material/gesture-tap-hold.svg +1 -0
  6696. docsforge/themes/material/templates/.icons/material/gesture-tap.svg +1 -0
  6697. docsforge/themes/material/templates/.icons/material/gesture-two-double-tap.svg +1 -0
  6698. docsforge/themes/material/templates/.icons/material/gesture-two-tap.svg +1 -0
  6699. docsforge/themes/material/templates/.icons/material/gesture.svg +1 -0
  6700. docsforge/themes/material/templates/.icons/material/ghost-off-outline.svg +1 -0
  6701. docsforge/themes/material/templates/.icons/material/ghost-off.svg +1 -0
  6702. docsforge/themes/material/templates/.icons/material/ghost-outline.svg +1 -0
  6703. docsforge/themes/material/templates/.icons/material/ghost.svg +1 -0
  6704. docsforge/themes/material/templates/.icons/material/gift-off-outline.svg +1 -0
  6705. docsforge/themes/material/templates/.icons/material/gift-off.svg +1 -0
  6706. docsforge/themes/material/templates/.icons/material/gift-open-outline.svg +1 -0
  6707. docsforge/themes/material/templates/.icons/material/gift-open.svg +1 -0
  6708. docsforge/themes/material/templates/.icons/material/gift-outline.svg +1 -0
  6709. docsforge/themes/material/templates/.icons/material/gift.svg +1 -0
  6710. docsforge/themes/material/templates/.icons/material/git.svg +1 -0
  6711. docsforge/themes/material/templates/.icons/material/github.svg +1 -0
  6712. docsforge/themes/material/templates/.icons/material/gitlab.svg +1 -0
  6713. docsforge/themes/material/templates/.icons/material/glass-cocktail-off.svg +1 -0
  6714. docsforge/themes/material/templates/.icons/material/glass-cocktail.svg +1 -0
  6715. docsforge/themes/material/templates/.icons/material/glass-flute.svg +1 -0
  6716. docsforge/themes/material/templates/.icons/material/glass-fragile.svg +1 -0
  6717. docsforge/themes/material/templates/.icons/material/glass-mug-off.svg +1 -0
  6718. docsforge/themes/material/templates/.icons/material/glass-mug-variant-off.svg +1 -0
  6719. docsforge/themes/material/templates/.icons/material/glass-mug-variant.svg +1 -0
  6720. docsforge/themes/material/templates/.icons/material/glass-mug.svg +1 -0
  6721. docsforge/themes/material/templates/.icons/material/glass-pint-outline.svg +1 -0
  6722. docsforge/themes/material/templates/.icons/material/glass-stange.svg +1 -0
  6723. docsforge/themes/material/templates/.icons/material/glass-tulip.svg +1 -0
  6724. docsforge/themes/material/templates/.icons/material/glass-wine.svg +1 -0
  6725. docsforge/themes/material/templates/.icons/material/glasses.svg +1 -0
  6726. docsforge/themes/material/templates/.icons/material/globe-light-outline.svg +1 -0
  6727. docsforge/themes/material/templates/.icons/material/globe-light.svg +1 -0
  6728. docsforge/themes/material/templates/.icons/material/globe-model.svg +1 -0
  6729. docsforge/themes/material/templates/.icons/material/gmail.svg +1 -0
  6730. docsforge/themes/material/templates/.icons/material/gnome.svg +1 -0
  6731. docsforge/themes/material/templates/.icons/material/go-kart-track.svg +1 -0
  6732. docsforge/themes/material/templates/.icons/material/go-kart.svg +1 -0
  6733. docsforge/themes/material/templates/.icons/material/gog.svg +1 -0
  6734. docsforge/themes/material/templates/.icons/material/gold.svg +1 -0
  6735. docsforge/themes/material/templates/.icons/material/golf-cart.svg +1 -0
  6736. docsforge/themes/material/templates/.icons/material/golf-tee.svg +1 -0
  6737. docsforge/themes/material/templates/.icons/material/golf.svg +1 -0
  6738. docsforge/themes/material/templates/.icons/material/gondola.svg +1 -0
  6739. docsforge/themes/material/templates/.icons/material/goodreads.svg +1 -0
  6740. docsforge/themes/material/templates/.icons/material/google-ads.svg +1 -0
  6741. docsforge/themes/material/templates/.icons/material/google-analytics.svg +1 -0
  6742. docsforge/themes/material/templates/.icons/material/google-assistant.svg +1 -0
  6743. docsforge/themes/material/templates/.icons/material/google-cardboard.svg +1 -0
  6744. docsforge/themes/material/templates/.icons/material/google-chrome.svg +1 -0
  6745. docsforge/themes/material/templates/.icons/material/google-circles-communities.svg +1 -0
  6746. docsforge/themes/material/templates/.icons/material/google-circles-extended.svg +1 -0
  6747. docsforge/themes/material/templates/.icons/material/google-circles-group.svg +1 -0
  6748. docsforge/themes/material/templates/.icons/material/google-circles.svg +1 -0
  6749. docsforge/themes/material/templates/.icons/material/google-classroom.svg +1 -0
  6750. docsforge/themes/material/templates/.icons/material/google-cloud.svg +1 -0
  6751. docsforge/themes/material/templates/.icons/material/google-downasaur.svg +1 -0
  6752. docsforge/themes/material/templates/.icons/material/google-drive.svg +1 -0
  6753. docsforge/themes/material/templates/.icons/material/google-earth.svg +1 -0
  6754. docsforge/themes/material/templates/.icons/material/google-fit.svg +1 -0
  6755. docsforge/themes/material/templates/.icons/material/google-glass.svg +1 -0
  6756. docsforge/themes/material/templates/.icons/material/google-hangouts.svg +1 -0
  6757. docsforge/themes/material/templates/.icons/material/google-keep.svg +1 -0
  6758. docsforge/themes/material/templates/.icons/material/google-lens.svg +1 -0
  6759. docsforge/themes/material/templates/.icons/material/google-maps.svg +1 -0
  6760. docsforge/themes/material/templates/.icons/material/google-my-business.svg +1 -0
  6761. docsforge/themes/material/templates/.icons/material/google-nearby.svg +1 -0
  6762. docsforge/themes/material/templates/.icons/material/google-play.svg +1 -0
  6763. docsforge/themes/material/templates/.icons/material/google-plus.svg +1 -0
  6764. docsforge/themes/material/templates/.icons/material/google-podcast.svg +1 -0
  6765. docsforge/themes/material/templates/.icons/material/google-spreadsheet.svg +1 -0
  6766. docsforge/themes/material/templates/.icons/material/google-street-view.svg +1 -0
  6767. docsforge/themes/material/templates/.icons/material/google-translate.svg +1 -0
  6768. docsforge/themes/material/templates/.icons/material/google.svg +1 -0
  6769. docsforge/themes/material/templates/.icons/material/gradient-horizontal.svg +1 -0
  6770. docsforge/themes/material/templates/.icons/material/gradient-vertical.svg +1 -0
  6771. docsforge/themes/material/templates/.icons/material/grain.svg +1 -0
  6772. docsforge/themes/material/templates/.icons/material/graph-outline.svg +1 -0
  6773. docsforge/themes/material/templates/.icons/material/graph.svg +1 -0
  6774. docsforge/themes/material/templates/.icons/material/graphql.svg +1 -0
  6775. docsforge/themes/material/templates/.icons/material/grass.svg +1 -0
  6776. docsforge/themes/material/templates/.icons/material/grave-stone.svg +1 -0
  6777. docsforge/themes/material/templates/.icons/material/grease-pencil.svg +1 -0
  6778. docsforge/themes/material/templates/.icons/material/greater-than-or-equal.svg +1 -0
  6779. docsforge/themes/material/templates/.icons/material/greater-than.svg +1 -0
  6780. docsforge/themes/material/templates/.icons/material/greenhouse.svg +1 -0
  6781. docsforge/themes/material/templates/.icons/material/grid-large.svg +1 -0
  6782. docsforge/themes/material/templates/.icons/material/grid-off.svg +1 -0
  6783. docsforge/themes/material/templates/.icons/material/grid.svg +1 -0
  6784. docsforge/themes/material/templates/.icons/material/grill-outline.svg +1 -0
  6785. docsforge/themes/material/templates/.icons/material/grill.svg +1 -0
  6786. docsforge/themes/material/templates/.icons/material/group.svg +1 -0
  6787. docsforge/themes/material/templates/.icons/material/guitar-acoustic.svg +1 -0
  6788. docsforge/themes/material/templates/.icons/material/guitar-electric.svg +1 -0
  6789. docsforge/themes/material/templates/.icons/material/guitar-pick-outline.svg +1 -0
  6790. docsforge/themes/material/templates/.icons/material/guitar-pick.svg +1 -0
  6791. docsforge/themes/material/templates/.icons/material/guy-fawkes-mask.svg +1 -0
  6792. docsforge/themes/material/templates/.icons/material/gymnastics.svg +1 -0
  6793. docsforge/themes/material/templates/.icons/material/hail.svg +1 -0
  6794. docsforge/themes/material/templates/.icons/material/hair-dryer-outline.svg +1 -0
  6795. docsforge/themes/material/templates/.icons/material/hair-dryer.svg +1 -0
  6796. docsforge/themes/material/templates/.icons/material/halloween.svg +1 -0
  6797. docsforge/themes/material/templates/.icons/material/hamburger-check.svg +1 -0
  6798. docsforge/themes/material/templates/.icons/material/hamburger-minus.svg +1 -0
  6799. docsforge/themes/material/templates/.icons/material/hamburger-off.svg +1 -0
  6800. docsforge/themes/material/templates/.icons/material/hamburger-plus.svg +1 -0
  6801. docsforge/themes/material/templates/.icons/material/hamburger-remove.svg +1 -0
  6802. docsforge/themes/material/templates/.icons/material/hamburger.svg +1 -0
  6803. docsforge/themes/material/templates/.icons/material/hammer-screwdriver.svg +1 -0
  6804. docsforge/themes/material/templates/.icons/material/hammer-sickle.svg +1 -0
  6805. docsforge/themes/material/templates/.icons/material/hammer-wrench.svg +1 -0
  6806. docsforge/themes/material/templates/.icons/material/hammer.svg +1 -0
  6807. docsforge/themes/material/templates/.icons/material/hand-back-left-off-outline.svg +1 -0
  6808. docsforge/themes/material/templates/.icons/material/hand-back-left-off.svg +1 -0
  6809. docsforge/themes/material/templates/.icons/material/hand-back-left-outline.svg +1 -0
  6810. docsforge/themes/material/templates/.icons/material/hand-back-left.svg +1 -0
  6811. docsforge/themes/material/templates/.icons/material/hand-back-right-off-outline.svg +1 -0
  6812. docsforge/themes/material/templates/.icons/material/hand-back-right-off.svg +1 -0
  6813. docsforge/themes/material/templates/.icons/material/hand-back-right-outline.svg +1 -0
  6814. docsforge/themes/material/templates/.icons/material/hand-back-right.svg +1 -0
  6815. docsforge/themes/material/templates/.icons/material/hand-clap-off.svg +1 -0
  6816. docsforge/themes/material/templates/.icons/material/hand-clap.svg +1 -0
  6817. docsforge/themes/material/templates/.icons/material/hand-coin-outline.svg +1 -0
  6818. docsforge/themes/material/templates/.icons/material/hand-coin.svg +1 -0
  6819. docsforge/themes/material/templates/.icons/material/hand-cycle.svg +1 -0
  6820. docsforge/themes/material/templates/.icons/material/hand-extended-outline.svg +1 -0
  6821. docsforge/themes/material/templates/.icons/material/hand-extended.svg +1 -0
  6822. docsforge/themes/material/templates/.icons/material/hand-front-left-outline.svg +1 -0
  6823. docsforge/themes/material/templates/.icons/material/hand-front-left.svg +1 -0
  6824. docsforge/themes/material/templates/.icons/material/hand-front-right-outline.svg +1 -0
  6825. docsforge/themes/material/templates/.icons/material/hand-front-right.svg +1 -0
  6826. docsforge/themes/material/templates/.icons/material/hand-heart-outline.svg +1 -0
  6827. docsforge/themes/material/templates/.icons/material/hand-heart.svg +1 -0
  6828. docsforge/themes/material/templates/.icons/material/hand-okay.svg +1 -0
  6829. docsforge/themes/material/templates/.icons/material/hand-peace-variant.svg +1 -0
  6830. docsforge/themes/material/templates/.icons/material/hand-peace.svg +1 -0
  6831. docsforge/themes/material/templates/.icons/material/hand-pointing-down.svg +1 -0
  6832. docsforge/themes/material/templates/.icons/material/hand-pointing-left.svg +1 -0
  6833. docsforge/themes/material/templates/.icons/material/hand-pointing-right.svg +1 -0
  6834. docsforge/themes/material/templates/.icons/material/hand-pointing-up.svg +1 -0
  6835. docsforge/themes/material/templates/.icons/material/hand-saw.svg +1 -0
  6836. docsforge/themes/material/templates/.icons/material/hand-wash-outline.svg +1 -0
  6837. docsforge/themes/material/templates/.icons/material/hand-wash.svg +1 -0
  6838. docsforge/themes/material/templates/.icons/material/hand-water.svg +1 -0
  6839. docsforge/themes/material/templates/.icons/material/hand-wave-outline.svg +1 -0
  6840. docsforge/themes/material/templates/.icons/material/hand-wave.svg +1 -0
  6841. docsforge/themes/material/templates/.icons/material/handball.svg +1 -0
  6842. docsforge/themes/material/templates/.icons/material/handcuffs.svg +1 -0
  6843. docsforge/themes/material/templates/.icons/material/hands-pray.svg +1 -0
  6844. docsforge/themes/material/templates/.icons/material/handshake-outline.svg +1 -0
  6845. docsforge/themes/material/templates/.icons/material/handshake.svg +1 -0
  6846. docsforge/themes/material/templates/.icons/material/hanger.svg +1 -0
  6847. docsforge/themes/material/templates/.icons/material/hard-hat.svg +1 -0
  6848. docsforge/themes/material/templates/.icons/material/harddisk-plus.svg +1 -0
  6849. docsforge/themes/material/templates/.icons/material/harddisk-remove.svg +1 -0
  6850. docsforge/themes/material/templates/.icons/material/harddisk.svg +1 -0
  6851. docsforge/themes/material/templates/.icons/material/hat-fedora.svg +1 -0
  6852. docsforge/themes/material/templates/.icons/material/hazard-lights.svg +1 -0
  6853. docsforge/themes/material/templates/.icons/material/hdmi-port.svg +1 -0
  6854. docsforge/themes/material/templates/.icons/material/hdr-off.svg +1 -0
  6855. docsforge/themes/material/templates/.icons/material/hdr.svg +1 -0
  6856. docsforge/themes/material/templates/.icons/material/head-alert-outline.svg +1 -0
  6857. docsforge/themes/material/templates/.icons/material/head-alert.svg +1 -0
  6858. docsforge/themes/material/templates/.icons/material/head-check-outline.svg +1 -0
  6859. docsforge/themes/material/templates/.icons/material/head-check.svg +1 -0
  6860. docsforge/themes/material/templates/.icons/material/head-cog-outline.svg +1 -0
  6861. docsforge/themes/material/templates/.icons/material/head-cog.svg +1 -0
  6862. docsforge/themes/material/templates/.icons/material/head-dots-horizontal-outline.svg +1 -0
  6863. docsforge/themes/material/templates/.icons/material/head-dots-horizontal.svg +1 -0
  6864. docsforge/themes/material/templates/.icons/material/head-flash-outline.svg +1 -0
  6865. docsforge/themes/material/templates/.icons/material/head-flash.svg +1 -0
  6866. docsforge/themes/material/templates/.icons/material/head-heart-outline.svg +1 -0
  6867. docsforge/themes/material/templates/.icons/material/head-heart.svg +1 -0
  6868. docsforge/themes/material/templates/.icons/material/head-lightbulb-outline.svg +1 -0
  6869. docsforge/themes/material/templates/.icons/material/head-lightbulb.svg +1 -0
  6870. docsforge/themes/material/templates/.icons/material/head-minus-outline.svg +1 -0
  6871. docsforge/themes/material/templates/.icons/material/head-minus.svg +1 -0
  6872. docsforge/themes/material/templates/.icons/material/head-outline.svg +1 -0
  6873. docsforge/themes/material/templates/.icons/material/head-plus-outline.svg +1 -0
  6874. docsforge/themes/material/templates/.icons/material/head-plus.svg +1 -0
  6875. docsforge/themes/material/templates/.icons/material/head-question-outline.svg +1 -0
  6876. docsforge/themes/material/templates/.icons/material/head-question.svg +1 -0
  6877. docsforge/themes/material/templates/.icons/material/head-remove-outline.svg +1 -0
  6878. docsforge/themes/material/templates/.icons/material/head-remove.svg +1 -0
  6879. docsforge/themes/material/templates/.icons/material/head-snowflake-outline.svg +1 -0
  6880. docsforge/themes/material/templates/.icons/material/head-snowflake.svg +1 -0
  6881. docsforge/themes/material/templates/.icons/material/head-sync-outline.svg +1 -0
  6882. docsforge/themes/material/templates/.icons/material/head-sync.svg +1 -0
  6883. docsforge/themes/material/templates/.icons/material/head.svg +1 -0
  6884. docsforge/themes/material/templates/.icons/material/headphones-bluetooth.svg +1 -0
  6885. docsforge/themes/material/templates/.icons/material/headphones-box.svg +1 -0
  6886. docsforge/themes/material/templates/.icons/material/headphones-off.svg +1 -0
  6887. docsforge/themes/material/templates/.icons/material/headphones-settings.svg +1 -0
  6888. docsforge/themes/material/templates/.icons/material/headphones.svg +1 -0
  6889. docsforge/themes/material/templates/.icons/material/headset-dock.svg +1 -0
  6890. docsforge/themes/material/templates/.icons/material/headset-off.svg +1 -0
  6891. docsforge/themes/material/templates/.icons/material/headset.svg +1 -0
  6892. docsforge/themes/material/templates/.icons/material/heart-box-outline.svg +1 -0
  6893. docsforge/themes/material/templates/.icons/material/heart-box.svg +1 -0
  6894. docsforge/themes/material/templates/.icons/material/heart-broken-outline.svg +1 -0
  6895. docsforge/themes/material/templates/.icons/material/heart-broken.svg +1 -0
  6896. docsforge/themes/material/templates/.icons/material/heart-circle-outline.svg +1 -0
  6897. docsforge/themes/material/templates/.icons/material/heart-circle.svg +1 -0
  6898. docsforge/themes/material/templates/.icons/material/heart-cog-outline.svg +1 -0
  6899. docsforge/themes/material/templates/.icons/material/heart-cog.svg +1 -0
  6900. docsforge/themes/material/templates/.icons/material/heart-flash.svg +1 -0
  6901. docsforge/themes/material/templates/.icons/material/heart-half-full.svg +1 -0
  6902. docsforge/themes/material/templates/.icons/material/heart-half-outline.svg +1 -0
  6903. docsforge/themes/material/templates/.icons/material/heart-half.svg +1 -0
  6904. docsforge/themes/material/templates/.icons/material/heart-minus-outline.svg +1 -0
  6905. docsforge/themes/material/templates/.icons/material/heart-minus.svg +1 -0
  6906. docsforge/themes/material/templates/.icons/material/heart-multiple-outline.svg +1 -0
  6907. docsforge/themes/material/templates/.icons/material/heart-multiple.svg +1 -0
  6908. docsforge/themes/material/templates/.icons/material/heart-off-outline.svg +1 -0
  6909. docsforge/themes/material/templates/.icons/material/heart-off.svg +1 -0
  6910. docsforge/themes/material/templates/.icons/material/heart-outline.svg +1 -0
  6911. docsforge/themes/material/templates/.icons/material/heart-plus-outline.svg +1 -0
  6912. docsforge/themes/material/templates/.icons/material/heart-plus.svg +1 -0
  6913. docsforge/themes/material/templates/.icons/material/heart-pulse.svg +1 -0
  6914. docsforge/themes/material/templates/.icons/material/heart-remove-outline.svg +1 -0
  6915. docsforge/themes/material/templates/.icons/material/heart-remove.svg +1 -0
  6916. docsforge/themes/material/templates/.icons/material/heart-search.svg +1 -0
  6917. docsforge/themes/material/templates/.icons/material/heart-settings-outline.svg +1 -0
  6918. docsforge/themes/material/templates/.icons/material/heart-settings.svg +1 -0
  6919. docsforge/themes/material/templates/.icons/material/heart.svg +1 -0
  6920. docsforge/themes/material/templates/.icons/material/heat-pump-outline.svg +1 -0
  6921. docsforge/themes/material/templates/.icons/material/heat-pump.svg +1 -0
  6922. docsforge/themes/material/templates/.icons/material/heat-wave.svg +1 -0
  6923. docsforge/themes/material/templates/.icons/material/heating-coil.svg +1 -0
  6924. docsforge/themes/material/templates/.icons/material/helicopter.svg +1 -0
  6925. docsforge/themes/material/templates/.icons/material/help-box-multiple-outline.svg +1 -0
  6926. docsforge/themes/material/templates/.icons/material/help-box-multiple.svg +1 -0
  6927. docsforge/themes/material/templates/.icons/material/help-box-outline.svg +1 -0
  6928. docsforge/themes/material/templates/.icons/material/help-box.svg +1 -0
  6929. docsforge/themes/material/templates/.icons/material/help-circle-outline.svg +1 -0
  6930. docsforge/themes/material/templates/.icons/material/help-circle.svg +1 -0
  6931. docsforge/themes/material/templates/.icons/material/help-network-outline.svg +1 -0
  6932. docsforge/themes/material/templates/.icons/material/help-network.svg +1 -0
  6933. docsforge/themes/material/templates/.icons/material/help-rhombus-outline.svg +1 -0
  6934. docsforge/themes/material/templates/.icons/material/help-rhombus.svg +1 -0
  6935. docsforge/themes/material/templates/.icons/material/help.svg +1 -0
  6936. docsforge/themes/material/templates/.icons/material/hexadecimal.svg +1 -0
  6937. docsforge/themes/material/templates/.icons/material/hexagon-multiple-outline.svg +1 -0
  6938. docsforge/themes/material/templates/.icons/material/hexagon-multiple.svg +1 -0
  6939. docsforge/themes/material/templates/.icons/material/hexagon-outline.svg +1 -0
  6940. docsforge/themes/material/templates/.icons/material/hexagon-slice-1.svg +1 -0
  6941. docsforge/themes/material/templates/.icons/material/hexagon-slice-2.svg +1 -0
  6942. docsforge/themes/material/templates/.icons/material/hexagon-slice-3.svg +1 -0
  6943. docsforge/themes/material/templates/.icons/material/hexagon-slice-4.svg +1 -0
  6944. docsforge/themes/material/templates/.icons/material/hexagon-slice-5.svg +1 -0
  6945. docsforge/themes/material/templates/.icons/material/hexagon-slice-6.svg +1 -0
  6946. docsforge/themes/material/templates/.icons/material/hexagon.svg +1 -0
  6947. docsforge/themes/material/templates/.icons/material/hexagram-outline.svg +1 -0
  6948. docsforge/themes/material/templates/.icons/material/hexagram.svg +1 -0
  6949. docsforge/themes/material/templates/.icons/material/high-definition-box.svg +1 -0
  6950. docsforge/themes/material/templates/.icons/material/high-definition.svg +1 -0
  6951. docsforge/themes/material/templates/.icons/material/highway.svg +1 -0
  6952. docsforge/themes/material/templates/.icons/material/hiking.svg +1 -0
  6953. docsforge/themes/material/templates/.icons/material/history.svg +1 -0
  6954. docsforge/themes/material/templates/.icons/material/hockey-puck.svg +1 -0
  6955. docsforge/themes/material/templates/.icons/material/hockey-sticks.svg +1 -0
  6956. docsforge/themes/material/templates/.icons/material/hololens.svg +1 -0
  6957. docsforge/themes/material/templates/.icons/material/home-account.svg +1 -0
  6958. docsforge/themes/material/templates/.icons/material/home-alert-outline.svg +1 -0
  6959. docsforge/themes/material/templates/.icons/material/home-alert.svg +1 -0
  6960. docsforge/themes/material/templates/.icons/material/home-analytics.svg +1 -0
  6961. docsforge/themes/material/templates/.icons/material/home-assistant.svg +1 -0
  6962. docsforge/themes/material/templates/.icons/material/home-automation.svg +1 -0
  6963. docsforge/themes/material/templates/.icons/material/home-battery-outline.svg +1 -0
  6964. docsforge/themes/material/templates/.icons/material/home-battery.svg +1 -0
  6965. docsforge/themes/material/templates/.icons/material/home-circle-outline.svg +1 -0
  6966. docsforge/themes/material/templates/.icons/material/home-circle.svg +1 -0
  6967. docsforge/themes/material/templates/.icons/material/home-city-outline.svg +1 -0
  6968. docsforge/themes/material/templates/.icons/material/home-city.svg +1 -0
  6969. docsforge/themes/material/templates/.icons/material/home-clock-outline.svg +1 -0
  6970. docsforge/themes/material/templates/.icons/material/home-clock.svg +1 -0
  6971. docsforge/themes/material/templates/.icons/material/home-edit-outline.svg +1 -0
  6972. docsforge/themes/material/templates/.icons/material/home-edit.svg +1 -0
  6973. docsforge/themes/material/templates/.icons/material/home-export-outline.svg +1 -0
  6974. docsforge/themes/material/templates/.icons/material/home-flood.svg +1 -0
  6975. docsforge/themes/material/templates/.icons/material/home-floor-0.svg +1 -0
  6976. docsforge/themes/material/templates/.icons/material/home-floor-1.svg +1 -0
  6977. docsforge/themes/material/templates/.icons/material/home-floor-2.svg +1 -0
  6978. docsforge/themes/material/templates/.icons/material/home-floor-3.svg +1 -0
  6979. docsforge/themes/material/templates/.icons/material/home-floor-a.svg +1 -0
  6980. docsforge/themes/material/templates/.icons/material/home-floor-b.svg +1 -0
  6981. docsforge/themes/material/templates/.icons/material/home-floor-g.svg +1 -0
  6982. docsforge/themes/material/templates/.icons/material/home-floor-l.svg +1 -0
  6983. docsforge/themes/material/templates/.icons/material/home-floor-negative-1.svg +1 -0
  6984. docsforge/themes/material/templates/.icons/material/home-group-minus.svg +1 -0
  6985. docsforge/themes/material/templates/.icons/material/home-group-plus.svg +1 -0
  6986. docsforge/themes/material/templates/.icons/material/home-group-remove.svg +1 -0
  6987. docsforge/themes/material/templates/.icons/material/home-group.svg +1 -0
  6988. docsforge/themes/material/templates/.icons/material/home-heart.svg +1 -0
  6989. docsforge/themes/material/templates/.icons/material/home-import-outline.svg +1 -0
  6990. docsforge/themes/material/templates/.icons/material/home-lightbulb-outline.svg +1 -0
  6991. docsforge/themes/material/templates/.icons/material/home-lightbulb.svg +1 -0
  6992. docsforge/themes/material/templates/.icons/material/home-lightning-bolt-outline.svg +1 -0
  6993. docsforge/themes/material/templates/.icons/material/home-lightning-bolt.svg +1 -0
  6994. docsforge/themes/material/templates/.icons/material/home-lock-open.svg +1 -0
  6995. docsforge/themes/material/templates/.icons/material/home-lock.svg +1 -0
  6996. docsforge/themes/material/templates/.icons/material/home-map-marker.svg +1 -0
  6997. docsforge/themes/material/templates/.icons/material/home-minus-outline.svg +1 -0
  6998. docsforge/themes/material/templates/.icons/material/home-minus.svg +1 -0
  6999. docsforge/themes/material/templates/.icons/material/home-modern.svg +1 -0
  7000. docsforge/themes/material/templates/.icons/material/home-off-outline.svg +1 -0
  7001. docsforge/themes/material/templates/.icons/material/home-off.svg +1 -0
  7002. docsforge/themes/material/templates/.icons/material/home-outline.svg +1 -0
  7003. docsforge/themes/material/templates/.icons/material/home-percent-outline.svg +1 -0
  7004. docsforge/themes/material/templates/.icons/material/home-percent.svg +1 -0
  7005. docsforge/themes/material/templates/.icons/material/home-plus-outline.svg +1 -0
  7006. docsforge/themes/material/templates/.icons/material/home-plus.svg +1 -0
  7007. docsforge/themes/material/templates/.icons/material/home-remove-outline.svg +1 -0
  7008. docsforge/themes/material/templates/.icons/material/home-remove.svg +1 -0
  7009. docsforge/themes/material/templates/.icons/material/home-roof.svg +1 -0
  7010. docsforge/themes/material/templates/.icons/material/home-search-outline.svg +1 -0
  7011. docsforge/themes/material/templates/.icons/material/home-search.svg +1 -0
  7012. docsforge/themes/material/templates/.icons/material/home-silo-outline.svg +1 -0
  7013. docsforge/themes/material/templates/.icons/material/home-silo.svg +1 -0
  7014. docsforge/themes/material/templates/.icons/material/home-sound-in-outline.svg +1 -0
  7015. docsforge/themes/material/templates/.icons/material/home-sound-in.svg +1 -0
  7016. docsforge/themes/material/templates/.icons/material/home-sound-out-outline.svg +1 -0
  7017. docsforge/themes/material/templates/.icons/material/home-sound-out.svg +1 -0
  7018. docsforge/themes/material/templates/.icons/material/home-switch-outline.svg +1 -0
  7019. docsforge/themes/material/templates/.icons/material/home-switch.svg +1 -0
  7020. docsforge/themes/material/templates/.icons/material/home-thermometer-outline.svg +1 -0
  7021. docsforge/themes/material/templates/.icons/material/home-thermometer.svg +1 -0
  7022. docsforge/themes/material/templates/.icons/material/home-variant-outline.svg +1 -0
  7023. docsforge/themes/material/templates/.icons/material/home-variant.svg +1 -0
  7024. docsforge/themes/material/templates/.icons/material/home.svg +1 -0
  7025. docsforge/themes/material/templates/.icons/material/hook-off.svg +1 -0
  7026. docsforge/themes/material/templates/.icons/material/hook.svg +1 -0
  7027. docsforge/themes/material/templates/.icons/material/hoop-house.svg +1 -0
  7028. docsforge/themes/material/templates/.icons/material/hops.svg +1 -0
  7029. docsforge/themes/material/templates/.icons/material/horizontal-rotate-clockwise.svg +1 -0
  7030. docsforge/themes/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg +1 -0
  7031. docsforge/themes/material/templates/.icons/material/horse-human.svg +1 -0
  7032. docsforge/themes/material/templates/.icons/material/horse-variant-fast.svg +1 -0
  7033. docsforge/themes/material/templates/.icons/material/horse-variant.svg +1 -0
  7034. docsforge/themes/material/templates/.icons/material/horse.svg +1 -0
  7035. docsforge/themes/material/templates/.icons/material/horseshoe.svg +1 -0
  7036. docsforge/themes/material/templates/.icons/material/hospital-box-outline.svg +1 -0
  7037. docsforge/themes/material/templates/.icons/material/hospital-box.svg +1 -0
  7038. docsforge/themes/material/templates/.icons/material/hospital-building.svg +1 -0
  7039. docsforge/themes/material/templates/.icons/material/hospital-marker.svg +1 -0
  7040. docsforge/themes/material/templates/.icons/material/hospital.svg +1 -0
  7041. docsforge/themes/material/templates/.icons/material/hot-tub.svg +1 -0
  7042. docsforge/themes/material/templates/.icons/material/hours-12.svg +1 -0
  7043. docsforge/themes/material/templates/.icons/material/hours-24.svg +1 -0
  7044. docsforge/themes/material/templates/.icons/material/hub-outline.svg +1 -0
  7045. docsforge/themes/material/templates/.icons/material/hub.svg +1 -0
  7046. docsforge/themes/material/templates/.icons/material/hubspot.svg +1 -0
  7047. docsforge/themes/material/templates/.icons/material/hulu.svg +1 -0
  7048. docsforge/themes/material/templates/.icons/material/human-baby-changing-table.svg +1 -0
  7049. docsforge/themes/material/templates/.icons/material/human-cane.svg +1 -0
  7050. docsforge/themes/material/templates/.icons/material/human-capacity-decrease.svg +1 -0
  7051. docsforge/themes/material/templates/.icons/material/human-capacity-increase.svg +1 -0
  7052. docsforge/themes/material/templates/.icons/material/human-child.svg +1 -0
  7053. docsforge/themes/material/templates/.icons/material/human-dolly.svg +1 -0
  7054. docsforge/themes/material/templates/.icons/material/human-edit.svg +1 -0
  7055. docsforge/themes/material/templates/.icons/material/human-female-boy.svg +1 -0
  7056. docsforge/themes/material/templates/.icons/material/human-female-dance.svg +1 -0
  7057. docsforge/themes/material/templates/.icons/material/human-female-female-child.svg +1 -0
  7058. docsforge/themes/material/templates/.icons/material/human-female-female.svg +1 -0
  7059. docsforge/themes/material/templates/.icons/material/human-female-girl.svg +1 -0
  7060. docsforge/themes/material/templates/.icons/material/human-female.svg +1 -0
  7061. docsforge/themes/material/templates/.icons/material/human-greeting-proximity.svg +1 -0
  7062. docsforge/themes/material/templates/.icons/material/human-greeting-variant.svg +1 -0
  7063. docsforge/themes/material/templates/.icons/material/human-greeting.svg +1 -0
  7064. docsforge/themes/material/templates/.icons/material/human-handsdown.svg +1 -0
  7065. docsforge/themes/material/templates/.icons/material/human-handsup.svg +1 -0
  7066. docsforge/themes/material/templates/.icons/material/human-male-board-poll.svg +1 -0
  7067. docsforge/themes/material/templates/.icons/material/human-male-board.svg +1 -0
  7068. docsforge/themes/material/templates/.icons/material/human-male-boy.svg +1 -0
  7069. docsforge/themes/material/templates/.icons/material/human-male-child.svg +1 -0
  7070. docsforge/themes/material/templates/.icons/material/human-male-female-child.svg +1 -0
  7071. docsforge/themes/material/templates/.icons/material/human-male-female.svg +1 -0
  7072. docsforge/themes/material/templates/.icons/material/human-male-girl.svg +1 -0
  7073. docsforge/themes/material/templates/.icons/material/human-male-height-variant.svg +1 -0
  7074. docsforge/themes/material/templates/.icons/material/human-male-height.svg +1 -0
  7075. docsforge/themes/material/templates/.icons/material/human-male-male-child.svg +1 -0
  7076. docsforge/themes/material/templates/.icons/material/human-male-male.svg +1 -0
  7077. docsforge/themes/material/templates/.icons/material/human-male.svg +1 -0
  7078. docsforge/themes/material/templates/.icons/material/human-non-binary.svg +1 -0
  7079. docsforge/themes/material/templates/.icons/material/human-pregnant.svg +1 -0
  7080. docsforge/themes/material/templates/.icons/material/human-queue.svg +1 -0
  7081. docsforge/themes/material/templates/.icons/material/human-scooter.svg +1 -0
  7082. docsforge/themes/material/templates/.icons/material/human-walker.svg +1 -0
  7083. docsforge/themes/material/templates/.icons/material/human-wheelchair.svg +1 -0
  7084. docsforge/themes/material/templates/.icons/material/human-white-cane.svg +1 -0
  7085. docsforge/themes/material/templates/.icons/material/human.svg +1 -0
  7086. docsforge/themes/material/templates/.icons/material/humble-bundle.svg +1 -0
  7087. docsforge/themes/material/templates/.icons/material/hvac-off.svg +1 -0
  7088. docsforge/themes/material/templates/.icons/material/hvac.svg +1 -0
  7089. docsforge/themes/material/templates/.icons/material/hydraulic-oil-level.svg +1 -0
  7090. docsforge/themes/material/templates/.icons/material/hydraulic-oil-temperature.svg +1 -0
  7091. docsforge/themes/material/templates/.icons/material/hydro-power.svg +1 -0
  7092. docsforge/themes/material/templates/.icons/material/hydrogen-station.svg +1 -0
  7093. docsforge/themes/material/templates/.icons/material/ice-cream-off.svg +1 -0
  7094. docsforge/themes/material/templates/.icons/material/ice-cream.svg +1 -0
  7095. docsforge/themes/material/templates/.icons/material/ice-pop.svg +1 -0
  7096. docsforge/themes/material/templates/.icons/material/id-card.svg +1 -0
  7097. docsforge/themes/material/templates/.icons/material/identifier.svg +1 -0
  7098. docsforge/themes/material/templates/.icons/material/ideogram-cjk-variant.svg +1 -0
  7099. docsforge/themes/material/templates/.icons/material/ideogram-cjk.svg +1 -0
  7100. docsforge/themes/material/templates/.icons/material/image-album.svg +1 -0
  7101. docsforge/themes/material/templates/.icons/material/image-area-close.svg +1 -0
  7102. docsforge/themes/material/templates/.icons/material/image-area.svg +1 -0
  7103. docsforge/themes/material/templates/.icons/material/image-auto-adjust.svg +1 -0
  7104. docsforge/themes/material/templates/.icons/material/image-broken-variant.svg +1 -0
  7105. docsforge/themes/material/templates/.icons/material/image-broken.svg +1 -0
  7106. docsforge/themes/material/templates/.icons/material/image-check-outline.svg +1 -0
  7107. docsforge/themes/material/templates/.icons/material/image-check.svg +1 -0
  7108. docsforge/themes/material/templates/.icons/material/image-edit-outline.svg +1 -0
  7109. docsforge/themes/material/templates/.icons/material/image-edit.svg +1 -0
  7110. docsforge/themes/material/templates/.icons/material/image-filter-black-white.svg +1 -0
  7111. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong-outline.svg +1 -0
  7112. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong.svg +1 -0
  7113. docsforge/themes/material/templates/.icons/material/image-filter-center-focus-weak.svg +1 -0
  7114. docsforge/themes/material/templates/.icons/material/image-filter-center-focus.svg +1 -0
  7115. docsforge/themes/material/templates/.icons/material/image-filter-drama-outline.svg +1 -0
  7116. docsforge/themes/material/templates/.icons/material/image-filter-drama.svg +1 -0
  7117. docsforge/themes/material/templates/.icons/material/image-filter-frames.svg +1 -0
  7118. docsforge/themes/material/templates/.icons/material/image-filter-hdr-outline.svg +1 -0
  7119. docsforge/themes/material/templates/.icons/material/image-filter-hdr.svg +1 -0
  7120. docsforge/themes/material/templates/.icons/material/image-filter-none.svg +1 -0
  7121. docsforge/themes/material/templates/.icons/material/image-filter-tilt-shift.svg +1 -0
  7122. docsforge/themes/material/templates/.icons/material/image-filter-vintage.svg +1 -0
  7123. docsforge/themes/material/templates/.icons/material/image-frame.svg +1 -0
  7124. docsforge/themes/material/templates/.icons/material/image-lock-outline.svg +1 -0
  7125. docsforge/themes/material/templates/.icons/material/image-lock.svg +1 -0
  7126. docsforge/themes/material/templates/.icons/material/image-marker-outline.svg +1 -0
  7127. docsforge/themes/material/templates/.icons/material/image-marker.svg +1 -0
  7128. docsforge/themes/material/templates/.icons/material/image-minus-outline.svg +1 -0
  7129. docsforge/themes/material/templates/.icons/material/image-minus.svg +1 -0
  7130. docsforge/themes/material/templates/.icons/material/image-move.svg +1 -0
  7131. docsforge/themes/material/templates/.icons/material/image-multiple-outline.svg +1 -0
  7132. docsforge/themes/material/templates/.icons/material/image-multiple.svg +1 -0
  7133. docsforge/themes/material/templates/.icons/material/image-off-outline.svg +1 -0
  7134. docsforge/themes/material/templates/.icons/material/image-off.svg +1 -0
  7135. docsforge/themes/material/templates/.icons/material/image-outline.svg +1 -0
  7136. docsforge/themes/material/templates/.icons/material/image-plus-outline.svg +1 -0
  7137. docsforge/themes/material/templates/.icons/material/image-plus.svg +1 -0
  7138. docsforge/themes/material/templates/.icons/material/image-refresh-outline.svg +1 -0
  7139. docsforge/themes/material/templates/.icons/material/image-refresh.svg +1 -0
  7140. docsforge/themes/material/templates/.icons/material/image-remove-outline.svg +1 -0
  7141. docsforge/themes/material/templates/.icons/material/image-remove.svg +1 -0
  7142. docsforge/themes/material/templates/.icons/material/image-search-outline.svg +1 -0
  7143. docsforge/themes/material/templates/.icons/material/image-search.svg +1 -0
  7144. docsforge/themes/material/templates/.icons/material/image-size-select-actual.svg +1 -0
  7145. docsforge/themes/material/templates/.icons/material/image-size-select-large.svg +1 -0
  7146. docsforge/themes/material/templates/.icons/material/image-size-select-small.svg +1 -0
  7147. docsforge/themes/material/templates/.icons/material/image-sync-outline.svg +1 -0
  7148. docsforge/themes/material/templates/.icons/material/image-sync.svg +1 -0
  7149. docsforge/themes/material/templates/.icons/material/image-text.svg +1 -0
  7150. docsforge/themes/material/templates/.icons/material/image.svg +1 -0
  7151. docsforge/themes/material/templates/.icons/material/import.svg +1 -0
  7152. docsforge/themes/material/templates/.icons/material/inbox-arrow-down-outline.svg +1 -0
  7153. docsforge/themes/material/templates/.icons/material/inbox-arrow-down.svg +1 -0
  7154. docsforge/themes/material/templates/.icons/material/inbox-arrow-up-outline.svg +1 -0
  7155. docsforge/themes/material/templates/.icons/material/inbox-arrow-up.svg +1 -0
  7156. docsforge/themes/material/templates/.icons/material/inbox-full-outline.svg +1 -0
  7157. docsforge/themes/material/templates/.icons/material/inbox-full.svg +1 -0
  7158. docsforge/themes/material/templates/.icons/material/inbox-multiple-outline.svg +1 -0
  7159. docsforge/themes/material/templates/.icons/material/inbox-multiple.svg +1 -0
  7160. docsforge/themes/material/templates/.icons/material/inbox-outline.svg +1 -0
  7161. docsforge/themes/material/templates/.icons/material/inbox-remove-outline.svg +1 -0
  7162. docsforge/themes/material/templates/.icons/material/inbox-remove.svg +1 -0
  7163. docsforge/themes/material/templates/.icons/material/inbox.svg +1 -0
  7164. docsforge/themes/material/templates/.icons/material/incognito-circle-off.svg +1 -0
  7165. docsforge/themes/material/templates/.icons/material/incognito-circle.svg +1 -0
  7166. docsforge/themes/material/templates/.icons/material/incognito-off.svg +1 -0
  7167. docsforge/themes/material/templates/.icons/material/incognito.svg +1 -0
  7168. docsforge/themes/material/templates/.icons/material/induction.svg +1 -0
  7169. docsforge/themes/material/templates/.icons/material/infinity.svg +1 -0
  7170. docsforge/themes/material/templates/.icons/material/information-box-outline.svg +1 -0
  7171. docsforge/themes/material/templates/.icons/material/information-box.svg +1 -0
  7172. docsforge/themes/material/templates/.icons/material/information-off-outline.svg +1 -0
  7173. docsforge/themes/material/templates/.icons/material/information-off.svg +1 -0
  7174. docsforge/themes/material/templates/.icons/material/information-outline.svg +1 -0
  7175. docsforge/themes/material/templates/.icons/material/information-slab-box-outline.svg +1 -0
  7176. docsforge/themes/material/templates/.icons/material/information-slab-box.svg +1 -0
  7177. docsforge/themes/material/templates/.icons/material/information-slab-circle-outline.svg +1 -0
  7178. docsforge/themes/material/templates/.icons/material/information-slab-circle.svg +1 -0
  7179. docsforge/themes/material/templates/.icons/material/information-slab-symbol.svg +1 -0
  7180. docsforge/themes/material/templates/.icons/material/information-symbol.svg +1 -0
  7181. docsforge/themes/material/templates/.icons/material/information-variant-box-outline.svg +1 -0
  7182. docsforge/themes/material/templates/.icons/material/information-variant-box.svg +1 -0
  7183. docsforge/themes/material/templates/.icons/material/information-variant-circle-outline.svg +1 -0
  7184. docsforge/themes/material/templates/.icons/material/information-variant-circle.svg +1 -0
  7185. docsforge/themes/material/templates/.icons/material/information-variant.svg +1 -0
  7186. docsforge/themes/material/templates/.icons/material/information.svg +1 -0
  7187. docsforge/themes/material/templates/.icons/material/instagram.svg +1 -0
  7188. docsforge/themes/material/templates/.icons/material/instrument-triangle.svg +1 -0
  7189. docsforge/themes/material/templates/.icons/material/integrated-circuit-chip.svg +1 -0
  7190. docsforge/themes/material/templates/.icons/material/invert-colors-off.svg +1 -0
  7191. docsforge/themes/material/templates/.icons/material/invert-colors.svg +1 -0
  7192. docsforge/themes/material/templates/.icons/material/invoice-arrow-left-outline.svg +1 -0
  7193. docsforge/themes/material/templates/.icons/material/invoice-arrow-left.svg +1 -0
  7194. docsforge/themes/material/templates/.icons/material/invoice-arrow-right-outline.svg +1 -0
  7195. docsforge/themes/material/templates/.icons/material/invoice-arrow-right.svg +1 -0
  7196. docsforge/themes/material/templates/.icons/material/invoice-check-outline.svg +1 -0
  7197. docsforge/themes/material/templates/.icons/material/invoice-check.svg +1 -0
  7198. docsforge/themes/material/templates/.icons/material/invoice-clock-outline.svg +1 -0
  7199. docsforge/themes/material/templates/.icons/material/invoice-clock.svg +1 -0
  7200. docsforge/themes/material/templates/.icons/material/invoice-edit-outline.svg +1 -0
  7201. docsforge/themes/material/templates/.icons/material/invoice-edit.svg +1 -0
  7202. docsforge/themes/material/templates/.icons/material/invoice-export-outline.svg +1 -0
  7203. docsforge/themes/material/templates/.icons/material/invoice-fast-outline.svg +1 -0
  7204. docsforge/themes/material/templates/.icons/material/invoice-fast.svg +1 -0
  7205. docsforge/themes/material/templates/.icons/material/invoice-import-outline.svg +1 -0
  7206. docsforge/themes/material/templates/.icons/material/invoice-import.svg +1 -0
  7207. docsforge/themes/material/templates/.icons/material/invoice-list-outline.svg +1 -0
  7208. docsforge/themes/material/templates/.icons/material/invoice-list.svg +1 -0
  7209. docsforge/themes/material/templates/.icons/material/invoice-minus-outline.svg +1 -0
  7210. docsforge/themes/material/templates/.icons/material/invoice-minus.svg +1 -0
  7211. docsforge/themes/material/templates/.icons/material/invoice-multiple-outline.svg +1 -0
  7212. docsforge/themes/material/templates/.icons/material/invoice-multiple.svg +1 -0
  7213. docsforge/themes/material/templates/.icons/material/invoice-outline.svg +1 -0
  7214. docsforge/themes/material/templates/.icons/material/invoice-plus-outline.svg +1 -0
  7215. docsforge/themes/material/templates/.icons/material/invoice-plus.svg +1 -0
  7216. docsforge/themes/material/templates/.icons/material/invoice-remove-outline.svg +1 -0
  7217. docsforge/themes/material/templates/.icons/material/invoice-remove.svg +1 -0
  7218. docsforge/themes/material/templates/.icons/material/invoice-send-outline.svg +1 -0
  7219. docsforge/themes/material/templates/.icons/material/invoice-send.svg +1 -0
  7220. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left-outline.svg +1 -0
  7221. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left.svg +1 -0
  7222. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right-outline.svg +1 -0
  7223. docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right.svg +1 -0
  7224. docsforge/themes/material/templates/.icons/material/invoice-text-check-outline.svg +1 -0
  7225. docsforge/themes/material/templates/.icons/material/invoice-text-check.svg +1 -0
  7226. docsforge/themes/material/templates/.icons/material/invoice-text-clock-outline.svg +1 -0
  7227. docsforge/themes/material/templates/.icons/material/invoice-text-clock.svg +1 -0
  7228. docsforge/themes/material/templates/.icons/material/invoice-text-edit-outline.svg +1 -0
  7229. docsforge/themes/material/templates/.icons/material/invoice-text-edit.svg +1 -0
  7230. docsforge/themes/material/templates/.icons/material/invoice-text-fast-outline.svg +1 -0
  7231. docsforge/themes/material/templates/.icons/material/invoice-text-fast.svg +1 -0
  7232. docsforge/themes/material/templates/.icons/material/invoice-text-minus-outline.svg +1 -0
  7233. docsforge/themes/material/templates/.icons/material/invoice-text-minus.svg +1 -0
  7234. docsforge/themes/material/templates/.icons/material/invoice-text-multiple-outline.svg +1 -0
  7235. docsforge/themes/material/templates/.icons/material/invoice-text-multiple.svg +1 -0
  7236. docsforge/themes/material/templates/.icons/material/invoice-text-outline.svg +1 -0
  7237. docsforge/themes/material/templates/.icons/material/invoice-text-plus-outline.svg +1 -0
  7238. docsforge/themes/material/templates/.icons/material/invoice-text-plus.svg +1 -0
  7239. docsforge/themes/material/templates/.icons/material/invoice-text-remove-outline.svg +1 -0
  7240. docsforge/themes/material/templates/.icons/material/invoice-text-remove.svg +1 -0
  7241. docsforge/themes/material/templates/.icons/material/invoice-text-send-outline.svg +1 -0
  7242. docsforge/themes/material/templates/.icons/material/invoice-text-send.svg +1 -0
  7243. docsforge/themes/material/templates/.icons/material/invoice-text.svg +1 -0
  7244. docsforge/themes/material/templates/.icons/material/invoice.svg +1 -0
  7245. docsforge/themes/material/templates/.icons/material/iobroker.svg +1 -0
  7246. docsforge/themes/material/templates/.icons/material/ip-network-outline.svg +1 -0
  7247. docsforge/themes/material/templates/.icons/material/ip-network.svg +1 -0
  7248. docsforge/themes/material/templates/.icons/material/ip-outline.svg +1 -0
  7249. docsforge/themes/material/templates/.icons/material/ip.svg +1 -0
  7250. docsforge/themes/material/templates/.icons/material/ipod.svg +1 -0
  7251. docsforge/themes/material/templates/.icons/material/iron-board.svg +1 -0
  7252. docsforge/themes/material/templates/.icons/material/iron-outline.svg +1 -0
  7253. docsforge/themes/material/templates/.icons/material/iron.svg +1 -0
  7254. docsforge/themes/material/templates/.icons/material/island-variant.svg +1 -0
  7255. docsforge/themes/material/templates/.icons/material/island.svg +1 -0
  7256. docsforge/themes/material/templates/.icons/material/iv-bag.svg +1 -0
  7257. docsforge/themes/material/templates/.icons/material/jabber.svg +1 -0
  7258. docsforge/themes/material/templates/.icons/material/jeepney.svg +1 -0
  7259. docsforge/themes/material/templates/.icons/material/jellyfish-outline.svg +1 -0
  7260. docsforge/themes/material/templates/.icons/material/jellyfish.svg +1 -0
  7261. docsforge/themes/material/templates/.icons/material/jira.svg +1 -0
  7262. docsforge/themes/material/templates/.icons/material/jquery.svg +1 -0
  7263. docsforge/themes/material/templates/.icons/material/jsfiddle.svg +1 -0
  7264. docsforge/themes/material/templates/.icons/material/jump-rope.svg +1 -0
  7265. docsforge/themes/material/templates/.icons/material/kabaddi.svg +1 -0
  7266. docsforge/themes/material/templates/.icons/material/kangaroo.svg +1 -0
  7267. docsforge/themes/material/templates/.icons/material/karate.svg +1 -0
  7268. docsforge/themes/material/templates/.icons/material/kayaking.svg +1 -0
  7269. docsforge/themes/material/templates/.icons/material/keg.svg +1 -0
  7270. docsforge/themes/material/templates/.icons/material/kettle-alert-outline.svg +1 -0
  7271. docsforge/themes/material/templates/.icons/material/kettle-alert.svg +1 -0
  7272. docsforge/themes/material/templates/.icons/material/kettle-off-outline.svg +1 -0
  7273. docsforge/themes/material/templates/.icons/material/kettle-off.svg +1 -0
  7274. docsforge/themes/material/templates/.icons/material/kettle-outline.svg +1 -0
  7275. docsforge/themes/material/templates/.icons/material/kettle-pour-over.svg +1 -0
  7276. docsforge/themes/material/templates/.icons/material/kettle-steam-outline.svg +1 -0
  7277. docsforge/themes/material/templates/.icons/material/kettle-steam.svg +1 -0
  7278. docsforge/themes/material/templates/.icons/material/kettle.svg +1 -0
  7279. docsforge/themes/material/templates/.icons/material/kettlebell.svg +1 -0
  7280. docsforge/themes/material/templates/.icons/material/key-alert-outline.svg +1 -0
  7281. docsforge/themes/material/templates/.icons/material/key-alert.svg +1 -0
  7282. docsforge/themes/material/templates/.icons/material/key-arrow-right.svg +1 -0
  7283. docsforge/themes/material/templates/.icons/material/key-chain-variant.svg +1 -0
  7284. docsforge/themes/material/templates/.icons/material/key-chain.svg +1 -0
  7285. docsforge/themes/material/templates/.icons/material/key-change.svg +1 -0
  7286. docsforge/themes/material/templates/.icons/material/key-link.svg +1 -0
  7287. docsforge/themes/material/templates/.icons/material/key-minus.svg +1 -0
  7288. docsforge/themes/material/templates/.icons/material/key-outline.svg +1 -0
  7289. docsforge/themes/material/templates/.icons/material/key-plus.svg +1 -0
  7290. docsforge/themes/material/templates/.icons/material/key-remove.svg +1 -0
  7291. docsforge/themes/material/templates/.icons/material/key-star.svg +1 -0
  7292. docsforge/themes/material/templates/.icons/material/key-variant.svg +1 -0
  7293. docsforge/themes/material/templates/.icons/material/key-wireless.svg +1 -0
  7294. docsforge/themes/material/templates/.icons/material/key.svg +1 -0
  7295. docsforge/themes/material/templates/.icons/material/keyboard-backspace.svg +1 -0
  7296. docsforge/themes/material/templates/.icons/material/keyboard-caps.svg +1 -0
  7297. docsforge/themes/material/templates/.icons/material/keyboard-close-outline.svg +1 -0
  7298. docsforge/themes/material/templates/.icons/material/keyboard-close.svg +1 -0
  7299. docsforge/themes/material/templates/.icons/material/keyboard-esc.svg +1 -0
  7300. docsforge/themes/material/templates/.icons/material/keyboard-f1.svg +1 -0
  7301. docsforge/themes/material/templates/.icons/material/keyboard-f10.svg +1 -0
  7302. docsforge/themes/material/templates/.icons/material/keyboard-f11.svg +1 -0
  7303. docsforge/themes/material/templates/.icons/material/keyboard-f12.svg +1 -0
  7304. docsforge/themes/material/templates/.icons/material/keyboard-f2.svg +1 -0
  7305. docsforge/themes/material/templates/.icons/material/keyboard-f3.svg +1 -0
  7306. docsforge/themes/material/templates/.icons/material/keyboard-f4.svg +1 -0
  7307. docsforge/themes/material/templates/.icons/material/keyboard-f5.svg +1 -0
  7308. docsforge/themes/material/templates/.icons/material/keyboard-f6.svg +1 -0
  7309. docsforge/themes/material/templates/.icons/material/keyboard-f7.svg +1 -0
  7310. docsforge/themes/material/templates/.icons/material/keyboard-f8.svg +1 -0
  7311. docsforge/themes/material/templates/.icons/material/keyboard-f9.svg +1 -0
  7312. docsforge/themes/material/templates/.icons/material/keyboard-off-outline.svg +1 -0
  7313. docsforge/themes/material/templates/.icons/material/keyboard-off.svg +1 -0
  7314. docsforge/themes/material/templates/.icons/material/keyboard-outline.svg +1 -0
  7315. docsforge/themes/material/templates/.icons/material/keyboard-return.svg +1 -0
  7316. docsforge/themes/material/templates/.icons/material/keyboard-settings-outline.svg +1 -0
  7317. docsforge/themes/material/templates/.icons/material/keyboard-settings.svg +1 -0
  7318. docsforge/themes/material/templates/.icons/material/keyboard-space.svg +1 -0
  7319. docsforge/themes/material/templates/.icons/material/keyboard-tab-reverse.svg +1 -0
  7320. docsforge/themes/material/templates/.icons/material/keyboard-tab.svg +1 -0
  7321. docsforge/themes/material/templates/.icons/material/keyboard-variant.svg +1 -0
  7322. docsforge/themes/material/templates/.icons/material/keyboard.svg +1 -0
  7323. docsforge/themes/material/templates/.icons/material/khanda.svg +1 -0
  7324. docsforge/themes/material/templates/.icons/material/kickstarter.svg +1 -0
  7325. docsforge/themes/material/templates/.icons/material/kite-outline.svg +1 -0
  7326. docsforge/themes/material/templates/.icons/material/kite.svg +1 -0
  7327. docsforge/themes/material/templates/.icons/material/kitesurfing.svg +1 -0
  7328. docsforge/themes/material/templates/.icons/material/klingon.svg +1 -0
  7329. docsforge/themes/material/templates/.icons/material/knife-military.svg +1 -0
  7330. docsforge/themes/material/templates/.icons/material/knife.svg +1 -0
  7331. docsforge/themes/material/templates/.icons/material/knob.svg +1 -0
  7332. docsforge/themes/material/templates/.icons/material/koala.svg +1 -0
  7333. docsforge/themes/material/templates/.icons/material/kodi.svg +1 -0
  7334. docsforge/themes/material/templates/.icons/material/kubernetes.svg +1 -0
  7335. docsforge/themes/material/templates/.icons/material/label-multiple-outline.svg +1 -0
  7336. docsforge/themes/material/templates/.icons/material/label-multiple.svg +1 -0
  7337. docsforge/themes/material/templates/.icons/material/label-off-outline.svg +1 -0
  7338. docsforge/themes/material/templates/.icons/material/label-off.svg +1 -0
  7339. docsforge/themes/material/templates/.icons/material/label-outline.svg +1 -0
  7340. docsforge/themes/material/templates/.icons/material/label-percent-outline.svg +1 -0
  7341. docsforge/themes/material/templates/.icons/material/label-percent.svg +1 -0
  7342. docsforge/themes/material/templates/.icons/material/label-variant-outline.svg +1 -0
  7343. docsforge/themes/material/templates/.icons/material/label-variant.svg +1 -0
  7344. docsforge/themes/material/templates/.icons/material/label.svg +1 -0
  7345. docsforge/themes/material/templates/.icons/material/ladder.svg +1 -0
  7346. docsforge/themes/material/templates/.icons/material/ladybug.svg +1 -0
  7347. docsforge/themes/material/templates/.icons/material/lambda.svg +1 -0
  7348. docsforge/themes/material/templates/.icons/material/lamp-outline.svg +1 -0
  7349. docsforge/themes/material/templates/.icons/material/lamp.svg +1 -0
  7350. docsforge/themes/material/templates/.icons/material/lamps-outline.svg +1 -0
  7351. docsforge/themes/material/templates/.icons/material/lamps.svg +1 -0
  7352. docsforge/themes/material/templates/.icons/material/lan-check.svg +1 -0
  7353. docsforge/themes/material/templates/.icons/material/lan-connect.svg +1 -0
  7354. docsforge/themes/material/templates/.icons/material/lan-disconnect.svg +1 -0
  7355. docsforge/themes/material/templates/.icons/material/lan-pending.svg +1 -0
  7356. docsforge/themes/material/templates/.icons/material/lan.svg +1 -0
  7357. docsforge/themes/material/templates/.icons/material/land-fields.svg +1 -0
  7358. docsforge/themes/material/templates/.icons/material/land-plots-circle-variant.svg +1 -0
  7359. docsforge/themes/material/templates/.icons/material/land-plots-circle.svg +1 -0
  7360. docsforge/themes/material/templates/.icons/material/land-plots-marker.svg +1 -0
  7361. docsforge/themes/material/templates/.icons/material/land-plots.svg +1 -0
  7362. docsforge/themes/material/templates/.icons/material/land-rows-horizontal.svg +1 -0
  7363. docsforge/themes/material/templates/.icons/material/land-rows-vertical.svg +1 -0
  7364. docsforge/themes/material/templates/.icons/material/landslide-outline.svg +1 -0
  7365. docsforge/themes/material/templates/.icons/material/landslide.svg +1 -0
  7366. docsforge/themes/material/templates/.icons/material/language-c.svg +1 -0
  7367. docsforge/themes/material/templates/.icons/material/language-cpp.svg +1 -0
  7368. docsforge/themes/material/templates/.icons/material/language-csharp.svg +1 -0
  7369. docsforge/themes/material/templates/.icons/material/language-css3.svg +1 -0
  7370. docsforge/themes/material/templates/.icons/material/language-fortran.svg +1 -0
  7371. docsforge/themes/material/templates/.icons/material/language-go.svg +1 -0
  7372. docsforge/themes/material/templates/.icons/material/language-haskell.svg +1 -0
  7373. docsforge/themes/material/templates/.icons/material/language-html5.svg +1 -0
  7374. docsforge/themes/material/templates/.icons/material/language-java.svg +1 -0
  7375. docsforge/themes/material/templates/.icons/material/language-javascript.svg +1 -0
  7376. docsforge/themes/material/templates/.icons/material/language-kotlin.svg +1 -0
  7377. docsforge/themes/material/templates/.icons/material/language-lua.svg +1 -0
  7378. docsforge/themes/material/templates/.icons/material/language-markdown-outline.svg +1 -0
  7379. docsforge/themes/material/templates/.icons/material/language-markdown.svg +1 -0
  7380. docsforge/themes/material/templates/.icons/material/language-php.svg +1 -0
  7381. docsforge/themes/material/templates/.icons/material/language-python.svg +1 -0
  7382. docsforge/themes/material/templates/.icons/material/language-r.svg +1 -0
  7383. docsforge/themes/material/templates/.icons/material/language-ruby-on-rails.svg +1 -0
  7384. docsforge/themes/material/templates/.icons/material/language-ruby.svg +1 -0
  7385. docsforge/themes/material/templates/.icons/material/language-rust.svg +1 -0
  7386. docsforge/themes/material/templates/.icons/material/language-swift.svg +1 -0
  7387. docsforge/themes/material/templates/.icons/material/language-typescript.svg +1 -0
  7388. docsforge/themes/material/templates/.icons/material/language-xaml.svg +1 -0
  7389. docsforge/themes/material/templates/.icons/material/laptop-account.svg +1 -0
  7390. docsforge/themes/material/templates/.icons/material/laptop-off.svg +1 -0
  7391. docsforge/themes/material/templates/.icons/material/laptop.svg +1 -0
  7392. docsforge/themes/material/templates/.icons/material/laravel.svg +1 -0
  7393. docsforge/themes/material/templates/.icons/material/laser-pointer.svg +1 -0
  7394. docsforge/themes/material/templates/.icons/material/lasso.svg +1 -0
  7395. docsforge/themes/material/templates/.icons/material/lastpass.svg +1 -0
  7396. docsforge/themes/material/templates/.icons/material/latitude.svg +1 -0
  7397. docsforge/themes/material/templates/.icons/material/launch.svg +1 -0
  7398. docsforge/themes/material/templates/.icons/material/lava-lamp.svg +1 -0
  7399. docsforge/themes/material/templates/.icons/material/layers-edit.svg +1 -0
  7400. docsforge/themes/material/templates/.icons/material/layers-minus.svg +1 -0
  7401. docsforge/themes/material/templates/.icons/material/layers-off-outline.svg +1 -0
  7402. docsforge/themes/material/templates/.icons/material/layers-off.svg +1 -0
  7403. docsforge/themes/material/templates/.icons/material/layers-outline.svg +1 -0
  7404. docsforge/themes/material/templates/.icons/material/layers-plus.svg +1 -0
  7405. docsforge/themes/material/templates/.icons/material/layers-remove.svg +1 -0
  7406. docsforge/themes/material/templates/.icons/material/layers-search-outline.svg +1 -0
  7407. docsforge/themes/material/templates/.icons/material/layers-search.svg +1 -0
  7408. docsforge/themes/material/templates/.icons/material/layers-triple-outline.svg +1 -0
  7409. docsforge/themes/material/templates/.icons/material/layers-triple.svg +1 -0
  7410. docsforge/themes/material/templates/.icons/material/layers.svg +1 -0
  7411. docsforge/themes/material/templates/.icons/material/lead-pencil.svg +1 -0
  7412. docsforge/themes/material/templates/.icons/material/leaf-circle-outline.svg +1 -0
  7413. docsforge/themes/material/templates/.icons/material/leaf-circle.svg +1 -0
  7414. docsforge/themes/material/templates/.icons/material/leaf-maple-off.svg +1 -0
  7415. docsforge/themes/material/templates/.icons/material/leaf-maple.svg +1 -0
  7416. docsforge/themes/material/templates/.icons/material/leaf-off.svg +1 -0
  7417. docsforge/themes/material/templates/.icons/material/leaf.svg +1 -0
  7418. docsforge/themes/material/templates/.icons/material/leak-off.svg +1 -0
  7419. docsforge/themes/material/templates/.icons/material/leak.svg +1 -0
  7420. docsforge/themes/material/templates/.icons/material/lectern.svg +1 -0
  7421. docsforge/themes/material/templates/.icons/material/led-off.svg +1 -0
  7422. docsforge/themes/material/templates/.icons/material/led-on.svg +1 -0
  7423. docsforge/themes/material/templates/.icons/material/led-outline.svg +1 -0
  7424. docsforge/themes/material/templates/.icons/material/led-strip-variant-off.svg +1 -0
  7425. docsforge/themes/material/templates/.icons/material/led-strip-variant.svg +1 -0
  7426. docsforge/themes/material/templates/.icons/material/led-strip.svg +1 -0
  7427. docsforge/themes/material/templates/.icons/material/led-variant-off.svg +1 -0
  7428. docsforge/themes/material/templates/.icons/material/led-variant-on.svg +1 -0
  7429. docsforge/themes/material/templates/.icons/material/led-variant-outline.svg +1 -0
  7430. docsforge/themes/material/templates/.icons/material/leek.svg +1 -0
  7431. docsforge/themes/material/templates/.icons/material/less-than-or-equal.svg +1 -0
  7432. docsforge/themes/material/templates/.icons/material/less-than.svg +1 -0
  7433. docsforge/themes/material/templates/.icons/material/library-outline.svg +1 -0
  7434. docsforge/themes/material/templates/.icons/material/library-shelves.svg +1 -0
  7435. docsforge/themes/material/templates/.icons/material/library.svg +1 -0
  7436. docsforge/themes/material/templates/.icons/material/license.svg +1 -0
  7437. docsforge/themes/material/templates/.icons/material/lifebuoy.svg +1 -0
  7438. docsforge/themes/material/templates/.icons/material/light-flood-down.svg +1 -0
  7439. docsforge/themes/material/templates/.icons/material/light-flood-up.svg +1 -0
  7440. docsforge/themes/material/templates/.icons/material/light-recessed.svg +1 -0
  7441. docsforge/themes/material/templates/.icons/material/light-switch-off.svg +1 -0
  7442. docsforge/themes/material/templates/.icons/material/light-switch.svg +1 -0
  7443. docsforge/themes/material/templates/.icons/material/lightbulb-alert-outline.svg +1 -0
  7444. docsforge/themes/material/templates/.icons/material/lightbulb-alert.svg +1 -0
  7445. docsforge/themes/material/templates/.icons/material/lightbulb-auto-outline.svg +1 -0
  7446. docsforge/themes/material/templates/.icons/material/lightbulb-auto.svg +1 -0
  7447. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-off.svg +1 -0
  7448. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg +1 -0
  7449. docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral.svg +1 -0
  7450. docsforge/themes/material/templates/.icons/material/lightbulb-cfl.svg +1 -0
  7451. docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg +1 -0
  7452. docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube.svg +1 -0
  7453. docsforge/themes/material/templates/.icons/material/lightbulb-group-off-outline.svg +1 -0
  7454. docsforge/themes/material/templates/.icons/material/lightbulb-group-off.svg +1 -0
  7455. docsforge/themes/material/templates/.icons/material/lightbulb-group-outline.svg +1 -0
  7456. docsforge/themes/material/templates/.icons/material/lightbulb-group.svg +1 -0
  7457. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off-outline.svg +1 -0
  7458. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off.svg +1 -0
  7459. docsforge/themes/material/templates/.icons/material/lightbulb-multiple-outline.svg +1 -0
  7460. docsforge/themes/material/templates/.icons/material/lightbulb-multiple.svg +1 -0
  7461. docsforge/themes/material/templates/.icons/material/lightbulb-night-outline.svg +1 -0
  7462. docsforge/themes/material/templates/.icons/material/lightbulb-night.svg +1 -0
  7463. docsforge/themes/material/templates/.icons/material/lightbulb-off-outline.svg +1 -0
  7464. docsforge/themes/material/templates/.icons/material/lightbulb-off.svg +1 -0
  7465. docsforge/themes/material/templates/.icons/material/lightbulb-on-10.svg +1 -0
  7466. docsforge/themes/material/templates/.icons/material/lightbulb-on-20.svg +1 -0
  7467. docsforge/themes/material/templates/.icons/material/lightbulb-on-30.svg +1 -0
  7468. docsforge/themes/material/templates/.icons/material/lightbulb-on-40.svg +1 -0
  7469. docsforge/themes/material/templates/.icons/material/lightbulb-on-50.svg +1 -0
  7470. docsforge/themes/material/templates/.icons/material/lightbulb-on-60.svg +1 -0
  7471. docsforge/themes/material/templates/.icons/material/lightbulb-on-70.svg +1 -0
  7472. docsforge/themes/material/templates/.icons/material/lightbulb-on-80.svg +1 -0
  7473. docsforge/themes/material/templates/.icons/material/lightbulb-on-90.svg +1 -0
  7474. docsforge/themes/material/templates/.icons/material/lightbulb-on-outline.svg +1 -0
  7475. docsforge/themes/material/templates/.icons/material/lightbulb-on.svg +1 -0
  7476. docsforge/themes/material/templates/.icons/material/lightbulb-outline.svg +1 -0
  7477. docsforge/themes/material/templates/.icons/material/lightbulb-question-outline.svg +1 -0
  7478. docsforge/themes/material/templates/.icons/material/lightbulb-question.svg +1 -0
  7479. docsforge/themes/material/templates/.icons/material/lightbulb-spot-off.svg +1 -0
  7480. docsforge/themes/material/templates/.icons/material/lightbulb-spot.svg +1 -0
  7481. docsforge/themes/material/templates/.icons/material/lightbulb-variant-outline.svg +1 -0
  7482. docsforge/themes/material/templates/.icons/material/lightbulb-variant.svg +1 -0
  7483. docsforge/themes/material/templates/.icons/material/lightbulb.svg +1 -0
  7484. docsforge/themes/material/templates/.icons/material/lighthouse-on.svg +1 -0
  7485. docsforge/themes/material/templates/.icons/material/lighthouse.svg +1 -0
  7486. docsforge/themes/material/templates/.icons/material/lightning-bolt-circle.svg +1 -0
  7487. docsforge/themes/material/templates/.icons/material/lightning-bolt-outline.svg +1 -0
  7488. docsforge/themes/material/templates/.icons/material/lightning-bolt.svg +1 -0
  7489. docsforge/themes/material/templates/.icons/material/line-scan.svg +1 -0
  7490. docsforge/themes/material/templates/.icons/material/lingerie.svg +1 -0
  7491. docsforge/themes/material/templates/.icons/material/link-box-outline.svg +1 -0
  7492. docsforge/themes/material/templates/.icons/material/link-box-variant-outline.svg +1 -0
  7493. docsforge/themes/material/templates/.icons/material/link-box-variant.svg +1 -0
  7494. docsforge/themes/material/templates/.icons/material/link-box.svg +1 -0
  7495. docsforge/themes/material/templates/.icons/material/link-circle-outline.svg +1 -0
  7496. docsforge/themes/material/templates/.icons/material/link-circle.svg +1 -0
  7497. docsforge/themes/material/templates/.icons/material/link-edit.svg +1 -0
  7498. docsforge/themes/material/templates/.icons/material/link-lock.svg +1 -0
  7499. docsforge/themes/material/templates/.icons/material/link-off.svg +1 -0
  7500. docsforge/themes/material/templates/.icons/material/link-plus.svg +1 -0
  7501. docsforge/themes/material/templates/.icons/material/link-variant-minus.svg +1 -0
  7502. docsforge/themes/material/templates/.icons/material/link-variant-off.svg +1 -0
  7503. docsforge/themes/material/templates/.icons/material/link-variant-plus.svg +1 -0
  7504. docsforge/themes/material/templates/.icons/material/link-variant-remove.svg +1 -0
  7505. docsforge/themes/material/templates/.icons/material/link-variant.svg +1 -0
  7506. docsforge/themes/material/templates/.icons/material/link.svg +1 -0
  7507. docsforge/themes/material/templates/.icons/material/linkedin.svg +1 -0
  7508. docsforge/themes/material/templates/.icons/material/linux-mint.svg +1 -0
  7509. docsforge/themes/material/templates/.icons/material/linux.svg +1 -0
  7510. docsforge/themes/material/templates/.icons/material/lipstick.svg +1 -0
  7511. docsforge/themes/material/templates/.icons/material/liquid-spot.svg +1 -0
  7512. docsforge/themes/material/templates/.icons/material/liquor.svg +1 -0
  7513. docsforge/themes/material/templates/.icons/material/list-box-outline.svg +1 -0
  7514. docsforge/themes/material/templates/.icons/material/list-box.svg +1 -0
  7515. docsforge/themes/material/templates/.icons/material/list-status.svg +1 -0
  7516. docsforge/themes/material/templates/.icons/material/litecoin.svg +1 -0
  7517. docsforge/themes/material/templates/.icons/material/loading.svg +1 -0
  7518. docsforge/themes/material/templates/.icons/material/location-enter.svg +1 -0
  7519. docsforge/themes/material/templates/.icons/material/location-exit.svg +1 -0
  7520. docsforge/themes/material/templates/.icons/material/lock-alert-outline.svg +1 -0
  7521. docsforge/themes/material/templates/.icons/material/lock-alert.svg +1 -0
  7522. docsforge/themes/material/templates/.icons/material/lock-check-outline.svg +1 -0
  7523. docsforge/themes/material/templates/.icons/material/lock-check.svg +1 -0
  7524. docsforge/themes/material/templates/.icons/material/lock-clock.svg +1 -0
  7525. docsforge/themes/material/templates/.icons/material/lock-minus-outline.svg +1 -0
  7526. docsforge/themes/material/templates/.icons/material/lock-minus.svg +1 -0
  7527. docsforge/themes/material/templates/.icons/material/lock-off-outline.svg +1 -0
  7528. docsforge/themes/material/templates/.icons/material/lock-off.svg +1 -0
  7529. docsforge/themes/material/templates/.icons/material/lock-open-alert-outline.svg +1 -0
  7530. docsforge/themes/material/templates/.icons/material/lock-open-alert.svg +1 -0
  7531. docsforge/themes/material/templates/.icons/material/lock-open-check-outline.svg +1 -0
  7532. docsforge/themes/material/templates/.icons/material/lock-open-check.svg +1 -0
  7533. docsforge/themes/material/templates/.icons/material/lock-open-minus-outline.svg +1 -0
  7534. docsforge/themes/material/templates/.icons/material/lock-open-minus.svg +1 -0
  7535. docsforge/themes/material/templates/.icons/material/lock-open-outline.svg +1 -0
  7536. docsforge/themes/material/templates/.icons/material/lock-open-plus-outline.svg +1 -0
  7537. docsforge/themes/material/templates/.icons/material/lock-open-plus.svg +1 -0
  7538. docsforge/themes/material/templates/.icons/material/lock-open-remove-outline.svg +1 -0
  7539. docsforge/themes/material/templates/.icons/material/lock-open-remove.svg +1 -0
  7540. docsforge/themes/material/templates/.icons/material/lock-open-variant-outline.svg +1 -0
  7541. docsforge/themes/material/templates/.icons/material/lock-open-variant.svg +1 -0
  7542. docsforge/themes/material/templates/.icons/material/lock-open.svg +1 -0
  7543. docsforge/themes/material/templates/.icons/material/lock-outline.svg +1 -0
  7544. docsforge/themes/material/templates/.icons/material/lock-pattern.svg +1 -0
  7545. docsforge/themes/material/templates/.icons/material/lock-percent-open-outline.svg +1 -0
  7546. docsforge/themes/material/templates/.icons/material/lock-percent-open-variant-outline.svg +1 -0
  7547. docsforge/themes/material/templates/.icons/material/lock-percent-open-variant.svg +1 -0
  7548. docsforge/themes/material/templates/.icons/material/lock-percent-open.svg +1 -0
  7549. docsforge/themes/material/templates/.icons/material/lock-percent-outline.svg +1 -0
  7550. docsforge/themes/material/templates/.icons/material/lock-percent.svg +1 -0
  7551. docsforge/themes/material/templates/.icons/material/lock-plus-outline.svg +1 -0
  7552. docsforge/themes/material/templates/.icons/material/lock-plus.svg +1 -0
  7553. docsforge/themes/material/templates/.icons/material/lock-question.svg +1 -0
  7554. docsforge/themes/material/templates/.icons/material/lock-remove-outline.svg +1 -0
  7555. docsforge/themes/material/templates/.icons/material/lock-remove.svg +1 -0
  7556. docsforge/themes/material/templates/.icons/material/lock-reset.svg +1 -0
  7557. docsforge/themes/material/templates/.icons/material/lock-smart.svg +1 -0
  7558. docsforge/themes/material/templates/.icons/material/lock.svg +1 -0
  7559. docsforge/themes/material/templates/.icons/material/locker-multiple.svg +1 -0
  7560. docsforge/themes/material/templates/.icons/material/locker.svg +1 -0
  7561. docsforge/themes/material/templates/.icons/material/login-variant.svg +1 -0
  7562. docsforge/themes/material/templates/.icons/material/login.svg +1 -0
  7563. docsforge/themes/material/templates/.icons/material/logout-variant.svg +1 -0
  7564. docsforge/themes/material/templates/.icons/material/logout.svg +1 -0
  7565. docsforge/themes/material/templates/.icons/material/longitude.svg +1 -0
  7566. docsforge/themes/material/templates/.icons/material/looks.svg +1 -0
  7567. docsforge/themes/material/templates/.icons/material/lotion-outline.svg +1 -0
  7568. docsforge/themes/material/templates/.icons/material/lotion-plus-outline.svg +1 -0
  7569. docsforge/themes/material/templates/.icons/material/lotion-plus.svg +1 -0
  7570. docsforge/themes/material/templates/.icons/material/lotion.svg +1 -0
  7571. docsforge/themes/material/templates/.icons/material/loupe.svg +1 -0
  7572. docsforge/themes/material/templates/.icons/material/lumx.svg +1 -0
  7573. docsforge/themes/material/templates/.icons/material/lungs.svg +1 -0
  7574. docsforge/themes/material/templates/.icons/material/mace.svg +1 -0
  7575. docsforge/themes/material/templates/.icons/material/magazine-pistol.svg +1 -0
  7576. docsforge/themes/material/templates/.icons/material/magazine-rifle.svg +1 -0
  7577. docsforge/themes/material/templates/.icons/material/magic-staff.svg +1 -0
  7578. docsforge/themes/material/templates/.icons/material/magnet-on.svg +1 -0
  7579. docsforge/themes/material/templates/.icons/material/magnet.svg +1 -0
  7580. docsforge/themes/material/templates/.icons/material/magnify-close.svg +1 -0
  7581. docsforge/themes/material/templates/.icons/material/magnify-expand.svg +1 -0
  7582. docsforge/themes/material/templates/.icons/material/magnify-minus-cursor.svg +1 -0
  7583. docsforge/themes/material/templates/.icons/material/magnify-minus-outline.svg +1 -0
  7584. docsforge/themes/material/templates/.icons/material/magnify-minus.svg +1 -0
  7585. docsforge/themes/material/templates/.icons/material/magnify-plus-cursor.svg +1 -0
  7586. docsforge/themes/material/templates/.icons/material/magnify-plus-outline.svg +1 -0
  7587. docsforge/themes/material/templates/.icons/material/magnify-plus.svg +1 -0
  7588. docsforge/themes/material/templates/.icons/material/magnify-remove-cursor.svg +1 -0
  7589. docsforge/themes/material/templates/.icons/material/magnify-remove-outline.svg +1 -0
  7590. docsforge/themes/material/templates/.icons/material/magnify-scan.svg +1 -0
  7591. docsforge/themes/material/templates/.icons/material/magnify.svg +1 -0
  7592. docsforge/themes/material/templates/.icons/material/mail.svg +1 -0
  7593. docsforge/themes/material/templates/.icons/material/mailbox-open-outline.svg +1 -0
  7594. docsforge/themes/material/templates/.icons/material/mailbox-open-up-outline.svg +1 -0
  7595. docsforge/themes/material/templates/.icons/material/mailbox-open-up.svg +1 -0
  7596. docsforge/themes/material/templates/.icons/material/mailbox-open.svg +1 -0
  7597. docsforge/themes/material/templates/.icons/material/mailbox-outline.svg +1 -0
  7598. docsforge/themes/material/templates/.icons/material/mailbox-up-outline.svg +1 -0
  7599. docsforge/themes/material/templates/.icons/material/mailbox-up.svg +1 -0
  7600. docsforge/themes/material/templates/.icons/material/mailbox.svg +1 -0
  7601. docsforge/themes/material/templates/.icons/material/manjaro.svg +1 -0
  7602. docsforge/themes/material/templates/.icons/material/map-check-outline.svg +1 -0
  7603. docsforge/themes/material/templates/.icons/material/map-check.svg +1 -0
  7604. docsforge/themes/material/templates/.icons/material/map-clock-outline.svg +1 -0
  7605. docsforge/themes/material/templates/.icons/material/map-clock.svg +1 -0
  7606. docsforge/themes/material/templates/.icons/material/map-legend.svg +1 -0
  7607. docsforge/themes/material/templates/.icons/material/map-marker-account-outline.svg +1 -0
  7608. docsforge/themes/material/templates/.icons/material/map-marker-account.svg +1 -0
  7609. docsforge/themes/material/templates/.icons/material/map-marker-alert-outline.svg +1 -0
  7610. docsforge/themes/material/templates/.icons/material/map-marker-alert.svg +1 -0
  7611. docsforge/themes/material/templates/.icons/material/map-marker-check-outline.svg +1 -0
  7612. docsforge/themes/material/templates/.icons/material/map-marker-check.svg +1 -0
  7613. docsforge/themes/material/templates/.icons/material/map-marker-circle.svg +1 -0
  7614. docsforge/themes/material/templates/.icons/material/map-marker-distance.svg +1 -0
  7615. docsforge/themes/material/templates/.icons/material/map-marker-down.svg +1 -0
  7616. docsforge/themes/material/templates/.icons/material/map-marker-left-outline.svg +1 -0
  7617. docsforge/themes/material/templates/.icons/material/map-marker-left.svg +1 -0
  7618. docsforge/themes/material/templates/.icons/material/map-marker-minus-outline.svg +1 -0
  7619. docsforge/themes/material/templates/.icons/material/map-marker-minus.svg +1 -0
  7620. docsforge/themes/material/templates/.icons/material/map-marker-multiple-outline.svg +1 -0
  7621. docsforge/themes/material/templates/.icons/material/map-marker-multiple.svg +1 -0
  7622. docsforge/themes/material/templates/.icons/material/map-marker-off-outline.svg +1 -0
  7623. docsforge/themes/material/templates/.icons/material/map-marker-off.svg +1 -0
  7624. docsforge/themes/material/templates/.icons/material/map-marker-outline.svg +1 -0
  7625. docsforge/themes/material/templates/.icons/material/map-marker-path.svg +1 -0
  7626. docsforge/themes/material/templates/.icons/material/map-marker-plus-outline.svg +1 -0
  7627. docsforge/themes/material/templates/.icons/material/map-marker-plus.svg +1 -0
  7628. docsforge/themes/material/templates/.icons/material/map-marker-question-outline.svg +1 -0
  7629. docsforge/themes/material/templates/.icons/material/map-marker-question.svg +1 -0
  7630. docsforge/themes/material/templates/.icons/material/map-marker-radius-outline.svg +1 -0
  7631. docsforge/themes/material/templates/.icons/material/map-marker-radius.svg +1 -0
  7632. docsforge/themes/material/templates/.icons/material/map-marker-remove-outline.svg +1 -0
  7633. docsforge/themes/material/templates/.icons/material/map-marker-remove-variant.svg +1 -0
  7634. docsforge/themes/material/templates/.icons/material/map-marker-remove.svg +1 -0
  7635. docsforge/themes/material/templates/.icons/material/map-marker-right-outline.svg +1 -0
  7636. docsforge/themes/material/templates/.icons/material/map-marker-right.svg +1 -0
  7637. docsforge/themes/material/templates/.icons/material/map-marker-star-outline.svg +1 -0
  7638. docsforge/themes/material/templates/.icons/material/map-marker-star.svg +1 -0
  7639. docsforge/themes/material/templates/.icons/material/map-marker-up.svg +1 -0
  7640. docsforge/themes/material/templates/.icons/material/map-marker.svg +1 -0
  7641. docsforge/themes/material/templates/.icons/material/map-minus.svg +1 -0
  7642. docsforge/themes/material/templates/.icons/material/map-outline.svg +1 -0
  7643. docsforge/themes/material/templates/.icons/material/map-plus.svg +1 -0
  7644. docsforge/themes/material/templates/.icons/material/map-search-outline.svg +1 -0
  7645. docsforge/themes/material/templates/.icons/material/map-search.svg +1 -0
  7646. docsforge/themes/material/templates/.icons/material/map.svg +1 -0
  7647. docsforge/themes/material/templates/.icons/material/mapbox.svg +1 -0
  7648. docsforge/themes/material/templates/.icons/material/margin.svg +1 -0
  7649. docsforge/themes/material/templates/.icons/material/marker-cancel.svg +1 -0
  7650. docsforge/themes/material/templates/.icons/material/marker-check.svg +1 -0
  7651. docsforge/themes/material/templates/.icons/material/marker.svg +1 -0
  7652. docsforge/themes/material/templates/.icons/material/mastodon.svg +1 -0
  7653. docsforge/themes/material/templates/.icons/material/material-design.svg +1 -0
  7654. docsforge/themes/material/templates/.icons/material/material-ui.svg +1 -0
  7655. docsforge/themes/material/templates/.icons/material/math-compass.svg +1 -0
  7656. docsforge/themes/material/templates/.icons/material/math-cos.svg +1 -0
  7657. docsforge/themes/material/templates/.icons/material/math-integral-box.svg +1 -0
  7658. docsforge/themes/material/templates/.icons/material/math-integral.svg +1 -0
  7659. docsforge/themes/material/templates/.icons/material/math-log.svg +1 -0
  7660. docsforge/themes/material/templates/.icons/material/math-norm-box.svg +1 -0
  7661. docsforge/themes/material/templates/.icons/material/math-norm.svg +1 -0
  7662. docsforge/themes/material/templates/.icons/material/math-sin.svg +1 -0
  7663. docsforge/themes/material/templates/.icons/material/math-tan.svg +1 -0
  7664. docsforge/themes/material/templates/.icons/material/matrix.svg +1 -0
  7665. docsforge/themes/material/templates/.icons/material/medal-outline.svg +1 -0
  7666. docsforge/themes/material/templates/.icons/material/medal.svg +1 -0
  7667. docsforge/themes/material/templates/.icons/material/medical-bag.svg +1 -0
  7668. docsforge/themes/material/templates/.icons/material/medical-cotton-swab.svg +1 -0
  7669. docsforge/themes/material/templates/.icons/material/medication-outline.svg +1 -0
  7670. docsforge/themes/material/templates/.icons/material/medication.svg +1 -0
  7671. docsforge/themes/material/templates/.icons/material/meditation.svg +1 -0
  7672. docsforge/themes/material/templates/.icons/material/memory-arrow-down.svg +1 -0
  7673. docsforge/themes/material/templates/.icons/material/memory.svg +1 -0
  7674. docsforge/themes/material/templates/.icons/material/menorah-fire.svg +1 -0
  7675. docsforge/themes/material/templates/.icons/material/menorah.svg +1 -0
  7676. docsforge/themes/material/templates/.icons/material/menu-close.svg +1 -0
  7677. docsforge/themes/material/templates/.icons/material/menu-down-outline.svg +1 -0
  7678. docsforge/themes/material/templates/.icons/material/menu-down.svg +1 -0
  7679. docsforge/themes/material/templates/.icons/material/menu-left-outline.svg +1 -0
  7680. docsforge/themes/material/templates/.icons/material/menu-left.svg +1 -0
  7681. docsforge/themes/material/templates/.icons/material/menu-open.svg +1 -0
  7682. docsforge/themes/material/templates/.icons/material/menu-right-outline.svg +1 -0
  7683. docsforge/themes/material/templates/.icons/material/menu-right.svg +1 -0
  7684. docsforge/themes/material/templates/.icons/material/menu-swap-outline.svg +1 -0
  7685. docsforge/themes/material/templates/.icons/material/menu-swap.svg +1 -0
  7686. docsforge/themes/material/templates/.icons/material/menu-up-outline.svg +1 -0
  7687. docsforge/themes/material/templates/.icons/material/menu-up.svg +1 -0
  7688. docsforge/themes/material/templates/.icons/material/menu.svg +1 -0
  7689. docsforge/themes/material/templates/.icons/material/merge.svg +1 -0
  7690. docsforge/themes/material/templates/.icons/material/message-alert-outline.svg +1 -0
  7691. docsforge/themes/material/templates/.icons/material/message-alert.svg +1 -0
  7692. docsforge/themes/material/templates/.icons/material/message-arrow-left-outline.svg +1 -0
  7693. docsforge/themes/material/templates/.icons/material/message-arrow-left.svg +1 -0
  7694. docsforge/themes/material/templates/.icons/material/message-arrow-right-outline.svg +1 -0
  7695. docsforge/themes/material/templates/.icons/material/message-arrow-right.svg +1 -0
  7696. docsforge/themes/material/templates/.icons/material/message-badge-outline.svg +1 -0
  7697. docsforge/themes/material/templates/.icons/material/message-badge.svg +1 -0
  7698. docsforge/themes/material/templates/.icons/material/message-bookmark-outline.svg +1 -0
  7699. docsforge/themes/material/templates/.icons/material/message-bookmark.svg +1 -0
  7700. docsforge/themes/material/templates/.icons/material/message-bulleted-off.svg +1 -0
  7701. docsforge/themes/material/templates/.icons/material/message-bulleted.svg +1 -0
  7702. docsforge/themes/material/templates/.icons/material/message-check-outline.svg +1 -0
  7703. docsforge/themes/material/templates/.icons/material/message-check.svg +1 -0
  7704. docsforge/themes/material/templates/.icons/material/message-cog-outline.svg +1 -0
  7705. docsforge/themes/material/templates/.icons/material/message-cog.svg +1 -0
  7706. docsforge/themes/material/templates/.icons/material/message-draw.svg +1 -0
  7707. docsforge/themes/material/templates/.icons/material/message-fast-outline.svg +1 -0
  7708. docsforge/themes/material/templates/.icons/material/message-fast.svg +1 -0
  7709. docsforge/themes/material/templates/.icons/material/message-flash-outline.svg +1 -0
  7710. docsforge/themes/material/templates/.icons/material/message-flash.svg +1 -0
  7711. docsforge/themes/material/templates/.icons/material/message-image-outline.svg +1 -0
  7712. docsforge/themes/material/templates/.icons/material/message-image.svg +1 -0
  7713. docsforge/themes/material/templates/.icons/material/message-lock-outline.svg +1 -0
  7714. docsforge/themes/material/templates/.icons/material/message-lock.svg +1 -0
  7715. docsforge/themes/material/templates/.icons/material/message-minus-outline.svg +1 -0
  7716. docsforge/themes/material/templates/.icons/material/message-minus.svg +1 -0
  7717. docsforge/themes/material/templates/.icons/material/message-off-outline.svg +1 -0
  7718. docsforge/themes/material/templates/.icons/material/message-off.svg +1 -0
  7719. docsforge/themes/material/templates/.icons/material/message-outline.svg +1 -0
  7720. docsforge/themes/material/templates/.icons/material/message-plus-outline.svg +1 -0
  7721. docsforge/themes/material/templates/.icons/material/message-plus.svg +1 -0
  7722. docsforge/themes/material/templates/.icons/material/message-processing-outline.svg +1 -0
  7723. docsforge/themes/material/templates/.icons/material/message-processing.svg +1 -0
  7724. docsforge/themes/material/templates/.icons/material/message-question-outline.svg +1 -0
  7725. docsforge/themes/material/templates/.icons/material/message-question.svg +1 -0
  7726. docsforge/themes/material/templates/.icons/material/message-reply-outline.svg +1 -0
  7727. docsforge/themes/material/templates/.icons/material/message-reply-text-outline.svg +1 -0
  7728. docsforge/themes/material/templates/.icons/material/message-reply-text.svg +1 -0
  7729. docsforge/themes/material/templates/.icons/material/message-reply.svg +1 -0
  7730. docsforge/themes/material/templates/.icons/material/message-settings-outline.svg +1 -0
  7731. docsforge/themes/material/templates/.icons/material/message-settings.svg +1 -0
  7732. docsforge/themes/material/templates/.icons/material/message-star-outline.svg +1 -0
  7733. docsforge/themes/material/templates/.icons/material/message-star.svg +1 -0
  7734. docsforge/themes/material/templates/.icons/material/message-text-clock-outline.svg +1 -0
  7735. docsforge/themes/material/templates/.icons/material/message-text-clock.svg +1 -0
  7736. docsforge/themes/material/templates/.icons/material/message-text-fast-outline.svg +1 -0
  7737. docsforge/themes/material/templates/.icons/material/message-text-fast.svg +1 -0
  7738. docsforge/themes/material/templates/.icons/material/message-text-lock-outline.svg +1 -0
  7739. docsforge/themes/material/templates/.icons/material/message-text-lock.svg +1 -0
  7740. docsforge/themes/material/templates/.icons/material/message-text-outline.svg +1 -0
  7741. docsforge/themes/material/templates/.icons/material/message-text.svg +1 -0
  7742. docsforge/themes/material/templates/.icons/material/message-video.svg +1 -0
  7743. docsforge/themes/material/templates/.icons/material/message.svg +1 -0
  7744. docsforge/themes/material/templates/.icons/material/meteor.svg +1 -0
  7745. docsforge/themes/material/templates/.icons/material/meter-electric-outline.svg +1 -0
  7746. docsforge/themes/material/templates/.icons/material/meter-electric.svg +1 -0
  7747. docsforge/themes/material/templates/.icons/material/meter-gas-outline.svg +1 -0
  7748. docsforge/themes/material/templates/.icons/material/meter-gas.svg +1 -0
  7749. docsforge/themes/material/templates/.icons/material/metronome-tick.svg +1 -0
  7750. docsforge/themes/material/templates/.icons/material/metronome.svg +1 -0
  7751. docsforge/themes/material/templates/.icons/material/micro-sd.svg +1 -0
  7752. docsforge/themes/material/templates/.icons/material/microphone-message-off.svg +1 -0
  7753. docsforge/themes/material/templates/.icons/material/microphone-message.svg +1 -0
  7754. docsforge/themes/material/templates/.icons/material/microphone-minus.svg +1 -0
  7755. docsforge/themes/material/templates/.icons/material/microphone-off.svg +1 -0
  7756. docsforge/themes/material/templates/.icons/material/microphone-outline.svg +1 -0
  7757. docsforge/themes/material/templates/.icons/material/microphone-plus.svg +1 -0
  7758. docsforge/themes/material/templates/.icons/material/microphone-question-outline.svg +1 -0
  7759. docsforge/themes/material/templates/.icons/material/microphone-question.svg +1 -0
  7760. docsforge/themes/material/templates/.icons/material/microphone-settings.svg +1 -0
  7761. docsforge/themes/material/templates/.icons/material/microphone-variant-off.svg +1 -0
  7762. docsforge/themes/material/templates/.icons/material/microphone-variant.svg +1 -0
  7763. docsforge/themes/material/templates/.icons/material/microphone.svg +1 -0
  7764. docsforge/themes/material/templates/.icons/material/microscope.svg +1 -0
  7765. docsforge/themes/material/templates/.icons/material/microsoft-access.svg +1 -0
  7766. docsforge/themes/material/templates/.icons/material/microsoft-azure-devops.svg +1 -0
  7767. docsforge/themes/material/templates/.icons/material/microsoft-azure.svg +1 -0
  7768. docsforge/themes/material/templates/.icons/material/microsoft-bing.svg +1 -0
  7769. docsforge/themes/material/templates/.icons/material/microsoft-dynamics-365.svg +1 -0
  7770. docsforge/themes/material/templates/.icons/material/microsoft-edge.svg +1 -0
  7771. docsforge/themes/material/templates/.icons/material/microsoft-excel.svg +1 -0
  7772. docsforge/themes/material/templates/.icons/material/microsoft-internet-explorer.svg +1 -0
  7773. docsforge/themes/material/templates/.icons/material/microsoft-office.svg +1 -0
  7774. docsforge/themes/material/templates/.icons/material/microsoft-onedrive.svg +1 -0
  7775. docsforge/themes/material/templates/.icons/material/microsoft-onenote.svg +1 -0
  7776. docsforge/themes/material/templates/.icons/material/microsoft-outlook.svg +1 -0
  7777. docsforge/themes/material/templates/.icons/material/microsoft-powerpoint.svg +1 -0
  7778. docsforge/themes/material/templates/.icons/material/microsoft-sharepoint.svg +1 -0
  7779. docsforge/themes/material/templates/.icons/material/microsoft-teams.svg +1 -0
  7780. docsforge/themes/material/templates/.icons/material/microsoft-visual-studio-code.svg +1 -0
  7781. docsforge/themes/material/templates/.icons/material/microsoft-visual-studio.svg +1 -0
  7782. docsforge/themes/material/templates/.icons/material/microsoft-windows-classic.svg +1 -0
  7783. docsforge/themes/material/templates/.icons/material/microsoft-windows.svg +1 -0
  7784. docsforge/themes/material/templates/.icons/material/microsoft-word.svg +1 -0
  7785. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg +1 -0
  7786. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-charging.svg +1 -0
  7787. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg +1 -0
  7788. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg +1 -0
  7789. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg +1 -0
  7790. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-medium.svg +1 -0
  7791. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-unknown.svg +1 -0
  7792. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-menu.svg +1 -0
  7793. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-off.svg +1 -0
  7794. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-view.svg +1 -0
  7795. docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller.svg +1 -0
  7796. docsforge/themes/material/templates/.icons/material/microsoft-xbox.svg +1 -0
  7797. docsforge/themes/material/templates/.icons/material/microsoft.svg +1 -0
  7798. docsforge/themes/material/templates/.icons/material/microwave-off.svg +1 -0
  7799. docsforge/themes/material/templates/.icons/material/microwave.svg +1 -0
  7800. docsforge/themes/material/templates/.icons/material/middleware-outline.svg +1 -0
  7801. docsforge/themes/material/templates/.icons/material/middleware.svg +1 -0
  7802. docsforge/themes/material/templates/.icons/material/midi-port.svg +1 -0
  7803. docsforge/themes/material/templates/.icons/material/midi.svg +1 -0
  7804. docsforge/themes/material/templates/.icons/material/mine.svg +1 -0
  7805. docsforge/themes/material/templates/.icons/material/minecraft.svg +1 -0
  7806. docsforge/themes/material/templates/.icons/material/mini-sd.svg +1 -0
  7807. docsforge/themes/material/templates/.icons/material/minidisc.svg +1 -0
  7808. docsforge/themes/material/templates/.icons/material/minus-box-multiple-outline.svg +1 -0
  7809. docsforge/themes/material/templates/.icons/material/minus-box-multiple.svg +1 -0
  7810. docsforge/themes/material/templates/.icons/material/minus-box-outline.svg +1 -0
  7811. docsforge/themes/material/templates/.icons/material/minus-box.svg +1 -0
  7812. docsforge/themes/material/templates/.icons/material/minus-circle-multiple-outline.svg +1 -0
  7813. docsforge/themes/material/templates/.icons/material/minus-circle-multiple.svg +1 -0
  7814. docsforge/themes/material/templates/.icons/material/minus-circle-off-outline.svg +1 -0
  7815. docsforge/themes/material/templates/.icons/material/minus-circle-off.svg +1 -0
  7816. docsforge/themes/material/templates/.icons/material/minus-circle-outline.svg +1 -0
  7817. docsforge/themes/material/templates/.icons/material/minus-circle.svg +1 -0
  7818. docsforge/themes/material/templates/.icons/material/minus-network-outline.svg +1 -0
  7819. docsforge/themes/material/templates/.icons/material/minus-network.svg +1 -0
  7820. docsforge/themes/material/templates/.icons/material/minus-thick.svg +1 -0
  7821. docsforge/themes/material/templates/.icons/material/minus.svg +1 -0
  7822. docsforge/themes/material/templates/.icons/material/mirror-rectangle.svg +1 -0
  7823. docsforge/themes/material/templates/.icons/material/mirror-variant.svg +1 -0
  7824. docsforge/themes/material/templates/.icons/material/mirror.svg +1 -0
  7825. docsforge/themes/material/templates/.icons/material/mixed-martial-arts.svg +1 -0
  7826. docsforge/themes/material/templates/.icons/material/mixed-reality.svg +1 -0
  7827. docsforge/themes/material/templates/.icons/material/molecule-co.svg +1 -0
  7828. docsforge/themes/material/templates/.icons/material/molecule-co2.svg +1 -0
  7829. docsforge/themes/material/templates/.icons/material/molecule.svg +1 -0
  7830. docsforge/themes/material/templates/.icons/material/monitor-account.svg +1 -0
  7831. docsforge/themes/material/templates/.icons/material/monitor-arrow-down-variant.svg +1 -0
  7832. docsforge/themes/material/templates/.icons/material/monitor-arrow-down.svg +1 -0
  7833. docsforge/themes/material/templates/.icons/material/monitor-cellphone-star.svg +1 -0
  7834. docsforge/themes/material/templates/.icons/material/monitor-cellphone.svg +1 -0
  7835. docsforge/themes/material/templates/.icons/material/monitor-dashboard.svg +1 -0
  7836. docsforge/themes/material/templates/.icons/material/monitor-edit.svg +1 -0
  7837. docsforge/themes/material/templates/.icons/material/monitor-eye.svg +1 -0
  7838. docsforge/themes/material/templates/.icons/material/monitor-lock.svg +1 -0
  7839. docsforge/themes/material/templates/.icons/material/monitor-multiple.svg +1 -0
  7840. docsforge/themes/material/templates/.icons/material/monitor-off.svg +1 -0
  7841. docsforge/themes/material/templates/.icons/material/monitor-screenshot.svg +1 -0
  7842. docsforge/themes/material/templates/.icons/material/monitor-share.svg +1 -0
  7843. docsforge/themes/material/templates/.icons/material/monitor-shimmer.svg +1 -0
  7844. docsforge/themes/material/templates/.icons/material/monitor-small.svg +1 -0
  7845. docsforge/themes/material/templates/.icons/material/monitor-speaker-off.svg +1 -0
  7846. docsforge/themes/material/templates/.icons/material/monitor-speaker.svg +1 -0
  7847. docsforge/themes/material/templates/.icons/material/monitor-star.svg +1 -0
  7848. docsforge/themes/material/templates/.icons/material/monitor-vertical.svg +1 -0
  7849. docsforge/themes/material/templates/.icons/material/monitor.svg +1 -0
  7850. docsforge/themes/material/templates/.icons/material/moon-first-quarter.svg +1 -0
  7851. docsforge/themes/material/templates/.icons/material/moon-full.svg +1 -0
  7852. docsforge/themes/material/templates/.icons/material/moon-last-quarter.svg +1 -0
  7853. docsforge/themes/material/templates/.icons/material/moon-new.svg +1 -0
  7854. docsforge/themes/material/templates/.icons/material/moon-waning-crescent.svg +1 -0
  7855. docsforge/themes/material/templates/.icons/material/moon-waning-gibbous.svg +1 -0
  7856. docsforge/themes/material/templates/.icons/material/moon-waxing-crescent.svg +1 -0
  7857. docsforge/themes/material/templates/.icons/material/moon-waxing-gibbous.svg +1 -0
  7858. docsforge/themes/material/templates/.icons/material/moped-electric-outline.svg +1 -0
  7859. docsforge/themes/material/templates/.icons/material/moped-electric.svg +1 -0
  7860. docsforge/themes/material/templates/.icons/material/moped-outline.svg +1 -0
  7861. docsforge/themes/material/templates/.icons/material/moped.svg +1 -0
  7862. docsforge/themes/material/templates/.icons/material/more.svg +1 -0
  7863. docsforge/themes/material/templates/.icons/material/mortar-pestle-plus.svg +1 -0
  7864. docsforge/themes/material/templates/.icons/material/mortar-pestle.svg +1 -0
  7865. docsforge/themes/material/templates/.icons/material/mosque-outline.svg +1 -0
  7866. docsforge/themes/material/templates/.icons/material/mosque.svg +1 -0
  7867. docsforge/themes/material/templates/.icons/material/mother-heart.svg +1 -0
  7868. docsforge/themes/material/templates/.icons/material/mother-nurse.svg +1 -0
  7869. docsforge/themes/material/templates/.icons/material/motion-outline.svg +1 -0
  7870. docsforge/themes/material/templates/.icons/material/motion-pause-outline.svg +1 -0
  7871. docsforge/themes/material/templates/.icons/material/motion-pause.svg +1 -0
  7872. docsforge/themes/material/templates/.icons/material/motion-play-outline.svg +1 -0
  7873. docsforge/themes/material/templates/.icons/material/motion-play.svg +1 -0
  7874. docsforge/themes/material/templates/.icons/material/motion-sensor-off.svg +1 -0
  7875. docsforge/themes/material/templates/.icons/material/motion-sensor.svg +1 -0
  7876. docsforge/themes/material/templates/.icons/material/motion.svg +1 -0
  7877. docsforge/themes/material/templates/.icons/material/motorbike-electric.svg +1 -0
  7878. docsforge/themes/material/templates/.icons/material/motorbike-off.svg +1 -0
  7879. docsforge/themes/material/templates/.icons/material/motorbike.svg +1 -0
  7880. docsforge/themes/material/templates/.icons/material/mouse-bluetooth.svg +1 -0
  7881. docsforge/themes/material/templates/.icons/material/mouse-left-click-outline.svg +1 -0
  7882. docsforge/themes/material/templates/.icons/material/mouse-left-click.svg +1 -0
  7883. docsforge/themes/material/templates/.icons/material/mouse-move-down.svg +1 -0
  7884. docsforge/themes/material/templates/.icons/material/mouse-move-up.svg +1 -0
  7885. docsforge/themes/material/templates/.icons/material/mouse-move-vertical.svg +1 -0
  7886. docsforge/themes/material/templates/.icons/material/mouse-off.svg +1 -0
  7887. docsforge/themes/material/templates/.icons/material/mouse-outline.svg +1 -0
  7888. docsforge/themes/material/templates/.icons/material/mouse-right-click-outline.svg +1 -0
  7889. docsforge/themes/material/templates/.icons/material/mouse-right-click.svg +1 -0
  7890. docsforge/themes/material/templates/.icons/material/mouse-scroll-wheel.svg +1 -0
  7891. docsforge/themes/material/templates/.icons/material/mouse-variant-off.svg +1 -0
  7892. docsforge/themes/material/templates/.icons/material/mouse-variant.svg +1 -0
  7893. docsforge/themes/material/templates/.icons/material/mouse.svg +1 -0
  7894. docsforge/themes/material/templates/.icons/material/move-resize-variant.svg +1 -0
  7895. docsforge/themes/material/templates/.icons/material/move-resize.svg +1 -0
  7896. docsforge/themes/material/templates/.icons/material/movie-check-outline.svg +1 -0
  7897. docsforge/themes/material/templates/.icons/material/movie-check.svg +1 -0
  7898. docsforge/themes/material/templates/.icons/material/movie-cog-outline.svg +1 -0
  7899. docsforge/themes/material/templates/.icons/material/movie-cog.svg +1 -0
  7900. docsforge/themes/material/templates/.icons/material/movie-edit-outline.svg +1 -0
  7901. docsforge/themes/material/templates/.icons/material/movie-edit.svg +1 -0
  7902. docsforge/themes/material/templates/.icons/material/movie-filter-outline.svg +1 -0
  7903. docsforge/themes/material/templates/.icons/material/movie-filter.svg +1 -0
  7904. docsforge/themes/material/templates/.icons/material/movie-minus-outline.svg +1 -0
  7905. docsforge/themes/material/templates/.icons/material/movie-minus.svg +1 -0
  7906. docsforge/themes/material/templates/.icons/material/movie-off-outline.svg +1 -0
  7907. docsforge/themes/material/templates/.icons/material/movie-off.svg +1 -0
  7908. docsforge/themes/material/templates/.icons/material/movie-open-check-outline.svg +1 -0
  7909. docsforge/themes/material/templates/.icons/material/movie-open-check.svg +1 -0
  7910. docsforge/themes/material/templates/.icons/material/movie-open-cog-outline.svg +1 -0
  7911. docsforge/themes/material/templates/.icons/material/movie-open-cog.svg +1 -0
  7912. docsforge/themes/material/templates/.icons/material/movie-open-edit-outline.svg +1 -0
  7913. docsforge/themes/material/templates/.icons/material/movie-open-edit.svg +1 -0
  7914. docsforge/themes/material/templates/.icons/material/movie-open-minus-outline.svg +1 -0
  7915. docsforge/themes/material/templates/.icons/material/movie-open-minus.svg +1 -0
  7916. docsforge/themes/material/templates/.icons/material/movie-open-off-outline.svg +1 -0
  7917. docsforge/themes/material/templates/.icons/material/movie-open-off.svg +1 -0
  7918. docsforge/themes/material/templates/.icons/material/movie-open-outline.svg +1 -0
  7919. docsforge/themes/material/templates/.icons/material/movie-open-play-outline.svg +1 -0
  7920. docsforge/themes/material/templates/.icons/material/movie-open-play.svg +1 -0
  7921. docsforge/themes/material/templates/.icons/material/movie-open-plus-outline.svg +1 -0
  7922. docsforge/themes/material/templates/.icons/material/movie-open-plus.svg +1 -0
  7923. docsforge/themes/material/templates/.icons/material/movie-open-remove-outline.svg +1 -0
  7924. docsforge/themes/material/templates/.icons/material/movie-open-remove.svg +1 -0
  7925. docsforge/themes/material/templates/.icons/material/movie-open-settings-outline.svg +1 -0
  7926. docsforge/themes/material/templates/.icons/material/movie-open-settings.svg +1 -0
  7927. docsforge/themes/material/templates/.icons/material/movie-open-star-outline.svg +1 -0
  7928. docsforge/themes/material/templates/.icons/material/movie-open-star.svg +1 -0
  7929. docsforge/themes/material/templates/.icons/material/movie-open.svg +1 -0
  7930. docsforge/themes/material/templates/.icons/material/movie-outline.svg +1 -0
  7931. docsforge/themes/material/templates/.icons/material/movie-play-outline.svg +1 -0
  7932. docsforge/themes/material/templates/.icons/material/movie-play.svg +1 -0
  7933. docsforge/themes/material/templates/.icons/material/movie-plus-outline.svg +1 -0
  7934. docsforge/themes/material/templates/.icons/material/movie-plus.svg +1 -0
  7935. docsforge/themes/material/templates/.icons/material/movie-remove-outline.svg +1 -0
  7936. docsforge/themes/material/templates/.icons/material/movie-remove.svg +1 -0
  7937. docsforge/themes/material/templates/.icons/material/movie-roll.svg +1 -0
  7938. docsforge/themes/material/templates/.icons/material/movie-search-outline.svg +1 -0
  7939. docsforge/themes/material/templates/.icons/material/movie-search.svg +1 -0
  7940. docsforge/themes/material/templates/.icons/material/movie-settings-outline.svg +1 -0
  7941. docsforge/themes/material/templates/.icons/material/movie-settings.svg +1 -0
  7942. docsforge/themes/material/templates/.icons/material/movie-star-outline.svg +1 -0
  7943. docsforge/themes/material/templates/.icons/material/movie-star.svg +1 -0
  7944. docsforge/themes/material/templates/.icons/material/movie.svg +1 -0
  7945. docsforge/themes/material/templates/.icons/material/mower-bag-on.svg +1 -0
  7946. docsforge/themes/material/templates/.icons/material/mower-bag.svg +1 -0
  7947. docsforge/themes/material/templates/.icons/material/mower-on.svg +1 -0
  7948. docsforge/themes/material/templates/.icons/material/mower.svg +1 -0
  7949. docsforge/themes/material/templates/.icons/material/muffin.svg +1 -0
  7950. docsforge/themes/material/templates/.icons/material/multicast.svg +1 -0
  7951. docsforge/themes/material/templates/.icons/material/multimedia.svg +1 -0
  7952. docsforge/themes/material/templates/.icons/material/multiplication-box.svg +1 -0
  7953. docsforge/themes/material/templates/.icons/material/multiplication.svg +1 -0
  7954. docsforge/themes/material/templates/.icons/material/mushroom-off-outline.svg +1 -0
  7955. docsforge/themes/material/templates/.icons/material/mushroom-off.svg +1 -0
  7956. docsforge/themes/material/templates/.icons/material/mushroom-outline.svg +1 -0
  7957. docsforge/themes/material/templates/.icons/material/mushroom.svg +1 -0
  7958. docsforge/themes/material/templates/.icons/material/music-accidental-double-flat.svg +1 -0
  7959. docsforge/themes/material/templates/.icons/material/music-accidental-double-sharp.svg +1 -0
  7960. docsforge/themes/material/templates/.icons/material/music-accidental-flat.svg +1 -0
  7961. docsforge/themes/material/templates/.icons/material/music-accidental-natural.svg +1 -0
  7962. docsforge/themes/material/templates/.icons/material/music-accidental-sharp.svg +1 -0
  7963. docsforge/themes/material/templates/.icons/material/music-box-multiple-outline.svg +1 -0
  7964. docsforge/themes/material/templates/.icons/material/music-box-multiple.svg +1 -0
  7965. docsforge/themes/material/templates/.icons/material/music-box-outline.svg +1 -0
  7966. docsforge/themes/material/templates/.icons/material/music-box.svg +1 -0
  7967. docsforge/themes/material/templates/.icons/material/music-circle-outline.svg +1 -0
  7968. docsforge/themes/material/templates/.icons/material/music-circle.svg +1 -0
  7969. docsforge/themes/material/templates/.icons/material/music-clef-alto.svg +1 -0
  7970. docsforge/themes/material/templates/.icons/material/music-clef-bass.svg +1 -0
  7971. docsforge/themes/material/templates/.icons/material/music-clef-treble.svg +1 -0
  7972. docsforge/themes/material/templates/.icons/material/music-note-bluetooth-off.svg +1 -0
  7973. docsforge/themes/material/templates/.icons/material/music-note-bluetooth.svg +1 -0
  7974. docsforge/themes/material/templates/.icons/material/music-note-eighth-dotted.svg +1 -0
  7975. docsforge/themes/material/templates/.icons/material/music-note-eighth.svg +1 -0
  7976. docsforge/themes/material/templates/.icons/material/music-note-half-dotted.svg +1 -0
  7977. docsforge/themes/material/templates/.icons/material/music-note-half.svg +1 -0
  7978. docsforge/themes/material/templates/.icons/material/music-note-minus.svg +1 -0
  7979. docsforge/themes/material/templates/.icons/material/music-note-off-outline.svg +1 -0
  7980. docsforge/themes/material/templates/.icons/material/music-note-off.svg +1 -0
  7981. docsforge/themes/material/templates/.icons/material/music-note-outline.svg +1 -0
  7982. docsforge/themes/material/templates/.icons/material/music-note-plus.svg +1 -0
  7983. docsforge/themes/material/templates/.icons/material/music-note-quarter-dotted.svg +1 -0
  7984. docsforge/themes/material/templates/.icons/material/music-note-quarter.svg +1 -0
  7985. docsforge/themes/material/templates/.icons/material/music-note-sixteenth-dotted.svg +1 -0
  7986. docsforge/themes/material/templates/.icons/material/music-note-sixteenth.svg +1 -0
  7987. docsforge/themes/material/templates/.icons/material/music-note-whole-dotted.svg +1 -0
  7988. docsforge/themes/material/templates/.icons/material/music-note-whole.svg +1 -0
  7989. docsforge/themes/material/templates/.icons/material/music-note.svg +1 -0
  7990. docsforge/themes/material/templates/.icons/material/music-off.svg +1 -0
  7991. docsforge/themes/material/templates/.icons/material/music-rest-eighth.svg +1 -0
  7992. docsforge/themes/material/templates/.icons/material/music-rest-half.svg +1 -0
  7993. docsforge/themes/material/templates/.icons/material/music-rest-quarter.svg +1 -0
  7994. docsforge/themes/material/templates/.icons/material/music-rest-sixteenth.svg +1 -0
  7995. docsforge/themes/material/templates/.icons/material/music-rest-whole.svg +1 -0
  7996. docsforge/themes/material/templates/.icons/material/music.svg +1 -0
  7997. docsforge/themes/material/templates/.icons/material/mustache.svg +1 -0
  7998. docsforge/themes/material/templates/.icons/material/nail.svg +1 -0
  7999. docsforge/themes/material/templates/.icons/material/nas.svg +1 -0
  8000. docsforge/themes/material/templates/.icons/material/nativescript.svg +1 -0
  8001. docsforge/themes/material/templates/.icons/material/nature-outline.svg +1 -0
  8002. docsforge/themes/material/templates/.icons/material/nature-people-outline.svg +1 -0
  8003. docsforge/themes/material/templates/.icons/material/nature-people.svg +1 -0
  8004. docsforge/themes/material/templates/.icons/material/nature.svg +1 -0
  8005. docsforge/themes/material/templates/.icons/material/navigation-outline.svg +1 -0
  8006. docsforge/themes/material/templates/.icons/material/navigation-variant-outline.svg +1 -0
  8007. docsforge/themes/material/templates/.icons/material/navigation-variant.svg +1 -0
  8008. docsforge/themes/material/templates/.icons/material/navigation.svg +1 -0
  8009. docsforge/themes/material/templates/.icons/material/near-me.svg +1 -0
  8010. docsforge/themes/material/templates/.icons/material/necklace.svg +1 -0
  8011. docsforge/themes/material/templates/.icons/material/needle-off.svg +1 -0
  8012. docsforge/themes/material/templates/.icons/material/needle.svg +1 -0
  8013. docsforge/themes/material/templates/.icons/material/netflix.svg +1 -0
  8014. docsforge/themes/material/templates/.icons/material/network-off-outline.svg +1 -0
  8015. docsforge/themes/material/templates/.icons/material/network-off.svg +1 -0
  8016. docsforge/themes/material/templates/.icons/material/network-outline.svg +1 -0
  8017. docsforge/themes/material/templates/.icons/material/network-pos.svg +1 -0
  8018. docsforge/themes/material/templates/.icons/material/network-strength-1-alert.svg +1 -0
  8019. docsforge/themes/material/templates/.icons/material/network-strength-1.svg +1 -0
  8020. docsforge/themes/material/templates/.icons/material/network-strength-2-alert.svg +1 -0
  8021. docsforge/themes/material/templates/.icons/material/network-strength-2.svg +1 -0
  8022. docsforge/themes/material/templates/.icons/material/network-strength-3-alert.svg +1 -0
  8023. docsforge/themes/material/templates/.icons/material/network-strength-3.svg +1 -0
  8024. docsforge/themes/material/templates/.icons/material/network-strength-4-alert.svg +1 -0
  8025. docsforge/themes/material/templates/.icons/material/network-strength-4-cog.svg +1 -0
  8026. docsforge/themes/material/templates/.icons/material/network-strength-4.svg +1 -0
  8027. docsforge/themes/material/templates/.icons/material/network-strength-off-outline.svg +1 -0
  8028. docsforge/themes/material/templates/.icons/material/network-strength-off.svg +1 -0
  8029. docsforge/themes/material/templates/.icons/material/network-strength-outline.svg +1 -0
  8030. docsforge/themes/material/templates/.icons/material/network.svg +1 -0
  8031. docsforge/themes/material/templates/.icons/material/new-box.svg +1 -0
  8032. docsforge/themes/material/templates/.icons/material/newspaper-check.svg +1 -0
  8033. docsforge/themes/material/templates/.icons/material/newspaper-minus.svg +1 -0
  8034. docsforge/themes/material/templates/.icons/material/newspaper-plus.svg +1 -0
  8035. docsforge/themes/material/templates/.icons/material/newspaper-remove.svg +1 -0
  8036. docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple-outline.svg +1 -0
  8037. docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple.svg +1 -0
  8038. docsforge/themes/material/templates/.icons/material/newspaper-variant-outline.svg +1 -0
  8039. docsforge/themes/material/templates/.icons/material/newspaper-variant.svg +1 -0
  8040. docsforge/themes/material/templates/.icons/material/newspaper.svg +1 -0
  8041. docsforge/themes/material/templates/.icons/material/nfc-search-variant.svg +1 -0
  8042. docsforge/themes/material/templates/.icons/material/nfc-tap.svg +1 -0
  8043. docsforge/themes/material/templates/.icons/material/nfc-variant-off.svg +1 -0
  8044. docsforge/themes/material/templates/.icons/material/nfc-variant.svg +1 -0
  8045. docsforge/themes/material/templates/.icons/material/nfc.svg +1 -0
  8046. docsforge/themes/material/templates/.icons/material/ninja.svg +1 -0
  8047. docsforge/themes/material/templates/.icons/material/nintendo-game-boy.svg +1 -0
  8048. docsforge/themes/material/templates/.icons/material/nintendo-switch.svg +1 -0
  8049. docsforge/themes/material/templates/.icons/material/nintendo-wii.svg +1 -0
  8050. docsforge/themes/material/templates/.icons/material/nintendo-wiiu.svg +1 -0
  8051. docsforge/themes/material/templates/.icons/material/nix.svg +1 -0
  8052. docsforge/themes/material/templates/.icons/material/nodejs.svg +1 -0
  8053. docsforge/themes/material/templates/.icons/material/noodles.svg +1 -0
  8054. docsforge/themes/material/templates/.icons/material/not-equal-variant.svg +1 -0
  8055. docsforge/themes/material/templates/.icons/material/not-equal.svg +1 -0
  8056. docsforge/themes/material/templates/.icons/material/note-alert-outline.svg +1 -0
  8057. docsforge/themes/material/templates/.icons/material/note-alert.svg +1 -0
  8058. docsforge/themes/material/templates/.icons/material/note-check-outline.svg +1 -0
  8059. docsforge/themes/material/templates/.icons/material/note-check.svg +1 -0
  8060. docsforge/themes/material/templates/.icons/material/note-edit-outline.svg +1 -0
  8061. docsforge/themes/material/templates/.icons/material/note-edit.svg +1 -0
  8062. docsforge/themes/material/templates/.icons/material/note-minus-outline.svg +1 -0
  8063. docsforge/themes/material/templates/.icons/material/note-minus.svg +1 -0
  8064. docsforge/themes/material/templates/.icons/material/note-multiple-outline.svg +1 -0
  8065. docsforge/themes/material/templates/.icons/material/note-multiple.svg +1 -0
  8066. docsforge/themes/material/templates/.icons/material/note-off-outline.svg +1 -0
  8067. docsforge/themes/material/templates/.icons/material/note-off.svg +1 -0
  8068. docsforge/themes/material/templates/.icons/material/note-outline.svg +1 -0
  8069. docsforge/themes/material/templates/.icons/material/note-plus-outline.svg +1 -0
  8070. docsforge/themes/material/templates/.icons/material/note-plus.svg +1 -0
  8071. docsforge/themes/material/templates/.icons/material/note-remove-outline.svg +1 -0
  8072. docsforge/themes/material/templates/.icons/material/note-remove.svg +1 -0
  8073. docsforge/themes/material/templates/.icons/material/note-search-outline.svg +1 -0
  8074. docsforge/themes/material/templates/.icons/material/note-search.svg +1 -0
  8075. docsforge/themes/material/templates/.icons/material/note-text-outline.svg +1 -0
  8076. docsforge/themes/material/templates/.icons/material/note-text.svg +1 -0
  8077. docsforge/themes/material/templates/.icons/material/note.svg +1 -0
  8078. docsforge/themes/material/templates/.icons/material/notebook-check-outline.svg +1 -0
  8079. docsforge/themes/material/templates/.icons/material/notebook-check.svg +1 -0
  8080. docsforge/themes/material/templates/.icons/material/notebook-edit-outline.svg +1 -0
  8081. docsforge/themes/material/templates/.icons/material/notebook-edit.svg +1 -0
  8082. docsforge/themes/material/templates/.icons/material/notebook-heart-outline.svg +1 -0
  8083. docsforge/themes/material/templates/.icons/material/notebook-heart.svg +1 -0
  8084. docsforge/themes/material/templates/.icons/material/notebook-minus-outline.svg +1 -0
  8085. docsforge/themes/material/templates/.icons/material/notebook-minus.svg +1 -0
  8086. docsforge/themes/material/templates/.icons/material/notebook-multiple.svg +1 -0
  8087. docsforge/themes/material/templates/.icons/material/notebook-outline.svg +1 -0
  8088. docsforge/themes/material/templates/.icons/material/notebook-plus-outline.svg +1 -0
  8089. docsforge/themes/material/templates/.icons/material/notebook-plus.svg +1 -0
  8090. docsforge/themes/material/templates/.icons/material/notebook-remove-outline.svg +1 -0
  8091. docsforge/themes/material/templates/.icons/material/notebook-remove.svg +1 -0
  8092. docsforge/themes/material/templates/.icons/material/notebook.svg +1 -0
  8093. docsforge/themes/material/templates/.icons/material/notification-clear-all.svg +1 -0
  8094. docsforge/themes/material/templates/.icons/material/npm.svg +1 -0
  8095. docsforge/themes/material/templates/.icons/material/nuke.svg +1 -0
  8096. docsforge/themes/material/templates/.icons/material/null.svg +1 -0
  8097. docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple-outline.svg +1 -0
  8098. docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple.svg +1 -0
  8099. docsforge/themes/material/templates/.icons/material/numeric-0-box-outline.svg +1 -0
  8100. docsforge/themes/material/templates/.icons/material/numeric-0-box.svg +1 -0
  8101. docsforge/themes/material/templates/.icons/material/numeric-0-circle-outline.svg +1 -0
  8102. docsforge/themes/material/templates/.icons/material/numeric-0-circle.svg +1 -0
  8103. docsforge/themes/material/templates/.icons/material/numeric-0.svg +1 -0
  8104. docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple-outline.svg +1 -0
  8105. docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple.svg +1 -0
  8106. docsforge/themes/material/templates/.icons/material/numeric-1-box-outline.svg +1 -0
  8107. docsforge/themes/material/templates/.icons/material/numeric-1-box.svg +1 -0
  8108. docsforge/themes/material/templates/.icons/material/numeric-1-circle-outline.svg +1 -0
  8109. docsforge/themes/material/templates/.icons/material/numeric-1-circle.svg +1 -0
  8110. docsforge/themes/material/templates/.icons/material/numeric-1.svg +1 -0
  8111. docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple-outline.svg +1 -0
  8112. docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple.svg +1 -0
  8113. docsforge/themes/material/templates/.icons/material/numeric-10-box-outline.svg +1 -0
  8114. docsforge/themes/material/templates/.icons/material/numeric-10-box.svg +1 -0
  8115. docsforge/themes/material/templates/.icons/material/numeric-10-circle-outline.svg +1 -0
  8116. docsforge/themes/material/templates/.icons/material/numeric-10-circle.svg +1 -0
  8117. docsforge/themes/material/templates/.icons/material/numeric-10.svg +1 -0
  8118. docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple-outline.svg +1 -0
  8119. docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple.svg +1 -0
  8120. docsforge/themes/material/templates/.icons/material/numeric-2-box-outline.svg +1 -0
  8121. docsforge/themes/material/templates/.icons/material/numeric-2-box.svg +1 -0
  8122. docsforge/themes/material/templates/.icons/material/numeric-2-circle-outline.svg +1 -0
  8123. docsforge/themes/material/templates/.icons/material/numeric-2-circle.svg +1 -0
  8124. docsforge/themes/material/templates/.icons/material/numeric-2.svg +1 -0
  8125. docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple-outline.svg +1 -0
  8126. docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple.svg +1 -0
  8127. docsforge/themes/material/templates/.icons/material/numeric-3-box-outline.svg +1 -0
  8128. docsforge/themes/material/templates/.icons/material/numeric-3-box.svg +1 -0
  8129. docsforge/themes/material/templates/.icons/material/numeric-3-circle-outline.svg +1 -0
  8130. docsforge/themes/material/templates/.icons/material/numeric-3-circle.svg +1 -0
  8131. docsforge/themes/material/templates/.icons/material/numeric-3.svg +1 -0
  8132. docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple-outline.svg +1 -0
  8133. docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple.svg +1 -0
  8134. docsforge/themes/material/templates/.icons/material/numeric-4-box-outline.svg +1 -0
  8135. docsforge/themes/material/templates/.icons/material/numeric-4-box.svg +1 -0
  8136. docsforge/themes/material/templates/.icons/material/numeric-4-circle-outline.svg +1 -0
  8137. docsforge/themes/material/templates/.icons/material/numeric-4-circle.svg +1 -0
  8138. docsforge/themes/material/templates/.icons/material/numeric-4.svg +1 -0
  8139. docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple-outline.svg +1 -0
  8140. docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple.svg +1 -0
  8141. docsforge/themes/material/templates/.icons/material/numeric-5-box-outline.svg +1 -0
  8142. docsforge/themes/material/templates/.icons/material/numeric-5-box.svg +1 -0
  8143. docsforge/themes/material/templates/.icons/material/numeric-5-circle-outline.svg +1 -0
  8144. docsforge/themes/material/templates/.icons/material/numeric-5-circle.svg +1 -0
  8145. docsforge/themes/material/templates/.icons/material/numeric-5.svg +1 -0
  8146. docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple-outline.svg +1 -0
  8147. docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple.svg +1 -0
  8148. docsforge/themes/material/templates/.icons/material/numeric-6-box-outline.svg +1 -0
  8149. docsforge/themes/material/templates/.icons/material/numeric-6-box.svg +1 -0
  8150. docsforge/themes/material/templates/.icons/material/numeric-6-circle-outline.svg +1 -0
  8151. docsforge/themes/material/templates/.icons/material/numeric-6-circle.svg +1 -0
  8152. docsforge/themes/material/templates/.icons/material/numeric-6.svg +1 -0
  8153. docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple-outline.svg +1 -0
  8154. docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple.svg +1 -0
  8155. docsforge/themes/material/templates/.icons/material/numeric-7-box-outline.svg +1 -0
  8156. docsforge/themes/material/templates/.icons/material/numeric-7-box.svg +1 -0
  8157. docsforge/themes/material/templates/.icons/material/numeric-7-circle-outline.svg +1 -0
  8158. docsforge/themes/material/templates/.icons/material/numeric-7-circle.svg +1 -0
  8159. docsforge/themes/material/templates/.icons/material/numeric-7.svg +1 -0
  8160. docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple-outline.svg +1 -0
  8161. docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple.svg +1 -0
  8162. docsforge/themes/material/templates/.icons/material/numeric-8-box-outline.svg +1 -0
  8163. docsforge/themes/material/templates/.icons/material/numeric-8-box.svg +1 -0
  8164. docsforge/themes/material/templates/.icons/material/numeric-8-circle-outline.svg +1 -0
  8165. docsforge/themes/material/templates/.icons/material/numeric-8-circle.svg +1 -0
  8166. docsforge/themes/material/templates/.icons/material/numeric-8.svg +1 -0
  8167. docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple-outline.svg +1 -0
  8168. docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple.svg +1 -0
  8169. docsforge/themes/material/templates/.icons/material/numeric-9-box-outline.svg +1 -0
  8170. docsforge/themes/material/templates/.icons/material/numeric-9-box.svg +1 -0
  8171. docsforge/themes/material/templates/.icons/material/numeric-9-circle-outline.svg +1 -0
  8172. docsforge/themes/material/templates/.icons/material/numeric-9-circle.svg +1 -0
  8173. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg +1 -0
  8174. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple.svg +1 -0
  8175. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-outline.svg +1 -0
  8176. docsforge/themes/material/templates/.icons/material/numeric-9-plus-box.svg +1 -0
  8177. docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle-outline.svg +1 -0
  8178. docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle.svg +1 -0
  8179. docsforge/themes/material/templates/.icons/material/numeric-9-plus.svg +1 -0
  8180. docsforge/themes/material/templates/.icons/material/numeric-9.svg +1 -0
  8181. docsforge/themes/material/templates/.icons/material/numeric-negative-1.svg +1 -0
  8182. docsforge/themes/material/templates/.icons/material/numeric-off.svg +1 -0
  8183. docsforge/themes/material/templates/.icons/material/numeric-positive-1.svg +1 -0
  8184. docsforge/themes/material/templates/.icons/material/numeric.svg +1 -0
  8185. docsforge/themes/material/templates/.icons/material/nut.svg +1 -0
  8186. docsforge/themes/material/templates/.icons/material/nutrition.svg +1 -0
  8187. docsforge/themes/material/templates/.icons/material/nuxt.svg +1 -0
  8188. docsforge/themes/material/templates/.icons/material/oar.svg +1 -0
  8189. docsforge/themes/material/templates/.icons/material/ocarina.svg +1 -0
  8190. docsforge/themes/material/templates/.icons/material/oci.svg +1 -0
  8191. docsforge/themes/material/templates/.icons/material/ocr.svg +1 -0
  8192. docsforge/themes/material/templates/.icons/material/octagon-outline.svg +1 -0
  8193. docsforge/themes/material/templates/.icons/material/octagon.svg +1 -0
  8194. docsforge/themes/material/templates/.icons/material/octagram-edit-outline.svg +1 -0
  8195. docsforge/themes/material/templates/.icons/material/octagram-edit.svg +1 -0
  8196. docsforge/themes/material/templates/.icons/material/octagram-minus-outline.svg +1 -0
  8197. docsforge/themes/material/templates/.icons/material/octagram-minus.svg +1 -0
  8198. docsforge/themes/material/templates/.icons/material/octagram-outline.svg +1 -0
  8199. docsforge/themes/material/templates/.icons/material/octagram-plus-outline.svg +1 -0
  8200. docsforge/themes/material/templates/.icons/material/octagram-plus.svg +1 -0
  8201. docsforge/themes/material/templates/.icons/material/octagram.svg +1 -0
  8202. docsforge/themes/material/templates/.icons/material/octahedron-off.svg +1 -0
  8203. docsforge/themes/material/templates/.icons/material/octahedron.svg +1 -0
  8204. docsforge/themes/material/templates/.icons/material/odnoklassniki.svg +1 -0
  8205. docsforge/themes/material/templates/.icons/material/offer.svg +1 -0
  8206. docsforge/themes/material/templates/.icons/material/office-building-cog-outline.svg +1 -0
  8207. docsforge/themes/material/templates/.icons/material/office-building-cog.svg +1 -0
  8208. docsforge/themes/material/templates/.icons/material/office-building-marker-outline.svg +1 -0
  8209. docsforge/themes/material/templates/.icons/material/office-building-marker.svg +1 -0
  8210. docsforge/themes/material/templates/.icons/material/office-building-minus-outline.svg +1 -0
  8211. docsforge/themes/material/templates/.icons/material/office-building-minus.svg +1 -0
  8212. docsforge/themes/material/templates/.icons/material/office-building-outline.svg +1 -0
  8213. docsforge/themes/material/templates/.icons/material/office-building-plus-outline.svg +1 -0
  8214. docsforge/themes/material/templates/.icons/material/office-building-plus.svg +1 -0
  8215. docsforge/themes/material/templates/.icons/material/office-building-remove-outline.svg +1 -0
  8216. docsforge/themes/material/templates/.icons/material/office-building-remove.svg +1 -0
  8217. docsforge/themes/material/templates/.icons/material/office-building.svg +1 -0
  8218. docsforge/themes/material/templates/.icons/material/oil-lamp.svg +1 -0
  8219. docsforge/themes/material/templates/.icons/material/oil-level.svg +1 -0
  8220. docsforge/themes/material/templates/.icons/material/oil-temperature.svg +1 -0
  8221. docsforge/themes/material/templates/.icons/material/oil.svg +1 -0
  8222. docsforge/themes/material/templates/.icons/material/om.svg +1 -0
  8223. docsforge/themes/material/templates/.icons/material/omega.svg +1 -0
  8224. docsforge/themes/material/templates/.icons/material/one-up.svg +1 -0
  8225. docsforge/themes/material/templates/.icons/material/onepassword.svg +1 -0
  8226. docsforge/themes/material/templates/.icons/material/opacity.svg +1 -0
  8227. docsforge/themes/material/templates/.icons/material/open-in-app.svg +1 -0
  8228. docsforge/themes/material/templates/.icons/material/open-in-new.svg +1 -0
  8229. docsforge/themes/material/templates/.icons/material/open-source-initiative.svg +1 -0
  8230. docsforge/themes/material/templates/.icons/material/openid.svg +1 -0
  8231. docsforge/themes/material/templates/.icons/material/opera.svg +1 -0
  8232. docsforge/themes/material/templates/.icons/material/orbit-variant.svg +1 -0
  8233. docsforge/themes/material/templates/.icons/material/orbit.svg +1 -0
  8234. docsforge/themes/material/templates/.icons/material/order-alphabetical-ascending.svg +1 -0
  8235. docsforge/themes/material/templates/.icons/material/order-alphabetical-descending.svg +1 -0
  8236. docsforge/themes/material/templates/.icons/material/order-bool-ascending-variant.svg +1 -0
  8237. docsforge/themes/material/templates/.icons/material/order-bool-ascending.svg +1 -0
  8238. docsforge/themes/material/templates/.icons/material/order-bool-descending-variant.svg +1 -0
  8239. docsforge/themes/material/templates/.icons/material/order-bool-descending.svg +1 -0
  8240. docsforge/themes/material/templates/.icons/material/order-numeric-ascending.svg +1 -0
  8241. docsforge/themes/material/templates/.icons/material/order-numeric-descending.svg +1 -0
  8242. docsforge/themes/material/templates/.icons/material/origin.svg +1 -0
  8243. docsforge/themes/material/templates/.icons/material/ornament-variant.svg +1 -0
  8244. docsforge/themes/material/templates/.icons/material/ornament.svg +1 -0
  8245. docsforge/themes/material/templates/.icons/material/outdoor-lamp.svg +1 -0
  8246. docsforge/themes/material/templates/.icons/material/overscan.svg +1 -0
  8247. docsforge/themes/material/templates/.icons/material/owl.svg +1 -0
  8248. docsforge/themes/material/templates/.icons/material/pac-man.svg +1 -0
  8249. docsforge/themes/material/templates/.icons/material/package-check.svg +1 -0
  8250. docsforge/themes/material/templates/.icons/material/package-down.svg +1 -0
  8251. docsforge/themes/material/templates/.icons/material/package-up.svg +1 -0
  8252. docsforge/themes/material/templates/.icons/material/package-variant-closed-check.svg +1 -0
  8253. docsforge/themes/material/templates/.icons/material/package-variant-closed-minus.svg +1 -0
  8254. docsforge/themes/material/templates/.icons/material/package-variant-closed-plus.svg +1 -0
  8255. docsforge/themes/material/templates/.icons/material/package-variant-closed-remove.svg +1 -0
  8256. docsforge/themes/material/templates/.icons/material/package-variant-closed.svg +1 -0
  8257. docsforge/themes/material/templates/.icons/material/package-variant-minus.svg +1 -0
  8258. docsforge/themes/material/templates/.icons/material/package-variant-plus.svg +1 -0
  8259. docsforge/themes/material/templates/.icons/material/package-variant-remove.svg +1 -0
  8260. docsforge/themes/material/templates/.icons/material/package-variant.svg +1 -0
  8261. docsforge/themes/material/templates/.icons/material/package.svg +1 -0
  8262. docsforge/themes/material/templates/.icons/material/page-first.svg +1 -0
  8263. docsforge/themes/material/templates/.icons/material/page-last.svg +1 -0
  8264. docsforge/themes/material/templates/.icons/material/page-layout-body.svg +1 -0
  8265. docsforge/themes/material/templates/.icons/material/page-layout-footer.svg +1 -0
  8266. docsforge/themes/material/templates/.icons/material/page-layout-header-footer.svg +1 -0
  8267. docsforge/themes/material/templates/.icons/material/page-layout-header.svg +1 -0
  8268. docsforge/themes/material/templates/.icons/material/page-layout-sidebar-left.svg +1 -0
  8269. docsforge/themes/material/templates/.icons/material/page-layout-sidebar-right.svg +1 -0
  8270. docsforge/themes/material/templates/.icons/material/page-next-outline.svg +1 -0
  8271. docsforge/themes/material/templates/.icons/material/page-next.svg +1 -0
  8272. docsforge/themes/material/templates/.icons/material/page-previous-outline.svg +1 -0
  8273. docsforge/themes/material/templates/.icons/material/page-previous.svg +1 -0
  8274. docsforge/themes/material/templates/.icons/material/pail-minus-outline.svg +1 -0
  8275. docsforge/themes/material/templates/.icons/material/pail-minus.svg +1 -0
  8276. docsforge/themes/material/templates/.icons/material/pail-off-outline.svg +1 -0
  8277. docsforge/themes/material/templates/.icons/material/pail-off.svg +1 -0
  8278. docsforge/themes/material/templates/.icons/material/pail-outline.svg +1 -0
  8279. docsforge/themes/material/templates/.icons/material/pail-plus-outline.svg +1 -0
  8280. docsforge/themes/material/templates/.icons/material/pail-plus.svg +1 -0
  8281. docsforge/themes/material/templates/.icons/material/pail-remove-outline.svg +1 -0
  8282. docsforge/themes/material/templates/.icons/material/pail-remove.svg +1 -0
  8283. docsforge/themes/material/templates/.icons/material/pail.svg +1 -0
  8284. docsforge/themes/material/templates/.icons/material/palette-advanced.svg +1 -0
  8285. docsforge/themes/material/templates/.icons/material/palette-outline.svg +1 -0
  8286. docsforge/themes/material/templates/.icons/material/palette-swatch-outline.svg +1 -0
  8287. docsforge/themes/material/templates/.icons/material/palette-swatch-variant.svg +1 -0
  8288. docsforge/themes/material/templates/.icons/material/palette-swatch.svg +1 -0
  8289. docsforge/themes/material/templates/.icons/material/palette.svg +1 -0
  8290. docsforge/themes/material/templates/.icons/material/palm-tree.svg +1 -0
  8291. docsforge/themes/material/templates/.icons/material/pan-bottom-left.svg +1 -0
  8292. docsforge/themes/material/templates/.icons/material/pan-bottom-right.svg +1 -0
  8293. docsforge/themes/material/templates/.icons/material/pan-down.svg +1 -0
  8294. docsforge/themes/material/templates/.icons/material/pan-horizontal.svg +1 -0
  8295. docsforge/themes/material/templates/.icons/material/pan-left.svg +1 -0
  8296. docsforge/themes/material/templates/.icons/material/pan-right.svg +1 -0
  8297. docsforge/themes/material/templates/.icons/material/pan-top-left.svg +1 -0
  8298. docsforge/themes/material/templates/.icons/material/pan-top-right.svg +1 -0
  8299. docsforge/themes/material/templates/.icons/material/pan-up.svg +1 -0
  8300. docsforge/themes/material/templates/.icons/material/pan-vertical.svg +1 -0
  8301. docsforge/themes/material/templates/.icons/material/pan.svg +1 -0
  8302. docsforge/themes/material/templates/.icons/material/panda.svg +1 -0
  8303. docsforge/themes/material/templates/.icons/material/pandora.svg +1 -0
  8304. docsforge/themes/material/templates/.icons/material/panorama-fisheye.svg +1 -0
  8305. docsforge/themes/material/templates/.icons/material/panorama-horizontal-outline.svg +1 -0
  8306. docsforge/themes/material/templates/.icons/material/panorama-horizontal.svg +1 -0
  8307. docsforge/themes/material/templates/.icons/material/panorama-outline.svg +1 -0
  8308. docsforge/themes/material/templates/.icons/material/panorama-sphere-outline.svg +1 -0
  8309. docsforge/themes/material/templates/.icons/material/panorama-sphere.svg +1 -0
  8310. docsforge/themes/material/templates/.icons/material/panorama-variant-outline.svg +1 -0
  8311. docsforge/themes/material/templates/.icons/material/panorama-variant.svg +1 -0
  8312. docsforge/themes/material/templates/.icons/material/panorama-vertical-outline.svg +1 -0
  8313. docsforge/themes/material/templates/.icons/material/panorama-vertical.svg +1 -0
  8314. docsforge/themes/material/templates/.icons/material/panorama-wide-angle-outline.svg +1 -0
  8315. docsforge/themes/material/templates/.icons/material/panorama-wide-angle.svg +1 -0
  8316. docsforge/themes/material/templates/.icons/material/panorama.svg +1 -0
  8317. docsforge/themes/material/templates/.icons/material/paper-cut-vertical.svg +1 -0
  8318. docsforge/themes/material/templates/.icons/material/paper-roll-outline.svg +1 -0
  8319. docsforge/themes/material/templates/.icons/material/paper-roll.svg +1 -0
  8320. docsforge/themes/material/templates/.icons/material/paperclip-check.svg +1 -0
  8321. docsforge/themes/material/templates/.icons/material/paperclip-lock.svg +1 -0
  8322. docsforge/themes/material/templates/.icons/material/paperclip-minus.svg +1 -0
  8323. docsforge/themes/material/templates/.icons/material/paperclip-off.svg +1 -0
  8324. docsforge/themes/material/templates/.icons/material/paperclip-plus.svg +1 -0
  8325. docsforge/themes/material/templates/.icons/material/paperclip-remove.svg +1 -0
  8326. docsforge/themes/material/templates/.icons/material/paperclip.svg +1 -0
  8327. docsforge/themes/material/templates/.icons/material/parachute-outline.svg +1 -0
  8328. docsforge/themes/material/templates/.icons/material/parachute.svg +1 -0
  8329. docsforge/themes/material/templates/.icons/material/paragliding.svg +1 -0
  8330. docsforge/themes/material/templates/.icons/material/parking.svg +1 -0
  8331. docsforge/themes/material/templates/.icons/material/party-popper.svg +1 -0
  8332. docsforge/themes/material/templates/.icons/material/passport-alert.svg +1 -0
  8333. docsforge/themes/material/templates/.icons/material/passport-biometric.svg +1 -0
  8334. docsforge/themes/material/templates/.icons/material/passport-cancel.svg +1 -0
  8335. docsforge/themes/material/templates/.icons/material/passport-check.svg +1 -0
  8336. docsforge/themes/material/templates/.icons/material/passport-minus.svg +1 -0
  8337. docsforge/themes/material/templates/.icons/material/passport-plus.svg +1 -0
  8338. docsforge/themes/material/templates/.icons/material/passport-remove.svg +1 -0
  8339. docsforge/themes/material/templates/.icons/material/passport.svg +1 -0
  8340. docsforge/themes/material/templates/.icons/material/pasta.svg +1 -0
  8341. docsforge/themes/material/templates/.icons/material/patio-heater.svg +1 -0
  8342. docsforge/themes/material/templates/.icons/material/patreon.svg +1 -0
  8343. docsforge/themes/material/templates/.icons/material/pause-box-outline.svg +1 -0
  8344. docsforge/themes/material/templates/.icons/material/pause-box.svg +1 -0
  8345. docsforge/themes/material/templates/.icons/material/pause-circle-outline.svg +1 -0
  8346. docsforge/themes/material/templates/.icons/material/pause-circle.svg +1 -0
  8347. docsforge/themes/material/templates/.icons/material/pause-octagon-outline.svg +1 -0
  8348. docsforge/themes/material/templates/.icons/material/pause-octagon.svg +1 -0
  8349. docsforge/themes/material/templates/.icons/material/pause.svg +1 -0
  8350. docsforge/themes/material/templates/.icons/material/paw-off-outline.svg +1 -0
  8351. docsforge/themes/material/templates/.icons/material/paw-off.svg +1 -0
  8352. docsforge/themes/material/templates/.icons/material/paw-outline.svg +1 -0
  8353. docsforge/themes/material/templates/.icons/material/paw.svg +1 -0
  8354. docsforge/themes/material/templates/.icons/material/peace.svg +1 -0
  8355. docsforge/themes/material/templates/.icons/material/peanut-off-outline.svg +1 -0
  8356. docsforge/themes/material/templates/.icons/material/peanut-off.svg +1 -0
  8357. docsforge/themes/material/templates/.icons/material/peanut-outline.svg +1 -0
  8358. docsforge/themes/material/templates/.icons/material/peanut.svg +1 -0
  8359. docsforge/themes/material/templates/.icons/material/pen-lock.svg +1 -0
  8360. docsforge/themes/material/templates/.icons/material/pen-minus.svg +1 -0
  8361. docsforge/themes/material/templates/.icons/material/pen-off.svg +1 -0
  8362. docsforge/themes/material/templates/.icons/material/pen-plus.svg +1 -0
  8363. docsforge/themes/material/templates/.icons/material/pen-remove.svg +1 -0
  8364. docsforge/themes/material/templates/.icons/material/pen.svg +1 -0
  8365. docsforge/themes/material/templates/.icons/material/pencil-box-multiple-outline.svg +1 -0
  8366. docsforge/themes/material/templates/.icons/material/pencil-box-multiple.svg +1 -0
  8367. docsforge/themes/material/templates/.icons/material/pencil-box-outline.svg +1 -0
  8368. docsforge/themes/material/templates/.icons/material/pencil-box.svg +1 -0
  8369. docsforge/themes/material/templates/.icons/material/pencil-circle-outline.svg +1 -0
  8370. docsforge/themes/material/templates/.icons/material/pencil-circle.svg +1 -0
  8371. docsforge/themes/material/templates/.icons/material/pencil-lock-outline.svg +1 -0
  8372. docsforge/themes/material/templates/.icons/material/pencil-lock.svg +1 -0
  8373. docsforge/themes/material/templates/.icons/material/pencil-minus-outline.svg +1 -0
  8374. docsforge/themes/material/templates/.icons/material/pencil-minus.svg +1 -0
  8375. docsforge/themes/material/templates/.icons/material/pencil-off-outline.svg +1 -0
  8376. docsforge/themes/material/templates/.icons/material/pencil-off.svg +1 -0
  8377. docsforge/themes/material/templates/.icons/material/pencil-outline.svg +1 -0
  8378. docsforge/themes/material/templates/.icons/material/pencil-plus-outline.svg +1 -0
  8379. docsforge/themes/material/templates/.icons/material/pencil-plus.svg +1 -0
  8380. docsforge/themes/material/templates/.icons/material/pencil-remove-outline.svg +1 -0
  8381. docsforge/themes/material/templates/.icons/material/pencil-remove.svg +1 -0
  8382. docsforge/themes/material/templates/.icons/material/pencil-ruler-outline.svg +1 -0
  8383. docsforge/themes/material/templates/.icons/material/pencil-ruler.svg +1 -0
  8384. docsforge/themes/material/templates/.icons/material/pencil.svg +1 -0
  8385. docsforge/themes/material/templates/.icons/material/penguin.svg +1 -0
  8386. docsforge/themes/material/templates/.icons/material/pentagon-outline.svg +1 -0
  8387. docsforge/themes/material/templates/.icons/material/pentagon.svg +1 -0
  8388. docsforge/themes/material/templates/.icons/material/pentagram.svg +1 -0
  8389. docsforge/themes/material/templates/.icons/material/percent-box-outline.svg +1 -0
  8390. docsforge/themes/material/templates/.icons/material/percent-box.svg +1 -0
  8391. docsforge/themes/material/templates/.icons/material/percent-circle-outline.svg +1 -0
  8392. docsforge/themes/material/templates/.icons/material/percent-circle.svg +1 -0
  8393. docsforge/themes/material/templates/.icons/material/percent-outline.svg +1 -0
  8394. docsforge/themes/material/templates/.icons/material/percent.svg +1 -0
  8395. docsforge/themes/material/templates/.icons/material/periodic-table.svg +1 -0
  8396. docsforge/themes/material/templates/.icons/material/perspective-less.svg +1 -0
  8397. docsforge/themes/material/templates/.icons/material/perspective-more.svg +1 -0
  8398. docsforge/themes/material/templates/.icons/material/ph.svg +1 -0
  8399. docsforge/themes/material/templates/.icons/material/phone-alert-outline.svg +1 -0
  8400. docsforge/themes/material/templates/.icons/material/phone-alert.svg +1 -0
  8401. docsforge/themes/material/templates/.icons/material/phone-bluetooth-outline.svg +1 -0
  8402. docsforge/themes/material/templates/.icons/material/phone-bluetooth.svg +1 -0
  8403. docsforge/themes/material/templates/.icons/material/phone-cancel-outline.svg +1 -0
  8404. docsforge/themes/material/templates/.icons/material/phone-cancel.svg +1 -0
  8405. docsforge/themes/material/templates/.icons/material/phone-check-outline.svg +1 -0
  8406. docsforge/themes/material/templates/.icons/material/phone-check.svg +1 -0
  8407. docsforge/themes/material/templates/.icons/material/phone-classic-off.svg +1 -0
  8408. docsforge/themes/material/templates/.icons/material/phone-classic.svg +1 -0
  8409. docsforge/themes/material/templates/.icons/material/phone-clock.svg +1 -0
  8410. docsforge/themes/material/templates/.icons/material/phone-dial-outline.svg +1 -0
  8411. docsforge/themes/material/templates/.icons/material/phone-dial.svg +1 -0
  8412. docsforge/themes/material/templates/.icons/material/phone-forward-outline.svg +1 -0
  8413. docsforge/themes/material/templates/.icons/material/phone-forward.svg +1 -0
  8414. docsforge/themes/material/templates/.icons/material/phone-hangup-outline.svg +1 -0
  8415. docsforge/themes/material/templates/.icons/material/phone-hangup.svg +1 -0
  8416. docsforge/themes/material/templates/.icons/material/phone-in-talk-outline.svg +1 -0
  8417. docsforge/themes/material/templates/.icons/material/phone-in-talk.svg +1 -0
  8418. docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing-outline.svg +1 -0
  8419. docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing.svg +1 -0
  8420. docsforge/themes/material/templates/.icons/material/phone-incoming-outline.svg +1 -0
  8421. docsforge/themes/material/templates/.icons/material/phone-incoming.svg +1 -0
  8422. docsforge/themes/material/templates/.icons/material/phone-lock-outline.svg +1 -0
  8423. docsforge/themes/material/templates/.icons/material/phone-lock.svg +1 -0
  8424. docsforge/themes/material/templates/.icons/material/phone-log-outline.svg +1 -0
  8425. docsforge/themes/material/templates/.icons/material/phone-log.svg +1 -0
  8426. docsforge/themes/material/templates/.icons/material/phone-message-outline.svg +1 -0
  8427. docsforge/themes/material/templates/.icons/material/phone-message.svg +1 -0
  8428. docsforge/themes/material/templates/.icons/material/phone-minus-outline.svg +1 -0
  8429. docsforge/themes/material/templates/.icons/material/phone-minus.svg +1 -0
  8430. docsforge/themes/material/templates/.icons/material/phone-missed-outline.svg +1 -0
  8431. docsforge/themes/material/templates/.icons/material/phone-missed.svg +1 -0
  8432. docsforge/themes/material/templates/.icons/material/phone-off-outline.svg +1 -0
  8433. docsforge/themes/material/templates/.icons/material/phone-off.svg +1 -0
  8434. docsforge/themes/material/templates/.icons/material/phone-outgoing-outline.svg +1 -0
  8435. docsforge/themes/material/templates/.icons/material/phone-outgoing.svg +1 -0
  8436. docsforge/themes/material/templates/.icons/material/phone-outline.svg +1 -0
  8437. docsforge/themes/material/templates/.icons/material/phone-paused-outline.svg +1 -0
  8438. docsforge/themes/material/templates/.icons/material/phone-paused.svg +1 -0
  8439. docsforge/themes/material/templates/.icons/material/phone-plus-outline.svg +1 -0
  8440. docsforge/themes/material/templates/.icons/material/phone-plus.svg +1 -0
  8441. docsforge/themes/material/templates/.icons/material/phone-refresh-outline.svg +1 -0
  8442. docsforge/themes/material/templates/.icons/material/phone-refresh.svg +1 -0
  8443. docsforge/themes/material/templates/.icons/material/phone-remove-outline.svg +1 -0
  8444. docsforge/themes/material/templates/.icons/material/phone-remove.svg +1 -0
  8445. docsforge/themes/material/templates/.icons/material/phone-return-outline.svg +1 -0
  8446. docsforge/themes/material/templates/.icons/material/phone-return.svg +1 -0
  8447. docsforge/themes/material/templates/.icons/material/phone-ring-outline.svg +1 -0
  8448. docsforge/themes/material/templates/.icons/material/phone-ring.svg +1 -0
  8449. docsforge/themes/material/templates/.icons/material/phone-rotate-landscape.svg +1 -0
  8450. docsforge/themes/material/templates/.icons/material/phone-rotate-portrait.svg +1 -0
  8451. docsforge/themes/material/templates/.icons/material/phone-settings-outline.svg +1 -0
  8452. docsforge/themes/material/templates/.icons/material/phone-settings.svg +1 -0
  8453. docsforge/themes/material/templates/.icons/material/phone-sync-outline.svg +1 -0
  8454. docsforge/themes/material/templates/.icons/material/phone-sync.svg +1 -0
  8455. docsforge/themes/material/templates/.icons/material/phone-voip.svg +1 -0
  8456. docsforge/themes/material/templates/.icons/material/phone.svg +1 -0
  8457. docsforge/themes/material/templates/.icons/material/pi-box.svg +1 -0
  8458. docsforge/themes/material/templates/.icons/material/pi-hole.svg +1 -0
  8459. docsforge/themes/material/templates/.icons/material/pi.svg +1 -0
  8460. docsforge/themes/material/templates/.icons/material/piano-off.svg +1 -0
  8461. docsforge/themes/material/templates/.icons/material/piano.svg +1 -0
  8462. docsforge/themes/material/templates/.icons/material/pickaxe.svg +1 -0
  8463. docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg +1 -0
  8464. docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right.svg +1 -0
  8465. docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right-outline.svg +1 -0
  8466. docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right.svg +1 -0
  8467. docsforge/themes/material/templates/.icons/material/pier-crane.svg +1 -0
  8468. docsforge/themes/material/templates/.icons/material/pier.svg +1 -0
  8469. docsforge/themes/material/templates/.icons/material/pig-variant-outline.svg +1 -0
  8470. docsforge/themes/material/templates/.icons/material/pig-variant.svg +1 -0
  8471. docsforge/themes/material/templates/.icons/material/pig.svg +1 -0
  8472. docsforge/themes/material/templates/.icons/material/piggy-bank-outline.svg +1 -0
  8473. docsforge/themes/material/templates/.icons/material/piggy-bank.svg +1 -0
  8474. docsforge/themes/material/templates/.icons/material/pill-multiple.svg +1 -0
  8475. docsforge/themes/material/templates/.icons/material/pill-off.svg +1 -0
  8476. docsforge/themes/material/templates/.icons/material/pill.svg +1 -0
  8477. docsforge/themes/material/templates/.icons/material/pillar.svg +1 -0
  8478. docsforge/themes/material/templates/.icons/material/pin-off-outline.svg +1 -0
  8479. docsforge/themes/material/templates/.icons/material/pin-off.svg +1 -0
  8480. docsforge/themes/material/templates/.icons/material/pin-outline.svg +1 -0
  8481. docsforge/themes/material/templates/.icons/material/pin.svg +1 -0
  8482. docsforge/themes/material/templates/.icons/material/pine-tree-box.svg +1 -0
  8483. docsforge/themes/material/templates/.icons/material/pine-tree-fire.svg +1 -0
  8484. docsforge/themes/material/templates/.icons/material/pine-tree-variant-outline.svg +1 -0
  8485. docsforge/themes/material/templates/.icons/material/pine-tree-variant.svg +1 -0
  8486. docsforge/themes/material/templates/.icons/material/pine-tree.svg +1 -0
  8487. docsforge/themes/material/templates/.icons/material/pinterest.svg +1 -0
  8488. docsforge/themes/material/templates/.icons/material/pinwheel-outline.svg +1 -0
  8489. docsforge/themes/material/templates/.icons/material/pinwheel.svg +1 -0
  8490. docsforge/themes/material/templates/.icons/material/pipe-disconnected.svg +1 -0
  8491. docsforge/themes/material/templates/.icons/material/pipe-leak.svg +1 -0
  8492. docsforge/themes/material/templates/.icons/material/pipe-valve.svg +1 -0
  8493. docsforge/themes/material/templates/.icons/material/pipe-wrench.svg +1 -0
  8494. docsforge/themes/material/templates/.icons/material/pipe.svg +1 -0
  8495. docsforge/themes/material/templates/.icons/material/pirate.svg +1 -0
  8496. docsforge/themes/material/templates/.icons/material/pistol.svg +1 -0
  8497. docsforge/themes/material/templates/.icons/material/piston.svg +1 -0
  8498. docsforge/themes/material/templates/.icons/material/pitchfork.svg +1 -0
  8499. docsforge/themes/material/templates/.icons/material/pizza.svg +1 -0
  8500. docsforge/themes/material/templates/.icons/material/plane-car.svg +1 -0
  8501. docsforge/themes/material/templates/.icons/material/plane-train.svg +1 -0
  8502. docsforge/themes/material/templates/.icons/material/play-box-edit-outline.svg +1 -0
  8503. docsforge/themes/material/templates/.icons/material/play-box-lock-open-outline.svg +1 -0
  8504. docsforge/themes/material/templates/.icons/material/play-box-lock-open.svg +1 -0
  8505. docsforge/themes/material/templates/.icons/material/play-box-lock-outline.svg +1 -0
  8506. docsforge/themes/material/templates/.icons/material/play-box-lock.svg +1 -0
  8507. docsforge/themes/material/templates/.icons/material/play-box-multiple-outline.svg +1 -0
  8508. docsforge/themes/material/templates/.icons/material/play-box-multiple.svg +1 -0
  8509. docsforge/themes/material/templates/.icons/material/play-box-outline.svg +1 -0
  8510. docsforge/themes/material/templates/.icons/material/play-box.svg +1 -0
  8511. docsforge/themes/material/templates/.icons/material/play-circle-outline.svg +1 -0
  8512. docsforge/themes/material/templates/.icons/material/play-circle.svg +1 -0
  8513. docsforge/themes/material/templates/.icons/material/play-network-outline.svg +1 -0
  8514. docsforge/themes/material/templates/.icons/material/play-network.svg +1 -0
  8515. docsforge/themes/material/templates/.icons/material/play-outline.svg +1 -0
  8516. docsforge/themes/material/templates/.icons/material/play-pause.svg +1 -0
  8517. docsforge/themes/material/templates/.icons/material/play-protected-content.svg +1 -0
  8518. docsforge/themes/material/templates/.icons/material/play-speed.svg +1 -0
  8519. docsforge/themes/material/templates/.icons/material/play.svg +1 -0
  8520. docsforge/themes/material/templates/.icons/material/playlist-check.svg +1 -0
  8521. docsforge/themes/material/templates/.icons/material/playlist-edit.svg +1 -0
  8522. docsforge/themes/material/templates/.icons/material/playlist-minus.svg +1 -0
  8523. docsforge/themes/material/templates/.icons/material/playlist-music-outline.svg +1 -0
  8524. docsforge/themes/material/templates/.icons/material/playlist-music.svg +1 -0
  8525. docsforge/themes/material/templates/.icons/material/playlist-play.svg +1 -0
  8526. docsforge/themes/material/templates/.icons/material/playlist-plus.svg +1 -0
  8527. docsforge/themes/material/templates/.icons/material/playlist-remove.svg +1 -0
  8528. docsforge/themes/material/templates/.icons/material/playlist-star.svg +1 -0
  8529. docsforge/themes/material/templates/.icons/material/plex.svg +1 -0
  8530. docsforge/themes/material/templates/.icons/material/pliers.svg +1 -0
  8531. docsforge/themes/material/templates/.icons/material/plus-box-multiple-outline.svg +1 -0
  8532. docsforge/themes/material/templates/.icons/material/plus-box-multiple.svg +1 -0
  8533. docsforge/themes/material/templates/.icons/material/plus-box-outline.svg +1 -0
  8534. docsforge/themes/material/templates/.icons/material/plus-box.svg +1 -0
  8535. docsforge/themes/material/templates/.icons/material/plus-circle-multiple-outline.svg +1 -0
  8536. docsforge/themes/material/templates/.icons/material/plus-circle-multiple.svg +1 -0
  8537. docsforge/themes/material/templates/.icons/material/plus-circle-outline.svg +1 -0
  8538. docsforge/themes/material/templates/.icons/material/plus-circle.svg +1 -0
  8539. docsforge/themes/material/templates/.icons/material/plus-lock-open.svg +1 -0
  8540. docsforge/themes/material/templates/.icons/material/plus-lock.svg +1 -0
  8541. docsforge/themes/material/templates/.icons/material/plus-minus-box.svg +1 -0
  8542. docsforge/themes/material/templates/.icons/material/plus-minus-variant.svg +1 -0
  8543. docsforge/themes/material/templates/.icons/material/plus-minus.svg +1 -0
  8544. docsforge/themes/material/templates/.icons/material/plus-network-outline.svg +1 -0
  8545. docsforge/themes/material/templates/.icons/material/plus-network.svg +1 -0
  8546. docsforge/themes/material/templates/.icons/material/plus-outline.svg +1 -0
  8547. docsforge/themes/material/templates/.icons/material/plus-thick.svg +1 -0
  8548. docsforge/themes/material/templates/.icons/material/plus.svg +1 -0
  8549. docsforge/themes/material/templates/.icons/material/pocket.svg +1 -0
  8550. docsforge/themes/material/templates/.icons/material/podcast.svg +1 -0
  8551. docsforge/themes/material/templates/.icons/material/podium-bronze.svg +1 -0
  8552. docsforge/themes/material/templates/.icons/material/podium-gold.svg +1 -0
  8553. docsforge/themes/material/templates/.icons/material/podium-silver.svg +1 -0
  8554. docsforge/themes/material/templates/.icons/material/podium.svg +1 -0
  8555. docsforge/themes/material/templates/.icons/material/point-of-sale.svg +1 -0
  8556. docsforge/themes/material/templates/.icons/material/pokeball.svg +1 -0
  8557. docsforge/themes/material/templates/.icons/material/pokemon-go.svg +1 -0
  8558. docsforge/themes/material/templates/.icons/material/poker-chip.svg +1 -0
  8559. docsforge/themes/material/templates/.icons/material/polaroid.svg +1 -0
  8560. docsforge/themes/material/templates/.icons/material/police-badge-outline.svg +1 -0
  8561. docsforge/themes/material/templates/.icons/material/police-badge.svg +1 -0
  8562. docsforge/themes/material/templates/.icons/material/police-station.svg +1 -0
  8563. docsforge/themes/material/templates/.icons/material/poll.svg +1 -0
  8564. docsforge/themes/material/templates/.icons/material/polo.svg +1 -0
  8565. docsforge/themes/material/templates/.icons/material/polymer.svg +1 -0
  8566. docsforge/themes/material/templates/.icons/material/pool-thermometer.svg +1 -0
  8567. docsforge/themes/material/templates/.icons/material/pool.svg +1 -0
  8568. docsforge/themes/material/templates/.icons/material/popcorn.svg +1 -0
  8569. docsforge/themes/material/templates/.icons/material/post-lamp.svg +1 -0
  8570. docsforge/themes/material/templates/.icons/material/post-outline.svg +1 -0
  8571. docsforge/themes/material/templates/.icons/material/post.svg +1 -0
  8572. docsforge/themes/material/templates/.icons/material/postage-stamp.svg +1 -0
  8573. docsforge/themes/material/templates/.icons/material/pot-mix-outline.svg +1 -0
  8574. docsforge/themes/material/templates/.icons/material/pot-mix.svg +1 -0
  8575. docsforge/themes/material/templates/.icons/material/pot-outline.svg +1 -0
  8576. docsforge/themes/material/templates/.icons/material/pot-steam-outline.svg +1 -0
  8577. docsforge/themes/material/templates/.icons/material/pot-steam.svg +1 -0
  8578. docsforge/themes/material/templates/.icons/material/pot.svg +1 -0
  8579. docsforge/themes/material/templates/.icons/material/pound-box-outline.svg +1 -0
  8580. docsforge/themes/material/templates/.icons/material/pound-box.svg +1 -0
  8581. docsforge/themes/material/templates/.icons/material/pound.svg +1 -0
  8582. docsforge/themes/material/templates/.icons/material/power-cycle.svg +1 -0
  8583. docsforge/themes/material/templates/.icons/material/power-off.svg +1 -0
  8584. docsforge/themes/material/templates/.icons/material/power-on.svg +1 -0
  8585. docsforge/themes/material/templates/.icons/material/power-plug-battery-outline.svg +1 -0
  8586. docsforge/themes/material/templates/.icons/material/power-plug-battery.svg +1 -0
  8587. docsforge/themes/material/templates/.icons/material/power-plug-off-outline.svg +1 -0
  8588. docsforge/themes/material/templates/.icons/material/power-plug-off.svg +1 -0
  8589. docsforge/themes/material/templates/.icons/material/power-plug-outline.svg +1 -0
  8590. docsforge/themes/material/templates/.icons/material/power-plug.svg +1 -0
  8591. docsforge/themes/material/templates/.icons/material/power-settings.svg +1 -0
  8592. docsforge/themes/material/templates/.icons/material/power-sleep.svg +1 -0
  8593. docsforge/themes/material/templates/.icons/material/power-socket-au.svg +1 -0
  8594. docsforge/themes/material/templates/.icons/material/power-socket-ch.svg +1 -0
  8595. docsforge/themes/material/templates/.icons/material/power-socket-de.svg +1 -0
  8596. docsforge/themes/material/templates/.icons/material/power-socket-eu.svg +1 -0
  8597. docsforge/themes/material/templates/.icons/material/power-socket-fr.svg +1 -0
  8598. docsforge/themes/material/templates/.icons/material/power-socket-it.svg +1 -0
  8599. docsforge/themes/material/templates/.icons/material/power-socket-jp.svg +1 -0
  8600. docsforge/themes/material/templates/.icons/material/power-socket-uk.svg +1 -0
  8601. docsforge/themes/material/templates/.icons/material/power-socket-us.svg +1 -0
  8602. docsforge/themes/material/templates/.icons/material/power-socket.svg +1 -0
  8603. docsforge/themes/material/templates/.icons/material/power-standby.svg +1 -0
  8604. docsforge/themes/material/templates/.icons/material/power.svg +1 -0
  8605. docsforge/themes/material/templates/.icons/material/powershell.svg +1 -0
  8606. docsforge/themes/material/templates/.icons/material/prescription.svg +1 -0
  8607. docsforge/themes/material/templates/.icons/material/presentation-play.svg +1 -0
  8608. docsforge/themes/material/templates/.icons/material/presentation.svg +1 -0
  8609. docsforge/themes/material/templates/.icons/material/pretzel.svg +1 -0
  8610. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg +1 -0
  8611. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert.svg +1 -0
  8612. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg +1 -0
  8613. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat.svg +1 -0
  8614. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg +1 -0
  8615. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off.svg +1 -0
  8616. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-outline.svg +1 -0
  8617. docsforge/themes/material/templates/.icons/material/printer-3d-nozzle.svg +1 -0
  8618. docsforge/themes/material/templates/.icons/material/printer-3d-off.svg +1 -0
  8619. docsforge/themes/material/templates/.icons/material/printer-3d.svg +1 -0
  8620. docsforge/themes/material/templates/.icons/material/printer-alert.svg +1 -0
  8621. docsforge/themes/material/templates/.icons/material/printer-check.svg +1 -0
  8622. docsforge/themes/material/templates/.icons/material/printer-eye.svg +1 -0
  8623. docsforge/themes/material/templates/.icons/material/printer-off-outline.svg +1 -0
  8624. docsforge/themes/material/templates/.icons/material/printer-off.svg +1 -0
  8625. docsforge/themes/material/templates/.icons/material/printer-outline.svg +1 -0
  8626. docsforge/themes/material/templates/.icons/material/printer-pos-alert-outline.svg +1 -0
  8627. docsforge/themes/material/templates/.icons/material/printer-pos-alert.svg +1 -0
  8628. docsforge/themes/material/templates/.icons/material/printer-pos-cancel-outline.svg +1 -0
  8629. docsforge/themes/material/templates/.icons/material/printer-pos-cancel.svg +1 -0
  8630. docsforge/themes/material/templates/.icons/material/printer-pos-check-outline.svg +1 -0
  8631. docsforge/themes/material/templates/.icons/material/printer-pos-check.svg +1 -0
  8632. docsforge/themes/material/templates/.icons/material/printer-pos-cog-outline.svg +1 -0
  8633. docsforge/themes/material/templates/.icons/material/printer-pos-cog.svg +1 -0
  8634. docsforge/themes/material/templates/.icons/material/printer-pos-edit-outline.svg +1 -0
  8635. docsforge/themes/material/templates/.icons/material/printer-pos-edit.svg +1 -0
  8636. docsforge/themes/material/templates/.icons/material/printer-pos-minus-outline.svg +1 -0
  8637. docsforge/themes/material/templates/.icons/material/printer-pos-minus.svg +1 -0
  8638. docsforge/themes/material/templates/.icons/material/printer-pos-network-outline.svg +1 -0
  8639. docsforge/themes/material/templates/.icons/material/printer-pos-network.svg +1 -0
  8640. docsforge/themes/material/templates/.icons/material/printer-pos-off-outline.svg +1 -0
  8641. docsforge/themes/material/templates/.icons/material/printer-pos-off.svg +1 -0
  8642. docsforge/themes/material/templates/.icons/material/printer-pos-outline.svg +1 -0
  8643. docsforge/themes/material/templates/.icons/material/printer-pos-pause-outline.svg +1 -0
  8644. docsforge/themes/material/templates/.icons/material/printer-pos-pause.svg +1 -0
  8645. docsforge/themes/material/templates/.icons/material/printer-pos-play-outline.svg +1 -0
  8646. docsforge/themes/material/templates/.icons/material/printer-pos-play.svg +1 -0
  8647. docsforge/themes/material/templates/.icons/material/printer-pos-plus-outline.svg +1 -0
  8648. docsforge/themes/material/templates/.icons/material/printer-pos-plus.svg +1 -0
  8649. docsforge/themes/material/templates/.icons/material/printer-pos-refresh-outline.svg +1 -0
  8650. docsforge/themes/material/templates/.icons/material/printer-pos-refresh.svg +1 -0
  8651. docsforge/themes/material/templates/.icons/material/printer-pos-remove-outline.svg +1 -0
  8652. docsforge/themes/material/templates/.icons/material/printer-pos-remove.svg +1 -0
  8653. docsforge/themes/material/templates/.icons/material/printer-pos-star-outline.svg +1 -0
  8654. docsforge/themes/material/templates/.icons/material/printer-pos-star.svg +1 -0
  8655. docsforge/themes/material/templates/.icons/material/printer-pos-stop-outline.svg +1 -0
  8656. docsforge/themes/material/templates/.icons/material/printer-pos-stop.svg +1 -0
  8657. docsforge/themes/material/templates/.icons/material/printer-pos-sync-outline.svg +1 -0
  8658. docsforge/themes/material/templates/.icons/material/printer-pos-sync.svg +1 -0
  8659. docsforge/themes/material/templates/.icons/material/printer-pos-wrench-outline.svg +1 -0
  8660. docsforge/themes/material/templates/.icons/material/printer-pos-wrench.svg +1 -0
  8661. docsforge/themes/material/templates/.icons/material/printer-pos.svg +1 -0
  8662. docsforge/themes/material/templates/.icons/material/printer-search.svg +1 -0
  8663. docsforge/themes/material/templates/.icons/material/printer-settings.svg +1 -0
  8664. docsforge/themes/material/templates/.icons/material/printer-wireless.svg +1 -0
  8665. docsforge/themes/material/templates/.icons/material/printer.svg +1 -0
  8666. docsforge/themes/material/templates/.icons/material/priority-high.svg +1 -0
  8667. docsforge/themes/material/templates/.icons/material/priority-low.svg +1 -0
  8668. docsforge/themes/material/templates/.icons/material/professional-hexagon.svg +1 -0
  8669. docsforge/themes/material/templates/.icons/material/progress-alert.svg +1 -0
  8670. docsforge/themes/material/templates/.icons/material/progress-check.svg +1 -0
  8671. docsforge/themes/material/templates/.icons/material/progress-clock.svg +1 -0
  8672. docsforge/themes/material/templates/.icons/material/progress-close.svg +1 -0
  8673. docsforge/themes/material/templates/.icons/material/progress-download.svg +1 -0
  8674. docsforge/themes/material/templates/.icons/material/progress-helper.svg +1 -0
  8675. docsforge/themes/material/templates/.icons/material/progress-pencil.svg +1 -0
  8676. docsforge/themes/material/templates/.icons/material/progress-question.svg +1 -0
  8677. docsforge/themes/material/templates/.icons/material/progress-star-four-points.svg +1 -0
  8678. docsforge/themes/material/templates/.icons/material/progress-star.svg +1 -0
  8679. docsforge/themes/material/templates/.icons/material/progress-tag.svg +1 -0
  8680. docsforge/themes/material/templates/.icons/material/progress-upload.svg +1 -0
  8681. docsforge/themes/material/templates/.icons/material/progress-wrench.svg +1 -0
  8682. docsforge/themes/material/templates/.icons/material/projector-off.svg +1 -0
  8683. docsforge/themes/material/templates/.icons/material/projector-screen-off-outline.svg +1 -0
  8684. docsforge/themes/material/templates/.icons/material/projector-screen-off.svg +1 -0
  8685. docsforge/themes/material/templates/.icons/material/projector-screen-outline.svg +1 -0
  8686. docsforge/themes/material/templates/.icons/material/projector-screen-variant-off-outline.svg +1 -0
  8687. docsforge/themes/material/templates/.icons/material/projector-screen-variant-off.svg +1 -0
  8688. docsforge/themes/material/templates/.icons/material/projector-screen-variant-outline.svg +1 -0
  8689. docsforge/themes/material/templates/.icons/material/projector-screen-variant.svg +1 -0
  8690. docsforge/themes/material/templates/.icons/material/projector-screen.svg +1 -0
  8691. docsforge/themes/material/templates/.icons/material/projector.svg +1 -0
  8692. docsforge/themes/material/templates/.icons/material/propane-tank-outline.svg +1 -0
  8693. docsforge/themes/material/templates/.icons/material/propane-tank.svg +1 -0
  8694. docsforge/themes/material/templates/.icons/material/protocol.svg +1 -0
  8695. docsforge/themes/material/templates/.icons/material/publish-off.svg +1 -0
  8696. docsforge/themes/material/templates/.icons/material/publish.svg +1 -0
  8697. docsforge/themes/material/templates/.icons/material/pulse.svg +1 -0
  8698. docsforge/themes/material/templates/.icons/material/pump-off.svg +1 -0
  8699. docsforge/themes/material/templates/.icons/material/pump.svg +1 -0
  8700. docsforge/themes/material/templates/.icons/material/pumpkin.svg +1 -0
  8701. docsforge/themes/material/templates/.icons/material/purse-outline.svg +1 -0
  8702. docsforge/themes/material/templates/.icons/material/purse.svg +1 -0
  8703. docsforge/themes/material/templates/.icons/material/puzzle-check-outline.svg +1 -0
  8704. docsforge/themes/material/templates/.icons/material/puzzle-check.svg +1 -0
  8705. docsforge/themes/material/templates/.icons/material/puzzle-edit-outline.svg +1 -0
  8706. docsforge/themes/material/templates/.icons/material/puzzle-edit.svg +1 -0
  8707. docsforge/themes/material/templates/.icons/material/puzzle-heart-outline.svg +1 -0
  8708. docsforge/themes/material/templates/.icons/material/puzzle-heart.svg +1 -0
  8709. docsforge/themes/material/templates/.icons/material/puzzle-minus-outline.svg +1 -0
  8710. docsforge/themes/material/templates/.icons/material/puzzle-minus.svg +1 -0
  8711. docsforge/themes/material/templates/.icons/material/puzzle-outline.svg +1 -0
  8712. docsforge/themes/material/templates/.icons/material/puzzle-plus-outline.svg +1 -0
  8713. docsforge/themes/material/templates/.icons/material/puzzle-plus.svg +1 -0
  8714. docsforge/themes/material/templates/.icons/material/puzzle-remove-outline.svg +1 -0
  8715. docsforge/themes/material/templates/.icons/material/puzzle-remove.svg +1 -0
  8716. docsforge/themes/material/templates/.icons/material/puzzle-star-outline.svg +1 -0
  8717. docsforge/themes/material/templates/.icons/material/puzzle-star.svg +1 -0
  8718. docsforge/themes/material/templates/.icons/material/puzzle.svg +1 -0
  8719. docsforge/themes/material/templates/.icons/material/pyramid-off.svg +1 -0
  8720. docsforge/themes/material/templates/.icons/material/pyramid.svg +1 -0
  8721. docsforge/themes/material/templates/.icons/material/qi.svg +1 -0
  8722. docsforge/themes/material/templates/.icons/material/qqchat.svg +1 -0
  8723. docsforge/themes/material/templates/.icons/material/qrcode-edit.svg +1 -0
  8724. docsforge/themes/material/templates/.icons/material/qrcode-minus.svg +1 -0
  8725. docsforge/themes/material/templates/.icons/material/qrcode-plus.svg +1 -0
  8726. docsforge/themes/material/templates/.icons/material/qrcode-remove.svg +1 -0
  8727. docsforge/themes/material/templates/.icons/material/qrcode-scan.svg +1 -0
  8728. docsforge/themes/material/templates/.icons/material/qrcode.svg +1 -0
  8729. docsforge/themes/material/templates/.icons/material/quadcopter.svg +1 -0
  8730. docsforge/themes/material/templates/.icons/material/quality-high.svg +1 -0
  8731. docsforge/themes/material/templates/.icons/material/quality-low.svg +1 -0
  8732. docsforge/themes/material/templates/.icons/material/quality-medium.svg +1 -0
  8733. docsforge/themes/material/templates/.icons/material/queue-first-in-last-out.svg +1 -0
  8734. docsforge/themes/material/templates/.icons/material/quora.svg +1 -0
  8735. docsforge/themes/material/templates/.icons/material/rabbit-variant-outline.svg +1 -0
  8736. docsforge/themes/material/templates/.icons/material/rabbit-variant.svg +1 -0
  8737. docsforge/themes/material/templates/.icons/material/rabbit.svg +1 -0
  8738. docsforge/themes/material/templates/.icons/material/racing-helmet.svg +1 -0
  8739. docsforge/themes/material/templates/.icons/material/racquetball.svg +1 -0
  8740. docsforge/themes/material/templates/.icons/material/radar.svg +1 -0
  8741. docsforge/themes/material/templates/.icons/material/radiator-disabled.svg +1 -0
  8742. docsforge/themes/material/templates/.icons/material/radiator-off.svg +1 -0
  8743. docsforge/themes/material/templates/.icons/material/radiator.svg +1 -0
  8744. docsforge/themes/material/templates/.icons/material/radio-am.svg +1 -0
  8745. docsforge/themes/material/templates/.icons/material/radio-fm.svg +1 -0
  8746. docsforge/themes/material/templates/.icons/material/radio-handheld.svg +1 -0
  8747. docsforge/themes/material/templates/.icons/material/radio-off.svg +1 -0
  8748. docsforge/themes/material/templates/.icons/material/radio-tower.svg +1 -0
  8749. docsforge/themes/material/templates/.icons/material/radio.svg +1 -0
  8750. docsforge/themes/material/templates/.icons/material/radioactive-circle-outline.svg +1 -0
  8751. docsforge/themes/material/templates/.icons/material/radioactive-circle.svg +1 -0
  8752. docsforge/themes/material/templates/.icons/material/radioactive-off.svg +1 -0
  8753. docsforge/themes/material/templates/.icons/material/radioactive.svg +1 -0
  8754. docsforge/themes/material/templates/.icons/material/radiobox-blank.svg +1 -0
  8755. docsforge/themes/material/templates/.icons/material/radiobox-indeterminate-variant.svg +1 -0
  8756. docsforge/themes/material/templates/.icons/material/radiobox-marked.svg +1 -0
  8757. docsforge/themes/material/templates/.icons/material/radiology-box-outline.svg +1 -0
  8758. docsforge/themes/material/templates/.icons/material/radiology-box.svg +1 -0
  8759. docsforge/themes/material/templates/.icons/material/radius-outline.svg +1 -0
  8760. docsforge/themes/material/templates/.icons/material/radius.svg +1 -0
  8761. docsforge/themes/material/templates/.icons/material/railroad-light.svg +1 -0
  8762. docsforge/themes/material/templates/.icons/material/rake.svg +1 -0
  8763. docsforge/themes/material/templates/.icons/material/raspberry-pi.svg +1 -0
  8764. docsforge/themes/material/templates/.icons/material/raw-off.svg +1 -0
  8765. docsforge/themes/material/templates/.icons/material/raw.svg +1 -0
  8766. docsforge/themes/material/templates/.icons/material/ray-end-arrow.svg +1 -0
  8767. docsforge/themes/material/templates/.icons/material/ray-end.svg +1 -0
  8768. docsforge/themes/material/templates/.icons/material/ray-start-arrow.svg +1 -0
  8769. docsforge/themes/material/templates/.icons/material/ray-start-end.svg +1 -0
  8770. docsforge/themes/material/templates/.icons/material/ray-start-vertex-end.svg +1 -0
  8771. docsforge/themes/material/templates/.icons/material/ray-start.svg +1 -0
  8772. docsforge/themes/material/templates/.icons/material/ray-vertex.svg +1 -0
  8773. docsforge/themes/material/templates/.icons/material/razor-double-edge.svg +1 -0
  8774. docsforge/themes/material/templates/.icons/material/razor-single-edge.svg +1 -0
  8775. docsforge/themes/material/templates/.icons/material/react.svg +1 -0
  8776. docsforge/themes/material/templates/.icons/material/read.svg +1 -0
  8777. docsforge/themes/material/templates/.icons/material/receipt-clock-outline.svg +1 -0
  8778. docsforge/themes/material/templates/.icons/material/receipt-clock.svg +1 -0
  8779. docsforge/themes/material/templates/.icons/material/receipt-outline.svg +1 -0
  8780. docsforge/themes/material/templates/.icons/material/receipt-send-outline.svg +1 -0
  8781. docsforge/themes/material/templates/.icons/material/receipt-send.svg +1 -0
  8782. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left-outline.svg +1 -0
  8783. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left.svg +1 -0
  8784. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right-outline.svg +1 -0
  8785. docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right.svg +1 -0
  8786. docsforge/themes/material/templates/.icons/material/receipt-text-check-outline.svg +1 -0
  8787. docsforge/themes/material/templates/.icons/material/receipt-text-check.svg +1 -0
  8788. docsforge/themes/material/templates/.icons/material/receipt-text-clock-outline.svg +1 -0
  8789. docsforge/themes/material/templates/.icons/material/receipt-text-clock.svg +1 -0
  8790. docsforge/themes/material/templates/.icons/material/receipt-text-edit-outline.svg +1 -0
  8791. docsforge/themes/material/templates/.icons/material/receipt-text-edit.svg +1 -0
  8792. docsforge/themes/material/templates/.icons/material/receipt-text-minus-outline.svg +1 -0
  8793. docsforge/themes/material/templates/.icons/material/receipt-text-minus.svg +1 -0
  8794. docsforge/themes/material/templates/.icons/material/receipt-text-outline.svg +1 -0
  8795. docsforge/themes/material/templates/.icons/material/receipt-text-plus-outline.svg +1 -0
  8796. docsforge/themes/material/templates/.icons/material/receipt-text-plus.svg +1 -0
  8797. docsforge/themes/material/templates/.icons/material/receipt-text-remove-outline.svg +1 -0
  8798. docsforge/themes/material/templates/.icons/material/receipt-text-remove.svg +1 -0
  8799. docsforge/themes/material/templates/.icons/material/receipt-text-send-outline.svg +1 -0
  8800. docsforge/themes/material/templates/.icons/material/receipt-text-send.svg +1 -0
  8801. docsforge/themes/material/templates/.icons/material/receipt-text.svg +1 -0
  8802. docsforge/themes/material/templates/.icons/material/receipt.svg +1 -0
  8803. docsforge/themes/material/templates/.icons/material/record-circle-outline.svg +1 -0
  8804. docsforge/themes/material/templates/.icons/material/record-circle.svg +1 -0
  8805. docsforge/themes/material/templates/.icons/material/record-player.svg +1 -0
  8806. docsforge/themes/material/templates/.icons/material/record-rec.svg +1 -0
  8807. docsforge/themes/material/templates/.icons/material/record.svg +1 -0
  8808. docsforge/themes/material/templates/.icons/material/rectangle-outline.svg +1 -0
  8809. docsforge/themes/material/templates/.icons/material/rectangle.svg +1 -0
  8810. docsforge/themes/material/templates/.icons/material/recycle-variant.svg +1 -0
  8811. docsforge/themes/material/templates/.icons/material/recycle.svg +1 -0
  8812. docsforge/themes/material/templates/.icons/material/reddit.svg +1 -0
  8813. docsforge/themes/material/templates/.icons/material/redhat.svg +1 -0
  8814. docsforge/themes/material/templates/.icons/material/redo-variant.svg +1 -0
  8815. docsforge/themes/material/templates/.icons/material/redo.svg +1 -0
  8816. docsforge/themes/material/templates/.icons/material/reflect-horizontal.svg +1 -0
  8817. docsforge/themes/material/templates/.icons/material/reflect-vertical.svg +1 -0
  8818. docsforge/themes/material/templates/.icons/material/refresh-auto.svg +1 -0
  8819. docsforge/themes/material/templates/.icons/material/refresh-circle.svg +1 -0
  8820. docsforge/themes/material/templates/.icons/material/refresh.svg +1 -0
  8821. docsforge/themes/material/templates/.icons/material/regex.svg +1 -0
  8822. docsforge/themes/material/templates/.icons/material/registered-trademark.svg +1 -0
  8823. docsforge/themes/material/templates/.icons/material/reiterate.svg +1 -0
  8824. docsforge/themes/material/templates/.icons/material/relation-many-to-many.svg +1 -0
  8825. docsforge/themes/material/templates/.icons/material/relation-many-to-one-or-many.svg +1 -0
  8826. docsforge/themes/material/templates/.icons/material/relation-many-to-one.svg +1 -0
  8827. docsforge/themes/material/templates/.icons/material/relation-many-to-only-one.svg +1 -0
  8828. docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-many.svg +1 -0
  8829. docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-one.svg +1 -0
  8830. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-many.svg +1 -0
  8831. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg +1 -0
  8832. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one.svg +1 -0
  8833. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-only-one.svg +1 -0
  8834. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg +1 -0
  8835. docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg +1 -0
  8836. docsforge/themes/material/templates/.icons/material/relation-one-to-many.svg +1 -0
  8837. docsforge/themes/material/templates/.icons/material/relation-one-to-one-or-many.svg +1 -0
  8838. docsforge/themes/material/templates/.icons/material/relation-one-to-one.svg +1 -0
  8839. docsforge/themes/material/templates/.icons/material/relation-one-to-only-one.svg +1 -0
  8840. docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-many.svg +1 -0
  8841. docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-one.svg +1 -0
  8842. docsforge/themes/material/templates/.icons/material/relation-only-one-to-many.svg +1 -0
  8843. docsforge/themes/material/templates/.icons/material/relation-only-one-to-one-or-many.svg +1 -0
  8844. docsforge/themes/material/templates/.icons/material/relation-only-one-to-one.svg +1 -0
  8845. docsforge/themes/material/templates/.icons/material/relation-only-one-to-only-one.svg +1 -0
  8846. docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg +1 -0
  8847. docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg +1 -0
  8848. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-many.svg +1 -0
  8849. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg +1 -0
  8850. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one.svg +1 -0
  8851. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg +1 -0
  8852. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg +1 -0
  8853. docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg +1 -0
  8854. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-many.svg +1 -0
  8855. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg +1 -0
  8856. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one.svg +1 -0
  8857. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg +1 -0
  8858. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg +1 -0
  8859. docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg +1 -0
  8860. docsforge/themes/material/templates/.icons/material/relative-scale.svg +1 -0
  8861. docsforge/themes/material/templates/.icons/material/reload-alert.svg +1 -0
  8862. docsforge/themes/material/templates/.icons/material/reload.svg +1 -0
  8863. docsforge/themes/material/templates/.icons/material/reminder.svg +1 -0
  8864. docsforge/themes/material/templates/.icons/material/remote-desktop.svg +1 -0
  8865. docsforge/themes/material/templates/.icons/material/remote-off.svg +1 -0
  8866. docsforge/themes/material/templates/.icons/material/remote-tv-off.svg +1 -0
  8867. docsforge/themes/material/templates/.icons/material/remote-tv.svg +1 -0
  8868. docsforge/themes/material/templates/.icons/material/remote.svg +1 -0
  8869. docsforge/themes/material/templates/.icons/material/rename-box-outline.svg +1 -0
  8870. docsforge/themes/material/templates/.icons/material/rename-box.svg +1 -0
  8871. docsforge/themes/material/templates/.icons/material/rename-outline.svg +1 -0
  8872. docsforge/themes/material/templates/.icons/material/rename.svg +1 -0
  8873. docsforge/themes/material/templates/.icons/material/reorder-horizontal.svg +1 -0
  8874. docsforge/themes/material/templates/.icons/material/reorder-vertical.svg +1 -0
  8875. docsforge/themes/material/templates/.icons/material/repeat-off.svg +1 -0
  8876. docsforge/themes/material/templates/.icons/material/repeat-once.svg +1 -0
  8877. docsforge/themes/material/templates/.icons/material/repeat-variant.svg +1 -0
  8878. docsforge/themes/material/templates/.icons/material/repeat.svg +1 -0
  8879. docsforge/themes/material/templates/.icons/material/replay.svg +1 -0
  8880. docsforge/themes/material/templates/.icons/material/reply-all-outline.svg +1 -0
  8881. docsforge/themes/material/templates/.icons/material/reply-all.svg +1 -0
  8882. docsforge/themes/material/templates/.icons/material/reply-circle.svg +1 -0
  8883. docsforge/themes/material/templates/.icons/material/reply-outline.svg +1 -0
  8884. docsforge/themes/material/templates/.icons/material/reply.svg +1 -0
  8885. docsforge/themes/material/templates/.icons/material/reproduction.svg +1 -0
  8886. docsforge/themes/material/templates/.icons/material/resistor-nodes.svg +1 -0
  8887. docsforge/themes/material/templates/.icons/material/resistor.svg +1 -0
  8888. docsforge/themes/material/templates/.icons/material/resize-bottom-right.svg +1 -0
  8889. docsforge/themes/material/templates/.icons/material/resize.svg +1 -0
  8890. docsforge/themes/material/templates/.icons/material/responsive.svg +1 -0
  8891. docsforge/themes/material/templates/.icons/material/restart-alert.svg +1 -0
  8892. docsforge/themes/material/templates/.icons/material/restart-off.svg +1 -0
  8893. docsforge/themes/material/templates/.icons/material/restart.svg +1 -0
  8894. docsforge/themes/material/templates/.icons/material/restore-alert.svg +1 -0
  8895. docsforge/themes/material/templates/.icons/material/restore.svg +1 -0
  8896. docsforge/themes/material/templates/.icons/material/rewind-10.svg +1 -0
  8897. docsforge/themes/material/templates/.icons/material/rewind-15.svg +1 -0
  8898. docsforge/themes/material/templates/.icons/material/rewind-30.svg +1 -0
  8899. docsforge/themes/material/templates/.icons/material/rewind-45.svg +1 -0
  8900. docsforge/themes/material/templates/.icons/material/rewind-5.svg +1 -0
  8901. docsforge/themes/material/templates/.icons/material/rewind-60.svg +1 -0
  8902. docsforge/themes/material/templates/.icons/material/rewind-outline.svg +1 -0
  8903. docsforge/themes/material/templates/.icons/material/rewind.svg +1 -0
  8904. docsforge/themes/material/templates/.icons/material/rhombus-medium-outline.svg +1 -0
  8905. docsforge/themes/material/templates/.icons/material/rhombus-medium.svg +1 -0
  8906. docsforge/themes/material/templates/.icons/material/rhombus-outline.svg +1 -0
  8907. docsforge/themes/material/templates/.icons/material/rhombus-split-outline.svg +1 -0
  8908. docsforge/themes/material/templates/.icons/material/rhombus-split.svg +1 -0
  8909. docsforge/themes/material/templates/.icons/material/rhombus.svg +1 -0
  8910. docsforge/themes/material/templates/.icons/material/ribbon.svg +1 -0
  8911. docsforge/themes/material/templates/.icons/material/rice.svg +1 -0
  8912. docsforge/themes/material/templates/.icons/material/rickshaw-electric.svg +1 -0
  8913. docsforge/themes/material/templates/.icons/material/rickshaw.svg +1 -0
  8914. docsforge/themes/material/templates/.icons/material/ring.svg +1 -0
  8915. docsforge/themes/material/templates/.icons/material/rivet.svg +1 -0
  8916. docsforge/themes/material/templates/.icons/material/road-variant.svg +1 -0
  8917. docsforge/themes/material/templates/.icons/material/road.svg +1 -0
  8918. docsforge/themes/material/templates/.icons/material/robber.svg +1 -0
  8919. docsforge/themes/material/templates/.icons/material/robot-angry-outline.svg +1 -0
  8920. docsforge/themes/material/templates/.icons/material/robot-angry.svg +1 -0
  8921. docsforge/themes/material/templates/.icons/material/robot-confused-outline.svg +1 -0
  8922. docsforge/themes/material/templates/.icons/material/robot-confused.svg +1 -0
  8923. docsforge/themes/material/templates/.icons/material/robot-dead-outline.svg +1 -0
  8924. docsforge/themes/material/templates/.icons/material/robot-dead.svg +1 -0
  8925. docsforge/themes/material/templates/.icons/material/robot-excited-outline.svg +1 -0
  8926. docsforge/themes/material/templates/.icons/material/robot-excited.svg +1 -0
  8927. docsforge/themes/material/templates/.icons/material/robot-happy-outline.svg +1 -0
  8928. docsforge/themes/material/templates/.icons/material/robot-happy.svg +1 -0
  8929. docsforge/themes/material/templates/.icons/material/robot-industrial-outline.svg +1 -0
  8930. docsforge/themes/material/templates/.icons/material/robot-industrial.svg +1 -0
  8931. docsforge/themes/material/templates/.icons/material/robot-love-outline.svg +1 -0
  8932. docsforge/themes/material/templates/.icons/material/robot-love.svg +1 -0
  8933. docsforge/themes/material/templates/.icons/material/robot-mower-outline.svg +1 -0
  8934. docsforge/themes/material/templates/.icons/material/robot-mower.svg +1 -0
  8935. docsforge/themes/material/templates/.icons/material/robot-off-outline.svg +1 -0
  8936. docsforge/themes/material/templates/.icons/material/robot-off.svg +1 -0
  8937. docsforge/themes/material/templates/.icons/material/robot-outline.svg +1 -0
  8938. docsforge/themes/material/templates/.icons/material/robot-vacuum-alert.svg +1 -0
  8939. docsforge/themes/material/templates/.icons/material/robot-vacuum-off.svg +1 -0
  8940. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-alert.svg +1 -0
  8941. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-off.svg +1 -0
  8942. docsforge/themes/material/templates/.icons/material/robot-vacuum-variant.svg +1 -0
  8943. docsforge/themes/material/templates/.icons/material/robot-vacuum.svg +1 -0
  8944. docsforge/themes/material/templates/.icons/material/robot.svg +1 -0
  8945. docsforge/themes/material/templates/.icons/material/rocket-launch-outline.svg +1 -0
  8946. docsforge/themes/material/templates/.icons/material/rocket-launch.svg +1 -0
  8947. docsforge/themes/material/templates/.icons/material/rocket-outline.svg +1 -0
  8948. docsforge/themes/material/templates/.icons/material/rocket.svg +1 -0
  8949. docsforge/themes/material/templates/.icons/material/rodent.svg +1 -0
  8950. docsforge/themes/material/templates/.icons/material/roller-shade-closed.svg +1 -0
  8951. docsforge/themes/material/templates/.icons/material/roller-shade.svg +1 -0
  8952. docsforge/themes/material/templates/.icons/material/roller-skate-off.svg +1 -0
  8953. docsforge/themes/material/templates/.icons/material/roller-skate.svg +1 -0
  8954. docsforge/themes/material/templates/.icons/material/rollerblade-off.svg +1 -0
  8955. docsforge/themes/material/templates/.icons/material/rollerblade.svg +1 -0
  8956. docsforge/themes/material/templates/.icons/material/rollupjs.svg +1 -0
  8957. docsforge/themes/material/templates/.icons/material/rolodex-outline.svg +1 -0
  8958. docsforge/themes/material/templates/.icons/material/rolodex.svg +1 -0
  8959. docsforge/themes/material/templates/.icons/material/roman-numeral-1.svg +1 -0
  8960. docsforge/themes/material/templates/.icons/material/roman-numeral-10.svg +1 -0
  8961. docsforge/themes/material/templates/.icons/material/roman-numeral-2.svg +1 -0
  8962. docsforge/themes/material/templates/.icons/material/roman-numeral-3.svg +1 -0
  8963. docsforge/themes/material/templates/.icons/material/roman-numeral-4.svg +1 -0
  8964. docsforge/themes/material/templates/.icons/material/roman-numeral-5.svg +1 -0
  8965. docsforge/themes/material/templates/.icons/material/roman-numeral-6.svg +1 -0
  8966. docsforge/themes/material/templates/.icons/material/roman-numeral-7.svg +1 -0
  8967. docsforge/themes/material/templates/.icons/material/roman-numeral-8.svg +1 -0
  8968. docsforge/themes/material/templates/.icons/material/roman-numeral-9.svg +1 -0
  8969. docsforge/themes/material/templates/.icons/material/room-service-outline.svg +1 -0
  8970. docsforge/themes/material/templates/.icons/material/room-service.svg +1 -0
  8971. docsforge/themes/material/templates/.icons/material/rotate-360.svg +1 -0
  8972. docsforge/themes/material/templates/.icons/material/rotate-3d-variant.svg +1 -0
  8973. docsforge/themes/material/templates/.icons/material/rotate-3d.svg +1 -0
  8974. docsforge/themes/material/templates/.icons/material/rotate-left-variant.svg +1 -0
  8975. docsforge/themes/material/templates/.icons/material/rotate-left.svg +1 -0
  8976. docsforge/themes/material/templates/.icons/material/rotate-orbit.svg +1 -0
  8977. docsforge/themes/material/templates/.icons/material/rotate-right-variant.svg +1 -0
  8978. docsforge/themes/material/templates/.icons/material/rotate-right.svg +1 -0
  8979. docsforge/themes/material/templates/.icons/material/rounded-corner.svg +1 -0
  8980. docsforge/themes/material/templates/.icons/material/router-network-wireless.svg +1 -0
  8981. docsforge/themes/material/templates/.icons/material/router-network.svg +1 -0
  8982. docsforge/themes/material/templates/.icons/material/router-wireless-off.svg +1 -0
  8983. docsforge/themes/material/templates/.icons/material/router-wireless-settings.svg +1 -0
  8984. docsforge/themes/material/templates/.icons/material/router-wireless.svg +1 -0
  8985. docsforge/themes/material/templates/.icons/material/router.svg +1 -0
  8986. docsforge/themes/material/templates/.icons/material/routes-clock.svg +1 -0
  8987. docsforge/themes/material/templates/.icons/material/routes.svg +1 -0
  8988. docsforge/themes/material/templates/.icons/material/rowing.svg +1 -0
  8989. docsforge/themes/material/templates/.icons/material/rss-box.svg +1 -0
  8990. docsforge/themes/material/templates/.icons/material/rss-off.svg +1 -0
  8991. docsforge/themes/material/templates/.icons/material/rss.svg +1 -0
  8992. docsforge/themes/material/templates/.icons/material/rug.svg +1 -0
  8993. docsforge/themes/material/templates/.icons/material/rugby.svg +1 -0
  8994. docsforge/themes/material/templates/.icons/material/ruler-square-compass.svg +1 -0
  8995. docsforge/themes/material/templates/.icons/material/ruler-square.svg +1 -0
  8996. docsforge/themes/material/templates/.icons/material/ruler.svg +1 -0
  8997. docsforge/themes/material/templates/.icons/material/run-fast.svg +1 -0
  8998. docsforge/themes/material/templates/.icons/material/run.svg +1 -0
  8999. docsforge/themes/material/templates/.icons/material/rv-truck.svg +1 -0
  9000. docsforge/themes/material/templates/.icons/material/sack-outline.svg +1 -0
  9001. docsforge/themes/material/templates/.icons/material/sack-percent.svg +1 -0
  9002. docsforge/themes/material/templates/.icons/material/sack.svg +1 -0
  9003. docsforge/themes/material/templates/.icons/material/safe-square-outline.svg +1 -0
  9004. docsforge/themes/material/templates/.icons/material/safe-square.svg +1 -0
  9005. docsforge/themes/material/templates/.icons/material/safe.svg +1 -0
  9006. docsforge/themes/material/templates/.icons/material/safety-goggles.svg +1 -0
  9007. docsforge/themes/material/templates/.icons/material/sail-boat-sink.svg +1 -0
  9008. docsforge/themes/material/templates/.icons/material/sail-boat.svg +1 -0
  9009. docsforge/themes/material/templates/.icons/material/sale-outline.svg +1 -0
  9010. docsforge/themes/material/templates/.icons/material/sale.svg +1 -0
  9011. docsforge/themes/material/templates/.icons/material/salesforce.svg +1 -0
  9012. docsforge/themes/material/templates/.icons/material/sass.svg +1 -0
  9013. docsforge/themes/material/templates/.icons/material/satellite-uplink.svg +1 -0
  9014. docsforge/themes/material/templates/.icons/material/satellite-variant.svg +1 -0
  9015. docsforge/themes/material/templates/.icons/material/satellite.svg +1 -0
  9016. docsforge/themes/material/templates/.icons/material/sausage-off.svg +1 -0
  9017. docsforge/themes/material/templates/.icons/material/sausage.svg +1 -0
  9018. docsforge/themes/material/templates/.icons/material/saw-blade.svg +1 -0
  9019. docsforge/themes/material/templates/.icons/material/sawtooth-wave.svg +1 -0
  9020. docsforge/themes/material/templates/.icons/material/saxophone.svg +1 -0
  9021. docsforge/themes/material/templates/.icons/material/scale-balance.svg +1 -0
  9022. docsforge/themes/material/templates/.icons/material/scale-bathroom.svg +1 -0
  9023. docsforge/themes/material/templates/.icons/material/scale-off.svg +1 -0
  9024. docsforge/themes/material/templates/.icons/material/scale-unbalanced.svg +1 -0
  9025. docsforge/themes/material/templates/.icons/material/scale.svg +1 -0
  9026. docsforge/themes/material/templates/.icons/material/scan-helper.svg +1 -0
  9027. docsforge/themes/material/templates/.icons/material/scanner-off.svg +1 -0
  9028. docsforge/themes/material/templates/.icons/material/scanner.svg +1 -0
  9029. docsforge/themes/material/templates/.icons/material/scatter-plot-outline.svg +1 -0
  9030. docsforge/themes/material/templates/.icons/material/scatter-plot.svg +1 -0
  9031. docsforge/themes/material/templates/.icons/material/scent-off.svg +1 -0
  9032. docsforge/themes/material/templates/.icons/material/scent.svg +1 -0
  9033. docsforge/themes/material/templates/.icons/material/school-outline.svg +1 -0
  9034. docsforge/themes/material/templates/.icons/material/school.svg +1 -0
  9035. docsforge/themes/material/templates/.icons/material/scissors-cutting.svg +1 -0
  9036. docsforge/themes/material/templates/.icons/material/scooter-electric.svg +1 -0
  9037. docsforge/themes/material/templates/.icons/material/scooter.svg +1 -0
  9038. docsforge/themes/material/templates/.icons/material/scoreboard-outline.svg +1 -0
  9039. docsforge/themes/material/templates/.icons/material/scoreboard.svg +1 -0
  9040. docsforge/themes/material/templates/.icons/material/screen-rotation-lock.svg +1 -0
  9041. docsforge/themes/material/templates/.icons/material/screen-rotation.svg +1 -0
  9042. docsforge/themes/material/templates/.icons/material/screw-flat-top.svg +1 -0
  9043. docsforge/themes/material/templates/.icons/material/screw-lag.svg +1 -0
  9044. docsforge/themes/material/templates/.icons/material/screw-machine-flat-top.svg +1 -0
  9045. docsforge/themes/material/templates/.icons/material/screw-machine-round-top.svg +1 -0
  9046. docsforge/themes/material/templates/.icons/material/screw-round-top.svg +1 -0
  9047. docsforge/themes/material/templates/.icons/material/screwdriver.svg +1 -0
  9048. docsforge/themes/material/templates/.icons/material/script-outline.svg +1 -0
  9049. docsforge/themes/material/templates/.icons/material/script-text-key-outline.svg +1 -0
  9050. docsforge/themes/material/templates/.icons/material/script-text-key.svg +1 -0
  9051. docsforge/themes/material/templates/.icons/material/script-text-outline.svg +1 -0
  9052. docsforge/themes/material/templates/.icons/material/script-text-play-outline.svg +1 -0
  9053. docsforge/themes/material/templates/.icons/material/script-text-play.svg +1 -0
  9054. docsforge/themes/material/templates/.icons/material/script-text.svg +1 -0
  9055. docsforge/themes/material/templates/.icons/material/script.svg +1 -0
  9056. docsforge/themes/material/templates/.icons/material/sd.svg +1 -0
  9057. docsforge/themes/material/templates/.icons/material/seal-variant.svg +1 -0
  9058. docsforge/themes/material/templates/.icons/material/seal.svg +1 -0
  9059. docsforge/themes/material/templates/.icons/material/search-web.svg +1 -0
  9060. docsforge/themes/material/templates/.icons/material/seat-flat-angled.svg +1 -0
  9061. docsforge/themes/material/templates/.icons/material/seat-flat.svg +1 -0
  9062. docsforge/themes/material/templates/.icons/material/seat-individual-suite.svg +1 -0
  9063. docsforge/themes/material/templates/.icons/material/seat-legroom-extra.svg +1 -0
  9064. docsforge/themes/material/templates/.icons/material/seat-legroom-normal.svg +1 -0
  9065. docsforge/themes/material/templates/.icons/material/seat-legroom-reduced.svg +1 -0
  9066. docsforge/themes/material/templates/.icons/material/seat-outline.svg +1 -0
  9067. docsforge/themes/material/templates/.icons/material/seat-passenger.svg +1 -0
  9068. docsforge/themes/material/templates/.icons/material/seat-recline-extra.svg +1 -0
  9069. docsforge/themes/material/templates/.icons/material/seat-recline-normal.svg +1 -0
  9070. docsforge/themes/material/templates/.icons/material/seat.svg +1 -0
  9071. docsforge/themes/material/templates/.icons/material/seatbelt.svg +1 -0
  9072. docsforge/themes/material/templates/.icons/material/security-network.svg +1 -0
  9073. docsforge/themes/material/templates/.icons/material/security.svg +1 -0
  9074. docsforge/themes/material/templates/.icons/material/seed-off-outline.svg +1 -0
  9075. docsforge/themes/material/templates/.icons/material/seed-off.svg +1 -0
  9076. docsforge/themes/material/templates/.icons/material/seed-outline.svg +1 -0
  9077. docsforge/themes/material/templates/.icons/material/seed-plus-outline.svg +1 -0
  9078. docsforge/themes/material/templates/.icons/material/seed-plus.svg +1 -0
  9079. docsforge/themes/material/templates/.icons/material/seed.svg +1 -0
  9080. docsforge/themes/material/templates/.icons/material/seesaw.svg +1 -0
  9081. docsforge/themes/material/templates/.icons/material/segment.svg +1 -0
  9082. docsforge/themes/material/templates/.icons/material/select-all.svg +1 -0
  9083. docsforge/themes/material/templates/.icons/material/select-arrow-down.svg +1 -0
  9084. docsforge/themes/material/templates/.icons/material/select-arrow-up.svg +1 -0
  9085. docsforge/themes/material/templates/.icons/material/select-color.svg +1 -0
  9086. docsforge/themes/material/templates/.icons/material/select-compare.svg +1 -0
  9087. docsforge/themes/material/templates/.icons/material/select-drag.svg +1 -0
  9088. docsforge/themes/material/templates/.icons/material/select-group.svg +1 -0
  9089. docsforge/themes/material/templates/.icons/material/select-inverse.svg +1 -0
  9090. docsforge/themes/material/templates/.icons/material/select-marker.svg +1 -0
  9091. docsforge/themes/material/templates/.icons/material/select-multiple-marker.svg +1 -0
  9092. docsforge/themes/material/templates/.icons/material/select-multiple.svg +1 -0
  9093. docsforge/themes/material/templates/.icons/material/select-off.svg +1 -0
  9094. docsforge/themes/material/templates/.icons/material/select-place.svg +1 -0
  9095. docsforge/themes/material/templates/.icons/material/select-remove.svg +1 -0
  9096. docsforge/themes/material/templates/.icons/material/select-search.svg +1 -0
  9097. docsforge/themes/material/templates/.icons/material/select.svg +1 -0
  9098. docsforge/themes/material/templates/.icons/material/selection-drag.svg +1 -0
  9099. docsforge/themes/material/templates/.icons/material/selection-ellipse-arrow-inside.svg +1 -0
  9100. docsforge/themes/material/templates/.icons/material/selection-ellipse-remove.svg +1 -0
  9101. docsforge/themes/material/templates/.icons/material/selection-ellipse.svg +1 -0
  9102. docsforge/themes/material/templates/.icons/material/selection-marker.svg +1 -0
  9103. docsforge/themes/material/templates/.icons/material/selection-multiple-marker.svg +1 -0
  9104. docsforge/themes/material/templates/.icons/material/selection-multiple.svg +1 -0
  9105. docsforge/themes/material/templates/.icons/material/selection-off.svg +1 -0
  9106. docsforge/themes/material/templates/.icons/material/selection-remove.svg +1 -0
  9107. docsforge/themes/material/templates/.icons/material/selection-search.svg +1 -0
  9108. docsforge/themes/material/templates/.icons/material/selection.svg +1 -0
  9109. docsforge/themes/material/templates/.icons/material/semantic-web.svg +1 -0
  9110. docsforge/themes/material/templates/.icons/material/send-check-outline.svg +1 -0
  9111. docsforge/themes/material/templates/.icons/material/send-check.svg +1 -0
  9112. docsforge/themes/material/templates/.icons/material/send-circle-outline.svg +1 -0
  9113. docsforge/themes/material/templates/.icons/material/send-circle.svg +1 -0
  9114. docsforge/themes/material/templates/.icons/material/send-clock-outline.svg +1 -0
  9115. docsforge/themes/material/templates/.icons/material/send-clock.svg +1 -0
  9116. docsforge/themes/material/templates/.icons/material/send-lock-outline.svg +1 -0
  9117. docsforge/themes/material/templates/.icons/material/send-lock.svg +1 -0
  9118. docsforge/themes/material/templates/.icons/material/send-outline.svg +1 -0
  9119. docsforge/themes/material/templates/.icons/material/send-variant-clock-outline.svg +1 -0
  9120. docsforge/themes/material/templates/.icons/material/send-variant-clock.svg +1 -0
  9121. docsforge/themes/material/templates/.icons/material/send-variant-outline.svg +1 -0
  9122. docsforge/themes/material/templates/.icons/material/send-variant.svg +1 -0
  9123. docsforge/themes/material/templates/.icons/material/send.svg +1 -0
  9124. docsforge/themes/material/templates/.icons/material/serial-port.svg +1 -0
  9125. docsforge/themes/material/templates/.icons/material/server-minus-outline.svg +1 -0
  9126. docsforge/themes/material/templates/.icons/material/server-minus.svg +1 -0
  9127. docsforge/themes/material/templates/.icons/material/server-network-off.svg +1 -0
  9128. docsforge/themes/material/templates/.icons/material/server-network-outline.svg +1 -0
  9129. docsforge/themes/material/templates/.icons/material/server-network.svg +1 -0
  9130. docsforge/themes/material/templates/.icons/material/server-off.svg +1 -0
  9131. docsforge/themes/material/templates/.icons/material/server-outline.svg +1 -0
  9132. docsforge/themes/material/templates/.icons/material/server-plus-outline.svg +1 -0
  9133. docsforge/themes/material/templates/.icons/material/server-plus.svg +1 -0
  9134. docsforge/themes/material/templates/.icons/material/server-remove.svg +1 -0
  9135. docsforge/themes/material/templates/.icons/material/server-security.svg +1 -0
  9136. docsforge/themes/material/templates/.icons/material/server.svg +1 -0
  9137. docsforge/themes/material/templates/.icons/material/set-all.svg +1 -0
  9138. docsforge/themes/material/templates/.icons/material/set-center-right.svg +1 -0
  9139. docsforge/themes/material/templates/.icons/material/set-center.svg +1 -0
  9140. docsforge/themes/material/templates/.icons/material/set-left-center.svg +1 -0
  9141. docsforge/themes/material/templates/.icons/material/set-left-right.svg +1 -0
  9142. docsforge/themes/material/templates/.icons/material/set-left.svg +1 -0
  9143. docsforge/themes/material/templates/.icons/material/set-merge.svg +1 -0
  9144. docsforge/themes/material/templates/.icons/material/set-none.svg +1 -0
  9145. docsforge/themes/material/templates/.icons/material/set-right.svg +1 -0
  9146. docsforge/themes/material/templates/.icons/material/set-split.svg +1 -0
  9147. docsforge/themes/material/templates/.icons/material/set-square.svg +1 -0
  9148. docsforge/themes/material/templates/.icons/material/set-top-box.svg +1 -0
  9149. docsforge/themes/material/templates/.icons/material/settings-helper.svg +1 -0
  9150. docsforge/themes/material/templates/.icons/material/shaker-outline.svg +1 -0
  9151. docsforge/themes/material/templates/.icons/material/shaker.svg +1 -0
  9152. docsforge/themes/material/templates/.icons/material/shape-circle-plus.svg +1 -0
  9153. docsforge/themes/material/templates/.icons/material/shape-outline.svg +1 -0
  9154. docsforge/themes/material/templates/.icons/material/shape-oval-plus.svg +1 -0
  9155. docsforge/themes/material/templates/.icons/material/shape-plus-outline.svg +1 -0
  9156. docsforge/themes/material/templates/.icons/material/shape-plus.svg +1 -0
  9157. docsforge/themes/material/templates/.icons/material/shape-polygon-plus.svg +1 -0
  9158. docsforge/themes/material/templates/.icons/material/shape-rectangle-plus.svg +1 -0
  9159. docsforge/themes/material/templates/.icons/material/shape-square-plus.svg +1 -0
  9160. docsforge/themes/material/templates/.icons/material/shape-square-rounded-plus.svg +1 -0
  9161. docsforge/themes/material/templates/.icons/material/shape.svg +1 -0
  9162. docsforge/themes/material/templates/.icons/material/share-all-outline.svg +1 -0
  9163. docsforge/themes/material/templates/.icons/material/share-all.svg +1 -0
  9164. docsforge/themes/material/templates/.icons/material/share-circle.svg +1 -0
  9165. docsforge/themes/material/templates/.icons/material/share-off-outline.svg +1 -0
  9166. docsforge/themes/material/templates/.icons/material/share-off.svg +1 -0
  9167. docsforge/themes/material/templates/.icons/material/share-outline.svg +1 -0
  9168. docsforge/themes/material/templates/.icons/material/share-variant-outline.svg +1 -0
  9169. docsforge/themes/material/templates/.icons/material/share-variant.svg +1 -0
  9170. docsforge/themes/material/templates/.icons/material/share.svg +1 -0
  9171. docsforge/themes/material/templates/.icons/material/shark-fin-outline.svg +1 -0
  9172. docsforge/themes/material/templates/.icons/material/shark-fin.svg +1 -0
  9173. docsforge/themes/material/templates/.icons/material/shark-off.svg +1 -0
  9174. docsforge/themes/material/templates/.icons/material/shark.svg +1 -0
  9175. docsforge/themes/material/templates/.icons/material/sheep.svg +1 -0
  9176. docsforge/themes/material/templates/.icons/material/shield-account-outline.svg +1 -0
  9177. docsforge/themes/material/templates/.icons/material/shield-account-variant-outline.svg +1 -0
  9178. docsforge/themes/material/templates/.icons/material/shield-account-variant.svg +1 -0
  9179. docsforge/themes/material/templates/.icons/material/shield-account.svg +1 -0
  9180. docsforge/themes/material/templates/.icons/material/shield-airplane-outline.svg +1 -0
  9181. docsforge/themes/material/templates/.icons/material/shield-airplane.svg +1 -0
  9182. docsforge/themes/material/templates/.icons/material/shield-alert-outline.svg +1 -0
  9183. docsforge/themes/material/templates/.icons/material/shield-alert.svg +1 -0
  9184. docsforge/themes/material/templates/.icons/material/shield-bug-outline.svg +1 -0
  9185. docsforge/themes/material/templates/.icons/material/shield-bug.svg +1 -0
  9186. docsforge/themes/material/templates/.icons/material/shield-car.svg +1 -0
  9187. docsforge/themes/material/templates/.icons/material/shield-check-outline.svg +1 -0
  9188. docsforge/themes/material/templates/.icons/material/shield-check.svg +1 -0
  9189. docsforge/themes/material/templates/.icons/material/shield-cross-outline.svg +1 -0
  9190. docsforge/themes/material/templates/.icons/material/shield-cross.svg +1 -0
  9191. docsforge/themes/material/templates/.icons/material/shield-crown-outline.svg +1 -0
  9192. docsforge/themes/material/templates/.icons/material/shield-crown.svg +1 -0
  9193. docsforge/themes/material/templates/.icons/material/shield-edit-outline.svg +1 -0
  9194. docsforge/themes/material/templates/.icons/material/shield-edit.svg +1 -0
  9195. docsforge/themes/material/templates/.icons/material/shield-half-full.svg +1 -0
  9196. docsforge/themes/material/templates/.icons/material/shield-half.svg +1 -0
  9197. docsforge/themes/material/templates/.icons/material/shield-home-outline.svg +1 -0
  9198. docsforge/themes/material/templates/.icons/material/shield-home.svg +1 -0
  9199. docsforge/themes/material/templates/.icons/material/shield-key-outline.svg +1 -0
  9200. docsforge/themes/material/templates/.icons/material/shield-key.svg +1 -0
  9201. docsforge/themes/material/templates/.icons/material/shield-link-variant-outline.svg +1 -0
  9202. docsforge/themes/material/templates/.icons/material/shield-link-variant.svg +1 -0
  9203. docsforge/themes/material/templates/.icons/material/shield-lock-open-outline.svg +1 -0
  9204. docsforge/themes/material/templates/.icons/material/shield-lock-open.svg +1 -0
  9205. docsforge/themes/material/templates/.icons/material/shield-lock-outline.svg +1 -0
  9206. docsforge/themes/material/templates/.icons/material/shield-lock.svg +1 -0
  9207. docsforge/themes/material/templates/.icons/material/shield-moon-outline.svg +1 -0
  9208. docsforge/themes/material/templates/.icons/material/shield-moon.svg +1 -0
  9209. docsforge/themes/material/templates/.icons/material/shield-off-outline.svg +1 -0
  9210. docsforge/themes/material/templates/.icons/material/shield-off.svg +1 -0
  9211. docsforge/themes/material/templates/.icons/material/shield-outline.svg +1 -0
  9212. docsforge/themes/material/templates/.icons/material/shield-plus-outline.svg +1 -0
  9213. docsforge/themes/material/templates/.icons/material/shield-plus.svg +1 -0
  9214. docsforge/themes/material/templates/.icons/material/shield-refresh-outline.svg +1 -0
  9215. docsforge/themes/material/templates/.icons/material/shield-refresh.svg +1 -0
  9216. docsforge/themes/material/templates/.icons/material/shield-remove-outline.svg +1 -0
  9217. docsforge/themes/material/templates/.icons/material/shield-remove.svg +1 -0
  9218. docsforge/themes/material/templates/.icons/material/shield-search.svg +1 -0
  9219. docsforge/themes/material/templates/.icons/material/shield-star-outline.svg +1 -0
  9220. docsforge/themes/material/templates/.icons/material/shield-star.svg +1 -0
  9221. docsforge/themes/material/templates/.icons/material/shield-sun-outline.svg +1 -0
  9222. docsforge/themes/material/templates/.icons/material/shield-sun.svg +1 -0
  9223. docsforge/themes/material/templates/.icons/material/shield-sword-outline.svg +1 -0
  9224. docsforge/themes/material/templates/.icons/material/shield-sword.svg +1 -0
  9225. docsforge/themes/material/templates/.icons/material/shield-sync-outline.svg +1 -0
  9226. docsforge/themes/material/templates/.icons/material/shield-sync.svg +1 -0
  9227. docsforge/themes/material/templates/.icons/material/shield.svg +1 -0
  9228. docsforge/themes/material/templates/.icons/material/shimmer.svg +1 -0
  9229. docsforge/themes/material/templates/.icons/material/ship-wheel.svg +1 -0
  9230. docsforge/themes/material/templates/.icons/material/shipping-pallet.svg +1 -0
  9231. docsforge/themes/material/templates/.icons/material/shoe-ballet.svg +1 -0
  9232. docsforge/themes/material/templates/.icons/material/shoe-cleat.svg +1 -0
  9233. docsforge/themes/material/templates/.icons/material/shoe-formal.svg +1 -0
  9234. docsforge/themes/material/templates/.icons/material/shoe-heel.svg +1 -0
  9235. docsforge/themes/material/templates/.icons/material/shoe-print.svg +1 -0
  9236. docsforge/themes/material/templates/.icons/material/shoe-sneaker.svg +1 -0
  9237. docsforge/themes/material/templates/.icons/material/shopping-music.svg +1 -0
  9238. docsforge/themes/material/templates/.icons/material/shopping-outline.svg +1 -0
  9239. docsforge/themes/material/templates/.icons/material/shopping-search-outline.svg +1 -0
  9240. docsforge/themes/material/templates/.icons/material/shopping-search.svg +1 -0
  9241. docsforge/themes/material/templates/.icons/material/shopping.svg +1 -0
  9242. docsforge/themes/material/templates/.icons/material/shore.svg +1 -0
  9243. docsforge/themes/material/templates/.icons/material/shovel-off.svg +1 -0
  9244. docsforge/themes/material/templates/.icons/material/shovel.svg +1 -0
  9245. docsforge/themes/material/templates/.icons/material/shower-head.svg +1 -0
  9246. docsforge/themes/material/templates/.icons/material/shower.svg +1 -0
  9247. docsforge/themes/material/templates/.icons/material/shredder.svg +1 -0
  9248. docsforge/themes/material/templates/.icons/material/shuffle-disabled.svg +1 -0
  9249. docsforge/themes/material/templates/.icons/material/shuffle-variant.svg +1 -0
  9250. docsforge/themes/material/templates/.icons/material/shuffle.svg +1 -0
  9251. docsforge/themes/material/templates/.icons/material/shuriken.svg +1 -0
  9252. docsforge/themes/material/templates/.icons/material/sickle.svg +1 -0
  9253. docsforge/themes/material/templates/.icons/material/sigma-lower.svg +1 -0
  9254. docsforge/themes/material/templates/.icons/material/sigma.svg +1 -0
  9255. docsforge/themes/material/templates/.icons/material/sign-caution.svg +1 -0
  9256. docsforge/themes/material/templates/.icons/material/sign-direction-minus.svg +1 -0
  9257. docsforge/themes/material/templates/.icons/material/sign-direction-plus.svg +1 -0
  9258. docsforge/themes/material/templates/.icons/material/sign-direction-remove.svg +1 -0
  9259. docsforge/themes/material/templates/.icons/material/sign-direction.svg +1 -0
  9260. docsforge/themes/material/templates/.icons/material/sign-language-outline.svg +1 -0
  9261. docsforge/themes/material/templates/.icons/material/sign-language.svg +1 -0
  9262. docsforge/themes/material/templates/.icons/material/sign-pole.svg +1 -0
  9263. docsforge/themes/material/templates/.icons/material/sign-real-estate.svg +1 -0
  9264. docsforge/themes/material/templates/.icons/material/sign-text.svg +1 -0
  9265. docsforge/themes/material/templates/.icons/material/sign-yield.svg +1 -0
  9266. docsforge/themes/material/templates/.icons/material/signal-2g.svg +1 -0
  9267. docsforge/themes/material/templates/.icons/material/signal-3g.svg +1 -0
  9268. docsforge/themes/material/templates/.icons/material/signal-4g.svg +1 -0
  9269. docsforge/themes/material/templates/.icons/material/signal-5g.svg +1 -0
  9270. docsforge/themes/material/templates/.icons/material/signal-cellular-1.svg +1 -0
  9271. docsforge/themes/material/templates/.icons/material/signal-cellular-2.svg +1 -0
  9272. docsforge/themes/material/templates/.icons/material/signal-cellular-3.svg +1 -0
  9273. docsforge/themes/material/templates/.icons/material/signal-cellular-outline.svg +1 -0
  9274. docsforge/themes/material/templates/.icons/material/signal-distance-variant.svg +1 -0
  9275. docsforge/themes/material/templates/.icons/material/signal-hspa-plus.svg +1 -0
  9276. docsforge/themes/material/templates/.icons/material/signal-hspa.svg +1 -0
  9277. docsforge/themes/material/templates/.icons/material/signal-off.svg +1 -0
  9278. docsforge/themes/material/templates/.icons/material/signal-variant.svg +1 -0
  9279. docsforge/themes/material/templates/.icons/material/signal.svg +1 -0
  9280. docsforge/themes/material/templates/.icons/material/signature-freehand.svg +1 -0
  9281. docsforge/themes/material/templates/.icons/material/signature-image.svg +1 -0
  9282. docsforge/themes/material/templates/.icons/material/signature-text.svg +1 -0
  9283. docsforge/themes/material/templates/.icons/material/signature.svg +1 -0
  9284. docsforge/themes/material/templates/.icons/material/silo-outline.svg +1 -0
  9285. docsforge/themes/material/templates/.icons/material/silo.svg +1 -0
  9286. docsforge/themes/material/templates/.icons/material/silverware-clean.svg +1 -0
  9287. docsforge/themes/material/templates/.icons/material/silverware-fork-knife.svg +1 -0
  9288. docsforge/themes/material/templates/.icons/material/silverware-fork.svg +1 -0
  9289. docsforge/themes/material/templates/.icons/material/silverware-spoon.svg +1 -0
  9290. docsforge/themes/material/templates/.icons/material/silverware-variant.svg +1 -0
  9291. docsforge/themes/material/templates/.icons/material/silverware.svg +1 -0
  9292. docsforge/themes/material/templates/.icons/material/sim-alert-outline.svg +1 -0
  9293. docsforge/themes/material/templates/.icons/material/sim-alert.svg +1 -0
  9294. docsforge/themes/material/templates/.icons/material/sim-off-outline.svg +1 -0
  9295. docsforge/themes/material/templates/.icons/material/sim-off.svg +1 -0
  9296. docsforge/themes/material/templates/.icons/material/sim-outline.svg +1 -0
  9297. docsforge/themes/material/templates/.icons/material/sim.svg +1 -0
  9298. docsforge/themes/material/templates/.icons/material/simple-icons.svg +1 -0
  9299. docsforge/themes/material/templates/.icons/material/sina-weibo.svg +1 -0
  9300. docsforge/themes/material/templates/.icons/material/sine-wave.svg +1 -0
  9301. docsforge/themes/material/templates/.icons/material/sitemap-outline.svg +1 -0
  9302. docsforge/themes/material/templates/.icons/material/sitemap.svg +1 -0
  9303. docsforge/themes/material/templates/.icons/material/size-l.svg +1 -0
  9304. docsforge/themes/material/templates/.icons/material/size-m.svg +1 -0
  9305. docsforge/themes/material/templates/.icons/material/size-s.svg +1 -0
  9306. docsforge/themes/material/templates/.icons/material/size-xl.svg +1 -0
  9307. docsforge/themes/material/templates/.icons/material/size-xs.svg +1 -0
  9308. docsforge/themes/material/templates/.icons/material/size-xxl.svg +1 -0
  9309. docsforge/themes/material/templates/.icons/material/size-xxs.svg +1 -0
  9310. docsforge/themes/material/templates/.icons/material/size-xxxl.svg +1 -0
  9311. docsforge/themes/material/templates/.icons/material/skate-off.svg +1 -0
  9312. docsforge/themes/material/templates/.icons/material/skate.svg +1 -0
  9313. docsforge/themes/material/templates/.icons/material/skateboard.svg +1 -0
  9314. docsforge/themes/material/templates/.icons/material/skateboarding.svg +1 -0
  9315. docsforge/themes/material/templates/.icons/material/skew-less.svg +1 -0
  9316. docsforge/themes/material/templates/.icons/material/skew-more.svg +1 -0
  9317. docsforge/themes/material/templates/.icons/material/ski-cross-country.svg +1 -0
  9318. docsforge/themes/material/templates/.icons/material/ski-water.svg +1 -0
  9319. docsforge/themes/material/templates/.icons/material/ski.svg +1 -0
  9320. docsforge/themes/material/templates/.icons/material/skip-backward-outline.svg +1 -0
  9321. docsforge/themes/material/templates/.icons/material/skip-backward.svg +1 -0
  9322. docsforge/themes/material/templates/.icons/material/skip-forward-outline.svg +1 -0
  9323. docsforge/themes/material/templates/.icons/material/skip-forward.svg +1 -0
  9324. docsforge/themes/material/templates/.icons/material/skip-next-circle-outline.svg +1 -0
  9325. docsforge/themes/material/templates/.icons/material/skip-next-circle.svg +1 -0
  9326. docsforge/themes/material/templates/.icons/material/skip-next-outline.svg +1 -0
  9327. docsforge/themes/material/templates/.icons/material/skip-next.svg +1 -0
  9328. docsforge/themes/material/templates/.icons/material/skip-previous-circle-outline.svg +1 -0
  9329. docsforge/themes/material/templates/.icons/material/skip-previous-circle.svg +1 -0
  9330. docsforge/themes/material/templates/.icons/material/skip-previous-outline.svg +1 -0
  9331. docsforge/themes/material/templates/.icons/material/skip-previous.svg +1 -0
  9332. docsforge/themes/material/templates/.icons/material/skull-crossbones-outline.svg +1 -0
  9333. docsforge/themes/material/templates/.icons/material/skull-crossbones.svg +1 -0
  9334. docsforge/themes/material/templates/.icons/material/skull-outline.svg +1 -0
  9335. docsforge/themes/material/templates/.icons/material/skull-scan-outline.svg +1 -0
  9336. docsforge/themes/material/templates/.icons/material/skull-scan.svg +1 -0
  9337. docsforge/themes/material/templates/.icons/material/skull.svg +1 -0
  9338. docsforge/themes/material/templates/.icons/material/skype-business.svg +1 -0
  9339. docsforge/themes/material/templates/.icons/material/skype.svg +1 -0
  9340. docsforge/themes/material/templates/.icons/material/slack.svg +1 -0
  9341. docsforge/themes/material/templates/.icons/material/slash-forward-box.svg +1 -0
  9342. docsforge/themes/material/templates/.icons/material/slash-forward.svg +1 -0
  9343. docsforge/themes/material/templates/.icons/material/sledding.svg +1 -0
  9344. docsforge/themes/material/templates/.icons/material/sleep-off.svg +1 -0
  9345. docsforge/themes/material/templates/.icons/material/sleep.svg +1 -0
  9346. docsforge/themes/material/templates/.icons/material/slide.svg +1 -0
  9347. docsforge/themes/material/templates/.icons/material/slope-downhill.svg +1 -0
  9348. docsforge/themes/material/templates/.icons/material/slope-uphill.svg +1 -0
  9349. docsforge/themes/material/templates/.icons/material/slot-machine-outline.svg +1 -0
  9350. docsforge/themes/material/templates/.icons/material/slot-machine.svg +1 -0
  9351. docsforge/themes/material/templates/.icons/material/smart-card-off-outline.svg +1 -0
  9352. docsforge/themes/material/templates/.icons/material/smart-card-off.svg +1 -0
  9353. docsforge/themes/material/templates/.icons/material/smart-card-outline.svg +1 -0
  9354. docsforge/themes/material/templates/.icons/material/smart-card-reader-outline.svg +1 -0
  9355. docsforge/themes/material/templates/.icons/material/smart-card-reader.svg +1 -0
  9356. docsforge/themes/material/templates/.icons/material/smart-card.svg +1 -0
  9357. docsforge/themes/material/templates/.icons/material/smog.svg +1 -0
  9358. docsforge/themes/material/templates/.icons/material/smoke-detector-alert-outline.svg +1 -0
  9359. docsforge/themes/material/templates/.icons/material/smoke-detector-alert.svg +1 -0
  9360. docsforge/themes/material/templates/.icons/material/smoke-detector-off-outline.svg +1 -0
  9361. docsforge/themes/material/templates/.icons/material/smoke-detector-off.svg +1 -0
  9362. docsforge/themes/material/templates/.icons/material/smoke-detector-outline.svg +1 -0
  9363. docsforge/themes/material/templates/.icons/material/smoke-detector-variant-alert.svg +1 -0
  9364. docsforge/themes/material/templates/.icons/material/smoke-detector-variant-off.svg +1 -0
  9365. docsforge/themes/material/templates/.icons/material/smoke-detector-variant.svg +1 -0
  9366. docsforge/themes/material/templates/.icons/material/smoke-detector.svg +1 -0
  9367. docsforge/themes/material/templates/.icons/material/smoke.svg +1 -0
  9368. docsforge/themes/material/templates/.icons/material/smoking-off.svg +1 -0
  9369. docsforge/themes/material/templates/.icons/material/smoking-pipe-off.svg +1 -0
  9370. docsforge/themes/material/templates/.icons/material/smoking-pipe.svg +1 -0
  9371. docsforge/themes/material/templates/.icons/material/smoking.svg +1 -0
  9372. docsforge/themes/material/templates/.icons/material/snail.svg +1 -0
  9373. docsforge/themes/material/templates/.icons/material/snake.svg +1 -0
  9374. docsforge/themes/material/templates/.icons/material/snapchat.svg +1 -0
  9375. docsforge/themes/material/templates/.icons/material/snowboard.svg +1 -0
  9376. docsforge/themes/material/templates/.icons/material/snowflake-alert.svg +1 -0
  9377. docsforge/themes/material/templates/.icons/material/snowflake-check.svg +1 -0
  9378. docsforge/themes/material/templates/.icons/material/snowflake-melt.svg +1 -0
  9379. docsforge/themes/material/templates/.icons/material/snowflake-off.svg +1 -0
  9380. docsforge/themes/material/templates/.icons/material/snowflake-thermometer.svg +1 -0
  9381. docsforge/themes/material/templates/.icons/material/snowflake-variant.svg +1 -0
  9382. docsforge/themes/material/templates/.icons/material/snowflake.svg +1 -0
  9383. docsforge/themes/material/templates/.icons/material/snowman.svg +1 -0
  9384. docsforge/themes/material/templates/.icons/material/snowmobile.svg +1 -0
  9385. docsforge/themes/material/templates/.icons/material/snowshoeing.svg +1 -0
  9386. docsforge/themes/material/templates/.icons/material/soccer-field.svg +1 -0
  9387. docsforge/themes/material/templates/.icons/material/soccer.svg +1 -0
  9388. docsforge/themes/material/templates/.icons/material/social-distance-2-meters.svg +1 -0
  9389. docsforge/themes/material/templates/.icons/material/social-distance-6-feet.svg +1 -0
  9390. docsforge/themes/material/templates/.icons/material/sofa-outline.svg +1 -0
  9391. docsforge/themes/material/templates/.icons/material/sofa-single-outline.svg +1 -0
  9392. docsforge/themes/material/templates/.icons/material/sofa-single.svg +1 -0
  9393. docsforge/themes/material/templates/.icons/material/sofa.svg +1 -0
  9394. docsforge/themes/material/templates/.icons/material/solar-panel-large.svg +1 -0
  9395. docsforge/themes/material/templates/.icons/material/solar-panel.svg +1 -0
  9396. docsforge/themes/material/templates/.icons/material/solar-power-variant-outline.svg +1 -0
  9397. docsforge/themes/material/templates/.icons/material/solar-power-variant.svg +1 -0
  9398. docsforge/themes/material/templates/.icons/material/solar-power.svg +1 -0
  9399. docsforge/themes/material/templates/.icons/material/soldering-iron.svg +1 -0
  9400. docsforge/themes/material/templates/.icons/material/solid.svg +1 -0
  9401. docsforge/themes/material/templates/.icons/material/sony-playstation.svg +1 -0
  9402. docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg +1 -0
  9403. docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending.svg +1 -0
  9404. docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending-variant.svg +1 -0
  9405. docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending.svg +1 -0
  9406. docsforge/themes/material/templates/.icons/material/sort-alphabetical-variant.svg +1 -0
  9407. docsforge/themes/material/templates/.icons/material/sort-ascending.svg +1 -0
  9408. docsforge/themes/material/templates/.icons/material/sort-bool-ascending-variant.svg +1 -0
  9409. docsforge/themes/material/templates/.icons/material/sort-bool-ascending.svg +1 -0
  9410. docsforge/themes/material/templates/.icons/material/sort-bool-descending-variant.svg +1 -0
  9411. docsforge/themes/material/templates/.icons/material/sort-bool-descending.svg +1 -0
  9412. docsforge/themes/material/templates/.icons/material/sort-calendar-ascending.svg +1 -0
  9413. docsforge/themes/material/templates/.icons/material/sort-calendar-descending.svg +1 -0
  9414. docsforge/themes/material/templates/.icons/material/sort-clock-ascending-outline.svg +1 -0
  9415. docsforge/themes/material/templates/.icons/material/sort-clock-ascending.svg +1 -0
  9416. docsforge/themes/material/templates/.icons/material/sort-clock-descending-outline.svg +1 -0
  9417. docsforge/themes/material/templates/.icons/material/sort-clock-descending.svg +1 -0
  9418. docsforge/themes/material/templates/.icons/material/sort-descending.svg +1 -0
  9419. docsforge/themes/material/templates/.icons/material/sort-numeric-ascending-variant.svg +1 -0
  9420. docsforge/themes/material/templates/.icons/material/sort-numeric-ascending.svg +1 -0
  9421. docsforge/themes/material/templates/.icons/material/sort-numeric-descending-variant.svg +1 -0
  9422. docsforge/themes/material/templates/.icons/material/sort-numeric-descending.svg +1 -0
  9423. docsforge/themes/material/templates/.icons/material/sort-numeric-variant.svg +1 -0
  9424. docsforge/themes/material/templates/.icons/material/sort-reverse-variant.svg +1 -0
  9425. docsforge/themes/material/templates/.icons/material/sort-variant-lock-open.svg +1 -0
  9426. docsforge/themes/material/templates/.icons/material/sort-variant-lock.svg +1 -0
  9427. docsforge/themes/material/templates/.icons/material/sort-variant-off.svg +1 -0
  9428. docsforge/themes/material/templates/.icons/material/sort-variant-remove.svg +1 -0
  9429. docsforge/themes/material/templates/.icons/material/sort-variant.svg +1 -0
  9430. docsforge/themes/material/templates/.icons/material/sort.svg +1 -0
  9431. docsforge/themes/material/templates/.icons/material/soundbar.svg +1 -0
  9432. docsforge/themes/material/templates/.icons/material/soundcloud.svg +1 -0
  9433. docsforge/themes/material/templates/.icons/material/source-branch-check.svg +1 -0
  9434. docsforge/themes/material/templates/.icons/material/source-branch-minus.svg +1 -0
  9435. docsforge/themes/material/templates/.icons/material/source-branch-plus.svg +1 -0
  9436. docsforge/themes/material/templates/.icons/material/source-branch-refresh.svg +1 -0
  9437. docsforge/themes/material/templates/.icons/material/source-branch-remove.svg +1 -0
  9438. docsforge/themes/material/templates/.icons/material/source-branch-sync.svg +1 -0
  9439. docsforge/themes/material/templates/.icons/material/source-branch.svg +1 -0
  9440. docsforge/themes/material/templates/.icons/material/source-commit-end-local.svg +1 -0
  9441. docsforge/themes/material/templates/.icons/material/source-commit-end.svg +1 -0
  9442. docsforge/themes/material/templates/.icons/material/source-commit-local.svg +1 -0
  9443. docsforge/themes/material/templates/.icons/material/source-commit-next-local.svg +1 -0
  9444. docsforge/themes/material/templates/.icons/material/source-commit-start-next-local.svg +1 -0
  9445. docsforge/themes/material/templates/.icons/material/source-commit-start.svg +1 -0
  9446. docsforge/themes/material/templates/.icons/material/source-commit.svg +1 -0
  9447. docsforge/themes/material/templates/.icons/material/source-fork.svg +1 -0
  9448. docsforge/themes/material/templates/.icons/material/source-merge.svg +1 -0
  9449. docsforge/themes/material/templates/.icons/material/source-pull.svg +1 -0
  9450. docsforge/themes/material/templates/.icons/material/source-repository-multiple.svg +1 -0
  9451. docsforge/themes/material/templates/.icons/material/source-repository.svg +1 -0
  9452. docsforge/themes/material/templates/.icons/material/soy-sauce-off.svg +1 -0
  9453. docsforge/themes/material/templates/.icons/material/soy-sauce.svg +1 -0
  9454. docsforge/themes/material/templates/.icons/material/spa-outline.svg +1 -0
  9455. docsforge/themes/material/templates/.icons/material/spa.svg +1 -0
  9456. docsforge/themes/material/templates/.icons/material/space-invaders.svg +1 -0
  9457. docsforge/themes/material/templates/.icons/material/space-station.svg +1 -0
  9458. docsforge/themes/material/templates/.icons/material/spade.svg +1 -0
  9459. docsforge/themes/material/templates/.icons/material/speaker-bluetooth.svg +1 -0
  9460. docsforge/themes/material/templates/.icons/material/speaker-message.svg +1 -0
  9461. docsforge/themes/material/templates/.icons/material/speaker-multiple.svg +1 -0
  9462. docsforge/themes/material/templates/.icons/material/speaker-off.svg +1 -0
  9463. docsforge/themes/material/templates/.icons/material/speaker-pause.svg +1 -0
  9464. docsforge/themes/material/templates/.icons/material/speaker-play.svg +1 -0
  9465. docsforge/themes/material/templates/.icons/material/speaker-stop.svg +1 -0
  9466. docsforge/themes/material/templates/.icons/material/speaker-wireless.svg +1 -0
  9467. docsforge/themes/material/templates/.icons/material/speaker.svg +1 -0
  9468. docsforge/themes/material/templates/.icons/material/spear.svg +1 -0
  9469. docsforge/themes/material/templates/.icons/material/speedometer-medium.svg +1 -0
  9470. docsforge/themes/material/templates/.icons/material/speedometer-slow.svg +1 -0
  9471. docsforge/themes/material/templates/.icons/material/speedometer.svg +1 -0
  9472. docsforge/themes/material/templates/.icons/material/spellcheck.svg +1 -0
  9473. docsforge/themes/material/templates/.icons/material/sphere-off.svg +1 -0
  9474. docsforge/themes/material/templates/.icons/material/sphere.svg +1 -0
  9475. docsforge/themes/material/templates/.icons/material/spider-outline.svg +1 -0
  9476. docsforge/themes/material/templates/.icons/material/spider-thread.svg +1 -0
  9477. docsforge/themes/material/templates/.icons/material/spider-web.svg +1 -0
  9478. docsforge/themes/material/templates/.icons/material/spider.svg +1 -0
  9479. docsforge/themes/material/templates/.icons/material/spirit-level.svg +1 -0
  9480. docsforge/themes/material/templates/.icons/material/spoon-sugar.svg +1 -0
  9481. docsforge/themes/material/templates/.icons/material/spotify.svg +1 -0
  9482. docsforge/themes/material/templates/.icons/material/spotlight-beam.svg +1 -0
  9483. docsforge/themes/material/templates/.icons/material/spotlight.svg +1 -0
  9484. docsforge/themes/material/templates/.icons/material/spray-bottle.svg +1 -0
  9485. docsforge/themes/material/templates/.icons/material/spray.svg +1 -0
  9486. docsforge/themes/material/templates/.icons/material/sprinkler-fire.svg +1 -0
  9487. docsforge/themes/material/templates/.icons/material/sprinkler-variant.svg +1 -0
  9488. docsforge/themes/material/templates/.icons/material/sprinkler.svg +1 -0
  9489. docsforge/themes/material/templates/.icons/material/sprout-outline.svg +1 -0
  9490. docsforge/themes/material/templates/.icons/material/sprout.svg +1 -0
  9491. docsforge/themes/material/templates/.icons/material/square-circle-outline.svg +1 -0
  9492. docsforge/themes/material/templates/.icons/material/square-circle.svg +1 -0
  9493. docsforge/themes/material/templates/.icons/material/square-edit-outline.svg +1 -0
  9494. docsforge/themes/material/templates/.icons/material/square-medium-outline.svg +1 -0
  9495. docsforge/themes/material/templates/.icons/material/square-medium.svg +1 -0
  9496. docsforge/themes/material/templates/.icons/material/square-off-outline.svg +1 -0
  9497. docsforge/themes/material/templates/.icons/material/square-off.svg +1 -0
  9498. docsforge/themes/material/templates/.icons/material/square-opacity.svg +1 -0
  9499. docsforge/themes/material/templates/.icons/material/square-outline.svg +1 -0
  9500. docsforge/themes/material/templates/.icons/material/square-root-box.svg +1 -0
  9501. docsforge/themes/material/templates/.icons/material/square-root.svg +1 -0
  9502. docsforge/themes/material/templates/.icons/material/square-rounded-badge-outline.svg +1 -0
  9503. docsforge/themes/material/templates/.icons/material/square-rounded-badge.svg +1 -0
  9504. docsforge/themes/material/templates/.icons/material/square-rounded-outline.svg +1 -0
  9505. docsforge/themes/material/templates/.icons/material/square-rounded.svg +1 -0
  9506. docsforge/themes/material/templates/.icons/material/square-small.svg +1 -0
  9507. docsforge/themes/material/templates/.icons/material/square-wave.svg +1 -0
  9508. docsforge/themes/material/templates/.icons/material/square.svg +1 -0
  9509. docsforge/themes/material/templates/.icons/material/squeegee.svg +1 -0
  9510. docsforge/themes/material/templates/.icons/material/ssh.svg +1 -0
  9511. docsforge/themes/material/templates/.icons/material/stack-exchange.svg +1 -0
  9512. docsforge/themes/material/templates/.icons/material/stack-overflow.svg +1 -0
  9513. docsforge/themes/material/templates/.icons/material/stackpath.svg +1 -0
  9514. docsforge/themes/material/templates/.icons/material/stadium-outline.svg +1 -0
  9515. docsforge/themes/material/templates/.icons/material/stadium-variant.svg +1 -0
  9516. docsforge/themes/material/templates/.icons/material/stadium.svg +1 -0
  9517. docsforge/themes/material/templates/.icons/material/stairs-box.svg +1 -0
  9518. docsforge/themes/material/templates/.icons/material/stairs-down.svg +1 -0
  9519. docsforge/themes/material/templates/.icons/material/stairs-up.svg +1 -0
  9520. docsforge/themes/material/templates/.icons/material/stairs.svg +1 -0
  9521. docsforge/themes/material/templates/.icons/material/stamper.svg +1 -0
  9522. docsforge/themes/material/templates/.icons/material/standard-definition.svg +1 -0
  9523. docsforge/themes/material/templates/.icons/material/star-box-multiple-outline.svg +1 -0
  9524. docsforge/themes/material/templates/.icons/material/star-box-multiple.svg +1 -0
  9525. docsforge/themes/material/templates/.icons/material/star-box-outline.svg +1 -0
  9526. docsforge/themes/material/templates/.icons/material/star-box.svg +1 -0
  9527. docsforge/themes/material/templates/.icons/material/star-check-outline.svg +1 -0
  9528. docsforge/themes/material/templates/.icons/material/star-check.svg +1 -0
  9529. docsforge/themes/material/templates/.icons/material/star-circle-outline.svg +1 -0
  9530. docsforge/themes/material/templates/.icons/material/star-circle.svg +1 -0
  9531. docsforge/themes/material/templates/.icons/material/star-cog-outline.svg +1 -0
  9532. docsforge/themes/material/templates/.icons/material/star-cog.svg +1 -0
  9533. docsforge/themes/material/templates/.icons/material/star-crescent.svg +1 -0
  9534. docsforge/themes/material/templates/.icons/material/star-david.svg +1 -0
  9535. docsforge/themes/material/templates/.icons/material/star-face.svg +1 -0
  9536. docsforge/themes/material/templates/.icons/material/star-four-points-box-outline.svg +1 -0
  9537. docsforge/themes/material/templates/.icons/material/star-four-points-box.svg +1 -0
  9538. docsforge/themes/material/templates/.icons/material/star-four-points-circle-outline.svg +1 -0
  9539. docsforge/themes/material/templates/.icons/material/star-four-points-circle.svg +1 -0
  9540. docsforge/themes/material/templates/.icons/material/star-four-points-outline.svg +1 -0
  9541. docsforge/themes/material/templates/.icons/material/star-four-points-small.svg +1 -0
  9542. docsforge/themes/material/templates/.icons/material/star-four-points.svg +1 -0
  9543. docsforge/themes/material/templates/.icons/material/star-half-full.svg +1 -0
  9544. docsforge/themes/material/templates/.icons/material/star-half.svg +1 -0
  9545. docsforge/themes/material/templates/.icons/material/star-minus-outline.svg +1 -0
  9546. docsforge/themes/material/templates/.icons/material/star-minus.svg +1 -0
  9547. docsforge/themes/material/templates/.icons/material/star-off-outline.svg +1 -0
  9548. docsforge/themes/material/templates/.icons/material/star-off.svg +1 -0
  9549. docsforge/themes/material/templates/.icons/material/star-outline.svg +1 -0
  9550. docsforge/themes/material/templates/.icons/material/star-plus-outline.svg +1 -0
  9551. docsforge/themes/material/templates/.icons/material/star-plus.svg +1 -0
  9552. docsforge/themes/material/templates/.icons/material/star-remove-outline.svg +1 -0
  9553. docsforge/themes/material/templates/.icons/material/star-remove.svg +1 -0
  9554. docsforge/themes/material/templates/.icons/material/star-settings-outline.svg +1 -0
  9555. docsforge/themes/material/templates/.icons/material/star-settings.svg +1 -0
  9556. docsforge/themes/material/templates/.icons/material/star-shooting-outline.svg +1 -0
  9557. docsforge/themes/material/templates/.icons/material/star-shooting.svg +1 -0
  9558. docsforge/themes/material/templates/.icons/material/star-three-points-outline.svg +1 -0
  9559. docsforge/themes/material/templates/.icons/material/star-three-points.svg +1 -0
  9560. docsforge/themes/material/templates/.icons/material/star.svg +1 -0
  9561. docsforge/themes/material/templates/.icons/material/state-machine.svg +1 -0
  9562. docsforge/themes/material/templates/.icons/material/steam.svg +1 -0
  9563. docsforge/themes/material/templates/.icons/material/steering-off.svg +1 -0
  9564. docsforge/themes/material/templates/.icons/material/steering.svg +1 -0
  9565. docsforge/themes/material/templates/.icons/material/step-backward-2.svg +1 -0
  9566. docsforge/themes/material/templates/.icons/material/step-backward.svg +1 -0
  9567. docsforge/themes/material/templates/.icons/material/step-forward-2.svg +1 -0
  9568. docsforge/themes/material/templates/.icons/material/step-forward.svg +1 -0
  9569. docsforge/themes/material/templates/.icons/material/stethoscope.svg +1 -0
  9570. docsforge/themes/material/templates/.icons/material/sticker-alert-outline.svg +1 -0
  9571. docsforge/themes/material/templates/.icons/material/sticker-alert.svg +1 -0
  9572. docsforge/themes/material/templates/.icons/material/sticker-check-outline.svg +1 -0
  9573. docsforge/themes/material/templates/.icons/material/sticker-check.svg +1 -0
  9574. docsforge/themes/material/templates/.icons/material/sticker-circle-outline.svg +1 -0
  9575. docsforge/themes/material/templates/.icons/material/sticker-emoji.svg +1 -0
  9576. docsforge/themes/material/templates/.icons/material/sticker-minus-outline.svg +1 -0
  9577. docsforge/themes/material/templates/.icons/material/sticker-minus.svg +1 -0
  9578. docsforge/themes/material/templates/.icons/material/sticker-outline.svg +1 -0
  9579. docsforge/themes/material/templates/.icons/material/sticker-plus-outline.svg +1 -0
  9580. docsforge/themes/material/templates/.icons/material/sticker-plus.svg +1 -0
  9581. docsforge/themes/material/templates/.icons/material/sticker-remove-outline.svg +1 -0
  9582. docsforge/themes/material/templates/.icons/material/sticker-remove.svg +1 -0
  9583. docsforge/themes/material/templates/.icons/material/sticker-text-outline.svg +1 -0
  9584. docsforge/themes/material/templates/.icons/material/sticker-text.svg +1 -0
  9585. docsforge/themes/material/templates/.icons/material/sticker.svg +1 -0
  9586. docsforge/themes/material/templates/.icons/material/stocking.svg +1 -0
  9587. docsforge/themes/material/templates/.icons/material/stomach.svg +1 -0
  9588. docsforge/themes/material/templates/.icons/material/stool-outline.svg +1 -0
  9589. docsforge/themes/material/templates/.icons/material/stool.svg +1 -0
  9590. docsforge/themes/material/templates/.icons/material/stop-circle-outline.svg +1 -0
  9591. docsforge/themes/material/templates/.icons/material/stop-circle.svg +1 -0
  9592. docsforge/themes/material/templates/.icons/material/stop.svg +1 -0
  9593. docsforge/themes/material/templates/.icons/material/storage-tank-outline.svg +1 -0
  9594. docsforge/themes/material/templates/.icons/material/storage-tank.svg +1 -0
  9595. docsforge/themes/material/templates/.icons/material/store-24-hour.svg +1 -0
  9596. docsforge/themes/material/templates/.icons/material/store-alert-outline.svg +1 -0
  9597. docsforge/themes/material/templates/.icons/material/store-alert.svg +1 -0
  9598. docsforge/themes/material/templates/.icons/material/store-check-outline.svg +1 -0
  9599. docsforge/themes/material/templates/.icons/material/store-check.svg +1 -0
  9600. docsforge/themes/material/templates/.icons/material/store-clock-outline.svg +1 -0
  9601. docsforge/themes/material/templates/.icons/material/store-clock.svg +1 -0
  9602. docsforge/themes/material/templates/.icons/material/store-cog-outline.svg +1 -0
  9603. docsforge/themes/material/templates/.icons/material/store-cog.svg +1 -0
  9604. docsforge/themes/material/templates/.icons/material/store-edit-outline.svg +1 -0
  9605. docsforge/themes/material/templates/.icons/material/store-edit.svg +1 -0
  9606. docsforge/themes/material/templates/.icons/material/store-marker-outline.svg +1 -0
  9607. docsforge/themes/material/templates/.icons/material/store-marker.svg +1 -0
  9608. docsforge/themes/material/templates/.icons/material/store-minus-outline.svg +1 -0
  9609. docsforge/themes/material/templates/.icons/material/store-minus.svg +1 -0
  9610. docsforge/themes/material/templates/.icons/material/store-off-outline.svg +1 -0
  9611. docsforge/themes/material/templates/.icons/material/store-off.svg +1 -0
  9612. docsforge/themes/material/templates/.icons/material/store-outline.svg +1 -0
  9613. docsforge/themes/material/templates/.icons/material/store-plus-outline.svg +1 -0
  9614. docsforge/themes/material/templates/.icons/material/store-plus.svg +1 -0
  9615. docsforge/themes/material/templates/.icons/material/store-remove-outline.svg +1 -0
  9616. docsforge/themes/material/templates/.icons/material/store-remove.svg +1 -0
  9617. docsforge/themes/material/templates/.icons/material/store-search-outline.svg +1 -0
  9618. docsforge/themes/material/templates/.icons/material/store-search.svg +1 -0
  9619. docsforge/themes/material/templates/.icons/material/store-settings-outline.svg +1 -0
  9620. docsforge/themes/material/templates/.icons/material/store-settings.svg +1 -0
  9621. docsforge/themes/material/templates/.icons/material/store.svg +1 -0
  9622. docsforge/themes/material/templates/.icons/material/storefront-check-outline.svg +1 -0
  9623. docsforge/themes/material/templates/.icons/material/storefront-check.svg +1 -0
  9624. docsforge/themes/material/templates/.icons/material/storefront-edit-outline.svg +1 -0
  9625. docsforge/themes/material/templates/.icons/material/storefront-edit.svg +1 -0
  9626. docsforge/themes/material/templates/.icons/material/storefront-minus-outline.svg +1 -0
  9627. docsforge/themes/material/templates/.icons/material/storefront-minus.svg +1 -0
  9628. docsforge/themes/material/templates/.icons/material/storefront-outline.svg +1 -0
  9629. docsforge/themes/material/templates/.icons/material/storefront-plus-outline.svg +1 -0
  9630. docsforge/themes/material/templates/.icons/material/storefront-plus.svg +1 -0
  9631. docsforge/themes/material/templates/.icons/material/storefront-remove-outline.svg +1 -0
  9632. docsforge/themes/material/templates/.icons/material/storefront-remove.svg +1 -0
  9633. docsforge/themes/material/templates/.icons/material/storefront.svg +1 -0
  9634. docsforge/themes/material/templates/.icons/material/stove.svg +1 -0
  9635. docsforge/themes/material/templates/.icons/material/strategy.svg +1 -0
  9636. docsforge/themes/material/templates/.icons/material/stretch-to-page-outline.svg +1 -0
  9637. docsforge/themes/material/templates/.icons/material/stretch-to-page.svg +1 -0
  9638. docsforge/themes/material/templates/.icons/material/string-lights-off.svg +1 -0
  9639. docsforge/themes/material/templates/.icons/material/string-lights.svg +1 -0
  9640. docsforge/themes/material/templates/.icons/material/subdirectory-arrow-left.svg +1 -0
  9641. docsforge/themes/material/templates/.icons/material/subdirectory-arrow-right.svg +1 -0
  9642. docsforge/themes/material/templates/.icons/material/submarine.svg +1 -0
  9643. docsforge/themes/material/templates/.icons/material/subtitles-outline.svg +1 -0
  9644. docsforge/themes/material/templates/.icons/material/subtitles.svg +1 -0
  9645. docsforge/themes/material/templates/.icons/material/subway-alert-variant.svg +1 -0
  9646. docsforge/themes/material/templates/.icons/material/subway-variant.svg +1 -0
  9647. docsforge/themes/material/templates/.icons/material/subway.svg +1 -0
  9648. docsforge/themes/material/templates/.icons/material/summit.svg +1 -0
  9649. docsforge/themes/material/templates/.icons/material/sun-angle-outline.svg +1 -0
  9650. docsforge/themes/material/templates/.icons/material/sun-angle.svg +1 -0
  9651. docsforge/themes/material/templates/.icons/material/sun-clock-outline.svg +1 -0
  9652. docsforge/themes/material/templates/.icons/material/sun-clock.svg +1 -0
  9653. docsforge/themes/material/templates/.icons/material/sun-compass.svg +1 -0
  9654. docsforge/themes/material/templates/.icons/material/sun-snowflake-variant.svg +1 -0
  9655. docsforge/themes/material/templates/.icons/material/sun-snowflake.svg +1 -0
  9656. docsforge/themes/material/templates/.icons/material/sun-thermometer-outline.svg +1 -0
  9657. docsforge/themes/material/templates/.icons/material/sun-thermometer.svg +1 -0
  9658. docsforge/themes/material/templates/.icons/material/sun-wireless-outline.svg +1 -0
  9659. docsforge/themes/material/templates/.icons/material/sun-wireless.svg +1 -0
  9660. docsforge/themes/material/templates/.icons/material/sunglasses.svg +1 -0
  9661. docsforge/themes/material/templates/.icons/material/surfing.svg +1 -0
  9662. docsforge/themes/material/templates/.icons/material/surround-sound-2-0.svg +1 -0
  9663. docsforge/themes/material/templates/.icons/material/surround-sound-2-1.svg +1 -0
  9664. docsforge/themes/material/templates/.icons/material/surround-sound-3-1.svg +1 -0
  9665. docsforge/themes/material/templates/.icons/material/surround-sound-5-1-2.svg +1 -0
  9666. docsforge/themes/material/templates/.icons/material/surround-sound-5-1.svg +1 -0
  9667. docsforge/themes/material/templates/.icons/material/surround-sound-7-1.svg +1 -0
  9668. docsforge/themes/material/templates/.icons/material/surround-sound.svg +1 -0
  9669. docsforge/themes/material/templates/.icons/material/svg.svg +1 -0
  9670. docsforge/themes/material/templates/.icons/material/swap-horizontal-bold.svg +1 -0
  9671. docsforge/themes/material/templates/.icons/material/swap-horizontal-circle-outline.svg +1 -0
  9672. docsforge/themes/material/templates/.icons/material/swap-horizontal-circle.svg +1 -0
  9673. docsforge/themes/material/templates/.icons/material/swap-horizontal-hidden.svg +1 -0
  9674. docsforge/themes/material/templates/.icons/material/swap-horizontal-variant.svg +1 -0
  9675. docsforge/themes/material/templates/.icons/material/swap-horizontal.svg +1 -0
  9676. docsforge/themes/material/templates/.icons/material/swap-vertical-bold.svg +1 -0
  9677. docsforge/themes/material/templates/.icons/material/swap-vertical-circle-outline.svg +1 -0
  9678. docsforge/themes/material/templates/.icons/material/swap-vertical-circle.svg +1 -0
  9679. docsforge/themes/material/templates/.icons/material/swap-vertical-variant.svg +1 -0
  9680. docsforge/themes/material/templates/.icons/material/swap-vertical.svg +1 -0
  9681. docsforge/themes/material/templates/.icons/material/swim.svg +1 -0
  9682. docsforge/themes/material/templates/.icons/material/switch.svg +1 -0
  9683. docsforge/themes/material/templates/.icons/material/sword-cross.svg +1 -0
  9684. docsforge/themes/material/templates/.icons/material/sword.svg +1 -0
  9685. docsforge/themes/material/templates/.icons/material/syllabary-hangul.svg +1 -0
  9686. docsforge/themes/material/templates/.icons/material/syllabary-hiragana.svg +1 -0
  9687. docsforge/themes/material/templates/.icons/material/syllabary-katakana-halfwidth.svg +1 -0
  9688. docsforge/themes/material/templates/.icons/material/syllabary-katakana.svg +1 -0
  9689. docsforge/themes/material/templates/.icons/material/symbol.svg +1 -0
  9690. docsforge/themes/material/templates/.icons/material/symfony.svg +1 -0
  9691. docsforge/themes/material/templates/.icons/material/synagogue-outline.svg +1 -0
  9692. docsforge/themes/material/templates/.icons/material/synagogue.svg +1 -0
  9693. docsforge/themes/material/templates/.icons/material/sync-alert.svg +1 -0
  9694. docsforge/themes/material/templates/.icons/material/sync-circle.svg +1 -0
  9695. docsforge/themes/material/templates/.icons/material/sync-off.svg +1 -0
  9696. docsforge/themes/material/templates/.icons/material/sync.svg +1 -0
  9697. docsforge/themes/material/templates/.icons/material/tab-minus.svg +1 -0
  9698. docsforge/themes/material/templates/.icons/material/tab-plus.svg +1 -0
  9699. docsforge/themes/material/templates/.icons/material/tab-remove.svg +1 -0
  9700. docsforge/themes/material/templates/.icons/material/tab-search.svg +1 -0
  9701. docsforge/themes/material/templates/.icons/material/tab-unselected.svg +1 -0
  9702. docsforge/themes/material/templates/.icons/material/tab.svg +1 -0
  9703. docsforge/themes/material/templates/.icons/material/table-account.svg +1 -0
  9704. docsforge/themes/material/templates/.icons/material/table-alert.svg +1 -0
  9705. docsforge/themes/material/templates/.icons/material/table-arrow-down.svg +1 -0
  9706. docsforge/themes/material/templates/.icons/material/table-arrow-left.svg +1 -0
  9707. docsforge/themes/material/templates/.icons/material/table-arrow-right.svg +1 -0
  9708. docsforge/themes/material/templates/.icons/material/table-arrow-up.svg +1 -0
  9709. docsforge/themes/material/templates/.icons/material/table-border.svg +1 -0
  9710. docsforge/themes/material/templates/.icons/material/table-cancel.svg +1 -0
  9711. docsforge/themes/material/templates/.icons/material/table-chair.svg +1 -0
  9712. docsforge/themes/material/templates/.icons/material/table-check.svg +1 -0
  9713. docsforge/themes/material/templates/.icons/material/table-clock.svg +1 -0
  9714. docsforge/themes/material/templates/.icons/material/table-cog.svg +1 -0
  9715. docsforge/themes/material/templates/.icons/material/table-column-plus-after.svg +1 -0
  9716. docsforge/themes/material/templates/.icons/material/table-column-plus-before.svg +1 -0
  9717. docsforge/themes/material/templates/.icons/material/table-column-remove.svg +1 -0
  9718. docsforge/themes/material/templates/.icons/material/table-column-width.svg +1 -0
  9719. docsforge/themes/material/templates/.icons/material/table-column.svg +1 -0
  9720. docsforge/themes/material/templates/.icons/material/table-edit.svg +1 -0
  9721. docsforge/themes/material/templates/.icons/material/table-eye-off.svg +1 -0
  9722. docsforge/themes/material/templates/.icons/material/table-eye.svg +1 -0
  9723. docsforge/themes/material/templates/.icons/material/table-filter.svg +1 -0
  9724. docsforge/themes/material/templates/.icons/material/table-furniture.svg +1 -0
  9725. docsforge/themes/material/templates/.icons/material/table-headers-eye-off.svg +1 -0
  9726. docsforge/themes/material/templates/.icons/material/table-headers-eye.svg +1 -0
  9727. docsforge/themes/material/templates/.icons/material/table-heart.svg +1 -0
  9728. docsforge/themes/material/templates/.icons/material/table-key.svg +1 -0
  9729. docsforge/themes/material/templates/.icons/material/table-large-plus.svg +1 -0
  9730. docsforge/themes/material/templates/.icons/material/table-large-remove.svg +1 -0
  9731. docsforge/themes/material/templates/.icons/material/table-large.svg +1 -0
  9732. docsforge/themes/material/templates/.icons/material/table-lock.svg +1 -0
  9733. docsforge/themes/material/templates/.icons/material/table-merge-cells.svg +1 -0
  9734. docsforge/themes/material/templates/.icons/material/table-minus.svg +1 -0
  9735. docsforge/themes/material/templates/.icons/material/table-multiple.svg +1 -0
  9736. docsforge/themes/material/templates/.icons/material/table-network.svg +1 -0
  9737. docsforge/themes/material/templates/.icons/material/table-of-contents.svg +1 -0
  9738. docsforge/themes/material/templates/.icons/material/table-off.svg +1 -0
  9739. docsforge/themes/material/templates/.icons/material/table-picnic.svg +1 -0
  9740. docsforge/themes/material/templates/.icons/material/table-pivot.svg +1 -0
  9741. docsforge/themes/material/templates/.icons/material/table-plus.svg +1 -0
  9742. docsforge/themes/material/templates/.icons/material/table-question.svg +1 -0
  9743. docsforge/themes/material/templates/.icons/material/table-refresh.svg +1 -0
  9744. docsforge/themes/material/templates/.icons/material/table-remove.svg +1 -0
  9745. docsforge/themes/material/templates/.icons/material/table-row-height.svg +1 -0
  9746. docsforge/themes/material/templates/.icons/material/table-row-plus-after.svg +1 -0
  9747. docsforge/themes/material/templates/.icons/material/table-row-plus-before.svg +1 -0
  9748. docsforge/themes/material/templates/.icons/material/table-row-remove.svg +1 -0
  9749. docsforge/themes/material/templates/.icons/material/table-row.svg +1 -0
  9750. docsforge/themes/material/templates/.icons/material/table-search.svg +1 -0
  9751. docsforge/themes/material/templates/.icons/material/table-settings.svg +1 -0
  9752. docsforge/themes/material/templates/.icons/material/table-split-cell.svg +1 -0
  9753. docsforge/themes/material/templates/.icons/material/table-star.svg +1 -0
  9754. docsforge/themes/material/templates/.icons/material/table-sync.svg +1 -0
  9755. docsforge/themes/material/templates/.icons/material/table-tennis.svg +1 -0
  9756. docsforge/themes/material/templates/.icons/material/table.svg +1 -0
  9757. docsforge/themes/material/templates/.icons/material/tablet-cellphone.svg +1 -0
  9758. docsforge/themes/material/templates/.icons/material/tablet-dashboard.svg +1 -0
  9759. docsforge/themes/material/templates/.icons/material/tablet.svg +1 -0
  9760. docsforge/themes/material/templates/.icons/material/taco.svg +1 -0
  9761. docsforge/themes/material/templates/.icons/material/tag-arrow-down-outline.svg +1 -0
  9762. docsforge/themes/material/templates/.icons/material/tag-arrow-down.svg +1 -0
  9763. docsforge/themes/material/templates/.icons/material/tag-arrow-left-outline.svg +1 -0
  9764. docsforge/themes/material/templates/.icons/material/tag-arrow-left.svg +1 -0
  9765. docsforge/themes/material/templates/.icons/material/tag-arrow-right-outline.svg +1 -0
  9766. docsforge/themes/material/templates/.icons/material/tag-arrow-right.svg +1 -0
  9767. docsforge/themes/material/templates/.icons/material/tag-arrow-up-outline.svg +1 -0
  9768. docsforge/themes/material/templates/.icons/material/tag-arrow-up.svg +1 -0
  9769. docsforge/themes/material/templates/.icons/material/tag-check-outline.svg +1 -0
  9770. docsforge/themes/material/templates/.icons/material/tag-check.svg +1 -0
  9771. docsforge/themes/material/templates/.icons/material/tag-edit-outline.svg +1 -0
  9772. docsforge/themes/material/templates/.icons/material/tag-edit.svg +1 -0
  9773. docsforge/themes/material/templates/.icons/material/tag-faces.svg +1 -0
  9774. docsforge/themes/material/templates/.icons/material/tag-heart-outline.svg +1 -0
  9775. docsforge/themes/material/templates/.icons/material/tag-heart.svg +1 -0
  9776. docsforge/themes/material/templates/.icons/material/tag-hidden.svg +1 -0
  9777. docsforge/themes/material/templates/.icons/material/tag-minus-outline.svg +1 -0
  9778. docsforge/themes/material/templates/.icons/material/tag-minus.svg +1 -0
  9779. docsforge/themes/material/templates/.icons/material/tag-multiple-outline.svg +1 -0
  9780. docsforge/themes/material/templates/.icons/material/tag-multiple.svg +1 -0
  9781. docsforge/themes/material/templates/.icons/material/tag-off-outline.svg +1 -0
  9782. docsforge/themes/material/templates/.icons/material/tag-off.svg +1 -0
  9783. docsforge/themes/material/templates/.icons/material/tag-outline.svg +1 -0
  9784. docsforge/themes/material/templates/.icons/material/tag-plus-outline.svg +1 -0
  9785. docsforge/themes/material/templates/.icons/material/tag-plus.svg +1 -0
  9786. docsforge/themes/material/templates/.icons/material/tag-remove-outline.svg +1 -0
  9787. docsforge/themes/material/templates/.icons/material/tag-remove.svg +1 -0
  9788. docsforge/themes/material/templates/.icons/material/tag-search-outline.svg +1 -0
  9789. docsforge/themes/material/templates/.icons/material/tag-search.svg +1 -0
  9790. docsforge/themes/material/templates/.icons/material/tag-text-outline.svg +1 -0
  9791. docsforge/themes/material/templates/.icons/material/tag-text.svg +1 -0
  9792. docsforge/themes/material/templates/.icons/material/tag.svg +1 -0
  9793. docsforge/themes/material/templates/.icons/material/tailwind.svg +1 -0
  9794. docsforge/themes/material/templates/.icons/material/tally-mark-1.svg +1 -0
  9795. docsforge/themes/material/templates/.icons/material/tally-mark-2.svg +1 -0
  9796. docsforge/themes/material/templates/.icons/material/tally-mark-3.svg +1 -0
  9797. docsforge/themes/material/templates/.icons/material/tally-mark-4.svg +1 -0
  9798. docsforge/themes/material/templates/.icons/material/tally-mark-5.svg +1 -0
  9799. docsforge/themes/material/templates/.icons/material/tangram.svg +1 -0
  9800. docsforge/themes/material/templates/.icons/material/tank.svg +1 -0
  9801. docsforge/themes/material/templates/.icons/material/tanker-truck.svg +1 -0
  9802. docsforge/themes/material/templates/.icons/material/tape-drive.svg +1 -0
  9803. docsforge/themes/material/templates/.icons/material/tape-measure.svg +1 -0
  9804. docsforge/themes/material/templates/.icons/material/target-account.svg +1 -0
  9805. docsforge/themes/material/templates/.icons/material/target-variant.svg +1 -0
  9806. docsforge/themes/material/templates/.icons/material/target.svg +1 -0
  9807. docsforge/themes/material/templates/.icons/material/taxi.svg +1 -0
  9808. docsforge/themes/material/templates/.icons/material/tea-outline.svg +1 -0
  9809. docsforge/themes/material/templates/.icons/material/tea.svg +1 -0
  9810. docsforge/themes/material/templates/.icons/material/teamviewer.svg +1 -0
  9811. docsforge/themes/material/templates/.icons/material/teddy-bear.svg +1 -0
  9812. docsforge/themes/material/templates/.icons/material/telescope.svg +1 -0
  9813. docsforge/themes/material/templates/.icons/material/television-ambient-light.svg +1 -0
  9814. docsforge/themes/material/templates/.icons/material/television-box.svg +1 -0
  9815. docsforge/themes/material/templates/.icons/material/television-classic-off.svg +1 -0
  9816. docsforge/themes/material/templates/.icons/material/television-classic.svg +1 -0
  9817. docsforge/themes/material/templates/.icons/material/television-guide.svg +1 -0
  9818. docsforge/themes/material/templates/.icons/material/television-off.svg +1 -0
  9819. docsforge/themes/material/templates/.icons/material/television-pause.svg +1 -0
  9820. docsforge/themes/material/templates/.icons/material/television-play.svg +1 -0
  9821. docsforge/themes/material/templates/.icons/material/television-shimmer.svg +1 -0
  9822. docsforge/themes/material/templates/.icons/material/television-speaker-off.svg +1 -0
  9823. docsforge/themes/material/templates/.icons/material/television-speaker.svg +1 -0
  9824. docsforge/themes/material/templates/.icons/material/television-stop.svg +1 -0
  9825. docsforge/themes/material/templates/.icons/material/television.svg +1 -0
  9826. docsforge/themes/material/templates/.icons/material/temperature-celsius.svg +1 -0
  9827. docsforge/themes/material/templates/.icons/material/temperature-fahrenheit.svg +1 -0
  9828. docsforge/themes/material/templates/.icons/material/temperature-kelvin.svg +1 -0
  9829. docsforge/themes/material/templates/.icons/material/temple-buddhist-outline.svg +1 -0
  9830. docsforge/themes/material/templates/.icons/material/temple-buddhist.svg +1 -0
  9831. docsforge/themes/material/templates/.icons/material/temple-hindu-outline.svg +1 -0
  9832. docsforge/themes/material/templates/.icons/material/temple-hindu.svg +1 -0
  9833. docsforge/themes/material/templates/.icons/material/tennis-ball-outline.svg +1 -0
  9834. docsforge/themes/material/templates/.icons/material/tennis-ball.svg +1 -0
  9835. docsforge/themes/material/templates/.icons/material/tennis.svg +1 -0
  9836. docsforge/themes/material/templates/.icons/material/tent.svg +1 -0
  9837. docsforge/themes/material/templates/.icons/material/terraform.svg +1 -0
  9838. docsforge/themes/material/templates/.icons/material/terrain.svg +1 -0
  9839. docsforge/themes/material/templates/.icons/material/test-tube-empty.svg +1 -0
  9840. docsforge/themes/material/templates/.icons/material/test-tube-off.svg +1 -0
  9841. docsforge/themes/material/templates/.icons/material/test-tube.svg +1 -0
  9842. docsforge/themes/material/templates/.icons/material/text-account.svg +1 -0
  9843. docsforge/themes/material/templates/.icons/material/text-box-check-outline.svg +1 -0
  9844. docsforge/themes/material/templates/.icons/material/text-box-check.svg +1 -0
  9845. docsforge/themes/material/templates/.icons/material/text-box-edit-outline.svg +1 -0
  9846. docsforge/themes/material/templates/.icons/material/text-box-edit.svg +1 -0
  9847. docsforge/themes/material/templates/.icons/material/text-box-minus-outline.svg +1 -0
  9848. docsforge/themes/material/templates/.icons/material/text-box-minus.svg +1 -0
  9849. docsforge/themes/material/templates/.icons/material/text-box-multiple-outline.svg +1 -0
  9850. docsforge/themes/material/templates/.icons/material/text-box-multiple.svg +1 -0
  9851. docsforge/themes/material/templates/.icons/material/text-box-outline.svg +1 -0
  9852. docsforge/themes/material/templates/.icons/material/text-box-plus-outline.svg +1 -0
  9853. docsforge/themes/material/templates/.icons/material/text-box-plus.svg +1 -0
  9854. docsforge/themes/material/templates/.icons/material/text-box-remove-outline.svg +1 -0
  9855. docsforge/themes/material/templates/.icons/material/text-box-remove.svg +1 -0
  9856. docsforge/themes/material/templates/.icons/material/text-box-search-outline.svg +1 -0
  9857. docsforge/themes/material/templates/.icons/material/text-box-search.svg +1 -0
  9858. docsforge/themes/material/templates/.icons/material/text-box.svg +1 -0
  9859. docsforge/themes/material/templates/.icons/material/text-long.svg +1 -0
  9860. docsforge/themes/material/templates/.icons/material/text-recognition.svg +1 -0
  9861. docsforge/themes/material/templates/.icons/material/text-search-variant.svg +1 -0
  9862. docsforge/themes/material/templates/.icons/material/text-search.svg +1 -0
  9863. docsforge/themes/material/templates/.icons/material/text-shadow.svg +1 -0
  9864. docsforge/themes/material/templates/.icons/material/text-short.svg +1 -0
  9865. docsforge/themes/material/templates/.icons/material/text.svg +1 -0
  9866. docsforge/themes/material/templates/.icons/material/texture-box.svg +1 -0
  9867. docsforge/themes/material/templates/.icons/material/texture.svg +1 -0
  9868. docsforge/themes/material/templates/.icons/material/theater.svg +1 -0
  9869. docsforge/themes/material/templates/.icons/material/theme-light-dark.svg +1 -0
  9870. docsforge/themes/material/templates/.icons/material/thermometer-alert.svg +1 -0
  9871. docsforge/themes/material/templates/.icons/material/thermometer-auto.svg +1 -0
  9872. docsforge/themes/material/templates/.icons/material/thermometer-bluetooth.svg +1 -0
  9873. docsforge/themes/material/templates/.icons/material/thermometer-check.svg +1 -0
  9874. docsforge/themes/material/templates/.icons/material/thermometer-chevron-down.svg +1 -0
  9875. docsforge/themes/material/templates/.icons/material/thermometer-chevron-up.svg +1 -0
  9876. docsforge/themes/material/templates/.icons/material/thermometer-high.svg +1 -0
  9877. docsforge/themes/material/templates/.icons/material/thermometer-lines.svg +1 -0
  9878. docsforge/themes/material/templates/.icons/material/thermometer-low.svg +1 -0
  9879. docsforge/themes/material/templates/.icons/material/thermometer-minus.svg +1 -0
  9880. docsforge/themes/material/templates/.icons/material/thermometer-off.svg +1 -0
  9881. docsforge/themes/material/templates/.icons/material/thermometer-plus.svg +1 -0
  9882. docsforge/themes/material/templates/.icons/material/thermometer-probe-off.svg +1 -0
  9883. docsforge/themes/material/templates/.icons/material/thermometer-probe.svg +1 -0
  9884. docsforge/themes/material/templates/.icons/material/thermometer-water.svg +1 -0
  9885. docsforge/themes/material/templates/.icons/material/thermometer.svg +1 -0
  9886. docsforge/themes/material/templates/.icons/material/thermostat-auto.svg +1 -0
  9887. docsforge/themes/material/templates/.icons/material/thermostat-box-auto.svg +1 -0
  9888. docsforge/themes/material/templates/.icons/material/thermostat-box.svg +1 -0
  9889. docsforge/themes/material/templates/.icons/material/thermostat-cog.svg +1 -0
  9890. docsforge/themes/material/templates/.icons/material/thermostat.svg +1 -0
  9891. docsforge/themes/material/templates/.icons/material/thought-bubble-outline.svg +1 -0
  9892. docsforge/themes/material/templates/.icons/material/thought-bubble.svg +1 -0
  9893. docsforge/themes/material/templates/.icons/material/thumb-down-outline.svg +1 -0
  9894. docsforge/themes/material/templates/.icons/material/thumb-down.svg +1 -0
  9895. docsforge/themes/material/templates/.icons/material/thumb-up-outline.svg +1 -0
  9896. docsforge/themes/material/templates/.icons/material/thumb-up.svg +1 -0
  9897. docsforge/themes/material/templates/.icons/material/thumbs-up-down-outline.svg +1 -0
  9898. docsforge/themes/material/templates/.icons/material/thumbs-up-down.svg +1 -0
  9899. docsforge/themes/material/templates/.icons/material/ticket-account.svg +1 -0
  9900. docsforge/themes/material/templates/.icons/material/ticket-confirmation-outline.svg +1 -0
  9901. docsforge/themes/material/templates/.icons/material/ticket-confirmation.svg +1 -0
  9902. docsforge/themes/material/templates/.icons/material/ticket-outline.svg +1 -0
  9903. docsforge/themes/material/templates/.icons/material/ticket-percent-outline.svg +1 -0
  9904. docsforge/themes/material/templates/.icons/material/ticket-percent.svg +1 -0
  9905. docsforge/themes/material/templates/.icons/material/ticket.svg +1 -0
  9906. docsforge/themes/material/templates/.icons/material/tie.svg +1 -0
  9907. docsforge/themes/material/templates/.icons/material/tilde-off.svg +1 -0
  9908. docsforge/themes/material/templates/.icons/material/tilde.svg +1 -0
  9909. docsforge/themes/material/templates/.icons/material/timelapse.svg +1 -0
  9910. docsforge/themes/material/templates/.icons/material/timeline-alert-outline.svg +1 -0
  9911. docsforge/themes/material/templates/.icons/material/timeline-alert.svg +1 -0
  9912. docsforge/themes/material/templates/.icons/material/timeline-check-outline.svg +1 -0
  9913. docsforge/themes/material/templates/.icons/material/timeline-check.svg +1 -0
  9914. docsforge/themes/material/templates/.icons/material/timeline-clock-outline.svg +1 -0
  9915. docsforge/themes/material/templates/.icons/material/timeline-clock.svg +1 -0
  9916. docsforge/themes/material/templates/.icons/material/timeline-minus-outline.svg +1 -0
  9917. docsforge/themes/material/templates/.icons/material/timeline-minus.svg +1 -0
  9918. docsforge/themes/material/templates/.icons/material/timeline-outline.svg +1 -0
  9919. docsforge/themes/material/templates/.icons/material/timeline-plus-outline.svg +1 -0
  9920. docsforge/themes/material/templates/.icons/material/timeline-plus.svg +1 -0
  9921. docsforge/themes/material/templates/.icons/material/timeline-question-outline.svg +1 -0
  9922. docsforge/themes/material/templates/.icons/material/timeline-question.svg +1 -0
  9923. docsforge/themes/material/templates/.icons/material/timeline-remove-outline.svg +1 -0
  9924. docsforge/themes/material/templates/.icons/material/timeline-remove.svg +1 -0
  9925. docsforge/themes/material/templates/.icons/material/timeline-text-outline.svg +1 -0
  9926. docsforge/themes/material/templates/.icons/material/timeline-text.svg +1 -0
  9927. docsforge/themes/material/templates/.icons/material/timeline.svg +1 -0
  9928. docsforge/themes/material/templates/.icons/material/timer-10.svg +1 -0
  9929. docsforge/themes/material/templates/.icons/material/timer-3.svg +1 -0
  9930. docsforge/themes/material/templates/.icons/material/timer-alert-outline.svg +1 -0
  9931. docsforge/themes/material/templates/.icons/material/timer-alert.svg +1 -0
  9932. docsforge/themes/material/templates/.icons/material/timer-cancel-outline.svg +1 -0
  9933. docsforge/themes/material/templates/.icons/material/timer-cancel.svg +1 -0
  9934. docsforge/themes/material/templates/.icons/material/timer-check-outline.svg +1 -0
  9935. docsforge/themes/material/templates/.icons/material/timer-check.svg +1 -0
  9936. docsforge/themes/material/templates/.icons/material/timer-cog-outline.svg +1 -0
  9937. docsforge/themes/material/templates/.icons/material/timer-cog.svg +1 -0
  9938. docsforge/themes/material/templates/.icons/material/timer-edit-outline.svg +1 -0
  9939. docsforge/themes/material/templates/.icons/material/timer-edit.svg +1 -0
  9940. docsforge/themes/material/templates/.icons/material/timer-lock-open-outline.svg +1 -0
  9941. docsforge/themes/material/templates/.icons/material/timer-lock-open.svg +1 -0
  9942. docsforge/themes/material/templates/.icons/material/timer-lock-outline.svg +1 -0
  9943. docsforge/themes/material/templates/.icons/material/timer-lock.svg +1 -0
  9944. docsforge/themes/material/templates/.icons/material/timer-marker-outline.svg +1 -0
  9945. docsforge/themes/material/templates/.icons/material/timer-marker.svg +1 -0
  9946. docsforge/themes/material/templates/.icons/material/timer-minus-outline.svg +1 -0
  9947. docsforge/themes/material/templates/.icons/material/timer-minus.svg +1 -0
  9948. docsforge/themes/material/templates/.icons/material/timer-music-outline.svg +1 -0
  9949. docsforge/themes/material/templates/.icons/material/timer-music.svg +1 -0
  9950. docsforge/themes/material/templates/.icons/material/timer-off-outline.svg +1 -0
  9951. docsforge/themes/material/templates/.icons/material/timer-off.svg +1 -0
  9952. docsforge/themes/material/templates/.icons/material/timer-outline.svg +1 -0
  9953. docsforge/themes/material/templates/.icons/material/timer-pause-outline.svg +1 -0
  9954. docsforge/themes/material/templates/.icons/material/timer-pause.svg +1 -0
  9955. docsforge/themes/material/templates/.icons/material/timer-play-outline.svg +1 -0
  9956. docsforge/themes/material/templates/.icons/material/timer-play.svg +1 -0
  9957. docsforge/themes/material/templates/.icons/material/timer-plus-outline.svg +1 -0
  9958. docsforge/themes/material/templates/.icons/material/timer-plus.svg +1 -0
  9959. docsforge/themes/material/templates/.icons/material/timer-refresh-outline.svg +1 -0
  9960. docsforge/themes/material/templates/.icons/material/timer-refresh.svg +1 -0
  9961. docsforge/themes/material/templates/.icons/material/timer-remove-outline.svg +1 -0
  9962. docsforge/themes/material/templates/.icons/material/timer-remove.svg +1 -0
  9963. docsforge/themes/material/templates/.icons/material/timer-sand-complete.svg +1 -0
  9964. docsforge/themes/material/templates/.icons/material/timer-sand-empty.svg +1 -0
  9965. docsforge/themes/material/templates/.icons/material/timer-sand-full.svg +1 -0
  9966. docsforge/themes/material/templates/.icons/material/timer-sand-paused.svg +1 -0
  9967. docsforge/themes/material/templates/.icons/material/timer-sand.svg +1 -0
  9968. docsforge/themes/material/templates/.icons/material/timer-settings-outline.svg +1 -0
  9969. docsforge/themes/material/templates/.icons/material/timer-settings.svg +1 -0
  9970. docsforge/themes/material/templates/.icons/material/timer-star-outline.svg +1 -0
  9971. docsforge/themes/material/templates/.icons/material/timer-star.svg +1 -0
  9972. docsforge/themes/material/templates/.icons/material/timer-stop-outline.svg +1 -0
  9973. docsforge/themes/material/templates/.icons/material/timer-stop.svg +1 -0
  9974. docsforge/themes/material/templates/.icons/material/timer-sync-outline.svg +1 -0
  9975. docsforge/themes/material/templates/.icons/material/timer-sync.svg +1 -0
  9976. docsforge/themes/material/templates/.icons/material/timer.svg +1 -0
  9977. docsforge/themes/material/templates/.icons/material/timetable.svg +1 -0
  9978. docsforge/themes/material/templates/.icons/material/tire.svg +1 -0
  9979. docsforge/themes/material/templates/.icons/material/toaster-off.svg +1 -0
  9980. docsforge/themes/material/templates/.icons/material/toaster-oven.svg +1 -0
  9981. docsforge/themes/material/templates/.icons/material/toaster.svg +1 -0
  9982. docsforge/themes/material/templates/.icons/material/toggle-switch-off-outline.svg +1 -0
  9983. docsforge/themes/material/templates/.icons/material/toggle-switch-off.svg +1 -0
  9984. docsforge/themes/material/templates/.icons/material/toggle-switch-outline.svg +1 -0
  9985. docsforge/themes/material/templates/.icons/material/toggle-switch-variant-off.svg +1 -0
  9986. docsforge/themes/material/templates/.icons/material/toggle-switch-variant.svg +1 -0
  9987. docsforge/themes/material/templates/.icons/material/toggle-switch.svg +1 -0
  9988. docsforge/themes/material/templates/.icons/material/toilet.svg +1 -0
  9989. docsforge/themes/material/templates/.icons/material/toolbox-outline.svg +1 -0
  9990. docsforge/themes/material/templates/.icons/material/toolbox.svg +1 -0
  9991. docsforge/themes/material/templates/.icons/material/tools.svg +1 -0
  9992. docsforge/themes/material/templates/.icons/material/tooltip-account.svg +1 -0
  9993. docsforge/themes/material/templates/.icons/material/tooltip-cellphone.svg +1 -0
  9994. docsforge/themes/material/templates/.icons/material/tooltip-check-outline.svg +1 -0
  9995. docsforge/themes/material/templates/.icons/material/tooltip-check.svg +1 -0
  9996. docsforge/themes/material/templates/.icons/material/tooltip-edit-outline.svg +1 -0
  9997. docsforge/themes/material/templates/.icons/material/tooltip-edit.svg +1 -0
  9998. docsforge/themes/material/templates/.icons/material/tooltip-image-outline.svg +1 -0
  9999. docsforge/themes/material/templates/.icons/material/tooltip-image.svg +1 -0
  10000. docsforge/themes/material/templates/.icons/material/tooltip-minus-outline.svg +1 -0
  10001. docsforge/themes/material/templates/.icons/material/tooltip-minus.svg +1 -0
  10002. docsforge/themes/material/templates/.icons/material/tooltip-outline.svg +1 -0
  10003. docsforge/themes/material/templates/.icons/material/tooltip-plus-outline.svg +1 -0
  10004. docsforge/themes/material/templates/.icons/material/tooltip-plus.svg +1 -0
  10005. docsforge/themes/material/templates/.icons/material/tooltip-question-outline.svg +1 -0
  10006. docsforge/themes/material/templates/.icons/material/tooltip-question.svg +1 -0
  10007. docsforge/themes/material/templates/.icons/material/tooltip-remove-outline.svg +1 -0
  10008. docsforge/themes/material/templates/.icons/material/tooltip-remove.svg +1 -0
  10009. docsforge/themes/material/templates/.icons/material/tooltip-text-outline.svg +1 -0
  10010. docsforge/themes/material/templates/.icons/material/tooltip-text.svg +1 -0
  10011. docsforge/themes/material/templates/.icons/material/tooltip.svg +1 -0
  10012. docsforge/themes/material/templates/.icons/material/tooth-outline.svg +1 -0
  10013. docsforge/themes/material/templates/.icons/material/tooth.svg +1 -0
  10014. docsforge/themes/material/templates/.icons/material/toothbrush-electric.svg +1 -0
  10015. docsforge/themes/material/templates/.icons/material/toothbrush-paste.svg +1 -0
  10016. docsforge/themes/material/templates/.icons/material/toothbrush.svg +1 -0
  10017. docsforge/themes/material/templates/.icons/material/torch.svg +1 -0
  10018. docsforge/themes/material/templates/.icons/material/tortoise.svg +1 -0
  10019. docsforge/themes/material/templates/.icons/material/toslink.svg +1 -0
  10020. docsforge/themes/material/templates/.icons/material/touch-text-outline.svg +1 -0
  10021. docsforge/themes/material/templates/.icons/material/tournament.svg +1 -0
  10022. docsforge/themes/material/templates/.icons/material/tow-truck.svg +1 -0
  10023. docsforge/themes/material/templates/.icons/material/tower-beach.svg +1 -0
  10024. docsforge/themes/material/templates/.icons/material/tower-fire.svg +1 -0
  10025. docsforge/themes/material/templates/.icons/material/town-hall.svg +1 -0
  10026. docsforge/themes/material/templates/.icons/material/toy-brick-marker-outline.svg +1 -0
  10027. docsforge/themes/material/templates/.icons/material/toy-brick-marker.svg +1 -0
  10028. docsforge/themes/material/templates/.icons/material/toy-brick-minus-outline.svg +1 -0
  10029. docsforge/themes/material/templates/.icons/material/toy-brick-minus.svg +1 -0
  10030. docsforge/themes/material/templates/.icons/material/toy-brick-outline.svg +1 -0
  10031. docsforge/themes/material/templates/.icons/material/toy-brick-plus-outline.svg +1 -0
  10032. docsforge/themes/material/templates/.icons/material/toy-brick-plus.svg +1 -0
  10033. docsforge/themes/material/templates/.icons/material/toy-brick-remove-outline.svg +1 -0
  10034. docsforge/themes/material/templates/.icons/material/toy-brick-remove.svg +1 -0
  10035. docsforge/themes/material/templates/.icons/material/toy-brick-search-outline.svg +1 -0
  10036. docsforge/themes/material/templates/.icons/material/toy-brick-search.svg +1 -0
  10037. docsforge/themes/material/templates/.icons/material/toy-brick.svg +1 -0
  10038. docsforge/themes/material/templates/.icons/material/track-light-off.svg +1 -0
  10039. docsforge/themes/material/templates/.icons/material/track-light.svg +1 -0
  10040. docsforge/themes/material/templates/.icons/material/trackpad-lock.svg +1 -0
  10041. docsforge/themes/material/templates/.icons/material/trackpad.svg +1 -0
  10042. docsforge/themes/material/templates/.icons/material/tractor-variant.svg +1 -0
  10043. docsforge/themes/material/templates/.icons/material/tractor.svg +1 -0
  10044. docsforge/themes/material/templates/.icons/material/trademark.svg +1 -0
  10045. docsforge/themes/material/templates/.icons/material/traffic-cone.svg +1 -0
  10046. docsforge/themes/material/templates/.icons/material/traffic-light-outline.svg +1 -0
  10047. docsforge/themes/material/templates/.icons/material/traffic-light.svg +1 -0
  10048. docsforge/themes/material/templates/.icons/material/train-bus.svg +1 -0
  10049. docsforge/themes/material/templates/.icons/material/train-car-autorack.svg +1 -0
  10050. docsforge/themes/material/templates/.icons/material/train-car-box-full.svg +1 -0
  10051. docsforge/themes/material/templates/.icons/material/train-car-box-open.svg +1 -0
  10052. docsforge/themes/material/templates/.icons/material/train-car-box.svg +1 -0
  10053. docsforge/themes/material/templates/.icons/material/train-car-caboose.svg +1 -0
  10054. docsforge/themes/material/templates/.icons/material/train-car-centerbeam-full.svg +1 -0
  10055. docsforge/themes/material/templates/.icons/material/train-car-centerbeam.svg +1 -0
  10056. docsforge/themes/material/templates/.icons/material/train-car-container.svg +1 -0
  10057. docsforge/themes/material/templates/.icons/material/train-car-flatbed-car.svg +1 -0
  10058. docsforge/themes/material/templates/.icons/material/train-car-flatbed-tank.svg +1 -0
  10059. docsforge/themes/material/templates/.icons/material/train-car-flatbed.svg +1 -0
  10060. docsforge/themes/material/templates/.icons/material/train-car-gondola-full.svg +1 -0
  10061. docsforge/themes/material/templates/.icons/material/train-car-gondola.svg +1 -0
  10062. docsforge/themes/material/templates/.icons/material/train-car-hopper-covered.svg +1 -0
  10063. docsforge/themes/material/templates/.icons/material/train-car-hopper-full.svg +1 -0
  10064. docsforge/themes/material/templates/.icons/material/train-car-hopper.svg +1 -0
  10065. docsforge/themes/material/templates/.icons/material/train-car-intermodal.svg +1 -0
  10066. docsforge/themes/material/templates/.icons/material/train-car-passenger-door-open.svg +1 -0
  10067. docsforge/themes/material/templates/.icons/material/train-car-passenger-door.svg +1 -0
  10068. docsforge/themes/material/templates/.icons/material/train-car-passenger-variant.svg +1 -0
  10069. docsforge/themes/material/templates/.icons/material/train-car-passenger.svg +1 -0
  10070. docsforge/themes/material/templates/.icons/material/train-car-tank.svg +1 -0
  10071. docsforge/themes/material/templates/.icons/material/train-car.svg +1 -0
  10072. docsforge/themes/material/templates/.icons/material/train-variant.svg +1 -0
  10073. docsforge/themes/material/templates/.icons/material/train.svg +1 -0
  10074. docsforge/themes/material/templates/.icons/material/tram-side.svg +1 -0
  10075. docsforge/themes/material/templates/.icons/material/tram.svg +1 -0
  10076. docsforge/themes/material/templates/.icons/material/transcribe-close.svg +1 -0
  10077. docsforge/themes/material/templates/.icons/material/transcribe.svg +1 -0
  10078. docsforge/themes/material/templates/.icons/material/transfer-down.svg +1 -0
  10079. docsforge/themes/material/templates/.icons/material/transfer-left.svg +1 -0
  10080. docsforge/themes/material/templates/.icons/material/transfer-right.svg +1 -0
  10081. docsforge/themes/material/templates/.icons/material/transfer-up.svg +1 -0
  10082. docsforge/themes/material/templates/.icons/material/transfer.svg +1 -0
  10083. docsforge/themes/material/templates/.icons/material/transit-connection-horizontal.svg +1 -0
  10084. docsforge/themes/material/templates/.icons/material/transit-connection-variant.svg +1 -0
  10085. docsforge/themes/material/templates/.icons/material/transit-connection.svg +1 -0
  10086. docsforge/themes/material/templates/.icons/material/transit-detour.svg +1 -0
  10087. docsforge/themes/material/templates/.icons/material/transit-skip.svg +1 -0
  10088. docsforge/themes/material/templates/.icons/material/transit-transfer.svg +1 -0
  10089. docsforge/themes/material/templates/.icons/material/transition-masked.svg +1 -0
  10090. docsforge/themes/material/templates/.icons/material/transition.svg +1 -0
  10091. docsforge/themes/material/templates/.icons/material/translate-off.svg +1 -0
  10092. docsforge/themes/material/templates/.icons/material/translate-variant.svg +1 -0
  10093. docsforge/themes/material/templates/.icons/material/translate.svg +1 -0
  10094. docsforge/themes/material/templates/.icons/material/transmission-tower-export.svg +1 -0
  10095. docsforge/themes/material/templates/.icons/material/transmission-tower-import.svg +1 -0
  10096. docsforge/themes/material/templates/.icons/material/transmission-tower-off.svg +1 -0
  10097. docsforge/themes/material/templates/.icons/material/transmission-tower.svg +1 -0
  10098. docsforge/themes/material/templates/.icons/material/trash-can-outline.svg +1 -0
  10099. docsforge/themes/material/templates/.icons/material/trash-can.svg +1 -0
  10100. docsforge/themes/material/templates/.icons/material/tray-alert.svg +1 -0
  10101. docsforge/themes/material/templates/.icons/material/tray-arrow-down.svg +1 -0
  10102. docsforge/themes/material/templates/.icons/material/tray-arrow-up.svg +1 -0
  10103. docsforge/themes/material/templates/.icons/material/tray-full.svg +1 -0
  10104. docsforge/themes/material/templates/.icons/material/tray-minus.svg +1 -0
  10105. docsforge/themes/material/templates/.icons/material/tray-plus.svg +1 -0
  10106. docsforge/themes/material/templates/.icons/material/tray-remove.svg +1 -0
  10107. docsforge/themes/material/templates/.icons/material/tray.svg +1 -0
  10108. docsforge/themes/material/templates/.icons/material/treasure-chest-outline.svg +1 -0
  10109. docsforge/themes/material/templates/.icons/material/treasure-chest.svg +1 -0
  10110. docsforge/themes/material/templates/.icons/material/tree-outline.svg +1 -0
  10111. docsforge/themes/material/templates/.icons/material/tree.svg +1 -0
  10112. docsforge/themes/material/templates/.icons/material/trello.svg +1 -0
  10113. docsforge/themes/material/templates/.icons/material/trending-down.svg +1 -0
  10114. docsforge/themes/material/templates/.icons/material/trending-neutral.svg +1 -0
  10115. docsforge/themes/material/templates/.icons/material/trending-up.svg +1 -0
  10116. docsforge/themes/material/templates/.icons/material/triangle-down-outline.svg +1 -0
  10117. docsforge/themes/material/templates/.icons/material/triangle-down.svg +1 -0
  10118. docsforge/themes/material/templates/.icons/material/triangle-outline.svg +1 -0
  10119. docsforge/themes/material/templates/.icons/material/triangle-small-down.svg +1 -0
  10120. docsforge/themes/material/templates/.icons/material/triangle-small-up.svg +1 -0
  10121. docsforge/themes/material/templates/.icons/material/triangle-wave.svg +1 -0
  10122. docsforge/themes/material/templates/.icons/material/triangle.svg +1 -0
  10123. docsforge/themes/material/templates/.icons/material/triforce.svg +1 -0
  10124. docsforge/themes/material/templates/.icons/material/trophy-award.svg +1 -0
  10125. docsforge/themes/material/templates/.icons/material/trophy-broken.svg +1 -0
  10126. docsforge/themes/material/templates/.icons/material/trophy-outline.svg +1 -0
  10127. docsforge/themes/material/templates/.icons/material/trophy-variant-outline.svg +1 -0
  10128. docsforge/themes/material/templates/.icons/material/trophy-variant.svg +1 -0
  10129. docsforge/themes/material/templates/.icons/material/trophy.svg +1 -0
  10130. docsforge/themes/material/templates/.icons/material/truck-alert-outline.svg +1 -0
  10131. docsforge/themes/material/templates/.icons/material/truck-alert.svg +1 -0
  10132. docsforge/themes/material/templates/.icons/material/truck-cargo-container.svg +1 -0
  10133. docsforge/themes/material/templates/.icons/material/truck-check-outline.svg +1 -0
  10134. docsforge/themes/material/templates/.icons/material/truck-check.svg +1 -0
  10135. docsforge/themes/material/templates/.icons/material/truck-delivery-outline.svg +1 -0
  10136. docsforge/themes/material/templates/.icons/material/truck-delivery.svg +1 -0
  10137. docsforge/themes/material/templates/.icons/material/truck-fast-outline.svg +1 -0
  10138. docsforge/themes/material/templates/.icons/material/truck-fast.svg +1 -0
  10139. docsforge/themes/material/templates/.icons/material/truck-flatbed.svg +1 -0
  10140. docsforge/themes/material/templates/.icons/material/truck-minus-outline.svg +1 -0
  10141. docsforge/themes/material/templates/.icons/material/truck-minus.svg +1 -0
  10142. docsforge/themes/material/templates/.icons/material/truck-off-road-off.svg +1 -0
  10143. docsforge/themes/material/templates/.icons/material/truck-off-road.svg +1 -0
  10144. docsforge/themes/material/templates/.icons/material/truck-outline.svg +1 -0
  10145. docsforge/themes/material/templates/.icons/material/truck-plus-outline.svg +1 -0
  10146. docsforge/themes/material/templates/.icons/material/truck-plus.svg +1 -0
  10147. docsforge/themes/material/templates/.icons/material/truck-remove-outline.svg +1 -0
  10148. docsforge/themes/material/templates/.icons/material/truck-remove.svg +1 -0
  10149. docsforge/themes/material/templates/.icons/material/truck-snowflake.svg +1 -0
  10150. docsforge/themes/material/templates/.icons/material/truck-trailer.svg +1 -0
  10151. docsforge/themes/material/templates/.icons/material/truck.svg +1 -0
  10152. docsforge/themes/material/templates/.icons/material/trumpet.svg +1 -0
  10153. docsforge/themes/material/templates/.icons/material/tshirt-crew-outline.svg +1 -0
  10154. docsforge/themes/material/templates/.icons/material/tshirt-crew.svg +1 -0
  10155. docsforge/themes/material/templates/.icons/material/tshirt-v-outline.svg +1 -0
  10156. docsforge/themes/material/templates/.icons/material/tshirt-v.svg +1 -0
  10157. docsforge/themes/material/templates/.icons/material/tsunami.svg +1 -0
  10158. docsforge/themes/material/templates/.icons/material/tumble-dryer-alert.svg +1 -0
  10159. docsforge/themes/material/templates/.icons/material/tumble-dryer-off.svg +1 -0
  10160. docsforge/themes/material/templates/.icons/material/tumble-dryer.svg +1 -0
  10161. docsforge/themes/material/templates/.icons/material/tune-variant.svg +1 -0
  10162. docsforge/themes/material/templates/.icons/material/tune-vertical-variant.svg +1 -0
  10163. docsforge/themes/material/templates/.icons/material/tune-vertical.svg +1 -0
  10164. docsforge/themes/material/templates/.icons/material/tune.svg +1 -0
  10165. docsforge/themes/material/templates/.icons/material/tunnel-outline.svg +1 -0
  10166. docsforge/themes/material/templates/.icons/material/tunnel.svg +1 -0
  10167. docsforge/themes/material/templates/.icons/material/turbine.svg +1 -0
  10168. docsforge/themes/material/templates/.icons/material/turkey.svg +1 -0
  10169. docsforge/themes/material/templates/.icons/material/turnstile-outline.svg +1 -0
  10170. docsforge/themes/material/templates/.icons/material/turnstile.svg +1 -0
  10171. docsforge/themes/material/templates/.icons/material/turtle.svg +1 -0
  10172. docsforge/themes/material/templates/.icons/material/twitch.svg +1 -0
  10173. docsforge/themes/material/templates/.icons/material/twitter.svg +1 -0
  10174. docsforge/themes/material/templates/.icons/material/two-factor-authentication.svg +1 -0
  10175. docsforge/themes/material/templates/.icons/material/typewriter.svg +1 -0
  10176. docsforge/themes/material/templates/.icons/material/ubisoft.svg +1 -0
  10177. docsforge/themes/material/templates/.icons/material/ubuntu.svg +1 -0
  10178. docsforge/themes/material/templates/.icons/material/ufo-outline.svg +1 -0
  10179. docsforge/themes/material/templates/.icons/material/ufo.svg +1 -0
  10180. docsforge/themes/material/templates/.icons/material/ultra-high-definition.svg +1 -0
  10181. docsforge/themes/material/templates/.icons/material/umbraco.svg +1 -0
  10182. docsforge/themes/material/templates/.icons/material/umbrella-beach-outline.svg +1 -0
  10183. docsforge/themes/material/templates/.icons/material/umbrella-beach.svg +1 -0
  10184. docsforge/themes/material/templates/.icons/material/umbrella-closed-outline.svg +1 -0
  10185. docsforge/themes/material/templates/.icons/material/umbrella-closed-variant.svg +1 -0
  10186. docsforge/themes/material/templates/.icons/material/umbrella-closed.svg +1 -0
  10187. docsforge/themes/material/templates/.icons/material/umbrella-outline.svg +1 -0
  10188. docsforge/themes/material/templates/.icons/material/umbrella.svg +1 -0
  10189. docsforge/themes/material/templates/.icons/material/underwear-outline.svg +1 -0
  10190. docsforge/themes/material/templates/.icons/material/undo-variant.svg +1 -0
  10191. docsforge/themes/material/templates/.icons/material/undo.svg +1 -0
  10192. docsforge/themes/material/templates/.icons/material/unfold-less-horizontal.svg +1 -0
  10193. docsforge/themes/material/templates/.icons/material/unfold-less-vertical.svg +1 -0
  10194. docsforge/themes/material/templates/.icons/material/unfold-more-horizontal.svg +1 -0
  10195. docsforge/themes/material/templates/.icons/material/unfold-more-vertical.svg +1 -0
  10196. docsforge/themes/material/templates/.icons/material/ungroup.svg +1 -0
  10197. docsforge/themes/material/templates/.icons/material/unicode.svg +1 -0
  10198. docsforge/themes/material/templates/.icons/material/unicorn-variant.svg +1 -0
  10199. docsforge/themes/material/templates/.icons/material/unicorn.svg +1 -0
  10200. docsforge/themes/material/templates/.icons/material/unicycle.svg +1 -0
  10201. docsforge/themes/material/templates/.icons/material/unity.svg +1 -0
  10202. docsforge/themes/material/templates/.icons/material/unreal.svg +1 -0
  10203. docsforge/themes/material/templates/.icons/material/update.svg +1 -0
  10204. docsforge/themes/material/templates/.icons/material/upload-box-outline.svg +1 -0
  10205. docsforge/themes/material/templates/.icons/material/upload-box.svg +1 -0
  10206. docsforge/themes/material/templates/.icons/material/upload-circle-outline.svg +1 -0
  10207. docsforge/themes/material/templates/.icons/material/upload-circle.svg +1 -0
  10208. docsforge/themes/material/templates/.icons/material/upload-lock-outline.svg +1 -0
  10209. docsforge/themes/material/templates/.icons/material/upload-lock.svg +1 -0
  10210. docsforge/themes/material/templates/.icons/material/upload-multiple-outline.svg +1 -0
  10211. docsforge/themes/material/templates/.icons/material/upload-multiple.svg +1 -0
  10212. docsforge/themes/material/templates/.icons/material/upload-network-outline.svg +1 -0
  10213. docsforge/themes/material/templates/.icons/material/upload-network.svg +1 -0
  10214. docsforge/themes/material/templates/.icons/material/upload-off-outline.svg +1 -0
  10215. docsforge/themes/material/templates/.icons/material/upload-off.svg +1 -0
  10216. docsforge/themes/material/templates/.icons/material/upload-outline.svg +1 -0
  10217. docsforge/themes/material/templates/.icons/material/upload.svg +1 -0
  10218. docsforge/themes/material/templates/.icons/material/usb-c-port.svg +1 -0
  10219. docsforge/themes/material/templates/.icons/material/usb-flash-drive-outline.svg +1 -0
  10220. docsforge/themes/material/templates/.icons/material/usb-flash-drive.svg +1 -0
  10221. docsforge/themes/material/templates/.icons/material/usb-port.svg +1 -0
  10222. docsforge/themes/material/templates/.icons/material/usb.svg +1 -0
  10223. docsforge/themes/material/templates/.icons/material/vacuum-outline.svg +1 -0
  10224. docsforge/themes/material/templates/.icons/material/vacuum.svg +1 -0
  10225. docsforge/themes/material/templates/.icons/material/valve-closed.svg +1 -0
  10226. docsforge/themes/material/templates/.icons/material/valve-open.svg +1 -0
  10227. docsforge/themes/material/templates/.icons/material/valve.svg +1 -0
  10228. docsforge/themes/material/templates/.icons/material/van-passenger.svg +1 -0
  10229. docsforge/themes/material/templates/.icons/material/van-utility.svg +1 -0
  10230. docsforge/themes/material/templates/.icons/material/vanish-quarter.svg +1 -0
  10231. docsforge/themes/material/templates/.icons/material/vanish.svg +1 -0
  10232. docsforge/themes/material/templates/.icons/material/vanity-light.svg +1 -0
  10233. docsforge/themes/material/templates/.icons/material/variable-box.svg +1 -0
  10234. docsforge/themes/material/templates/.icons/material/variable.svg +1 -0
  10235. docsforge/themes/material/templates/.icons/material/vector-arrange-above.svg +1 -0
  10236. docsforge/themes/material/templates/.icons/material/vector-arrange-below.svg +1 -0
  10237. docsforge/themes/material/templates/.icons/material/vector-bezier.svg +1 -0
  10238. docsforge/themes/material/templates/.icons/material/vector-circle-variant.svg +1 -0
  10239. docsforge/themes/material/templates/.icons/material/vector-circle.svg +1 -0
  10240. docsforge/themes/material/templates/.icons/material/vector-combine.svg +1 -0
  10241. docsforge/themes/material/templates/.icons/material/vector-curve.svg +1 -0
  10242. docsforge/themes/material/templates/.icons/material/vector-difference-ab.svg +1 -0
  10243. docsforge/themes/material/templates/.icons/material/vector-difference-ba.svg +1 -0
  10244. docsforge/themes/material/templates/.icons/material/vector-difference.svg +1 -0
  10245. docsforge/themes/material/templates/.icons/material/vector-ellipse.svg +1 -0
  10246. docsforge/themes/material/templates/.icons/material/vector-intersection.svg +1 -0
  10247. docsforge/themes/material/templates/.icons/material/vector-line.svg +1 -0
  10248. docsforge/themes/material/templates/.icons/material/vector-link.svg +1 -0
  10249. docsforge/themes/material/templates/.icons/material/vector-point-edit.svg +1 -0
  10250. docsforge/themes/material/templates/.icons/material/vector-point-minus.svg +1 -0
  10251. docsforge/themes/material/templates/.icons/material/vector-point-plus.svg +1 -0
  10252. docsforge/themes/material/templates/.icons/material/vector-point-select.svg +1 -0
  10253. docsforge/themes/material/templates/.icons/material/vector-point.svg +1 -0
  10254. docsforge/themes/material/templates/.icons/material/vector-polygon-variant.svg +1 -0
  10255. docsforge/themes/material/templates/.icons/material/vector-polygon.svg +1 -0
  10256. docsforge/themes/material/templates/.icons/material/vector-polyline-edit.svg +1 -0
  10257. docsforge/themes/material/templates/.icons/material/vector-polyline-minus.svg +1 -0
  10258. docsforge/themes/material/templates/.icons/material/vector-polyline-plus.svg +1 -0
  10259. docsforge/themes/material/templates/.icons/material/vector-polyline-remove.svg +1 -0
  10260. docsforge/themes/material/templates/.icons/material/vector-polyline.svg +1 -0
  10261. docsforge/themes/material/templates/.icons/material/vector-radius.svg +1 -0
  10262. docsforge/themes/material/templates/.icons/material/vector-rectangle.svg +1 -0
  10263. docsforge/themes/material/templates/.icons/material/vector-selection.svg +1 -0
  10264. docsforge/themes/material/templates/.icons/material/vector-square-close.svg +1 -0
  10265. docsforge/themes/material/templates/.icons/material/vector-square-edit.svg +1 -0
  10266. docsforge/themes/material/templates/.icons/material/vector-square-minus.svg +1 -0
  10267. docsforge/themes/material/templates/.icons/material/vector-square-open.svg +1 -0
  10268. docsforge/themes/material/templates/.icons/material/vector-square-plus.svg +1 -0
  10269. docsforge/themes/material/templates/.icons/material/vector-square-remove.svg +1 -0
  10270. docsforge/themes/material/templates/.icons/material/vector-square.svg +1 -0
  10271. docsforge/themes/material/templates/.icons/material/vector-triangle.svg +1 -0
  10272. docsforge/themes/material/templates/.icons/material/vector-union.svg +1 -0
  10273. docsforge/themes/material/templates/.icons/material/vhs.svg +1 -0
  10274. docsforge/themes/material/templates/.icons/material/vibrate-off.svg +1 -0
  10275. docsforge/themes/material/templates/.icons/material/vibrate.svg +1 -0
  10276. docsforge/themes/material/templates/.icons/material/video-2d.svg +1 -0
  10277. docsforge/themes/material/templates/.icons/material/video-3d-off.svg +1 -0
  10278. docsforge/themes/material/templates/.icons/material/video-3d-variant.svg +1 -0
  10279. docsforge/themes/material/templates/.icons/material/video-3d.svg +1 -0
  10280. docsforge/themes/material/templates/.icons/material/video-4k-box.svg +1 -0
  10281. docsforge/themes/material/templates/.icons/material/video-account.svg +1 -0
  10282. docsforge/themes/material/templates/.icons/material/video-box-off.svg +1 -0
  10283. docsforge/themes/material/templates/.icons/material/video-box.svg +1 -0
  10284. docsforge/themes/material/templates/.icons/material/video-check-outline.svg +1 -0
  10285. docsforge/themes/material/templates/.icons/material/video-check.svg +1 -0
  10286. docsforge/themes/material/templates/.icons/material/video-high-definition.svg +1 -0
  10287. docsforge/themes/material/templates/.icons/material/video-image.svg +1 -0
  10288. docsforge/themes/material/templates/.icons/material/video-input-antenna.svg +1 -0
  10289. docsforge/themes/material/templates/.icons/material/video-input-component.svg +1 -0
  10290. docsforge/themes/material/templates/.icons/material/video-input-hdmi.svg +1 -0
  10291. docsforge/themes/material/templates/.icons/material/video-input-scart.svg +1 -0
  10292. docsforge/themes/material/templates/.icons/material/video-input-svideo.svg +1 -0
  10293. docsforge/themes/material/templates/.icons/material/video-marker-outline.svg +1 -0
  10294. docsforge/themes/material/templates/.icons/material/video-marker.svg +1 -0
  10295. docsforge/themes/material/templates/.icons/material/video-minus-outline.svg +1 -0
  10296. docsforge/themes/material/templates/.icons/material/video-minus.svg +1 -0
  10297. docsforge/themes/material/templates/.icons/material/video-off-outline.svg +1 -0
  10298. docsforge/themes/material/templates/.icons/material/video-off.svg +1 -0
  10299. docsforge/themes/material/templates/.icons/material/video-outline.svg +1 -0
  10300. docsforge/themes/material/templates/.icons/material/video-plus-outline.svg +1 -0
  10301. docsforge/themes/material/templates/.icons/material/video-plus.svg +1 -0
  10302. docsforge/themes/material/templates/.icons/material/video-stabilization.svg +1 -0
  10303. docsforge/themes/material/templates/.icons/material/video-standard-definition.svg +1 -0
  10304. docsforge/themes/material/templates/.icons/material/video-switch-outline.svg +1 -0
  10305. docsforge/themes/material/templates/.icons/material/video-switch.svg +1 -0
  10306. docsforge/themes/material/templates/.icons/material/video-vintage.svg +1 -0
  10307. docsforge/themes/material/templates/.icons/material/video-wireless-outline.svg +1 -0
  10308. docsforge/themes/material/templates/.icons/material/video-wireless.svg +1 -0
  10309. docsforge/themes/material/templates/.icons/material/video.svg +1 -0
  10310. docsforge/themes/material/templates/.icons/material/view-agenda-outline.svg +1 -0
  10311. docsforge/themes/material/templates/.icons/material/view-agenda.svg +1 -0
  10312. docsforge/themes/material/templates/.icons/material/view-array-outline.svg +1 -0
  10313. docsforge/themes/material/templates/.icons/material/view-array.svg +1 -0
  10314. docsforge/themes/material/templates/.icons/material/view-carousel-outline.svg +1 -0
  10315. docsforge/themes/material/templates/.icons/material/view-carousel.svg +1 -0
  10316. docsforge/themes/material/templates/.icons/material/view-column-outline.svg +1 -0
  10317. docsforge/themes/material/templates/.icons/material/view-column.svg +1 -0
  10318. docsforge/themes/material/templates/.icons/material/view-comfy-outline.svg +1 -0
  10319. docsforge/themes/material/templates/.icons/material/view-comfy.svg +1 -0
  10320. docsforge/themes/material/templates/.icons/material/view-compact-outline.svg +1 -0
  10321. docsforge/themes/material/templates/.icons/material/view-compact.svg +1 -0
  10322. docsforge/themes/material/templates/.icons/material/view-dashboard-edit-outline.svg +1 -0
  10323. docsforge/themes/material/templates/.icons/material/view-dashboard-edit.svg +1 -0
  10324. docsforge/themes/material/templates/.icons/material/view-dashboard-outline.svg +1 -0
  10325. docsforge/themes/material/templates/.icons/material/view-dashboard-variant-outline.svg +1 -0
  10326. docsforge/themes/material/templates/.icons/material/view-dashboard-variant.svg +1 -0
  10327. docsforge/themes/material/templates/.icons/material/view-dashboard.svg +1 -0
  10328. docsforge/themes/material/templates/.icons/material/view-day-outline.svg +1 -0
  10329. docsforge/themes/material/templates/.icons/material/view-day.svg +1 -0
  10330. docsforge/themes/material/templates/.icons/material/view-gallery-outline.svg +1 -0
  10331. docsforge/themes/material/templates/.icons/material/view-gallery.svg +1 -0
  10332. docsforge/themes/material/templates/.icons/material/view-grid-compact.svg +1 -0
  10333. docsforge/themes/material/templates/.icons/material/view-grid-outline.svg +1 -0
  10334. docsforge/themes/material/templates/.icons/material/view-grid-plus-outline.svg +1 -0
  10335. docsforge/themes/material/templates/.icons/material/view-grid-plus.svg +1 -0
  10336. docsforge/themes/material/templates/.icons/material/view-grid.svg +1 -0
  10337. docsforge/themes/material/templates/.icons/material/view-headline.svg +1 -0
  10338. docsforge/themes/material/templates/.icons/material/view-list-outline.svg +1 -0
  10339. docsforge/themes/material/templates/.icons/material/view-list.svg +1 -0
  10340. docsforge/themes/material/templates/.icons/material/view-module-outline.svg +1 -0
  10341. docsforge/themes/material/templates/.icons/material/view-module.svg +1 -0
  10342. docsforge/themes/material/templates/.icons/material/view-parallel-outline.svg +1 -0
  10343. docsforge/themes/material/templates/.icons/material/view-parallel.svg +1 -0
  10344. docsforge/themes/material/templates/.icons/material/view-quilt-outline.svg +1 -0
  10345. docsforge/themes/material/templates/.icons/material/view-quilt.svg +1 -0
  10346. docsforge/themes/material/templates/.icons/material/view-sequential-outline.svg +1 -0
  10347. docsforge/themes/material/templates/.icons/material/view-sequential.svg +1 -0
  10348. docsforge/themes/material/templates/.icons/material/view-split-horizontal.svg +1 -0
  10349. docsforge/themes/material/templates/.icons/material/view-split-vertical.svg +1 -0
  10350. docsforge/themes/material/templates/.icons/material/view-stream-outline.svg +1 -0
  10351. docsforge/themes/material/templates/.icons/material/view-stream.svg +1 -0
  10352. docsforge/themes/material/templates/.icons/material/view-week-outline.svg +1 -0
  10353. docsforge/themes/material/templates/.icons/material/view-week.svg +1 -0
  10354. docsforge/themes/material/templates/.icons/material/vimeo.svg +1 -0
  10355. docsforge/themes/material/templates/.icons/material/violin.svg +1 -0
  10356. docsforge/themes/material/templates/.icons/material/virtual-reality.svg +1 -0
  10357. docsforge/themes/material/templates/.icons/material/virus-off-outline.svg +1 -0
  10358. docsforge/themes/material/templates/.icons/material/virus-off.svg +1 -0
  10359. docsforge/themes/material/templates/.icons/material/virus-outline.svg +1 -0
  10360. docsforge/themes/material/templates/.icons/material/virus.svg +1 -0
  10361. docsforge/themes/material/templates/.icons/material/vlc.svg +1 -0
  10362. docsforge/themes/material/templates/.icons/material/voicemail.svg +1 -0
  10363. docsforge/themes/material/templates/.icons/material/volcano-outline.svg +1 -0
  10364. docsforge/themes/material/templates/.icons/material/volcano.svg +1 -0
  10365. docsforge/themes/material/templates/.icons/material/volleyball.svg +1 -0
  10366. docsforge/themes/material/templates/.icons/material/volume-equal.svg +1 -0
  10367. docsforge/themes/material/templates/.icons/material/volume-high.svg +1 -0
  10368. docsforge/themes/material/templates/.icons/material/volume-low.svg +1 -0
  10369. docsforge/themes/material/templates/.icons/material/volume-medium.svg +1 -0
  10370. docsforge/themes/material/templates/.icons/material/volume-minus.svg +1 -0
  10371. docsforge/themes/material/templates/.icons/material/volume-mute.svg +1 -0
  10372. docsforge/themes/material/templates/.icons/material/volume-off.svg +1 -0
  10373. docsforge/themes/material/templates/.icons/material/volume-plus.svg +1 -0
  10374. docsforge/themes/material/templates/.icons/material/volume-source.svg +1 -0
  10375. docsforge/themes/material/templates/.icons/material/volume-variant-off.svg +1 -0
  10376. docsforge/themes/material/templates/.icons/material/volume-vibrate.svg +1 -0
  10377. docsforge/themes/material/templates/.icons/material/vote-outline.svg +1 -0
  10378. docsforge/themes/material/templates/.icons/material/vote.svg +1 -0
  10379. docsforge/themes/material/templates/.icons/material/vpn.svg +1 -0
  10380. docsforge/themes/material/templates/.icons/material/vuejs.svg +1 -0
  10381. docsforge/themes/material/templates/.icons/material/vuetify.svg +1 -0
  10382. docsforge/themes/material/templates/.icons/material/walk.svg +1 -0
  10383. docsforge/themes/material/templates/.icons/material/wall-fire.svg +1 -0
  10384. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-outline.svg +1 -0
  10385. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg +1 -0
  10386. docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant.svg +1 -0
  10387. docsforge/themes/material/templates/.icons/material/wall-sconce-flat.svg +1 -0
  10388. docsforge/themes/material/templates/.icons/material/wall-sconce-outline.svg +1 -0
  10389. docsforge/themes/material/templates/.icons/material/wall-sconce-round-outline.svg +1 -0
  10390. docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant-outline.svg +1 -0
  10391. docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant.svg +1 -0
  10392. docsforge/themes/material/templates/.icons/material/wall-sconce-round.svg +1 -0
  10393. docsforge/themes/material/templates/.icons/material/wall-sconce.svg +1 -0
  10394. docsforge/themes/material/templates/.icons/material/wall.svg +1 -0
  10395. docsforge/themes/material/templates/.icons/material/wallet-bifold-outline.svg +1 -0
  10396. docsforge/themes/material/templates/.icons/material/wallet-bifold.svg +1 -0
  10397. docsforge/themes/material/templates/.icons/material/wallet-giftcard.svg +1 -0
  10398. docsforge/themes/material/templates/.icons/material/wallet-membership.svg +1 -0
  10399. docsforge/themes/material/templates/.icons/material/wallet-outline.svg +1 -0
  10400. docsforge/themes/material/templates/.icons/material/wallet-plus-outline.svg +1 -0
  10401. docsforge/themes/material/templates/.icons/material/wallet-plus.svg +1 -0
  10402. docsforge/themes/material/templates/.icons/material/wallet-travel.svg +1 -0
  10403. docsforge/themes/material/templates/.icons/material/wallet.svg +1 -0
  10404. docsforge/themes/material/templates/.icons/material/wallpaper.svg +1 -0
  10405. docsforge/themes/material/templates/.icons/material/wan.svg +1 -0
  10406. docsforge/themes/material/templates/.icons/material/wardrobe-outline.svg +1 -0
  10407. docsforge/themes/material/templates/.icons/material/wardrobe.svg +1 -0
  10408. docsforge/themes/material/templates/.icons/material/warehouse.svg +1 -0
  10409. docsforge/themes/material/templates/.icons/material/washing-machine-alert.svg +1 -0
  10410. docsforge/themes/material/templates/.icons/material/washing-machine-off.svg +1 -0
  10411. docsforge/themes/material/templates/.icons/material/washing-machine.svg +1 -0
  10412. docsforge/themes/material/templates/.icons/material/watch-export-variant.svg +1 -0
  10413. docsforge/themes/material/templates/.icons/material/watch-export.svg +1 -0
  10414. docsforge/themes/material/templates/.icons/material/watch-import-variant.svg +1 -0
  10415. docsforge/themes/material/templates/.icons/material/watch-import.svg +1 -0
  10416. docsforge/themes/material/templates/.icons/material/watch-variant.svg +1 -0
  10417. docsforge/themes/material/templates/.icons/material/watch-vibrate-off.svg +1 -0
  10418. docsforge/themes/material/templates/.icons/material/watch-vibrate.svg +1 -0
  10419. docsforge/themes/material/templates/.icons/material/watch.svg +1 -0
  10420. docsforge/themes/material/templates/.icons/material/water-alert-outline.svg +1 -0
  10421. docsforge/themes/material/templates/.icons/material/water-alert.svg +1 -0
  10422. docsforge/themes/material/templates/.icons/material/water-boiler-alert.svg +1 -0
  10423. docsforge/themes/material/templates/.icons/material/water-boiler-auto.svg +1 -0
  10424. docsforge/themes/material/templates/.icons/material/water-boiler-off.svg +1 -0
  10425. docsforge/themes/material/templates/.icons/material/water-boiler.svg +1 -0
  10426. docsforge/themes/material/templates/.icons/material/water-check-outline.svg +1 -0
  10427. docsforge/themes/material/templates/.icons/material/water-check.svg +1 -0
  10428. docsforge/themes/material/templates/.icons/material/water-circle.svg +1 -0
  10429. docsforge/themes/material/templates/.icons/material/water-minus-outline.svg +1 -0
  10430. docsforge/themes/material/templates/.icons/material/water-minus.svg +1 -0
  10431. docsforge/themes/material/templates/.icons/material/water-off-outline.svg +1 -0
  10432. docsforge/themes/material/templates/.icons/material/water-off.svg +1 -0
  10433. docsforge/themes/material/templates/.icons/material/water-opacity.svg +1 -0
  10434. docsforge/themes/material/templates/.icons/material/water-outline.svg +1 -0
  10435. docsforge/themes/material/templates/.icons/material/water-percent-alert.svg +1 -0
  10436. docsforge/themes/material/templates/.icons/material/water-percent.svg +1 -0
  10437. docsforge/themes/material/templates/.icons/material/water-plus-outline.svg +1 -0
  10438. docsforge/themes/material/templates/.icons/material/water-plus.svg +1 -0
  10439. docsforge/themes/material/templates/.icons/material/water-polo.svg +1 -0
  10440. docsforge/themes/material/templates/.icons/material/water-pump-off.svg +1 -0
  10441. docsforge/themes/material/templates/.icons/material/water-pump.svg +1 -0
  10442. docsforge/themes/material/templates/.icons/material/water-remove-outline.svg +1 -0
  10443. docsforge/themes/material/templates/.icons/material/water-remove.svg +1 -0
  10444. docsforge/themes/material/templates/.icons/material/water-sync.svg +1 -0
  10445. docsforge/themes/material/templates/.icons/material/water-thermometer-outline.svg +1 -0
  10446. docsforge/themes/material/templates/.icons/material/water-thermometer.svg +1 -0
  10447. docsforge/themes/material/templates/.icons/material/water-well-outline.svg +1 -0
  10448. docsforge/themes/material/templates/.icons/material/water-well.svg +1 -0
  10449. docsforge/themes/material/templates/.icons/material/water.svg +1 -0
  10450. docsforge/themes/material/templates/.icons/material/waterfall.svg +1 -0
  10451. docsforge/themes/material/templates/.icons/material/watering-can-outline.svg +1 -0
  10452. docsforge/themes/material/templates/.icons/material/watering-can.svg +1 -0
  10453. docsforge/themes/material/templates/.icons/material/watermark.svg +1 -0
  10454. docsforge/themes/material/templates/.icons/material/wave-arrow-down.svg +1 -0
  10455. docsforge/themes/material/templates/.icons/material/wave-arrow-up.svg +1 -0
  10456. docsforge/themes/material/templates/.icons/material/wave-undercurrent.svg +1 -0
  10457. docsforge/themes/material/templates/.icons/material/wave.svg +1 -0
  10458. docsforge/themes/material/templates/.icons/material/waveform.svg +1 -0
  10459. docsforge/themes/material/templates/.icons/material/waves-arrow-left.svg +1 -0
  10460. docsforge/themes/material/templates/.icons/material/waves-arrow-right.svg +1 -0
  10461. docsforge/themes/material/templates/.icons/material/waves-arrow-up.svg +1 -0
  10462. docsforge/themes/material/templates/.icons/material/waves.svg +1 -0
  10463. docsforge/themes/material/templates/.icons/material/waze.svg +1 -0
  10464. docsforge/themes/material/templates/.icons/material/weather-cloudy-alert.svg +1 -0
  10465. docsforge/themes/material/templates/.icons/material/weather-cloudy-arrow-right.svg +1 -0
  10466. docsforge/themes/material/templates/.icons/material/weather-cloudy-clock.svg +1 -0
  10467. docsforge/themes/material/templates/.icons/material/weather-cloudy.svg +1 -0
  10468. docsforge/themes/material/templates/.icons/material/weather-dust.svg +1 -0
  10469. docsforge/themes/material/templates/.icons/material/weather-fog.svg +1 -0
  10470. docsforge/themes/material/templates/.icons/material/weather-hail.svg +1 -0
  10471. docsforge/themes/material/templates/.icons/material/weather-hazy.svg +1 -0
  10472. docsforge/themes/material/templates/.icons/material/weather-hurricane-outline.svg +1 -0
  10473. docsforge/themes/material/templates/.icons/material/weather-hurricane.svg +1 -0
  10474. docsforge/themes/material/templates/.icons/material/weather-lightning-rainy.svg +1 -0
  10475. docsforge/themes/material/templates/.icons/material/weather-lightning.svg +1 -0
  10476. docsforge/themes/material/templates/.icons/material/weather-moonset-down.svg +1 -0
  10477. docsforge/themes/material/templates/.icons/material/weather-moonset-up.svg +1 -0
  10478. docsforge/themes/material/templates/.icons/material/weather-moonset.svg +1 -0
  10479. docsforge/themes/material/templates/.icons/material/weather-night-partly-cloudy.svg +1 -0
  10480. docsforge/themes/material/templates/.icons/material/weather-night.svg +1 -0
  10481. docsforge/themes/material/templates/.icons/material/weather-partly-cloudy.svg +1 -0
  10482. docsforge/themes/material/templates/.icons/material/weather-partly-lightning.svg +1 -0
  10483. docsforge/themes/material/templates/.icons/material/weather-partly-rainy.svg +1 -0
  10484. docsforge/themes/material/templates/.icons/material/weather-partly-snowy-rainy.svg +1 -0
  10485. docsforge/themes/material/templates/.icons/material/weather-partly-snowy.svg +1 -0
  10486. docsforge/themes/material/templates/.icons/material/weather-pouring.svg +1 -0
  10487. docsforge/themes/material/templates/.icons/material/weather-rainy.svg +1 -0
  10488. docsforge/themes/material/templates/.icons/material/weather-snowy-heavy.svg +1 -0
  10489. docsforge/themes/material/templates/.icons/material/weather-snowy-rainy.svg +1 -0
  10490. docsforge/themes/material/templates/.icons/material/weather-snowy.svg +1 -0
  10491. docsforge/themes/material/templates/.icons/material/weather-sunny-alert.svg +1 -0
  10492. docsforge/themes/material/templates/.icons/material/weather-sunny-off.svg +1 -0
  10493. docsforge/themes/material/templates/.icons/material/weather-sunny.svg +1 -0
  10494. docsforge/themes/material/templates/.icons/material/weather-sunset-down.svg +1 -0
  10495. docsforge/themes/material/templates/.icons/material/weather-sunset-up.svg +1 -0
  10496. docsforge/themes/material/templates/.icons/material/weather-sunset.svg +1 -0
  10497. docsforge/themes/material/templates/.icons/material/weather-tornado.svg +1 -0
  10498. docsforge/themes/material/templates/.icons/material/weather-windy-variant.svg +1 -0
  10499. docsforge/themes/material/templates/.icons/material/weather-windy.svg +1 -0
  10500. docsforge/themes/material/templates/.icons/material/web-box.svg +1 -0
  10501. docsforge/themes/material/templates/.icons/material/web-cancel.svg +1 -0
  10502. docsforge/themes/material/templates/.icons/material/web-check.svg +1 -0
  10503. docsforge/themes/material/templates/.icons/material/web-clock.svg +1 -0
  10504. docsforge/themes/material/templates/.icons/material/web-minus.svg +1 -0
  10505. docsforge/themes/material/templates/.icons/material/web-off.svg +1 -0
  10506. docsforge/themes/material/templates/.icons/material/web-plus.svg +1 -0
  10507. docsforge/themes/material/templates/.icons/material/web-refresh.svg +1 -0
  10508. docsforge/themes/material/templates/.icons/material/web-remove.svg +1 -0
  10509. docsforge/themes/material/templates/.icons/material/web-sync.svg +1 -0
  10510. docsforge/themes/material/templates/.icons/material/web.svg +1 -0
  10511. docsforge/themes/material/templates/.icons/material/webcam-off.svg +1 -0
  10512. docsforge/themes/material/templates/.icons/material/webcam.svg +1 -0
  10513. docsforge/themes/material/templates/.icons/material/webhook.svg +1 -0
  10514. docsforge/themes/material/templates/.icons/material/webpack.svg +1 -0
  10515. docsforge/themes/material/templates/.icons/material/webrtc.svg +1 -0
  10516. docsforge/themes/material/templates/.icons/material/wechat.svg +1 -0
  10517. docsforge/themes/material/templates/.icons/material/weight-gram.svg +1 -0
  10518. docsforge/themes/material/templates/.icons/material/weight-kilogram.svg +1 -0
  10519. docsforge/themes/material/templates/.icons/material/weight-lifter.svg +1 -0
  10520. docsforge/themes/material/templates/.icons/material/weight-pound.svg +1 -0
  10521. docsforge/themes/material/templates/.icons/material/weight.svg +1 -0
  10522. docsforge/themes/material/templates/.icons/material/whatsapp.svg +1 -0
  10523. docsforge/themes/material/templates/.icons/material/wheel-barrow.svg +1 -0
  10524. docsforge/themes/material/templates/.icons/material/wheelchair-accessibility.svg +1 -0
  10525. docsforge/themes/material/templates/.icons/material/wheelchair.svg +1 -0
  10526. docsforge/themes/material/templates/.icons/material/whistle-outline.svg +1 -0
  10527. docsforge/themes/material/templates/.icons/material/whistle.svg +1 -0
  10528. docsforge/themes/material/templates/.icons/material/white-balance-auto.svg +1 -0
  10529. docsforge/themes/material/templates/.icons/material/white-balance-incandescent.svg +1 -0
  10530. docsforge/themes/material/templates/.icons/material/white-balance-iridescent.svg +1 -0
  10531. docsforge/themes/material/templates/.icons/material/white-balance-sunny.svg +1 -0
  10532. docsforge/themes/material/templates/.icons/material/widgets-outline.svg +1 -0
  10533. docsforge/themes/material/templates/.icons/material/widgets.svg +1 -0
  10534. docsforge/themes/material/templates/.icons/material/wifi-alert.svg +1 -0
  10535. docsforge/themes/material/templates/.icons/material/wifi-arrow-down.svg +1 -0
  10536. docsforge/themes/material/templates/.icons/material/wifi-arrow-left-right.svg +1 -0
  10537. docsforge/themes/material/templates/.icons/material/wifi-arrow-left.svg +1 -0
  10538. docsforge/themes/material/templates/.icons/material/wifi-arrow-right.svg +1 -0
  10539. docsforge/themes/material/templates/.icons/material/wifi-arrow-up-down.svg +1 -0
  10540. docsforge/themes/material/templates/.icons/material/wifi-arrow-up.svg +1 -0
  10541. docsforge/themes/material/templates/.icons/material/wifi-cancel.svg +1 -0
  10542. docsforge/themes/material/templates/.icons/material/wifi-check.svg +1 -0
  10543. docsforge/themes/material/templates/.icons/material/wifi-cog.svg +1 -0
  10544. docsforge/themes/material/templates/.icons/material/wifi-lock-open.svg +1 -0
  10545. docsforge/themes/material/templates/.icons/material/wifi-lock.svg +1 -0
  10546. docsforge/themes/material/templates/.icons/material/wifi-marker.svg +1 -0
  10547. docsforge/themes/material/templates/.icons/material/wifi-minus.svg +1 -0
  10548. docsforge/themes/material/templates/.icons/material/wifi-off.svg +1 -0
  10549. docsforge/themes/material/templates/.icons/material/wifi-plus.svg +1 -0
  10550. docsforge/themes/material/templates/.icons/material/wifi-refresh.svg +1 -0
  10551. docsforge/themes/material/templates/.icons/material/wifi-remove.svg +1 -0
  10552. docsforge/themes/material/templates/.icons/material/wifi-settings.svg +1 -0
  10553. docsforge/themes/material/templates/.icons/material/wifi-star.svg +1 -0
  10554. docsforge/themes/material/templates/.icons/material/wifi-strength-1-alert.svg +1 -0
  10555. docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock-open.svg +1 -0
  10556. docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock.svg +1 -0
  10557. docsforge/themes/material/templates/.icons/material/wifi-strength-1.svg +1 -0
  10558. docsforge/themes/material/templates/.icons/material/wifi-strength-2-alert.svg +1 -0
  10559. docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock-open.svg +1 -0
  10560. docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock.svg +1 -0
  10561. docsforge/themes/material/templates/.icons/material/wifi-strength-2.svg +1 -0
  10562. docsforge/themes/material/templates/.icons/material/wifi-strength-3-alert.svg +1 -0
  10563. docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock-open.svg +1 -0
  10564. docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock.svg +1 -0
  10565. docsforge/themes/material/templates/.icons/material/wifi-strength-3.svg +1 -0
  10566. docsforge/themes/material/templates/.icons/material/wifi-strength-4-alert.svg +1 -0
  10567. docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock-open.svg +1 -0
  10568. docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock.svg +1 -0
  10569. docsforge/themes/material/templates/.icons/material/wifi-strength-4.svg +1 -0
  10570. docsforge/themes/material/templates/.icons/material/wifi-strength-alert-outline.svg +1 -0
  10571. docsforge/themes/material/templates/.icons/material/wifi-strength-lock-open-outline.svg +1 -0
  10572. docsforge/themes/material/templates/.icons/material/wifi-strength-lock-outline.svg +1 -0
  10573. docsforge/themes/material/templates/.icons/material/wifi-strength-off-outline.svg +1 -0
  10574. docsforge/themes/material/templates/.icons/material/wifi-strength-off.svg +1 -0
  10575. docsforge/themes/material/templates/.icons/material/wifi-strength-outline.svg +1 -0
  10576. docsforge/themes/material/templates/.icons/material/wifi-sync.svg +1 -0
  10577. docsforge/themes/material/templates/.icons/material/wifi.svg +1 -0
  10578. docsforge/themes/material/templates/.icons/material/wikipedia.svg +1 -0
  10579. docsforge/themes/material/templates/.icons/material/wind-power-outline.svg +1 -0
  10580. docsforge/themes/material/templates/.icons/material/wind-power.svg +1 -0
  10581. docsforge/themes/material/templates/.icons/material/wind-turbine-alert.svg +1 -0
  10582. docsforge/themes/material/templates/.icons/material/wind-turbine-check.svg +1 -0
  10583. docsforge/themes/material/templates/.icons/material/wind-turbine.svg +1 -0
  10584. docsforge/themes/material/templates/.icons/material/window-close.svg +1 -0
  10585. docsforge/themes/material/templates/.icons/material/window-closed-variant.svg +1 -0
  10586. docsforge/themes/material/templates/.icons/material/window-closed.svg +1 -0
  10587. docsforge/themes/material/templates/.icons/material/window-maximize.svg +1 -0
  10588. docsforge/themes/material/templates/.icons/material/window-minimize.svg +1 -0
  10589. docsforge/themes/material/templates/.icons/material/window-open-variant.svg +1 -0
  10590. docsforge/themes/material/templates/.icons/material/window-open.svg +1 -0
  10591. docsforge/themes/material/templates/.icons/material/window-restore.svg +1 -0
  10592. docsforge/themes/material/templates/.icons/material/window-shutter-alert.svg +1 -0
  10593. docsforge/themes/material/templates/.icons/material/window-shutter-auto.svg +1 -0
  10594. docsforge/themes/material/templates/.icons/material/window-shutter-cog.svg +1 -0
  10595. docsforge/themes/material/templates/.icons/material/window-shutter-open.svg +1 -0
  10596. docsforge/themes/material/templates/.icons/material/window-shutter-settings.svg +1 -0
  10597. docsforge/themes/material/templates/.icons/material/window-shutter.svg +1 -0
  10598. docsforge/themes/material/templates/.icons/material/windsock.svg +1 -0
  10599. docsforge/themes/material/templates/.icons/material/wiper-wash-alert.svg +1 -0
  10600. docsforge/themes/material/templates/.icons/material/wiper-wash.svg +1 -0
  10601. docsforge/themes/material/templates/.icons/material/wiper.svg +1 -0
  10602. docsforge/themes/material/templates/.icons/material/wizard-hat.svg +1 -0
  10603. docsforge/themes/material/templates/.icons/material/wordpress.svg +1 -0
  10604. docsforge/themes/material/templates/.icons/material/wrap-disabled.svg +1 -0
  10605. docsforge/themes/material/templates/.icons/material/wrap.svg +1 -0
  10606. docsforge/themes/material/templates/.icons/material/wrench-check-outline.svg +1 -0
  10607. docsforge/themes/material/templates/.icons/material/wrench-check.svg +1 -0
  10608. docsforge/themes/material/templates/.icons/material/wrench-clock-outline.svg +1 -0
  10609. docsforge/themes/material/templates/.icons/material/wrench-clock.svg +1 -0
  10610. docsforge/themes/material/templates/.icons/material/wrench-cog-outline.svg +1 -0
  10611. docsforge/themes/material/templates/.icons/material/wrench-cog.svg +1 -0
  10612. docsforge/themes/material/templates/.icons/material/wrench-outline.svg +1 -0
  10613. docsforge/themes/material/templates/.icons/material/wrench.svg +1 -0
  10614. docsforge/themes/material/templates/.icons/material/xamarin.svg +1 -0
  10615. docsforge/themes/material/templates/.icons/material/xml.svg +1 -0
  10616. docsforge/themes/material/templates/.icons/material/xmpp.svg +1 -0
  10617. docsforge/themes/material/templates/.icons/material/yahoo.svg +1 -0
  10618. docsforge/themes/material/templates/.icons/material/yeast.svg +1 -0
  10619. docsforge/themes/material/templates/.icons/material/yin-yang.svg +1 -0
  10620. docsforge/themes/material/templates/.icons/material/yoga.svg +1 -0
  10621. docsforge/themes/material/templates/.icons/material/youtube-gaming.svg +1 -0
  10622. docsforge/themes/material/templates/.icons/material/youtube-studio.svg +1 -0
  10623. docsforge/themes/material/templates/.icons/material/youtube-subscription.svg +1 -0
  10624. docsforge/themes/material/templates/.icons/material/youtube-tv.svg +1 -0
  10625. docsforge/themes/material/templates/.icons/material/youtube.svg +1 -0
  10626. docsforge/themes/material/templates/.icons/material/yurt.svg +1 -0
  10627. docsforge/themes/material/templates/.icons/material/z-wave.svg +1 -0
  10628. docsforge/themes/material/templates/.icons/material/zend.svg +1 -0
  10629. docsforge/themes/material/templates/.icons/material/zigbee.svg +1 -0
  10630. docsforge/themes/material/templates/.icons/material/zip-box-outline.svg +1 -0
  10631. docsforge/themes/material/templates/.icons/material/zip-box.svg +1 -0
  10632. docsforge/themes/material/templates/.icons/material/zip-disk.svg +1 -0
  10633. docsforge/themes/material/templates/.icons/material/zodiac-aquarius.svg +1 -0
  10634. docsforge/themes/material/templates/.icons/material/zodiac-aries.svg +1 -0
  10635. docsforge/themes/material/templates/.icons/material/zodiac-cancer.svg +1 -0
  10636. docsforge/themes/material/templates/.icons/material/zodiac-capricorn.svg +1 -0
  10637. docsforge/themes/material/templates/.icons/material/zodiac-gemini.svg +1 -0
  10638. docsforge/themes/material/templates/.icons/material/zodiac-leo.svg +1 -0
  10639. docsforge/themes/material/templates/.icons/material/zodiac-libra.svg +1 -0
  10640. docsforge/themes/material/templates/.icons/material/zodiac-pisces.svg +1 -0
  10641. docsforge/themes/material/templates/.icons/material/zodiac-sagittarius.svg +1 -0
  10642. docsforge/themes/material/templates/.icons/material/zodiac-scorpio.svg +1 -0
  10643. docsforge/themes/material/templates/.icons/material/zodiac-taurus.svg +1 -0
  10644. docsforge/themes/material/templates/.icons/material/zodiac-virgo.svg +1 -0
  10645. docsforge/themes/material/templates/.icons/octicons/LICENSE +21 -0
  10646. docsforge/themes/material/templates/.icons/octicons/accessibility-16.svg +1 -0
  10647. docsforge/themes/material/templates/.icons/octicons/accessibility-24.svg +1 -0
  10648. docsforge/themes/material/templates/.icons/octicons/accessibility-inset-16.svg +1 -0
  10649. docsforge/themes/material/templates/.icons/octicons/accessibility-inset-24.svg +1 -0
  10650. docsforge/themes/material/templates/.icons/octicons/agent-16.svg +1 -0
  10651. docsforge/themes/material/templates/.icons/octicons/agent-24.svg +1 -0
  10652. docsforge/themes/material/templates/.icons/octicons/ai-model-16.svg +1 -0
  10653. docsforge/themes/material/templates/.icons/octicons/ai-model-24.svg +1 -0
  10654. docsforge/themes/material/templates/.icons/octicons/alert-16.svg +1 -0
  10655. docsforge/themes/material/templates/.icons/octicons/alert-24.svg +1 -0
  10656. docsforge/themes/material/templates/.icons/octicons/alert-fill-12.svg +1 -0
  10657. docsforge/themes/material/templates/.icons/octicons/alert-fill-16.svg +1 -0
  10658. docsforge/themes/material/templates/.icons/octicons/alert-fill-24.svg +1 -0
  10659. docsforge/themes/material/templates/.icons/octicons/apps-16.svg +1 -0
  10660. docsforge/themes/material/templates/.icons/octicons/apps-24.svg +1 -0
  10661. docsforge/themes/material/templates/.icons/octicons/archive-16.svg +1 -0
  10662. docsforge/themes/material/templates/.icons/octicons/archive-24.svg +1 -0
  10663. docsforge/themes/material/templates/.icons/octicons/arrow-both-16.svg +1 -0
  10664. docsforge/themes/material/templates/.icons/octicons/arrow-both-24.svg +1 -0
  10665. docsforge/themes/material/templates/.icons/octicons/arrow-down-16.svg +1 -0
  10666. docsforge/themes/material/templates/.icons/octicons/arrow-down-24.svg +1 -0
  10667. docsforge/themes/material/templates/.icons/octicons/arrow-down-left-16.svg +1 -0
  10668. docsforge/themes/material/templates/.icons/octicons/arrow-down-left-24.svg +1 -0
  10669. docsforge/themes/material/templates/.icons/octicons/arrow-down-right-16.svg +1 -0
  10670. docsforge/themes/material/templates/.icons/octicons/arrow-down-right-24.svg +1 -0
  10671. docsforge/themes/material/templates/.icons/octicons/arrow-left-16.svg +1 -0
  10672. docsforge/themes/material/templates/.icons/octicons/arrow-left-24.svg +1 -0
  10673. docsforge/themes/material/templates/.icons/octicons/arrow-right-16.svg +1 -0
  10674. docsforge/themes/material/templates/.icons/octicons/arrow-right-24.svg +1 -0
  10675. docsforge/themes/material/templates/.icons/octicons/arrow-switch-16.svg +1 -0
  10676. docsforge/themes/material/templates/.icons/octicons/arrow-switch-24.svg +1 -0
  10677. docsforge/themes/material/templates/.icons/octicons/arrow-up-16.svg +1 -0
  10678. docsforge/themes/material/templates/.icons/octicons/arrow-up-24.svg +1 -0
  10679. docsforge/themes/material/templates/.icons/octicons/arrow-up-left-16.svg +1 -0
  10680. docsforge/themes/material/templates/.icons/octicons/arrow-up-left-24.svg +1 -0
  10681. docsforge/themes/material/templates/.icons/octicons/arrow-up-right-16.svg +1 -0
  10682. docsforge/themes/material/templates/.icons/octicons/arrow-up-right-24.svg +1 -0
  10683. docsforge/themes/material/templates/.icons/octicons/beaker-16.svg +1 -0
  10684. docsforge/themes/material/templates/.icons/octicons/beaker-24.svg +1 -0
  10685. docsforge/themes/material/templates/.icons/octicons/bell-16.svg +1 -0
  10686. docsforge/themes/material/templates/.icons/octicons/bell-24.svg +1 -0
  10687. docsforge/themes/material/templates/.icons/octicons/bell-fill-16.svg +1 -0
  10688. docsforge/themes/material/templates/.icons/octicons/bell-fill-24.svg +1 -0
  10689. docsforge/themes/material/templates/.icons/octicons/bell-slash-16.svg +1 -0
  10690. docsforge/themes/material/templates/.icons/octicons/bell-slash-24.svg +1 -0
  10691. docsforge/themes/material/templates/.icons/octicons/blocked-16.svg +1 -0
  10692. docsforge/themes/material/templates/.icons/octicons/blocked-24.svg +1 -0
  10693. docsforge/themes/material/templates/.icons/octicons/bold-16.svg +1 -0
  10694. docsforge/themes/material/templates/.icons/octicons/bold-24.svg +1 -0
  10695. docsforge/themes/material/templates/.icons/octicons/book-16.svg +1 -0
  10696. docsforge/themes/material/templates/.icons/octicons/book-24.svg +1 -0
  10697. docsforge/themes/material/templates/.icons/octicons/bookmark-16.svg +1 -0
  10698. docsforge/themes/material/templates/.icons/octicons/bookmark-24.svg +1 -0
  10699. docsforge/themes/material/templates/.icons/octicons/bookmark-fill-24.svg +1 -0
  10700. docsforge/themes/material/templates/.icons/octicons/bookmark-filled-16.svg +1 -0
  10701. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-16.svg +1 -0
  10702. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-24.svg +1 -0
  10703. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-16.svg +1 -0
  10704. docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-24.svg +1 -0
  10705. docsforge/themes/material/templates/.icons/octicons/boolean-off-16.svg +1 -0
  10706. docsforge/themes/material/templates/.icons/octicons/boolean-off-24.svg +1 -0
  10707. docsforge/themes/material/templates/.icons/octicons/boolean-on-16.svg +1 -0
  10708. docsforge/themes/material/templates/.icons/octicons/boolean-on-24.svg +1 -0
  10709. docsforge/themes/material/templates/.icons/octicons/briefcase-16.svg +1 -0
  10710. docsforge/themes/material/templates/.icons/octicons/briefcase-24.svg +1 -0
  10711. docsforge/themes/material/templates/.icons/octicons/broadcast-16.svg +1 -0
  10712. docsforge/themes/material/templates/.icons/octicons/broadcast-24.svg +1 -0
  10713. docsforge/themes/material/templates/.icons/octicons/browser-16.svg +1 -0
  10714. docsforge/themes/material/templates/.icons/octicons/browser-24.svg +1 -0
  10715. docsforge/themes/material/templates/.icons/octicons/bug-16.svg +1 -0
  10716. docsforge/themes/material/templates/.icons/octicons/bug-24.svg +1 -0
  10717. docsforge/themes/material/templates/.icons/octicons/cache-16.svg +1 -0
  10718. docsforge/themes/material/templates/.icons/octicons/cache-24.svg +1 -0
  10719. docsforge/themes/material/templates/.icons/octicons/calendar-16.svg +1 -0
  10720. docsforge/themes/material/templates/.icons/octicons/calendar-24.svg +1 -0
  10721. docsforge/themes/material/templates/.icons/octicons/check-16.svg +1 -0
  10722. docsforge/themes/material/templates/.icons/octicons/check-24.svg +1 -0
  10723. docsforge/themes/material/templates/.icons/octicons/check-circle-16.svg +1 -0
  10724. docsforge/themes/material/templates/.icons/octicons/check-circle-24.svg +1 -0
  10725. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-12.svg +1 -0
  10726. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-16.svg +1 -0
  10727. docsforge/themes/material/templates/.icons/octicons/check-circle-fill-24.svg +1 -0
  10728. docsforge/themes/material/templates/.icons/octicons/checkbox-16.svg +1 -0
  10729. docsforge/themes/material/templates/.icons/octicons/checkbox-24.svg +1 -0
  10730. docsforge/themes/material/templates/.icons/octicons/checkbox-fill-16.svg +1 -0
  10731. docsforge/themes/material/templates/.icons/octicons/checkbox-fill-24.svg +1 -0
  10732. docsforge/themes/material/templates/.icons/octicons/checklist-16.svg +1 -0
  10733. docsforge/themes/material/templates/.icons/octicons/checklist-24.svg +1 -0
  10734. docsforge/themes/material/templates/.icons/octicons/chevron-down-12.svg +1 -0
  10735. docsforge/themes/material/templates/.icons/octicons/chevron-down-16.svg +1 -0
  10736. docsforge/themes/material/templates/.icons/octicons/chevron-down-24.svg +1 -0
  10737. docsforge/themes/material/templates/.icons/octicons/chevron-left-12.svg +1 -0
  10738. docsforge/themes/material/templates/.icons/octicons/chevron-left-16.svg +1 -0
  10739. docsforge/themes/material/templates/.icons/octicons/chevron-left-24.svg +1 -0
  10740. docsforge/themes/material/templates/.icons/octicons/chevron-right-12.svg +1 -0
  10741. docsforge/themes/material/templates/.icons/octicons/chevron-right-16.svg +1 -0
  10742. docsforge/themes/material/templates/.icons/octicons/chevron-right-24.svg +1 -0
  10743. docsforge/themes/material/templates/.icons/octicons/chevron-up-12.svg +1 -0
  10744. docsforge/themes/material/templates/.icons/octicons/chevron-up-16.svg +1 -0
  10745. docsforge/themes/material/templates/.icons/octicons/chevron-up-24.svg +1 -0
  10746. docsforge/themes/material/templates/.icons/octicons/circle-16.svg +1 -0
  10747. docsforge/themes/material/templates/.icons/octicons/circle-24.svg +1 -0
  10748. docsforge/themes/material/templates/.icons/octicons/circle-slash-16.svg +1 -0
  10749. docsforge/themes/material/templates/.icons/octicons/circle-slash-24.svg +1 -0
  10750. docsforge/themes/material/templates/.icons/octicons/clock-16.svg +1 -0
  10751. docsforge/themes/material/templates/.icons/octicons/clock-24.svg +1 -0
  10752. docsforge/themes/material/templates/.icons/octicons/clock-fill-16.svg +1 -0
  10753. docsforge/themes/material/templates/.icons/octicons/clock-fill-24.svg +1 -0
  10754. docsforge/themes/material/templates/.icons/octicons/cloud-16.svg +1 -0
  10755. docsforge/themes/material/templates/.icons/octicons/cloud-24.svg +1 -0
  10756. docsforge/themes/material/templates/.icons/octicons/cloud-offline-16.svg +1 -0
  10757. docsforge/themes/material/templates/.icons/octicons/cloud-offline-24.svg +1 -0
  10758. docsforge/themes/material/templates/.icons/octicons/code-16.svg +1 -0
  10759. docsforge/themes/material/templates/.icons/octicons/code-24.svg +1 -0
  10760. docsforge/themes/material/templates/.icons/octicons/code-of-conduct-16.svg +1 -0
  10761. docsforge/themes/material/templates/.icons/octicons/code-of-conduct-24.svg +1 -0
  10762. docsforge/themes/material/templates/.icons/octicons/code-review-16.svg +1 -0
  10763. docsforge/themes/material/templates/.icons/octicons/code-review-24.svg +1 -0
  10764. docsforge/themes/material/templates/.icons/octicons/code-square-16.svg +1 -0
  10765. docsforge/themes/material/templates/.icons/octicons/code-square-24.svg +1 -0
  10766. docsforge/themes/material/templates/.icons/octicons/codescan-16.svg +1 -0
  10767. docsforge/themes/material/templates/.icons/octicons/codescan-24.svg +1 -0
  10768. docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-16.svg +1 -0
  10769. docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-24.svg +1 -0
  10770. docsforge/themes/material/templates/.icons/octicons/codespaces-16.svg +1 -0
  10771. docsforge/themes/material/templates/.icons/octicons/codespaces-24.svg +1 -0
  10772. docsforge/themes/material/templates/.icons/octicons/columns-16.svg +1 -0
  10773. docsforge/themes/material/templates/.icons/octicons/columns-24.svg +1 -0
  10774. docsforge/themes/material/templates/.icons/octicons/command-palette-16.svg +1 -0
  10775. docsforge/themes/material/templates/.icons/octicons/command-palette-24.svg +1 -0
  10776. docsforge/themes/material/templates/.icons/octicons/comment-16.svg +1 -0
  10777. docsforge/themes/material/templates/.icons/octicons/comment-24.svg +1 -0
  10778. docsforge/themes/material/templates/.icons/octicons/comment-ai-16.svg +1 -0
  10779. docsforge/themes/material/templates/.icons/octicons/comment-ai-24.svg +1 -0
  10780. docsforge/themes/material/templates/.icons/octicons/comment-discussion-16.svg +1 -0
  10781. docsforge/themes/material/templates/.icons/octicons/comment-discussion-24.svg +1 -0
  10782. docsforge/themes/material/templates/.icons/octicons/compose-16.svg +1 -0
  10783. docsforge/themes/material/templates/.icons/octicons/compose-24.svg +1 -0
  10784. docsforge/themes/material/templates/.icons/octicons/container-16.svg +1 -0
  10785. docsforge/themes/material/templates/.icons/octicons/container-24.svg +1 -0
  10786. docsforge/themes/material/templates/.icons/octicons/copilot-16.svg +1 -0
  10787. docsforge/themes/material/templates/.icons/octicons/copilot-24.svg +1 -0
  10788. docsforge/themes/material/templates/.icons/octicons/copilot-48.svg +1 -0
  10789. docsforge/themes/material/templates/.icons/octicons/copilot-96.svg +1 -0
  10790. docsforge/themes/material/templates/.icons/octicons/copilot-error-16.svg +1 -0
  10791. docsforge/themes/material/templates/.icons/octicons/copilot-warning-16.svg +1 -0
  10792. docsforge/themes/material/templates/.icons/octicons/copy-16.svg +1 -0
  10793. docsforge/themes/material/templates/.icons/octicons/copy-24.svg +1 -0
  10794. docsforge/themes/material/templates/.icons/octicons/cpu-16.svg +1 -0
  10795. docsforge/themes/material/templates/.icons/octicons/cpu-24.svg +1 -0
  10796. docsforge/themes/material/templates/.icons/octicons/credit-card-16.svg +1 -0
  10797. docsforge/themes/material/templates/.icons/octicons/credit-card-24.svg +1 -0
  10798. docsforge/themes/material/templates/.icons/octicons/cross-reference-16.svg +1 -0
  10799. docsforge/themes/material/templates/.icons/octicons/cross-reference-24.svg +1 -0
  10800. docsforge/themes/material/templates/.icons/octicons/crosshairs-16.svg +1 -0
  10801. docsforge/themes/material/templates/.icons/octicons/crosshairs-24.svg +1 -0
  10802. docsforge/themes/material/templates/.icons/octicons/dash-16.svg +1 -0
  10803. docsforge/themes/material/templates/.icons/octicons/dash-24.svg +1 -0
  10804. docsforge/themes/material/templates/.icons/octicons/database-16.svg +1 -0
  10805. docsforge/themes/material/templates/.icons/octicons/database-24.svg +1 -0
  10806. docsforge/themes/material/templates/.icons/octicons/dependabot-16.svg +1 -0
  10807. docsforge/themes/material/templates/.icons/octicons/dependabot-24.svg +1 -0
  10808. docsforge/themes/material/templates/.icons/octicons/desktop-download-16.svg +1 -0
  10809. docsforge/themes/material/templates/.icons/octicons/desktop-download-24.svg +1 -0
  10810. docsforge/themes/material/templates/.icons/octicons/device-camera-16.svg +1 -0
  10811. docsforge/themes/material/templates/.icons/octicons/device-camera-24.svg +1 -0
  10812. docsforge/themes/material/templates/.icons/octicons/device-camera-video-16.svg +1 -0
  10813. docsforge/themes/material/templates/.icons/octicons/device-camera-video-24.svg +1 -0
  10814. docsforge/themes/material/templates/.icons/octicons/device-desktop-16.svg +1 -0
  10815. docsforge/themes/material/templates/.icons/octicons/device-desktop-24.svg +1 -0
  10816. docsforge/themes/material/templates/.icons/octicons/device-mobile-16.svg +1 -0
  10817. docsforge/themes/material/templates/.icons/octicons/device-mobile-24.svg +1 -0
  10818. docsforge/themes/material/templates/.icons/octicons/devices-16.svg +1 -0
  10819. docsforge/themes/material/templates/.icons/octicons/devices-24.svg +1 -0
  10820. docsforge/themes/material/templates/.icons/octicons/diamond-16.svg +1 -0
  10821. docsforge/themes/material/templates/.icons/octicons/diamond-24.svg +1 -0
  10822. docsforge/themes/material/templates/.icons/octicons/dice-16.svg +1 -0
  10823. docsforge/themes/material/templates/.icons/octicons/dice-24.svg +1 -0
  10824. docsforge/themes/material/templates/.icons/octicons/diff-16.svg +1 -0
  10825. docsforge/themes/material/templates/.icons/octicons/diff-24.svg +1 -0
  10826. docsforge/themes/material/templates/.icons/octicons/diff-added-16.svg +1 -0
  10827. docsforge/themes/material/templates/.icons/octicons/diff-added-24.svg +1 -0
  10828. docsforge/themes/material/templates/.icons/octicons/diff-ignored-16.svg +1 -0
  10829. docsforge/themes/material/templates/.icons/octicons/diff-ignored-24.svg +1 -0
  10830. docsforge/themes/material/templates/.icons/octicons/diff-modified-16.svg +1 -0
  10831. docsforge/themes/material/templates/.icons/octicons/diff-modified-24.svg +1 -0
  10832. docsforge/themes/material/templates/.icons/octicons/diff-removed-16.svg +1 -0
  10833. docsforge/themes/material/templates/.icons/octicons/diff-removed-24.svg +1 -0
  10834. docsforge/themes/material/templates/.icons/octicons/diff-renamed-16.svg +1 -0
  10835. docsforge/themes/material/templates/.icons/octicons/diff-renamed-24.svg +1 -0
  10836. docsforge/themes/material/templates/.icons/octicons/discussion-closed-16.svg +1 -0
  10837. docsforge/themes/material/templates/.icons/octicons/discussion-closed-24.svg +1 -0
  10838. docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-16.svg +1 -0
  10839. docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-24.svg +1 -0
  10840. docsforge/themes/material/templates/.icons/octicons/discussion-outdated-16.svg +1 -0
  10841. docsforge/themes/material/templates/.icons/octicons/discussion-outdated-24.svg +1 -0
  10842. docsforge/themes/material/templates/.icons/octicons/dot-16.svg +1 -0
  10843. docsforge/themes/material/templates/.icons/octicons/dot-24.svg +1 -0
  10844. docsforge/themes/material/templates/.icons/octicons/dot-fill-16.svg +1 -0
  10845. docsforge/themes/material/templates/.icons/octicons/dot-fill-24.svg +1 -0
  10846. docsforge/themes/material/templates/.icons/octicons/download-16.svg +1 -0
  10847. docsforge/themes/material/templates/.icons/octicons/download-24.svg +1 -0
  10848. docsforge/themes/material/templates/.icons/octicons/duplicate-16.svg +1 -0
  10849. docsforge/themes/material/templates/.icons/octicons/duplicate-24.svg +1 -0
  10850. docsforge/themes/material/templates/.icons/octicons/ellipsis-16.svg +1 -0
  10851. docsforge/themes/material/templates/.icons/octicons/ellipsis-24.svg +1 -0
  10852. docsforge/themes/material/templates/.icons/octicons/exclamation-16.svg +1 -0
  10853. docsforge/themes/material/templates/.icons/octicons/exclamation-24.svg +1 -0
  10854. docsforge/themes/material/templates/.icons/octicons/eye-16.svg +1 -0
  10855. docsforge/themes/material/templates/.icons/octicons/eye-24.svg +1 -0
  10856. docsforge/themes/material/templates/.icons/octicons/eye-closed-16.svg +1 -0
  10857. docsforge/themes/material/templates/.icons/octicons/eye-closed-24.svg +1 -0
  10858. docsforge/themes/material/templates/.icons/octicons/feed-discussion-16.svg +1 -0
  10859. docsforge/themes/material/templates/.icons/octicons/feed-forked-16.svg +1 -0
  10860. docsforge/themes/material/templates/.icons/octicons/feed-heart-16.svg +1 -0
  10861. docsforge/themes/material/templates/.icons/octicons/feed-issue-closed-16.svg +1 -0
  10862. docsforge/themes/material/templates/.icons/octicons/feed-issue-draft-16.svg +1 -0
  10863. docsforge/themes/material/templates/.icons/octicons/feed-issue-open-16.svg +1 -0
  10864. docsforge/themes/material/templates/.icons/octicons/feed-issue-reopen-16.svg +1 -0
  10865. docsforge/themes/material/templates/.icons/octicons/feed-merged-16.svg +1 -0
  10866. docsforge/themes/material/templates/.icons/octicons/feed-person-16.svg +1 -0
  10867. docsforge/themes/material/templates/.icons/octicons/feed-plus-16.svg +1 -0
  10868. docsforge/themes/material/templates/.icons/octicons/feed-public-16.svg +1 -0
  10869. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-closed-16.svg +1 -0
  10870. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-draft-16.svg +1 -0
  10871. docsforge/themes/material/templates/.icons/octicons/feed-pull-request-open-16.svg +1 -0
  10872. docsforge/themes/material/templates/.icons/octicons/feed-repo-16.svg +1 -0
  10873. docsforge/themes/material/templates/.icons/octicons/feed-rocket-16.svg +1 -0
  10874. docsforge/themes/material/templates/.icons/octicons/feed-star-16.svg +1 -0
  10875. docsforge/themes/material/templates/.icons/octicons/feed-tag-16.svg +1 -0
  10876. docsforge/themes/material/templates/.icons/octicons/feed-trophy-16.svg +1 -0
  10877. docsforge/themes/material/templates/.icons/octicons/file-16.svg +1 -0
  10878. docsforge/themes/material/templates/.icons/octicons/file-24.svg +1 -0
  10879. docsforge/themes/material/templates/.icons/octicons/file-added-16.svg +1 -0
  10880. docsforge/themes/material/templates/.icons/octicons/file-added-24.svg +1 -0
  10881. docsforge/themes/material/templates/.icons/octicons/file-badge-16.svg +1 -0
  10882. docsforge/themes/material/templates/.icons/octicons/file-badge-24.svg +1 -0
  10883. docsforge/themes/material/templates/.icons/octicons/file-binary-16.svg +1 -0
  10884. docsforge/themes/material/templates/.icons/octicons/file-binary-24.svg +1 -0
  10885. docsforge/themes/material/templates/.icons/octicons/file-check-16.svg +1 -0
  10886. docsforge/themes/material/templates/.icons/octicons/file-check-24.svg +1 -0
  10887. docsforge/themes/material/templates/.icons/octicons/file-code-16.svg +1 -0
  10888. docsforge/themes/material/templates/.icons/octicons/file-code-24.svg +1 -0
  10889. docsforge/themes/material/templates/.icons/octicons/file-diff-16.svg +1 -0
  10890. docsforge/themes/material/templates/.icons/octicons/file-diff-24.svg +1 -0
  10891. docsforge/themes/material/templates/.icons/octicons/file-directory-16.svg +1 -0
  10892. docsforge/themes/material/templates/.icons/octicons/file-directory-24.svg +1 -0
  10893. docsforge/themes/material/templates/.icons/octicons/file-directory-fill-16.svg +1 -0
  10894. docsforge/themes/material/templates/.icons/octicons/file-directory-fill-24.svg +1 -0
  10895. docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-16.svg +1 -0
  10896. docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-24.svg +1 -0
  10897. docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-16.svg +1 -0
  10898. docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-24.svg +1 -0
  10899. docsforge/themes/material/templates/.icons/octicons/file-media-16.svg +1 -0
  10900. docsforge/themes/material/templates/.icons/octicons/file-media-24.svg +1 -0
  10901. docsforge/themes/material/templates/.icons/octicons/file-moved-16.svg +1 -0
  10902. docsforge/themes/material/templates/.icons/octicons/file-moved-24.svg +1 -0
  10903. docsforge/themes/material/templates/.icons/octicons/file-removed-16.svg +1 -0
  10904. docsforge/themes/material/templates/.icons/octicons/file-removed-24.svg +1 -0
  10905. docsforge/themes/material/templates/.icons/octicons/file-submodule-16.svg +1 -0
  10906. docsforge/themes/material/templates/.icons/octicons/file-submodule-24.svg +1 -0
  10907. docsforge/themes/material/templates/.icons/octicons/file-symlink-file-16.svg +1 -0
  10908. docsforge/themes/material/templates/.icons/octicons/file-symlink-file-24.svg +1 -0
  10909. docsforge/themes/material/templates/.icons/octicons/file-zip-16.svg +1 -0
  10910. docsforge/themes/material/templates/.icons/octicons/file-zip-24.svg +1 -0
  10911. docsforge/themes/material/templates/.icons/octicons/filter-16.svg +1 -0
  10912. docsforge/themes/material/templates/.icons/octicons/filter-24.svg +1 -0
  10913. docsforge/themes/material/templates/.icons/octicons/filter-remove-16.svg +1 -0
  10914. docsforge/themes/material/templates/.icons/octicons/filter-remove-24.svg +1 -0
  10915. docsforge/themes/material/templates/.icons/octicons/fiscal-host-16.svg +1 -0
  10916. docsforge/themes/material/templates/.icons/octicons/fiscal-host-24.svg +1 -0
  10917. docsforge/themes/material/templates/.icons/octicons/flame-16.svg +1 -0
  10918. docsforge/themes/material/templates/.icons/octicons/flame-24.svg +1 -0
  10919. docsforge/themes/material/templates/.icons/octicons/flowchart-16.svg +1 -0
  10920. docsforge/themes/material/templates/.icons/octicons/flowchart-24.svg +1 -0
  10921. docsforge/themes/material/templates/.icons/octicons/focus-center-16.svg +1 -0
  10922. docsforge/themes/material/templates/.icons/octicons/focus-center-24.svg +1 -0
  10923. docsforge/themes/material/templates/.icons/octicons/fold-16.svg +1 -0
  10924. docsforge/themes/material/templates/.icons/octicons/fold-24.svg +1 -0
  10925. docsforge/themes/material/templates/.icons/octicons/fold-down-16.svg +1 -0
  10926. docsforge/themes/material/templates/.icons/octicons/fold-down-24.svg +1 -0
  10927. docsforge/themes/material/templates/.icons/octicons/fold-up-16.svg +1 -0
  10928. docsforge/themes/material/templates/.icons/octicons/fold-up-24.svg +1 -0
  10929. docsforge/themes/material/templates/.icons/octicons/gear-16.svg +1 -0
  10930. docsforge/themes/material/templates/.icons/octicons/gear-24.svg +1 -0
  10931. docsforge/themes/material/templates/.icons/octicons/gift-16.svg +1 -0
  10932. docsforge/themes/material/templates/.icons/octicons/gift-24.svg +1 -0
  10933. docsforge/themes/material/templates/.icons/octicons/git-branch-16.svg +1 -0
  10934. docsforge/themes/material/templates/.icons/octicons/git-branch-24.svg +1 -0
  10935. docsforge/themes/material/templates/.icons/octicons/git-branch-check-16.svg +1 -0
  10936. docsforge/themes/material/templates/.icons/octicons/git-branch-check-24.svg +1 -0
  10937. docsforge/themes/material/templates/.icons/octicons/git-commit-16.svg +1 -0
  10938. docsforge/themes/material/templates/.icons/octicons/git-commit-24.svg +1 -0
  10939. docsforge/themes/material/templates/.icons/octicons/git-compare-16.svg +1 -0
  10940. docsforge/themes/material/templates/.icons/octicons/git-compare-24.svg +1 -0
  10941. docsforge/themes/material/templates/.icons/octicons/git-merge-16.svg +1 -0
  10942. docsforge/themes/material/templates/.icons/octicons/git-merge-24.svg +1 -0
  10943. docsforge/themes/material/templates/.icons/octicons/git-merge-queue-16.svg +1 -0
  10944. docsforge/themes/material/templates/.icons/octicons/git-merge-queue-24.svg +1 -0
  10945. docsforge/themes/material/templates/.icons/octicons/git-pull-request-16.svg +1 -0
  10946. docsforge/themes/material/templates/.icons/octicons/git-pull-request-24.svg +1 -0
  10947. docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-16.svg +1 -0
  10948. docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-24.svg +1 -0
  10949. docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-16.svg +1 -0
  10950. docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-24.svg +1 -0
  10951. docsforge/themes/material/templates/.icons/octicons/globe-16.svg +1 -0
  10952. docsforge/themes/material/templates/.icons/octicons/globe-24.svg +1 -0
  10953. docsforge/themes/material/templates/.icons/octicons/goal-16.svg +1 -0
  10954. docsforge/themes/material/templates/.icons/octicons/goal-24.svg +1 -0
  10955. docsforge/themes/material/templates/.icons/octicons/grabber-16.svg +1 -0
  10956. docsforge/themes/material/templates/.icons/octicons/grabber-24.svg +1 -0
  10957. docsforge/themes/material/templates/.icons/octicons/graph-16.svg +1 -0
  10958. docsforge/themes/material/templates/.icons/octicons/graph-24.svg +1 -0
  10959. docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-16.svg +1 -0
  10960. docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-24.svg +1 -0
  10961. docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-16.svg +1 -0
  10962. docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-24.svg +1 -0
  10963. docsforge/themes/material/templates/.icons/octicons/hash-16.svg +1 -0
  10964. docsforge/themes/material/templates/.icons/octicons/hash-24.svg +1 -0
  10965. docsforge/themes/material/templates/.icons/octicons/heading-16.svg +1 -0
  10966. docsforge/themes/material/templates/.icons/octicons/heading-24.svg +1 -0
  10967. docsforge/themes/material/templates/.icons/octicons/heart-16.svg +1 -0
  10968. docsforge/themes/material/templates/.icons/octicons/heart-24.svg +1 -0
  10969. docsforge/themes/material/templates/.icons/octicons/heart-fill-16.svg +1 -0
  10970. docsforge/themes/material/templates/.icons/octicons/heart-fill-24.svg +1 -0
  10971. docsforge/themes/material/templates/.icons/octicons/history-16.svg +1 -0
  10972. docsforge/themes/material/templates/.icons/octicons/history-24.svg +1 -0
  10973. docsforge/themes/material/templates/.icons/octicons/home-16.svg +1 -0
  10974. docsforge/themes/material/templates/.icons/octicons/home-24.svg +1 -0
  10975. docsforge/themes/material/templates/.icons/octicons/home-fill-16.svg +1 -0
  10976. docsforge/themes/material/templates/.icons/octicons/home-fill-24.svg +1 -0
  10977. docsforge/themes/material/templates/.icons/octicons/horizontal-rule-16.svg +1 -0
  10978. docsforge/themes/material/templates/.icons/octicons/horizontal-rule-24.svg +1 -0
  10979. docsforge/themes/material/templates/.icons/octicons/hourglass-16.svg +1 -0
  10980. docsforge/themes/material/templates/.icons/octicons/hourglass-24.svg +1 -0
  10981. docsforge/themes/material/templates/.icons/octicons/hubot-16.svg +1 -0
  10982. docsforge/themes/material/templates/.icons/octicons/hubot-24.svg +1 -0
  10983. docsforge/themes/material/templates/.icons/octicons/id-badge-16.svg +1 -0
  10984. docsforge/themes/material/templates/.icons/octicons/id-badge-24.svg +1 -0
  10985. docsforge/themes/material/templates/.icons/octicons/image-16.svg +1 -0
  10986. docsforge/themes/material/templates/.icons/octicons/image-24.svg +1 -0
  10987. docsforge/themes/material/templates/.icons/octicons/inbox-16.svg +1 -0
  10988. docsforge/themes/material/templates/.icons/octicons/inbox-24.svg +1 -0
  10989. docsforge/themes/material/templates/.icons/octicons/inbox-fill-16.svg +1 -0
  10990. docsforge/themes/material/templates/.icons/octicons/inbox-fill-24.svg +1 -0
  10991. docsforge/themes/material/templates/.icons/octicons/infinity-16.svg +1 -0
  10992. docsforge/themes/material/templates/.icons/octicons/infinity-24.svg +1 -0
  10993. docsforge/themes/material/templates/.icons/octicons/info-16.svg +1 -0
  10994. docsforge/themes/material/templates/.icons/octicons/info-24.svg +1 -0
  10995. docsforge/themes/material/templates/.icons/octicons/issue-closed-16.svg +1 -0
  10996. docsforge/themes/material/templates/.icons/octicons/issue-closed-24.svg +1 -0
  10997. docsforge/themes/material/templates/.icons/octicons/issue-draft-16.svg +1 -0
  10998. docsforge/themes/material/templates/.icons/octicons/issue-draft-24.svg +1 -0
  10999. docsforge/themes/material/templates/.icons/octicons/issue-opened-16.svg +1 -0
  11000. docsforge/themes/material/templates/.icons/octicons/issue-opened-24.svg +1 -0
  11001. docsforge/themes/material/templates/.icons/octicons/issue-reopened-16.svg +1 -0
  11002. docsforge/themes/material/templates/.icons/octicons/issue-reopened-24.svg +1 -0
  11003. docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-16.svg +1 -0
  11004. docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-24.svg +1 -0
  11005. docsforge/themes/material/templates/.icons/octicons/issue-tracks-16.svg +1 -0
  11006. docsforge/themes/material/templates/.icons/octicons/issue-tracks-24.svg +1 -0
  11007. docsforge/themes/material/templates/.icons/octicons/italic-16.svg +1 -0
  11008. docsforge/themes/material/templates/.icons/octicons/italic-24.svg +1 -0
  11009. docsforge/themes/material/templates/.icons/octicons/iterations-16.svg +1 -0
  11010. docsforge/themes/material/templates/.icons/octicons/iterations-24.svg +1 -0
  11011. docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-16.svg +1 -0
  11012. docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-24.svg +1 -0
  11013. docsforge/themes/material/templates/.icons/octicons/key-16.svg +1 -0
  11014. docsforge/themes/material/templates/.icons/octicons/key-24.svg +1 -0
  11015. docsforge/themes/material/templates/.icons/octicons/key-asterisk-16.svg +1 -0
  11016. docsforge/themes/material/templates/.icons/octicons/key-asterisk-24.svg +1 -0
  11017. docsforge/themes/material/templates/.icons/octicons/law-16.svg +1 -0
  11018. docsforge/themes/material/templates/.icons/octicons/law-24.svg +1 -0
  11019. docsforge/themes/material/templates/.icons/octicons/light-bulb-16.svg +1 -0
  11020. docsforge/themes/material/templates/.icons/octicons/light-bulb-24.svg +1 -0
  11021. docsforge/themes/material/templates/.icons/octicons/link-16.svg +1 -0
  11022. docsforge/themes/material/templates/.icons/octicons/link-24.svg +1 -0
  11023. docsforge/themes/material/templates/.icons/octicons/link-external-16.svg +1 -0
  11024. docsforge/themes/material/templates/.icons/octicons/link-external-24.svg +1 -0
  11025. docsforge/themes/material/templates/.icons/octicons/list-ordered-16.svg +1 -0
  11026. docsforge/themes/material/templates/.icons/octicons/list-ordered-24.svg +1 -0
  11027. docsforge/themes/material/templates/.icons/octicons/list-unordered-16.svg +1 -0
  11028. docsforge/themes/material/templates/.icons/octicons/list-unordered-24.svg +1 -0
  11029. docsforge/themes/material/templates/.icons/octicons/location-16.svg +1 -0
  11030. docsforge/themes/material/templates/.icons/octicons/location-24.svg +1 -0
  11031. docsforge/themes/material/templates/.icons/octicons/lock-16.svg +1 -0
  11032. docsforge/themes/material/templates/.icons/octicons/lock-24.svg +1 -0
  11033. docsforge/themes/material/templates/.icons/octicons/log-16.svg +1 -0
  11034. docsforge/themes/material/templates/.icons/octicons/log-24.svg +1 -0
  11035. docsforge/themes/material/templates/.icons/octicons/logo-gist-16.svg +1 -0
  11036. docsforge/themes/material/templates/.icons/octicons/logo-gist-24.svg +1 -0
  11037. docsforge/themes/material/templates/.icons/octicons/logo-github-16.svg +1 -0
  11038. docsforge/themes/material/templates/.icons/octicons/logo-github-24.svg +1 -0
  11039. docsforge/themes/material/templates/.icons/octicons/loop-16.svg +1 -0
  11040. docsforge/themes/material/templates/.icons/octicons/loop-24.svg +1 -0
  11041. docsforge/themes/material/templates/.icons/octicons/mail-16.svg +1 -0
  11042. docsforge/themes/material/templates/.icons/octicons/mail-24.svg +1 -0
  11043. docsforge/themes/material/templates/.icons/octicons/mark-github-16.svg +1 -0
  11044. docsforge/themes/material/templates/.icons/octicons/mark-github-24.svg +1 -0
  11045. docsforge/themes/material/templates/.icons/octicons/markdown-16.svg +1 -0
  11046. docsforge/themes/material/templates/.icons/octicons/markdown-24.svg +1 -0
  11047. docsforge/themes/material/templates/.icons/octicons/maximize-16.svg +1 -0
  11048. docsforge/themes/material/templates/.icons/octicons/maximize-24.svg +1 -0
  11049. docsforge/themes/material/templates/.icons/octicons/mcp-16.svg +1 -0
  11050. docsforge/themes/material/templates/.icons/octicons/mcp-24.svg +1 -0
  11051. docsforge/themes/material/templates/.icons/octicons/megaphone-16.svg +1 -0
  11052. docsforge/themes/material/templates/.icons/octicons/megaphone-24.svg +1 -0
  11053. docsforge/themes/material/templates/.icons/octicons/mention-16.svg +1 -0
  11054. docsforge/themes/material/templates/.icons/octicons/mention-24.svg +1 -0
  11055. docsforge/themes/material/templates/.icons/octicons/meter-16.svg +1 -0
  11056. docsforge/themes/material/templates/.icons/octicons/meter-24.svg +1 -0
  11057. docsforge/themes/material/templates/.icons/octicons/milestone-16.svg +1 -0
  11058. docsforge/themes/material/templates/.icons/octicons/milestone-24.svg +1 -0
  11059. docsforge/themes/material/templates/.icons/octicons/minimize-16.svg +1 -0
  11060. docsforge/themes/material/templates/.icons/octicons/minimize-24.svg +1 -0
  11061. docsforge/themes/material/templates/.icons/octicons/mirror-16.svg +1 -0
  11062. docsforge/themes/material/templates/.icons/octicons/mirror-24.svg +1 -0
  11063. docsforge/themes/material/templates/.icons/octicons/moon-16.svg +1 -0
  11064. docsforge/themes/material/templates/.icons/octicons/moon-24.svg +1 -0
  11065. docsforge/themes/material/templates/.icons/octicons/mortar-board-16.svg +1 -0
  11066. docsforge/themes/material/templates/.icons/octicons/mortar-board-24.svg +1 -0
  11067. docsforge/themes/material/templates/.icons/octicons/move-to-bottom-16.svg +1 -0
  11068. docsforge/themes/material/templates/.icons/octicons/move-to-bottom-24.svg +1 -0
  11069. docsforge/themes/material/templates/.icons/octicons/move-to-end-16.svg +1 -0
  11070. docsforge/themes/material/templates/.icons/octicons/move-to-end-24.svg +1 -0
  11071. docsforge/themes/material/templates/.icons/octicons/move-to-start-16.svg +1 -0
  11072. docsforge/themes/material/templates/.icons/octicons/move-to-start-24.svg +1 -0
  11073. docsforge/themes/material/templates/.icons/octicons/move-to-top-16.svg +1 -0
  11074. docsforge/themes/material/templates/.icons/octicons/move-to-top-24.svg +1 -0
  11075. docsforge/themes/material/templates/.icons/octicons/multi-select-16.svg +1 -0
  11076. docsforge/themes/material/templates/.icons/octicons/multi-select-24.svg +1 -0
  11077. docsforge/themes/material/templates/.icons/octicons/mute-16.svg +1 -0
  11078. docsforge/themes/material/templates/.icons/octicons/mute-24.svg +1 -0
  11079. docsforge/themes/material/templates/.icons/octicons/no-entry-16.svg +1 -0
  11080. docsforge/themes/material/templates/.icons/octicons/no-entry-24.svg +1 -0
  11081. docsforge/themes/material/templates/.icons/octicons/no-entry-fill-12.svg +1 -0
  11082. docsforge/themes/material/templates/.icons/octicons/node-16.svg +1 -0
  11083. docsforge/themes/material/templates/.icons/octicons/node-24.svg +1 -0
  11084. docsforge/themes/material/templates/.icons/octicons/north-star-16.svg +1 -0
  11085. docsforge/themes/material/templates/.icons/octicons/north-star-24.svg +1 -0
  11086. docsforge/themes/material/templates/.icons/octicons/note-16.svg +1 -0
  11087. docsforge/themes/material/templates/.icons/octicons/note-24.svg +1 -0
  11088. docsforge/themes/material/templates/.icons/octicons/number-16.svg +1 -0
  11089. docsforge/themes/material/templates/.icons/octicons/number-24.svg +1 -0
  11090. docsforge/themes/material/templates/.icons/octicons/organization-16.svg +1 -0
  11091. docsforge/themes/material/templates/.icons/octicons/organization-24.svg +1 -0
  11092. docsforge/themes/material/templates/.icons/octicons/package-16.svg +1 -0
  11093. docsforge/themes/material/templates/.icons/octicons/package-24.svg +1 -0
  11094. docsforge/themes/material/templates/.icons/octicons/package-dependencies-16.svg +1 -0
  11095. docsforge/themes/material/templates/.icons/octicons/package-dependencies-24.svg +1 -0
  11096. docsforge/themes/material/templates/.icons/octicons/package-dependents-16.svg +1 -0
  11097. docsforge/themes/material/templates/.icons/octicons/package-dependents-24.svg +1 -0
  11098. docsforge/themes/material/templates/.icons/octicons/paintbrush-16.svg +1 -0
  11099. docsforge/themes/material/templates/.icons/octicons/paintbrush-24.svg +1 -0
  11100. docsforge/themes/material/templates/.icons/octicons/paper-airplane-16.svg +1 -0
  11101. docsforge/themes/material/templates/.icons/octicons/paper-airplane-24.svg +1 -0
  11102. docsforge/themes/material/templates/.icons/octicons/paperclip-16.svg +1 -0
  11103. docsforge/themes/material/templates/.icons/octicons/paperclip-24.svg +1 -0
  11104. docsforge/themes/material/templates/.icons/octicons/passkey-fill-16.svg +1 -0
  11105. docsforge/themes/material/templates/.icons/octicons/passkey-fill-24.svg +1 -0
  11106. docsforge/themes/material/templates/.icons/octicons/paste-16.svg +1 -0
  11107. docsforge/themes/material/templates/.icons/octicons/paste-24.svg +1 -0
  11108. docsforge/themes/material/templates/.icons/octicons/pause-16.svg +1 -0
  11109. docsforge/themes/material/templates/.icons/octicons/pause-24.svg +1 -0
  11110. docsforge/themes/material/templates/.icons/octicons/pencil-16.svg +1 -0
  11111. docsforge/themes/material/templates/.icons/octicons/pencil-24.svg +1 -0
  11112. docsforge/themes/material/templates/.icons/octicons/pencil-ai-16.svg +1 -0
  11113. docsforge/themes/material/templates/.icons/octicons/pencil-ai-24.svg +1 -0
  11114. docsforge/themes/material/templates/.icons/octicons/people-16.svg +1 -0
  11115. docsforge/themes/material/templates/.icons/octicons/people-24.svg +1 -0
  11116. docsforge/themes/material/templates/.icons/octicons/person-16.svg +1 -0
  11117. docsforge/themes/material/templates/.icons/octicons/person-24.svg +1 -0
  11118. docsforge/themes/material/templates/.icons/octicons/person-add-16.svg +1 -0
  11119. docsforge/themes/material/templates/.icons/octicons/person-add-24.svg +1 -0
  11120. docsforge/themes/material/templates/.icons/octicons/person-fill-16.svg +1 -0
  11121. docsforge/themes/material/templates/.icons/octicons/person-fill-24.svg +1 -0
  11122. docsforge/themes/material/templates/.icons/octicons/pin-16.svg +1 -0
  11123. docsforge/themes/material/templates/.icons/octicons/pin-24.svg +1 -0
  11124. docsforge/themes/material/templates/.icons/octicons/pin-slash-16.svg +1 -0
  11125. docsforge/themes/material/templates/.icons/octicons/pin-slash-24.svg +1 -0
  11126. docsforge/themes/material/templates/.icons/octicons/pivot-column-16.svg +1 -0
  11127. docsforge/themes/material/templates/.icons/octicons/pivot-column-24.svg +1 -0
  11128. docsforge/themes/material/templates/.icons/octicons/play-16.svg +1 -0
  11129. docsforge/themes/material/templates/.icons/octicons/play-24.svg +1 -0
  11130. docsforge/themes/material/templates/.icons/octicons/plug-16.svg +1 -0
  11131. docsforge/themes/material/templates/.icons/octicons/plug-24.svg +1 -0
  11132. docsforge/themes/material/templates/.icons/octicons/plus-16.svg +1 -0
  11133. docsforge/themes/material/templates/.icons/octicons/plus-24.svg +1 -0
  11134. docsforge/themes/material/templates/.icons/octicons/plus-circle-16.svg +1 -0
  11135. docsforge/themes/material/templates/.icons/octicons/plus-circle-24.svg +1 -0
  11136. docsforge/themes/material/templates/.icons/octicons/project-16.svg +1 -0
  11137. docsforge/themes/material/templates/.icons/octicons/project-24.svg +1 -0
  11138. docsforge/themes/material/templates/.icons/octicons/project-roadmap-16.svg +1 -0
  11139. docsforge/themes/material/templates/.icons/octicons/project-roadmap-24.svg +1 -0
  11140. docsforge/themes/material/templates/.icons/octicons/project-symlink-16.svg +1 -0
  11141. docsforge/themes/material/templates/.icons/octicons/project-symlink-24.svg +1 -0
  11142. docsforge/themes/material/templates/.icons/octicons/project-template-16.svg +1 -0
  11143. docsforge/themes/material/templates/.icons/octicons/project-template-24.svg +1 -0
  11144. docsforge/themes/material/templates/.icons/octicons/pulse-16.svg +1 -0
  11145. docsforge/themes/material/templates/.icons/octicons/pulse-24.svg +1 -0
  11146. docsforge/themes/material/templates/.icons/octicons/question-16.svg +1 -0
  11147. docsforge/themes/material/templates/.icons/octicons/question-24.svg +1 -0
  11148. docsforge/themes/material/templates/.icons/octicons/quote-16.svg +1 -0
  11149. docsforge/themes/material/templates/.icons/octicons/quote-24.svg +1 -0
  11150. docsforge/themes/material/templates/.icons/octicons/read-16.svg +1 -0
  11151. docsforge/themes/material/templates/.icons/octicons/read-24.svg +1 -0
  11152. docsforge/themes/material/templates/.icons/octicons/redo-16.svg +1 -0
  11153. docsforge/themes/material/templates/.icons/octicons/redo-24.svg +1 -0
  11154. docsforge/themes/material/templates/.icons/octicons/rel-file-path-16.svg +1 -0
  11155. docsforge/themes/material/templates/.icons/octicons/rel-file-path-24.svg +1 -0
  11156. docsforge/themes/material/templates/.icons/octicons/reply-16.svg +1 -0
  11157. docsforge/themes/material/templates/.icons/octicons/reply-24.svg +1 -0
  11158. docsforge/themes/material/templates/.icons/octicons/repo-16.svg +1 -0
  11159. docsforge/themes/material/templates/.icons/octicons/repo-24.svg +1 -0
  11160. docsforge/themes/material/templates/.icons/octicons/repo-clone-16.svg +1 -0
  11161. docsforge/themes/material/templates/.icons/octicons/repo-clone-24.svg +1 -0
  11162. docsforge/themes/material/templates/.icons/octicons/repo-delete-24.svg +1 -0
  11163. docsforge/themes/material/templates/.icons/octicons/repo-deleted-16.svg +1 -0
  11164. docsforge/themes/material/templates/.icons/octicons/repo-forked-16.svg +1 -0
  11165. docsforge/themes/material/templates/.icons/octicons/repo-forked-24.svg +1 -0
  11166. docsforge/themes/material/templates/.icons/octicons/repo-locked-16.svg +1 -0
  11167. docsforge/themes/material/templates/.icons/octicons/repo-locked-24.svg +1 -0
  11168. docsforge/themes/material/templates/.icons/octicons/repo-pull-16.svg +1 -0
  11169. docsforge/themes/material/templates/.icons/octicons/repo-pull-24.svg +1 -0
  11170. docsforge/themes/material/templates/.icons/octicons/repo-push-16.svg +1 -0
  11171. docsforge/themes/material/templates/.icons/octicons/repo-push-24.svg +1 -0
  11172. docsforge/themes/material/templates/.icons/octicons/repo-template-16.svg +1 -0
  11173. docsforge/themes/material/templates/.icons/octicons/repo-template-24.svg +1 -0
  11174. docsforge/themes/material/templates/.icons/octicons/report-16.svg +1 -0
  11175. docsforge/themes/material/templates/.icons/octicons/report-24.svg +1 -0
  11176. docsforge/themes/material/templates/.icons/octicons/rocket-16.svg +1 -0
  11177. docsforge/themes/material/templates/.icons/octicons/rocket-24.svg +1 -0
  11178. docsforge/themes/material/templates/.icons/octicons/rows-16.svg +1 -0
  11179. docsforge/themes/material/templates/.icons/octicons/rows-24.svg +1 -0
  11180. docsforge/themes/material/templates/.icons/octicons/rss-16.svg +1 -0
  11181. docsforge/themes/material/templates/.icons/octicons/rss-24.svg +1 -0
  11182. docsforge/themes/material/templates/.icons/octicons/ruby-16.svg +1 -0
  11183. docsforge/themes/material/templates/.icons/octicons/ruby-24.svg +1 -0
  11184. docsforge/themes/material/templates/.icons/octicons/screen-full-16.svg +1 -0
  11185. docsforge/themes/material/templates/.icons/octicons/screen-full-24.svg +1 -0
  11186. docsforge/themes/material/templates/.icons/octicons/screen-normal-16.svg +1 -0
  11187. docsforge/themes/material/templates/.icons/octicons/screen-normal-24.svg +1 -0
  11188. docsforge/themes/material/templates/.icons/octicons/search-16.svg +1 -0
  11189. docsforge/themes/material/templates/.icons/octicons/search-24.svg +1 -0
  11190. docsforge/themes/material/templates/.icons/octicons/server-16.svg +1 -0
  11191. docsforge/themes/material/templates/.icons/octicons/server-24.svg +1 -0
  11192. docsforge/themes/material/templates/.icons/octicons/share-16.svg +1 -0
  11193. docsforge/themes/material/templates/.icons/octicons/share-24.svg +1 -0
  11194. docsforge/themes/material/templates/.icons/octicons/share-android-16.svg +1 -0
  11195. docsforge/themes/material/templates/.icons/octicons/share-android-24.svg +1 -0
  11196. docsforge/themes/material/templates/.icons/octicons/shield-16.svg +1 -0
  11197. docsforge/themes/material/templates/.icons/octicons/shield-24.svg +1 -0
  11198. docsforge/themes/material/templates/.icons/octicons/shield-check-16.svg +1 -0
  11199. docsforge/themes/material/templates/.icons/octicons/shield-check-24.svg +1 -0
  11200. docsforge/themes/material/templates/.icons/octicons/shield-lock-16.svg +1 -0
  11201. docsforge/themes/material/templates/.icons/octicons/shield-lock-24.svg +1 -0
  11202. docsforge/themes/material/templates/.icons/octicons/shield-slash-16.svg +1 -0
  11203. docsforge/themes/material/templates/.icons/octicons/shield-slash-24.svg +1 -0
  11204. docsforge/themes/material/templates/.icons/octicons/shield-x-16.svg +1 -0
  11205. docsforge/themes/material/templates/.icons/octicons/shield-x-24.svg +1 -0
  11206. docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-16.svg +1 -0
  11207. docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-24.svg +1 -0
  11208. docsforge/themes/material/templates/.icons/octicons/sidebar-expand-16.svg +1 -0
  11209. docsforge/themes/material/templates/.icons/octicons/sidebar-expand-24.svg +1 -0
  11210. docsforge/themes/material/templates/.icons/octicons/sign-in-16.svg +1 -0
  11211. docsforge/themes/material/templates/.icons/octicons/sign-in-24.svg +1 -0
  11212. docsforge/themes/material/templates/.icons/octicons/sign-out-16.svg +1 -0
  11213. docsforge/themes/material/templates/.icons/octicons/sign-out-24.svg +1 -0
  11214. docsforge/themes/material/templates/.icons/octicons/single-select-16.svg +1 -0
  11215. docsforge/themes/material/templates/.icons/octicons/single-select-24.svg +1 -0
  11216. docsforge/themes/material/templates/.icons/octicons/skip-16.svg +1 -0
  11217. docsforge/themes/material/templates/.icons/octicons/skip-24.svg +1 -0
  11218. docsforge/themes/material/templates/.icons/octicons/skip-fill-16.svg +1 -0
  11219. docsforge/themes/material/templates/.icons/octicons/skip-fill-24.svg +1 -0
  11220. docsforge/themes/material/templates/.icons/octicons/sliders-16.svg +1 -0
  11221. docsforge/themes/material/templates/.icons/octicons/sliders-24.svg +1 -0
  11222. docsforge/themes/material/templates/.icons/octicons/smiley-16.svg +1 -0
  11223. docsforge/themes/material/templates/.icons/octicons/smiley-24.svg +1 -0
  11224. docsforge/themes/material/templates/.icons/octicons/smiley-frown-16.svg +1 -0
  11225. docsforge/themes/material/templates/.icons/octicons/smiley-frown-24.svg +1 -0
  11226. docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-16.svg +1 -0
  11227. docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-24.svg +1 -0
  11228. docsforge/themes/material/templates/.icons/octicons/smiley-grin-16.svg +1 -0
  11229. docsforge/themes/material/templates/.icons/octicons/smiley-grin-24.svg +1 -0
  11230. docsforge/themes/material/templates/.icons/octicons/smiley-neutral-16.svg +1 -0
  11231. docsforge/themes/material/templates/.icons/octicons/smiley-neutral-24.svg +1 -0
  11232. docsforge/themes/material/templates/.icons/octicons/sort-asc-16.svg +1 -0
  11233. docsforge/themes/material/templates/.icons/octicons/sort-asc-24.svg +1 -0
  11234. docsforge/themes/material/templates/.icons/octicons/sort-desc-16.svg +1 -0
  11235. docsforge/themes/material/templates/.icons/octicons/sort-desc-24.svg +1 -0
  11236. docsforge/themes/material/templates/.icons/octicons/space-16.svg +1 -0
  11237. docsforge/themes/material/templates/.icons/octicons/space-24.svg +1 -0
  11238. docsforge/themes/material/templates/.icons/octicons/spacing-large-16.svg +1 -0
  11239. docsforge/themes/material/templates/.icons/octicons/spacing-large-24.svg +1 -0
  11240. docsforge/themes/material/templates/.icons/octicons/spacing-medium-16.svg +1 -0
  11241. docsforge/themes/material/templates/.icons/octicons/spacing-medium-24.svg +1 -0
  11242. docsforge/themes/material/templates/.icons/octicons/spacing-small-16.svg +1 -0
  11243. docsforge/themes/material/templates/.icons/octicons/spacing-small-24.svg +1 -0
  11244. docsforge/themes/material/templates/.icons/octicons/sparkle-16.svg +1 -0
  11245. docsforge/themes/material/templates/.icons/octicons/sparkle-24.svg +1 -0
  11246. docsforge/themes/material/templates/.icons/octicons/sparkle-fill-16.svg +1 -0
  11247. docsforge/themes/material/templates/.icons/octicons/sparkle-fill-24.svg +1 -0
  11248. docsforge/themes/material/templates/.icons/octicons/sparkles-fill-16.svg +1 -0
  11249. docsforge/themes/material/templates/.icons/octicons/sparkles-fill-24.svg +1 -0
  11250. docsforge/themes/material/templates/.icons/octicons/split-view-16.svg +1 -0
  11251. docsforge/themes/material/templates/.icons/octicons/split-view-24.svg +1 -0
  11252. docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-16.svg +1 -0
  11253. docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-24.svg +1 -0
  11254. docsforge/themes/material/templates/.icons/octicons/square-16.svg +1 -0
  11255. docsforge/themes/material/templates/.icons/octicons/square-24.svg +1 -0
  11256. docsforge/themes/material/templates/.icons/octicons/square-circle-16.svg +1 -0
  11257. docsforge/themes/material/templates/.icons/octicons/square-circle-24.svg +1 -0
  11258. docsforge/themes/material/templates/.icons/octicons/square-fill-16.svg +1 -0
  11259. docsforge/themes/material/templates/.icons/octicons/square-fill-24.svg +1 -0
  11260. docsforge/themes/material/templates/.icons/octicons/squirrel-16.svg +1 -0
  11261. docsforge/themes/material/templates/.icons/octicons/squirrel-24.svg +1 -0
  11262. docsforge/themes/material/templates/.icons/octicons/stack-16.svg +1 -0
  11263. docsforge/themes/material/templates/.icons/octicons/stack-24.svg +1 -0
  11264. docsforge/themes/material/templates/.icons/octicons/star-16.svg +1 -0
  11265. docsforge/themes/material/templates/.icons/octicons/star-24.svg +1 -0
  11266. docsforge/themes/material/templates/.icons/octicons/star-fill-16.svg +1 -0
  11267. docsforge/themes/material/templates/.icons/octicons/star-fill-24.svg +1 -0
  11268. docsforge/themes/material/templates/.icons/octicons/stop-16.svg +1 -0
  11269. docsforge/themes/material/templates/.icons/octicons/stop-24.svg +1 -0
  11270. docsforge/themes/material/templates/.icons/octicons/stopwatch-16.svg +1 -0
  11271. docsforge/themes/material/templates/.icons/octicons/stopwatch-24.svg +1 -0
  11272. docsforge/themes/material/templates/.icons/octicons/strikethrough-16.svg +1 -0
  11273. docsforge/themes/material/templates/.icons/octicons/strikethrough-24.svg +1 -0
  11274. docsforge/themes/material/templates/.icons/octicons/sun-16.svg +1 -0
  11275. docsforge/themes/material/templates/.icons/octicons/sun-24.svg +1 -0
  11276. docsforge/themes/material/templates/.icons/octicons/sync-16.svg +1 -0
  11277. docsforge/themes/material/templates/.icons/octicons/sync-24.svg +1 -0
  11278. docsforge/themes/material/templates/.icons/octicons/tab-16.svg +1 -0
  11279. docsforge/themes/material/templates/.icons/octicons/tab-24.svg +1 -0
  11280. docsforge/themes/material/templates/.icons/octicons/tab-external-16.svg +1 -0
  11281. docsforge/themes/material/templates/.icons/octicons/tab-external-24.svg +1 -0
  11282. docsforge/themes/material/templates/.icons/octicons/table-16.svg +1 -0
  11283. docsforge/themes/material/templates/.icons/octicons/table-24.svg +1 -0
  11284. docsforge/themes/material/templates/.icons/octicons/tag-16.svg +1 -0
  11285. docsforge/themes/material/templates/.icons/octicons/tag-24.svg +1 -0
  11286. docsforge/themes/material/templates/.icons/octicons/tasklist-16.svg +1 -0
  11287. docsforge/themes/material/templates/.icons/octicons/tasklist-24.svg +1 -0
  11288. docsforge/themes/material/templates/.icons/octicons/telescope-16.svg +1 -0
  11289. docsforge/themes/material/templates/.icons/octicons/telescope-24.svg +1 -0
  11290. docsforge/themes/material/templates/.icons/octicons/telescope-fill-16.svg +1 -0
  11291. docsforge/themes/material/templates/.icons/octicons/telescope-fill-24.svg +1 -0
  11292. docsforge/themes/material/templates/.icons/octicons/terminal-16.svg +1 -0
  11293. docsforge/themes/material/templates/.icons/octicons/terminal-24.svg +1 -0
  11294. docsforge/themes/material/templates/.icons/octicons/three-bars-16.svg +1 -0
  11295. docsforge/themes/material/templates/.icons/octicons/three-bars-24.svg +1 -0
  11296. docsforge/themes/material/templates/.icons/octicons/thumbsdown-16.svg +1 -0
  11297. docsforge/themes/material/templates/.icons/octicons/thumbsdown-24.svg +1 -0
  11298. docsforge/themes/material/templates/.icons/octicons/thumbsup-16.svg +1 -0
  11299. docsforge/themes/material/templates/.icons/octicons/thumbsup-24.svg +1 -0
  11300. docsforge/themes/material/templates/.icons/octicons/tools-16.svg +1 -0
  11301. docsforge/themes/material/templates/.icons/octicons/tools-24.svg +1 -0
  11302. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg +1 -0
  11303. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg +1 -0
  11304. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg +1 -0
  11305. docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg +1 -0
  11306. docsforge/themes/material/templates/.icons/octicons/trash-16.svg +1 -0
  11307. docsforge/themes/material/templates/.icons/octicons/trash-24.svg +1 -0
  11308. docsforge/themes/material/templates/.icons/octicons/triangle-down-16.svg +1 -0
  11309. docsforge/themes/material/templates/.icons/octicons/triangle-down-24.svg +1 -0
  11310. docsforge/themes/material/templates/.icons/octicons/triangle-left-16.svg +1 -0
  11311. docsforge/themes/material/templates/.icons/octicons/triangle-left-24.svg +1 -0
  11312. docsforge/themes/material/templates/.icons/octicons/triangle-right-16.svg +1 -0
  11313. docsforge/themes/material/templates/.icons/octicons/triangle-right-24.svg +1 -0
  11314. docsforge/themes/material/templates/.icons/octicons/triangle-up-16.svg +1 -0
  11315. docsforge/themes/material/templates/.icons/octicons/triangle-up-24.svg +1 -0
  11316. docsforge/themes/material/templates/.icons/octicons/trophy-16.svg +1 -0
  11317. docsforge/themes/material/templates/.icons/octicons/trophy-24.svg +1 -0
  11318. docsforge/themes/material/templates/.icons/octicons/typography-16.svg +1 -0
  11319. docsforge/themes/material/templates/.icons/octicons/typography-24.svg +1 -0
  11320. docsforge/themes/material/templates/.icons/octicons/undo-16.svg +1 -0
  11321. docsforge/themes/material/templates/.icons/octicons/undo-24.svg +1 -0
  11322. docsforge/themes/material/templates/.icons/octicons/unfold-16.svg +1 -0
  11323. docsforge/themes/material/templates/.icons/octicons/unfold-24.svg +1 -0
  11324. docsforge/themes/material/templates/.icons/octicons/unlink-16.svg +1 -0
  11325. docsforge/themes/material/templates/.icons/octicons/unlink-24.svg +1 -0
  11326. docsforge/themes/material/templates/.icons/octicons/unlock-16.svg +1 -0
  11327. docsforge/themes/material/templates/.icons/octicons/unlock-24.svg +1 -0
  11328. docsforge/themes/material/templates/.icons/octicons/unmute-16.svg +1 -0
  11329. docsforge/themes/material/templates/.icons/octicons/unmute-24.svg +1 -0
  11330. docsforge/themes/material/templates/.icons/octicons/unread-16.svg +1 -0
  11331. docsforge/themes/material/templates/.icons/octicons/unread-24.svg +1 -0
  11332. docsforge/themes/material/templates/.icons/octicons/unverified-16.svg +1 -0
  11333. docsforge/themes/material/templates/.icons/octicons/unverified-24.svg +1 -0
  11334. docsforge/themes/material/templates/.icons/octicons/unwrap-16.svg +1 -0
  11335. docsforge/themes/material/templates/.icons/octicons/unwrap-24.svg +1 -0
  11336. docsforge/themes/material/templates/.icons/octicons/upload-16.svg +1 -0
  11337. docsforge/themes/material/templates/.icons/octicons/upload-24.svg +1 -0
  11338. docsforge/themes/material/templates/.icons/octicons/verified-16.svg +1 -0
  11339. docsforge/themes/material/templates/.icons/octicons/verified-24.svg +1 -0
  11340. docsforge/themes/material/templates/.icons/octicons/versions-16.svg +1 -0
  11341. docsforge/themes/material/templates/.icons/octicons/versions-24.svg +1 -0
  11342. docsforge/themes/material/templates/.icons/octicons/video-16.svg +1 -0
  11343. docsforge/themes/material/templates/.icons/octicons/video-24.svg +1 -0
  11344. docsforge/themes/material/templates/.icons/octicons/vscode-16.svg +1 -0
  11345. docsforge/themes/material/templates/.icons/octicons/vscode-32.svg +1 -0
  11346. docsforge/themes/material/templates/.icons/octicons/vscode-48.svg +1 -0
  11347. docsforge/themes/material/templates/.icons/octicons/webhook-16.svg +1 -0
  11348. docsforge/themes/material/templates/.icons/octicons/workflow-16.svg +1 -0
  11349. docsforge/themes/material/templates/.icons/octicons/workflow-24.svg +1 -0
  11350. docsforge/themes/material/templates/.icons/octicons/wrap-16.svg +1 -0
  11351. docsforge/themes/material/templates/.icons/octicons/wrap-24.svg +1 -0
  11352. docsforge/themes/material/templates/.icons/octicons/x-12.svg +1 -0
  11353. docsforge/themes/material/templates/.icons/octicons/x-16.svg +1 -0
  11354. docsforge/themes/material/templates/.icons/octicons/x-24.svg +1 -0
  11355. docsforge/themes/material/templates/.icons/octicons/x-circle-16.svg +1 -0
  11356. docsforge/themes/material/templates/.icons/octicons/x-circle-24.svg +1 -0
  11357. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-12.svg +1 -0
  11358. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-16.svg +1 -0
  11359. docsforge/themes/material/templates/.icons/octicons/x-circle-fill-24.svg +1 -0
  11360. docsforge/themes/material/templates/.icons/octicons/zap-16.svg +1 -0
  11361. docsforge/themes/material/templates/.icons/octicons/zap-24.svg +1 -0
  11362. docsforge/themes/material/templates/.icons/octicons/zoom-in-16.svg +1 -0
  11363. docsforge/themes/material/templates/.icons/octicons/zoom-in-24.svg +1 -0
  11364. docsforge/themes/material/templates/.icons/octicons/zoom-out-16.svg +1 -0
  11365. docsforge/themes/material/templates/.icons/octicons/zoom-out-24.svg +1 -0
  11366. docsforge/themes/material/templates/.icons/simple/1001tracklists.svg +1 -0
  11367. docsforge/themes/material/templates/.icons/simple/1and1.svg +1 -0
  11368. docsforge/themes/material/templates/.icons/simple/1dot1dot1dot1.svg +1 -0
  11369. docsforge/themes/material/templates/.icons/simple/1panel.svg +1 -0
  11370. docsforge/themes/material/templates/.icons/simple/1password.svg +1 -0
  11371. docsforge/themes/material/templates/.icons/simple/2fas.svg +1 -0
  11372. docsforge/themes/material/templates/.icons/simple/2k.svg +1 -0
  11373. docsforge/themes/material/templates/.icons/simple/30secondsofcode.svg +1 -0
  11374. docsforge/themes/material/templates/.icons/simple/365datascience.svg +1 -0
  11375. docsforge/themes/material/templates/.icons/simple/3m.svg +1 -0
  11376. docsforge/themes/material/templates/.icons/simple/42.svg +1 -0
  11377. docsforge/themes/material/templates/.icons/simple/4chan.svg +1 -0
  11378. docsforge/themes/material/templates/.icons/simple/4d.svg +1 -0
  11379. docsforge/themes/material/templates/.icons/simple/500px.svg +1 -0
  11380. docsforge/themes/material/templates/.icons/simple/7zip.svg +1 -0
  11381. docsforge/themes/material/templates/.icons/simple/99designs.svg +1 -0
  11382. docsforge/themes/material/templates/.icons/simple/9gag.svg +1 -0
  11383. docsforge/themes/material/templates/.icons/simple/LICENSE.md +30 -0
  11384. docsforge/themes/material/templates/.icons/simple/abb.svg +1 -0
  11385. docsforge/themes/material/templates/.icons/simple/abbott.svg +1 -0
  11386. docsforge/themes/material/templates/.icons/simple/abbvie.svg +1 -0
  11387. docsforge/themes/material/templates/.icons/simple/abdownloadmanager.svg +1 -0
  11388. docsforge/themes/material/templates/.icons/simple/aboutdotme.svg +1 -0
  11389. docsforge/themes/material/templates/.icons/simple/abstract.svg +1 -0
  11390. docsforge/themes/material/templates/.icons/simple/abusedotch.svg +1 -0
  11391. docsforge/themes/material/templates/.icons/simple/academia.svg +1 -0
  11392. docsforge/themes/material/templates/.icons/simple/accenture.svg +1 -0
  11393. docsforge/themes/material/templates/.icons/simple/accusoft.svg +1 -0
  11394. docsforge/themes/material/templates/.icons/simple/accuweather.svg +1 -0
  11395. docsforge/themes/material/templates/.icons/simple/acer.svg +1 -0
  11396. docsforge/themes/material/templates/.icons/simple/acm.svg +1 -0
  11397. docsforge/themes/material/templates/.icons/simple/acode.svg +1 -0
  11398. docsforge/themes/material/templates/.icons/simple/actigraph.svg +1 -0
  11399. docsforge/themes/material/templates/.icons/simple/activeloop.svg +1 -0
  11400. docsforge/themes/material/templates/.icons/simple/activision.svg +1 -0
  11401. docsforge/themes/material/templates/.icons/simple/activitypub.svg +1 -0
  11402. docsforge/themes/material/templates/.icons/simple/actix.svg +1 -0
  11403. docsforge/themes/material/templates/.icons/simple/actualbudget.svg +1 -0
  11404. docsforge/themes/material/templates/.icons/simple/acura.svg +1 -0
  11405. docsforge/themes/material/templates/.icons/simple/ada.svg +1 -0
  11406. docsforge/themes/material/templates/.icons/simple/adafruit.svg +1 -0
  11407. docsforge/themes/material/templates/.icons/simple/adaway.svg +1 -0
  11408. docsforge/themes/material/templates/.icons/simple/adblock.svg +1 -0
  11409. docsforge/themes/material/templates/.icons/simple/adblockplus.svg +1 -0
  11410. docsforge/themes/material/templates/.icons/simple/addydotio.svg +1 -0
  11411. docsforge/themes/material/templates/.icons/simple/adguard.svg +1 -0
  11412. docsforge/themes/material/templates/.icons/simple/adidas.svg +1 -0
  11413. docsforge/themes/material/templates/.icons/simple/adminer.svg +1 -0
  11414. docsforge/themes/material/templates/.icons/simple/adonisjs.svg +1 -0
  11415. docsforge/themes/material/templates/.icons/simple/adp.svg +1 -0
  11416. docsforge/themes/material/templates/.icons/simple/adroll.svg +1 -0
  11417. docsforge/themes/material/templates/.icons/simple/adventofcode.svg +1 -0
  11418. docsforge/themes/material/templates/.icons/simple/adyen.svg +1 -0
  11419. docsforge/themes/material/templates/.icons/simple/aegisauthenticator.svg +1 -0
  11420. docsforge/themes/material/templates/.icons/simple/aeroflot.svg +1 -0
  11421. docsforge/themes/material/templates/.icons/simple/aeromexico.svg +1 -0
  11422. docsforge/themes/material/templates/.icons/simple/afdian.svg +1 -0
  11423. docsforge/themes/material/templates/.icons/simple/affine.svg +1 -0
  11424. docsforge/themes/material/templates/.icons/simple/aframe.svg +1 -0
  11425. docsforge/themes/material/templates/.icons/simple/afterpay.svg +1 -0
  11426. docsforge/themes/material/templates/.icons/simple/aftership.svg +1 -0
  11427. docsforge/themes/material/templates/.icons/simple/agora.svg +1 -0
  11428. docsforge/themes/material/templates/.icons/simple/aib.svg +1 -0
  11429. docsforge/themes/material/templates/.icons/simple/aidungeon.svg +1 -0
  11430. docsforge/themes/material/templates/.icons/simple/aiohttp.svg +1 -0
  11431. docsforge/themes/material/templates/.icons/simple/aiqfome.svg +1 -0
  11432. docsforge/themes/material/templates/.icons/simple/airasia.svg +1 -0
  11433. docsforge/themes/material/templates/.icons/simple/airbnb.svg +1 -0
  11434. docsforge/themes/material/templates/.icons/simple/airbrake.svg +1 -0
  11435. docsforge/themes/material/templates/.icons/simple/airbus.svg +1 -0
  11436. docsforge/themes/material/templates/.icons/simple/airbyte.svg +1 -0
  11437. docsforge/themes/material/templates/.icons/simple/aircall.svg +1 -0
  11438. docsforge/themes/material/templates/.icons/simple/aircanada.svg +1 -0
  11439. docsforge/themes/material/templates/.icons/simple/airchina.svg +1 -0
  11440. docsforge/themes/material/templates/.icons/simple/airfrance.svg +1 -0
  11441. docsforge/themes/material/templates/.icons/simple/airindia.svg +1 -0
  11442. docsforge/themes/material/templates/.icons/simple/airplayaudio.svg +1 -0
  11443. docsforge/themes/material/templates/.icons/simple/airplayvideo.svg +1 -0
  11444. docsforge/themes/material/templates/.icons/simple/airserbia.svg +1 -0
  11445. docsforge/themes/material/templates/.icons/simple/airtable.svg +1 -0
  11446. docsforge/themes/material/templates/.icons/simple/airtel.svg +1 -0
  11447. docsforge/themes/material/templates/.icons/simple/airtransat.svg +1 -0
  11448. docsforge/themes/material/templates/.icons/simple/ajv.svg +1 -0
  11449. docsforge/themes/material/templates/.icons/simple/akamai.svg +1 -0
  11450. docsforge/themes/material/templates/.icons/simple/akasaair.svg +1 -0
  11451. docsforge/themes/material/templates/.icons/simple/akaunting.svg +1 -0
  11452. docsforge/themes/material/templates/.icons/simple/akiflow.svg +1 -0
  11453. docsforge/themes/material/templates/.icons/simple/alacritty.svg +1 -0
  11454. docsforge/themes/material/templates/.icons/simple/alamy.svg +1 -0
  11455. docsforge/themes/material/templates/.icons/simple/albertheijn.svg +1 -0
  11456. docsforge/themes/material/templates/.icons/simple/alby.svg +1 -0
  11457. docsforge/themes/material/templates/.icons/simple/alchemy.svg +1 -0
  11458. docsforge/themes/material/templates/.icons/simple/aldinord.svg +1 -0
  11459. docsforge/themes/material/templates/.icons/simple/aldisud.svg +1 -0
  11460. docsforge/themes/material/templates/.icons/simple/alfred.svg +1 -0
  11461. docsforge/themes/material/templates/.icons/simple/algolia.svg +1 -0
  11462. docsforge/themes/material/templates/.icons/simple/algorand.svg +1 -0
  11463. docsforge/themes/material/templates/.icons/simple/alibabacloud.svg +1 -0
  11464. docsforge/themes/material/templates/.icons/simple/alibabadotcom.svg +1 -0
  11465. docsforge/themes/material/templates/.icons/simple/alienware.svg +1 -0
  11466. docsforge/themes/material/templates/.icons/simple/aliexpress.svg +1 -0
  11467. docsforge/themes/material/templates/.icons/simple/alipay.svg +1 -0
  11468. docsforge/themes/material/templates/.icons/simple/alist.svg +1 -0
  11469. docsforge/themes/material/templates/.icons/simple/allegro.svg +1 -0
  11470. docsforge/themes/material/templates/.icons/simple/alliedmodders.svg +1 -0
  11471. docsforge/themes/material/templates/.icons/simple/alltrails.svg +1 -0
  11472. docsforge/themes/material/templates/.icons/simple/almalinux.svg +1 -0
  11473. docsforge/themes/material/templates/.icons/simple/alpinedotjs.svg +1 -0
  11474. docsforge/themes/material/templates/.icons/simple/alpinelinux.svg +1 -0
  11475. docsforge/themes/material/templates/.icons/simple/alternativeto.svg +1 -0
  11476. docsforge/themes/material/templates/.icons/simple/alwaysdata.svg +1 -0
  11477. docsforge/themes/material/templates/.icons/simple/amd.svg +1 -0
  11478. docsforge/themes/material/templates/.icons/simple/ameba.svg +1 -0
  11479. docsforge/themes/material/templates/.icons/simple/americanairlines.svg +1 -0
  11480. docsforge/themes/material/templates/.icons/simple/americanexpress.svg +1 -0
  11481. docsforge/themes/material/templates/.icons/simple/amg.svg +1 -0
  11482. docsforge/themes/material/templates/.icons/simple/amp.svg +1 -0
  11483. docsforge/themes/material/templates/.icons/simple/amul.svg +1 -0
  11484. docsforge/themes/material/templates/.icons/simple/ana.svg +1 -0
  11485. docsforge/themes/material/templates/.icons/simple/anaconda.svg +1 -0
  11486. docsforge/themes/material/templates/.icons/simple/analogue.svg +1 -0
  11487. docsforge/themes/material/templates/.icons/simple/andela.svg +1 -0
  11488. docsforge/themes/material/templates/.icons/simple/android.svg +1 -0
  11489. docsforge/themes/material/templates/.icons/simple/androidauto.svg +1 -0
  11490. docsforge/themes/material/templates/.icons/simple/androidstudio.svg +1 -0
  11491. docsforge/themes/material/templates/.icons/simple/angular.svg +1 -0
  11492. docsforge/themes/material/templates/.icons/simple/anilist.svg +1 -0
  11493. docsforge/themes/material/templates/.icons/simple/animalplanet.svg +1 -0
  11494. docsforge/themes/material/templates/.icons/simple/animedotjs.svg +1 -0
  11495. docsforge/themes/material/templates/.icons/simple/ankermake.svg +1 -0
  11496. docsforge/themes/material/templates/.icons/simple/anki.svg +1 -0
  11497. docsforge/themes/material/templates/.icons/simple/ansible.svg +1 -0
  11498. docsforge/themes/material/templates/.icons/simple/answer.svg +1 -0
  11499. docsforge/themes/material/templates/.icons/simple/ansys.svg +1 -0
  11500. docsforge/themes/material/templates/.icons/simple/anta.svg +1 -0
  11501. docsforge/themes/material/templates/.icons/simple/antdesign.svg +1 -0
  11502. docsforge/themes/material/templates/.icons/simple/antena3.svg +1 -0
  11503. docsforge/themes/material/templates/.icons/simple/antennapod.svg +1 -0
  11504. docsforge/themes/material/templates/.icons/simple/anthropic.svg +1 -0
  11505. docsforge/themes/material/templates/.icons/simple/antv.svg +1 -0
  11506. docsforge/themes/material/templates/.icons/simple/anycubic.svg +1 -0
  11507. docsforge/themes/material/templates/.icons/simple/anydesk.svg +1 -0
  11508. docsforge/themes/material/templates/.icons/simple/anytype.svg +1 -0
  11509. docsforge/themes/material/templates/.icons/simple/apache.svg +1 -0
  11510. docsforge/themes/material/templates/.icons/simple/apacheairflow.svg +1 -0
  11511. docsforge/themes/material/templates/.icons/simple/apacheant.svg +1 -0
  11512. docsforge/themes/material/templates/.icons/simple/apacheavro.svg +1 -0
  11513. docsforge/themes/material/templates/.icons/simple/apachecassandra.svg +1 -0
  11514. docsforge/themes/material/templates/.icons/simple/apachecloudstack.svg +1 -0
  11515. docsforge/themes/material/templates/.icons/simple/apachecordova.svg +1 -0
  11516. docsforge/themes/material/templates/.icons/simple/apachecouchdb.svg +1 -0
  11517. docsforge/themes/material/templates/.icons/simple/apachedolphinscheduler.svg +1 -0
  11518. docsforge/themes/material/templates/.icons/simple/apachedoris.svg +1 -0
  11519. docsforge/themes/material/templates/.icons/simple/apachedruid.svg +1 -0
  11520. docsforge/themes/material/templates/.icons/simple/apacheecharts.svg +1 -0
  11521. docsforge/themes/material/templates/.icons/simple/apacheflink.svg +1 -0
  11522. docsforge/themes/material/templates/.icons/simple/apachefreemarker.svg +1 -0
  11523. docsforge/themes/material/templates/.icons/simple/apachegroovy.svg +1 -0
  11524. docsforge/themes/material/templates/.icons/simple/apacheguacamole.svg +1 -0
  11525. docsforge/themes/material/templates/.icons/simple/apachehadoop.svg +1 -0
  11526. docsforge/themes/material/templates/.icons/simple/apachehbase.svg +1 -0
  11527. docsforge/themes/material/templates/.icons/simple/apachehive.svg +1 -0
  11528. docsforge/themes/material/templates/.icons/simple/apachejmeter.svg +1 -0
  11529. docsforge/themes/material/templates/.icons/simple/apachekafka.svg +1 -0
  11530. docsforge/themes/material/templates/.icons/simple/apachekylin.svg +1 -0
  11531. docsforge/themes/material/templates/.icons/simple/apachelucene.svg +1 -0
  11532. docsforge/themes/material/templates/.icons/simple/apachemaven.svg +1 -0
  11533. docsforge/themes/material/templates/.icons/simple/apachenetbeanside.svg +1 -0
  11534. docsforge/themes/material/templates/.icons/simple/apachenifi.svg +1 -0
  11535. docsforge/themes/material/templates/.icons/simple/apacheopenoffice.svg +1 -0
  11536. docsforge/themes/material/templates/.icons/simple/apacheparquet.svg +1 -0
  11537. docsforge/themes/material/templates/.icons/simple/apachepulsar.svg +1 -0
  11538. docsforge/themes/material/templates/.icons/simple/apacherocketmq.svg +1 -0
  11539. docsforge/themes/material/templates/.icons/simple/apachesolr.svg +1 -0
  11540. docsforge/themes/material/templates/.icons/simple/apachespark.svg +1 -0
  11541. docsforge/themes/material/templates/.icons/simple/apachestorm.svg +1 -0
  11542. docsforge/themes/material/templates/.icons/simple/apachesuperset.svg +1 -0
  11543. docsforge/themes/material/templates/.icons/simple/apachetomcat.svg +1 -0
  11544. docsforge/themes/material/templates/.icons/simple/aparat.svg +1 -0
  11545. docsforge/themes/material/templates/.icons/simple/apifox.svg +1 -0
  11546. docsforge/themes/material/templates/.icons/simple/apmterminals.svg +1 -0
  11547. docsforge/themes/material/templates/.icons/simple/apollographql.svg +1 -0
  11548. docsforge/themes/material/templates/.icons/simple/apostrophe.svg +1 -0
  11549. docsforge/themes/material/templates/.icons/simple/appgallery.svg +1 -0
  11550. docsforge/themes/material/templates/.icons/simple/appian.svg +1 -0
  11551. docsforge/themes/material/templates/.icons/simple/appimage.svg +1 -0
  11552. docsforge/themes/material/templates/.icons/simple/appium.svg +1 -0
  11553. docsforge/themes/material/templates/.icons/simple/apple.svg +1 -0
  11554. docsforge/themes/material/templates/.icons/simple/applearcade.svg +1 -0
  11555. docsforge/themes/material/templates/.icons/simple/applemusic.svg +1 -0
  11556. docsforge/themes/material/templates/.icons/simple/applenews.svg +1 -0
  11557. docsforge/themes/material/templates/.icons/simple/applepay.svg +1 -0
  11558. docsforge/themes/material/templates/.icons/simple/applepodcasts.svg +1 -0
  11559. docsforge/themes/material/templates/.icons/simple/appletv.svg +1 -0
  11560. docsforge/themes/material/templates/.icons/simple/appmanager.svg +1 -0
  11561. docsforge/themes/material/templates/.icons/simple/appsignal.svg +1 -0
  11562. docsforge/themes/material/templates/.icons/simple/appsmith.svg +1 -0
  11563. docsforge/themes/material/templates/.icons/simple/appstore.svg +1 -0
  11564. docsforge/themes/material/templates/.icons/simple/appveyor.svg +1 -0
  11565. docsforge/themes/material/templates/.icons/simple/appwrite.svg +1 -0
  11566. docsforge/themes/material/templates/.icons/simple/aqua.svg +1 -0
  11567. docsforge/themes/material/templates/.icons/simple/aral.svg +1 -0
  11568. docsforge/themes/material/templates/.icons/simple/arangodb.svg +1 -0
  11569. docsforge/themes/material/templates/.icons/simple/arc.svg +1 -0
  11570. docsforge/themes/material/templates/.icons/simple/arcgis.svg +1 -0
  11571. docsforge/themes/material/templates/.icons/simple/archicad.svg +1 -0
  11572. docsforge/themes/material/templates/.icons/simple/archiveofourown.svg +1 -0
  11573. docsforge/themes/material/templates/.icons/simple/archlinux.svg +1 -0
  11574. docsforge/themes/material/templates/.icons/simple/ardour.svg +1 -0
  11575. docsforge/themes/material/templates/.icons/simple/arduino.svg +1 -0
  11576. docsforge/themes/material/templates/.icons/simple/argo.svg +1 -0
  11577. docsforge/themes/material/templates/.icons/simple/argos.svg +1 -0
  11578. docsforge/themes/material/templates/.icons/simple/ariakit.svg +1 -0
  11579. docsforge/themes/material/templates/.icons/simple/arkecosystem.svg +1 -0
  11580. docsforge/themes/material/templates/.icons/simple/arlo.svg +1 -0
  11581. docsforge/themes/material/templates/.icons/simple/arm.svg +1 -0
  11582. docsforge/themes/material/templates/.icons/simple/armkeil.svg +1 -0
  11583. docsforge/themes/material/templates/.icons/simple/arstechnica.svg +1 -0
  11584. docsforge/themes/material/templates/.icons/simple/artifacthub.svg +1 -0
  11585. docsforge/themes/material/templates/.icons/simple/artixlinux.svg +1 -0
  11586. docsforge/themes/material/templates/.icons/simple/artstation.svg +1 -0
  11587. docsforge/themes/material/templates/.icons/simple/arxiv.svg +1 -0
  11588. docsforge/themes/material/templates/.icons/simple/asahilinux.svg +1 -0
  11589. docsforge/themes/material/templates/.icons/simple/asana.svg +1 -0
  11590. docsforge/themes/material/templates/.icons/simple/asciidoctor.svg +1 -0
  11591. docsforge/themes/material/templates/.icons/simple/asciinema.svg +1 -0
  11592. docsforge/themes/material/templates/.icons/simple/asda.svg +1 -0
  11593. docsforge/themes/material/templates/.icons/simple/aseprite.svg +1 -0
  11594. docsforge/themes/material/templates/.icons/simple/assemblyscript.svg +1 -0
  11595. docsforge/themes/material/templates/.icons/simple/asterisk.svg +1 -0
  11596. docsforge/themes/material/templates/.icons/simple/astonmartin.svg +1 -0
  11597. docsforge/themes/material/templates/.icons/simple/astra.svg +1 -0
  11598. docsforge/themes/material/templates/.icons/simple/astral.svg +1 -0
  11599. docsforge/themes/material/templates/.icons/simple/astro.svg +1 -0
  11600. docsforge/themes/material/templates/.icons/simple/asus.svg +1 -0
  11601. docsforge/themes/material/templates/.icons/simple/atandt.svg +1 -0
  11602. docsforge/themes/material/templates/.icons/simple/atari.svg +1 -0
  11603. docsforge/themes/material/templates/.icons/simple/atlasos.svg +1 -0
  11604. docsforge/themes/material/templates/.icons/simple/atlassian.svg +1 -0
  11605. docsforge/themes/material/templates/.icons/simple/auchan.svg +1 -0
  11606. docsforge/themes/material/templates/.icons/simple/audacity.svg +1 -0
  11607. docsforge/themes/material/templates/.icons/simple/audi.svg +1 -0
  11608. docsforge/themes/material/templates/.icons/simple/audible.svg +1 -0
  11609. docsforge/themes/material/templates/.icons/simple/audiobookshelf.svg +1 -0
  11610. docsforge/themes/material/templates/.icons/simple/audioboom.svg +1 -0
  11611. docsforge/themes/material/templates/.icons/simple/audiomack.svg +1 -0
  11612. docsforge/themes/material/templates/.icons/simple/audiotechnica.svg +1 -0
  11613. docsforge/themes/material/templates/.icons/simple/aurelia.svg +1 -0
  11614. docsforge/themes/material/templates/.icons/simple/autentique.svg +1 -0
  11615. docsforge/themes/material/templates/.icons/simple/auth0.svg +1 -0
  11616. docsforge/themes/material/templates/.icons/simple/authelia.svg +1 -0
  11617. docsforge/themes/material/templates/.icons/simple/authentik.svg +1 -0
  11618. docsforge/themes/material/templates/.icons/simple/autocad.svg +1 -0
  11619. docsforge/themes/material/templates/.icons/simple/autocannon.svg +1 -0
  11620. docsforge/themes/material/templates/.icons/simple/autodesk.svg +1 -0
  11621. docsforge/themes/material/templates/.icons/simple/autodeskmaya.svg +1 -0
  11622. docsforge/themes/material/templates/.icons/simple/autodeskrevit.svg +1 -0
  11623. docsforge/themes/material/templates/.icons/simple/autohotkey.svg +1 -0
  11624. docsforge/themes/material/templates/.icons/simple/autoit.svg +1 -0
  11625. docsforge/themes/material/templates/.icons/simple/automattic.svg +1 -0
  11626. docsforge/themes/material/templates/.icons/simple/autoprefixer.svg +1 -0
  11627. docsforge/themes/material/templates/.icons/simple/autozone.svg +1 -0
  11628. docsforge/themes/material/templates/.icons/simple/avajs.svg +1 -0
  11629. docsforge/themes/material/templates/.icons/simple/avaloniaui.svg +1 -0
  11630. docsforge/themes/material/templates/.icons/simple/avast.svg +1 -0
  11631. docsforge/themes/material/templates/.icons/simple/avianca.svg +1 -0
  11632. docsforge/themes/material/templates/.icons/simple/avira.svg +1 -0
  11633. docsforge/themes/material/templates/.icons/simple/avm.svg +1 -0
  11634. docsforge/themes/material/templates/.icons/simple/awesomelists.svg +1 -0
  11635. docsforge/themes/material/templates/.icons/simple/awesomewm.svg +1 -0
  11636. docsforge/themes/material/templates/.icons/simple/awwwards.svg +1 -0
  11637. docsforge/themes/material/templates/.icons/simple/axios.svg +1 -0
  11638. docsforge/themes/material/templates/.icons/simple/axisbank.svg +1 -0
  11639. docsforge/themes/material/templates/.icons/simple/b4x.svg +1 -0
  11640. docsforge/themes/material/templates/.icons/simple/babel.svg +1 -0
  11641. docsforge/themes/material/templates/.icons/simple/babelio.svg +1 -0
  11642. docsforge/themes/material/templates/.icons/simple/babylondotjs.svg +1 -0
  11643. docsforge/themes/material/templates/.icons/simple/backblaze.svg +1 -0
  11644. docsforge/themes/material/templates/.icons/simple/backbone.svg +1 -0
  11645. docsforge/themes/material/templates/.icons/simple/backbonedotjs.svg +1 -0
  11646. docsforge/themes/material/templates/.icons/simple/backendless.svg +1 -0
  11647. docsforge/themes/material/templates/.icons/simple/backstage.svg +1 -0
  11648. docsforge/themes/material/templates/.icons/simple/backstage_casting.svg +1 -0
  11649. docsforge/themes/material/templates/.icons/simple/badoo.svg +1 -0
  11650. docsforge/themes/material/templates/.icons/simple/baidu.svg +1 -0
  11651. docsforge/themes/material/templates/.icons/simple/bakalari.svg +1 -0
  11652. docsforge/themes/material/templates/.icons/simple/bamboo.svg +1 -0
  11653. docsforge/themes/material/templates/.icons/simple/bambulab.svg +1 -0
  11654. docsforge/themes/material/templates/.icons/simple/bandcamp.svg +1 -0
  11655. docsforge/themes/material/templates/.icons/simple/bandlab.svg +1 -0
  11656. docsforge/themes/material/templates/.icons/simple/bandrautomation.svg +1 -0
  11657. docsforge/themes/material/templates/.icons/simple/bandsintown.svg +1 -0
  11658. docsforge/themes/material/templates/.icons/simple/bankofamerica.svg +1 -0
  11659. docsforge/themes/material/templates/.icons/simple/barclays.svg +1 -0
  11660. docsforge/themes/material/templates/.icons/simple/baremetrics.svg +1 -0
  11661. docsforge/themes/material/templates/.icons/simple/barmenia.svg +1 -0
  11662. docsforge/themes/material/templates/.icons/simple/basecamp.svg +1 -0
  11663. docsforge/themes/material/templates/.icons/simple/baserow.svg +1 -0
  11664. docsforge/themes/material/templates/.icons/simple/basicattentiontoken.svg +1 -0
  11665. docsforge/themes/material/templates/.icons/simple/bastyon.svg +1 -0
  11666. docsforge/themes/material/templates/.icons/simple/bat.svg +1 -0
  11667. docsforge/themes/material/templates/.icons/simple/bata.svg +1 -0
  11668. docsforge/themes/material/templates/.icons/simple/battledotnet.svg +1 -0
  11669. docsforge/themes/material/templates/.icons/simple/bazel.svg +1 -0
  11670. docsforge/themes/material/templates/.icons/simple/beatport.svg +1 -0
  11671. docsforge/themes/material/templates/.icons/simple/beats.svg +1 -0
  11672. docsforge/themes/material/templates/.icons/simple/beatsbydre.svg +1 -0
  11673. docsforge/themes/material/templates/.icons/simple/beatstars.svg +1 -0
  11674. docsforge/themes/material/templates/.icons/simple/beekeeperstudio.svg +1 -0
  11675. docsforge/themes/material/templates/.icons/simple/behance.svg +1 -0
  11676. docsforge/themes/material/templates/.icons/simple/beijingsubway.svg +1 -0
  11677. docsforge/themes/material/templates/.icons/simple/bem.svg +1 -0
  11678. docsforge/themes/material/templates/.icons/simple/bentley.svg +1 -0
  11679. docsforge/themes/material/templates/.icons/simple/bento.svg +1 -0
  11680. docsforge/themes/material/templates/.icons/simple/bentobox.svg +1 -0
  11681. docsforge/themes/material/templates/.icons/simple/bentoml.svg +1 -0
  11682. docsforge/themes/material/templates/.icons/simple/bereal.svg +1 -0
  11683. docsforge/themes/material/templates/.icons/simple/betfair.svg +1 -0
  11684. docsforge/themes/material/templates/.icons/simple/betterauth.svg +1 -0
  11685. docsforge/themes/material/templates/.icons/simple/betterdiscord.svg +1 -0
  11686. docsforge/themes/material/templates/.icons/simple/betterstack.svg +1 -0
  11687. docsforge/themes/material/templates/.icons/simple/bevy.svg +1 -0
  11688. docsforge/themes/material/templates/.icons/simple/bigbasket.svg +1 -0
  11689. docsforge/themes/material/templates/.icons/simple/bigbluebutton.svg +1 -0
  11690. docsforge/themes/material/templates/.icons/simple/bigcartel.svg +1 -0
  11691. docsforge/themes/material/templates/.icons/simple/bigcommerce.svg +1 -0
  11692. docsforge/themes/material/templates/.icons/simple/bilibili.svg +1 -0
  11693. docsforge/themes/material/templates/.icons/simple/billboard.svg +1 -0
  11694. docsforge/themes/material/templates/.icons/simple/bim.svg +1 -0
  11695. docsforge/themes/material/templates/.icons/simple/binance.svg +1 -0
  11696. docsforge/themes/material/templates/.icons/simple/bioconductor.svg +1 -0
  11697. docsforge/themes/material/templates/.icons/simple/biolink.svg +1 -0
  11698. docsforge/themes/material/templates/.icons/simple/biome.svg +1 -0
  11699. docsforge/themes/material/templates/.icons/simple/bisecthosting.svg +1 -0
  11700. docsforge/themes/material/templates/.icons/simple/bit.svg +1 -0
  11701. docsforge/themes/material/templates/.icons/simple/bitbucket.svg +1 -0
  11702. docsforge/themes/material/templates/.icons/simple/bitcoin.svg +1 -0
  11703. docsforge/themes/material/templates/.icons/simple/bitcoincash.svg +1 -0
  11704. docsforge/themes/material/templates/.icons/simple/bitcoinsv.svg +1 -0
  11705. docsforge/themes/material/templates/.icons/simple/bitcomet.svg +1 -0
  11706. docsforge/themes/material/templates/.icons/simple/bitdefender.svg +1 -0
  11707. docsforge/themes/material/templates/.icons/simple/bitly.svg +1 -0
  11708. docsforge/themes/material/templates/.icons/simple/bitrise.svg +1 -0
  11709. docsforge/themes/material/templates/.icons/simple/bitsy.svg +1 -0
  11710. docsforge/themes/material/templates/.icons/simple/bittorrent.svg +1 -0
  11711. docsforge/themes/material/templates/.icons/simple/bitwarden.svg +1 -0
  11712. docsforge/themes/material/templates/.icons/simple/bitwig.svg +1 -0
  11713. docsforge/themes/material/templates/.icons/simple/black.svg +1 -0
  11714. docsforge/themes/material/templates/.icons/simple/blackberry.svg +1 -0
  11715. docsforge/themes/material/templates/.icons/simple/blackmagicdesign.svg +1 -0
  11716. docsforge/themes/material/templates/.icons/simple/blazemeter.svg +1 -0
  11717. docsforge/themes/material/templates/.icons/simple/blazor.svg +1 -0
  11718. docsforge/themes/material/templates/.icons/simple/blender.svg +1 -0
  11719. docsforge/themes/material/templates/.icons/simple/blibli.svg +1 -0
  11720. docsforge/themes/material/templates/.icons/simple/blockbench.svg +1 -0
  11721. docsforge/themes/material/templates/.icons/simple/blockchaindotcom.svg +1 -0
  11722. docsforge/themes/material/templates/.icons/simple/blogger.svg +1 -0
  11723. docsforge/themes/material/templates/.icons/simple/bloglovin.svg +1 -0
  11724. docsforge/themes/material/templates/.icons/simple/blueprint.svg +1 -0
  11725. docsforge/themes/material/templates/.icons/simple/bluesky.svg +1 -0
  11726. docsforge/themes/material/templates/.icons/simple/bluesound.svg +1 -0
  11727. docsforge/themes/material/templates/.icons/simple/bluetooth.svg +1 -0
  11728. docsforge/themes/material/templates/.icons/simple/bmcsoftware.svg +1 -0
  11729. docsforge/themes/material/templates/.icons/simple/bmw.svg +1 -0
  11730. docsforge/themes/material/templates/.icons/simple/bnbchain.svg +1 -0
  11731. docsforge/themes/material/templates/.icons/simple/boardgamegeek.svg +1 -0
  11732. docsforge/themes/material/templates/.icons/simple/boat.svg +1 -0
  11733. docsforge/themes/material/templates/.icons/simple/boehringeringelheim.svg +1 -0
  11734. docsforge/themes/material/templates/.icons/simple/boeing.svg +1 -0
  11735. docsforge/themes/material/templates/.icons/simple/bohemiainteractive.svg +1 -0
  11736. docsforge/themes/material/templates/.icons/simple/bombardier.svg +1 -0
  11737. docsforge/themes/material/templates/.icons/simple/bookalope.svg +1 -0
  11738. docsforge/themes/material/templates/.icons/simple/bookbub.svg +1 -0
  11739. docsforge/themes/material/templates/.icons/simple/bookingdotcom.svg +1 -0
  11740. docsforge/themes/material/templates/.icons/simple/bookmeter.svg +1 -0
  11741. docsforge/themes/material/templates/.icons/simple/bookmyshow.svg +1 -0
  11742. docsforge/themes/material/templates/.icons/simple/bookstack.svg +1 -0
  11743. docsforge/themes/material/templates/.icons/simple/boost.svg +1 -0
  11744. docsforge/themes/material/templates/.icons/simple/boosty.svg +1 -0
  11745. docsforge/themes/material/templates/.icons/simple/boots.svg +1 -0
  11746. docsforge/themes/material/templates/.icons/simple/bootstrap.svg +1 -0
  11747. docsforge/themes/material/templates/.icons/simple/borgbackup.svg +1 -0
  11748. docsforge/themes/material/templates/.icons/simple/bosch.svg +1 -0
  11749. docsforge/themes/material/templates/.icons/simple/bose.svg +1 -0
  11750. docsforge/themes/material/templates/.icons/simple/botblecms.svg +1 -0
  11751. docsforge/themes/material/templates/.icons/simple/boulanger.svg +1 -0
  11752. docsforge/themes/material/templates/.icons/simple/bower.svg +1 -0
  11753. docsforge/themes/material/templates/.icons/simple/box.svg +1 -0
  11754. docsforge/themes/material/templates/.icons/simple/boxysvg.svg +1 -0
  11755. docsforge/themes/material/templates/.icons/simple/braintree.svg +1 -0
  11756. docsforge/themes/material/templates/.icons/simple/braintrust.svg +1 -0
  11757. docsforge/themes/material/templates/.icons/simple/brandfetch.svg +1 -0
  11758. docsforge/themes/material/templates/.icons/simple/brandfolder.svg +1 -0
  11759. docsforge/themes/material/templates/.icons/simple/brave.svg +1 -0
  11760. docsforge/themes/material/templates/.icons/simple/breaker.svg +1 -0
  11761. docsforge/themes/material/templates/.icons/simple/brenntag.svg +1 -0
  11762. docsforge/themes/material/templates/.icons/simple/brevo.svg +1 -0
  11763. docsforge/themes/material/templates/.icons/simple/brex.svg +1 -0
  11764. docsforge/themes/material/templates/.icons/simple/bricks.svg +1 -0
  11765. docsforge/themes/material/templates/.icons/simple/britishairways.svg +1 -0
  11766. docsforge/themes/material/templates/.icons/simple/broadcom.svg +1 -0
  11767. docsforge/themes/material/templates/.icons/simple/bruno.svg +1 -0
  11768. docsforge/themes/material/templates/.icons/simple/bsd.svg +1 -0
  11769. docsforge/themes/material/templates/.icons/simple/bspwm.svg +1 -0
  11770. docsforge/themes/material/templates/.icons/simple/bt.svg +1 -0
  11771. docsforge/themes/material/templates/.icons/simple/buddy.svg +1 -0
  11772. docsforge/themes/material/templates/.icons/simple/budibase.svg +1 -0
  11773. docsforge/themes/material/templates/.icons/simple/buefy.svg +1 -0
  11774. docsforge/themes/material/templates/.icons/simple/buffer.svg +1 -0
  11775. docsforge/themes/material/templates/.icons/simple/bugatti.svg +1 -0
  11776. docsforge/themes/material/templates/.icons/simple/bugcrowd.svg +1 -0
  11777. docsforge/themes/material/templates/.icons/simple/buhl.svg +1 -0
  11778. docsforge/themes/material/templates/.icons/simple/buildkite.svg +1 -0
  11779. docsforge/themes/material/templates/.icons/simple/builtbybit.svg +1 -0
  11780. docsforge/themes/material/templates/.icons/simple/bukalapak.svg +1 -0
  11781. docsforge/themes/material/templates/.icons/simple/bulma.svg +1 -0
  11782. docsforge/themes/material/templates/.icons/simple/bun.svg +1 -0
  11783. docsforge/themes/material/templates/.icons/simple/bungie.svg +1 -0
  11784. docsforge/themes/material/templates/.icons/simple/bunnydotnet.svg +1 -0
  11785. docsforge/themes/material/templates/.icons/simple/bunq.svg +1 -0
  11786. docsforge/themes/material/templates/.icons/simple/burgerking.svg +1 -0
  11787. docsforge/themes/material/templates/.icons/simple/burpsuite.svg +1 -0
  11788. docsforge/themes/material/templates/.icons/simple/burton.svg +1 -0
  11789. docsforge/themes/material/templates/.icons/simple/buymeacoffee.svg +1 -0
  11790. docsforge/themes/material/templates/.icons/simple/buysellads.svg +1 -0
  11791. docsforge/themes/material/templates/.icons/simple/buzzfeed.svg +1 -0
  11792. docsforge/themes/material/templates/.icons/simple/bvg.svg +1 -0
  11793. docsforge/themes/material/templates/.icons/simple/byjus.svg +1 -0
  11794. docsforge/themes/material/templates/.icons/simple/bytedance.svg +1 -0
  11795. docsforge/themes/material/templates/.icons/simple/c.svg +1 -0
  11796. docsforge/themes/material/templates/.icons/simple/cachet.svg +1 -0
  11797. docsforge/themes/material/templates/.icons/simple/caddy.svg +1 -0
  11798. docsforge/themes/material/templates/.icons/simple/cadillac.svg +1 -0
  11799. docsforge/themes/material/templates/.icons/simple/cafepress.svg +1 -0
  11800. docsforge/themes/material/templates/.icons/simple/cairographics.svg +1 -0
  11801. docsforge/themes/material/templates/.icons/simple/cairometro.svg +1 -0
  11802. docsforge/themes/material/templates/.icons/simple/caixabank.svg +1 -0
  11803. docsforge/themes/material/templates/.icons/simple/cakephp.svg +1 -0
  11804. docsforge/themes/material/templates/.icons/simple/caldotcom.svg +1 -0
  11805. docsforge/themes/material/templates/.icons/simple/calendly.svg +1 -0
  11806. docsforge/themes/material/templates/.icons/simple/calibreweb.svg +1 -0
  11807. docsforge/themes/material/templates/.icons/simple/campaignmonitor.svg +1 -0
  11808. docsforge/themes/material/templates/.icons/simple/camunda.svg +1 -0
  11809. docsforge/themes/material/templates/.icons/simple/canonical.svg +1 -0
  11810. docsforge/themes/material/templates/.icons/simple/canvas.svg +1 -0
  11811. docsforge/themes/material/templates/.icons/simple/capacitor.svg +1 -0
  11812. docsforge/themes/material/templates/.icons/simple/caprover.svg +1 -0
  11813. docsforge/themes/material/templates/.icons/simple/cardano.svg +1 -0
  11814. docsforge/themes/material/templates/.icons/simple/cardmarket.svg +1 -0
  11815. docsforge/themes/material/templates/.icons/simple/carlsberggroup.svg +1 -0
  11816. docsforge/themes/material/templates/.icons/simple/carrd.svg +1 -0
  11817. docsforge/themes/material/templates/.icons/simple/carrefour.svg +1 -0
  11818. docsforge/themes/material/templates/.icons/simple/carthrottle.svg +1 -0
  11819. docsforge/themes/material/templates/.icons/simple/carto.svg +1 -0
  11820. docsforge/themes/material/templates/.icons/simple/cashapp.svg +1 -0
  11821. docsforge/themes/material/templates/.icons/simple/castbox.svg +1 -0
  11822. docsforge/themes/material/templates/.icons/simple/castorama.svg +1 -0
  11823. docsforge/themes/material/templates/.icons/simple/castro.svg +1 -0
  11824. docsforge/themes/material/templates/.icons/simple/caterpillar.svg +1 -0
  11825. docsforge/themes/material/templates/.icons/simple/cbc.svg +1 -0
  11826. docsforge/themes/material/templates/.icons/simple/cbs.svg +1 -0
  11827. docsforge/themes/material/templates/.icons/simple/ccc.svg +1 -0
  11828. docsforge/themes/material/templates/.icons/simple/ccleaner.svg +1 -0
  11829. docsforge/themes/material/templates/.icons/simple/cdprojekt.svg +1 -0
  11830. docsforge/themes/material/templates/.icons/simple/ce.svg +1 -0
  11831. docsforge/themes/material/templates/.icons/simple/celery.svg +1 -0
  11832. docsforge/themes/material/templates/.icons/simple/celestron.svg +1 -0
  11833. docsforge/themes/material/templates/.icons/simple/centos.svg +1 -0
  11834. docsforge/themes/material/templates/.icons/simple/ceph.svg +1 -0
  11835. docsforge/themes/material/templates/.icons/simple/cesium.svg +1 -0
  11836. docsforge/themes/material/templates/.icons/simple/chai.svg +1 -0
  11837. docsforge/themes/material/templates/.icons/simple/chainguard.svg +1 -0
  11838. docsforge/themes/material/templates/.icons/simple/chainlink.svg +1 -0
  11839. docsforge/themes/material/templates/.icons/simple/chakraui.svg +1 -0
  11840. docsforge/themes/material/templates/.icons/simple/changedetection.svg +1 -0
  11841. docsforge/themes/material/templates/.icons/simple/channel4.svg +1 -0
  11842. docsforge/themes/material/templates/.icons/simple/charles.svg +1 -0
  11843. docsforge/themes/material/templates/.icons/simple/chartdotjs.svg +1 -0
  11844. docsforge/themes/material/templates/.icons/simple/chartmogul.svg +1 -0
  11845. docsforge/themes/material/templates/.icons/simple/chase.svg +1 -0
  11846. docsforge/themes/material/templates/.icons/simple/chatbot.svg +1 -0
  11847. docsforge/themes/material/templates/.icons/simple/chatwoot.svg +1 -0
  11848. docsforge/themes/material/templates/.icons/simple/checkio.svg +1 -0
  11849. docsforge/themes/material/templates/.icons/simple/checkmarx.svg +1 -0
  11850. docsforge/themes/material/templates/.icons/simple/checkmk.svg +1 -0
  11851. docsforge/themes/material/templates/.icons/simple/chedraui.svg +1 -0
  11852. docsforge/themes/material/templates/.icons/simple/cheerio.svg +1 -0
  11853. docsforge/themes/material/templates/.icons/simple/chef.svg +1 -0
  11854. docsforge/themes/material/templates/.icons/simple/chemex.svg +1 -0
  11855. docsforge/themes/material/templates/.icons/simple/chessdotcom.svg +1 -0
  11856. docsforge/themes/material/templates/.icons/simple/chevrolet.svg +1 -0
  11857. docsforge/themes/material/templates/.icons/simple/chianetwork.svg +1 -0
  11858. docsforge/themes/material/templates/.icons/simple/chinaeasternairlines.svg +1 -0
  11859. docsforge/themes/material/templates/.icons/simple/chinasouthernairlines.svg +1 -0
  11860. docsforge/themes/material/templates/.icons/simple/chocolatey.svg +1 -0
  11861. docsforge/themes/material/templates/.icons/simple/chromatic.svg +1 -0
  11862. docsforge/themes/material/templates/.icons/simple/chromewebstore.svg +1 -0
  11863. docsforge/themes/material/templates/.icons/simple/chrysler.svg +1 -0
  11864. docsforge/themes/material/templates/.icons/simple/chupachups.svg +1 -0
  11865. docsforge/themes/material/templates/.icons/simple/cilium.svg +1 -0
  11866. docsforge/themes/material/templates/.icons/simple/cinema4d.svg +1 -0
  11867. docsforge/themes/material/templates/.icons/simple/cinnamon.svg +1 -0
  11868. docsforge/themes/material/templates/.icons/simple/circle.svg +1 -0
  11869. docsforge/themes/material/templates/.icons/simple/circleci.svg +1 -0
  11870. docsforge/themes/material/templates/.icons/simple/circuitverse.svg +1 -0
  11871. docsforge/themes/material/templates/.icons/simple/cirrusci.svg +1 -0
  11872. docsforge/themes/material/templates/.icons/simple/cisco.svg +1 -0
  11873. docsforge/themes/material/templates/.icons/simple/citrix.svg +1 -0
  11874. docsforge/themes/material/templates/.icons/simple/citroen.svg +1 -0
  11875. docsforge/themes/material/templates/.icons/simple/civicrm.svg +1 -0
  11876. docsforge/themes/material/templates/.icons/simple/civo.svg +1 -0
  11877. docsforge/themes/material/templates/.icons/simple/clarifai.svg +1 -0
  11878. docsforge/themes/material/templates/.icons/simple/claris.svg +1 -0
  11879. docsforge/themes/material/templates/.icons/simple/clarivate.svg +1 -0
  11880. docsforge/themes/material/templates/.icons/simple/claude.svg +1 -0
  11881. docsforge/themes/material/templates/.icons/simple/clerk.svg +1 -0
  11882. docsforge/themes/material/templates/.icons/simple/clevercloud.svg +1 -0
  11883. docsforge/themes/material/templates/.icons/simple/clickhouse.svg +1 -0
  11884. docsforge/themes/material/templates/.icons/simple/clickup.svg +1 -0
  11885. docsforge/themes/material/templates/.icons/simple/clion.svg +1 -0
  11886. docsforge/themes/material/templates/.icons/simple/clockify.svg +1 -0
  11887. docsforge/themes/material/templates/.icons/simple/clojure.svg +1 -0
  11888. docsforge/themes/material/templates/.icons/simple/cloud66.svg +1 -0
  11889. docsforge/themes/material/templates/.icons/simple/cloudbees.svg +1 -0
  11890. docsforge/themes/material/templates/.icons/simple/cloudcannon.svg +1 -0
  11891. docsforge/themes/material/templates/.icons/simple/cloudera.svg +1 -0
  11892. docsforge/themes/material/templates/.icons/simple/cloudflare.svg +1 -0
  11893. docsforge/themes/material/templates/.icons/simple/cloudflarepages.svg +1 -0
  11894. docsforge/themes/material/templates/.icons/simple/cloudflareworkers.svg +1 -0
  11895. docsforge/themes/material/templates/.icons/simple/cloudfoundry.svg +1 -0
  11896. docsforge/themes/material/templates/.icons/simple/cloudinary.svg +1 -0
  11897. docsforge/themes/material/templates/.icons/simple/cloudnativebuild.svg +1 -0
  11898. docsforge/themes/material/templates/.icons/simple/cloudron.svg +1 -0
  11899. docsforge/themes/material/templates/.icons/simple/cloudsmith.svg +1 -0
  11900. docsforge/themes/material/templates/.icons/simple/cloudways.svg +1 -0
  11901. docsforge/themes/material/templates/.icons/simple/clubforce.svg +1 -0
  11902. docsforge/themes/material/templates/.icons/simple/clubhouse.svg +1 -0
  11903. docsforge/themes/material/templates/.icons/simple/clyp.svg +1 -0
  11904. docsforge/themes/material/templates/.icons/simple/cmake.svg +1 -0
  11905. docsforge/themes/material/templates/.icons/simple/cncf.svg +1 -0
  11906. docsforge/themes/material/templates/.icons/simple/cnes.svg +1 -0
  11907. docsforge/themes/material/templates/.icons/simple/cnet.svg +1 -0
  11908. docsforge/themes/material/templates/.icons/simple/cnn.svg +1 -0
  11909. docsforge/themes/material/templates/.icons/simple/cobalt.svg +1 -0
  11910. docsforge/themes/material/templates/.icons/simple/cocacola.svg +1 -0
  11911. docsforge/themes/material/templates/.icons/simple/cockpit.svg +1 -0
  11912. docsforge/themes/material/templates/.icons/simple/cockroachlabs.svg +1 -0
  11913. docsforge/themes/material/templates/.icons/simple/cocoapods.svg +1 -0
  11914. docsforge/themes/material/templates/.icons/simple/cocos.svg +1 -0
  11915. docsforge/themes/material/templates/.icons/simple/coda.svg +1 -0
  11916. docsforge/themes/material/templates/.icons/simple/codacy.svg +1 -0
  11917. docsforge/themes/material/templates/.icons/simple/codeberg.svg +1 -0
  11918. docsforge/themes/material/templates/.icons/simple/codeblocks.svg +1 -0
  11919. docsforge/themes/material/templates/.icons/simple/codecademy.svg +1 -0
  11920. docsforge/themes/material/templates/.icons/simple/codeceptjs.svg +1 -0
  11921. docsforge/themes/material/templates/.icons/simple/codechef.svg +1 -0
  11922. docsforge/themes/material/templates/.icons/simple/codeclimate.svg +1 -0
  11923. docsforge/themes/material/templates/.icons/simple/codecov.svg +1 -0
  11924. docsforge/themes/material/templates/.icons/simple/codecrafters.svg +1 -0
  11925. docsforge/themes/material/templates/.icons/simple/codefactor.svg +1 -0
  11926. docsforge/themes/material/templates/.icons/simple/codeforces.svg +1 -0
  11927. docsforge/themes/material/templates/.icons/simple/codefresh.svg +1 -0
  11928. docsforge/themes/material/templates/.icons/simple/codeigniter.svg +1 -0
  11929. docsforge/themes/material/templates/.icons/simple/codemagic.svg +1 -0
  11930. docsforge/themes/material/templates/.icons/simple/codementor.svg +1 -0
  11931. docsforge/themes/material/templates/.icons/simple/codemirror.svg +1 -0
  11932. docsforge/themes/material/templates/.icons/simple/codenewbie.svg +1 -0
  11933. docsforge/themes/material/templates/.icons/simple/codeproject.svg +1 -0
  11934. docsforge/themes/material/templates/.icons/simple/coder.svg +1 -0
  11935. docsforge/themes/material/templates/.icons/simple/coderabbit.svg +1 -0
  11936. docsforge/themes/material/templates/.icons/simple/codersrank.svg +1 -0
  11937. docsforge/themes/material/templates/.icons/simple/coderwall.svg +1 -0
  11938. docsforge/themes/material/templates/.icons/simple/codesandbox.svg +1 -0
  11939. docsforge/themes/material/templates/.icons/simple/codeship.svg +1 -0
  11940. docsforge/themes/material/templates/.icons/simple/codesignal.svg +1 -0
  11941. docsforge/themes/material/templates/.icons/simple/codestream.svg +1 -0
  11942. docsforge/themes/material/templates/.icons/simple/codewars.svg +1 -0
  11943. docsforge/themes/material/templates/.icons/simple/codingame.svg +1 -0
  11944. docsforge/themes/material/templates/.icons/simple/codingninjas.svg +1 -0
  11945. docsforge/themes/material/templates/.icons/simple/codio.svg +1 -0
  11946. docsforge/themes/material/templates/.icons/simple/coffeescript.svg +1 -0
  11947. docsforge/themes/material/templates/.icons/simple/coggle.svg +1 -0
  11948. docsforge/themes/material/templates/.icons/simple/coinbase.svg +1 -0
  11949. docsforge/themes/material/templates/.icons/simple/coinmarketcap.svg +1 -0
  11950. docsforge/themes/material/templates/.icons/simple/collaboraonline.svg +1 -0
  11951. docsforge/themes/material/templates/.icons/simple/comicfury.svg +1 -0
  11952. docsforge/themes/material/templates/.icons/simple/comma.svg +1 -0
  11953. docsforge/themes/material/templates/.icons/simple/commerzbank.svg +1 -0
  11954. docsforge/themes/material/templates/.icons/simple/commitlint.svg +1 -0
  11955. docsforge/themes/material/templates/.icons/simple/commodore.svg +1 -0
  11956. docsforge/themes/material/templates/.icons/simple/commonlisp.svg +1 -0
  11957. docsforge/themes/material/templates/.icons/simple/commonworkflowlanguage.svg +1 -0
  11958. docsforge/themes/material/templates/.icons/simple/compilerexplorer.svg +1 -0
  11959. docsforge/themes/material/templates/.icons/simple/composer.svg +1 -0
  11960. docsforge/themes/material/templates/.icons/simple/comptia.svg +1 -0
  11961. docsforge/themes/material/templates/.icons/simple/comsol.svg +1 -0
  11962. docsforge/themes/material/templates/.icons/simple/conan.svg +1 -0
  11963. docsforge/themes/material/templates/.icons/simple/concourse.svg +1 -0
  11964. docsforge/themes/material/templates/.icons/simple/condaforge.svg +1 -0
  11965. docsforge/themes/material/templates/.icons/simple/conekta.svg +1 -0
  11966. docsforge/themes/material/templates/.icons/simple/confluence.svg +1 -0
  11967. docsforge/themes/material/templates/.icons/simple/construct3.svg +1 -0
  11968. docsforge/themes/material/templates/.icons/simple/consul.svg +1 -0
  11969. docsforge/themes/material/templates/.icons/simple/contabo.svg +1 -0
  11970. docsforge/themes/material/templates/.icons/simple/contactlesspayment.svg +1 -0
  11971. docsforge/themes/material/templates/.icons/simple/containerd.svg +1 -0
  11972. docsforge/themes/material/templates/.icons/simple/contao.svg +1 -0
  11973. docsforge/themes/material/templates/.icons/simple/contentful.svg +1 -0
  11974. docsforge/themes/material/templates/.icons/simple/contentstack.svg +1 -0
  11975. docsforge/themes/material/templates/.icons/simple/continente.svg +1 -0
  11976. docsforge/themes/material/templates/.icons/simple/contributorcovenant.svg +1 -0
  11977. docsforge/themes/material/templates/.icons/simple/conventionalcommits.svg +1 -0
  11978. docsforge/themes/material/templates/.icons/simple/convertio.svg +1 -0
  11979. docsforge/themes/material/templates/.icons/simple/cookiecutter.svg +1 -0
  11980. docsforge/themes/material/templates/.icons/simple/coolermaster.svg +1 -0
  11981. docsforge/themes/material/templates/.icons/simple/coolify.svg +1 -0
  11982. docsforge/themes/material/templates/.icons/simple/coop.svg +1 -0
  11983. docsforge/themes/material/templates/.icons/simple/copaairlines.svg +1 -0
  11984. docsforge/themes/material/templates/.icons/simple/coppel.svg +1 -0
  11985. docsforge/themes/material/templates/.icons/simple/cora.svg +1 -0
  11986. docsforge/themes/material/templates/.icons/simple/coreldraw.svg +1 -0
  11987. docsforge/themes/material/templates/.icons/simple/coronaengine.svg +1 -0
  11988. docsforge/themes/material/templates/.icons/simple/coronarenderer.svg +1 -0
  11989. docsforge/themes/material/templates/.icons/simple/corsair.svg +1 -0
  11990. docsforge/themes/material/templates/.icons/simple/couchbase.svg +1 -0
  11991. docsforge/themes/material/templates/.icons/simple/counterstrike.svg +1 -0
  11992. docsforge/themes/material/templates/.icons/simple/countingworkspro.svg +1 -0
  11993. docsforge/themes/material/templates/.icons/simple/coursera.svg +1 -0
  11994. docsforge/themes/material/templates/.icons/simple/coveralls.svg +1 -0
  11995. docsforge/themes/material/templates/.icons/simple/coze.svg +1 -0
  11996. docsforge/themes/material/templates/.icons/simple/cpanel.svg +1 -0
  11997. docsforge/themes/material/templates/.icons/simple/cplusplus.svg +1 -0
  11998. docsforge/themes/material/templates/.icons/simple/cplusplusbuilder.svg +1 -0
  11999. docsforge/themes/material/templates/.icons/simple/craftcms.svg +1 -0
  12000. docsforge/themes/material/templates/.icons/simple/craftsman.svg +1 -0
  12001. docsforge/themes/material/templates/.icons/simple/cratedb.svg +1 -0
  12002. docsforge/themes/material/templates/.icons/simple/crayon.svg +1 -0
  12003. docsforge/themes/material/templates/.icons/simple/creality.svg +1 -0
  12004. docsforge/themes/material/templates/.icons/simple/createreactapp.svg +1 -0
  12005. docsforge/themes/material/templates/.icons/simple/creativecommons.svg +1 -0
  12006. docsforge/themes/material/templates/.icons/simple/creativetechnology.svg +1 -0
  12007. docsforge/themes/material/templates/.icons/simple/credly.svg +1 -0
  12008. docsforge/themes/material/templates/.icons/simple/crehana.svg +1 -0
  12009. docsforge/themes/material/templates/.icons/simple/crewai.svg +1 -0
  12010. docsforge/themes/material/templates/.icons/simple/crewunited.svg +1 -0
  12011. docsforge/themes/material/templates/.icons/simple/criticalrole.svg +1 -0
  12012. docsforge/themes/material/templates/.icons/simple/crowdin.svg +1 -0
  12013. docsforge/themes/material/templates/.icons/simple/crowdsource.svg +1 -0
  12014. docsforge/themes/material/templates/.icons/simple/crunchbase.svg +1 -0
  12015. docsforge/themes/material/templates/.icons/simple/crunchyroll.svg +1 -0
  12016. docsforge/themes/material/templates/.icons/simple/cryengine.svg +1 -0
  12017. docsforge/themes/material/templates/.icons/simple/cryptomator.svg +1 -0
  12018. docsforge/themes/material/templates/.icons/simple/cryptpad.svg +1 -0
  12019. docsforge/themes/material/templates/.icons/simple/crystal.svg +1 -0
  12020. docsforge/themes/material/templates/.icons/simple/csdn.svg +1 -0
  12021. docsforge/themes/material/templates/.icons/simple/css.svg +1 -0
  12022. docsforge/themes/material/templates/.icons/simple/cssdesignawards.svg +1 -0
  12023. docsforge/themes/material/templates/.icons/simple/cssmodules.svg +1 -0
  12024. docsforge/themes/material/templates/.icons/simple/csswizardry.svg +1 -0
  12025. docsforge/themes/material/templates/.icons/simple/cts.svg +1 -0
  12026. docsforge/themes/material/templates/.icons/simple/cucumber.svg +1 -0
  12027. docsforge/themes/material/templates/.icons/simple/cultura.svg +1 -0
  12028. docsforge/themes/material/templates/.icons/simple/curl.svg +1 -0
  12029. docsforge/themes/material/templates/.icons/simple/curseforge.svg +1 -0
  12030. docsforge/themes/material/templates/.icons/simple/cursor.svg +1 -0
  12031. docsforge/themes/material/templates/.icons/simple/customink.svg +1 -0
  12032. docsforge/themes/material/templates/.icons/simple/cyberdefenders.svg +1 -0
  12033. docsforge/themes/material/templates/.icons/simple/cycling74.svg +1 -0
  12034. docsforge/themes/material/templates/.icons/simple/cypress.svg +1 -0
  12035. docsforge/themes/material/templates/.icons/simple/cytoscapedotjs.svg +1 -0
  12036. docsforge/themes/material/templates/.icons/simple/d.svg +1 -0
  12037. docsforge/themes/material/templates/.icons/simple/d3.svg +1 -0
  12038. docsforge/themes/material/templates/.icons/simple/dacia.svg +1 -0
  12039. docsforge/themes/material/templates/.icons/simple/daf.svg +1 -0
  12040. docsforge/themes/material/templates/.icons/simple/dailydotdev.svg +1 -0
  12041. docsforge/themes/material/templates/.icons/simple/dailymotion.svg +1 -0
  12042. docsforge/themes/material/templates/.icons/simple/daisyui.svg +1 -0
  12043. docsforge/themes/material/templates/.icons/simple/dapr.svg +1 -0
  12044. docsforge/themes/material/templates/.icons/simple/darkreader.svg +1 -0
  12045. docsforge/themes/material/templates/.icons/simple/dart.svg +1 -0
  12046. docsforge/themes/material/templates/.icons/simple/darty.svg +1 -0
  12047. docsforge/themes/material/templates/.icons/simple/daserste.svg +1 -0
  12048. docsforge/themes/material/templates/.icons/simple/dash.svg +1 -0
  12049. docsforge/themes/material/templates/.icons/simple/dash0.svg +1 -0
  12050. docsforge/themes/material/templates/.icons/simple/dashlane.svg +1 -0
  12051. docsforge/themes/material/templates/.icons/simple/dask.svg +1 -0
  12052. docsforge/themes/material/templates/.icons/simple/dassaultsystemes.svg +1 -0
  12053. docsforge/themes/material/templates/.icons/simple/databricks.svg +1 -0
  12054. docsforge/themes/material/templates/.icons/simple/datacamp.svg +1 -0
  12055. docsforge/themes/material/templates/.icons/simple/datadog.svg +1 -0
  12056. docsforge/themes/material/templates/.icons/simple/datadotai.svg +1 -0
  12057. docsforge/themes/material/templates/.icons/simple/datagrip.svg +1 -0
  12058. docsforge/themes/material/templates/.icons/simple/dataiku.svg +1 -0
  12059. docsforge/themes/material/templates/.icons/simple/datastax.svg +1 -0
  12060. docsforge/themes/material/templates/.icons/simple/datefns.svg +1 -0
  12061. docsforge/themes/material/templates/.icons/simple/datev.svg +1 -0
  12062. docsforge/themes/material/templates/.icons/simple/datocms.svg +1 -0
  12063. docsforge/themes/material/templates/.icons/simple/datto.svg +1 -0
  12064. docsforge/themes/material/templates/.icons/simple/davinciresolve.svg +1 -0
  12065. docsforge/themes/material/templates/.icons/simple/dazhongdianping.svg +1 -0
  12066. docsforge/themes/material/templates/.icons/simple/dazn.svg +1 -0
  12067. docsforge/themes/material/templates/.icons/simple/dbeaver.svg +1 -0
  12068. docsforge/themes/material/templates/.icons/simple/dblp.svg +1 -0
  12069. docsforge/themes/material/templates/.icons/simple/dcentertainment.svg +1 -0
  12070. docsforge/themes/material/templates/.icons/simple/debian.svg +1 -0
  12071. docsforge/themes/material/templates/.icons/simple/debridlink.svg +1 -0
  12072. docsforge/themes/material/templates/.icons/simple/decapcms.svg +1 -0
  12073. docsforge/themes/material/templates/.icons/simple/decentraland.svg +1 -0
  12074. docsforge/themes/material/templates/.icons/simple/dedge.svg +1 -0
  12075. docsforge/themes/material/templates/.icons/simple/deepcool.svg +1 -0
  12076. docsforge/themes/material/templates/.icons/simple/deepgram.svg +1 -0
  12077. docsforge/themes/material/templates/.icons/simple/deepin.svg +1 -0
  12078. docsforge/themes/material/templates/.icons/simple/deepl.svg +1 -0
  12079. docsforge/themes/material/templates/.icons/simple/deepmind.svg +1 -0
  12080. docsforge/themes/material/templates/.icons/simple/deepnote.svg +1 -0
  12081. docsforge/themes/material/templates/.icons/simple/deliveroo.svg +1 -0
  12082. docsforge/themes/material/templates/.icons/simple/dell.svg +1 -0
  12083. docsforge/themes/material/templates/.icons/simple/delonghi.svg +1 -0
  12084. docsforge/themes/material/templates/.icons/simple/delphi.svg +1 -0
  12085. docsforge/themes/material/templates/.icons/simple/delta.svg +1 -0
  12086. docsforge/themes/material/templates/.icons/simple/deluge.svg +1 -0
  12087. docsforge/themes/material/templates/.icons/simple/deno.svg +1 -0
  12088. docsforge/themes/material/templates/.icons/simple/denon.svg +1 -0
  12089. docsforge/themes/material/templates/.icons/simple/dependabot.svg +1 -0
  12090. docsforge/themes/material/templates/.icons/simple/dependencycheck.svg +1 -0
  12091. docsforge/themes/material/templates/.icons/simple/depositphotos.svg +1 -0
  12092. docsforge/themes/material/templates/.icons/simple/derspiegel.svg +1 -0
  12093. docsforge/themes/material/templates/.icons/simple/deutschebahn.svg +1 -0
  12094. docsforge/themes/material/templates/.icons/simple/deutschebank.svg +1 -0
  12095. docsforge/themes/material/templates/.icons/simple/deutschepost.svg +1 -0
  12096. docsforge/themes/material/templates/.icons/simple/deutschetelekom.svg +1 -0
  12097. docsforge/themes/material/templates/.icons/simple/deutschewelle.svg +1 -0
  12098. docsforge/themes/material/templates/.icons/simple/devbox.svg +1 -0
  12099. docsforge/themes/material/templates/.icons/simple/devdotto.svg +1 -0
  12100. docsforge/themes/material/templates/.icons/simple/devexpress.svg +1 -0
  12101. docsforge/themes/material/templates/.icons/simple/deviantart.svg +1 -0
  12102. docsforge/themes/material/templates/.icons/simple/devpost.svg +1 -0
  12103. docsforge/themes/material/templates/.icons/simple/devrant.svg +1 -0
  12104. docsforge/themes/material/templates/.icons/simple/dgraph.svg +1 -0
  12105. docsforge/themes/material/templates/.icons/simple/dhl.svg +1 -0
  12106. docsforge/themes/material/templates/.icons/simple/diagramsdotnet.svg +1 -0
  12107. docsforge/themes/material/templates/.icons/simple/dialogflow.svg +1 -0
  12108. docsforge/themes/material/templates/.icons/simple/diaspora.svg +1 -0
  12109. docsforge/themes/material/templates/.icons/simple/dictionarydotcom.svg +1 -0
  12110. docsforge/themes/material/templates/.icons/simple/digg.svg +1 -0
  12111. docsforge/themes/material/templates/.icons/simple/digikeyelectronics.svg +1 -0
  12112. docsforge/themes/material/templates/.icons/simple/digitalocean.svg +1 -0
  12113. docsforge/themes/material/templates/.icons/simple/dinersclub.svg +1 -0
  12114. docsforge/themes/material/templates/.icons/simple/dior.svg +1 -0
  12115. docsforge/themes/material/templates/.icons/simple/directus.svg +1 -0
  12116. docsforge/themes/material/templates/.icons/simple/discogs.svg +1 -0
  12117. docsforge/themes/material/templates/.icons/simple/discord.svg +1 -0
  12118. docsforge/themes/material/templates/.icons/simple/discorddotjs.svg +1 -0
  12119. docsforge/themes/material/templates/.icons/simple/discourse.svg +1 -0
  12120. docsforge/themes/material/templates/.icons/simple/discover.svg +1 -0
  12121. docsforge/themes/material/templates/.icons/simple/disqus.svg +1 -0
  12122. docsforge/themes/material/templates/.icons/simple/disroot.svg +1 -0
  12123. docsforge/themes/material/templates/.icons/simple/distrobox.svg +1 -0
  12124. docsforge/themes/material/templates/.icons/simple/distrokid.svg +1 -0
  12125. docsforge/themes/material/templates/.icons/simple/django.svg +1 -0
  12126. docsforge/themes/material/templates/.icons/simple/dji.svg +1 -0
  12127. docsforge/themes/material/templates/.icons/simple/dlib.svg +1 -0
  12128. docsforge/themes/material/templates/.icons/simple/dlna.svg +1 -0
  12129. docsforge/themes/material/templates/.icons/simple/dm.svg +1 -0
  12130. docsforge/themes/material/templates/.icons/simple/dmm.svg +1 -0
  12131. docsforge/themes/material/templates/.icons/simple/docker.svg +1 -0
  12132. docsforge/themes/material/templates/.icons/simple/docsdotrs.svg +1 -0
  12133. docsforge/themes/material/templates/.icons/simple/docsify.svg +1 -0
  12134. docsforge/themes/material/templates/.icons/simple/doctrine.svg +1 -0
  12135. docsforge/themes/material/templates/.icons/simple/docusaurus.svg +1 -0
  12136. docsforge/themes/material/templates/.icons/simple/dodopayments.svg +1 -0
  12137. docsforge/themes/material/templates/.icons/simple/dogecoin.svg +1 -0
  12138. docsforge/themes/material/templates/.icons/simple/doi.svg +1 -0
  12139. docsforge/themes/material/templates/.icons/simple/dolby.svg +1 -0
  12140. docsforge/themes/material/templates/.icons/simple/dolibarr.svg +1 -0
  12141. docsforge/themes/material/templates/.icons/simple/dolphin.svg +1 -0
  12142. docsforge/themes/material/templates/.icons/simple/doordash.svg +1 -0
  12143. docsforge/themes/material/templates/.icons/simple/dota2.svg +1 -0
  12144. docsforge/themes/material/templates/.icons/simple/dotenv.svg +1 -0
  12145. docsforge/themes/material/templates/.icons/simple/dotnet.svg +1 -0
  12146. docsforge/themes/material/templates/.icons/simple/douban.svg +1 -0
  12147. docsforge/themes/material/templates/.icons/simple/doubanread.svg +1 -0
  12148. docsforge/themes/material/templates/.icons/simple/dovecot.svg +1 -0
  12149. docsforge/themes/material/templates/.icons/simple/dovetail.svg +1 -0
  12150. docsforge/themes/material/templates/.icons/simple/downdetector.svg +1 -0
  12151. docsforge/themes/material/templates/.icons/simple/doxygen.svg +1 -0
  12152. docsforge/themes/material/templates/.icons/simple/dpd.svg +1 -0
  12153. docsforge/themes/material/templates/.icons/simple/dragonframe.svg +1 -0
  12154. docsforge/themes/material/templates/.icons/simple/draugiemdotlv.svg +1 -0
  12155. docsforge/themes/material/templates/.icons/simple/dreamstime.svg +1 -0
  12156. docsforge/themes/material/templates/.icons/simple/dribbble.svg +1 -0
  12157. docsforge/themes/material/templates/.icons/simple/drizzle.svg +1 -0
  12158. docsforge/themes/material/templates/.icons/simple/drone.svg +1 -0
  12159. docsforge/themes/material/templates/.icons/simple/drooble.svg +1 -0
  12160. docsforge/themes/material/templates/.icons/simple/dropbox.svg +1 -0
  12161. docsforge/themes/material/templates/.icons/simple/drupal.svg +1 -0
  12162. docsforge/themes/material/templates/.icons/simple/dsautomobiles.svg +1 -0
  12163. docsforge/themes/material/templates/.icons/simple/dts.svg +1 -0
  12164. docsforge/themes/material/templates/.icons/simple/dtube.svg +1 -0
  12165. docsforge/themes/material/templates/.icons/simple/ducati.svg +1 -0
  12166. docsforge/themes/material/templates/.icons/simple/duckdb.svg +1 -0
  12167. docsforge/themes/material/templates/.icons/simple/duckduckgo.svg +1 -0
  12168. docsforge/themes/material/templates/.icons/simple/dungeonsanddragons.svg +1 -0
  12169. docsforge/themes/material/templates/.icons/simple/dunked.svg +1 -0
  12170. docsforge/themes/material/templates/.icons/simple/dunzo.svg +1 -0
  12171. docsforge/themes/material/templates/.icons/simple/duolingo.svg +1 -0
  12172. docsforge/themes/material/templates/.icons/simple/duplicati.svg +1 -0
  12173. docsforge/themes/material/templates/.icons/simple/dvc.svg +1 -0
  12174. docsforge/themes/material/templates/.icons/simple/dwavesystems.svg +1 -0
  12175. docsforge/themes/material/templates/.icons/simple/dwm.svg +1 -0
  12176. docsforge/themes/material/templates/.icons/simple/dynatrace.svg +1 -0
  12177. docsforge/themes/material/templates/.icons/simple/e.svg +1 -0
  12178. docsforge/themes/material/templates/.icons/simple/e3.svg +1 -0
  12179. docsforge/themes/material/templates/.icons/simple/ea.svg +1 -0
  12180. docsforge/themes/material/templates/.icons/simple/eac.svg +1 -0
  12181. docsforge/themes/material/templates/.icons/simple/eagle.svg +1 -0
  12182. docsforge/themes/material/templates/.icons/simple/easyeda.svg +1 -0
  12183. docsforge/themes/material/templates/.icons/simple/easyjet.svg +1 -0
  12184. docsforge/themes/material/templates/.icons/simple/ebay.svg +1 -0
  12185. docsforge/themes/material/templates/.icons/simple/ebox.svg +1 -0
  12186. docsforge/themes/material/templates/.icons/simple/eclipseadoptium.svg +1 -0
  12187. docsforge/themes/material/templates/.icons/simple/eclipseche.svg +1 -0
  12188. docsforge/themes/material/templates/.icons/simple/eclipseide.svg +1 -0
  12189. docsforge/themes/material/templates/.icons/simple/eclipsejetty.svg +1 -0
  12190. docsforge/themes/material/templates/.icons/simple/eclipsemosquitto.svg +1 -0
  12191. docsforge/themes/material/templates/.icons/simple/eclipsevertdotx.svg +1 -0
  12192. docsforge/themes/material/templates/.icons/simple/ecosia.svg +1 -0
  12193. docsforge/themes/material/templates/.icons/simple/ecovacs.svg +1 -0
  12194. docsforge/themes/material/templates/.icons/simple/edeka.svg +1 -0
  12195. docsforge/themes/material/templates/.icons/simple/edgeimpulse.svg +1 -0
  12196. docsforge/themes/material/templates/.icons/simple/editorconfig.svg +1 -0
  12197. docsforge/themes/material/templates/.icons/simple/edotleclerc.svg +1 -0
  12198. docsforge/themes/material/templates/.icons/simple/educative.svg +1 -0
  12199. docsforge/themes/material/templates/.icons/simple/edx.svg +1 -0
  12200. docsforge/themes/material/templates/.icons/simple/egghead.svg +1 -0
  12201. docsforge/themes/material/templates/.icons/simple/egnyte.svg +1 -0
  12202. docsforge/themes/material/templates/.icons/simple/eight.svg +1 -0
  12203. docsforge/themes/material/templates/.icons/simple/eightsleep.svg +1 -0
  12204. docsforge/themes/material/templates/.icons/simple/ejs.svg +1 -0
  12205. docsforge/themes/material/templates/.icons/simple/elastic.svg +1 -0
  12206. docsforge/themes/material/templates/.icons/simple/elasticcloud.svg +1 -0
  12207. docsforge/themes/material/templates/.icons/simple/elasticsearch.svg +1 -0
  12208. docsforge/themes/material/templates/.icons/simple/elasticstack.svg +1 -0
  12209. docsforge/themes/material/templates/.icons/simple/elavon.svg +1 -0
  12210. docsforge/themes/material/templates/.icons/simple/electron.svg +1 -0
  12211. docsforge/themes/material/templates/.icons/simple/electronbuilder.svg +1 -0
  12212. docsforge/themes/material/templates/.icons/simple/electronfiddle.svg +1 -0
  12213. docsforge/themes/material/templates/.icons/simple/elegoo.svg +1 -0
  12214. docsforge/themes/material/templates/.icons/simple/element.svg +1 -0
  12215. docsforge/themes/material/templates/.icons/simple/elementary.svg +1 -0
  12216. docsforge/themes/material/templates/.icons/simple/elementor.svg +1 -0
  12217. docsforge/themes/material/templates/.icons/simple/elevenlabs.svg +1 -0
  12218. docsforge/themes/material/templates/.icons/simple/eleventy.svg +1 -0
  12219. docsforge/themes/material/templates/.icons/simple/elgato.svg +1 -0
  12220. docsforge/themes/material/templates/.icons/simple/elixir.svg +1 -0
  12221. docsforge/themes/material/templates/.icons/simple/elk.svg +1 -0
  12222. docsforge/themes/material/templates/.icons/simple/elm.svg +1 -0
  12223. docsforge/themes/material/templates/.icons/simple/elsevier.svg +1 -0
  12224. docsforge/themes/material/templates/.icons/simple/embarcadero.svg +1 -0
  12225. docsforge/themes/material/templates/.icons/simple/embark.svg +1 -0
  12226. docsforge/themes/material/templates/.icons/simple/emberdotjs.svg +1 -0
  12227. docsforge/themes/material/templates/.icons/simple/emby.svg +1 -0
  12228. docsforge/themes/material/templates/.icons/simple/emirates.svg +1 -0
  12229. docsforge/themes/material/templates/.icons/simple/emlakjet.svg +1 -0
  12230. docsforge/themes/material/templates/.icons/simple/endeavouros.svg +1 -0
  12231. docsforge/themes/material/templates/.icons/simple/enpass.svg +1 -0
  12232. docsforge/themes/material/templates/.icons/simple/ens.svg +1 -0
  12233. docsforge/themes/material/templates/.icons/simple/ente.svg +1 -0
  12234. docsforge/themes/material/templates/.icons/simple/enterprisedb.svg +1 -0
  12235. docsforge/themes/material/templates/.icons/simple/envato.svg +1 -0
  12236. docsforge/themes/material/templates/.icons/simple/envoyproxy.svg +1 -0
  12237. docsforge/themes/material/templates/.icons/simple/epel.svg +1 -0
  12238. docsforge/themes/material/templates/.icons/simple/epicgames.svg +1 -0
  12239. docsforge/themes/material/templates/.icons/simple/epson.svg +1 -0
  12240. docsforge/themes/material/templates/.icons/simple/equinixmetal.svg +1 -0
  12241. docsforge/themes/material/templates/.icons/simple/eraser.svg +1 -0
  12242. docsforge/themes/material/templates/.icons/simple/ericsson.svg +1 -0
  12243. docsforge/themes/material/templates/.icons/simple/erlang.svg +1 -0
  12244. docsforge/themes/material/templates/.icons/simple/erpnext.svg +1 -0
  12245. docsforge/themes/material/templates/.icons/simple/esbuild.svg +1 -0
  12246. docsforge/themes/material/templates/.icons/simple/esea.svg +1 -0
  12247. docsforge/themes/material/templates/.icons/simple/eslgaming.svg +1 -0
  12248. docsforge/themes/material/templates/.icons/simple/eslint.svg +1 -0
  12249. docsforge/themes/material/templates/.icons/simple/esotericsoftware.svg +1 -0
  12250. docsforge/themes/material/templates/.icons/simple/esphome.svg +1 -0
  12251. docsforge/themes/material/templates/.icons/simple/espressif.svg +1 -0
  12252. docsforge/themes/material/templates/.icons/simple/esri.svg +1 -0
  12253. docsforge/themes/material/templates/.icons/simple/etcd.svg +1 -0
  12254. docsforge/themes/material/templates/.icons/simple/ethereum.svg +1 -0
  12255. docsforge/themes/material/templates/.icons/simple/ethers.svg +1 -0
  12256. docsforge/themes/material/templates/.icons/simple/ethiopianairlines.svg +1 -0
  12257. docsforge/themes/material/templates/.icons/simple/etihadairways.svg +1 -0
  12258. docsforge/themes/material/templates/.icons/simple/etsy.svg +1 -0
  12259. docsforge/themes/material/templates/.icons/simple/europeanunion.svg +1 -0
  12260. docsforge/themes/material/templates/.icons/simple/eventstore.svg +1 -0
  12261. docsforge/themes/material/templates/.icons/simple/evernote.svg +1 -0
  12262. docsforge/themes/material/templates/.icons/simple/everydotorg.svg +1 -0
  12263. docsforge/themes/material/templates/.icons/simple/excalidraw.svg +1 -0
  12264. docsforge/themes/material/templates/.icons/simple/exercism.svg +1 -0
  12265. docsforge/themes/material/templates/.icons/simple/exordo.svg +1 -0
  12266. docsforge/themes/material/templates/.icons/simple/exoscale.svg +1 -0
  12267. docsforge/themes/material/templates/.icons/simple/expedia.svg +1 -0
  12268. docsforge/themes/material/templates/.icons/simple/expensify.svg +1 -0
  12269. docsforge/themes/material/templates/.icons/simple/expertsexchange.svg +1 -0
  12270. docsforge/themes/material/templates/.icons/simple/expo.svg +1 -0
  12271. docsforge/themes/material/templates/.icons/simple/express.svg +1 -0
  12272. docsforge/themes/material/templates/.icons/simple/expressdotcom.svg +1 -0
  12273. docsforge/themes/material/templates/.icons/simple/expressvpn.svg +1 -0
  12274. docsforge/themes/material/templates/.icons/simple/eyeem.svg +1 -0
  12275. docsforge/themes/material/templates/.icons/simple/f1.svg +1 -0
  12276. docsforge/themes/material/templates/.icons/simple/f5.svg +1 -0
  12277. docsforge/themes/material/templates/.icons/simple/facebook.svg +1 -0
  12278. docsforge/themes/material/templates/.icons/simple/facebookgaming.svg +1 -0
  12279. docsforge/themes/material/templates/.icons/simple/facebooklive.svg +1 -0
  12280. docsforge/themes/material/templates/.icons/simple/faceit.svg +1 -0
  12281. docsforge/themes/material/templates/.icons/simple/facepunch.svg +1 -0
  12282. docsforge/themes/material/templates/.icons/simple/fairphone.svg +1 -0
  12283. docsforge/themes/material/templates/.icons/simple/falco.svg +1 -0
  12284. docsforge/themes/material/templates/.icons/simple/falcon.svg +1 -0
  12285. docsforge/themes/material/templates/.icons/simple/fampay.svg +1 -0
  12286. docsforge/themes/material/templates/.icons/simple/fandango.svg +1 -0
  12287. docsforge/themes/material/templates/.icons/simple/fandom.svg +1 -0
  12288. docsforge/themes/material/templates/.icons/simple/fanfou.svg +1 -0
  12289. docsforge/themes/material/templates/.icons/simple/fantom.svg +1 -0
  12290. docsforge/themes/material/templates/.icons/simple/farcaster.svg +1 -0
  12291. docsforge/themes/material/templates/.icons/simple/fareharbor.svg +1 -0
  12292. docsforge/themes/material/templates/.icons/simple/farfetch.svg +1 -0
  12293. docsforge/themes/material/templates/.icons/simple/fastapi.svg +1 -0
  12294. docsforge/themes/material/templates/.icons/simple/fastify.svg +1 -0
  12295. docsforge/themes/material/templates/.icons/simple/fastlane.svg +1 -0
  12296. docsforge/themes/material/templates/.icons/simple/fastly.svg +1 -0
  12297. docsforge/themes/material/templates/.icons/simple/fathom.svg +1 -0
  12298. docsforge/themes/material/templates/.icons/simple/fauna.svg +1 -0
  12299. docsforge/themes/material/templates/.icons/simple/favro.svg +1 -0
  12300. docsforge/themes/material/templates/.icons/simple/fcc.svg +1 -0
  12301. docsforge/themes/material/templates/.icons/simple/fdroid.svg +1 -0
  12302. docsforge/themes/material/templates/.icons/simple/fedex.svg +1 -0
  12303. docsforge/themes/material/templates/.icons/simple/fedora.svg +1 -0
  12304. docsforge/themes/material/templates/.icons/simple/feedly.svg +1 -0
  12305. docsforge/themes/material/templates/.icons/simple/ferrari.svg +1 -0
  12306. docsforge/themes/material/templates/.icons/simple/ferrarinv.svg +1 -0
  12307. docsforge/themes/material/templates/.icons/simple/ferretdb.svg +1 -0
  12308. docsforge/themes/material/templates/.icons/simple/ffmpeg.svg +1 -0
  12309. docsforge/themes/material/templates/.icons/simple/fi.svg +1 -0
  12310. docsforge/themes/material/templates/.icons/simple/fiat.svg +1 -0
  12311. docsforge/themes/material/templates/.icons/simple/fidoalliance.svg +1 -0
  12312. docsforge/themes/material/templates/.icons/simple/fifa.svg +1 -0
  12313. docsforge/themes/material/templates/.icons/simple/fig.svg +1 -0
  12314. docsforge/themes/material/templates/.icons/simple/figma.svg +1 -0
  12315. docsforge/themes/material/templates/.icons/simple/figshare.svg +1 -0
  12316. docsforge/themes/material/templates/.icons/simple/fila.svg +1 -0
  12317. docsforge/themes/material/templates/.icons/simple/filament.svg +1 -0
  12318. docsforge/themes/material/templates/.icons/simple/filedotio.svg +1 -0
  12319. docsforge/themes/material/templates/.icons/simple/filen.svg +1 -0
  12320. docsforge/themes/material/templates/.icons/simple/files.svg +1 -0
  12321. docsforge/themes/material/templates/.icons/simple/filezilla.svg +1 -0
  12322. docsforge/themes/material/templates/.icons/simple/fillout.svg +1 -0
  12323. docsforge/themes/material/templates/.icons/simple/fineco.svg +1 -0
  12324. docsforge/themes/material/templates/.icons/simple/fing.svg +1 -0
  12325. docsforge/themes/material/templates/.icons/simple/firebase.svg +1 -0
  12326. docsforge/themes/material/templates/.icons/simple/firefish.svg +1 -0
  12327. docsforge/themes/material/templates/.icons/simple/fireflyiii.svg +1 -0
  12328. docsforge/themes/material/templates/.icons/simple/firefox.svg +1 -0
  12329. docsforge/themes/material/templates/.icons/simple/firefoxbrowser.svg +1 -0
  12330. docsforge/themes/material/templates/.icons/simple/fireship.svg +1 -0
  12331. docsforge/themes/material/templates/.icons/simple/firewalla.svg +1 -0
  12332. docsforge/themes/material/templates/.icons/simple/first.svg +1 -0
  12333. docsforge/themes/material/templates/.icons/simple/fishaudio.svg +1 -0
  12334. docsforge/themes/material/templates/.icons/simple/fishshell.svg +1 -0
  12335. docsforge/themes/material/templates/.icons/simple/fitbit.svg +1 -0
  12336. docsforge/themes/material/templates/.icons/simple/fivem.svg +1 -0
  12337. docsforge/themes/material/templates/.icons/simple/fiverr.svg +1 -0
  12338. docsforge/themes/material/templates/.icons/simple/fizz.svg +1 -0
  12339. docsforge/themes/material/templates/.icons/simple/flashforge.svg +1 -0
  12340. docsforge/themes/material/templates/.icons/simple/flask.svg +1 -0
  12341. docsforge/themes/material/templates/.icons/simple/flat.svg +1 -0
  12342. docsforge/themes/material/templates/.icons/simple/flathub.svg +1 -0
  12343. docsforge/themes/material/templates/.icons/simple/flatpak.svg +1 -0
  12344. docsforge/themes/material/templates/.icons/simple/flickr.svg +1 -0
  12345. docsforge/themes/material/templates/.icons/simple/flightaware.svg +1 -0
  12346. docsforge/themes/material/templates/.icons/simple/flipboard.svg +1 -0
  12347. docsforge/themes/material/templates/.icons/simple/floatplane.svg +1 -0
  12348. docsforge/themes/material/templates/.icons/simple/flood.svg +1 -0
  12349. docsforge/themes/material/templates/.icons/simple/floorp.svg +1 -0
  12350. docsforge/themes/material/templates/.icons/simple/fluentbit.svg +1 -0
  12351. docsforge/themes/material/templates/.icons/simple/fluentd.svg +1 -0
  12352. docsforge/themes/material/templates/.icons/simple/fluke.svg +1 -0
  12353. docsforge/themes/material/templates/.icons/simple/flutter.svg +1 -0
  12354. docsforge/themes/material/templates/.icons/simple/flux.svg +1 -0
  12355. docsforge/themes/material/templates/.icons/simple/flydotio.svg +1 -0
  12356. docsforge/themes/material/templates/.icons/simple/flyway.svg +1 -0
  12357. docsforge/themes/material/templates/.icons/simple/fmod.svg +1 -0
  12358. docsforge/themes/material/templates/.icons/simple/fnac.svg +1 -0
  12359. docsforge/themes/material/templates/.icons/simple/folium.svg +1 -0
  12360. docsforge/themes/material/templates/.icons/simple/folo.svg +1 -0
  12361. docsforge/themes/material/templates/.icons/simple/fonoma.svg +1 -0
  12362. docsforge/themes/material/templates/.icons/simple/fontawesome.svg +1 -0
  12363. docsforge/themes/material/templates/.icons/simple/fontbase.svg +1 -0
  12364. docsforge/themes/material/templates/.icons/simple/fontforge.svg +1 -0
  12365. docsforge/themes/material/templates/.icons/simple/foobar2000.svg +1 -0
  12366. docsforge/themes/material/templates/.icons/simple/foodpanda.svg +1 -0
  12367. docsforge/themes/material/templates/.icons/simple/ford.svg +1 -0
  12368. docsforge/themes/material/templates/.icons/simple/forgejo.svg +1 -0
  12369. docsforge/themes/material/templates/.icons/simple/formbricks.svg +1 -0
  12370. docsforge/themes/material/templates/.icons/simple/formik.svg +1 -0
  12371. docsforge/themes/material/templates/.icons/simple/formspree.svg +1 -0
  12372. docsforge/themes/material/templates/.icons/simple/formstack.svg +1 -0
  12373. docsforge/themes/material/templates/.icons/simple/fortinet.svg +1 -0
  12374. docsforge/themes/material/templates/.icons/simple/fortnite.svg +1 -0
  12375. docsforge/themes/material/templates/.icons/simple/fortran.svg +1 -0
  12376. docsforge/themes/material/templates/.icons/simple/fossa.svg +1 -0
  12377. docsforge/themes/material/templates/.icons/simple/fossilscm.svg +1 -0
  12378. docsforge/themes/material/templates/.icons/simple/foundryvirtualtabletop.svg +1 -0
  12379. docsforge/themes/material/templates/.icons/simple/foursquare.svg +1 -0
  12380. docsforge/themes/material/templates/.icons/simple/fox.svg +1 -0
  12381. docsforge/themes/material/templates/.icons/simple/foxtel.svg +1 -0
  12382. docsforge/themes/material/templates/.icons/simple/fozzy.svg +1 -0
  12383. docsforge/themes/material/templates/.icons/simple/framer.svg +1 -0
  12384. docsforge/themes/material/templates/.icons/simple/framework.svg +1 -0
  12385. docsforge/themes/material/templates/.icons/simple/framework7.svg +1 -0
  12386. docsforge/themes/material/templates/.icons/simple/franprix.svg +1 -0
  12387. docsforge/themes/material/templates/.icons/simple/frappe.svg +1 -0
  12388. docsforge/themes/material/templates/.icons/simple/fraunhofergesellschaft.svg +1 -0
  12389. docsforge/themes/material/templates/.icons/simple/freebsd.svg +1 -0
  12390. docsforge/themes/material/templates/.icons/simple/freecad.svg +1 -0
  12391. docsforge/themes/material/templates/.icons/simple/freecodecamp.svg +1 -0
  12392. docsforge/themes/material/templates/.icons/simple/freedesktopdotorg.svg +1 -0
  12393. docsforge/themes/material/templates/.icons/simple/freelancer.svg +1 -0
  12394. docsforge/themes/material/templates/.icons/simple/freelancermap.svg +1 -0
  12395. docsforge/themes/material/templates/.icons/simple/freenas.svg +1 -0
  12396. docsforge/themes/material/templates/.icons/simple/freenet.svg +1 -0
  12397. docsforge/themes/material/templates/.icons/simple/freepik.svg +1 -0
  12398. docsforge/themes/material/templates/.icons/simple/freetube.svg +1 -0
  12399. docsforge/themes/material/templates/.icons/simple/fresh.svg +1 -0
  12400. docsforge/themes/material/templates/.icons/simple/freshrss.svg +1 -0
  12401. docsforge/themes/material/templates/.icons/simple/frigate.svg +1 -0
  12402. docsforge/themes/material/templates/.icons/simple/fritz.svg +1 -0
  12403. docsforge/themes/material/templates/.icons/simple/frontendmentor.svg +1 -0
  12404. docsforge/themes/material/templates/.icons/simple/frontify.svg +1 -0
  12405. docsforge/themes/material/templates/.icons/simple/fsharp.svg +1 -0
  12406. docsforge/themes/material/templates/.icons/simple/fubo.svg +1 -0
  12407. docsforge/themes/material/templates/.icons/simple/fueler.svg +1 -0
  12408. docsforge/themes/material/templates/.icons/simple/fugacloud.svg +1 -0
  12409. docsforge/themes/material/templates/.icons/simple/fujifilm.svg +1 -0
  12410. docsforge/themes/material/templates/.icons/simple/fujitsu.svg +1 -0
  12411. docsforge/themes/material/templates/.icons/simple/furaffinity.svg +1 -0
  12412. docsforge/themes/material/templates/.icons/simple/furrynetwork.svg +1 -0
  12413. docsforge/themes/material/templates/.icons/simple/fusionauth.svg +1 -0
  12414. docsforge/themes/material/templates/.icons/simple/futurelearn.svg +1 -0
  12415. docsforge/themes/material/templates/.icons/simple/fyle.svg +1 -0
  12416. docsforge/themes/material/templates/.icons/simple/g2.svg +1 -0
  12417. docsforge/themes/material/templates/.icons/simple/g2a.svg +1 -0
  12418. docsforge/themes/material/templates/.icons/simple/g2g.svg +1 -0
  12419. docsforge/themes/material/templates/.icons/simple/galaxus.svg +1 -0
  12420. docsforge/themes/material/templates/.icons/simple/gamebanana.svg +1 -0
  12421. docsforge/themes/material/templates/.icons/simple/gamedeveloper.svg +1 -0
  12422. docsforge/themes/material/templates/.icons/simple/gamejolt.svg +1 -0
  12423. docsforge/themes/material/templates/.icons/simple/gameloft.svg +1 -0
  12424. docsforge/themes/material/templates/.icons/simple/gamemaker.svg +1 -0
  12425. docsforge/themes/material/templates/.icons/simple/gamescience.svg +1 -0
  12426. docsforge/themes/material/templates/.icons/simple/gandi.svg +1 -0
  12427. docsforge/themes/material/templates/.icons/simple/garmin.svg +1 -0
  12428. docsforge/themes/material/templates/.icons/simple/garudalinux.svg +1 -0
  12429. docsforge/themes/material/templates/.icons/simple/gatling.svg +1 -0
  12430. docsforge/themes/material/templates/.icons/simple/gatsby.svg +1 -0
  12431. docsforge/themes/material/templates/.icons/simple/gcore.svg +1 -0
  12432. docsforge/themes/material/templates/.icons/simple/gdal.svg +1 -0
  12433. docsforge/themes/material/templates/.icons/simple/geeksforgeeks.svg +1 -0
  12434. docsforge/themes/material/templates/.icons/simple/generalelectric.svg +1 -0
  12435. docsforge/themes/material/templates/.icons/simple/generalmotors.svg +1 -0
  12436. docsforge/themes/material/templates/.icons/simple/genius.svg +1 -0
  12437. docsforge/themes/material/templates/.icons/simple/gentoo.svg +1 -0
  12438. docsforge/themes/material/templates/.icons/simple/geocaching.svg +1 -0
  12439. docsforge/themes/material/templates/.icons/simple/geode.svg +1 -0
  12440. docsforge/themes/material/templates/.icons/simple/geopandas.svg +1 -0
  12441. docsforge/themes/material/templates/.icons/simple/gerrit.svg +1 -0
  12442. docsforge/themes/material/templates/.icons/simple/getx.svg +1 -0
  12443. docsforge/themes/material/templates/.icons/simple/ghost.svg +1 -0
  12444. docsforge/themes/material/templates/.icons/simple/ghostery.svg +1 -0
  12445. docsforge/themes/material/templates/.icons/simple/ghostty.svg +1 -0
  12446. docsforge/themes/material/templates/.icons/simple/gimp.svg +1 -0
  12447. docsforge/themes/material/templates/.icons/simple/gin.svg +1 -0
  12448. docsforge/themes/material/templates/.icons/simple/giphy.svg +1 -0
  12449. docsforge/themes/material/templates/.icons/simple/git.svg +1 -0
  12450. docsforge/themes/material/templates/.icons/simple/gitbook.svg +1 -0
  12451. docsforge/themes/material/templates/.icons/simple/gitcode.svg +1 -0
  12452. docsforge/themes/material/templates/.icons/simple/gitconnected.svg +1 -0
  12453. docsforge/themes/material/templates/.icons/simple/gitea.svg +1 -0
  12454. docsforge/themes/material/templates/.icons/simple/gitee.svg +1 -0
  12455. docsforge/themes/material/templates/.icons/simple/gitextensions.svg +1 -0
  12456. docsforge/themes/material/templates/.icons/simple/gitforwindows.svg +1 -0
  12457. docsforge/themes/material/templates/.icons/simple/github.svg +1 -0
  12458. docsforge/themes/material/templates/.icons/simple/githubactions.svg +1 -0
  12459. docsforge/themes/material/templates/.icons/simple/githubcopilot.svg +1 -0
  12460. docsforge/themes/material/templates/.icons/simple/githubpages.svg +1 -0
  12461. docsforge/themes/material/templates/.icons/simple/githubsponsors.svg +1 -0
  12462. docsforge/themes/material/templates/.icons/simple/gitignoredotio.svg +1 -0
  12463. docsforge/themes/material/templates/.icons/simple/gitkraken.svg +1 -0
  12464. docsforge/themes/material/templates/.icons/simple/gitlab.svg +1 -0
  12465. docsforge/themes/material/templates/.icons/simple/gitlfs.svg +1 -0
  12466. docsforge/themes/material/templates/.icons/simple/gitpod.svg +1 -0
  12467. docsforge/themes/material/templates/.icons/simple/gitter.svg +1 -0
  12468. docsforge/themes/material/templates/.icons/simple/glance.svg +1 -0
  12469. docsforge/themes/material/templates/.icons/simple/glassdoor.svg +1 -0
  12470. docsforge/themes/material/templates/.icons/simple/gldotinet.svg +1 -0
  12471. docsforge/themes/material/templates/.icons/simple/gleam.svg +1 -0
  12472. docsforge/themes/material/templates/.icons/simple/glide.svg +1 -0
  12473. docsforge/themes/material/templates/.icons/simple/glitch.svg +1 -0
  12474. docsforge/themes/material/templates/.icons/simple/globus.svg +1 -0
  12475. docsforge/themes/material/templates/.icons/simple/glovo.svg +1 -0
  12476. docsforge/themes/material/templates/.icons/simple/gltf.svg +1 -0
  12477. docsforge/themes/material/templates/.icons/simple/gmail.svg +1 -0
  12478. docsforge/themes/material/templates/.icons/simple/gmx.svg +1 -0
  12479. docsforge/themes/material/templates/.icons/simple/gnome.svg +1 -0
  12480. docsforge/themes/material/templates/.icons/simple/gnometerminal.svg +1 -0
  12481. docsforge/themes/material/templates/.icons/simple/gnu.svg +1 -0
  12482. docsforge/themes/material/templates/.icons/simple/gnubash.svg +1 -0
  12483. docsforge/themes/material/templates/.icons/simple/gnuemacs.svg +1 -0
  12484. docsforge/themes/material/templates/.icons/simple/gnuicecat.svg +1 -0
  12485. docsforge/themes/material/templates/.icons/simple/gnuprivacyguard.svg +1 -0
  12486. docsforge/themes/material/templates/.icons/simple/gnusocial.svg +1 -0
  12487. docsforge/themes/material/templates/.icons/simple/go.svg +1 -0
  12488. docsforge/themes/material/templates/.icons/simple/gocd.svg +1 -0
  12489. docsforge/themes/material/templates/.icons/simple/godaddy.svg +1 -0
  12490. docsforge/themes/material/templates/.icons/simple/godotengine.svg +1 -0
  12491. docsforge/themes/material/templates/.icons/simple/gofundme.svg +1 -0
  12492. docsforge/themes/material/templates/.icons/simple/gogdotcom.svg +1 -0
  12493. docsforge/themes/material/templates/.icons/simple/gojek.svg +1 -0
  12494. docsforge/themes/material/templates/.icons/simple/goland.svg +1 -0
  12495. docsforge/themes/material/templates/.icons/simple/goldmansachs.svg +1 -0
  12496. docsforge/themes/material/templates/.icons/simple/goodreads.svg +1 -0
  12497. docsforge/themes/material/templates/.icons/simple/google.svg +1 -0
  12498. docsforge/themes/material/templates/.icons/simple/googleadmob.svg +1 -0
  12499. docsforge/themes/material/templates/.icons/simple/googleads.svg +1 -0
  12500. docsforge/themes/material/templates/.icons/simple/googleadsense.svg +1 -0
  12501. docsforge/themes/material/templates/.icons/simple/googleanalytics.svg +1 -0
  12502. docsforge/themes/material/templates/.icons/simple/googleappsscript.svg +1 -0
  12503. docsforge/themes/material/templates/.icons/simple/googleassistant.svg +1 -0
  12504. docsforge/themes/material/templates/.icons/simple/googleauthenticator.svg +1 -0
  12505. docsforge/themes/material/templates/.icons/simple/googlebigquery.svg +1 -0
  12506. docsforge/themes/material/templates/.icons/simple/googlebigtable.svg +1 -0
  12507. docsforge/themes/material/templates/.icons/simple/googlecalendar.svg +1 -0
  12508. docsforge/themes/material/templates/.icons/simple/googlecampaignmanager360.svg +1 -0
  12509. docsforge/themes/material/templates/.icons/simple/googlecardboard.svg +1 -0
  12510. docsforge/themes/material/templates/.icons/simple/googlecast.svg +1 -0
  12511. docsforge/themes/material/templates/.icons/simple/googlechat.svg +1 -0
  12512. docsforge/themes/material/templates/.icons/simple/googlechrome.svg +1 -0
  12513. docsforge/themes/material/templates/.icons/simple/googlechronicle.svg +1 -0
  12514. docsforge/themes/material/templates/.icons/simple/googleclassroom.svg +1 -0
  12515. docsforge/themes/material/templates/.icons/simple/googlecloud.svg +1 -0
  12516. docsforge/themes/material/templates/.icons/simple/googlecloudcomposer.svg +1 -0
  12517. docsforge/themes/material/templates/.icons/simple/googlecloudspanner.svg +1 -0
  12518. docsforge/themes/material/templates/.icons/simple/googlecloudstorage.svg +1 -0
  12519. docsforge/themes/material/templates/.icons/simple/googlecolab.svg +1 -0
  12520. docsforge/themes/material/templates/.icons/simple/googlecontaineroptimizedos.svg +1 -0
  12521. docsforge/themes/material/templates/.icons/simple/googledataflow.svg +1 -0
  12522. docsforge/themes/material/templates/.icons/simple/googledataproc.svg +1 -0
  12523. docsforge/themes/material/templates/.icons/simple/googledisplayandvideo360.svg +1 -0
  12524. docsforge/themes/material/templates/.icons/simple/googledocs.svg +1 -0
  12525. docsforge/themes/material/templates/.icons/simple/googledrive.svg +1 -0
  12526. docsforge/themes/material/templates/.icons/simple/googleearth.svg +1 -0
  12527. docsforge/themes/material/templates/.icons/simple/googleearthengine.svg +1 -0
  12528. docsforge/themes/material/templates/.icons/simple/googlefonts.svg +1 -0
  12529. docsforge/themes/material/templates/.icons/simple/googleforms.svg +1 -0
  12530. docsforge/themes/material/templates/.icons/simple/googlegemini.svg +1 -0
  12531. docsforge/themes/material/templates/.icons/simple/googlehome.svg +1 -0
  12532. docsforge/themes/material/templates/.icons/simple/googlejules.svg +1 -0
  12533. docsforge/themes/material/templates/.icons/simple/googlekeep.svg +1 -0
  12534. docsforge/themes/material/templates/.icons/simple/googlelens.svg +1 -0
  12535. docsforge/themes/material/templates/.icons/simple/googlemaps.svg +1 -0
  12536. docsforge/themes/material/templates/.icons/simple/googlemarketingplatform.svg +1 -0
  12537. docsforge/themes/material/templates/.icons/simple/googlemeet.svg +1 -0
  12538. docsforge/themes/material/templates/.icons/simple/googlemessages.svg +1 -0
  12539. docsforge/themes/material/templates/.icons/simple/googlenearby.svg +1 -0
  12540. docsforge/themes/material/templates/.icons/simple/googlenews.svg +1 -0
  12541. docsforge/themes/material/templates/.icons/simple/googlepay.svg +1 -0
  12542. docsforge/themes/material/templates/.icons/simple/googlephotos.svg +1 -0
  12543. docsforge/themes/material/templates/.icons/simple/googleplay.svg +1 -0
  12544. docsforge/themes/material/templates/.icons/simple/googlepubsub.svg +1 -0
  12545. docsforge/themes/material/templates/.icons/simple/googlescholar.svg +1 -0
  12546. docsforge/themes/material/templates/.icons/simple/googlesearchconsole.svg +1 -0
  12547. docsforge/themes/material/templates/.icons/simple/googlesheets.svg +1 -0
  12548. docsforge/themes/material/templates/.icons/simple/googleslides.svg +1 -0
  12549. docsforge/themes/material/templates/.icons/simple/googlestreetview.svg +1 -0
  12550. docsforge/themes/material/templates/.icons/simple/googlesummerofcode.svg +1 -0
  12551. docsforge/themes/material/templates/.icons/simple/googletagmanager.svg +1 -0
  12552. docsforge/themes/material/templates/.icons/simple/googletasks.svg +1 -0
  12553. docsforge/themes/material/templates/.icons/simple/googletranslate.svg +1 -0
  12554. docsforge/themes/material/templates/.icons/simple/googletv.svg +1 -0
  12555. docsforge/themes/material/templates/.icons/simple/gotomeeting.svg +1 -0
  12556. docsforge/themes/material/templates/.icons/simple/gplv3.svg +1 -0
  12557. docsforge/themes/material/templates/.icons/simple/grab.svg +1 -0
  12558. docsforge/themes/material/templates/.icons/simple/gradio.svg +1 -0
  12559. docsforge/themes/material/templates/.icons/simple/gradle.svg +1 -0
  12560. docsforge/themes/material/templates/.icons/simple/gradleplaypublisher.svg +1 -0
  12561. docsforge/themes/material/templates/.icons/simple/grafana.svg +1 -0
  12562. docsforge/themes/material/templates/.icons/simple/grammarly.svg +1 -0
  12563. docsforge/themes/material/templates/.icons/simple/grandfrais.svg +1 -0
  12564. docsforge/themes/material/templates/.icons/simple/grapheneos.svg +1 -0
  12565. docsforge/themes/material/templates/.icons/simple/graphite.svg +1 -0
  12566. docsforge/themes/material/templates/.icons/simple/graphite_editor.svg +1 -0
  12567. docsforge/themes/material/templates/.icons/simple/graphql.svg +1 -0
  12568. docsforge/themes/material/templates/.icons/simple/grav.svg +1 -0
  12569. docsforge/themes/material/templates/.icons/simple/gravatar.svg +1 -0
  12570. docsforge/themes/material/templates/.icons/simple/graylog.svg +1 -0
  12571. docsforge/themes/material/templates/.icons/simple/greasyfork.svg +1 -0
  12572. docsforge/themes/material/templates/.icons/simple/greatlearning.svg +1 -0
  12573. docsforge/themes/material/templates/.icons/simple/greenhouse.svg +1 -0
  12574. docsforge/themes/material/templates/.icons/simple/greensock.svg +1 -0
  12575. docsforge/themes/material/templates/.icons/simple/greptimedb.svg +1 -0
  12576. docsforge/themes/material/templates/.icons/simple/griddotai.svg +1 -0
  12577. docsforge/themes/material/templates/.icons/simple/gridsome.svg +1 -0
  12578. docsforge/themes/material/templates/.icons/simple/grocy.svg +1 -0
  12579. docsforge/themes/material/templates/.icons/simple/groupme.svg +1 -0
  12580. docsforge/themes/material/templates/.icons/simple/groupon.svg +1 -0
  12581. docsforge/themes/material/templates/.icons/simple/grunt.svg +1 -0
  12582. docsforge/themes/material/templates/.icons/simple/gsap.svg +1 -0
  12583. docsforge/themes/material/templates/.icons/simple/gsk.svg +1 -0
  12584. docsforge/themes/material/templates/.icons/simple/gsma.svg +1 -0
  12585. docsforge/themes/material/templates/.icons/simple/gsmarenadotcom.svg +1 -0
  12586. docsforge/themes/material/templates/.icons/simple/gstreamer.svg +1 -0
  12587. docsforge/themes/material/templates/.icons/simple/gtk.svg +1 -0
  12588. docsforge/themes/material/templates/.icons/simple/guangzhoumetro.svg +1 -0
  12589. docsforge/themes/material/templates/.icons/simple/guilded.svg +1 -0
  12590. docsforge/themes/material/templates/.icons/simple/guitarpro.svg +1 -0
  12591. docsforge/themes/material/templates/.icons/simple/gulp.svg +1 -0
  12592. docsforge/themes/material/templates/.icons/simple/gumroad.svg +1 -0
  12593. docsforge/themes/material/templates/.icons/simple/gumtree.svg +1 -0
  12594. docsforge/themes/material/templates/.icons/simple/gunicorn.svg +1 -0
  12595. docsforge/themes/material/templates/.icons/simple/gurobi.svg +1 -0
  12596. docsforge/themes/material/templates/.icons/simple/gusto.svg +1 -0
  12597. docsforge/themes/material/templates/.icons/simple/gutenberg.svg +1 -0
  12598. docsforge/themes/material/templates/.icons/simple/h2database.svg +1 -0
  12599. docsforge/themes/material/templates/.icons/simple/h3.svg +1 -0
  12600. docsforge/themes/material/templates/.icons/simple/habr.svg +1 -0
  12601. docsforge/themes/material/templates/.icons/simple/hackaday.svg +1 -0
  12602. docsforge/themes/material/templates/.icons/simple/hackclub.svg +1 -0
  12603. docsforge/themes/material/templates/.icons/simple/hackerearth.svg +1 -0
  12604. docsforge/themes/material/templates/.icons/simple/hackernoon.svg +1 -0
  12605. docsforge/themes/material/templates/.icons/simple/hackerone.svg +1 -0
  12606. docsforge/themes/material/templates/.icons/simple/hackerrank.svg +1 -0
  12607. docsforge/themes/material/templates/.icons/simple/hackmd.svg +1 -0
  12608. docsforge/themes/material/templates/.icons/simple/hackster.svg +1 -0
  12609. docsforge/themes/material/templates/.icons/simple/hackthebox.svg +1 -0
  12610. docsforge/themes/material/templates/.icons/simple/hal.svg +1 -0
  12611. docsforge/themes/material/templates/.icons/simple/handlebarsdotjs.svg +1 -0
  12612. docsforge/themes/material/templates/.icons/simple/handm.svg +1 -0
  12613. docsforge/themes/material/templates/.icons/simple/handshake.svg +1 -0
  12614. docsforge/themes/material/templates/.icons/simple/handshake_protocol.svg +1 -0
  12615. docsforge/themes/material/templates/.icons/simple/happycow.svg +1 -0
  12616. docsforge/themes/material/templates/.icons/simple/harbor.svg +1 -0
  12617. docsforge/themes/material/templates/.icons/simple/harmonyos.svg +1 -0
  12618. docsforge/themes/material/templates/.icons/simple/hashcat.svg +1 -0
  12619. docsforge/themes/material/templates/.icons/simple/hashicorp.svg +1 -0
  12620. docsforge/themes/material/templates/.icons/simple/hashnode.svg +1 -0
  12621. docsforge/themes/material/templates/.icons/simple/haskell.svg +1 -0
  12622. docsforge/themes/material/templates/.icons/simple/hasura.svg +1 -0
  12623. docsforge/themes/material/templates/.icons/simple/hatenabookmark.svg +1 -0
  12624. docsforge/themes/material/templates/.icons/simple/haveibeenpwned.svg +1 -0
  12625. docsforge/themes/material/templates/.icons/simple/havells.svg +1 -0
  12626. docsforge/themes/material/templates/.icons/simple/haxe.svg +1 -0
  12627. docsforge/themes/material/templates/.icons/simple/haystack.svg +1 -0
  12628. docsforge/themes/material/templates/.icons/simple/hbo.svg +1 -0
  12629. docsforge/themes/material/templates/.icons/simple/hbomax.svg +1 -0
  12630. docsforge/themes/material/templates/.icons/simple/hcl.svg +1 -0
  12631. docsforge/themes/material/templates/.icons/simple/hdfcbank.svg +1 -0
  12632. docsforge/themes/material/templates/.icons/simple/headlessui.svg +1 -0
  12633. docsforge/themes/material/templates/.icons/simple/headphonezone.svg +1 -0
  12634. docsforge/themes/material/templates/.icons/simple/headspace.svg +1 -0
  12635. docsforge/themes/material/templates/.icons/simple/hearth.svg +1 -0
  12636. docsforge/themes/material/templates/.icons/simple/hearthisdotat.svg +1 -0
  12637. docsforge/themes/material/templates/.icons/simple/hedera.svg +1 -0
  12638. docsforge/themes/material/templates/.icons/simple/hedgedoc.svg +1 -0
  12639. docsforge/themes/material/templates/.icons/simple/helium.svg +1 -0
  12640. docsforge/themes/material/templates/.icons/simple/helix.svg +1 -0
  12641. docsforge/themes/material/templates/.icons/simple/hellofresh.svg +1 -0
  12642. docsforge/themes/material/templates/.icons/simple/hellyhansen.svg +1 -0
  12643. docsforge/themes/material/templates/.icons/simple/helm.svg +1 -0
  12644. docsforge/themes/material/templates/.icons/simple/helpdesk.svg +1 -0
  12645. docsforge/themes/material/templates/.icons/simple/helpscout.svg +1 -0
  12646. docsforge/themes/material/templates/.icons/simple/hepsiemlak.svg +1 -0
  12647. docsforge/themes/material/templates/.icons/simple/here.svg +1 -0
  12648. docsforge/themes/material/templates/.icons/simple/hermes.svg +1 -0
  12649. docsforge/themes/material/templates/.icons/simple/heroicgameslauncher.svg +1 -0
  12650. docsforge/themes/material/templates/.icons/simple/heroui.svg +1 -0
  12651. docsforge/themes/material/templates/.icons/simple/hetzner.svg +1 -0
  12652. docsforge/themes/material/templates/.icons/simple/hevy.svg +1 -0
  12653. docsforge/themes/material/templates/.icons/simple/hexlet.svg +1 -0
  12654. docsforge/themes/material/templates/.icons/simple/hexo.svg +1 -0
  12655. docsforge/themes/material/templates/.icons/simple/hey.svg +1 -0
  12656. docsforge/themes/material/templates/.icons/simple/hibernate.svg +1 -0
  12657. docsforge/themes/material/templates/.icons/simple/hibob.svg +1 -0
  12658. docsforge/themes/material/templates/.icons/simple/hilton.svg +1 -0
  12659. docsforge/themes/material/templates/.icons/simple/hiltonhotelsandresorts.svg +1 -0
  12660. docsforge/themes/material/templates/.icons/simple/hitachi.svg +1 -0
  12661. docsforge/themes/material/templates/.icons/simple/hive.svg +1 -0
  12662. docsforge/themes/material/templates/.icons/simple/hive_blockchain.svg +1 -0
  12663. docsforge/themes/material/templates/.icons/simple/hivemq.svg +1 -0
  12664. docsforge/themes/material/templates/.icons/simple/homarr.svg +1 -0
  12665. docsforge/themes/material/templates/.icons/simple/homeadvisor.svg +1 -0
  12666. docsforge/themes/material/templates/.icons/simple/homeassistant.svg +1 -0
  12667. docsforge/themes/material/templates/.icons/simple/homeassistantcommunitystore.svg +1 -0
  12668. docsforge/themes/material/templates/.icons/simple/homebrew.svg +1 -0
  12669. docsforge/themes/material/templates/.icons/simple/homebridge.svg +1 -0
  12670. docsforge/themes/material/templates/.icons/simple/homepage.svg +1 -0
  12671. docsforge/themes/material/templates/.icons/simple/homify.svg +1 -0
  12672. docsforge/themes/material/templates/.icons/simple/honda.svg +1 -0
  12673. docsforge/themes/material/templates/.icons/simple/honey.svg +1 -0
  12674. docsforge/themes/material/templates/.icons/simple/honeybadger.svg +1 -0
  12675. docsforge/themes/material/templates/.icons/simple/honeygain.svg +1 -0
  12676. docsforge/themes/material/templates/.icons/simple/hono.svg +1 -0
  12677. docsforge/themes/material/templates/.icons/simple/honor.svg +1 -0
  12678. docsforge/themes/material/templates/.icons/simple/hootsuite.svg +1 -0
  12679. docsforge/themes/material/templates/.icons/simple/hoppscotch.svg +1 -0
  12680. docsforge/themes/material/templates/.icons/simple/hostinger.svg +1 -0
  12681. docsforge/themes/material/templates/.icons/simple/hotelsdotcom.svg +1 -0
  12682. docsforge/themes/material/templates/.icons/simple/hotjar.svg +1 -0
  12683. docsforge/themes/material/templates/.icons/simple/hotwire.svg +1 -0
  12684. docsforge/themes/material/templates/.icons/simple/houdini.svg +1 -0
  12685. docsforge/themes/material/templates/.icons/simple/houzz.svg +1 -0
  12686. docsforge/themes/material/templates/.icons/simple/hp.svg +1 -0
  12687. docsforge/themes/material/templates/.icons/simple/hsbc.svg +1 -0
  12688. docsforge/themes/material/templates/.icons/simple/htc.svg +1 -0
  12689. docsforge/themes/material/templates/.icons/simple/htcvive.svg +1 -0
  12690. docsforge/themes/material/templates/.icons/simple/html5.svg +1 -0
  12691. docsforge/themes/material/templates/.icons/simple/htmlacademy.svg +1 -0
  12692. docsforge/themes/material/templates/.icons/simple/htmx.svg +1 -0
  12693. docsforge/themes/material/templates/.icons/simple/htop.svg +1 -0
  12694. docsforge/themes/material/templates/.icons/simple/httpie.svg +1 -0
  12695. docsforge/themes/material/templates/.icons/simple/huawei.svg +1 -0
  12696. docsforge/themes/material/templates/.icons/simple/hubspot.svg +1 -0
  12697. docsforge/themes/material/templates/.icons/simple/huggingface.svg +1 -0
  12698. docsforge/themes/material/templates/.icons/simple/hugo.svg +1 -0
  12699. docsforge/themes/material/templates/.icons/simple/humblebundle.svg +1 -0
  12700. docsforge/themes/material/templates/.icons/simple/humhub.svg +1 -0
  12701. docsforge/themes/material/templates/.icons/simple/hungryjacks.svg +1 -0
  12702. docsforge/themes/material/templates/.icons/simple/husqvarna.svg +1 -0
  12703. docsforge/themes/material/templates/.icons/simple/hyper.svg +1 -0
  12704. docsforge/themes/material/templates/.icons/simple/hyperskill.svg +1 -0
  12705. docsforge/themes/material/templates/.icons/simple/hyperx.svg +1 -0
  12706. docsforge/themes/material/templates/.icons/simple/hypothesis.svg +1 -0
  12707. docsforge/themes/material/templates/.icons/simple/hyprland.svg +1 -0
  12708. docsforge/themes/material/templates/.icons/simple/hyundai.svg +1 -0
  12709. docsforge/themes/material/templates/.icons/simple/i18next.svg +1 -0
  12710. docsforge/themes/material/templates/.icons/simple/i3.svg +1 -0
  12711. docsforge/themes/material/templates/.icons/simple/iata.svg +1 -0
  12712. docsforge/themes/material/templates/.icons/simple/ibeacon.svg +1 -0
  12713. docsforge/themes/material/templates/.icons/simple/iberia.svg +1 -0
  12714. docsforge/themes/material/templates/.icons/simple/iced.svg +1 -0
  12715. docsforge/themes/material/templates/.icons/simple/iceland.svg +1 -0
  12716. docsforge/themes/material/templates/.icons/simple/icicibank.svg +1 -0
  12717. docsforge/themes/material/templates/.icons/simple/icinga.svg +1 -0
  12718. docsforge/themes/material/templates/.icons/simple/icloud.svg +1 -0
  12719. docsforge/themes/material/templates/.icons/simple/icomoon.svg +1 -0
  12720. docsforge/themes/material/templates/.icons/simple/icon.svg +1 -0
  12721. docsforge/themes/material/templates/.icons/simple/iconfinder.svg +1 -0
  12722. docsforge/themes/material/templates/.icons/simple/iconify.svg +1 -0
  12723. docsforge/themes/material/templates/.icons/simple/iconjar.svg +1 -0
  12724. docsforge/themes/material/templates/.icons/simple/icons8.svg +1 -0
  12725. docsforge/themes/material/templates/.icons/simple/icq.svg +1 -0
  12726. docsforge/themes/material/templates/.icons/simple/ieee.svg +1 -0
  12727. docsforge/themes/material/templates/.icons/simple/ifixit.svg +1 -0
  12728. docsforge/themes/material/templates/.icons/simple/ifood.svg +1 -0
  12729. docsforge/themes/material/templates/.icons/simple/ifttt.svg +1 -0
  12730. docsforge/themes/material/templates/.icons/simple/igdb.svg +1 -0
  12731. docsforge/themes/material/templates/.icons/simple/ign.svg +1 -0
  12732. docsforge/themes/material/templates/.icons/simple/iheartradio.svg +1 -0
  12733. docsforge/themes/material/templates/.icons/simple/ikea.svg +1 -0
  12734. docsforge/themes/material/templates/.icons/simple/iledefrancemobilites.svg +1 -0
  12735. docsforge/themes/material/templates/.icons/simple/ilovepdf.svg +1 -0
  12736. docsforge/themes/material/templates/.icons/simple/imagedotsc.svg +1 -0
  12737. docsforge/themes/material/templates/.icons/simple/imagej.svg +1 -0
  12738. docsforge/themes/material/templates/.icons/simple/imagetoolbox.svg +1 -0
  12739. docsforge/themes/material/templates/.icons/simple/imdb.svg +1 -0
  12740. docsforge/themes/material/templates/.icons/simple/imessage.svg +1 -0
  12741. docsforge/themes/material/templates/.icons/simple/imgur.svg +1 -0
  12742. docsforge/themes/material/templates/.icons/simple/immer.svg +1 -0
  12743. docsforge/themes/material/templates/.icons/simple/immersivetranslate.svg +1 -0
  12744. docsforge/themes/material/templates/.icons/simple/immich.svg +1 -0
  12745. docsforge/themes/material/templates/.icons/simple/imou.svg +1 -0
  12746. docsforge/themes/material/templates/.icons/simple/improvmx.svg +1 -0
  12747. docsforge/themes/material/templates/.icons/simple/indeed.svg +1 -0
  12748. docsforge/themes/material/templates/.icons/simple/indiansuperleague.svg +1 -0
  12749. docsforge/themes/material/templates/.icons/simple/indiehackers.svg +1 -0
  12750. docsforge/themes/material/templates/.icons/simple/indigo.svg +1 -0
  12751. docsforge/themes/material/templates/.icons/simple/inductiveautomation.svg +1 -0
  12752. docsforge/themes/material/templates/.icons/simple/inertia.svg +1 -0
  12753. docsforge/themes/material/templates/.icons/simple/infiniti.svg +1 -0
  12754. docsforge/themes/material/templates/.icons/simple/infinityfree.svg +1 -0
  12755. docsforge/themes/material/templates/.icons/simple/influxdb.svg +1 -0
  12756. docsforge/themes/material/templates/.icons/simple/infomaniak.svg +1 -0
  12757. docsforge/themes/material/templates/.icons/simple/infoq.svg +1 -0
  12758. docsforge/themes/material/templates/.icons/simple/infosys.svg +1 -0
  12759. docsforge/themes/material/templates/.icons/simple/infracost.svg +1 -0
  12760. docsforge/themes/material/templates/.icons/simple/ingress.svg +1 -0
  12761. docsforge/themes/material/templates/.icons/simple/inkdrop.svg +1 -0
  12762. docsforge/themes/material/templates/.icons/simple/inkscape.svg +1 -0
  12763. docsforge/themes/material/templates/.icons/simple/inoreader.svg +1 -0
  12764. docsforge/themes/material/templates/.icons/simple/inquirer.svg +1 -0
  12765. docsforge/themes/material/templates/.icons/simple/insomnia.svg +1 -0
  12766. docsforge/themes/material/templates/.icons/simple/inspire.svg +1 -0
  12767. docsforge/themes/material/templates/.icons/simple/insta360.svg +1 -0
  12768. docsforge/themes/material/templates/.icons/simple/instacart.svg +1 -0
  12769. docsforge/themes/material/templates/.icons/simple/instagram.svg +1 -0
  12770. docsforge/themes/material/templates/.icons/simple/instapaper.svg +1 -0
  12771. docsforge/themes/material/templates/.icons/simple/instatus.svg +1 -0
  12772. docsforge/themes/material/templates/.icons/simple/instructables.svg +1 -0
  12773. docsforge/themes/material/templates/.icons/simple/instructure.svg +1 -0
  12774. docsforge/themes/material/templates/.icons/simple/intel.svg +1 -0
  12775. docsforge/themes/material/templates/.icons/simple/intellijidea.svg +1 -0
  12776. docsforge/themes/material/templates/.icons/simple/interactiondesignfoundation.svg +1 -0
  12777. docsforge/themes/material/templates/.icons/simple/interactjs.svg +1 -0
  12778. docsforge/themes/material/templates/.icons/simple/interbase.svg +1 -0
  12779. docsforge/themes/material/templates/.icons/simple/intercom.svg +1 -0
  12780. docsforge/themes/material/templates/.icons/simple/intermarche.svg +1 -0
  12781. docsforge/themes/material/templates/.icons/simple/internetarchive.svg +1 -0
  12782. docsforge/themes/material/templates/.icons/simple/internetcomputer.svg +1 -0
  12783. docsforge/themes/material/templates/.icons/simple/intigriti.svg +1 -0
  12784. docsforge/themes/material/templates/.icons/simple/intuit.svg +1 -0
  12785. docsforge/themes/material/templates/.icons/simple/invidious.svg +1 -0
  12786. docsforge/themes/material/templates/.icons/simple/invoiceninja.svg +1 -0
  12787. docsforge/themes/material/templates/.icons/simple/iobroker.svg +1 -0
  12788. docsforge/themes/material/templates/.icons/simple/ionic.svg +1 -0
  12789. docsforge/themes/material/templates/.icons/simple/ionos.svg +1 -0
  12790. docsforge/themes/material/templates/.icons/simple/ios.svg +1 -0
  12791. docsforge/themes/material/templates/.icons/simple/iota.svg +1 -0
  12792. docsforge/themes/material/templates/.icons/simple/ipfs.svg +1 -0
  12793. docsforge/themes/material/templates/.icons/simple/iris.svg +1 -0
  12794. docsforge/themes/material/templates/.icons/simple/irobot.svg +1 -0
  12795. docsforge/themes/material/templates/.icons/simple/isc2.svg +1 -0
  12796. docsforge/themes/material/templates/.icons/simple/isro.svg +1 -0
  12797. docsforge/themes/material/templates/.icons/simple/issuu.svg +1 -0
  12798. docsforge/themes/material/templates/.icons/simple/istio.svg +1 -0
  12799. docsforge/themes/material/templates/.icons/simple/itchdotio.svg +1 -0
  12800. docsforge/themes/material/templates/.icons/simple/iterm2.svg +1 -0
  12801. docsforge/themes/material/templates/.icons/simple/itunes.svg +1 -0
  12802. docsforge/themes/material/templates/.icons/simple/itvx.svg +1 -0
  12803. docsforge/themes/material/templates/.icons/simple/iveco.svg +1 -0
  12804. docsforge/themes/material/templates/.icons/simple/jabber.svg +1 -0
  12805. docsforge/themes/material/templates/.icons/simple/jaeger.svg +1 -0
  12806. docsforge/themes/material/templates/.icons/simple/jameson.svg +1 -0
  12807. docsforge/themes/material/templates/.icons/simple/jamstack.svg +1 -0
  12808. docsforge/themes/material/templates/.icons/simple/japanairlines.svg +1 -0
  12809. docsforge/themes/material/templates/.icons/simple/jasmine.svg +1 -0
  12810. docsforge/themes/material/templates/.icons/simple/javascript.svg +1 -0
  12811. docsforge/themes/material/templates/.icons/simple/jbl.svg +1 -0
  12812. docsforge/themes/material/templates/.icons/simple/jcb.svg +1 -0
  12813. docsforge/themes/material/templates/.icons/simple/jdoodle.svg +1 -0
  12814. docsforge/themes/material/templates/.icons/simple/jeep.svg +1 -0
  12815. docsforge/themes/material/templates/.icons/simple/jekyll.svg +1 -0
  12816. docsforge/themes/material/templates/.icons/simple/jellyfin.svg +1 -0
  12817. docsforge/themes/material/templates/.icons/simple/jenkins.svg +1 -0
  12818. docsforge/themes/material/templates/.icons/simple/jest.svg +1 -0
  12819. docsforge/themes/material/templates/.icons/simple/jet.svg +1 -0
  12820. docsforge/themes/material/templates/.icons/simple/jetblue.svg +1 -0
  12821. docsforge/themes/material/templates/.icons/simple/jetbrains.svg +1 -0
  12822. docsforge/themes/material/templates/.icons/simple/jetpackcompose.svg +1 -0
  12823. docsforge/themes/material/templates/.icons/simple/jfrog.svg +1 -0
  12824. docsforge/themes/material/templates/.icons/simple/jfrogpipelines.svg +1 -0
  12825. docsforge/themes/material/templates/.icons/simple/jhipster.svg +1 -0
  12826. docsforge/themes/material/templates/.icons/simple/jinja.svg +1 -0
  12827. docsforge/themes/material/templates/.icons/simple/jio.svg +1 -0
  12828. docsforge/themes/material/templates/.icons/simple/jira.svg +1 -0
  12829. docsforge/themes/material/templates/.icons/simple/jirasoftware.svg +1 -0
  12830. docsforge/themes/material/templates/.icons/simple/jitpack.svg +1 -0
  12831. docsforge/themes/material/templates/.icons/simple/jitsi.svg +1 -0
  12832. docsforge/themes/material/templates/.icons/simple/johndeere.svg +1 -0
  12833. docsforge/themes/material/templates/.icons/simple/joomla.svg +1 -0
  12834. docsforge/themes/material/templates/.icons/simple/joplin.svg +1 -0
  12835. docsforge/themes/material/templates/.icons/simple/jordan.svg +1 -0
  12836. docsforge/themes/material/templates/.icons/simple/jouav.svg +1 -0
  12837. docsforge/themes/material/templates/.icons/simple/jovian.svg +1 -0
  12838. docsforge/themes/material/templates/.icons/simple/jpeg.svg +1 -0
  12839. docsforge/themes/material/templates/.icons/simple/jquery.svg +1 -0
  12840. docsforge/themes/material/templates/.icons/simple/jrgroup.svg +1 -0
  12841. docsforge/themes/material/templates/.icons/simple/jsdelivr.svg +1 -0
  12842. docsforge/themes/material/templates/.icons/simple/jsfiddle.svg +1 -0
  12843. docsforge/themes/material/templates/.icons/simple/json.svg +1 -0
  12844. docsforge/themes/material/templates/.icons/simple/jsonwebtokens.svg +1 -0
  12845. docsforge/themes/material/templates/.icons/simple/jsr.svg +1 -0
  12846. docsforge/themes/material/templates/.icons/simple/jss.svg +1 -0
  12847. docsforge/themes/material/templates/.icons/simple/juce.svg +1 -0
  12848. docsforge/themes/material/templates/.icons/simple/juejin.svg +1 -0
  12849. docsforge/themes/material/templates/.icons/simple/juke.svg +1 -0
  12850. docsforge/themes/material/templates/.icons/simple/julia.svg +1 -0
  12851. docsforge/themes/material/templates/.icons/simple/junipernetworks.svg +1 -0
  12852. docsforge/themes/material/templates/.icons/simple/junit5.svg +1 -0
  12853. docsforge/themes/material/templates/.icons/simple/jupyter.svg +1 -0
  12854. docsforge/themes/material/templates/.icons/simple/just.svg +1 -0
  12855. docsforge/themes/material/templates/.icons/simple/justeat.svg +1 -0
  12856. docsforge/themes/material/templates/.icons/simple/justgiving.svg +1 -0
  12857. docsforge/themes/material/templates/.icons/simple/k3s.svg +1 -0
  12858. docsforge/themes/material/templates/.icons/simple/k6.svg +1 -0
  12859. docsforge/themes/material/templates/.icons/simple/kaggle.svg +1 -0
  12860. docsforge/themes/material/templates/.icons/simple/kagi.svg +1 -0
  12861. docsforge/themes/material/templates/.icons/simple/kahoot.svg +1 -0
  12862. docsforge/themes/material/templates/.icons/simple/kaios.svg +1 -0
  12863. docsforge/themes/material/templates/.icons/simple/kakao.svg +1 -0
  12864. docsforge/themes/material/templates/.icons/simple/kakaotalk.svg +1 -0
  12865. docsforge/themes/material/templates/.icons/simple/kalilinux.svg +1 -0
  12866. docsforge/themes/material/templates/.icons/simple/kamailio.svg +1 -0
  12867. docsforge/themes/material/templates/.icons/simple/kando.svg +1 -0
  12868. docsforge/themes/material/templates/.icons/simple/kaniko.svg +1 -0
  12869. docsforge/themes/material/templates/.icons/simple/karlsruherverkehrsverbund.svg +1 -0
  12870. docsforge/themes/material/templates/.icons/simple/kasasmart.svg +1 -0
  12871. docsforge/themes/material/templates/.icons/simple/kashflow.svg +1 -0
  12872. docsforge/themes/material/templates/.icons/simple/kaspersky.svg +1 -0
  12873. docsforge/themes/material/templates/.icons/simple/katana.svg +1 -0
  12874. docsforge/themes/material/templates/.icons/simple/kaufland.svg +1 -0
  12875. docsforge/themes/material/templates/.icons/simple/kde.svg +1 -0
  12876. docsforge/themes/material/templates/.icons/simple/kdeneon.svg +1 -0
  12877. docsforge/themes/material/templates/.icons/simple/kdenlive.svg +1 -0
  12878. docsforge/themes/material/templates/.icons/simple/kdeplasma.svg +1 -0
  12879. docsforge/themes/material/templates/.icons/simple/kedro.svg +1 -0
  12880. docsforge/themes/material/templates/.icons/simple/keenetic.svg +1 -0
  12881. docsforge/themes/material/templates/.icons/simple/keepachangelog.svg +1 -0
  12882. docsforge/themes/material/templates/.icons/simple/keepassxc.svg +1 -0
  12883. docsforge/themes/material/templates/.icons/simple/keeper.svg +1 -0
  12884. docsforge/themes/material/templates/.icons/simple/keeweb.svg +1 -0
  12885. docsforge/themes/material/templates/.icons/simple/kenmei.svg +1 -0
  12886. docsforge/themes/material/templates/.icons/simple/kentico.svg +1 -0
  12887. docsforge/themes/material/templates/.icons/simple/keploy.svg +1 -0
  12888. docsforge/themes/material/templates/.icons/simple/keras.svg +1 -0
  12889. docsforge/themes/material/templates/.icons/simple/keybase.svg +1 -0
  12890. docsforge/themes/material/templates/.icons/simple/keycdn.svg +1 -0
  12891. docsforge/themes/material/templates/.icons/simple/keycloak.svg +1 -0
  12892. docsforge/themes/material/templates/.icons/simple/keystone.svg +1 -0
  12893. docsforge/themes/material/templates/.icons/simple/kfc.svg +1 -0
  12894. docsforge/themes/material/templates/.icons/simple/khanacademy.svg +1 -0
  12895. docsforge/themes/material/templates/.icons/simple/khronosgroup.svg +1 -0
  12896. docsforge/themes/material/templates/.icons/simple/kia.svg +1 -0
  12897. docsforge/themes/material/templates/.icons/simple/kibana.svg +1 -0
  12898. docsforge/themes/material/templates/.icons/simple/kicad.svg +1 -0
  12899. docsforge/themes/material/templates/.icons/simple/kick.svg +1 -0
  12900. docsforge/themes/material/templates/.icons/simple/kickstarter.svg +1 -0
  12901. docsforge/themes/material/templates/.icons/simple/kik.svg +1 -0
  12902. docsforge/themes/material/templates/.icons/simple/kingstontechnology.svg +1 -0
  12903. docsforge/themes/material/templates/.icons/simple/kinopoisk.svg +1 -0
  12904. docsforge/themes/material/templates/.icons/simple/kinsta.svg +1 -0
  12905. docsforge/themes/material/templates/.icons/simple/kirby.svg +1 -0
  12906. docsforge/themes/material/templates/.icons/simple/kit.svg +1 -0
  12907. docsforge/themes/material/templates/.icons/simple/kitsu.svg +1 -0
  12908. docsforge/themes/material/templates/.icons/simple/kiwix.svg +1 -0
  12909. docsforge/themes/material/templates/.icons/simple/klarna.svg +1 -0
  12910. docsforge/themes/material/templates/.icons/simple/kleinanzeigen.svg +1 -0
  12911. docsforge/themes/material/templates/.icons/simple/klm.svg +1 -0
  12912. docsforge/themes/material/templates/.icons/simple/klook.svg +1 -0
  12913. docsforge/themes/material/templates/.icons/simple/knative.svg +1 -0
  12914. docsforge/themes/material/templates/.icons/simple/knexdotjs.svg +1 -0
  12915. docsforge/themes/material/templates/.icons/simple/knime.svg +1 -0
  12916. docsforge/themes/material/templates/.icons/simple/knip.svg +1 -0
  12917. docsforge/themes/material/templates/.icons/simple/knowledgebase.svg +1 -0
  12918. docsforge/themes/material/templates/.icons/simple/known.svg +1 -0
  12919. docsforge/themes/material/templates/.icons/simple/koa.svg +1 -0
  12920. docsforge/themes/material/templates/.icons/simple/koc.svg +1 -0
  12921. docsforge/themes/material/templates/.icons/simple/kodak.svg +1 -0
  12922. docsforge/themes/material/templates/.icons/simple/kodi.svg +1 -0
  12923. docsforge/themes/material/templates/.icons/simple/koenigsegg.svg +1 -0
  12924. docsforge/themes/material/templates/.icons/simple/kofax.svg +1 -0
  12925. docsforge/themes/material/templates/.icons/simple/kofi.svg +1 -0
  12926. docsforge/themes/material/templates/.icons/simple/komoot.svg +1 -0
  12927. docsforge/themes/material/templates/.icons/simple/konami.svg +1 -0
  12928. docsforge/themes/material/templates/.icons/simple/kong.svg +1 -0
  12929. docsforge/themes/material/templates/.icons/simple/kongregate.svg +1 -0
  12930. docsforge/themes/material/templates/.icons/simple/konva.svg +1 -0
  12931. docsforge/themes/material/templates/.icons/simple/koreader.svg +1 -0
  12932. docsforge/themes/material/templates/.icons/simple/kotlin.svg +1 -0
  12933. docsforge/themes/material/templates/.icons/simple/koyeb.svg +1 -0
  12934. docsforge/themes/material/templates/.icons/simple/kred.svg +1 -0
  12935. docsforge/themes/material/templates/.icons/simple/krita.svg +1 -0
  12936. docsforge/themes/material/templates/.icons/simple/ktm.svg +1 -0
  12937. docsforge/themes/material/templates/.icons/simple/ktor.svg +1 -0
  12938. docsforge/themes/material/templates/.icons/simple/kuaishou.svg +1 -0
  12939. docsforge/themes/material/templates/.icons/simple/kubernetes.svg +1 -0
  12940. docsforge/themes/material/templates/.icons/simple/kubespray.svg +1 -0
  12941. docsforge/themes/material/templates/.icons/simple/kubuntu.svg +1 -0
  12942. docsforge/themes/material/templates/.icons/simple/kucoin.svg +1 -0
  12943. docsforge/themes/material/templates/.icons/simple/kueski.svg +1 -0
  12944. docsforge/themes/material/templates/.icons/simple/kuma.svg +1 -0
  12945. docsforge/themes/material/templates/.icons/simple/kununu.svg +1 -0
  12946. docsforge/themes/material/templates/.icons/simple/kuula.svg +1 -0
  12947. docsforge/themes/material/templates/.icons/simple/kx.svg +1 -0
  12948. docsforge/themes/material/templates/.icons/simple/kyocera.svg +1 -0
  12949. docsforge/themes/material/templates/.icons/simple/labex.svg +1 -0
  12950. docsforge/themes/material/templates/.icons/simple/labview.svg +1 -0
  12951. docsforge/themes/material/templates/.icons/simple/lada.svg +1 -0
  12952. docsforge/themes/material/templates/.icons/simple/lamborghini.svg +1 -0
  12953. docsforge/themes/material/templates/.icons/simple/langchain.svg +1 -0
  12954. docsforge/themes/material/templates/.icons/simple/langflow.svg +1 -0
  12955. docsforge/themes/material/templates/.icons/simple/langgraph.svg +1 -0
  12956. docsforge/themes/material/templates/.icons/simple/languagetool.svg +1 -0
  12957. docsforge/themes/material/templates/.icons/simple/lapce.svg +1 -0
  12958. docsforge/themes/material/templates/.icons/simple/laragon.svg +1 -0
  12959. docsforge/themes/material/templates/.icons/simple/laravel.svg +1 -0
  12960. docsforge/themes/material/templates/.icons/simple/laravelhorizon.svg +1 -0
  12961. docsforge/themes/material/templates/.icons/simple/laravelnova.svg +1 -0
  12962. docsforge/themes/material/templates/.icons/simple/lastdotfm.svg +1 -0
  12963. docsforge/themes/material/templates/.icons/simple/lastpass.svg +1 -0
  12964. docsforge/themes/material/templates/.icons/simple/latex.svg +1 -0
  12965. docsforge/themes/material/templates/.icons/simple/launchpad.svg +1 -0
  12966. docsforge/themes/material/templates/.icons/simple/lazarus.svg +1 -0
  12967. docsforge/themes/material/templates/.icons/simple/lazyvim.svg +1 -0
  12968. docsforge/themes/material/templates/.icons/simple/lbry.svg +1 -0
  12969. docsforge/themes/material/templates/.icons/simple/leaderprice.svg +1 -0
  12970. docsforge/themes/material/templates/.icons/simple/leaflet.svg +1 -0
  12971. docsforge/themes/material/templates/.icons/simple/leagueoflegends.svg +1 -0
  12972. docsforge/themes/material/templates/.icons/simple/leanpub.svg +1 -0
  12973. docsforge/themes/material/templates/.icons/simple/leetcode.svg +1 -0
  12974. docsforge/themes/material/templates/.icons/simple/lefthook.svg +1 -0
  12975. docsforge/themes/material/templates/.icons/simple/legacygames.svg +1 -0
  12976. docsforge/themes/material/templates/.icons/simple/leica.svg +1 -0
  12977. docsforge/themes/material/templates/.icons/simple/lemmy.svg +1 -0
  12978. docsforge/themes/material/templates/.icons/simple/lemonsqueezy.svg +1 -0
  12979. docsforge/themes/material/templates/.icons/simple/lenovo.svg +1 -0
  12980. docsforge/themes/material/templates/.icons/simple/lens.svg +1 -0
  12981. docsforge/themes/material/templates/.icons/simple/leptos.svg +1 -0
  12982. docsforge/themes/material/templates/.icons/simple/lequipe.svg +1 -0
  12983. docsforge/themes/material/templates/.icons/simple/lerna.svg +1 -0
  12984. docsforge/themes/material/templates/.icons/simple/leroymerlin.svg +1 -0
  12985. docsforge/themes/material/templates/.icons/simple/leslibraires.svg +1 -0
  12986. docsforge/themes/material/templates/.icons/simple/less.svg +1 -0
  12987. docsforge/themes/material/templates/.icons/simple/letsencrypt.svg +1 -0
  12988. docsforge/themes/material/templates/.icons/simple/letterboxd.svg +1 -0
  12989. docsforge/themes/material/templates/.icons/simple/levelsdotfyi.svg +1 -0
  12990. docsforge/themes/material/templates/.icons/simple/lg.svg +1 -0
  12991. docsforge/themes/material/templates/.icons/simple/liberadotchat.svg +1 -0
  12992. docsforge/themes/material/templates/.icons/simple/liberapay.svg +1 -0
  12993. docsforge/themes/material/templates/.icons/simple/librariesdotio.svg +1 -0
  12994. docsforge/themes/material/templates/.icons/simple/librarything.svg +1 -0
  12995. docsforge/themes/material/templates/.icons/simple/libreoffice.svg +1 -0
  12996. docsforge/themes/material/templates/.icons/simple/libreofficebase.svg +1 -0
  12997. docsforge/themes/material/templates/.icons/simple/libreofficecalc.svg +1 -0
  12998. docsforge/themes/material/templates/.icons/simple/libreofficedraw.svg +1 -0
  12999. docsforge/themes/material/templates/.icons/simple/libreofficeimpress.svg +1 -0
  13000. docsforge/themes/material/templates/.icons/simple/libreofficemath.svg +1 -0
  13001. docsforge/themes/material/templates/.icons/simple/libreofficewriter.svg +1 -0
  13002. docsforge/themes/material/templates/.icons/simple/libretranslate.svg +1 -0
  13003. docsforge/themes/material/templates/.icons/simple/libretube.svg +1 -0
  13004. docsforge/themes/material/templates/.icons/simple/librewolf.svg +1 -0
  13005. docsforge/themes/material/templates/.icons/simple/libuv.svg +1 -0
  13006. docsforge/themes/material/templates/.icons/simple/lichess.svg +1 -0
  13007. docsforge/themes/material/templates/.icons/simple/lidl.svg +1 -0
  13008. docsforge/themes/material/templates/.icons/simple/lifx.svg +1 -0
  13009. docsforge/themes/material/templates/.icons/simple/lightburn.svg +1 -0
  13010. docsforge/themes/material/templates/.icons/simple/lighthouse.svg +1 -0
  13011. docsforge/themes/material/templates/.icons/simple/lightning.svg +1 -0
  13012. docsforge/themes/material/templates/.icons/simple/limesurvey.svg +1 -0
  13013. docsforge/themes/material/templates/.icons/simple/line.svg +1 -0
  13014. docsforge/themes/material/templates/.icons/simple/lineageos.svg +1 -0
  13015. docsforge/themes/material/templates/.icons/simple/linear.svg +1 -0
  13016. docsforge/themes/material/templates/.icons/simple/lining.svg +1 -0
  13017. docsforge/themes/material/templates/.icons/simple/linkerd.svg +1 -0
  13018. docsforge/themes/material/templates/.icons/simple/linkfire.svg +1 -0
  13019. docsforge/themes/material/templates/.icons/simple/linksys.svg +1 -0
  13020. docsforge/themes/material/templates/.icons/simple/linktree.svg +1 -0
  13021. docsforge/themes/material/templates/.icons/simple/linphone.svg +1 -0
  13022. docsforge/themes/material/templates/.icons/simple/lintcode.svg +1 -0
  13023. docsforge/themes/material/templates/.icons/simple/linux.svg +1 -0
  13024. docsforge/themes/material/templates/.icons/simple/linuxcontainers.svg +1 -0
  13025. docsforge/themes/material/templates/.icons/simple/linuxfoundation.svg +1 -0
  13026. docsforge/themes/material/templates/.icons/simple/linuxmint.svg +1 -0
  13027. docsforge/themes/material/templates/.icons/simple/linuxprofessionalinstitute.svg +1 -0
  13028. docsforge/themes/material/templates/.icons/simple/linuxserver.svg +1 -0
  13029. docsforge/themes/material/templates/.icons/simple/lionair.svg +1 -0
  13030. docsforge/themes/material/templates/.icons/simple/liquibase.svg +1 -0
  13031. docsforge/themes/material/templates/.icons/simple/listenhub.svg +1 -0
  13032. docsforge/themes/material/templates/.icons/simple/listmonk.svg +1 -0
  13033. docsforge/themes/material/templates/.icons/simple/lit.svg +1 -0
  13034. docsforge/themes/material/templates/.icons/simple/litecoin.svg +1 -0
  13035. docsforge/themes/material/templates/.icons/simple/literal.svg +1 -0
  13036. docsforge/themes/material/templates/.icons/simple/litiengine.svg +1 -0
  13037. docsforge/themes/material/templates/.icons/simple/livechat.svg +1 -0
  13038. docsforge/themes/material/templates/.icons/simple/livejournal.svg +1 -0
  13039. docsforge/themes/material/templates/.icons/simple/livekit.svg +1 -0
  13040. docsforge/themes/material/templates/.icons/simple/livewire.svg +1 -0
  13041. docsforge/themes/material/templates/.icons/simple/llvm.svg +1 -0
  13042. docsforge/themes/material/templates/.icons/simple/lmms.svg +1 -0
  13043. docsforge/themes/material/templates/.icons/simple/lobsters.svg +1 -0
  13044. docsforge/themes/material/templates/.icons/simple/local.svg +1 -0
  13045. docsforge/themes/material/templates/.icons/simple/localsend.svg +1 -0
  13046. docsforge/themes/material/templates/.icons/simple/localxpose.svg +1 -0
  13047. docsforge/themes/material/templates/.icons/simple/lodash.svg +1 -0
  13048. docsforge/themes/material/templates/.icons/simple/logmein.svg +1 -0
  13049. docsforge/themes/material/templates/.icons/simple/logseq.svg +1 -0
  13050. docsforge/themes/material/templates/.icons/simple/logstash.svg +1 -0
  13051. docsforge/themes/material/templates/.icons/simple/looker.svg +1 -0
  13052. docsforge/themes/material/templates/.icons/simple/loom.svg +1 -0
  13053. docsforge/themes/material/templates/.icons/simple/loop.svg +1 -0
  13054. docsforge/themes/material/templates/.icons/simple/loopback.svg +1 -0
  13055. docsforge/themes/material/templates/.icons/simple/lootcrate.svg +1 -0
  13056. docsforge/themes/material/templates/.icons/simple/lospec.svg +1 -0
  13057. docsforge/themes/material/templates/.icons/simple/lotpolishairlines.svg +1 -0
  13058. docsforge/themes/material/templates/.icons/simple/lottiefiles.svg +1 -0
  13059. docsforge/themes/material/templates/.icons/simple/ltspice.svg +1 -0
  13060. docsforge/themes/material/templates/.icons/simple/lua.svg +1 -0
  13061. docsforge/themes/material/templates/.icons/simple/luanti.svg +1 -0
  13062. docsforge/themes/material/templates/.icons/simple/luau.svg +1 -0
  13063. docsforge/themes/material/templates/.icons/simple/lubuntu.svg +1 -0
  13064. docsforge/themes/material/templates/.icons/simple/lucia.svg +1 -0
  13065. docsforge/themes/material/templates/.icons/simple/lucid.svg +1 -0
  13066. docsforge/themes/material/templates/.icons/simple/lucide.svg +1 -0
  13067. docsforge/themes/material/templates/.icons/simple/ludwig.svg +1 -0
  13068. docsforge/themes/material/templates/.icons/simple/lufthansa.svg +1 -0
  13069. docsforge/themes/material/templates/.icons/simple/lumen.svg +1 -0
  13070. docsforge/themes/material/templates/.icons/simple/lunacy.svg +1 -0
  13071. docsforge/themes/material/templates/.icons/simple/luogu.svg +1 -0
  13072. docsforge/themes/material/templates/.icons/simple/lutris.svg +1 -0
  13073. docsforge/themes/material/templates/.icons/simple/lvgl.svg +1 -0
  13074. docsforge/themes/material/templates/.icons/simple/lydia.svg +1 -0
  13075. docsforge/themes/material/templates/.icons/simple/lyft.svg +1 -0
  13076. docsforge/themes/material/templates/.icons/simple/maas.svg +1 -0
  13077. docsforge/themes/material/templates/.icons/simple/macos.svg +1 -0
  13078. docsforge/themes/material/templates/.icons/simple/macpaw.svg +1 -0
  13079. docsforge/themes/material/templates/.icons/simple/macports.svg +1 -0
  13080. docsforge/themes/material/templates/.icons/simple/macys.svg +1 -0
  13081. docsforge/themes/material/templates/.icons/simple/magasinsu.svg +1 -0
  13082. docsforge/themes/material/templates/.icons/simple/magic.svg +1 -0
  13083. docsforge/themes/material/templates/.icons/simple/magisk.svg +1 -0
  13084. docsforge/themes/material/templates/.icons/simple/mahindra.svg +1 -0
  13085. docsforge/themes/material/templates/.icons/simple/mailbox.svg +1 -0
  13086. docsforge/themes/material/templates/.icons/simple/mailchimp.svg +1 -0
  13087. docsforge/themes/material/templates/.icons/simple/maildotcom.svg +1 -0
  13088. docsforge/themes/material/templates/.icons/simple/maildotru.svg +1 -0
  13089. docsforge/themes/material/templates/.icons/simple/mailgun.svg +1 -0
  13090. docsforge/themes/material/templates/.icons/simple/mailtrap.svg +1 -0
  13091. docsforge/themes/material/templates/.icons/simple/mainwp.svg +1 -0
  13092. docsforge/themes/material/templates/.icons/simple/majorleaguehacking.svg +1 -0
  13093. docsforge/themes/material/templates/.icons/simple/make.svg +1 -0
  13094. docsforge/themes/material/templates/.icons/simple/makerbot.svg +1 -0
  13095. docsforge/themes/material/templates/.icons/simple/malt.svg +1 -0
  13096. docsforge/themes/material/templates/.icons/simple/malwarebytes.svg +1 -0
  13097. docsforge/themes/material/templates/.icons/simple/mambaui.svg +1 -0
  13098. docsforge/themes/material/templates/.icons/simple/mamp.svg +1 -0
  13099. docsforge/themes/material/templates/.icons/simple/man.svg +1 -0
  13100. docsforge/themes/material/templates/.icons/simple/manageiq.svg +1 -0
  13101. docsforge/themes/material/templates/.icons/simple/mangacollec.svg +1 -0
  13102. docsforge/themes/material/templates/.icons/simple/mangaupdates.svg +1 -0
  13103. docsforge/themes/material/templates/.icons/simple/manjaro.svg +1 -0
  13104. docsforge/themes/material/templates/.icons/simple/mantine.svg +1 -0
  13105. docsforge/themes/material/templates/.icons/simple/mapbox.svg +1 -0
  13106. docsforge/themes/material/templates/.icons/simple/mapillary.svg +1 -0
  13107. docsforge/themes/material/templates/.icons/simple/maplibre.svg +1 -0
  13108. docsforge/themes/material/templates/.icons/simple/maptiler.svg +1 -0
  13109. docsforge/themes/material/templates/.icons/simple/mariadb.svg +1 -0
  13110. docsforge/themes/material/templates/.icons/simple/mariadbfoundation.svg +1 -0
  13111. docsforge/themes/material/templates/.icons/simple/markdown.svg +1 -0
  13112. docsforge/themes/material/templates/.icons/simple/marko.svg +1 -0
  13113. docsforge/themes/material/templates/.icons/simple/marriott.svg +1 -0
  13114. docsforge/themes/material/templates/.icons/simple/marvelapp.svg +1 -0
  13115. docsforge/themes/material/templates/.icons/simple/maserati.svg +1 -0
  13116. docsforge/themes/material/templates/.icons/simple/mastercard.svg +1 -0
  13117. docsforge/themes/material/templates/.icons/simple/mastercomfig.svg +1 -0
  13118. docsforge/themes/material/templates/.icons/simple/mastodon.svg +1 -0
  13119. docsforge/themes/material/templates/.icons/simple/materialdesign.svg +1 -0
  13120. docsforge/themes/material/templates/.icons/simple/materialdesignicons.svg +1 -0
  13121. docsforge/themes/material/templates/.icons/simple/materialformkdocs.svg +1 -0
  13122. docsforge/themes/material/templates/.icons/simple/matillion.svg +1 -0
  13123. docsforge/themes/material/templates/.icons/simple/matomo.svg +1 -0
  13124. docsforge/themes/material/templates/.icons/simple/matrix.svg +1 -0
  13125. docsforge/themes/material/templates/.icons/simple/matterdotjs.svg +1 -0
  13126. docsforge/themes/material/templates/.icons/simple/mattermost.svg +1 -0
  13127. docsforge/themes/material/templates/.icons/simple/matternet.svg +1 -0
  13128. docsforge/themes/material/templates/.icons/simple/mautic.svg +1 -0
  13129. docsforge/themes/material/templates/.icons/simple/max.svg +1 -0
  13130. docsforge/themes/material/templates/.icons/simple/maxplanckgesellschaft.svg +1 -0
  13131. docsforge/themes/material/templates/.icons/simple/maytag.svg +1 -0
  13132. docsforge/themes/material/templates/.icons/simple/mazda.svg +1 -0
  13133. docsforge/themes/material/templates/.icons/simple/maze.svg +1 -0
  13134. docsforge/themes/material/templates/.icons/simple/mcafee.svg +1 -0
  13135. docsforge/themes/material/templates/.icons/simple/mcdonalds.svg +1 -0
  13136. docsforge/themes/material/templates/.icons/simple/mclaren.svg +1 -0
  13137. docsforge/themes/material/templates/.icons/simple/mdblist.svg +1 -0
  13138. docsforge/themes/material/templates/.icons/simple/mdbook.svg +1 -0
  13139. docsforge/themes/material/templates/.icons/simple/mdnwebdocs.svg +1 -0
  13140. docsforge/themes/material/templates/.icons/simple/mdx.svg +1 -0
  13141. docsforge/themes/material/templates/.icons/simple/mealie.svg +1 -0
  13142. docsforge/themes/material/templates/.icons/simple/mediafire.svg +1 -0
  13143. docsforge/themes/material/templates/.icons/simple/mediamarkt.svg +1 -0
  13144. docsforge/themes/material/templates/.icons/simple/mediapipe.svg +1 -0
  13145. docsforge/themes/material/templates/.icons/simple/mediatek.svg +1 -0
  13146. docsforge/themes/material/templates/.icons/simple/medibangpaint.svg +1 -0
  13147. docsforge/themes/material/templates/.icons/simple/medium.svg +1 -0
  13148. docsforge/themes/material/templates/.icons/simple/medusa.svg +1 -0
  13149. docsforge/themes/material/templates/.icons/simple/meetup.svg +1 -0
  13150. docsforge/themes/material/templates/.icons/simple/mega.svg +1 -0
  13151. docsforge/themes/material/templates/.icons/simple/meilisearch.svg +1 -0
  13152. docsforge/themes/material/templates/.icons/simple/meituan.svg +1 -0
  13153. docsforge/themes/material/templates/.icons/simple/meizu.svg +1 -0
  13154. docsforge/themes/material/templates/.icons/simple/mendeley.svg +1 -0
  13155. docsforge/themes/material/templates/.icons/simple/mentorcruise.svg +1 -0
  13156. docsforge/themes/material/templates/.icons/simple/mercadopago.svg +1 -0
  13157. docsforge/themes/material/templates/.icons/simple/merck.svg +1 -0
  13158. docsforge/themes/material/templates/.icons/simple/mercurial.svg +1 -0
  13159. docsforge/themes/material/templates/.icons/simple/mermaid.svg +1 -0
  13160. docsforge/themes/material/templates/.icons/simple/messenger.svg +1 -0
  13161. docsforge/themes/material/templates/.icons/simple/meta.svg +1 -0
  13162. docsforge/themes/material/templates/.icons/simple/metabase.svg +1 -0
  13163. docsforge/themes/material/templates/.icons/simple/metacritic.svg +1 -0
  13164. docsforge/themes/material/templates/.icons/simple/metafilter.svg +1 -0
  13165. docsforge/themes/material/templates/.icons/simple/metager.svg +1 -0
  13166. docsforge/themes/material/templates/.icons/simple/metasploit.svg +1 -0
  13167. docsforge/themes/material/templates/.icons/simple/meteor.svg +1 -0
  13168. docsforge/themes/material/templates/.icons/simple/metro.svg +1 -0
  13169. docsforge/themes/material/templates/.icons/simple/metrodelaciudaddemexico.svg +1 -0
  13170. docsforge/themes/material/templates/.icons/simple/metrodemadrid.svg +1 -0
  13171. docsforge/themes/material/templates/.icons/simple/metrodeparis.svg +1 -0
  13172. docsforge/themes/material/templates/.icons/simple/mewe.svg +1 -0
  13173. docsforge/themes/material/templates/.icons/simple/mezmo.svg +1 -0
  13174. docsforge/themes/material/templates/.icons/simple/mg.svg +1 -0
  13175. docsforge/themes/material/templates/.icons/simple/microbit.svg +1 -0
  13176. docsforge/themes/material/templates/.icons/simple/microdotblog.svg +1 -0
  13177. docsforge/themes/material/templates/.icons/simple/microeditor.svg +1 -0
  13178. docsforge/themes/material/templates/.icons/simple/micropython.svg +1 -0
  13179. docsforge/themes/material/templates/.icons/simple/microstation.svg +1 -0
  13180. docsforge/themes/material/templates/.icons/simple/microstrategy.svg +1 -0
  13181. docsforge/themes/material/templates/.icons/simple/midi.svg +1 -0
  13182. docsforge/themes/material/templates/.icons/simple/migadu.svg +1 -0
  13183. docsforge/themes/material/templates/.icons/simple/mihon.svg +1 -0
  13184. docsforge/themes/material/templates/.icons/simple/mihoyo.svg +1 -0
  13185. docsforge/themes/material/templates/.icons/simple/mikrotik.svg +1 -0
  13186. docsforge/themes/material/templates/.icons/simple/milanote.svg +1 -0
  13187. docsforge/themes/material/templates/.icons/simple/milvus.svg +1 -0
  13188. docsforge/themes/material/templates/.icons/simple/minds.svg +1 -0
  13189. docsforge/themes/material/templates/.icons/simple/mingww64.svg +1 -0
  13190. docsforge/themes/material/templates/.icons/simple/mini.svg +1 -0
  13191. docsforge/themes/material/templates/.icons/simple/minimax.svg +1 -0
  13192. docsforge/themes/material/templates/.icons/simple/minio.svg +1 -0
  13193. docsforge/themes/material/templates/.icons/simple/mintlify.svg +1 -0
  13194. docsforge/themes/material/templates/.icons/simple/minutemailer.svg +1 -0
  13195. docsforge/themes/material/templates/.icons/simple/miraheze.svg +1 -0
  13196. docsforge/themes/material/templates/.icons/simple/miro.svg +1 -0
  13197. docsforge/themes/material/templates/.icons/simple/misskey.svg +1 -0
  13198. docsforge/themes/material/templates/.icons/simple/mistralai.svg +1 -0
  13199. docsforge/themes/material/templates/.icons/simple/mitsubishi.svg +1 -0
  13200. docsforge/themes/material/templates/.icons/simple/mix.svg +1 -0
  13201. docsforge/themes/material/templates/.icons/simple/mixcloud.svg +1 -0
  13202. docsforge/themes/material/templates/.icons/simple/mixpanel.svg +1 -0
  13203. docsforge/themes/material/templates/.icons/simple/mlb.svg +1 -0
  13204. docsforge/themes/material/templates/.icons/simple/mlflow.svg +1 -0
  13205. docsforge/themes/material/templates/.icons/simple/mobx.svg +1 -0
  13206. docsforge/themes/material/templates/.icons/simple/mobxstatetree.svg +1 -0
  13207. docsforge/themes/material/templates/.icons/simple/mocha.svg +1 -0
  13208. docsforge/themes/material/templates/.icons/simple/mockserviceworker.svg +1 -0
  13209. docsforge/themes/material/templates/.icons/simple/modal.svg +1 -0
  13210. docsforge/themes/material/templates/.icons/simple/modelcontextprotocol.svg +1 -0
  13211. docsforge/themes/material/templates/.icons/simple/modelscope.svg +1 -0
  13212. docsforge/themes/material/templates/.icons/simple/modin.svg +1 -0
  13213. docsforge/themes/material/templates/.icons/simple/modrinth.svg +1 -0
  13214. docsforge/themes/material/templates/.icons/simple/modx.svg +1 -0
  13215. docsforge/themes/material/templates/.icons/simple/mojeek.svg +1 -0
  13216. docsforge/themes/material/templates/.icons/simple/moleculer.svg +1 -0
  13217. docsforge/themes/material/templates/.icons/simple/momenteo.svg +1 -0
  13218. docsforge/themes/material/templates/.icons/simple/monero.svg +1 -0
  13219. docsforge/themes/material/templates/.icons/simple/moneygram.svg +1 -0
  13220. docsforge/themes/material/templates/.icons/simple/mongodb.svg +1 -0
  13221. docsforge/themes/material/templates/.icons/simple/mongoose.svg +1 -0
  13222. docsforge/themes/material/templates/.icons/simple/mongoosedotws.svg +1 -0
  13223. docsforge/themes/material/templates/.icons/simple/monica.svg +1 -0
  13224. docsforge/themes/material/templates/.icons/simple/monkeytie.svg +1 -0
  13225. docsforge/themes/material/templates/.icons/simple/monkeytype.svg +1 -0
  13226. docsforge/themes/material/templates/.icons/simple/monogame.svg +1 -0
  13227. docsforge/themes/material/templates/.icons/simple/monoprix.svg +1 -0
  13228. docsforge/themes/material/templates/.icons/simple/monster.svg +1 -0
  13229. docsforge/themes/material/templates/.icons/simple/monzo.svg +1 -0
  13230. docsforge/themes/material/templates/.icons/simple/moo.svg +1 -0
  13231. docsforge/themes/material/templates/.icons/simple/moodle.svg +1 -0
  13232. docsforge/themes/material/templates/.icons/simple/moonrepo.svg +1 -0
  13233. docsforge/themes/material/templates/.icons/simple/moq.svg +1 -0
  13234. docsforge/themes/material/templates/.icons/simple/moqups.svg +1 -0
  13235. docsforge/themes/material/templates/.icons/simple/morrisons.svg +1 -0
  13236. docsforge/themes/material/templates/.icons/simple/moscowmetro.svg +1 -0
  13237. docsforge/themes/material/templates/.icons/simple/motorola.svg +1 -0
  13238. docsforge/themes/material/templates/.icons/simple/movistar.svg +1 -0
  13239. docsforge/themes/material/templates/.icons/simple/mozilla.svg +1 -0
  13240. docsforge/themes/material/templates/.icons/simple/mpv.svg +1 -0
  13241. docsforge/themes/material/templates/.icons/simple/mqtt.svg +1 -0
  13242. docsforge/themes/material/templates/.icons/simple/msi.svg +1 -0
  13243. docsforge/themes/material/templates/.icons/simple/msibusiness.svg +1 -0
  13244. docsforge/themes/material/templates/.icons/simple/mta.svg +1 -0
  13245. docsforge/themes/material/templates/.icons/simple/mtr.svg +1 -0
  13246. docsforge/themes/material/templates/.icons/simple/mubi.svg +1 -0
  13247. docsforge/themes/material/templates/.icons/simple/mui.svg +1 -0
  13248. docsforge/themes/material/templates/.icons/simple/muller.svg +1 -0
  13249. docsforge/themes/material/templates/.icons/simple/mullvad.svg +1 -0
  13250. docsforge/themes/material/templates/.icons/simple/multisim.svg +1 -0
  13251. docsforge/themes/material/templates/.icons/simple/mumble.svg +1 -0
  13252. docsforge/themes/material/templates/.icons/simple/muo.svg +1 -0
  13253. docsforge/themes/material/templates/.icons/simple/mural.svg +1 -0
  13254. docsforge/themes/material/templates/.icons/simple/musicbrainz.svg +1 -0
  13255. docsforge/themes/material/templates/.icons/simple/mxlinux.svg +1 -0
  13256. docsforge/themes/material/templates/.icons/simple/myanimelist.svg +1 -0
  13257. docsforge/themes/material/templates/.icons/simple/myget.svg +1 -0
  13258. docsforge/themes/material/templates/.icons/simple/myob.svg +1 -0
  13259. docsforge/themes/material/templates/.icons/simple/myshows.svg +1 -0
  13260. docsforge/themes/material/templates/.icons/simple/myspace.svg +1 -0
  13261. docsforge/themes/material/templates/.icons/simple/mysql.svg +1 -0
  13262. docsforge/themes/material/templates/.icons/simple/n26.svg +1 -0
  13263. docsforge/themes/material/templates/.icons/simple/n8n.svg +1 -0
  13264. docsforge/themes/material/templates/.icons/simple/namebase.svg +1 -0
  13265. docsforge/themes/material/templates/.icons/simple/namecheap.svg +1 -0
  13266. docsforge/themes/material/templates/.icons/simple/namemc.svg +1 -0
  13267. docsforge/themes/material/templates/.icons/simple/namesilo.svg +1 -0
  13268. docsforge/themes/material/templates/.icons/simple/namuwiki.svg +1 -0
  13269. docsforge/themes/material/templates/.icons/simple/nano.svg +1 -0
  13270. docsforge/themes/material/templates/.icons/simple/nanostores.svg +1 -0
  13271. docsforge/themes/material/templates/.icons/simple/napster.svg +1 -0
  13272. docsforge/themes/material/templates/.icons/simple/nasa.svg +1 -0
  13273. docsforge/themes/material/templates/.icons/simple/nationalgrid.svg +1 -0
  13274. docsforge/themes/material/templates/.icons/simple/nationalrail.svg +1 -0
  13275. docsforge/themes/material/templates/.icons/simple/nativescript.svg +1 -0
  13276. docsforge/themes/material/templates/.icons/simple/natsdotio.svg +1 -0
  13277. docsforge/themes/material/templates/.icons/simple/naver.svg +1 -0
  13278. docsforge/themes/material/templates/.icons/simple/nba.svg +1 -0
  13279. docsforge/themes/material/templates/.icons/simple/nbb.svg +1 -0
  13280. docsforge/themes/material/templates/.icons/simple/nbc.svg +1 -0
  13281. docsforge/themes/material/templates/.icons/simple/ndr.svg +1 -0
  13282. docsforge/themes/material/templates/.icons/simple/near.svg +1 -0
  13283. docsforge/themes/material/templates/.icons/simple/nebula.svg +1 -0
  13284. docsforge/themes/material/templates/.icons/simple/nec.svg +1 -0
  13285. docsforge/themes/material/templates/.icons/simple/nederlandsespoorwegen.svg +1 -0
  13286. docsforge/themes/material/templates/.icons/simple/neo4j.svg +1 -0
  13287. docsforge/themes/material/templates/.icons/simple/neovim.svg +1 -0
  13288. docsforge/themes/material/templates/.icons/simple/neptune.svg +1 -0
  13289. docsforge/themes/material/templates/.icons/simple/nestjs.svg +1 -0
  13290. docsforge/themes/material/templates/.icons/simple/netapp.svg +1 -0
  13291. docsforge/themes/material/templates/.icons/simple/netbsd.svg +1 -0
  13292. docsforge/themes/material/templates/.icons/simple/netcup.svg +1 -0
  13293. docsforge/themes/material/templates/.icons/simple/netdata.svg +1 -0
  13294. docsforge/themes/material/templates/.icons/simple/neteasecloudmusic.svg +1 -0
  13295. docsforge/themes/material/templates/.icons/simple/netflix.svg +1 -0
  13296. docsforge/themes/material/templates/.icons/simple/netgear.svg +1 -0
  13297. docsforge/themes/material/templates/.icons/simple/netim.svg +1 -0
  13298. docsforge/themes/material/templates/.icons/simple/netlify.svg +1 -0
  13299. docsforge/themes/material/templates/.icons/simple/nette.svg +1 -0
  13300. docsforge/themes/material/templates/.icons/simple/netto.svg +1 -0
  13301. docsforge/themes/material/templates/.icons/simple/neutralinojs.svg +1 -0
  13302. docsforge/themes/material/templates/.icons/simple/newbalance.svg +1 -0
  13303. docsforge/themes/material/templates/.icons/simple/newegg.svg +1 -0
  13304. docsforge/themes/material/templates/.icons/simple/newgrounds.svg +1 -0
  13305. docsforge/themes/material/templates/.icons/simple/newjapanprowrestling.svg +1 -0
  13306. docsforge/themes/material/templates/.icons/simple/newpipe.svg +1 -0
  13307. docsforge/themes/material/templates/.icons/simple/newrelic.svg +1 -0
  13308. docsforge/themes/material/templates/.icons/simple/newyorktimes.svg +1 -0
  13309. docsforge/themes/material/templates/.icons/simple/nexon.svg +1 -0
  13310. docsforge/themes/material/templates/.icons/simple/nextbike.svg +1 -0
  13311. docsforge/themes/material/templates/.icons/simple/nextbilliondotai.svg +1 -0
  13312. docsforge/themes/material/templates/.icons/simple/nextcloud.svg +1 -0
  13313. docsforge/themes/material/templates/.icons/simple/nextdns.svg +1 -0
  13314. docsforge/themes/material/templates/.icons/simple/nextdoor.svg +1 -0
  13315. docsforge/themes/material/templates/.icons/simple/nextdotjs.svg +1 -0
  13316. docsforge/themes/material/templates/.icons/simple/nextflow.svg +1 -0
  13317. docsforge/themes/material/templates/.icons/simple/nextra.svg +1 -0
  13318. docsforge/themes/material/templates/.icons/simple/nfc.svg +1 -0
  13319. docsforge/themes/material/templates/.icons/simple/nfcore.svg +1 -0
  13320. docsforge/themes/material/templates/.icons/simple/nginx.svg +1 -0
  13321. docsforge/themes/material/templates/.icons/simple/nginxproxymanager.svg +1 -0
  13322. docsforge/themes/material/templates/.icons/simple/ngrok.svg +1 -0
  13323. docsforge/themes/material/templates/.icons/simple/ngrx.svg +1 -0
  13324. docsforge/themes/material/templates/.icons/simple/nhl.svg +1 -0
  13325. docsforge/themes/material/templates/.icons/simple/nhost.svg +1 -0
  13326. docsforge/themes/material/templates/.icons/simple/nicehash.svg +1 -0
  13327. docsforge/themes/material/templates/.icons/simple/niconico.svg +1 -0
  13328. docsforge/themes/material/templates/.icons/simple/nike.svg +1 -0
  13329. docsforge/themes/material/templates/.icons/simple/nikon.svg +1 -0
  13330. docsforge/themes/material/templates/.icons/simple/nim.svg +1 -0
  13331. docsforge/themes/material/templates/.icons/simple/nissan.svg +1 -0
  13332. docsforge/themes/material/templates/.icons/simple/nixos.svg +1 -0
  13333. docsforge/themes/material/templates/.icons/simple/nobaralinux.svg +1 -0
  13334. docsforge/themes/material/templates/.icons/simple/nodebb.svg +1 -0
  13335. docsforge/themes/material/templates/.icons/simple/nodedotjs.svg +1 -0
  13336. docsforge/themes/material/templates/.icons/simple/nodegui.svg +1 -0
  13337. docsforge/themes/material/templates/.icons/simple/nodemon.svg +1 -0
  13338. docsforge/themes/material/templates/.icons/simple/nodered.svg +1 -0
  13339. docsforge/themes/material/templates/.icons/simple/nokia.svg +1 -0
  13340. docsforge/themes/material/templates/.icons/simple/nomad.svg +1 -0
  13341. docsforge/themes/material/templates/.icons/simple/norco.svg +1 -0
  13342. docsforge/themes/material/templates/.icons/simple/nordicsemiconductor.svg +1 -0
  13343. docsforge/themes/material/templates/.icons/simple/nordvpn.svg +1 -0
  13344. docsforge/themes/material/templates/.icons/simple/normalizedotcss.svg +1 -0
  13345. docsforge/themes/material/templates/.icons/simple/norton.svg +1 -0
  13346. docsforge/themes/material/templates/.icons/simple/norwegian.svg +1 -0
  13347. docsforge/themes/material/templates/.icons/simple/note.svg +1 -0
  13348. docsforge/themes/material/templates/.icons/simple/notebooklm.svg +1 -0
  13349. docsforge/themes/material/templates/.icons/simple/notepadplusplus.svg +1 -0
  13350. docsforge/themes/material/templates/.icons/simple/notion.svg +1 -0
  13351. docsforge/themes/material/templates/.icons/simple/notist.svg +1 -0
  13352. docsforge/themes/material/templates/.icons/simple/nounproject.svg +1 -0
  13353. docsforge/themes/material/templates/.icons/simple/novu.svg +1 -0
  13354. docsforge/themes/material/templates/.icons/simple/now.svg +1 -0
  13355. docsforge/themes/material/templates/.icons/simple/npm.svg +1 -0
  13356. docsforge/themes/material/templates/.icons/simple/nrwl.svg +1 -0
  13357. docsforge/themes/material/templates/.icons/simple/nsis.svg +1 -0
  13358. docsforge/themes/material/templates/.icons/simple/ntfy.svg +1 -0
  13359. docsforge/themes/material/templates/.icons/simple/nubank.svg +1 -0
  13360. docsforge/themes/material/templates/.icons/simple/nucleo.svg +1 -0
  13361. docsforge/themes/material/templates/.icons/simple/nuget.svg +1 -0
  13362. docsforge/themes/material/templates/.icons/simple/nuke.svg +1 -0
  13363. docsforge/themes/material/templates/.icons/simple/numba.svg +1 -0
  13364. docsforge/themes/material/templates/.icons/simple/numpy.svg +1 -0
  13365. docsforge/themes/material/templates/.icons/simple/nunjucks.svg +1 -0
  13366. docsforge/themes/material/templates/.icons/simple/nushell.svg +1 -0
  13367. docsforge/themes/material/templates/.icons/simple/nutanix.svg +1 -0
  13368. docsforge/themes/material/templates/.icons/simple/nuxt.svg +1 -0
  13369. docsforge/themes/material/templates/.icons/simple/nvidia.svg +1 -0
  13370. docsforge/themes/material/templates/.icons/simple/nvm.svg +1 -0
  13371. docsforge/themes/material/templates/.icons/simple/nx.svg +1 -0
  13372. docsforge/themes/material/templates/.icons/simple/nxp.svg +1 -0
  13373. docsforge/themes/material/templates/.icons/simple/nzxt.svg +1 -0
  13374. docsforge/themes/material/templates/.icons/simple/o2.svg +1 -0
  13375. docsforge/themes/material/templates/.icons/simple/obb.svg +1 -0
  13376. docsforge/themes/material/templates/.icons/simple/observable.svg +1 -0
  13377. docsforge/themes/material/templates/.icons/simple/obsidian.svg +1 -0
  13378. docsforge/themes/material/templates/.icons/simple/obsstudio.svg +1 -0
  13379. docsforge/themes/material/templates/.icons/simple/obtainium.svg +1 -0
  13380. docsforge/themes/material/templates/.icons/simple/ocaml.svg +1 -0
  13381. docsforge/themes/material/templates/.icons/simple/oclc.svg +1 -0
  13382. docsforge/themes/material/templates/.icons/simple/oclif.svg +1 -0
  13383. docsforge/themes/material/templates/.icons/simple/octanerender.svg +1 -0
  13384. docsforge/themes/material/templates/.icons/simple/octave.svg +1 -0
  13385. docsforge/themes/material/templates/.icons/simple/octobercms.svg +1 -0
  13386. docsforge/themes/material/templates/.icons/simple/octoprint.svg +1 -0
  13387. docsforge/themes/material/templates/.icons/simple/octopusdeploy.svg +1 -0
  13388. docsforge/themes/material/templates/.icons/simple/oculus.svg +1 -0
  13389. docsforge/themes/material/templates/.icons/simple/odin.svg +1 -0
  13390. docsforge/themes/material/templates/.icons/simple/odnoklassniki.svg +1 -0
  13391. docsforge/themes/material/templates/.icons/simple/odoo.svg +1 -0
  13392. docsforge/themes/material/templates/.icons/simple/odysee.svg +1 -0
  13393. docsforge/themes/material/templates/.icons/simple/ohdear.svg +1 -0
  13394. docsforge/themes/material/templates/.icons/simple/okcupid.svg +1 -0
  13395. docsforge/themes/material/templates/.icons/simple/okta.svg +1 -0
  13396. docsforge/themes/material/templates/.icons/simple/okx.svg +1 -0
  13397. docsforge/themes/material/templates/.icons/simple/ollama.svg +1 -0
  13398. docsforge/themes/material/templates/.icons/simple/omadacloud.svg +1 -0
  13399. docsforge/themes/material/templates/.icons/simple/oneplus.svg +1 -0
  13400. docsforge/themes/material/templates/.icons/simple/onestream.svg +1 -0
  13401. docsforge/themes/material/templates/.icons/simple/onlyfans.svg +1 -0
  13402. docsforge/themes/material/templates/.icons/simple/onlyoffice.svg +1 -0
  13403. docsforge/themes/material/templates/.icons/simple/onnx.svg +1 -0
  13404. docsforge/themes/material/templates/.icons/simple/onstar.svg +1 -0
  13405. docsforge/themes/material/templates/.icons/simple/opel.svg +1 -0
  13406. docsforge/themes/material/templates/.icons/simple/open3d.svg +1 -0
  13407. docsforge/themes/material/templates/.icons/simple/openaccess.svg +1 -0
  13408. docsforge/themes/material/templates/.icons/simple/openaigym.svg +1 -0
  13409. docsforge/themes/material/templates/.icons/simple/openapiinitiative.svg +1 -0
  13410. docsforge/themes/material/templates/.icons/simple/openbadges.svg +1 -0
  13411. docsforge/themes/material/templates/.icons/simple/openbsd.svg +1 -0
  13412. docsforge/themes/material/templates/.icons/simple/openbugbounty.svg +1 -0
  13413. docsforge/themes/material/templates/.icons/simple/opencage.svg +1 -0
  13414. docsforge/themes/material/templates/.icons/simple/opencollective.svg +1 -0
  13415. docsforge/themes/material/templates/.icons/simple/opencontainersinitiative.svg +1 -0
  13416. docsforge/themes/material/templates/.icons/simple/opencritic.svg +1 -0
  13417. docsforge/themes/material/templates/.icons/simple/opencv.svg +1 -0
  13418. docsforge/themes/material/templates/.icons/simple/openfaas.svg +1 -0
  13419. docsforge/themes/material/templates/.icons/simple/opengl.svg +1 -0
  13420. docsforge/themes/material/templates/.icons/simple/openhab.svg +1 -0
  13421. docsforge/themes/material/templates/.icons/simple/openid.svg +1 -0
  13422. docsforge/themes/material/templates/.icons/simple/openjdk.svg +1 -0
  13423. docsforge/themes/material/templates/.icons/simple/openjsfoundation.svg +1 -0
  13424. docsforge/themes/material/templates/.icons/simple/openlayers.svg +1 -0
  13425. docsforge/themes/material/templates/.icons/simple/openmediavault.svg +1 -0
  13426. docsforge/themes/material/templates/.icons/simple/openmined.svg +1 -0
  13427. docsforge/themes/material/templates/.icons/simple/opennebula.svg +1 -0
  13428. docsforge/themes/material/templates/.icons/simple/openproject.svg +1 -0
  13429. docsforge/themes/material/templates/.icons/simple/openrouter.svg +1 -0
  13430. docsforge/themes/material/templates/.icons/simple/openscad.svg +1 -0
  13431. docsforge/themes/material/templates/.icons/simple/opensea.svg +1 -0
  13432. docsforge/themes/material/templates/.icons/simple/opensearch.svg +1 -0
  13433. docsforge/themes/material/templates/.icons/simple/opensourcehardware.svg +1 -0
  13434. docsforge/themes/material/templates/.icons/simple/opensourceinitiative.svg +1 -0
  13435. docsforge/themes/material/templates/.icons/simple/openssl.svg +1 -0
  13436. docsforge/themes/material/templates/.icons/simple/openstack.svg +1 -0
  13437. docsforge/themes/material/templates/.icons/simple/openstreetmap.svg +1 -0
  13438. docsforge/themes/material/templates/.icons/simple/opensuse.svg +1 -0
  13439. docsforge/themes/material/templates/.icons/simple/opentelemetry.svg +1 -0
  13440. docsforge/themes/material/templates/.icons/simple/opentext.svg +1 -0
  13441. docsforge/themes/material/templates/.icons/simple/opentofu.svg +1 -0
  13442. docsforge/themes/material/templates/.icons/simple/openverse.svg +1 -0
  13443. docsforge/themes/material/templates/.icons/simple/openvpn.svg +1 -0
  13444. docsforge/themes/material/templates/.icons/simple/openwrt.svg +1 -0
  13445. docsforge/themes/material/templates/.icons/simple/openzeppelin.svg +1 -0
  13446. docsforge/themes/material/templates/.icons/simple/openzfs.svg +1 -0
  13447. docsforge/themes/material/templates/.icons/simple/opera.svg +1 -0
  13448. docsforge/themes/material/templates/.icons/simple/operagx.svg +1 -0
  13449. docsforge/themes/material/templates/.icons/simple/opnsense.svg +1 -0
  13450. docsforge/themes/material/templates/.icons/simple/oppo.svg +1 -0
  13451. docsforge/themes/material/templates/.icons/simple/opsgenie.svg +1 -0
  13452. docsforge/themes/material/templates/.icons/simple/opslevel.svg +1 -0
  13453. docsforge/themes/material/templates/.icons/simple/optimism.svg +1 -0
  13454. docsforge/themes/material/templates/.icons/simple/optuna.svg +1 -0
  13455. docsforge/themes/material/templates/.icons/simple/orange.svg +1 -0
  13456. docsforge/themes/material/templates/.icons/simple/orcid.svg +1 -0
  13457. docsforge/themes/material/templates/.icons/simple/oreilly.svg +1 -0
  13458. docsforge/themes/material/templates/.icons/simple/org.svg +1 -0
  13459. docsforge/themes/material/templates/.icons/simple/organicmaps.svg +1 -0
  13460. docsforge/themes/material/templates/.icons/simple/origin.svg +1 -0
  13461. docsforge/themes/material/templates/.icons/simple/osano.svg +1 -0
  13462. docsforge/themes/material/templates/.icons/simple/osf.svg +1 -0
  13463. docsforge/themes/material/templates/.icons/simple/osgeo.svg +1 -0
  13464. docsforge/themes/material/templates/.icons/simple/oshkosh.svg +1 -0
  13465. docsforge/themes/material/templates/.icons/simple/osmand.svg +1 -0
  13466. docsforge/themes/material/templates/.icons/simple/osmc.svg +1 -0
  13467. docsforge/themes/material/templates/.icons/simple/osu.svg +1 -0
  13468. docsforge/themes/material/templates/.icons/simple/otto.svg +1 -0
  13469. docsforge/themes/material/templates/.icons/simple/outline.svg +1 -0
  13470. docsforge/themes/material/templates/.icons/simple/overcast.svg +1 -0
  13471. docsforge/themes/material/templates/.icons/simple/overleaf.svg +1 -0
  13472. docsforge/themes/material/templates/.icons/simple/ovh.svg +1 -0
  13473. docsforge/themes/material/templates/.icons/simple/owasp.svg +1 -0
  13474. docsforge/themes/material/templates/.icons/simple/owncloud.svg +1 -0
  13475. docsforge/themes/material/templates/.icons/simple/oxc.svg +1 -0
  13476. docsforge/themes/material/templates/.icons/simple/oxygen.svg +1 -0
  13477. docsforge/themes/material/templates/.icons/simple/oyo.svg +1 -0
  13478. docsforge/themes/material/templates/.icons/simple/p5dotjs.svg +1 -0
  13479. docsforge/themes/material/templates/.icons/simple/packagist.svg +1 -0
  13480. docsforge/themes/material/templates/.icons/simple/packer.svg +1 -0
  13481. docsforge/themes/material/templates/.icons/simple/packt.svg +1 -0
  13482. docsforge/themes/material/templates/.icons/simple/paddle.svg +1 -0
  13483. docsforge/themes/material/templates/.icons/simple/paddlepaddle.svg +1 -0
  13484. docsforge/themes/material/templates/.icons/simple/paddypower.svg +1 -0
  13485. docsforge/themes/material/templates/.icons/simple/padlet.svg +1 -0
  13486. docsforge/themes/material/templates/.icons/simple/pagekit.svg +1 -0
  13487. docsforge/themes/material/templates/.icons/simple/pagerduty.svg +1 -0
  13488. docsforge/themes/material/templates/.icons/simple/pagespeedinsights.svg +1 -0
  13489. docsforge/themes/material/templates/.icons/simple/pagseguro.svg +1 -0
  13490. docsforge/themes/material/templates/.icons/simple/palantir.svg +1 -0
  13491. docsforge/themes/material/templates/.icons/simple/paloaltonetworks.svg +1 -0
  13492. docsforge/themes/material/templates/.icons/simple/paloaltosoftware.svg +1 -0
  13493. docsforge/themes/material/templates/.icons/simple/panasonic.svg +1 -0
  13494. docsforge/themes/material/templates/.icons/simple/pandas.svg +1 -0
  13495. docsforge/themes/material/templates/.icons/simple/pandora.svg +1 -0
  13496. docsforge/themes/material/templates/.icons/simple/pantheon.svg +1 -0
  13497. docsforge/themes/material/templates/.icons/simple/paperlessngx.svg +1 -0
  13498. docsforge/themes/material/templates/.icons/simple/paperspace.svg +1 -0
  13499. docsforge/themes/material/templates/.icons/simple/paperswithcode.svg +1 -0
  13500. docsforge/themes/material/templates/.icons/simple/paradoxinteractive.svg +1 -0
  13501. docsforge/themes/material/templates/.icons/simple/paramountplus.svg +1 -0
  13502. docsforge/themes/material/templates/.icons/simple/paritysubstrate.svg +1 -0
  13503. docsforge/themes/material/templates/.icons/simple/parrotsecurity.svg +1 -0
  13504. docsforge/themes/material/templates/.icons/simple/parsedotly.svg +1 -0
  13505. docsforge/themes/material/templates/.icons/simple/passbolt.svg +1 -0
  13506. docsforge/themes/material/templates/.icons/simple/passport.svg +1 -0
  13507. docsforge/themes/material/templates/.icons/simple/pastebin.svg +1 -0
  13508. docsforge/themes/material/templates/.icons/simple/patreon.svg +1 -0
  13509. docsforge/themes/material/templates/.icons/simple/payback.svg +1 -0
  13510. docsforge/themes/material/templates/.icons/simple/paychex.svg +1 -0
  13511. docsforge/themes/material/templates/.icons/simple/payhip.svg +1 -0
  13512. docsforge/themes/material/templates/.icons/simple/payloadcms.svg +1 -0
  13513. docsforge/themes/material/templates/.icons/simple/payoneer.svg +1 -0
  13514. docsforge/themes/material/templates/.icons/simple/paypal.svg +1 -0
  13515. docsforge/themes/material/templates/.icons/simple/paysafe.svg +1 -0
  13516. docsforge/themes/material/templates/.icons/simple/paytm.svg +1 -0
  13517. docsforge/themes/material/templates/.icons/simple/pcgamingwiki.svg +1 -0
  13518. docsforge/themes/material/templates/.icons/simple/pdm.svg +1 -0
  13519. docsforge/themes/material/templates/.icons/simple/pdq.svg +1 -0
  13520. docsforge/themes/material/templates/.icons/simple/peakdesign.svg +1 -0
  13521. docsforge/themes/material/templates/.icons/simple/pearson.svg +1 -0
  13522. docsforge/themes/material/templates/.icons/simple/peerlist.svg +1 -0
  13523. docsforge/themes/material/templates/.icons/simple/peertube.svg +1 -0
  13524. docsforge/themes/material/templates/.icons/simple/pegasusairlines.svg +1 -0
  13525. docsforge/themes/material/templates/.icons/simple/pelican.svg +1 -0
  13526. docsforge/themes/material/templates/.icons/simple/peloton.svg +1 -0
  13527. docsforge/themes/material/templates/.icons/simple/penny.svg +1 -0
  13528. docsforge/themes/material/templates/.icons/simple/penpot.svg +1 -0
  13529. docsforge/themes/material/templates/.icons/simple/percy.svg +1 -0
  13530. docsforge/themes/material/templates/.icons/simple/perforce.svg +1 -0
  13531. docsforge/themes/material/templates/.icons/simple/perl.svg +1 -0
  13532. docsforge/themes/material/templates/.icons/simple/perplexity.svg +1 -0
  13533. docsforge/themes/material/templates/.icons/simple/persistent.svg +1 -0
  13534. docsforge/themes/material/templates/.icons/simple/personio.svg +1 -0
  13535. docsforge/themes/material/templates/.icons/simple/petsathome.svg +1 -0
  13536. docsforge/themes/material/templates/.icons/simple/peugeot.svg +1 -0
  13537. docsforge/themes/material/templates/.icons/simple/pexels.svg +1 -0
  13538. docsforge/themes/material/templates/.icons/simple/pfsense.svg +1 -0
  13539. docsforge/themes/material/templates/.icons/simple/phabricator.svg +1 -0
  13540. docsforge/themes/material/templates/.icons/simple/philipshue.svg +1 -0
  13541. docsforge/themes/material/templates/.icons/simple/phoenixframework.svg +1 -0
  13542. docsforge/themes/material/templates/.icons/simple/phonepe.svg +1 -0
  13543. docsforge/themes/material/templates/.icons/simple/phosphoricons.svg +1 -0
  13544. docsforge/themes/material/templates/.icons/simple/photobucket.svg +1 -0
  13545. docsforge/themes/material/templates/.icons/simple/photocrowd.svg +1 -0
  13546. docsforge/themes/material/templates/.icons/simple/photon.svg +1 -0
  13547. docsforge/themes/material/templates/.icons/simple/photopea.svg +1 -0
  13548. docsforge/themes/material/templates/.icons/simple/php.svg +1 -0
  13549. docsforge/themes/material/templates/.icons/simple/phpbb.svg +1 -0
  13550. docsforge/themes/material/templates/.icons/simple/phpmyadmin.svg +1 -0
  13551. docsforge/themes/material/templates/.icons/simple/phpstorm.svg +1 -0
  13552. docsforge/themes/material/templates/.icons/simple/piaggiogroup.svg +1 -0
  13553. docsforge/themes/material/templates/.icons/simple/piapro.svg +1 -0
  13554. docsforge/themes/material/templates/.icons/simple/picardsurgeles.svg +1 -0
  13555. docsforge/themes/material/templates/.icons/simple/picartodottv.svg +1 -0
  13556. docsforge/themes/material/templates/.icons/simple/picnic.svg +1 -0
  13557. docsforge/themes/material/templates/.icons/simple/picpay.svg +1 -0
  13558. docsforge/themes/material/templates/.icons/simple/picrew.svg +1 -0
  13559. docsforge/themes/material/templates/.icons/simple/picsart.svg +1 -0
  13560. docsforge/themes/material/templates/.icons/simple/picxy.svg +1 -0
  13561. docsforge/themes/material/templates/.icons/simple/pihole.svg +1 -0
  13562. docsforge/themes/material/templates/.icons/simple/pimcore.svg +1 -0
  13563. docsforge/themes/material/templates/.icons/simple/pinboard.svg +1 -0
  13564. docsforge/themes/material/templates/.icons/simple/pinescript.svg +1 -0
  13565. docsforge/themes/material/templates/.icons/simple/pinetwork.svg +1 -0
  13566. docsforge/themes/material/templates/.icons/simple/pingdom.svg +1 -0
  13567. docsforge/themes/material/templates/.icons/simple/pinia.svg +1 -0
  13568. docsforge/themes/material/templates/.icons/simple/pino.svg +1 -0
  13569. docsforge/themes/material/templates/.icons/simple/pinterest.svg +1 -0
  13570. docsforge/themes/material/templates/.icons/simple/pioneerdj.svg +1 -0
  13571. docsforge/themes/material/templates/.icons/simple/piped.svg +1 -0
  13572. docsforge/themes/material/templates/.icons/simple/pipx.svg +1 -0
  13573. docsforge/themes/material/templates/.icons/simple/pivotaltracker.svg +1 -0
  13574. docsforge/themes/material/templates/.icons/simple/piwigo.svg +1 -0
  13575. docsforge/themes/material/templates/.icons/simple/pix.svg +1 -0
  13576. docsforge/themes/material/templates/.icons/simple/pixabay.svg +1 -0
  13577. docsforge/themes/material/templates/.icons/simple/pixelfed.svg +1 -0
  13578. docsforge/themes/material/templates/.icons/simple/pixiv.svg +1 -0
  13579. docsforge/themes/material/templates/.icons/simple/pixlr.svg +1 -0
  13580. docsforge/themes/material/templates/.icons/simple/pkgsrc.svg +1 -0
  13581. docsforge/themes/material/templates/.icons/simple/plane.svg +1 -0
  13582. docsforge/themes/material/templates/.icons/simple/planet.svg +1 -0
  13583. docsforge/themes/material/templates/.icons/simple/planetscale.svg +1 -0
  13584. docsforge/themes/material/templates/.icons/simple/plangrid.svg +1 -0
  13585. docsforge/themes/material/templates/.icons/simple/platformdotsh.svg +1 -0
  13586. docsforge/themes/material/templates/.icons/simple/platformio.svg +1 -0
  13587. docsforge/themes/material/templates/.icons/simple/platzi.svg +1 -0
  13588. docsforge/themes/material/templates/.icons/simple/plausibleanalytics.svg +1 -0
  13589. docsforge/themes/material/templates/.icons/simple/playcanvas.svg +1 -0
  13590. docsforge/themes/material/templates/.icons/simple/playerdotme.svg +1 -0
  13591. docsforge/themes/material/templates/.icons/simple/playerfm.svg +1 -0
  13592. docsforge/themes/material/templates/.icons/simple/playstation.svg +1 -0
  13593. docsforge/themes/material/templates/.icons/simple/playstation2.svg +1 -0
  13594. docsforge/themes/material/templates/.icons/simple/playstation3.svg +1 -0
  13595. docsforge/themes/material/templates/.icons/simple/playstation4.svg +1 -0
  13596. docsforge/themes/material/templates/.icons/simple/playstation5.svg +1 -0
  13597. docsforge/themes/material/templates/.icons/simple/playstationportable.svg +1 -0
  13598. docsforge/themes/material/templates/.icons/simple/playstationvita.svg +1 -0
  13599. docsforge/themes/material/templates/.icons/simple/pleroma.svg +1 -0
  13600. docsforge/themes/material/templates/.icons/simple/plesk.svg +1 -0
  13601. docsforge/themes/material/templates/.icons/simple/plex.svg +1 -0
  13602. docsforge/themes/material/templates/.icons/simple/plotly.svg +1 -0
  13603. docsforge/themes/material/templates/.icons/simple/plume.svg +1 -0
  13604. docsforge/themes/material/templates/.icons/simple/pluralsight.svg +1 -0
  13605. docsforge/themes/material/templates/.icons/simple/plurk.svg +1 -0
  13606. docsforge/themes/material/templates/.icons/simple/pm2.svg +1 -0
  13607. docsforge/themes/material/templates/.icons/simple/pnpm.svg +1 -0
  13608. docsforge/themes/material/templates/.icons/simple/pocketbase.svg +1 -0
  13609. docsforge/themes/material/templates/.icons/simple/pocketcasts.svg +1 -0
  13610. docsforge/themes/material/templates/.icons/simple/podcastaddict.svg +1 -0
  13611. docsforge/themes/material/templates/.icons/simple/podcastindex.svg +1 -0
  13612. docsforge/themes/material/templates/.icons/simple/podman.svg +1 -0
  13613. docsforge/themes/material/templates/.icons/simple/poe.svg +1 -0
  13614. docsforge/themes/material/templates/.icons/simple/poetry.svg +1 -0
  13615. docsforge/themes/material/templates/.icons/simple/polars.svg +1 -0
  13616. docsforge/themes/material/templates/.icons/simple/polestar.svg +1 -0
  13617. docsforge/themes/material/templates/.icons/simple/polkadot.svg +1 -0
  13618. docsforge/themes/material/templates/.icons/simple/poly.svg +1 -0
  13619. docsforge/themes/material/templates/.icons/simple/polygon.svg +1 -0
  13620. docsforge/themes/material/templates/.icons/simple/polymerproject.svg +1 -0
  13621. docsforge/themes/material/templates/.icons/simple/polywork.svg +1 -0
  13622. docsforge/themes/material/templates/.icons/simple/pomerium.svg +1 -0
  13623. docsforge/themes/material/templates/.icons/simple/pond5.svg +1 -0
  13624. docsforge/themes/material/templates/.icons/simple/popos.svg +1 -0
  13625. docsforge/themes/material/templates/.icons/simple/porkbun.svg +1 -0
  13626. docsforge/themes/material/templates/.icons/simple/porsche.svg +1 -0
  13627. docsforge/themes/material/templates/.icons/simple/portableappsdotcom.svg +1 -0
  13628. docsforge/themes/material/templates/.icons/simple/portainer.svg +1 -0
  13629. docsforge/themes/material/templates/.icons/simple/portswigger.svg +1 -0
  13630. docsforge/themes/material/templates/.icons/simple/posit.svg +1 -0
  13631. docsforge/themes/material/templates/.icons/simple/postcss.svg +1 -0
  13632. docsforge/themes/material/templates/.icons/simple/postgresql.svg +1 -0
  13633. docsforge/themes/material/templates/.icons/simple/posthog.svg +1 -0
  13634. docsforge/themes/material/templates/.icons/simple/postiz.svg +1 -0
  13635. docsforge/themes/material/templates/.icons/simple/postman.svg +1 -0
  13636. docsforge/themes/material/templates/.icons/simple/postmates.svg +1 -0
  13637. docsforge/themes/material/templates/.icons/simple/powers.svg +1 -0
  13638. docsforge/themes/material/templates/.icons/simple/prdotco.svg +1 -0
  13639. docsforge/themes/material/templates/.icons/simple/preact.svg +1 -0
  13640. docsforge/themes/material/templates/.icons/simple/precommit.svg +1 -0
  13641. docsforge/themes/material/templates/.icons/simple/prefect.svg +1 -0
  13642. docsforge/themes/material/templates/.icons/simple/premid.svg +1 -0
  13643. docsforge/themes/material/templates/.icons/simple/premierleague.svg +1 -0
  13644. docsforge/themes/material/templates/.icons/simple/prepbytes.svg +1 -0
  13645. docsforge/themes/material/templates/.icons/simple/prestashop.svg +1 -0
  13646. docsforge/themes/material/templates/.icons/simple/presto.svg +1 -0
  13647. docsforge/themes/material/templates/.icons/simple/prettier.svg +1 -0
  13648. docsforge/themes/material/templates/.icons/simple/pretzel.svg +1 -0
  13649. docsforge/themes/material/templates/.icons/simple/prevention.svg +1 -0
  13650. docsforge/themes/material/templates/.icons/simple/prezi.svg +1 -0
  13651. docsforge/themes/material/templates/.icons/simple/primefaces.svg +1 -0
  13652. docsforge/themes/material/templates/.icons/simple/primeng.svg +1 -0
  13653. docsforge/themes/material/templates/.icons/simple/primereact.svg +1 -0
  13654. docsforge/themes/material/templates/.icons/simple/primevue.svg +1 -0
  13655. docsforge/themes/material/templates/.icons/simple/printables.svg +1 -0
  13656. docsforge/themes/material/templates/.icons/simple/prisma.svg +1 -0
  13657. docsforge/themes/material/templates/.icons/simple/prismic.svg +1 -0
  13658. docsforge/themes/material/templates/.icons/simple/privatedivision.svg +1 -0
  13659. docsforge/themes/material/templates/.icons/simple/privateinternetaccess.svg +1 -0
  13660. docsforge/themes/material/templates/.icons/simple/probot.svg +1 -0
  13661. docsforge/themes/material/templates/.icons/simple/processingfoundation.svg +1 -0
  13662. docsforge/themes/material/templates/.icons/simple/processon.svg +1 -0
  13663. docsforge/themes/material/templates/.icons/simple/processwire.svg +1 -0
  13664. docsforge/themes/material/templates/.icons/simple/producthunt.svg +1 -0
  13665. docsforge/themes/material/templates/.icons/simple/progate.svg +1 -0
  13666. docsforge/themes/material/templates/.icons/simple/progress.svg +1 -0
  13667. docsforge/themes/material/templates/.icons/simple/prometheus.svg +1 -0
  13668. docsforge/themes/material/templates/.icons/simple/pronounsdotpage.svg +1 -0
  13669. docsforge/themes/material/templates/.icons/simple/prosieben.svg +1 -0
  13670. docsforge/themes/material/templates/.icons/simple/proteus.svg +1 -0
  13671. docsforge/themes/material/templates/.icons/simple/protocolsdotio.svg +1 -0
  13672. docsforge/themes/material/templates/.icons/simple/protodotio.svg +1 -0
  13673. docsforge/themes/material/templates/.icons/simple/proton.svg +1 -0
  13674. docsforge/themes/material/templates/.icons/simple/protoncalendar.svg +1 -0
  13675. docsforge/themes/material/templates/.icons/simple/protondb.svg +1 -0
  13676. docsforge/themes/material/templates/.icons/simple/protondrive.svg +1 -0
  13677. docsforge/themes/material/templates/.icons/simple/protonmail.svg +1 -0
  13678. docsforge/themes/material/templates/.icons/simple/protonvpn.svg +1 -0
  13679. docsforge/themes/material/templates/.icons/simple/protools.svg +1 -0
  13680. docsforge/themes/material/templates/.icons/simple/protractor.svg +1 -0
  13681. docsforge/themes/material/templates/.icons/simple/proxmox.svg +1 -0
  13682. docsforge/themes/material/templates/.icons/simple/pterodactyl.svg +1 -0
  13683. docsforge/themes/material/templates/.icons/simple/pubg.svg +1 -0
  13684. docsforge/themes/material/templates/.icons/simple/publons.svg +1 -0
  13685. docsforge/themes/material/templates/.icons/simple/pubmed.svg +1 -0
  13686. docsforge/themes/material/templates/.icons/simple/pug.svg +1 -0
  13687. docsforge/themes/material/templates/.icons/simple/pulumi.svg +1 -0
  13688. docsforge/themes/material/templates/.icons/simple/puma.svg +1 -0
  13689. docsforge/themes/material/templates/.icons/simple/puppet.svg +1 -0
  13690. docsforge/themes/material/templates/.icons/simple/puppeteer.svg +1 -0
  13691. docsforge/themes/material/templates/.icons/simple/purescript.svg +1 -0
  13692. docsforge/themes/material/templates/.icons/simple/purgecss.svg +1 -0
  13693. docsforge/themes/material/templates/.icons/simple/purism.svg +1 -0
  13694. docsforge/themes/material/templates/.icons/simple/pushbullet.svg +1 -0
  13695. docsforge/themes/material/templates/.icons/simple/pusher.svg +1 -0
  13696. docsforge/themes/material/templates/.icons/simple/pwa.svg +1 -0
  13697. docsforge/themes/material/templates/.icons/simple/pycharm.svg +1 -0
  13698. docsforge/themes/material/templates/.icons/simple/pycqa.svg +1 -0
  13699. docsforge/themes/material/templates/.icons/simple/pydantic.svg +1 -0
  13700. docsforge/themes/material/templates/.icons/simple/pyg.svg +1 -0
  13701. docsforge/themes/material/templates/.icons/simple/pypi.svg +1 -0
  13702. docsforge/themes/material/templates/.icons/simple/pypy.svg +1 -0
  13703. docsforge/themes/material/templates/.icons/simple/pyscaffold.svg +1 -0
  13704. docsforge/themes/material/templates/.icons/simple/pysyft.svg +1 -0
  13705. docsforge/themes/material/templates/.icons/simple/pytest.svg +1 -0
  13706. docsforge/themes/material/templates/.icons/simple/python.svg +1 -0
  13707. docsforge/themes/material/templates/.icons/simple/pythonanywhere.svg +1 -0
  13708. docsforge/themes/material/templates/.icons/simple/pytorch.svg +1 -0
  13709. docsforge/themes/material/templates/.icons/simple/pyup.svg +1 -0
  13710. docsforge/themes/material/templates/.icons/simple/qantas.svg +1 -0
  13711. docsforge/themes/material/templates/.icons/simple/qase.svg +1 -0
  13712. docsforge/themes/material/templates/.icons/simple/qatarairways.svg +1 -0
  13713. docsforge/themes/material/templates/.icons/simple/qbittorrent.svg +1 -0
  13714. docsforge/themes/material/templates/.icons/simple/qemu.svg +1 -0
  13715. docsforge/themes/material/templates/.icons/simple/qgis.svg +1 -0
  13716. docsforge/themes/material/templates/.icons/simple/qi.svg +1 -0
  13717. docsforge/themes/material/templates/.icons/simple/qiita.svg +1 -0
  13718. docsforge/themes/material/templates/.icons/simple/qiskit.svg +1 -0
  13719. docsforge/themes/material/templates/.icons/simple/qiwi.svg +1 -0
  13720. docsforge/themes/material/templates/.icons/simple/qlik.svg +1 -0
  13721. docsforge/themes/material/templates/.icons/simple/qlty.svg +1 -0
  13722. docsforge/themes/material/templates/.icons/simple/qmk.svg +1 -0
  13723. docsforge/themes/material/templates/.icons/simple/qnap.svg +1 -0
  13724. docsforge/themes/material/templates/.icons/simple/qodo.svg +1 -0
  13725. docsforge/themes/material/templates/.icons/simple/qq.svg +1 -0
  13726. docsforge/themes/material/templates/.icons/simple/qt.svg +1 -0
  13727. docsforge/themes/material/templates/.icons/simple/quad9.svg +1 -0
  13728. docsforge/themes/material/templates/.icons/simple/qualcomm.svg +1 -0
  13729. docsforge/themes/material/templates/.icons/simple/qualtrics.svg +1 -0
  13730. docsforge/themes/material/templates/.icons/simple/qualys.svg +1 -0
  13731. docsforge/themes/material/templates/.icons/simple/quantcast.svg +1 -0
  13732. docsforge/themes/material/templates/.icons/simple/quantconnect.svg +1 -0
  13733. docsforge/themes/material/templates/.icons/simple/quarkus.svg +1 -0
  13734. docsforge/themes/material/templates/.icons/simple/quarto.svg +1 -0
  13735. docsforge/themes/material/templates/.icons/simple/quasar.svg +1 -0
  13736. docsforge/themes/material/templates/.icons/simple/qubesos.svg +1 -0
  13737. docsforge/themes/material/templates/.icons/simple/quest.svg +1 -0
  13738. docsforge/themes/material/templates/.icons/simple/quickbooks.svg +1 -0
  13739. docsforge/themes/material/templates/.icons/simple/quicklook.svg +1 -0
  13740. docsforge/themes/material/templates/.icons/simple/quicktime.svg +1 -0
  13741. docsforge/themes/material/templates/.icons/simple/quicktype.svg +1 -0
  13742. docsforge/themes/material/templates/.icons/simple/quizlet.svg +1 -0
  13743. docsforge/themes/material/templates/.icons/simple/quora.svg +1 -0
  13744. docsforge/themes/material/templates/.icons/simple/qwant.svg +1 -0
  13745. docsforge/themes/material/templates/.icons/simple/qwik.svg +1 -0
  13746. docsforge/themes/material/templates/.icons/simple/qwiklabs.svg +1 -0
  13747. docsforge/themes/material/templates/.icons/simple/qzone.svg +1 -0
  13748. docsforge/themes/material/templates/.icons/simple/r.svg +1 -0
  13749. docsforge/themes/material/templates/.icons/simple/r3.svg +1 -0
  13750. docsforge/themes/material/templates/.icons/simple/rabbitmq.svg +1 -0
  13751. docsforge/themes/material/templates/.icons/simple/racket.svg +1 -0
  13752. docsforge/themes/material/templates/.icons/simple/radar.svg +1 -0
  13753. docsforge/themes/material/templates/.icons/simple/radarr.svg +1 -0
  13754. docsforge/themes/material/templates/.icons/simple/radiofrance.svg +1 -0
  13755. docsforge/themes/material/templates/.icons/simple/radixui.svg +1 -0
  13756. docsforge/themes/material/templates/.icons/simple/radstudio.svg +1 -0
  13757. docsforge/themes/material/templates/.icons/simple/railway.svg +1 -0
  13758. docsforge/themes/material/templates/.icons/simple/rainmeter.svg +1 -0
  13759. docsforge/themes/material/templates/.icons/simple/rainyun.svg +1 -0
  13760. docsforge/themes/material/templates/.icons/simple/rakuten.svg +1 -0
  13761. docsforge/themes/material/templates/.icons/simple/rakutenkobo.svg +1 -0
  13762. docsforge/themes/material/templates/.icons/simple/ram.svg +1 -0
  13763. docsforge/themes/material/templates/.icons/simple/rancher.svg +1 -0
  13764. docsforge/themes/material/templates/.icons/simple/rapid.svg +1 -0
  13765. docsforge/themes/material/templates/.icons/simple/rarible.svg +1 -0
  13766. docsforge/themes/material/templates/.icons/simple/rasa.svg +1 -0
  13767. docsforge/themes/material/templates/.icons/simple/raspberrypi.svg +1 -0
  13768. docsforge/themes/material/templates/.icons/simple/ratatui.svg +1 -0
  13769. docsforge/themes/material/templates/.icons/simple/ravelry.svg +1 -0
  13770. docsforge/themes/material/templates/.icons/simple/ray.svg +1 -0
  13771. docsforge/themes/material/templates/.icons/simple/raycast.svg +1 -0
  13772. docsforge/themes/material/templates/.icons/simple/raylib.svg +1 -0
  13773. docsforge/themes/material/templates/.icons/simple/razer.svg +1 -0
  13774. docsforge/themes/material/templates/.icons/simple/razorpay.svg +1 -0
  13775. docsforge/themes/material/templates/.icons/simple/rclone.svg +1 -0
  13776. docsforge/themes/material/templates/.icons/simple/react.svg +1 -0
  13777. docsforge/themes/material/templates/.icons/simple/reactbootstrap.svg +1 -0
  13778. docsforge/themes/material/templates/.icons/simple/reacthookform.svg +1 -0
  13779. docsforge/themes/material/templates/.icons/simple/reactiveresume.svg +1 -0
  13780. docsforge/themes/material/templates/.icons/simple/reactivex.svg +1 -0
  13781. docsforge/themes/material/templates/.icons/simple/reactos.svg +1 -0
  13782. docsforge/themes/material/templates/.icons/simple/reactquery.svg +1 -0
  13783. docsforge/themes/material/templates/.icons/simple/reactrouter.svg +1 -0
  13784. docsforge/themes/material/templates/.icons/simple/reacttable.svg +1 -0
  13785. docsforge/themes/material/templates/.icons/simple/readdotcv.svg +1 -0
  13786. docsforge/themes/material/templates/.icons/simple/readme.svg +1 -0
  13787. docsforge/themes/material/templates/.icons/simple/readthedocs.svg +1 -0
  13788. docsforge/themes/material/templates/.icons/simple/reason.svg +1 -0
  13789. docsforge/themes/material/templates/.icons/simple/reasonstudios.svg +1 -0
  13790. docsforge/themes/material/templates/.icons/simple/recoil.svg +1 -0
  13791. docsforge/themes/material/templates/.icons/simple/red.svg +1 -0
  13792. docsforge/themes/material/templates/.icons/simple/redash.svg +1 -0
  13793. docsforge/themes/material/templates/.icons/simple/redbubble.svg +1 -0
  13794. docsforge/themes/material/templates/.icons/simple/redbull.svg +1 -0
  13795. docsforge/themes/material/templates/.icons/simple/redcandlegames.svg +1 -0
  13796. docsforge/themes/material/templates/.icons/simple/reddit.svg +1 -0
  13797. docsforge/themes/material/templates/.icons/simple/redhat.svg +1 -0
  13798. docsforge/themes/material/templates/.icons/simple/redhatopenshift.svg +1 -0
  13799. docsforge/themes/material/templates/.icons/simple/redis.svg +1 -0
  13800. docsforge/themes/material/templates/.icons/simple/redmine.svg +1 -0
  13801. docsforge/themes/material/templates/.icons/simple/redox.svg +1 -0
  13802. docsforge/themes/material/templates/.icons/simple/redragon.svg +1 -0
  13803. docsforge/themes/material/templates/.icons/simple/redsys.svg +1 -0
  13804. docsforge/themes/material/templates/.icons/simple/redux.svg +1 -0
  13805. docsforge/themes/material/templates/.icons/simple/reduxsaga.svg +1 -0
  13806. docsforge/themes/material/templates/.icons/simple/redwoodjs.svg +1 -0
  13807. docsforge/themes/material/templates/.icons/simple/reebok.svg +1 -0
  13808. docsforge/themes/material/templates/.icons/simple/refine.svg +1 -0
  13809. docsforge/themes/material/templates/.icons/simple/refinedgithub.svg +1 -0
  13810. docsforge/themes/material/templates/.icons/simple/rekaui.svg +1 -0
  13811. docsforge/themes/material/templates/.icons/simple/relay.svg +1 -0
  13812. docsforge/themes/material/templates/.icons/simple/relianceindustrieslimited.svg +1 -0
  13813. docsforge/themes/material/templates/.icons/simple/remark.svg +1 -0
  13814. docsforge/themes/material/templates/.icons/simple/remedyentertainment.svg +1 -0
  13815. docsforge/themes/material/templates/.icons/simple/remix.svg +1 -0
  13816. docsforge/themes/material/templates/.icons/simple/removedotbg.svg +1 -0
  13817. docsforge/themes/material/templates/.icons/simple/renault.svg +1 -0
  13818. docsforge/themes/material/templates/.icons/simple/render.svg +1 -0
  13819. docsforge/themes/material/templates/.icons/simple/renovate.svg +1 -0
  13820. docsforge/themes/material/templates/.icons/simple/renpy.svg +1 -0
  13821. docsforge/themes/material/templates/.icons/simple/renren.svg +1 -0
  13822. docsforge/themes/material/templates/.icons/simple/replicate.svg +1 -0
  13823. docsforge/themes/material/templates/.icons/simple/replit.svg +1 -0
  13824. docsforge/themes/material/templates/.icons/simple/republicofgamers.svg +1 -0
  13825. docsforge/themes/material/templates/.icons/simple/rescript.svg +1 -0
  13826. docsforge/themes/material/templates/.icons/simple/rescuetime.svg +1 -0
  13827. docsforge/themes/material/templates/.icons/simple/researchgate.svg +1 -0
  13828. docsforge/themes/material/templates/.icons/simple/resend.svg +1 -0
  13829. docsforge/themes/material/templates/.icons/simple/resharper.svg +1 -0
  13830. docsforge/themes/material/templates/.icons/simple/resurrectionremixos.svg +1 -0
  13831. docsforge/themes/material/templates/.icons/simple/retool.svg +1 -0
  13832. docsforge/themes/material/templates/.icons/simple/retroachievements.svg +1 -0
  13833. docsforge/themes/material/templates/.icons/simple/retroarch.svg +1 -0
  13834. docsforge/themes/material/templates/.icons/simple/retropie.svg +1 -0
  13835. docsforge/themes/material/templates/.icons/simple/revanced.svg +1 -0
  13836. docsforge/themes/material/templates/.icons/simple/revealdotjs.svg +1 -0
  13837. docsforge/themes/material/templates/.icons/simple/revenuecat.svg +1 -0
  13838. docsforge/themes/material/templates/.icons/simple/reverbnation.svg +1 -0
  13839. docsforge/themes/material/templates/.icons/simple/revoltdotchat.svg +1 -0
  13840. docsforge/themes/material/templates/.icons/simple/revolut.svg +1 -0
  13841. docsforge/themes/material/templates/.icons/simple/rewe.svg +1 -0
  13842. docsforge/themes/material/templates/.icons/simple/rezgo.svg +1 -0
  13843. docsforge/themes/material/templates/.icons/simple/rhinoceros.svg +1 -0
  13844. docsforge/themes/material/templates/.icons/simple/rich.svg +1 -0
  13845. docsforge/themes/material/templates/.icons/simple/rider.svg +1 -0
  13846. docsforge/themes/material/templates/.icons/simple/rimacautomobili.svg +1 -0
  13847. docsforge/themes/material/templates/.icons/simple/rime.svg +1 -0
  13848. docsforge/themes/material/templates/.icons/simple/ring.svg +1 -0
  13849. docsforge/themes/material/templates/.icons/simple/riotgames.svg +1 -0
  13850. docsforge/themes/material/templates/.icons/simple/ripple.svg +1 -0
  13851. docsforge/themes/material/templates/.icons/simple/riscv.svg +1 -0
  13852. docsforge/themes/material/templates/.icons/simple/riseup.svg +1 -0
  13853. docsforge/themes/material/templates/.icons/simple/ritzcarlton.svg +1 -0
  13854. docsforge/themes/material/templates/.icons/simple/rive.svg +1 -0
  13855. docsforge/themes/material/templates/.icons/simple/roadmapdotsh.svg +1 -0
  13856. docsforge/themes/material/templates/.icons/simple/roamresearch.svg +1 -0
  13857. docsforge/themes/material/templates/.icons/simple/robinhood.svg +1 -0
  13858. docsforge/themes/material/templates/.icons/simple/roblox.svg +1 -0
  13859. docsforge/themes/material/templates/.icons/simple/robloxstudio.svg +1 -0
  13860. docsforge/themes/material/templates/.icons/simple/roboflow.svg +1 -0
  13861. docsforge/themes/material/templates/.icons/simple/robotframework.svg +1 -0
  13862. docsforge/themes/material/templates/.icons/simple/rocket.svg +1 -0
  13863. docsforge/themes/material/templates/.icons/simple/rocketdotchat.svg +1 -0
  13864. docsforge/themes/material/templates/.icons/simple/rocksdb.svg +1 -0
  13865. docsforge/themes/material/templates/.icons/simple/rockstargames.svg +1 -0
  13866. docsforge/themes/material/templates/.icons/simple/rockwellautomation.svg +1 -0
  13867. docsforge/themes/material/templates/.icons/simple/rockylinux.svg +1 -0
  13868. docsforge/themes/material/templates/.icons/simple/roku.svg +1 -0
  13869. docsforge/themes/material/templates/.icons/simple/roll20.svg +1 -0
  13870. docsforge/themes/material/templates/.icons/simple/rollbar.svg +1 -0
  13871. docsforge/themes/material/templates/.icons/simple/rolldown.svg +1 -0
  13872. docsforge/themes/material/templates/.icons/simple/rollsroyce.svg +1 -0
  13873. docsforge/themes/material/templates/.icons/simple/rollupdotjs.svg +1 -0
  13874. docsforge/themes/material/templates/.icons/simple/rook.svg +1 -0
  13875. docsforge/themes/material/templates/.icons/simple/roon.svg +1 -0
  13876. docsforge/themes/material/templates/.icons/simple/root.svg +1 -0
  13877. docsforge/themes/material/templates/.icons/simple/rootme.svg +1 -0
  13878. docsforge/themes/material/templates/.icons/simple/roots.svg +1 -0
  13879. docsforge/themes/material/templates/.icons/simple/rootsbedrock.svg +1 -0
  13880. docsforge/themes/material/templates/.icons/simple/rootssage.svg +1 -0
  13881. docsforge/themes/material/templates/.icons/simple/ros.svg +1 -0
  13882. docsforge/themes/material/templates/.icons/simple/rossmann.svg +1 -0
  13883. docsforge/themes/material/templates/.icons/simple/rotaryinternational.svg +1 -0
  13884. docsforge/themes/material/templates/.icons/simple/rottentomatoes.svg +1 -0
  13885. docsforge/themes/material/templates/.icons/simple/roundcube.svg +1 -0
  13886. docsforge/themes/material/templates/.icons/simple/rsocket.svg +1 -0
  13887. docsforge/themes/material/templates/.icons/simple/rss.svg +1 -0
  13888. docsforge/themes/material/templates/.icons/simple/rstudioide.svg +1 -0
  13889. docsforge/themes/material/templates/.icons/simple/rte.svg +1 -0
  13890. docsforge/themes/material/templates/.icons/simple/rtl.svg +1 -0
  13891. docsforge/themes/material/templates/.icons/simple/rtlzwei.svg +1 -0
  13892. docsforge/themes/material/templates/.icons/simple/rtm.svg +1 -0
  13893. docsforge/themes/material/templates/.icons/simple/rubocop.svg +1 -0
  13894. docsforge/themes/material/templates/.icons/simple/ruby.svg +1 -0
  13895. docsforge/themes/material/templates/.icons/simple/rubygems.svg +1 -0
  13896. docsforge/themes/material/templates/.icons/simple/rubymine.svg +1 -0
  13897. docsforge/themes/material/templates/.icons/simple/rubyonrails.svg +1 -0
  13898. docsforge/themes/material/templates/.icons/simple/rubysinatra.svg +1 -0
  13899. docsforge/themes/material/templates/.icons/simple/ruff.svg +1 -0
  13900. docsforge/themes/material/templates/.icons/simple/rumahweb.svg +1 -0
  13901. docsforge/themes/material/templates/.icons/simple/rumble.svg +1 -0
  13902. docsforge/themes/material/templates/.icons/simple/rundeck.svg +1 -0
  13903. docsforge/themes/material/templates/.icons/simple/runkeeper.svg +1 -0
  13904. docsforge/themes/material/templates/.icons/simple/runkit.svg +1 -0
  13905. docsforge/themes/material/templates/.icons/simple/runrundotit.svg +1 -0
  13906. docsforge/themes/material/templates/.icons/simple/rust.svg +1 -0
  13907. docsforge/themes/material/templates/.icons/simple/rustdesk.svg +1 -0
  13908. docsforge/themes/material/templates/.icons/simple/rxdb.svg +1 -0
  13909. docsforge/themes/material/templates/.icons/simple/ryanair.svg +1 -0
  13910. docsforge/themes/material/templates/.icons/simple/rye.svg +1 -0
  13911. docsforge/themes/material/templates/.icons/simple/s7airlines.svg +1 -0
  13912. docsforge/themes/material/templates/.icons/simple/sabanci.svg +1 -0
  13913. docsforge/themes/material/templates/.icons/simple/safari.svg +1 -0
  13914. docsforge/themes/material/templates/.icons/simple/sage.svg +1 -0
  13915. docsforge/themes/material/templates/.icons/simple/sagemath.svg +1 -0
  13916. docsforge/themes/material/templates/.icons/simple/sahibinden.svg +1 -0
  13917. docsforge/themes/material/templates/.icons/simple/sailfishos.svg +1 -0
  13918. docsforge/themes/material/templates/.icons/simple/sailsdotjs.svg +1 -0
  13919. docsforge/themes/material/templates/.icons/simple/salla.svg +1 -0
  13920. docsforge/themes/material/templates/.icons/simple/saltproject.svg +1 -0
  13921. docsforge/themes/material/templates/.icons/simple/samsclub.svg +1 -0
  13922. docsforge/themes/material/templates/.icons/simple/samsung.svg +1 -0
  13923. docsforge/themes/material/templates/.icons/simple/samsungpay.svg +1 -0
  13924. docsforge/themes/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg +1 -0
  13925. docsforge/themes/material/templates/.icons/simple/sanic.svg +1 -0
  13926. docsforge/themes/material/templates/.icons/simple/sanity.svg +1 -0
  13927. docsforge/themes/material/templates/.icons/simple/saopaulometro.svg +1 -0
  13928. docsforge/themes/material/templates/.icons/simple/sap.svg +1 -0
  13929. docsforge/themes/material/templates/.icons/simple/sartorius.svg +1 -0
  13930. docsforge/themes/material/templates/.icons/simple/sass.svg +1 -0
  13931. docsforge/themes/material/templates/.icons/simple/sat1.svg +1 -0
  13932. docsforge/themes/material/templates/.icons/simple/satellite.svg +1 -0
  13933. docsforge/themes/material/templates/.icons/simple/saturn.svg +1 -0
  13934. docsforge/themes/material/templates/.icons/simple/saucelabs.svg +1 -0
  13935. docsforge/themes/material/templates/.icons/simple/saudia.svg +1 -0
  13936. docsforge/themes/material/templates/.icons/simple/scala.svg +1 -0
  13937. docsforge/themes/material/templates/.icons/simple/scalar.svg +1 -0
  13938. docsforge/themes/material/templates/.icons/simple/scaleway.svg +1 -0
  13939. docsforge/themes/material/templates/.icons/simple/scania.svg +1 -0
  13940. docsforge/themes/material/templates/.icons/simple/schneiderelectric.svg +1 -0
  13941. docsforge/themes/material/templates/.icons/simple/scikitlearn.svg +1 -0
  13942. docsforge/themes/material/templates/.icons/simple/scilab.svg +1 -0
  13943. docsforge/themes/material/templates/.icons/simple/scipy.svg +1 -0
  13944. docsforge/themes/material/templates/.icons/simple/scopus.svg +1 -0
  13945. docsforge/themes/material/templates/.icons/simple/scpfoundation.svg +1 -0
  13946. docsforge/themes/material/templates/.icons/simple/scrapbox.svg +1 -0
  13947. docsforge/themes/material/templates/.icons/simple/scrapy.svg +1 -0
  13948. docsforge/themes/material/templates/.icons/simple/scratch.svg +1 -0
  13949. docsforge/themes/material/templates/.icons/simple/screencastify.svg +1 -0
  13950. docsforge/themes/material/templates/.icons/simple/scrimba.svg +1 -0
  13951. docsforge/themes/material/templates/.icons/simple/scrollreveal.svg +1 -0
  13952. docsforge/themes/material/templates/.icons/simple/scrumalliance.svg +1 -0
  13953. docsforge/themes/material/templates/.icons/simple/scrutinizerci.svg +1 -0
  13954. docsforge/themes/material/templates/.icons/simple/scylladb.svg +1 -0
  13955. docsforge/themes/material/templates/.icons/simple/seafile.svg +1 -0
  13956. docsforge/themes/material/templates/.icons/simple/seagate.svg +1 -0
  13957. docsforge/themes/material/templates/.icons/simple/searxng.svg +1 -0
  13958. docsforge/themes/material/templates/.icons/simple/seat.svg +1 -0
  13959. docsforge/themes/material/templates/.icons/simple/seatgeek.svg +1 -0
  13960. docsforge/themes/material/templates/.icons/simple/securityscorecard.svg +1 -0
  13961. docsforge/themes/material/templates/.icons/simple/sefaria.svg +1 -0
  13962. docsforge/themes/material/templates/.icons/simple/sega.svg +1 -0
  13963. docsforge/themes/material/templates/.icons/simple/selenium.svg +1 -0
  13964. docsforge/themes/material/templates/.icons/simple/sellfy.svg +1 -0
  13965. docsforge/themes/material/templates/.icons/simple/semanticrelease.svg +1 -0
  13966. docsforge/themes/material/templates/.icons/simple/semanticscholar.svg +1 -0
  13967. docsforge/themes/material/templates/.icons/simple/semanticui.svg +1 -0
  13968. docsforge/themes/material/templates/.icons/simple/semanticuireact.svg +1 -0
  13969. docsforge/themes/material/templates/.icons/simple/semanticweb.svg +1 -0
  13970. docsforge/themes/material/templates/.icons/simple/semaphoreci.svg +1 -0
  13971. docsforge/themes/material/templates/.icons/simple/semrush.svg +1 -0
  13972. docsforge/themes/material/templates/.icons/simple/semver.svg +1 -0
  13973. docsforge/themes/material/templates/.icons/simple/sencha.svg +1 -0
  13974. docsforge/themes/material/templates/.icons/simple/sennheiser.svg +1 -0
  13975. docsforge/themes/material/templates/.icons/simple/sensu.svg +1 -0
  13976. docsforge/themes/material/templates/.icons/simple/sentry.svg +1 -0
  13977. docsforge/themes/material/templates/.icons/simple/sepa.svg +1 -0
  13978. docsforge/themes/material/templates/.icons/simple/sequelize.svg +1 -0
  13979. docsforge/themes/material/templates/.icons/simple/servbay.svg +1 -0
  13980. docsforge/themes/material/templates/.icons/simple/serverfault.svg +1 -0
  13981. docsforge/themes/material/templates/.icons/simple/serverless.svg +1 -0
  13982. docsforge/themes/material/templates/.icons/simple/session.svg +1 -0
  13983. docsforge/themes/material/templates/.icons/simple/sessionize.svg +1 -0
  13984. docsforge/themes/material/templates/.icons/simple/setapp.svg +1 -0
  13985. docsforge/themes/material/templates/.icons/simple/setuptools.svg +1 -0
  13986. docsforge/themes/material/templates/.icons/simple/sfml.svg +1 -0
  13987. docsforge/themes/material/templates/.icons/simple/shadcnui.svg +1 -0
  13988. docsforge/themes/material/templates/.icons/simple/shadow.svg +1 -0
  13989. docsforge/themes/material/templates/.icons/simple/shanghaimetro.svg +1 -0
  13990. docsforge/themes/material/templates/.icons/simple/sharex.svg +1 -0
  13991. docsforge/themes/material/templates/.icons/simple/sharp.svg +1 -0
  13992. docsforge/themes/material/templates/.icons/simple/shazam.svg +1 -0
  13993. docsforge/themes/material/templates/.icons/simple/shell.svg +1 -0
  13994. docsforge/themes/material/templates/.icons/simple/shelly.svg +1 -0
  13995. docsforge/themes/material/templates/.icons/simple/shenzhenmetro.svg +1 -0
  13996. docsforge/themes/material/templates/.icons/simple/shieldsdotio.svg +1 -0
  13997. docsforge/themes/material/templates/.icons/simple/shikimori.svg +1 -0
  13998. docsforge/themes/material/templates/.icons/simple/shopee.svg +1 -0
  13999. docsforge/themes/material/templates/.icons/simple/shopify.svg +1 -0
  14000. docsforge/themes/material/templates/.icons/simple/shopware.svg +1 -0
  14001. docsforge/themes/material/templates/.icons/simple/shortcut.svg +1 -0
  14002. docsforge/themes/material/templates/.icons/simple/showpad.svg +1 -0
  14003. docsforge/themes/material/templates/.icons/simple/showtime.svg +1 -0
  14004. docsforge/themes/material/templates/.icons/simple/showwcase.svg +1 -0
  14005. docsforge/themes/material/templates/.icons/simple/sidekiq.svg +1 -0
  14006. docsforge/themes/material/templates/.icons/simple/sidequest.svg +1 -0
  14007. docsforge/themes/material/templates/.icons/simple/siemens.svg +1 -0
  14008. docsforge/themes/material/templates/.icons/simple/sifive.svg +1 -0
  14009. docsforge/themes/material/templates/.icons/simple/signal.svg +1 -0
  14010. docsforge/themes/material/templates/.icons/simple/silverairways.svg +1 -0
  14011. docsforge/themes/material/templates/.icons/simple/similarweb.svg +1 -0
  14012. docsforge/themes/material/templates/.icons/simple/simkl.svg +1 -0
  14013. docsforge/themes/material/templates/.icons/simple/simpleanalytics.svg +1 -0
  14014. docsforge/themes/material/templates/.icons/simple/simpleicons.svg +1 -0
  14015. docsforge/themes/material/templates/.icons/simple/simplelocalize.svg +1 -0
  14016. docsforge/themes/material/templates/.icons/simple/simplelogin.svg +1 -0
  14017. docsforge/themes/material/templates/.icons/simple/simplenote.svg +1 -0
  14018. docsforge/themes/material/templates/.icons/simple/simplex.svg +1 -0
  14019. docsforge/themes/material/templates/.icons/simple/sinaweibo.svg +1 -0
  14020. docsforge/themes/material/templates/.icons/simple/singaporeairlines.svg +1 -0
  14021. docsforge/themes/material/templates/.icons/simple/singlestore.svg +1 -0
  14022. docsforge/themes/material/templates/.icons/simple/sitecore.svg +1 -0
  14023. docsforge/themes/material/templates/.icons/simple/sitepoint.svg +1 -0
  14024. docsforge/themes/material/templates/.icons/simple/siyuan.svg +1 -0
  14025. docsforge/themes/material/templates/.icons/simple/skaffold.svg +1 -0
  14026. docsforge/themes/material/templates/.icons/simple/skeleton.svg +1 -0
  14027. docsforge/themes/material/templates/.icons/simple/sketch.svg +1 -0
  14028. docsforge/themes/material/templates/.icons/simple/sketchfab.svg +1 -0
  14029. docsforge/themes/material/templates/.icons/simple/sketchup.svg +1 -0
  14030. docsforge/themes/material/templates/.icons/simple/skillshare.svg +1 -0
  14031. docsforge/themes/material/templates/.icons/simple/skoda.svg +1 -0
  14032. docsforge/themes/material/templates/.icons/simple/sky.svg +1 -0
  14033. docsforge/themes/material/templates/.icons/simple/skypack.svg +1 -0
  14034. docsforge/themes/material/templates/.icons/simple/slackware.svg +1 -0
  14035. docsforge/themes/material/templates/.icons/simple/slashdot.svg +1 -0
  14036. docsforge/themes/material/templates/.icons/simple/slickpic.svg +1 -0
  14037. docsforge/themes/material/templates/.icons/simple/slides.svg +1 -0
  14038. docsforge/themes/material/templates/.icons/simple/slideshare.svg +1 -0
  14039. docsforge/themes/material/templates/.icons/simple/slint.svg +1 -0
  14040. docsforge/themes/material/templates/.icons/simple/smart.svg +1 -0
  14041. docsforge/themes/material/templates/.icons/simple/smartthings.svg +1 -0
  14042. docsforge/themes/material/templates/.icons/simple/smashingmagazine.svg +1 -0
  14043. docsforge/themes/material/templates/.icons/simple/smoothcomp.svg +1 -0
  14044. docsforge/themes/material/templates/.icons/simple/smrt.svg +1 -0
  14045. docsforge/themes/material/templates/.icons/simple/smugmug.svg +1 -0
  14046. docsforge/themes/material/templates/.icons/simple/snapchat.svg +1 -0
  14047. docsforge/themes/material/templates/.icons/simple/snapcraft.svg +1 -0
  14048. docsforge/themes/material/templates/.icons/simple/snapdragon.svg +1 -0
  14049. docsforge/themes/material/templates/.icons/simple/sncf.svg +1 -0
  14050. docsforge/themes/material/templates/.icons/simple/snort.svg +1 -0
  14051. docsforge/themes/material/templates/.icons/simple/snowflake.svg +1 -0
  14052. docsforge/themes/material/templates/.icons/simple/snowpack.svg +1 -0
  14053. docsforge/themes/material/templates/.icons/simple/snyk.svg +1 -0
  14054. docsforge/themes/material/templates/.icons/simple/socialblade.svg +1 -0
  14055. docsforge/themes/material/templates/.icons/simple/society6.svg +1 -0
  14056. docsforge/themes/material/templates/.icons/simple/socket.svg +1 -0
  14057. docsforge/themes/material/templates/.icons/simple/socketdotio.svg +1 -0
  14058. docsforge/themes/material/templates/.icons/simple/softcatala.svg +1 -0
  14059. docsforge/themes/material/templates/.icons/simple/softpedia.svg +1 -0
  14060. docsforge/themes/material/templates/.icons/simple/sogou.svg +1 -0
  14061. docsforge/themes/material/templates/.icons/simple/solana.svg +1 -0
  14062. docsforge/themes/material/templates/.icons/simple/solid.svg +1 -0
  14063. docsforge/themes/material/templates/.icons/simple/solidity.svg +1 -0
  14064. docsforge/themes/material/templates/.icons/simple/sololearn.svg +1 -0
  14065. docsforge/themes/material/templates/.icons/simple/solus.svg +1 -0
  14066. docsforge/themes/material/templates/.icons/simple/sonar.svg +1 -0
  14067. docsforge/themes/material/templates/.icons/simple/sonarqubecloud.svg +1 -0
  14068. docsforge/themes/material/templates/.icons/simple/sonarqubeforide.svg +1 -0
  14069. docsforge/themes/material/templates/.icons/simple/sonarqubeserver.svg +1 -0
  14070. docsforge/themes/material/templates/.icons/simple/sonarr.svg +1 -0
  14071. docsforge/themes/material/templates/.icons/simple/sonatype.svg +1 -0
  14072. docsforge/themes/material/templates/.icons/simple/songkick.svg +1 -0
  14073. docsforge/themes/material/templates/.icons/simple/songoda.svg +1 -0
  14074. docsforge/themes/material/templates/.icons/simple/sonicwall.svg +1 -0
  14075. docsforge/themes/material/templates/.icons/simple/sonos.svg +1 -0
  14076. docsforge/themes/material/templates/.icons/simple/sony.svg +1 -0
  14077. docsforge/themes/material/templates/.icons/simple/soriana.svg +1 -0
  14078. docsforge/themes/material/templates/.icons/simple/soundcharts.svg +1 -0
  14079. docsforge/themes/material/templates/.icons/simple/soundcloud.svg +1 -0
  14080. docsforge/themes/material/templates/.icons/simple/sourceengine.svg +1 -0
  14081. docsforge/themes/material/templates/.icons/simple/sourceforge.svg +1 -0
  14082. docsforge/themes/material/templates/.icons/simple/sourcehut.svg +1 -0
  14083. docsforge/themes/material/templates/.icons/simple/sourcetree.svg +1 -0
  14084. docsforge/themes/material/templates/.icons/simple/southwestairlines.svg +1 -0
  14085. docsforge/themes/material/templates/.icons/simple/spacemacs.svg +1 -0
  14086. docsforge/themes/material/templates/.icons/simple/spaceship.svg +1 -0
  14087. docsforge/themes/material/templates/.icons/simple/spacex.svg +1 -0
  14088. docsforge/themes/material/templates/.icons/simple/spacy.svg +1 -0
  14089. docsforge/themes/material/templates/.icons/simple/sparkar.svg +1 -0
  14090. docsforge/themes/material/templates/.icons/simple/sparkasse.svg +1 -0
  14091. docsforge/themes/material/templates/.icons/simple/sparkfun.svg +1 -0
  14092. docsforge/themes/material/templates/.icons/simple/sparkpost.svg +1 -0
  14093. docsforge/themes/material/templates/.icons/simple/spdx.svg +1 -0
  14094. docsforge/themes/material/templates/.icons/simple/speakerdeck.svg +1 -0
  14095. docsforge/themes/material/templates/.icons/simple/spectrum.svg +1 -0
  14096. docsforge/themes/material/templates/.icons/simple/speedtest.svg +1 -0
  14097. docsforge/themes/material/templates/.icons/simple/speedypage.svg +1 -0
  14098. docsforge/themes/material/templates/.icons/simple/sphinx.svg +1 -0
  14099. docsforge/themes/material/templates/.icons/simple/spigotmc.svg +1 -0
  14100. docsforge/themes/material/templates/.icons/simple/spine.svg +1 -0
  14101. docsforge/themes/material/templates/.icons/simple/spinnaker.svg +1 -0
  14102. docsforge/themes/material/templates/.icons/simple/splunk.svg +1 -0
  14103. docsforge/themes/material/templates/.icons/simple/spoj.svg +1 -0
  14104. docsforge/themes/material/templates/.icons/simple/spond.svg +1 -0
  14105. docsforge/themes/material/templates/.icons/simple/spotify.svg +1 -0
  14106. docsforge/themes/material/templates/.icons/simple/spotlight.svg +1 -0
  14107. docsforge/themes/material/templates/.icons/simple/spreadshirt.svg +1 -0
  14108. docsforge/themes/material/templates/.icons/simple/spreaker.svg +1 -0
  14109. docsforge/themes/material/templates/.icons/simple/spring.svg +1 -0
  14110. docsforge/themes/material/templates/.icons/simple/spring_creators.svg +1 -0
  14111. docsforge/themes/material/templates/.icons/simple/springboot.svg +1 -0
  14112. docsforge/themes/material/templates/.icons/simple/springsecurity.svg +1 -0
  14113. docsforge/themes/material/templates/.icons/simple/spyderide.svg +1 -0
  14114. docsforge/themes/material/templates/.icons/simple/sqlalchemy.svg +1 -0
  14115. docsforge/themes/material/templates/.icons/simple/sqlite.svg +1 -0
  14116. docsforge/themes/material/templates/.icons/simple/square.svg +1 -0
  14117. docsforge/themes/material/templates/.icons/simple/squareenix.svg +1 -0
  14118. docsforge/themes/material/templates/.icons/simple/squarespace.svg +1 -0
  14119. docsforge/themes/material/templates/.icons/simple/srgssr.svg +1 -0
  14120. docsforge/themes/material/templates/.icons/simple/ssrn.svg +1 -0
  14121. docsforge/themes/material/templates/.icons/simple/sst.svg +1 -0
  14122. docsforge/themes/material/templates/.icons/simple/stackbit.svg +1 -0
  14123. docsforge/themes/material/templates/.icons/simple/stackblitz.svg +1 -0
  14124. docsforge/themes/material/templates/.icons/simple/stackedit.svg +1 -0
  14125. docsforge/themes/material/templates/.icons/simple/stackexchange.svg +1 -0
  14126. docsforge/themes/material/templates/.icons/simple/stackhawk.svg +1 -0
  14127. docsforge/themes/material/templates/.icons/simple/stackoverflow.svg +1 -0
  14128. docsforge/themes/material/templates/.icons/simple/stackshare.svg +1 -0
  14129. docsforge/themes/material/templates/.icons/simple/stadia.svg +1 -0
  14130. docsforge/themes/material/templates/.icons/simple/staffbase.svg +1 -0
  14131. docsforge/themes/material/templates/.icons/simple/stagetimer.svg +1 -0
  14132. docsforge/themes/material/templates/.icons/simple/standardjs.svg +1 -0
  14133. docsforge/themes/material/templates/.icons/simple/standardresume.svg +1 -0
  14134. docsforge/themes/material/templates/.icons/simple/starbucks.svg +1 -0
  14135. docsforge/themes/material/templates/.icons/simple/stardock.svg +1 -0
  14136. docsforge/themes/material/templates/.icons/simple/starlingbank.svg +1 -0
  14137. docsforge/themes/material/templates/.icons/simple/starship.svg +1 -0
  14138. docsforge/themes/material/templates/.icons/simple/startdotgg.svg +1 -0
  14139. docsforge/themes/material/templates/.icons/simple/startpage.svg +1 -0
  14140. docsforge/themes/material/templates/.icons/simple/startrek.svg +1 -0
  14141. docsforge/themes/material/templates/.icons/simple/starz.svg +1 -0
  14142. docsforge/themes/material/templates/.icons/simple/statamic.svg +1 -0
  14143. docsforge/themes/material/templates/.icons/simple/statista.svg +1 -0
  14144. docsforge/themes/material/templates/.icons/simple/statuspage.svg +1 -0
  14145. docsforge/themes/material/templates/.icons/simple/statuspal.svg +1 -0
  14146. docsforge/themes/material/templates/.icons/simple/steam.svg +1 -0
  14147. docsforge/themes/material/templates/.icons/simple/steamdb.svg +1 -0
  14148. docsforge/themes/material/templates/.icons/simple/steamdeck.svg +1 -0
  14149. docsforge/themes/material/templates/.icons/simple/steamworks.svg +1 -0
  14150. docsforge/themes/material/templates/.icons/simple/steelseries.svg +1 -0
  14151. docsforge/themes/material/templates/.icons/simple/steem.svg +1 -0
  14152. docsforge/themes/material/templates/.icons/simple/steemit.svg +1 -0
  14153. docsforge/themes/material/templates/.icons/simple/steinberg.svg +1 -0
  14154. docsforge/themes/material/templates/.icons/simple/stellar.svg +1 -0
  14155. docsforge/themes/material/templates/.icons/simple/stencil.svg +1 -0
  14156. docsforge/themes/material/templates/.icons/simple/stencyl.svg +1 -0
  14157. docsforge/themes/material/templates/.icons/simple/stimulus.svg +1 -0
  14158. docsforge/themes/material/templates/.icons/simple/stmicroelectronics.svg +1 -0
  14159. docsforge/themes/material/templates/.icons/simple/stockx.svg +1 -0
  14160. docsforge/themes/material/templates/.icons/simple/stopstalk.svg +1 -0
  14161. docsforge/themes/material/templates/.icons/simple/storyblok.svg +1 -0
  14162. docsforge/themes/material/templates/.icons/simple/storybook.svg +1 -0
  14163. docsforge/themes/material/templates/.icons/simple/strapi.svg +1 -0
  14164. docsforge/themes/material/templates/.icons/simple/strava.svg +1 -0
  14165. docsforge/themes/material/templates/.icons/simple/streamlabs.svg +1 -0
  14166. docsforge/themes/material/templates/.icons/simple/streamlit.svg +1 -0
  14167. docsforge/themes/material/templates/.icons/simple/streamrunners.svg +1 -0
  14168. docsforge/themes/material/templates/.icons/simple/stremio.svg +1 -0
  14169. docsforge/themes/material/templates/.icons/simple/stripe.svg +1 -0
  14170. docsforge/themes/material/templates/.icons/simple/strongswan.svg +1 -0
  14171. docsforge/themes/material/templates/.icons/simple/stryker.svg +1 -0
  14172. docsforge/themes/material/templates/.icons/simple/stubhub.svg +1 -0
  14173. docsforge/themes/material/templates/.icons/simple/studio3t.svg +1 -0
  14174. docsforge/themes/material/templates/.icons/simple/styledcomponents.svg +1 -0
  14175. docsforge/themes/material/templates/.icons/simple/stylelint.svg +1 -0
  14176. docsforge/themes/material/templates/.icons/simple/styleshare.svg +1 -0
  14177. docsforge/themes/material/templates/.icons/simple/stylus.svg +1 -0
  14178. docsforge/themes/material/templates/.icons/simple/subaru.svg +1 -0
  14179. docsforge/themes/material/templates/.icons/simple/sublimetext.svg +1 -0
  14180. docsforge/themes/material/templates/.icons/simple/substack.svg +1 -0
  14181. docsforge/themes/material/templates/.icons/simple/subtitleedit.svg +1 -0
  14182. docsforge/themes/material/templates/.icons/simple/subversion.svg +1 -0
  14183. docsforge/themes/material/templates/.icons/simple/suckless.svg +1 -0
  14184. docsforge/themes/material/templates/.icons/simple/sui.svg +1 -0
  14185. docsforge/themes/material/templates/.icons/simple/suitest.svg +1 -0
  14186. docsforge/themes/material/templates/.icons/simple/sumologic.svg +1 -0
  14187. docsforge/themes/material/templates/.icons/simple/suno.svg +1 -0
  14188. docsforge/themes/material/templates/.icons/simple/sunrise.svg +1 -0
  14189. docsforge/themes/material/templates/.icons/simple/supabase.svg +1 -0
  14190. docsforge/themes/material/templates/.icons/simple/supercrease.svg +1 -0
  14191. docsforge/themes/material/templates/.icons/simple/supermicro.svg +1 -0
  14192. docsforge/themes/material/templates/.icons/simple/superuser.svg +1 -0
  14193. docsforge/themes/material/templates/.icons/simple/surfshark.svg +1 -0
  14194. docsforge/themes/material/templates/.icons/simple/surrealdb.svg +1 -0
  14195. docsforge/themes/material/templates/.icons/simple/surveymonkey.svg +1 -0
  14196. docsforge/themes/material/templates/.icons/simple/suse.svg +1 -0
  14197. docsforge/themes/material/templates/.icons/simple/suzuki.svg +1 -0
  14198. docsforge/themes/material/templates/.icons/simple/svelte.svg +1 -0
  14199. docsforge/themes/material/templates/.icons/simple/svg.svg +1 -0
  14200. docsforge/themes/material/templates/.icons/simple/svgdotjs.svg +1 -0
  14201. docsforge/themes/material/templates/.icons/simple/svgo.svg +1 -0
  14202. docsforge/themes/material/templates/.icons/simple/svgtrace.svg +1 -0
  14203. docsforge/themes/material/templates/.icons/simple/swagger.svg +1 -0
  14204. docsforge/themes/material/templates/.icons/simple/swarm.svg +1 -0
  14205. docsforge/themes/material/templates/.icons/simple/sway.svg +1 -0
  14206. docsforge/themes/material/templates/.icons/simple/swc.svg +1 -0
  14207. docsforge/themes/material/templates/.icons/simple/swift.svg +1 -0
  14208. docsforge/themes/material/templates/.icons/simple/swiggy.svg +1 -0
  14209. docsforge/themes/material/templates/.icons/simple/swiper.svg +1 -0
  14210. docsforge/themes/material/templates/.icons/simple/swisscows.svg +1 -0
  14211. docsforge/themes/material/templates/.icons/simple/swr.svg +1 -0
  14212. docsforge/themes/material/templates/.icons/simple/symantec.svg +1 -0
  14213. docsforge/themes/material/templates/.icons/simple/symbolab.svg +1 -0
  14214. docsforge/themes/material/templates/.icons/simple/symfony.svg +1 -0
  14215. docsforge/themes/material/templates/.icons/simple/symphony.svg +1 -0
  14216. docsforge/themes/material/templates/.icons/simple/sympy.svg +1 -0
  14217. docsforge/themes/material/templates/.icons/simple/syncthing.svg +1 -0
  14218. docsforge/themes/material/templates/.icons/simple/synology.svg +1 -0
  14219. docsforge/themes/material/templates/.icons/simple/system76.svg +1 -0
  14220. docsforge/themes/material/templates/.icons/simple/tabelog.svg +1 -0
  14221. docsforge/themes/material/templates/.icons/simple/tablecheck.svg +1 -0
  14222. docsforge/themes/material/templates/.icons/simple/tacobell.svg +1 -0
  14223. docsforge/themes/material/templates/.icons/simple/tado.svg +1 -0
  14224. docsforge/themes/material/templates/.icons/simple/taichigraphics.svg +1 -0
  14225. docsforge/themes/material/templates/.icons/simple/taichilang.svg +1 -0
  14226. docsforge/themes/material/templates/.icons/simple/tails.svg +1 -0
  14227. docsforge/themes/material/templates/.icons/simple/tailscale.svg +1 -0
  14228. docsforge/themes/material/templates/.icons/simple/tailwindcss.svg +1 -0
  14229. docsforge/themes/material/templates/.icons/simple/taipy.svg +1 -0
  14230. docsforge/themes/material/templates/.icons/simple/taketwointeractivesoftware.svg +1 -0
  14231. docsforge/themes/material/templates/.icons/simple/talend.svg +1 -0
  14232. docsforge/themes/material/templates/.icons/simple/talenthouse.svg +1 -0
  14233. docsforge/themes/material/templates/.icons/simple/talos.svg +1 -0
  14234. docsforge/themes/material/templates/.icons/simple/tamiya.svg +1 -0
  14235. docsforge/themes/material/templates/.icons/simple/tampermonkey.svg +1 -0
  14236. docsforge/themes/material/templates/.icons/simple/tanstack.svg +1 -0
  14237. docsforge/themes/material/templates/.icons/simple/taobao.svg +1 -0
  14238. docsforge/themes/material/templates/.icons/simple/tapas.svg +1 -0
  14239. docsforge/themes/material/templates/.icons/simple/target.svg +1 -0
  14240. docsforge/themes/material/templates/.icons/simple/tarom.svg +1 -0
  14241. docsforge/themes/material/templates/.icons/simple/task.svg +1 -0
  14242. docsforge/themes/material/templates/.icons/simple/tasmota.svg +1 -0
  14243. docsforge/themes/material/templates/.icons/simple/tata.svg +1 -0
  14244. docsforge/themes/material/templates/.icons/simple/tauri.svg +1 -0
  14245. docsforge/themes/material/templates/.icons/simple/taxbuzz.svg +1 -0
  14246. docsforge/themes/material/templates/.icons/simple/tcs.svg +1 -0
  14247. docsforge/themes/material/templates/.icons/simple/teal.svg +1 -0
  14248. docsforge/themes/material/templates/.icons/simple/teamcity.svg +1 -0
  14249. docsforge/themes/material/templates/.icons/simple/teamspeak.svg +1 -0
  14250. docsforge/themes/material/templates/.icons/simple/teamviewer.svg +1 -0
  14251. docsforge/themes/material/templates/.icons/simple/techcrunch.svg +1 -0
  14252. docsforge/themes/material/templates/.icons/simple/ted.svg +1 -0
  14253. docsforge/themes/material/templates/.icons/simple/teepublic.svg +1 -0
  14254. docsforge/themes/material/templates/.icons/simple/teespring.svg +1 -0
  14255. docsforge/themes/material/templates/.icons/simple/tekton.svg +1 -0
  14256. docsforge/themes/material/templates/.icons/simple/tele5.svg +1 -0
  14257. docsforge/themes/material/templates/.icons/simple/telefonica.svg +1 -0
  14258. docsforge/themes/material/templates/.icons/simple/telegram.svg +1 -0
  14259. docsforge/themes/material/templates/.icons/simple/telegraph.svg +1 -0
  14260. docsforge/themes/material/templates/.icons/simple/telenor.svg +1 -0
  14261. docsforge/themes/material/templates/.icons/simple/telequebec.svg +1 -0
  14262. docsforge/themes/material/templates/.icons/simple/temporal.svg +1 -0
  14263. docsforge/themes/material/templates/.icons/simple/tensorflow.svg +1 -0
  14264. docsforge/themes/material/templates/.icons/simple/teradata.svg +1 -0
  14265. docsforge/themes/material/templates/.icons/simple/teratail.svg +1 -0
  14266. docsforge/themes/material/templates/.icons/simple/termius.svg +1 -0
  14267. docsforge/themes/material/templates/.icons/simple/terraform.svg +1 -0
  14268. docsforge/themes/material/templates/.icons/simple/tesco.svg +1 -0
  14269. docsforge/themes/material/templates/.icons/simple/tesla.svg +1 -0
  14270. docsforge/themes/material/templates/.icons/simple/testcafe.svg +1 -0
  14271. docsforge/themes/material/templates/.icons/simple/testin.svg +1 -0
  14272. docsforge/themes/material/templates/.icons/simple/testinglibrary.svg +1 -0
  14273. docsforge/themes/material/templates/.icons/simple/testrail.svg +1 -0
  14274. docsforge/themes/material/templates/.icons/simple/tether.svg +1 -0
  14275. docsforge/themes/material/templates/.icons/simple/textpattern.svg +1 -0
  14276. docsforge/themes/material/templates/.icons/simple/textual.svg +1 -0
  14277. docsforge/themes/material/templates/.icons/simple/tga.svg +1 -0
  14278. docsforge/themes/material/templates/.icons/simple/thangs.svg +1 -0
  14279. docsforge/themes/material/templates/.icons/simple/thanos.svg +1 -0
  14280. docsforge/themes/material/templates/.icons/simple/thealgorithms.svg +1 -0
  14281. docsforge/themes/material/templates/.icons/simple/theboringcompany.svg +1 -0
  14282. docsforge/themes/material/templates/.icons/simple/theconversation.svg +1 -0
  14283. docsforge/themes/material/templates/.icons/simple/thefinals.svg +1 -0
  14284. docsforge/themes/material/templates/.icons/simple/theguardian.svg +1 -0
  14285. docsforge/themes/material/templates/.icons/simple/theirishtimes.svg +1 -0
  14286. docsforge/themes/material/templates/.icons/simple/themighty.svg +1 -0
  14287. docsforge/themes/material/templates/.icons/simple/themodelsresource.svg +1 -0
  14288. docsforge/themes/material/templates/.icons/simple/themoviedatabase.svg +1 -0
  14289. docsforge/themes/material/templates/.icons/simple/thenorthface.svg +1 -0
  14290. docsforge/themes/material/templates/.icons/simple/theodinproject.svg +1 -0
  14291. docsforge/themes/material/templates/.icons/simple/theplanetarysociety.svg +1 -0
  14292. docsforge/themes/material/templates/.icons/simple/theregister.svg +1 -0
  14293. docsforge/themes/material/templates/.icons/simple/thesoundsresource.svg +1 -0
  14294. docsforge/themes/material/templates/.icons/simple/thespritersresource.svg +1 -0
  14295. docsforge/themes/material/templates/.icons/simple/thestorygraph.svg +1 -0
  14296. docsforge/themes/material/templates/.icons/simple/thewashingtonpost.svg +1 -0
  14297. docsforge/themes/material/templates/.icons/simple/theweatherchannel.svg +1 -0
  14298. docsforge/themes/material/templates/.icons/simple/thingiverse.svg +1 -0
  14299. docsforge/themes/material/templates/.icons/simple/thinkpad.svg +1 -0
  14300. docsforge/themes/material/templates/.icons/simple/thirdweb.svg +1 -0
  14301. docsforge/themes/material/templates/.icons/simple/threadless.svg +1 -0
  14302. docsforge/themes/material/templates/.icons/simple/threads.svg +1 -0
  14303. docsforge/themes/material/templates/.icons/simple/threedotjs.svg +1 -0
  14304. docsforge/themes/material/templates/.icons/simple/threema.svg +1 -0
  14305. docsforge/themes/material/templates/.icons/simple/thumbtack.svg +1 -0
  14306. docsforge/themes/material/templates/.icons/simple/thunderbird.svg +1 -0
  14307. docsforge/themes/material/templates/.icons/simple/thunderstore.svg +1 -0
  14308. docsforge/themes/material/templates/.icons/simple/thurgauerkantonalbank.svg +1 -0
  14309. docsforge/themes/material/templates/.icons/simple/thymeleaf.svg +1 -0
  14310. docsforge/themes/material/templates/.icons/simple/ticketmaster.svg +1 -0
  14311. docsforge/themes/material/templates/.icons/simple/ticktick.svg +1 -0
  14312. docsforge/themes/material/templates/.icons/simple/tidal.svg +1 -0
  14313. docsforge/themes/material/templates/.icons/simple/tiddlywiki.svg +1 -0
  14314. docsforge/themes/material/templates/.icons/simple/tide.svg +1 -0
  14315. docsforge/themes/material/templates/.icons/simple/tidyverse.svg +1 -0
  14316. docsforge/themes/material/templates/.icons/simple/tietoevry.svg +1 -0
  14317. docsforge/themes/material/templates/.icons/simple/tiktok.svg +1 -0
  14318. docsforge/themes/material/templates/.icons/simple/tildapublishing.svg +1 -0
  14319. docsforge/themes/material/templates/.icons/simple/tile.svg +1 -0
  14320. docsforge/themes/material/templates/.icons/simple/timescale.svg +1 -0
  14321. docsforge/themes/material/templates/.icons/simple/tina.svg +1 -0
  14322. docsforge/themes/material/templates/.icons/simple/tinder.svg +1 -0
  14323. docsforge/themes/material/templates/.icons/simple/tindie.svg +1 -0
  14324. docsforge/themes/material/templates/.icons/simple/tinkercad.svg +1 -0
  14325. docsforge/themes/material/templates/.icons/simple/tinygrad.svg +1 -0
  14326. docsforge/themes/material/templates/.icons/simple/tinyletter.svg +1 -0
  14327. docsforge/themes/material/templates/.icons/simple/tistory.svg +1 -0
  14328. docsforge/themes/material/templates/.icons/simple/tldraw.svg +1 -0
  14329. docsforge/themes/material/templates/.icons/simple/tmux.svg +1 -0
  14330. docsforge/themes/material/templates/.icons/simple/todoist.svg +1 -0
  14331. docsforge/themes/material/templates/.icons/simple/toggl.svg +1 -0
  14332. docsforge/themes/material/templates/.icons/simple/toggltrack.svg +1 -0
  14333. docsforge/themes/material/templates/.icons/simple/tokio.svg +1 -0
  14334. docsforge/themes/material/templates/.icons/simple/tokyometro.svg +1 -0
  14335. docsforge/themes/material/templates/.icons/simple/toll.svg +1 -0
  14336. docsforge/themes/material/templates/.icons/simple/toml.svg +1 -0
  14337. docsforge/themes/material/templates/.icons/simple/tomorrowland.svg +1 -0
  14338. docsforge/themes/material/templates/.icons/simple/tomtom.svg +1 -0
  14339. docsforge/themes/material/templates/.icons/simple/ton.svg +1 -0
  14340. docsforge/themes/material/templates/.icons/simple/topcoder.svg +1 -0
  14341. docsforge/themes/material/templates/.icons/simple/topdotgg.svg +1 -0
  14342. docsforge/themes/material/templates/.icons/simple/toptal.svg +1 -0
  14343. docsforge/themes/material/templates/.icons/simple/torbrowser.svg +1 -0
  14344. docsforge/themes/material/templates/.icons/simple/torizon.svg +1 -0
  14345. docsforge/themes/material/templates/.icons/simple/torproject.svg +1 -0
  14346. docsforge/themes/material/templates/.icons/simple/toshiba.svg +1 -0
  14347. docsforge/themes/material/templates/.icons/simple/totvs.svg +1 -0
  14348. docsforge/themes/material/templates/.icons/simple/tourbox.svg +1 -0
  14349. docsforge/themes/material/templates/.icons/simple/tower.svg +1 -0
  14350. docsforge/themes/material/templates/.icons/simple/toyota.svg +1 -0
  14351. docsforge/themes/material/templates/.icons/simple/tplink.svg +1 -0
  14352. docsforge/themes/material/templates/.icons/simple/tqdm.svg +1 -0
  14353. docsforge/themes/material/templates/.icons/simple/traccar.svg +1 -0
  14354. docsforge/themes/material/templates/.icons/simple/tradingview.svg +1 -0
  14355. docsforge/themes/material/templates/.icons/simple/traefikmesh.svg +1 -0
  14356. docsforge/themes/material/templates/.icons/simple/traefikproxy.svg +1 -0
  14357. docsforge/themes/material/templates/.icons/simple/trailforks.svg +1 -0
  14358. docsforge/themes/material/templates/.icons/simple/trainerroad.svg +1 -0
  14359. docsforge/themes/material/templates/.icons/simple/trakt.svg +1 -0
  14360. docsforge/themes/material/templates/.icons/simple/transifex.svg +1 -0
  14361. docsforge/themes/material/templates/.icons/simple/transmission.svg +1 -0
  14362. docsforge/themes/material/templates/.icons/simple/transportforireland.svg +1 -0
  14363. docsforge/themes/material/templates/.icons/simple/transportforlondon.svg +1 -0
  14364. docsforge/themes/material/templates/.icons/simple/travisci.svg +1 -0
  14365. docsforge/themes/material/templates/.icons/simple/treehouse.svg +1 -0
  14366. docsforge/themes/material/templates/.icons/simple/trello.svg +1 -0
  14367. docsforge/themes/material/templates/.icons/simple/trendmicro.svg +1 -0
  14368. docsforge/themes/material/templates/.icons/simple/tresorit.svg +1 -0
  14369. docsforge/themes/material/templates/.icons/simple/treyarch.svg +1 -0
  14370. docsforge/themes/material/templates/.icons/simple/tricentis.svg +1 -0
  14371. docsforge/themes/material/templates/.icons/simple/trilium.svg +1 -0
  14372. docsforge/themes/material/templates/.icons/simple/triller.svg +1 -0
  14373. docsforge/themes/material/templates/.icons/simple/trillertv.svg +1 -0
  14374. docsforge/themes/material/templates/.icons/simple/trimble.svg +1 -0
  14375. docsforge/themes/material/templates/.icons/simple/trino.svg +1 -0
  14376. docsforge/themes/material/templates/.icons/simple/tripadvisor.svg +1 -0
  14377. docsforge/themes/material/templates/.icons/simple/tripdotcom.svg +1 -0
  14378. docsforge/themes/material/templates/.icons/simple/trivago.svg +1 -0
  14379. docsforge/themes/material/templates/.icons/simple/trivy.svg +1 -0
  14380. docsforge/themes/material/templates/.icons/simple/trove.svg +1 -0
  14381. docsforge/themes/material/templates/.icons/simple/trpc.svg +1 -0
  14382. docsforge/themes/material/templates/.icons/simple/truenas.svg +1 -0
  14383. docsforge/themes/material/templates/.icons/simple/trueup.svg +1 -0
  14384. docsforge/themes/material/templates/.icons/simple/trulia.svg +1 -0
  14385. docsforge/themes/material/templates/.icons/simple/trustedshops.svg +1 -0
  14386. docsforge/themes/material/templates/.icons/simple/trustpilot.svg +1 -0
  14387. docsforge/themes/material/templates/.icons/simple/tryhackme.svg +1 -0
  14388. docsforge/themes/material/templates/.icons/simple/tryitonline.svg +1 -0
  14389. docsforge/themes/material/templates/.icons/simple/tsnode.svg +1 -0
  14390. docsforge/themes/material/templates/.icons/simple/tubi.svg +1 -0
  14391. docsforge/themes/material/templates/.icons/simple/tui.svg +1 -0
  14392. docsforge/themes/material/templates/.icons/simple/tumblr.svg +1 -0
  14393. docsforge/themes/material/templates/.icons/simple/turbo.svg +1 -0
  14394. docsforge/themes/material/templates/.icons/simple/turborepo.svg +1 -0
  14395. docsforge/themes/material/templates/.icons/simple/turbosquid.svg +1 -0
  14396. docsforge/themes/material/templates/.icons/simple/turkishairlines.svg +1 -0
  14397. docsforge/themes/material/templates/.icons/simple/turso.svg +1 -0
  14398. docsforge/themes/material/templates/.icons/simple/tuta.svg +1 -0
  14399. docsforge/themes/material/templates/.icons/simple/tuxedocomputers.svg +1 -0
  14400. docsforge/themes/material/templates/.icons/simple/tv4play.svg +1 -0
  14401. docsforge/themes/material/templates/.icons/simple/tvtime.svg +1 -0
  14402. docsforge/themes/material/templates/.icons/simple/twenty.svg +1 -0
  14403. docsforge/themes/material/templates/.icons/simple/twinkly.svg +1 -0
  14404. docsforge/themes/material/templates/.icons/simple/twinmotion.svg +1 -0
  14405. docsforge/themes/material/templates/.icons/simple/twitch.svg +1 -0
  14406. docsforge/themes/material/templates/.icons/simple/typeform.svg +1 -0
  14407. docsforge/themes/material/templates/.icons/simple/typeorm.svg +1 -0
  14408. docsforge/themes/material/templates/.icons/simple/typer.svg +1 -0
  14409. docsforge/themes/material/templates/.icons/simple/typescript.svg +1 -0
  14410. docsforge/themes/material/templates/.icons/simple/typo3.svg +1 -0
  14411. docsforge/themes/material/templates/.icons/simple/typst.svg +1 -0
  14412. docsforge/themes/material/templates/.icons/simple/uber.svg +1 -0
  14413. docsforge/themes/material/templates/.icons/simple/ubereats.svg +1 -0
  14414. docsforge/themes/material/templates/.icons/simple/ubiquiti.svg +1 -0
  14415. docsforge/themes/material/templates/.icons/simple/ubisoft.svg +1 -0
  14416. docsforge/themes/material/templates/.icons/simple/ublockorigin.svg +1 -0
  14417. docsforge/themes/material/templates/.icons/simple/ubuntu.svg +1 -0
  14418. docsforge/themes/material/templates/.icons/simple/ubuntumate.svg +1 -0
  14419. docsforge/themes/material/templates/.icons/simple/udacity.svg +1 -0
  14420. docsforge/themes/material/templates/.icons/simple/udemy.svg +1 -0
  14421. docsforge/themes/material/templates/.icons/simple/udotsdotnews.svg +1 -0
  14422. docsforge/themes/material/templates/.icons/simple/ufc.svg +1 -0
  14423. docsforge/themes/material/templates/.icons/simple/uikit.svg +1 -0
  14424. docsforge/themes/material/templates/.icons/simple/uipath.svg +1 -0
  14425. docsforge/themes/material/templates/.icons/simple/ukca.svg +1 -0
  14426. docsforge/themes/material/templates/.icons/simple/ultralytics.svg +1 -0
  14427. docsforge/themes/material/templates/.icons/simple/ulule.svg +1 -0
  14428. docsforge/themes/material/templates/.icons/simple/umami.svg +1 -0
  14429. docsforge/themes/material/templates/.icons/simple/umbraco.svg +1 -0
  14430. docsforge/themes/material/templates/.icons/simple/umbrel.svg +1 -0
  14431. docsforge/themes/material/templates/.icons/simple/uml.svg +1 -0
  14432. docsforge/themes/material/templates/.icons/simple/unacademy.svg +1 -0
  14433. docsforge/themes/material/templates/.icons/simple/underarmour.svg +1 -0
  14434. docsforge/themes/material/templates/.icons/simple/underscoredotjs.svg +1 -0
  14435. docsforge/themes/material/templates/.icons/simple/undertale.svg +1 -0
  14436. docsforge/themes/material/templates/.icons/simple/unicode.svg +1 -0
  14437. docsforge/themes/material/templates/.icons/simple/unilever.svg +1 -0
  14438. docsforge/themes/material/templates/.icons/simple/uniqlo.svg +1 -0
  14439. docsforge/themes/material/templates/.icons/simple/uniqlo_ja.svg +1 -0
  14440. docsforge/themes/material/templates/.icons/simple/unitedairlines.svg +1 -0
  14441. docsforge/themes/material/templates/.icons/simple/unitednations.svg +1 -0
  14442. docsforge/themes/material/templates/.icons/simple/unity.svg +1 -0
  14443. docsforge/themes/material/templates/.icons/simple/unjs.svg +1 -0
  14444. docsforge/themes/material/templates/.icons/simple/unlicense.svg +1 -0
  14445. docsforge/themes/material/templates/.icons/simple/unocss.svg +1 -0
  14446. docsforge/themes/material/templates/.icons/simple/unpkg.svg +1 -0
  14447. docsforge/themes/material/templates/.icons/simple/unraid.svg +1 -0
  14448. docsforge/themes/material/templates/.icons/simple/unrealengine.svg +1 -0
  14449. docsforge/themes/material/templates/.icons/simple/unsplash.svg +1 -0
  14450. docsforge/themes/material/templates/.icons/simple/unstop.svg +1 -0
  14451. docsforge/themes/material/templates/.icons/simple/untappd.svg +1 -0
  14452. docsforge/themes/material/templates/.icons/simple/upcloud.svg +1 -0
  14453. docsforge/themes/material/templates/.icons/simple/uphold.svg +1 -0
  14454. docsforge/themes/material/templates/.icons/simple/uplabs.svg +1 -0
  14455. docsforge/themes/material/templates/.icons/simple/upptime.svg +1 -0
  14456. docsforge/themes/material/templates/.icons/simple/ups.svg +1 -0
  14457. docsforge/themes/material/templates/.icons/simple/upstash.svg +1 -0
  14458. docsforge/themes/material/templates/.icons/simple/uptimekuma.svg +1 -0
  14459. docsforge/themes/material/templates/.icons/simple/upwork.svg +1 -0
  14460. docsforge/themes/material/templates/.icons/simple/uservoice.svg +1 -0
  14461. docsforge/themes/material/templates/.icons/simple/usps.svg +1 -0
  14462. docsforge/themes/material/templates/.icons/simple/utorrent.svg +1 -0
  14463. docsforge/themes/material/templates/.icons/simple/uv.svg +1 -0
  14464. docsforge/themes/material/templates/.icons/simple/v.svg +1 -0
  14465. docsforge/themes/material/templates/.icons/simple/v0.svg +1 -0
  14466. docsforge/themes/material/templates/.icons/simple/v2ex.svg +1 -0
  14467. docsforge/themes/material/templates/.icons/simple/v8.svg +1 -0
  14468. docsforge/themes/material/templates/.icons/simple/vaadin.svg +1 -0
  14469. docsforge/themes/material/templates/.icons/simple/vagrant.svg +1 -0
  14470. docsforge/themes/material/templates/.icons/simple/vala.svg +1 -0
  14471. docsforge/themes/material/templates/.icons/simple/valorant.svg +1 -0
  14472. docsforge/themes/material/templates/.icons/simple/valve.svg +1 -0
  14473. docsforge/themes/material/templates/.icons/simple/vanillaextract.svg +1 -0
  14474. docsforge/themes/material/templates/.icons/simple/vapor.svg +1 -0
  14475. docsforge/themes/material/templates/.icons/simple/vault.svg +1 -0
  14476. docsforge/themes/material/templates/.icons/simple/vaultwarden.svg +1 -0
  14477. docsforge/themes/material/templates/.icons/simple/vauxhall.svg +1 -0
  14478. docsforge/themes/material/templates/.icons/simple/vbulletin.svg +1 -0
  14479. docsforge/themes/material/templates/.icons/simple/vectary.svg +1 -0
  14480. docsforge/themes/material/templates/.icons/simple/vectorlogozone.svg +1 -0
  14481. docsforge/themes/material/templates/.icons/simple/vectorworks.svg +1 -0
  14482. docsforge/themes/material/templates/.icons/simple/veeam.svg +1 -0
  14483. docsforge/themes/material/templates/.icons/simple/veed.svg +1 -0
  14484. docsforge/themes/material/templates/.icons/simple/veepee.svg +1 -0
  14485. docsforge/themes/material/templates/.icons/simple/vega.svg +1 -0
  14486. docsforge/themes/material/templates/.icons/simple/vegas.svg +1 -0
  14487. docsforge/themes/material/templates/.icons/simple/velocity.svg +1 -0
  14488. docsforge/themes/material/templates/.icons/simple/velog.svg +1 -0
  14489. docsforge/themes/material/templates/.icons/simple/vencord.svg +1 -0
  14490. docsforge/themes/material/templates/.icons/simple/venmo.svg +1 -0
  14491. docsforge/themes/material/templates/.icons/simple/vercel.svg +1 -0
  14492. docsforge/themes/material/templates/.icons/simple/verdaccio.svg +1 -0
  14493. docsforge/themes/material/templates/.icons/simple/veritas.svg +1 -0
  14494. docsforge/themes/material/templates/.icons/simple/verizon.svg +1 -0
  14495. docsforge/themes/material/templates/.icons/simple/vespa.svg +1 -0
  14496. docsforge/themes/material/templates/.icons/simple/vestel.svg +1 -0
  14497. docsforge/themes/material/templates/.icons/simple/vexxhost.svg +1 -0
  14498. docsforge/themes/material/templates/.icons/simple/vfairs.svg +1 -0
  14499. docsforge/themes/material/templates/.icons/simple/viadeo.svg +1 -0
  14500. docsforge/themes/material/templates/.icons/simple/viaplay.svg +1 -0
  14501. docsforge/themes/material/templates/.icons/simple/viber.svg +1 -0
  14502. docsforge/themes/material/templates/.icons/simple/viblo.svg +1 -0
  14503. docsforge/themes/material/templates/.icons/simple/victoriametrics.svg +1 -0
  14504. docsforge/themes/material/templates/.icons/simple/victronenergy.svg +1 -0
  14505. docsforge/themes/material/templates/.icons/simple/vikunja.svg +1 -0
  14506. docsforge/themes/material/templates/.icons/simple/vim.svg +1 -0
  14507. docsforge/themes/material/templates/.icons/simple/vimeo.svg +1 -0
  14508. docsforge/themes/material/templates/.icons/simple/vimeolivestream.svg +1 -0
  14509. docsforge/themes/material/templates/.icons/simple/vinted.svg +1 -0
  14510. docsforge/themes/material/templates/.icons/simple/virgin.svg +1 -0
  14511. docsforge/themes/material/templates/.icons/simple/virginatlantic.svg +1 -0
  14512. docsforge/themes/material/templates/.icons/simple/virginmedia.svg +1 -0
  14513. docsforge/themes/material/templates/.icons/simple/virtualbox.svg +1 -0
  14514. docsforge/themes/material/templates/.icons/simple/virustotal.svg +1 -0
  14515. docsforge/themes/material/templates/.icons/simple/visa.svg +1 -0
  14516. docsforge/themes/material/templates/.icons/simple/visualparadigm.svg +1 -0
  14517. docsforge/themes/material/templates/.icons/simple/visx.svg +1 -0
  14518. docsforge/themes/material/templates/.icons/simple/vite.svg +1 -0
  14519. docsforge/themes/material/templates/.icons/simple/vitepress.svg +1 -0
  14520. docsforge/themes/material/templates/.icons/simple/vitess.svg +1 -0
  14521. docsforge/themes/material/templates/.icons/simple/vitest.svg +1 -0
  14522. docsforge/themes/material/templates/.icons/simple/vivaldi.svg +1 -0
  14523. docsforge/themes/material/templates/.icons/simple/vivawallet.svg +1 -0
  14524. docsforge/themes/material/templates/.icons/simple/vivino.svg +1 -0
  14525. docsforge/themes/material/templates/.icons/simple/vivint.svg +1 -0
  14526. docsforge/themes/material/templates/.icons/simple/vivo.svg +1 -0
  14527. docsforge/themes/material/templates/.icons/simple/vk.svg +1 -0
  14528. docsforge/themes/material/templates/.icons/simple/vlcmediaplayer.svg +1 -0
  14529. docsforge/themes/material/templates/.icons/simple/vmware.svg +1 -0
  14530. docsforge/themes/material/templates/.icons/simple/vodafone.svg +1 -0
  14531. docsforge/themes/material/templates/.icons/simple/voelkner.svg +1 -0
  14532. docsforge/themes/material/templates/.icons/simple/voidlinux.svg +1 -0
  14533. docsforge/themes/material/templates/.icons/simple/voipdotms.svg +1 -0
  14534. docsforge/themes/material/templates/.icons/simple/volkswagen.svg +1 -0
  14535. docsforge/themes/material/templates/.icons/simple/volvo.svg +1 -0
  14536. docsforge/themes/material/templates/.icons/simple/vonage.svg +1 -0
  14537. docsforge/themes/material/templates/.icons/simple/vorondesign.svg +1 -0
  14538. docsforge/themes/material/templates/.icons/simple/vowpalwabbit.svg +1 -0
  14539. docsforge/themes/material/templates/.icons/simple/vox.svg +1 -0
  14540. docsforge/themes/material/templates/.icons/simple/vrchat.svg +1 -0
  14541. docsforge/themes/material/templates/.icons/simple/vsco.svg +1 -0
  14542. docsforge/themes/material/templates/.icons/simple/vscodium.svg +1 -0
  14543. docsforge/themes/material/templates/.icons/simple/vtex.svg +1 -0
  14544. docsforge/themes/material/templates/.icons/simple/vuedotjs.svg +1 -0
  14545. docsforge/themes/material/templates/.icons/simple/vuetify.svg +1 -0
  14546. docsforge/themes/material/templates/.icons/simple/vueuse.svg +1 -0
  14547. docsforge/themes/material/templates/.icons/simple/vulkan.svg +1 -0
  14548. docsforge/themes/material/templates/.icons/simple/vultr.svg +1 -0
  14549. docsforge/themes/material/templates/.icons/simple/vyond.svg +1 -0
  14550. docsforge/themes/material/templates/.icons/simple/w3schools.svg +1 -0
  14551. docsforge/themes/material/templates/.icons/simple/wacom.svg +1 -0
  14552. docsforge/themes/material/templates/.icons/simple/wagmi.svg +1 -0
  14553. docsforge/themes/material/templates/.icons/simple/wagtail.svg +1 -0
  14554. docsforge/themes/material/templates/.icons/simple/wails.svg +1 -0
  14555. docsforge/themes/material/templates/.icons/simple/wakatime.svg +1 -0
  14556. docsforge/themes/material/templates/.icons/simple/walkman.svg +1 -0
  14557. docsforge/themes/material/templates/.icons/simple/wallabag.svg +1 -0
  14558. docsforge/themes/material/templates/.icons/simple/walletconnect.svg +1 -0
  14559. docsforge/themes/material/templates/.icons/simple/wantedly.svg +1 -0
  14560. docsforge/themes/material/templates/.icons/simple/wappalyzer.svg +1 -0
  14561. docsforge/themes/material/templates/.icons/simple/warp.svg +1 -0
  14562. docsforge/themes/material/templates/.icons/simple/wasabi.svg +1 -0
  14563. docsforge/themes/material/templates/.icons/simple/wasmcloud.svg +1 -0
  14564. docsforge/themes/material/templates/.icons/simple/wasmer.svg +1 -0
  14565. docsforge/themes/material/templates/.icons/simple/watchtower.svg +1 -0
  14566. docsforge/themes/material/templates/.icons/simple/wattpad.svg +1 -0
  14567. docsforge/themes/material/templates/.icons/simple/wayland.svg +1 -0
  14568. docsforge/themes/material/templates/.icons/simple/waze.svg +1 -0
  14569. docsforge/themes/material/templates/.icons/simple/wazirx.svg +1 -0
  14570. docsforge/themes/material/templates/.icons/simple/wearos.svg +1 -0
  14571. docsforge/themes/material/templates/.icons/simple/weasyl.svg +1 -0
  14572. docsforge/themes/material/templates/.icons/simple/web3dotjs.svg +1 -0
  14573. docsforge/themes/material/templates/.icons/simple/webassembly.svg +1 -0
  14574. docsforge/themes/material/templates/.icons/simple/webauthn.svg +1 -0
  14575. docsforge/themes/material/templates/.icons/simple/webawesome.svg +1 -0
  14576. docsforge/themes/material/templates/.icons/simple/webcomponentsdotorg.svg +1 -0
  14577. docsforge/themes/material/templates/.icons/simple/webdotde.svg +1 -0
  14578. docsforge/themes/material/templates/.icons/simple/webdriverio.svg +1 -0
  14579. docsforge/themes/material/templates/.icons/simple/webex.svg +1 -0
  14580. docsforge/themes/material/templates/.icons/simple/webflow.svg +1 -0
  14581. docsforge/themes/material/templates/.icons/simple/webgl.svg +1 -0
  14582. docsforge/themes/material/templates/.icons/simple/webgpu.svg +1 -0
  14583. docsforge/themes/material/templates/.icons/simple/weblate.svg +1 -0
  14584. docsforge/themes/material/templates/.icons/simple/webmin.svg +1 -0
  14585. docsforge/themes/material/templates/.icons/simple/webmoney.svg +1 -0
  14586. docsforge/themes/material/templates/.icons/simple/webpack.svg +1 -0
  14587. docsforge/themes/material/templates/.icons/simple/webrtc.svg +1 -0
  14588. docsforge/themes/material/templates/.icons/simple/webstorm.svg +1 -0
  14589. docsforge/themes/material/templates/.icons/simple/webtoon.svg +1 -0
  14590. docsforge/themes/material/templates/.icons/simple/webtrees.svg +1 -0
  14591. docsforge/themes/material/templates/.icons/simple/wechat.svg +1 -0
  14592. docsforge/themes/material/templates/.icons/simple/wegame.svg +1 -0
  14593. docsforge/themes/material/templates/.icons/simple/weightsandbiases.svg +1 -0
  14594. docsforge/themes/material/templates/.icons/simple/welcometothejungle.svg +1 -0
  14595. docsforge/themes/material/templates/.icons/simple/wellfound.svg +1 -0
  14596. docsforge/themes/material/templates/.icons/simple/wellsfargo.svg +1 -0
  14597. docsforge/themes/material/templates/.icons/simple/wemo.svg +1 -0
  14598. docsforge/themes/material/templates/.icons/simple/weread.svg +1 -0
  14599. docsforge/themes/material/templates/.icons/simple/westernunion.svg +1 -0
  14600. docsforge/themes/material/templates/.icons/simple/wetransfer.svg +1 -0
  14601. docsforge/themes/material/templates/.icons/simple/wezterm.svg +1 -0
  14602. docsforge/themes/material/templates/.icons/simple/wgpu.svg +1 -0
  14603. docsforge/themes/material/templates/.icons/simple/what3words.svg +1 -0
  14604. docsforge/themes/material/templates/.icons/simple/whatsapp.svg +1 -0
  14605. docsforge/themes/material/templates/.icons/simple/wheniwork.svg +1 -0
  14606. docsforge/themes/material/templates/.icons/simple/wikibooks.svg +1 -0
  14607. docsforge/themes/material/templates/.icons/simple/wikidata.svg +1 -0
  14608. docsforge/themes/material/templates/.icons/simple/wikidotgg.svg +1 -0
  14609. docsforge/themes/material/templates/.icons/simple/wikidotjs.svg +1 -0
  14610. docsforge/themes/material/templates/.icons/simple/wikimediacommons.svg +1 -0
  14611. docsforge/themes/material/templates/.icons/simple/wikimediafoundation.svg +1 -0
  14612. docsforge/themes/material/templates/.icons/simple/wikipedia.svg +1 -0
  14613. docsforge/themes/material/templates/.icons/simple/wikiquote.svg +1 -0
  14614. docsforge/themes/material/templates/.icons/simple/wikisource.svg +1 -0
  14615. docsforge/themes/material/templates/.icons/simple/wikiversity.svg +1 -0
  14616. docsforge/themes/material/templates/.icons/simple/wikivoyage.svg +1 -0
  14617. docsforge/themes/material/templates/.icons/simple/winamp.svg +1 -0
  14618. docsforge/themes/material/templates/.icons/simple/windsurf.svg +1 -0
  14619. docsforge/themes/material/templates/.icons/simple/wine.svg +1 -0
  14620. docsforge/themes/material/templates/.icons/simple/wipro.svg +1 -0
  14621. docsforge/themes/material/templates/.icons/simple/wire.svg +1 -0
  14622. docsforge/themes/material/templates/.icons/simple/wireguard.svg +1 -0
  14623. docsforge/themes/material/templates/.icons/simple/wireshark.svg +1 -0
  14624. docsforge/themes/material/templates/.icons/simple/wise.svg +1 -0
  14625. docsforge/themes/material/templates/.icons/simple/wish.svg +1 -0
  14626. docsforge/themes/material/templates/.icons/simple/wistia.svg +1 -0
  14627. docsforge/themes/material/templates/.icons/simple/wix.svg +1 -0
  14628. docsforge/themes/material/templates/.icons/simple/wizzair.svg +1 -0
  14629. docsforge/themes/material/templates/.icons/simple/wolfram.svg +1 -0
  14630. docsforge/themes/material/templates/.icons/simple/wolframlanguage.svg +1 -0
  14631. docsforge/themes/material/templates/.icons/simple/wolframmathematica.svg +1 -0
  14632. docsforge/themes/material/templates/.icons/simple/wondershare.svg +1 -0
  14633. docsforge/themes/material/templates/.icons/simple/wondersharefilmora.svg +1 -0
  14634. docsforge/themes/material/templates/.icons/simple/woo.svg +1 -0
  14635. docsforge/themes/material/templates/.icons/simple/woocommerce.svg +1 -0
  14636. docsforge/themes/material/templates/.icons/simple/wordpress.svg +1 -0
  14637. docsforge/themes/material/templates/.icons/simple/workplace.svg +1 -0
  14638. docsforge/themes/material/templates/.icons/simple/worldhealthorganization.svg +1 -0
  14639. docsforge/themes/material/templates/.icons/simple/wpengine.svg +1 -0
  14640. docsforge/themes/material/templates/.icons/simple/wpexplorer.svg +1 -0
  14641. docsforge/themes/material/templates/.icons/simple/wprocket.svg +1 -0
  14642. docsforge/themes/material/templates/.icons/simple/writedotas.svg +1 -0
  14643. docsforge/themes/material/templates/.icons/simple/wwe.svg +1 -0
  14644. docsforge/themes/material/templates/.icons/simple/wwise.svg +1 -0
  14645. docsforge/themes/material/templates/.icons/simple/wxt.svg +1 -0
  14646. docsforge/themes/material/templates/.icons/simple/wykop.svg +1 -0
  14647. docsforge/themes/material/templates/.icons/simple/wyze.svg +1 -0
  14648. docsforge/themes/material/templates/.icons/simple/x.svg +1 -0
  14649. docsforge/themes/material/templates/.icons/simple/xampp.svg +1 -0
  14650. docsforge/themes/material/templates/.icons/simple/xcode.svg +1 -0
  14651. docsforge/themes/material/templates/.icons/simple/xdadevelopers.svg +1 -0
  14652. docsforge/themes/material/templates/.icons/simple/xdotorg.svg +1 -0
  14653. docsforge/themes/material/templates/.icons/simple/xendit.svg +1 -0
  14654. docsforge/themes/material/templates/.icons/simple/xero.svg +1 -0
  14655. docsforge/themes/material/templates/.icons/simple/xfce.svg +1 -0
  14656. docsforge/themes/material/templates/.icons/simple/xiaohongshu.svg +1 -0
  14657. docsforge/themes/material/templates/.icons/simple/xiaomi.svg +1 -0
  14658. docsforge/themes/material/templates/.icons/simple/xing.svg +1 -0
  14659. docsforge/themes/material/templates/.icons/simple/xml.svg +1 -0
  14660. docsforge/themes/material/templates/.icons/simple/xmpp.svg +1 -0
  14661. docsforge/themes/material/templates/.icons/simple/xo.svg +1 -0
  14662. docsforge/themes/material/templates/.icons/simple/xrp.svg +1 -0
  14663. docsforge/themes/material/templates/.icons/simple/xsplit.svg +1 -0
  14664. docsforge/themes/material/templates/.icons/simple/xstate.svg +1 -0
  14665. docsforge/themes/material/templates/.icons/simple/xubuntu.svg +1 -0
  14666. docsforge/themes/material/templates/.icons/simple/xyflow.svg +1 -0
  14667. docsforge/themes/material/templates/.icons/simple/yaak.svg +1 -0
  14668. docsforge/themes/material/templates/.icons/simple/yabai.svg +1 -0
  14669. docsforge/themes/material/templates/.icons/simple/yale.svg +1 -0
  14670. docsforge/themes/material/templates/.icons/simple/yamahacorporation.svg +1 -0
  14671. docsforge/themes/material/templates/.icons/simple/yamahamotorcorporation.svg +1 -0
  14672. docsforge/themes/material/templates/.icons/simple/yaml.svg +1 -0
  14673. docsforge/themes/material/templates/.icons/simple/yandexcloud.svg +1 -0
  14674. docsforge/themes/material/templates/.icons/simple/yarn.svg +1 -0
  14675. docsforge/themes/material/templates/.icons/simple/ycombinator.svg +1 -0
  14676. docsforge/themes/material/templates/.icons/simple/yelp.svg +1 -0
  14677. docsforge/themes/material/templates/.icons/simple/yeti.svg +1 -0
  14678. docsforge/themes/material/templates/.icons/simple/yii.svg +1 -0
  14679. docsforge/themes/material/templates/.icons/simple/yoast.svg +1 -0
  14680. docsforge/themes/material/templates/.icons/simple/yolo.svg +1 -0
  14681. docsforge/themes/material/templates/.icons/simple/youhodler.svg +1 -0
  14682. docsforge/themes/material/templates/.icons/simple/youtube.svg +1 -0
  14683. docsforge/themes/material/templates/.icons/simple/youtubegaming.svg +1 -0
  14684. docsforge/themes/material/templates/.icons/simple/youtubekids.svg +1 -0
  14685. docsforge/themes/material/templates/.icons/simple/youtubemusic.svg +1 -0
  14686. docsforge/themes/material/templates/.icons/simple/youtubeshorts.svg +1 -0
  14687. docsforge/themes/material/templates/.icons/simple/youtubestudio.svg +1 -0
  14688. docsforge/themes/material/templates/.icons/simple/youtubetv.svg +1 -0
  14689. docsforge/themes/material/templates/.icons/simple/yr.svg +1 -0
  14690. docsforge/themes/material/templates/.icons/simple/yubico.svg +1 -0
  14691. docsforge/themes/material/templates/.icons/simple/yunohost.svg +1 -0
  14692. docsforge/themes/material/templates/.icons/simple/zabka.svg +1 -0
  14693. docsforge/themes/material/templates/.icons/simple/zaim.svg +1 -0
  14694. docsforge/themes/material/templates/.icons/simple/zalando.svg +1 -0
  14695. docsforge/themes/material/templates/.icons/simple/zalo.svg +1 -0
  14696. docsforge/themes/material/templates/.icons/simple/zap.svg +1 -0
  14697. docsforge/themes/material/templates/.icons/simple/zapier.svg +1 -0
  14698. docsforge/themes/material/templates/.icons/simple/zara.svg +1 -0
  14699. docsforge/themes/material/templates/.icons/simple/zazzle.svg +1 -0
  14700. docsforge/themes/material/templates/.icons/simple/zcash.svg +1 -0
  14701. docsforge/themes/material/templates/.icons/simple/zcool.svg +1 -0
  14702. docsforge/themes/material/templates/.icons/simple/zdf.svg +1 -0
  14703. docsforge/themes/material/templates/.icons/simple/zebpay.svg +1 -0
  14704. docsforge/themes/material/templates/.icons/simple/zebratechnologies.svg +1 -0
  14705. docsforge/themes/material/templates/.icons/simple/zedindustries.svg +1 -0
  14706. docsforge/themes/material/templates/.icons/simple/zelle.svg +1 -0
  14707. docsforge/themes/material/templates/.icons/simple/zenbrowser.svg +1 -0
  14708. docsforge/themes/material/templates/.icons/simple/zend.svg +1 -0
  14709. docsforge/themes/material/templates/.icons/simple/zendesk.svg +1 -0
  14710. docsforge/themes/material/templates/.icons/simple/zenn.svg +1 -0
  14711. docsforge/themes/material/templates/.icons/simple/zenodo.svg +1 -0
  14712. docsforge/themes/material/templates/.icons/simple/zensar.svg +1 -0
  14713. docsforge/themes/material/templates/.icons/simple/zerodha.svg +1 -0
  14714. docsforge/themes/material/templates/.icons/simple/zerotier.svg +1 -0
  14715. docsforge/themes/material/templates/.icons/simple/zettlr.svg +1 -0
  14716. docsforge/themes/material/templates/.icons/simple/zhihu.svg +1 -0
  14717. docsforge/themes/material/templates/.icons/simple/zig.svg +1 -0
  14718. docsforge/themes/material/templates/.icons/simple/zigbee.svg +1 -0
  14719. docsforge/themes/material/templates/.icons/simple/zigbee2mqtt.svg +1 -0
  14720. docsforge/themes/material/templates/.icons/simple/ziggo.svg +1 -0
  14721. docsforge/themes/material/templates/.icons/simple/zilch.svg +1 -0
  14722. docsforge/themes/material/templates/.icons/simple/zillow.svg +1 -0
  14723. docsforge/themes/material/templates/.icons/simple/zincsearch.svg +1 -0
  14724. docsforge/themes/material/templates/.icons/simple/zingat.svg +1 -0
  14725. docsforge/themes/material/templates/.icons/simple/zod.svg +1 -0
  14726. docsforge/themes/material/templates/.icons/simple/zoho.svg +1 -0
  14727. docsforge/themes/material/templates/.icons/simple/zoiper.svg +1 -0
  14728. docsforge/themes/material/templates/.icons/simple/zola.svg +1 -0
  14729. docsforge/themes/material/templates/.icons/simple/zomato.svg +1 -0
  14730. docsforge/themes/material/templates/.icons/simple/zoom.svg +1 -0
  14731. docsforge/themes/material/templates/.icons/simple/zorin.svg +1 -0
  14732. docsforge/themes/material/templates/.icons/simple/zotero.svg +1 -0
  14733. docsforge/themes/material/templates/.icons/simple/zsh.svg +1 -0
  14734. docsforge/themes/material/templates/.icons/simple/zulip.svg +1 -0
  14735. docsforge/themes/material/templates/.icons/simple/zyte.svg +1 -0
  14736. docsforge/themes/material/templates/404.html +7 -0
  14737. docsforge/themes/material/templates/__init__.py +70 -0
  14738. docsforge/themes/material/templates/assets/images/favicon.png +0 -0
  14739. docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js +16 -0
  14740. docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js.map +7 -0
  14741. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
  14742. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
  14743. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
  14744. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
  14745. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
  14746. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
  14747. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
  14748. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
  14749. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
  14750. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
  14751. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
  14752. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
  14753. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
  14754. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
  14755. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
  14756. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
  14757. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
  14758. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
  14759. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
  14760. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
  14761. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
  14762. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
  14763. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
  14764. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
  14765. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
  14766. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
  14767. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
  14768. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
  14769. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
  14770. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
  14771. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
  14772. docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
  14773. docsforge/themes/material/templates/assets/javascripts/lunr/tinyseg.js +206 -0
  14774. docsforge/themes/material/templates/assets/javascripts/lunr/wordcut.js +6708 -0
  14775. docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js +42 -0
  14776. docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js.map +7 -0
  14777. docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css +1 -0
  14778. docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css.map +1 -0
  14779. docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
  14780. docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css.map +1 -0
  14781. docsforge/themes/material/templates/base.html +259 -0
  14782. docsforge/themes/material/templates/blog-post.html +138 -0
  14783. docsforge/themes/material/templates/blog.html +21 -0
  14784. docsforge/themes/material/templates/fragments/tags/default/listing.html +19 -0
  14785. docsforge/themes/material/templates/fragments/tags/default/tag.html +16 -0
  14786. docsforge/themes/material/templates/main.html +4 -0
  14787. docsforge/themes/material/templates/mkdocs_theme.yml +50 -0
  14788. docsforge/themes/material/templates/partials/actions.html +22 -0
  14789. docsforge/themes/material/templates/partials/alternate.html +22 -0
  14790. docsforge/themes/material/templates/partials/comments.html +3 -0
  14791. docsforge/themes/material/templates/partials/consent.html +71 -0
  14792. docsforge/themes/material/templates/partials/content.html +12 -0
  14793. docsforge/themes/material/templates/partials/copyright.html +16 -0
  14794. docsforge/themes/material/templates/partials/feedback.html +47 -0
  14795. docsforge/themes/material/templates/partials/footer.html +56 -0
  14796. docsforge/themes/material/templates/partials/header.html +69 -0
  14797. docsforge/themes/material/templates/partials/icons.html +52 -0
  14798. docsforge/themes/material/templates/partials/integrations/analytics/google.html +7 -0
  14799. docsforge/themes/material/templates/partials/integrations/analytics.html +14 -0
  14800. docsforge/themes/material/templates/partials/javascripts/announce.html +4 -0
  14801. docsforge/themes/material/templates/partials/javascripts/base.html +4 -0
  14802. docsforge/themes/material/templates/partials/javascripts/consent.html +4 -0
  14803. docsforge/themes/material/templates/partials/javascripts/content.html +7 -0
  14804. docsforge/themes/material/templates/partials/javascripts/outdated.html +4 -0
  14805. docsforge/themes/material/templates/partials/javascripts/palette.html +4 -0
  14806. docsforge/themes/material/templates/partials/language.html +6 -0
  14807. docsforge/themes/material/templates/partials/languages/af.html +56 -0
  14808. docsforge/themes/material/templates/partials/languages/ar.html +57 -0
  14809. docsforge/themes/material/templates/partials/languages/az.html +55 -0
  14810. docsforge/themes/material/templates/partials/languages/be.html +57 -0
  14811. docsforge/themes/material/templates/partials/languages/bg.html +56 -0
  14812. docsforge/themes/material/templates/partials/languages/bn.html +56 -0
  14813. docsforge/themes/material/templates/partials/languages/ca.html +55 -0
  14814. docsforge/themes/material/templates/partials/languages/cs.html +55 -0
  14815. docsforge/themes/material/templates/partials/languages/cy.html +55 -0
  14816. docsforge/themes/material/templates/partials/languages/da.html +56 -0
  14817. docsforge/themes/material/templates/partials/languages/de.html +57 -0
  14818. docsforge/themes/material/templates/partials/languages/el.html +55 -0
  14819. docsforge/themes/material/templates/partials/languages/en.html +60 -0
  14820. docsforge/themes/material/templates/partials/languages/eo.html +56 -0
  14821. docsforge/themes/material/templates/partials/languages/es.html +56 -0
  14822. docsforge/themes/material/templates/partials/languages/et.html +55 -0
  14823. docsforge/themes/material/templates/partials/languages/eu.html +55 -0
  14824. docsforge/themes/material/templates/partials/languages/fa.html +57 -0
  14825. docsforge/themes/material/templates/partials/languages/fi.html +56 -0
  14826. docsforge/themes/material/templates/partials/languages/fr.html +56 -0
  14827. docsforge/themes/material/templates/partials/languages/gl.html +56 -0
  14828. docsforge/themes/material/templates/partials/languages/he.html +57 -0
  14829. docsforge/themes/material/templates/partials/languages/hi.html +56 -0
  14830. docsforge/themes/material/templates/partials/languages/hr.html +55 -0
  14831. docsforge/themes/material/templates/partials/languages/hu.html +56 -0
  14832. docsforge/themes/material/templates/partials/languages/hy.html +56 -0
  14833. docsforge/themes/material/templates/partials/languages/id.html +56 -0
  14834. docsforge/themes/material/templates/partials/languages/is.html +55 -0
  14835. docsforge/themes/material/templates/partials/languages/it.html +56 -0
  14836. docsforge/themes/material/templates/partials/languages/ja.html +58 -0
  14837. docsforge/themes/material/templates/partials/languages/ka.html +48 -0
  14838. docsforge/themes/material/templates/partials/languages/kn.html +55 -0
  14839. docsforge/themes/material/templates/partials/languages/ko.html +56 -0
  14840. docsforge/themes/material/templates/partials/languages/ku-IQ.html +44 -0
  14841. docsforge/themes/material/templates/partials/languages/lb.html +56 -0
  14842. docsforge/themes/material/templates/partials/languages/lt.html +56 -0
  14843. docsforge/themes/material/templates/partials/languages/lv.html +55 -0
  14844. docsforge/themes/material/templates/partials/languages/mk.html +56 -0
  14845. docsforge/themes/material/templates/partials/languages/mn.html +55 -0
  14846. docsforge/themes/material/templates/partials/languages/ms.html +55 -0
  14847. docsforge/themes/material/templates/partials/languages/my.html +56 -0
  14848. docsforge/themes/material/templates/partials/languages/nb.html +56 -0
  14849. docsforge/themes/material/templates/partials/languages/nl.html +56 -0
  14850. docsforge/themes/material/templates/partials/languages/nn.html +56 -0
  14851. docsforge/themes/material/templates/partials/languages/pl.html +56 -0
  14852. docsforge/themes/material/templates/partials/languages/pt-BR.html +56 -0
  14853. docsforge/themes/material/templates/partials/languages/pt.html +56 -0
  14854. docsforge/themes/material/templates/partials/languages/ro.html +56 -0
  14855. docsforge/themes/material/templates/partials/languages/ru.html +56 -0
  14856. docsforge/themes/material/templates/partials/languages/sa.html +55 -0
  14857. docsforge/themes/material/templates/partials/languages/sh.html +55 -0
  14858. docsforge/themes/material/templates/partials/languages/si.html +31 -0
  14859. docsforge/themes/material/templates/partials/languages/sk.html +55 -0
  14860. docsforge/themes/material/templates/partials/languages/sl.html +56 -0
  14861. docsforge/themes/material/templates/partials/languages/sq.html +56 -0
  14862. docsforge/themes/material/templates/partials/languages/sr.html +55 -0
  14863. docsforge/themes/material/templates/partials/languages/sv.html +56 -0
  14864. docsforge/themes/material/templates/partials/languages/ta.html +56 -0
  14865. docsforge/themes/material/templates/partials/languages/te.html +55 -0
  14866. docsforge/themes/material/templates/partials/languages/th.html +56 -0
  14867. docsforge/themes/material/templates/partials/languages/tl.html +52 -0
  14868. docsforge/themes/material/templates/partials/languages/tr.html +56 -0
  14869. docsforge/themes/material/templates/partials/languages/uk.html +55 -0
  14870. docsforge/themes/material/templates/partials/languages/ur.html +57 -0
  14871. docsforge/themes/material/templates/partials/languages/uz.html +56 -0
  14872. docsforge/themes/material/templates/partials/languages/vi.html +56 -0
  14873. docsforge/themes/material/templates/partials/languages/zh-Hant.html +57 -0
  14874. docsforge/themes/material/templates/partials/languages/zh-TW.html +57 -0
  14875. docsforge/themes/material/templates/partials/languages/zh.html +57 -0
  14876. docsforge/themes/material/templates/partials/logo.html +9 -0
  14877. docsforge/themes/material/templates/partials/nav-item.html +170 -0
  14878. docsforge/themes/material/templates/partials/nav.html +30 -0
  14879. docsforge/themes/material/templates/partials/pagination.html +20 -0
  14880. docsforge/themes/material/templates/partials/palette.html +16 -0
  14881. docsforge/themes/material/templates/partials/path-item.html +29 -0
  14882. docsforge/themes/material/templates/partials/path.html +23 -0
  14883. docsforge/themes/material/templates/partials/post.html +68 -0
  14884. docsforge/themes/material/templates/partials/progress.html +4 -0
  14885. docsforge/themes/material/templates/partials/search.html +42 -0
  14886. docsforge/themes/material/templates/partials/social.html +27 -0
  14887. docsforge/themes/material/templates/partials/source-file.html +110 -0
  14888. docsforge/themes/material/templates/partials/source.html +12 -0
  14889. docsforge/themes/material/templates/partials/tabs-item.html +37 -0
  14890. docsforge/themes/material/templates/partials/tabs.html +13 -0
  14891. docsforge/themes/material/templates/partials/tags.html +31 -0
  14892. docsforge/themes/material/templates/partials/toc-item.html +25 -0
  14893. docsforge/themes/material/templates/partials/toc.html +25 -0
  14894. docsforge/themes/material/templates/partials/top.html +8 -0
  14895. docsforge/themes/material/templates/redirect.html +16 -0
  14896. docsforge/utilities/__init__.py +30 -0
  14897. docsforge/utilities/filter/__init__.py +135 -0
  14898. docsforge/utilities/filter/config.py +58 -0
  14899. docsforge/utils/__init__.py +403 -0
  14900. docsforge/utils/babel_stub.py +29 -0
  14901. docsforge/utils/cache.py +75 -0
  14902. docsforge/utils/filters.py +1 -0
  14903. docsforge/utils/meta.py +102 -0
  14904. docsforge/utils/rendering.py +104 -0
  14905. docsforge/utils/templates.py +57 -0
  14906. docsforge/utils/yaml.py +165 -0
  14907. docsforge-9.7.6.dist-info/METADATA +203 -0
  14908. docsforge-9.7.6.dist-info/RECORD +14911 -0
  14909. docsforge-9.7.6.dist-info/WHEEL +4 -0
  14910. docsforge-9.7.6.dist-info/entry_points.txt +56 -0
  14911. docsforge-9.7.6.dist-info/licenses/LICENSE +17 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.023 15.26c.695 0 1.014-.404 1.014-1.051 0-.551-.308-1.01-.984-1.01-.58 0-.912.404-.912 1.016 0 .543.32 1.045.882 1.045m-4.888.187c.764 0 1.113-.443 1.113-1.154 0-.604-.338-1.109-1.082-1.109-.637 0-1.002.445-1.002 1.115 0 .597.352 1.148.971 1.148M24 10.201l-3.15.029.83-9.686L1.958 3.605l1.686 6.248H0l3.734 11.488 8.713-1.283v3.396l10.113-4.641zm-9.104-3.594c0-.049.039-.092.088-.094l1.879-.125.446-.029c.524-.035 1.634.063 1.634 1.236 0 .83-.619 1.184-.619 1.184s.75.189.707 1.092c0 1.602-1.943 1.389-1.943 1.389l-.225-.006-1.908-.053a.09.09 0 0 1-.086-.09zm-3.675.243c0-.047.039-.09.088-.092l3.064-.203a.08.08 0 0 1 .087.08v.943c0 .049-.039.09-.087.092l-1.9.08a.094.094 0 0 0-.088.09l-.005.394a.083.083 0 0 0 .086.084l1.646-.066a.08.08 0 0 1 .086.084l-.02 1.012a.09.09 0 0 1-.089.086h-1.63a.09.09 0 0 0-.088.088v.416c0 .047.039.088.088.088l1.87.033a.09.09 0 0 1 .087.09v.951a.084.084 0 0 1-.087.084l-3.063-.123a.09.09 0 0 1-.087-.09zm-6.01.312.975-.064a.1.1 0 0 1 .105.08l.458 2.205c.01.047.027.047.039 0l.576-2.281a.13.13 0 0 1 .108-.09l.921-.061a.11.11 0 0 1 .109.078l.564 2.342c.012.047.029.047.041 0l.6-2.424a.13.13 0 0 1 .108-.092l.996-.064c.048-.004.077.031.065.078l-1.09 4.104a.11.11 0 0 1-.109.082l-1.121-.031a.12.12 0 0 1-.109-.086l-.535-1.965c-.012-.047-.033-.047-.045 0l-.522 1.934a.12.12 0 0 1-.11.082l-1.109-.031a.12.12 0 0 1-.108-.088l-.873-3.618c-.011-.047.019-.088.066-.09m-.288 9.623v-3.561a.09.09 0 0 0-.087-.088l-1.252-.029a.095.095 0 0 1-.091-.09l-.046-1.125a.08.08 0 0 1 .083-.086l4.047.096c.048 0 .087.041.085.088l-.022 1.088a.093.093 0 0 1-.089.088l-1.139.004a.09.09 0 0 0-.087.088v3.447c0 .049-.039.09-.087.092l-1.227.07a.08.08 0 0 1-.088-.082m2.834-2.379c0-1.918 1.321-2.482 2.416-2.482s2.339.73 2.339 2.316c0 1.9-1.383 2.482-2.416 2.482-1.033.001-2.339-.724-2.339-2.316m5.139-.115c0-1.746 1.166-2.238 2.162-2.238s2.129.664 2.129 2.107c0 1.729-1.259 2.26-2.198 2.26s-2.093-.68-2.093-2.129m7.259 1.711a.18.18 0 0 1-.139-.064l-1.187-1.631c-.029-.039-.053-.031-.053.018v1.67c0 .047-.039.09-.086.092l-1.052.061a.08.08 0 0 1-.087-.082l.039-3.842c0-.047.039-.086.088-.084l.881.02a.2.2 0 0 1 .137.074l1.293 1.902c.027.041.051.033.051-.014l.032-1.846a.087.087 0 0 1 .089-.086l.963.029c.047 0 .085.041.083.09l-.138 3.555a.1.1 0 0 1-.091.092zM16.258 8.23l.724-.014s.47.018.47-.434c0-.357-.411-.33-.411-.33l-.782.008a.09.09 0 0 0-.088.088v.598a.083.083 0 0 0 .087.084m-.029 1.961h.99c.024 0 .35-.051.35-.404 0-.293-.229-.402-.441-.398l-.898.029a.09.09 0 0 0-.087.09v.596a.086.086 0 0 0 .086.087"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.957 4.34q.647 0 1.269.243.634.243 1.093.7.459.448.662 1l1.592 4.59 1.31-3.82Q9.84 4.26 11.92 4.26q.459 0 1.106.203.729.23 1.228.809.5.58.905 1.782l1.296 3.82 1.606-4.59q.189-.54.649-.998.472-.459 1.079-.703.608-.243 1.283-.243.62.04 1.241.338.783.378 1.228 1.106.459.73.459 1.66 0 .81-.364 1.54l-4.225 8.652q-1.025 2.106-3.037 2.106-.905-.04-1.634-.567-.728-.54-1.133-1.498L12 13.72l-1.606 3.955q-.243.634-.647 1.093-.406.447-.945.702-.54.257-1.134.27-1.013 0-1.755-.486-.742-.5-1.297-1.62L.392 8.983Q0 8.16 0 7.443q0-.89.46-1.632.459-.756 1.254-1.134.622-.297 1.243-.337"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 0 1 .213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.33.33 0 0 0 .167-.054l1.903-1.114a.86.86 0 0 1 .717-.098 10.2 10.2 0 0 0 2.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348M5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178A1.17 1.17 0 0 1 4.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178 1.17 1.17 0 0 1-1.162-1.178c0-.651.52-1.18 1.162-1.18m5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.72.72 0 0 1 .598.082l1.584.926a.3.3 0 0 0 .14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.327-1.233a.6.6 0 0 1-.023-.156.49.49 0 0 1 .201-.398C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.088V8.89c-.135-.01-.27-.027-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.969-.982"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.458 11.005c-.024-.179-.078-.632-.165-1.08a8 8 0 0 0-.255-1.006l-.005-.015a2 2 0 0 0-.151-.315 1.2 1.2 0 0 0-.317-.354 1.57 1.57 0 0 0-1.412-.138 2.03 2.03 0 0 0-.861 1.064c-.238.465-.475.93-.742 1.378a2.6 2.6 0 0 1-.572.7 1.3 1.3 0 0 1-.367.215c-.534.2-.91-.08-1.321-.403-.438-.342-.824-.744-1.274-1.073a1.85 1.85 0 0 0-.983-.43c-.637-.003-1.195.619-1.544 1.078-.195.258-.577.779-.775 1.033a3.4 3.4 0 0 1-.454.458 1.2 1.2 0 0 1-.196.138 1.1 1.1 0 0 1-.48.136 1.57 1.57 0 0 1-.869-.263 3 3 0 0 1-.288-.183l-.035-.027a.469.469 0 0 0-.734.428.4.4 0 0 0 .024.136q.001.004.004.008a.4.4 0 0 0 .093.14c.608.897 1.47 1.55 2.303 1.564a1.5 1.5 0 0 0 .635-.124c.646-.285 1.13-.903 1.67-1.334a1.3 1.3 0 0 1 .776-.33 1.04 1.04 0 0 1 .63.215 2 2 0 0 1 .189.144 9 9 0 0 1 .742.753 10 10 0 0 0 .9.85 2.53 2.53 0 0 0 1.146.56q.069.01.136.014a1.52 1.52 0 0 0 1.002-.314 4.2 4.2 0 0 0 .745-.689 6 6 0 0 0 .463-.664c.07-.112.143-.19.2-.308a6 6 0 0 1-.065.953 10 10 0 0 1-.212 1.288q-.062.253-.135.503-.116.397-.262.786a2 2 0 0 1-.072.188l-.003.007q-.088.23-.192.453a7.005 7.005 0 0 1-12.74-.01q-.106-.225-.195-.459l-.004-.009a10.9 10.9 0 0 1 .426-9.024 13 13 0 0 1 1.635-2.396 8.4 8.4 0 0 1 2.132-1.946q.044-.027.086-.055a4.17 4.17 0 0 1 4.57 0l.086.055a11.3 11.3 0 0 1 1.795 1.588l.002.002.052.053a1.2 1.2 0 0 0 .296.212 1.36 1.36 0 0 0 1.493-.211 1.29 1.29 0 0 0 .137-1.672q-.063-.075-.121-.15a8 8 0 0 0-.722-.763A14 14 0 0 0 15.375.9l-.118-.071A6.1 6.1 0 0 0 12.118 0a5.75 5.75 0 0 0-3.033.841l-.117.071A12.2 12.2 0 0 0 6.003 3.39l-.024.025a15.48 15.48 0 0 0-3.578 9.8 16.6 16.6 0 0 0 .359 3.444 9.487 9.487 0 0 0 18.478.017l.028-.13.002-.012.02-.103a16 16 0 0 0 .286-2.235q.026-.454.026-.91a18 18 0 0 0-.142-2.28z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.48 0a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m19.04 0a1.55 1.55 0 1 0 0 3.101 1.55 1.55 0 0 0 0-3.101M12 2.295a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1M2.48 5.272a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96m19.04 0a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96M12 8.496a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m-9.52 3.907a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m19.04 0a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.102M12 13.767a2.48 2.48 0 1 0 0 4.962 2.48 2.48 0 0 0 0-4.962m-9.52 3.907a2.48 2.48 0 1 0 .001 4.962 2.48 2.48 0 0 0 0-4.962zm19.04.93a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.101zM12 20.9a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.62 3.783c-1.115-1.811-4.355-2.604-6.713-.265-.132.135-.306.548.218 1.104 1.097 1.149 6.819 7.046 4.702 12.196-1.028 2.504-3.953 2.073-5.052-2.076a23.2 23.2 0 0 1-.473-9.367s.105-.394-.065-.52c-.117-.087-.305-.05-.547.33-.06.096-.048.076-.106.178l-.003.002c-1.622 2.688-3.272 5.874-4.049 7.07.38-1.803-.101-4.283-.85-6.359l-.142-.375c-.692-1.776-1.524-2.974-1.776-3.245-.03-.033-.105-.094-.353-.094H.398c-.49 0-.448.412-.293.561 1.862 2.178 7.289 10.343 4.773 18.355-.194.619.11.944.612.305 2.206-2.81 4.942-7.598 6.925-11.187-.437 1.245-.822 2.63-1.028 4.083-.435 3.064.487 5.37 1.162 6.58.345.619.803.998 1.988.824 6.045-.885 8.06-6.117 8.805-8.77 1.357-4.839.363-7.568-.722-9.33"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.998 8.128c.063-1.379-1.612-2.376-2.795-1.664-1.23.598-1.322 2.52-.156 3.234 1.2.862 2.995-.09 2.951-1.57m0 7.748c.063-1.38-1.612-2.377-2.795-1.665-1.23.598-1.322 2.52-.156 3.234 1.2.863 2.995-.09 2.951-1.57zm-20.5 1.762L0 6.364h3.257l2.066 8.106 2.245-8.106h3.267l2.244 8.106 2.065-8.106h3.257l-3.54 11.274H11.39q-1.096-4.07-2.188-8.14l-2.233 8.14H3.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.136 13.949c0 .392-.245.616-.719.616h-.628v-1.226h.628c.48 0 .72.212.72.61zM6.922 15.06h1.044l-.523-1.443zm12.46-1.82c-.72 0-1.109.562-1.109 1.526 0 .97.384 1.526 1.108 1.526s1.108-.556 1.108-1.526c0-.964-.389-1.526-1.108-1.526zM23.73 0v24H.269V0zm-5.548 10.652c.484.245.948.354 1.571.354.895 0 1.481-.458 1.481-1.171 0-.6-.357-1.014-1.028-1.172l-.677-.158c-.394-.092-.559-.25-.559-.517 0-.322.25-.523.74-.523s.778.18.89.604l.048.186h.383v-.943a2.9 2.9 0 0 0-1.352-.338c-.911 0-1.497.447-1.497 1.166 0 .556.34.965.996 1.112l.676.152c.432.099.592.273.592.562 0 .354-.261.55-.784.55-.59 0-.894-.24-1.027-.697l-.07-.235h-.383zm-3.378.245h3.02V9.595h-.383l-.043.19c-.106.486-.255.638-.607.638h-.74V7.557h.506v-.474h-1.753v.474h.453v2.866h-.453zm-3.355 0h3.02V9.595h-.384l-.042.19c-.107.486-.256.638-.608.638h-.74V7.557h.506v-.474H11.45v.474h.452v2.866h-.452zm-8.758-3.34.938 3.34h.74l.778-2.768.756 2.768h.74l.932-3.34h.736v2.866h-.453v.474h3.201V9.595h-.383l-.043.19c-.106.486-.26.638-.607.638h-.922V9.241h1.071a.6.6 0 0 0 .059-.273.55.55 0 0 0-.059-.26h-1.07v-1.15h.884c.357 0 .48.157.596.615l.038.147h.383V7.083H6.49v.474h.522l-.613 2.305-.762-2.779h-.766l-.746 2.774-.624-2.3h.501v-.474H2.266v.474h.426zm1.412 7.002v-1.22h.947c.358 0 .48.158.597.615l.038.147h.383v-1.236H2.857v.474h.453v2.866h-.453v.474h1.78v-.474h-.533v-1.112H5.2a.6.6 0 0 0 .058-.272.55.55 0 0 0-.058-.262H4.104zm9.114 1.913a.46.46 0 0 0-.048-.224 1 1 0 0 1-.112.011c-.245 0-.309-.142-.34-.458l-.022-.201c-.048-.43-.245-.708-.73-.746v-.017c.48-.022.975-.349.975-.964 0-.621-.496-1.008-1.257-1.008H9.542v.474h.453v2.866H9.26l-1.332-3.34H7.22l-1.305 3.34h-.373v.474h1.412v-.474h-.448l.245-.682h1.385l.245.682h-.437v.474h3.35v-.474h-.505v-1.16h.293c.586 0 .761.212.826.762l.02.19c.06.507.31.725.826.725.15 0 .299-.01.416-.027a.46.46 0 0 0 .048-.223zm3.633-1.788h-1.417a.5.5 0 0 0-.059.256c0 .11.016.18.059.268h.634v.964a1.6 1.6 0 0 1-.629.125c-.767 0-1.166-.56-1.166-1.53s.4-1.532 1.124-1.532c.485 0 .767.245.932.67l.058.153h.384v-.976a3.06 3.06 0 0 0-1.412-.337c-1.172 0-1.96.8-1.96 2.027 0 1.231.767 2.016 1.96 2.016.474 0 .964-.136 1.492-.404zm4.512.082c0-1.182-.831-2.021-1.982-2.021-1.145 0-1.981.839-1.981 2.021 0 1.188.83 2.022 1.981 2.022 1.156 0 1.982-.834 1.982-2.022"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.301 0A4.3 4.3 0 0 0 0 4.302v15.397A4.3 4.3 0 0 0 4.301 24h15.396A4.303 4.303 0 0 0 24 19.699V4.301A4.3 4.3 0 0 0 19.697 0zm12.912 4.167c2.088 0 3.789 1.62 3.789 3.613q0 .142-.011.28l-.016.175h-6.324l.114.325c.354.994 1.337 1.663 2.448 1.663.83 0 1.614-.383 2.1-1.024l.108-.146.99.674-.12.16c-.711.943-1.862 1.506-3.078 1.506-2.09 0-3.79-1.62-3.79-3.613s1.7-3.614 3.79-3.614m-13.937.132h1.21v4.43a1.325 1.325 0 0 0 2.648 0v-4.43H8.34v4.43a1.325 1.325 0 0 0 2.648 0v-4.43h1.21v4.43a2.535 2.535 0 0 1-2.534 2.532c-.648 0-1.289-.26-1.76-.714l-.168-.162-.168.162a2.56 2.56 0 0 1-1.76.714 2.535 2.535 0 0 1-2.533-2.532zm13.937 1.024c-.987 0-1.882.517-2.336 1.349l-.195.358h5.06l-.195-.358c-.454-.832-1.348-1.349-2.334-1.349m-.001 7.233c2.09 0 3.79 1.622 3.79 3.614 0 1.993-1.7 3.613-3.79 3.613s-3.79-1.62-3.79-3.613 1.7-3.614 3.79-3.614m-11.403.133c.648 0 1.29.26 1.762.713l.166.162.17-.162a2.56 2.56 0 0 1 1.758-.713 2.536 2.536 0 0 1 2.533 2.532v4.43H10.99v-4.43c0-.73-.595-1.325-1.324-1.325-.731 0-1.325.595-1.325 1.325v4.43H7.134v-4.43c0-.73-.594-1.325-1.325-1.325-.73 0-1.323.595-1.323 1.325v4.43h-1.21v-4.43a2.536 2.536 0 0 1 2.533-2.532m11.403 1.038c-1.422 0-2.58 1.096-2.58 2.443s1.158 2.442 2.58 2.442 2.578-1.095 2.578-2.442-1.156-2.443-2.578-2.443"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.12 0A5.11 5.11 0 0 0 0 5.12v13.76A5.11 5.11 0 0 0 5.12 24h13.76A5.11 5.11 0 0 0 24 18.88V5.12A5.11 5.11 0 0 0 18.88 0Zm12.954 10.24c2.04 0 3.694 1.39 3.694 3.107 0 1.716-1.653 3.107-3.694 3.107-.43 0-.842-.063-1.226-.177a.37.37 0 0 0-.29.032l-.794.463a.123.123 0 0 1-.18-.14l.177-.668a.25.25 0 0 0-.098-.267c-.785-.57-1.284-1.41-1.284-2.35 0-1.716 1.655-3.107 3.695-3.107m-1.231 1.616a.495.495 0 0 0-.493.497c0 .274.22.497.493.497a.495.495 0 0 0 .492-.497.495.495 0 0 0-.492-.497m2.462 0a.495.495 0 0 0-.492.497c0 .274.22.497.492.497a.495.495 0 0 0 .493-.497.495.495 0 0 0-.493-.497M18.08 18.88h5.12c0 2.4-1.92 4.32-4.32 4.32H5.12C2.72 23.2.8 21.28.8 18.88h5.12c1.6 0 3.914-.012 5.28 1.28.489.462.677 1.17.798 1.17.12 0 .292-.671.802-1.17 1.305-1.275 3.215-1.28 5.28-1.28"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.799 5.188h5.916L24 9.155l-4.643 8.043c-1.246 2.153-3.28 2.153-4.526 0L7.893 5.188h5.919l4.273 7.39a1.127 1.127 0 0 0 1.981.002zM0 5.188h5.921l6.237 10.802-.697 1.204c-1.246 2.153-3.285 2.153-4.531 0z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.855 11.891c0-3.382 2.4-5.4 5.51-5.4C22.145 6.491 24 7.91 24 9.873c0 1.855-1.582 3.055-3.328 3.055-.982 0-1.69-.164-2.182-.546-.163-.164-.272-.109-.272.055 0 .709.272 1.254.709 1.745.382.382 1.09.655 1.745.655.71 0 1.31-.164 1.855-.437.545-.272.982-.163 1.254.273.328.49-.109 1.145-.49 1.582-.71.763-2.073 1.309-3.819 1.309-3.545-.11-5.618-2.51-5.618-5.673zm-7.254 2.237c.327 0 .545.163.763.545l.982 1.582c.382.6.709 1.036 1.418 1.036.71 0 1.091-.273 1.418-1.09a21 21 0 0 0 1.31-3.873c.49-1.855.709-2.946.709-3.873s-.273-1.473-1.31-1.637c-1.363-.272-3.272-.381-5.29-.381s-3.928.109-5.291.327C.273 6.982 0 7.528 0 8.454c0 .928.219 2.019.655 3.874a29 29 0 0 0 1.31 3.872c.381.818.708 1.091 1.417 1.091s1.037-.436 1.419-1.036l.981-1.582c.273-.327.491-.545.819-.545"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 8.524c0-.623.62-1.007 2.123-1.007l-.5 2.757c-.931-.623-1.624-1.199-1.624-1.75zm4.008 6.807c0 .647-.644 1.079-2.123 1.15l.524-2.924c.931.624 1.6 1.175 1.6 1.774zm-2.625 5.992.454-2.708c3.603-.336 5.01-1.798 5.01-3.404 0-1.653-2.004-2.948-3.841-4.074l.668-3.548c.764.072 1.67.216 2.744.432l.31-2.469c-.81-.12-1.575-.168-2.29-.216L8.257 2.7l-2.363-.024-.453 2.684C1.838 5.648.43 7.158.43 8.764c0 1.63 2.004 2.876 3.841 3.954l-.668 3.716c-.859-.048-1.908-.192-3.125-.408L0 18.495c1.026.12 1.98.192 2.84.216l-.525 2.588zm15.553-1.894h2.673c.334-2.804.81-8.46 1.121-14.86h-2.553c-.071 1.51-.334 10.498-.43 11.241h-.071c-.644-2.42-1.169-4.386-1.813-6.782h-1.456c-.62 2.396-1.05 4.194-1.694 6.782h-.096c-.071-.743-.477-9.73-.525-11.24h-2.648c.31 6.399.763 12.055 1.097 14.86h2.625l1.838-7.12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2 0 22h8l4-7 4 7h8L20 2l-5 8-3-4-3 4Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm13.515 6.75a.75.75 0 0 1 .696.987l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .727-.513m-4.499.002a.75.75 0 0 1 .695.985l-3 9A.75.75 0 0 1 6 17.25a.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511m9 0a.75.75 0 0 1 .695.985l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52s.198-.298.298-.497c.099-.198.05-.371-.025-.52s-.669-1.612-.916-2.207c-.242-.579-.487-.5-.669-.51a13 13 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074s2.096 3.2 5.077 4.487c.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413s.248-1.289.173-1.413c-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.82 9.82 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.82 11.82 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.9 11.9 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.82 11.82 0 0 0-3.48-8.413"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.342 24 0 18.582 0 12 0 5.342 5.342 0 12 0s12 5.342 12 12c0 6.582-5.342 12-12 12m0-21.986c-5.497 0-9.987 4.489-9.987 9.986s4.49 9.988 9.987 9.988c5.498 0 9.987-4.49 9.987-9.988S17.498 2.014 12 2.014m5.885 11.148H9.213a.697.697 0 0 1-.698-.691v-1.012c0-.387.311-.697.698-.697h8.748c.387 0 .697.311.697.697v1.006c-.077.387-.387.697-.773.697m-2.246-3.871H6.891a.694.694 0 0 1-.698-.691V7.59c0-.311.31-.621.697-.621h8.748c.31 0 .62.311.62.619v1.006c.001.386-.31.697-.619.697m-8.748 5.418h8.748c.388 0 .696.311.696.697v1.006a.695.695 0 0 1-.691.697H6.891c-.388-.076-.697-.387-.697-.773V15.33c-.001-.31.309-.621.697-.621"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.027.29c-.424.143-.776.418-1.106.707C.434 5.314.254 5.497.254 5.497c-.236.22-.257.537-.254.859l.021 1.819s2.07-2.013 5.164-4.99c1.665 4.337 3.405 8.651 5.116 12.974.234.653-.329 1.188-1.04 1.902-.982.958-3.034 2.93-5.136 5.561h2.107l5.067-5.554c.482-.662 1.077-1.309.824-1.909L8.145 5.806c.924-.785 1.763-1.676 2.618-2.531l5.252 13.173c.303.891-.175 1.684-1.134 2.549-1.148.922-3.508 3.073-4.58 4.712h1.631c1.71-1.758 2.017-1.994 3.964-3.68 1.308-1.334 2.488-2.022 1.871-3.731l-4.13-10.325c1.007-.99 2.013-1.875 2.98-2.852 2.113 4.643 3.559 8.384 5.33 13.33.58 1.607.458 1.682-.928 2.55-2.228 1.107-2.929 1.834-5.585 4.66h1.815c2.22-2.008 3.045-2.716 5.825-4.18.983-.569 1.116-1.285.713-2.4-1.3-3.616-4.116-11.41-6.719-16.755l-4.103 3.971-1.569-3.92C9.912 1.38 8.74 2.78 7.466 4.04z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.583v14.833h.865V4.583zm1.788 0v14.833h2.653V4.583zm3.518 0v14.832H7.96V4.583zm3.547 0v14.834h.866V4.583zm1.789 0v14.833h.865V4.583zm1.759 0v14.834h2.653V4.583zm3.518 0v14.834h.923V4.583zm1.788 0v14.833h2.653V4.583zm3.64 0v14.834h.865V4.583zm1.788 0v14.834H24V4.583Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.833 3.76C4.597 4.09 3.345 5.09 2.76 6.206 2.465 6.78.274 13.54.062 14.54c-.135.643-.042 1.726.203 2.445.728 2.09 2.615 3.392 4.925 3.392 1.599 0 2.63-.389 3.892-1.48 1.226-1.058 2.259-1.464 3.51-1.362 1.134.084 1.896.431 2.962 1.362 1.506 1.32 3.25 1.7 5.051 1.1a4.93 4.93 0 0 0 2.86-2.445c.448-.897.575-1.54.525-2.547-.034-.804-.093-1.015-1.185-4.357a195 195 0 0 0-1.32-3.96c-.415-1.04-1.244-1.955-2.276-2.496-.956-.508-1.328-.567-3.477-.567-1.15 0-1.87.034-1.828.076.051.042.525.33 1.058.643.533.305 1.04.635 1.125.736.085.102.144.313.144.508 0 .406-.093.5-1.312 1.337l-.93.634 1.667.043c1.607.042 1.666.05 1.878.245.262.245.228.16 1.498 4.07 1.1 3.4 1.142 3.604.752 4.019-.516.55-1.032.482-1.819-.212-.321-.28-.77-.635-1.006-.795a8.43 8.43 0 0 0-10.094.626c-.956.812-1.015.846-1.565.846-.288 0-.61-.06-.753-.127-.288-.152-.584-.584-.584-.863 0-.102.507-1.794 1.134-3.757.896-2.834 1.184-3.612 1.353-3.79.22-.22.237-.22 1.938-.28.939-.025 1.861-.092 2.047-.152.415-.127 2.2-1.142 2.42-1.379.178-.194.212-.541.068-.846-.102-.228-1.667-1.176-2.352-1.43-.525-.194-4.028-.211-4.738-.017M19.2 5.14c.33.338.338.752.008 1.116-.406.457-1.134.322-1.37-.253-.339-.83.719-1.498 1.362-.863z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.801 13.557q.223.147.417.313c1.854 1.6 3.127 4.656 2.582 7.311-1.091-.255-5.747-1.055-7.638-3.383-.91-1.12-1.366-2.081-1.569-2.885a6 6 0 0 0 .034-.219c.089.198.197.35.313.466.24.24.521.335.766.372.304.046.594-.006.806-.068l.001.001c.05-.015.433-.116.86-.342.325-.173 2.008-.931 3.428-1.566m-7.384 1.435C9.156 16.597 6.6 18.939.614 18.417c.219-1.492 1.31-3.019 2.51-4.11.379-.345.906-.692 1.506-1.009q.428.253.939.486c2.689 1.221 3.903 1.001 4.89.573l.054-.025a6 6 0 0 0-.096.66m4.152-.462c.38-.341.877-.916 1.383-1.559-.389-.15-.866-.371-1.319-.591-.598-.29-1.305-.283-2.073-.315a4.7 4.7 0 0 1-.804-.103q.021-.184.038-.369c.062.104.673.057.871.057.354 0 1.621.034 3.074-.574s2.55-1.706 3.022-3.225c.474-1.52.22-3.091-.168-3.952-.169.709-1.453 2.381-1.926 2.871-.473.489-2.381 2.296-2.972 2.921-.7.74-.688.793-1.332 1.302-.202.19-.499.402-.563.53.027-.338.039-.675.027-.997a8 8 0 0 0-.032-.523c.322-.059.567-.522.567-.861 0-.224-.106-.247-.271-.229.075-.894.382-3.923 1.254-4.281.218.109.831.068.649-.295-.182-.364-.825-.074-1.081.266-.28.374-.956 2.046-.92 4.324-.113.014-.174.033-.322.033-.171 0-.321-.04-.433-.05.034-2.275-.714-3.772-.84-4.169-.12-.375-.491-.596-.781-.596-.146 0-.272.056-.333.179-.182.363.459.417.677.308.706.321 1.156 3.519 1.254 4.277-.125-.006-.199.035-.199.233 0 .311.17.756.452.843l-.007.03s-.287.99-.413 2.189a4.7 4.7 0 0 1-.718-.225c-.714-.286-1.355-.583-2.019-.566s-1.366.023-1.804-.036-.649-.15-.649-.15-.234.365.257 1.075c.42.607 1.055 1.047 1.644 1.18.589.134 1.972.18 2.785-.377.16-.109.317-.228.459-.34a9 9 0 0 0-.013.626c-.289.753-.571 1.993-.268 3.338 0-.001.701-.842.787-2.958q.009-.216.01-.383c.052-.248.103-.518.148-.799.072.135.151.277.234.413.511.842 1.791 1.37 2.383 1.49q.137.029.285.038m-1.12.745c-.188.055-.445.1-.713.059-.21-.031-.45-.11-.655-.316-.169-.168-.312-.419-.401-.789a10 10 0 0 0 .039-.82l.049-.243c.563.855 1.865 1.398 2.476 1.522q.054.011.109.02l-.013.009c-.579.415-.76.503-.891.558m6.333-2.818c-.257.114-4.111 1.822-5.246 2.363.98-.775 3.017-3.59 3.699-4.774 1.062.661 1.468 1.109 1.623 1.441.101.217.09.38.096.515a.57.57 0 0 1-.172.455m-9.213 1.62a2 2 0 0 1-.19.096c-.954.414-2.126.61-4.728-.571-2.023-.918-3.024-2.157-3.371-2.666.476.161 1.471.473 2.157.524.282.021.703.068 1.167.125.021.209.109.486.345.829l.001.001c.451.651 1.134 1.119 1.765 1.262.622.141 2.083.182 2.942-.407a3 3 0 0 0 .132-.093l.001.179a6 6 0 0 0-.221.721m5.512-1.271a18 18 0 0 1-1.326-.589c.437.042 1.054.083 1.692.108q-.182.243-.366.481m.932-1.26q-.18.255-.373.517-.362.026-.709.038a29 29 0 0 1-.741-.048c.608-.065 1.228-.252 1.823-.507m.22-.315c-.809.382-1.679.648-2.507.648-.472 0-.833.018-1.139.039v.001c-.324-.031-.665-.039-1.019-.054l-.152-.009c.102-.002.192-.006.249-.006.363 0 1.662.034 3.151-.589 1.508-.632 2.645-1.773 3.136-3.351.37-1.186.31-2.402.086-3.312.458-.336.86-.651 1.147-.91.501-.451.743-.733.848-.869.199.206.714.864.685 2.138-.036 1.611-.606 3.187-1.501 4.154a9 9 0 0 1-1.321 1.132 12 12 0 0 0-.644-.422l-.089-.055-.051.091c-.184.332-.5.825-.879 1.374M4.763 5.817c-.157 1.144.113 2.323.652 3.099s2.088 2.29 3.614 2.505c.991.14 2.055.134 2.055.134s-.593-.576-1.114-1.66-.948-2.104-1.734-2.786c-.785-.681-1.601-1.416-2.045-1.945s-.59-.86-.59-.86-.656.175-.838 1.513m14.301 4.549a9 9 0 0 0 1.3-1.12c.326-.352.611-.782.845-1.265 1.315.145 2.399.371 2.791.434 0 0-.679 1.971-3.945 3.022l-.016-.035c-.121-.26-.385-.594-.975-1.036m-11.634.859a9 9 0 0 1-.598-.224c-1.657-.693-2.91-1.944-3.449-3.678-.498-1.601-.292-3.251.091-4.269.225.544.758 1.34 1.262 2.01a3.6 3.6 0 0 0-.172.726c-.163 1.197.123 2.428.687 3.24.416.599 1.417 1.62 2.555 2.193q-.192.003-.376.002m-1.758-.077c-.958-.341-1.901-.787-2.697-1.368C-.07 7.559 0 6.827 0 6.827s1.558-.005 3.088.179q.045.189.104.377c.557 1.791 1.851 3.086 3.562 3.803l.047.019a4 4 0 0 1-.267-.026h-.001c-.401-.053-.595-.135-.595-.135l-.157-.069-.092.144zm6.807-1.59c.086.017.136.058.136.145 0 .197-.242.5-.597.597l-.01-.161a.9.9 0 0 0 .283-.243c.078-.099.142-.217.188-.338m-1.591.006c.033.1.076.197.129.282.061.097.134.18.217.24l-.021.083c-.276-.093-.424-.293-.424-.466 0-.078.035-.119.099-.139m-.025-.664c-.275-.816-.795-2.022-1.505-2.179-.296.072-.938.096-.691-.145.246-.24 1.085-.048 1.283.217.145.194.744.806 1.011 1.737l.032.227a.32.32 0 0 0-.13.143m1.454-.266c.251-.99.889-1.639 1.039-1.841.197-.265 1.036-.457 1.283-.217s-.395.217-.691.145c-.69.152-1.2 1.296-1.481 2.109a.4.4 0 0 0-.067-.059.4.4 0 0 0-.092-.043zm4.802-2.708a10 10 0 0 1-.596.705c-.304.315-1.203 1.176-1.963 1.916.647-.955 1.303-1.806 2.184-2.376q.185-.12.375-.245"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.048 15.203a2.952 2.952 0 1 1 5.904 0 2.952 2.952 0 0 1-5.904 0m11.749.064v-.388h-.006a8.7 8.7 0 0 0-.639-2.985 8.7 8.7 0 0 0-1.706-2.677l.004-.004-.186-.185-.044-.045-.026-.026-.204-.204-.006.007c-.848-.756-1.775-1.129-2.603-1.461-1.294-.519-2.138-.857-2.534-2.467.443.033.839.174 1.13.481C15.571 6.996 11.321 0 11.321 0s-1.063 3.985-2.362 5.461c-.654.744.22.273 1.453-.161.279 1.19.77 2.119 1.49 2.821.791.771 1.729 1.148 2.556 1.48.672.27 1.265.508 1.767.916l-.593.594-.668-.668-.668 2.463 2.463-.668-.668-.668.6-.599a6.3 6.3 0 0 1 1.614 3.906h-.844v-.944l-2.214 1.27 2.214 1.269v-.944h.844a6.28 6.28 0 0 1-1.614 3.906l-.6-.599.668-.668-2.463-.668.668 2.463.668-.668.6.6a6.26 6.26 0 0 1-3.907 1.618v-.848h.945L12 18.45l-1.27 2.214h.944v.848a6.27 6.27 0 0 1-3.906-1.618l.599-.6.668.668.668-2.463-2.463.668.668.668-.6.599a6.3 6.3 0 0 1-1.615-3.906h.844v.944l2.214-1.269-2.214-1.27v.944h-.843a6.3 6.3 0 0 1 1.615-3.906l.6.599-.668.668 2.463.668-.668-2.463-.668.668-2.359-2.358-.23.229-.044.045-.185.185.004.004a8.75 8.75 0 0 0-2.345 5.662h-.006v.649h.006a8.75 8.75 0 0 0 2.345 5.662l-.004.004.185.185.045.045.045.045.185.185.004-.004a8.7 8.7 0 0 0 2.677 1.707 8.8 8.8 0 0 0 2.985.639V24h.649v-.006a8.8 8.8 0 0 0 2.985-.639 8.7 8.7 0 0 0 2.677-1.707l.004.004.187-.187.044-.043.043-.044.187-.186-.004-.004a8.7 8.7 0 0 0 1.706-2.677 8.7 8.7 0 0 0 .639-2.985h.006v-.259z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.074 3.126A11.97 11.97 0 0 1 24 12c0 6.623-5.377 12-12 12S0 18.623 0 12c0-3.515 1.514-6.679 3.926-8.874l2.265 2.265A8.78 8.78 0 0 0 3.2 12c0 4.857 3.943 8.8 8.8 8.8s8.8-3.943 8.8-8.8a8.78 8.78 0 0 0-2.991-6.609zm-3.399 3.399A7.19 7.19 0 0 1 19.2 12a7.206 7.206 0 0 1-6.4 7.156V10.4zM11.2 19.156A7.206 7.206 0 0 1 4.8 12c0-2.19.98-4.154 2.525-5.475L11.2 10.4zM12 0c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139q-.27-.225-1.122-.271-.314-.034-.313-.159v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434q0 .177-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021a.23.23 0 0 1-.145-.051.15.15 0 0 1-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016a.26.26 0 0 1-.152-.045c-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.152 12a4.037 4.037 0 1 1-8.075 0 4.037 4.037 0 0 1 8.075 0M17.292.822q-.429-.43-.885-.822l-1.528 1.527C17.872 4.036 19.778 7.8 19.778 12s-1.906 7.964-4.899 10.473L16.407 24q.457-.392.886-.822A15.7 15.7 0 0 0 21.923 12c0-4.223-1.644-8.192-4.63-11.178zM13.508 2.9 12.03 4.377a9.642 9.642 0 0 1 0 15.246l1.477 1.477a11.712 11.712 0 0 0 0-18.2zm-2.735 2.735L9.349 7.057c1.61 1.057 2.675 2.878 2.675 4.943s-1.065 3.886-2.675 4.943l1.423 1.422A7.88 7.88 0 0 0 14.005 12a7.88 7.88 0 0 0-3.233-6.365z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.928 0a12 12 0 0 0-9.696 5.04h5.052c.072-.42.192-.864.588-1.248.24-.276.804-.24 1.2-.312.396-.084 1.044-1.104 1.68-1.404.768.396 1.608.996 2.04 1.296.744-.588 1.392-1.596 1.68-.78.24-.396.636-.648 1.08-.756.204-.048.48-.036.624-.06.168-.072.504-.324.792-.408-.456.696-.516 2.7-.528 3.672v.42c.66.144 1.5.036 1.788-.42h3.54A11.99 11.99 0 0 0 12 0zm-.432 3c.204.564.372 1.128.312 1.68-.072.36.084.336.372.192s.432-.312.864-.444c.324-.084.096-.312-.06-.48-.48-.408-.984-.672-1.488-.96zm-9.96 3.12A11.94 11.94 0 0 0 0 12a12 12 0 0 0 24 0 11.9 11.9 0 0 0-1.536-5.88H3.36c.624 1.32.972 2.04 3.12 1.752.744-.12 1.2-.192 1.2.576.096.468.456.624 1.38.456.36-.132.684-.336.948-.168h.024v.012a.05.05 0 0 1 .012.024c0 .12-.228.372.048.684.684.66 1.344 1.248 2.04 1.92.156.768.84.66 1.38.504.816-.24.456.12.756.492.168.264.552.972 1.008.72.012 1.296.336 2.22 1.008 2.724-.204.756-.396 1.8-.036 2.424-.6-.192-.36.972-.54 1.464-.312.816-.576.78-.864.852.264.288.6.588 1.104.768v.012l.024.012c0 .276.048.516.216.684-.312-.072-.684-.504-1.296-.228-.672.3-.816.096-.576-.348.312-.684-.36-.936-1.056-1.104v-.276c.144-.048.312-.096.504-.12.3-.06.504-.168.48-.6-.012-.6-.036-1.2 0-1.776a7.2 7.2 0 0 1 .216-1.452c.084-.24.528-.456.156-.768a50 50 0 0 0-4.656-4.2l-.072-.024 1.98 3.516c.24.588.696 1.2-.12 1.356v.012c-.036.564.072 1.536-.312 1.728-.432.3-.468.576-.504 1.032-.072.48-.072 1.032.072 1.416.144.06.288.096.444.12l.384.048c-.516.672-1.152.468-1.524-.156l-2.004-3.096c.096-3.012.156-5.04-.06-7.56-1.104.096-2.22.012-3.396-.672-.264-.48-.564-.432-1.068-.312.06-.444-.12-.876-.384-1.32l-.12-1.116H1.548zm17.412 1.236c1.92-.048 1.368 3.336 1.368 4.98h.012l-.156.84-.24 1.452c.084.72-.108.816-.24 1.224 0 1.584-.216 2.04-1.548 3.24a2.59 2.59 0 0 1-1.404-2.7c.048-.288.24-.612-.012-1.08a8.9 8.9 0 0 1 .168-4.02.7.7 0 0 1 .24-.024.756.756 0 0 0 .684-.888 4 4 0 0 0 .72-.24c-.972-.912-.624-2.76.408-2.784"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.462h24v.795H0zm19.974-8.692h3.205v8.256h-3.205zm-6.385 0h3.206v8.256h-3.206zm-6.384 0h3.205v8.256H7.205zm-6.385 0h3.205v8.256H.82zM0 10.539h24v.795H0zm7.615-6.436c1.103-.897 2.23-1.359 3.974-1.359-1.359.538-2.282 1.385-2.974 2.026-.41-.206-.692-.385-1-.667m8.77 0c-1.103-.897-2.232-1.359-3.975-1.359 1.359.538 2.282 1.385 2.974 2.026.41-.206.693-.385 1-.667zm-4.616 1.436c-.923 0-1.744-.205-2.692-.59.948-.872 1.666-1.359 2.692-1.82zm.461 0c.924 0 1.744-.205 2.693-.59-.949-.872-1.667-1.359-2.693-1.82zm-3.897-.41A5.4 5.4 0 0 1 7.23 4.41C6.59 5 6.05 5.565 5.666 6.283c.436.384.795.64 1.334.897.359-.744.743-1.385 1.333-2.051m7.333 0c.41-.205.77-.436 1.103-.718.641.59 1.18 1.154 1.564 1.872-.436.384-.795.64-1.333.897-.36-.744-.744-1.385-1.334-2.051M11.77 6c-1 0-2.128-.282-3.026-.666a7.5 7.5 0 0 0-1.359 2.051c1.513.744 2.898 1.077 4.385 1.077zm.461 0c1 0 2.129-.282 3.026-.666a7.5 7.5 0 0 1 1.36 2.051c-1.514.744-2.898 1.077-4.386 1.077zm-6.82.693c.436.384.872.666 1.41.974-.256.564-.41 1.282-.513 1.975a12 12 0 0 1-1.564-.975c.129-.743.36-1.41.667-1.974m13.179 0c-.436.384-.872.666-1.41.974.256.564.41 1.282.512 1.975a12 12 0 0 0 1.565-.975 6.4 6.4 0 0 0-.667-1.974m-6.82 3.41H7.511C7.23 10 7 9.949 6.717 9.82a8.6 8.6 0 0 1 .487-1.974c1.41.743 2.898 1.076 4.564 1.076zm.461 0h4.256c.282-.103.513-.154.795-.282a8.6 8.6 0 0 0-.487-1.974c-1.41.743-2.897 1.076-4.564 1.076zm-7.667 0c0-.333.026-.615.077-.949.59.41.872.564 1.616.949zm14.872 0c0-.333-.025-.615-.077-.949-.59.41-.871.564-1.615.949z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.917 14.178q-.645 0-1.055-.41-.41-.408-.41-1.049 0-.637.355-1.05t.918-.414q.61 0 .943.386T24 12.72v.155h-1.866a.83.83 0 0 0 .174.424q.273.253.632.253.262 0 .489-.092.225-.093.57-.316v.648a2 2 0 0 1-.531.3q-.25.086-.551.086zm.445-1.774a.8.8 0 0 0-.145-.352q-.158-.215-.463-.215-.271 0-.447.234a.9.9 0 0 0-.161.333zm-3.73 1.063q0 .055.147.13.15.078.383.114.567.09.82.304.253.215.253.62 0 .4-.374.628t-.992.228q-.58 0-.93-.245a.78.78 0 0 1-.348-.669q0-.291.187-.5a.67.67 0 0 1 .437-.236q-.21-.102-.21-.31 0-.226.279-.376.066-.036.097-.012-.109-.005-.24-.122a.93.93 0 0 1-.3-.712q0-.435.301-.713.301-.28.77-.28.12 0 .224.018h1.099v.545h-.38q.125.132.13.49a.87.87 0 0 1-.305.655q-.266.244-.668.272l-.179.01a.4.4 0 0 0-.133.051q-.069.044-.069.11m.28-1.614a.44.44 0 0 0-.323.126.45.45 0 0 0-.127.33q0 .205.126.33a.44.44 0 0 0 .325.124q.198 0 .324-.125a.44.44 0 0 0 .126-.329.45.45 0 0 0-.127-.33.44.44 0 0 0-.323-.126m-.703 2.727q0 .162.178.269.179.106.488.106.338 0 .528-.09t.19-.223a.3.3 0 0 0-.129-.24.86.86 0 0 0-.387-.141l-.075-.012a2 2 0 0 0-.2-.02.817.817 0 0 0-.447.103.28.28 0 0 0-.146.248zm-2.382-.402a.67.67 0 0 1-.508-.2.73.73 0 0 1-.19-.52q0-.285.187-.491t.555-.338l.651-.235v-.126q0-.21-.098-.3t-.32-.09q-.25 0-.446.096-.195.095-.474.318v-.623q.215-.222.435-.318t.49-.096q.522 0 .798.26.276.261.276.753v1.35q0 .032.01.041.009.01.033.01.02 0 .085-.041.065-.042.249-.125v.418a.8.8 0 0 1-.287.183.9.9 0 0 1-.324.066.44.44 0 0 1-.3-.108q-.092-.083-.096-.152-.02.068-.143.13-.27.139-.583.138m.695-.625v-.75l-.257.12a.9.9 0 0 0-.349.203.4.4 0 0 0-.112.279q0 .12.09.193.09.075.245.074a.6.6 0 0 0 .257-.058 2 2 0 0 1 .2-.081zm-1.478-2.177-1.894 4.188h-.724l.933-2.114-1.061-2.133h.707l.713 1.533.639-1.533h.687zm-4.363 2.788c-.46.02-.847-.122-1.126-.395q-.42-.41-.42-1.049 0-.64.42-1.052t1.077-.412 1.079.412q.42.413.421 1.052 0 .638-.42 1.049c-.282.273-.636.395-1.03.395m-.002-.55a.8.8 0 0 0 .547-.26q.23-.242.23-.634 0-.395-.23-.638a.78.78 0 0 0-.594-.244.78.78 0 0 0-.592.243q-.229.244-.229.64 0 .393.228.634c.152.161.353.26.64.26M7.26 11.318h.693l.66 1.656.665-1.656h.687l-1.228 2.842h-.252zm9.218-.703v-2.79h.673v2.85h-.54zm.336-3.963a.38.38 0 0 1 .28.114.37.37 0 0 1 .113.273.37.37 0 0 1-.113.274.38.38 0 0 1-.28.113.38.38 0 0 1-.28-.113.37.37 0 0 1-.113-.274.37.37 0 0 1 .113-.274.38.38 0 0 1 .28-.113m-2.668-.182v4.206h-.673V6.408h.673zm1.286 4.146L14.04 9.252l1.258-1.428h.757l-1.2 1.414 1.413 1.437h-.703zm-3.3 0V7.822h.673v2.852h-.54zm.336-3.964a.38.38 0 0 1 .28.114.37.37 0 0 1 .113.273.37.37 0 0 1-.113.274.38.38 0 0 1-.28.113.38.38 0 0 1-.28-.113.37.37 0 0 1-.113-.274.37.37 0 0 1 .113-.274.38.38 0 0 1 .28-.113M8.49 10.717 7.261 7.824h.699l.661 1.68.682-1.721h.423l.676 1.712.664-1.671h.7l-1.242 2.893h-.256l-.762-1.843-.76 1.843H8.62zm3.768 6.322 4.008 6.07.436-7.26a4.6 4.6 0 0 1-4.444 1.19M7.26 6.41 0 6.843l6.07 4.008a4.6 4.6 0 0 1 1.191-4.444m11.705.988L22.22.89l-6.507 3.254a4.6 4.6 0 0 1 3.254 3.253z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.902 0a.99.99 0 0 0-.91.604l-6.139 14.57a.636.636 0 0 0 .586.883H8.66a.99.99 0 0 0 .91-.604L15.707.883A.636.636 0 0 0 15.12 0zm3.438 7.943a.99.99 0 0 0-.91.604l-6.137 14.57c-.177.42.13.883.586.883h3.219a.99.99 0 0 0 .91-.604l6.138-14.57a.636.636 0 0 0-.586-.883z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.55 5.067a2.177 2.177 0 0 0-2.18 2.177v4.867a1.77 1.77 0 0 1-1.76 1.76 1.82 1.82 0 0 1-1.472-.766l-4.971-7.1a2.2 2.2 0 0 0-1.81-.942c-1.134 0-2.154.964-2.154 2.153v4.896c0 .972-.797 1.76-1.76 1.76-.57 0-1.136-.287-1.472-.766L.408 5.16A.224.224 0 0 0 0 5.288v4.245c0 .215.066.423.188.6l5.475 7.818c.324.462.8.805 1.351.93a2.164 2.164 0 0 0 2.645-2.098V11.89c0-.972.787-1.76 1.76-1.76h.002a1.8 1.8 0 0 1 1.472.766l4.972 7.1a2.172 2.172 0 0 0 3.96-1.212v-4.895c.001-.972.789-1.76 1.76-1.76h.195a.22.22 0 0 0 .22-.22V5.287a.22.22 0 0 0-.22-.22Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.045 0C8.839.03 5.68 1.06 4.915 2.34c.848 3.193 2.025 9.576 4.7 12.09.6.565 1.455.785 2.27 1.768l.193.324c.6 1.676 1.371 3.814.246 5.104-1.833.54-3.08 1.253-2.976 1.78.133.676 2.42.792 5.107.26 2.687-.53 4.759-1.508 4.625-2.183-.11-.554-1.672-.73-3.715-.482-1.884-.885-1.955-3.022-2.226-4.674l.025-.4c.116-.556.689-1.793 1.035-2.393 1.605-2.779.003-8.337-1.203-13.066-.37-.338-1.088-.479-1.951-.467zm1.832 3.674c.208-.002.44.052.705.176 2.759 8.733-.429 11.097-1.217 11.816-2.55-.882-4.278-1.862-6.244-9.312 4.972 2.58 4.744-2.659 6.756-2.68"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.542 12.035c0-.875-.69-1.585-1.542-1.585-.85 0-1.541.71-1.541 1.585 0 .876.69 1.585 1.542 1.585.85 0 1.54-.71 1.54-1.585zM14 12.872c-.437 0-.792-.375-.792-.837 0-.46.355-.836.793-.836.437 0 .792.375.792.836 0 .462-.355.837-.792.837m-9.584-2.208-.927 2.873a.13.13 0 0 1-.115.084H3.29a.16.16 0 0 1-.129-.078l-.95-1.825-.95 1.825a.16.16 0 0 1-.128.078h-.085a.13.13 0 0 1-.115-.084l-.927-2.873c-.022-.07.019-.126.092-.126h.567c.048 0 .1.038.115.084l.469 1.452.805-1.546a.16.16 0 0 1 .129-.078h.057a.16.16 0 0 1 .129.078l.805 1.546.468-1.452a.13.13 0 0 1 .116-.084h.567c.073 0 .114.057.091.126M5.784 13.4a.13.13 0 0 1-.132.133H5.08a.13.13 0 0 1-.132-.133v-2.73c0-.073.059-.132.132-.132h.572a.13.13 0 0 1 .132.132zm.741-2.73v4.315c0 .074.06.133.132.133h.573a.13.13 0 0 0 .132-.133v-1.497c.242.085.51.132.792.132.803 0 1.454-.71 1.454-1.585s-.651-1.585-1.454-1.585c-.394 0-.75.171-1.012.449l-.102-.278a.14.14 0 0 0-.119-.083h-.264a.13.13 0 0 0-.132.132m.837.9a.75.75 0 0 1 .637-.371c.424 0 .767.374.767.836s-.344.837-.767.837c-.24 0-.46-.063-.637-.17zm3.575 1.963h-.572a.13.13 0 0 1-.132-.132V10.67c0-.073.059-.132.132-.132h.264c.048 0 .102.037.118.083l.102.277s.32-.448.87-.448.617.19.571.295l-.197.445c-.025.058-.09.1-.177.066a.73.73 0 0 0-.847.233V13.4a.13.13 0 0 1-.132.132m4.69-10.343a.704.704 0 0 1 .862-.497.704.704 0 1 1-.364 1.36.705.705 0 0 1-.498-.863zm1.846 2.79a.53.53 0 0 1 .194.722.53.53 0 0 1-.722.193.53.53 0 0 1-.194-.722.53.53 0 0 1 .722-.193m.664 10.968a.573.573 0 0 1 0-.81.57.57 0 0 1 .81 0 .573.573 0 0 1 0 .81.573.573 0 0 1-.81 0M15.68 9.571a.242.242 0 0 1-.42-.242.242.242 0 1 1 .42.242m-.42 5.1a.242.242 0 0 1 .42-.242.243.243 0 0 1-.088.331.243.243 0 0 1-.331-.089m3.73-2.67a.517.517 0 1 1-.516-.518.517.517 0 0 1 .517.517m-1.173-8.112a.749.749 0 1 1 1.296.75.749.749 0 0 1-1.296-.75m-5.43 10.575a.154.154 0 1 1 .267.153.154.154 0 0 1-.267-.154m2.804-8.792a.484.484 0 1 1 .935.25.484.484 0 0 1-.593.343.484.484 0 0 1-.342-.593M13.993 7.85a.308.308 0 1 1 0-.617.308.308 0 1 1 0 .617m0 1.013a.198.198 0 1 1 0 .396.198.198 0 0 1 0-.396m0-2.84a.44.44 0 1 1 0-.882.44.44 0 0 1 0 .881m-1.607 3.515a.154.154 0 1 1 .21.056.154.154 0 0 1-.21-.056m1.607 5.602a.198.198 0 1 1 0-.396.198.198 0 0 1 0 .396m0 1.013a.308.308 0 0 1 0 .616.308.308 0 1 1 0-.616m3.494-2.139a.44.44 0 0 1 .602-.16.44.44 0 0 1 .16.6.44.44 0 0 1-.762-.44m-3.494 3.966a.44.44 0 1 1 0 .88.44.44 0 0 1 0-.88m9.577-8.543a.968.968 0 1 1-1.87.502.968.968 0 0 1 1.87-.502m-6.694 6.002a.396.396 0 0 1 .56-.56.396.396 0 0 1 0 .56.396.396 0 0 1-.56 0m.974-4.47a.484.484 0 0 1 .342-.592.484.484 0 1 1 .25.935.484.484 0 0 1-.592-.342m1.407-2.715a.617.617 0 0 1 .617 1.068.617.617 0 0 1-.617-1.068m-.31-.391a.57.57 0 0 1-.81 0 .573.573 0 0 1 0-.81.57.57 0 0 1 .81 0 .573.573 0 0 1 0 .81M17.85 13.03a.484.484 0 0 1 .935.25.484.484 0 1 1-.935-.25M14.83 7.605a.33.33 0 0 1 .404-.234.33.33 0 0 1-.17.638.33.33 0 0 1-.234-.404M21.3 6.77a.88.88 0 0 1 1.203.321.88.88 0 1 1-1.525.881.88.88 0 0 1 .322-1.202zm-3.05 2.777a.44.44 0 1 1-.762.44.44.44 0 1 1 .763-.44m1.324.96a.66.66 0 0 1 .466-.808.66.66 0 0 1 .342 1.275.66.66 0 0 1-.808-.467m0 2.986a.66.66 0 1 1 1.275.341.66.66 0 1 1-1.275-.341m.859-.736a.757.757 0 1 1 0-1.514.757.757 0 0 1 0 1.514m-.676-6.514a.79.79 0 0 1 0-1.121.79.79 0 0 1 1.121 0 .793.793 0 0 1-1.12 1.12M16.534 8.31a.352.352 0 1 1-.61-.353.352.352 0 0 1 .61.352m-.639 5.586a.264.264 0 0 1 .374 0 .265.265 0 0 1 0 .373.264.264 0 0 1-.374 0 .264.264 0 0 1 0-.373m0-4.167a.264.264 0 0 1 .374 0 .264.264 0 1 1-.374 0m.515 3.992a.287.287 0 0 1-.105-.391.286.286 0 0 1 .391-.105.286.286 0 0 1-.286.496m-.486 2.32a.35.35 0 0 1 .129-.48.35.35 0 0 1 .481.128.35.35 0 0 1-.129.481.35.35 0 0 1-.481-.129zm.877-5.659a.286.286 0 0 1-.105.391.287.287 0 0 1-.391-.105.286.286 0 0 1 .496-.286zm-.249.934a.308.308 0 1 1 .596-.16.308.308 0 0 1-.596.16m0 1.366a.308.308 0 1 1 .596.16.308.308 0 0 1-.596-.16m.401-.346a.337.337 0 1 1 0-.673.337.337 0 0 1 0 .673m.483-3.775a.396.396 0 1 1-.56.561.396.396 0 0 1 .56-.56M10.02 20.013a.573.573 0 0 1-.782.21.573.573 0 0 1 .573-.992.573.573 0 0 1 .21.782m4.794-11.068a.22.22 0 1 1-.114.425.22.22 0 0 1 .114-.425m-2.539 11.837a.616.616 0 1 1-1.19-.32.616.616 0 0 1 1.19.32m2.539-5.726a.22.22 0 0 1-.114-.426.22.22 0 1 1 .114.426m-.16 5.874a.66.66 0 0 1-.66.66.66.66 0 0 1-.661-.66.66.66 0 0 1 1.32 0m-1.47-5.922a.177.177 0 0 1-.124-.216.177.177 0 0 1 .216-.124.176.176 0 0 1-.092.34m-.07 1.371a.286.286 0 1 1-.553-.148.286.286 0 0 1 .552.148m-2.796-2.273a.22.22 0 0 1-.381.22.22.22 0 0 1 .08-.3.22.22 0 0 1 .301.08m1.67 1.882a.264.264 0 1 1-.457-.264.264.264 0 0 1 .458.264m.015-1.825a.132.132 0 1 1-.187-.187.133.133 0 0 1 .187 0 .133.133 0 0 1 0 .187m-.996.81a.242.242 0 1 1-.343.342.24.24 0 0 1 0-.342.24.24 0 0 1 .343 0m.078 2.756a.35.35 0 0 1-.481.129.352.352 0 1 1 .481-.129m9.792.029a.793.793 0 0 1 0 1.12.793.793 0 0 1-1.12-1.12.793.793 0 0 1 1.12 0m-1.62-2.01a.617.617 0 0 1-.225-.843.617.617 0 0 1 .842-.225.617.617 0 0 1-.617 1.067m3.245 1.16a.88.88 0 1 1-1.525-.88.88.88 0 0 1 1.525.88m-7.267-.28a.33.33 0 1 1-.17-.637.33.33 0 0 1 .17.638M24 12a1.058 1.058 0 1 1-2.116 0A1.058 1.058 0 0 1 24 12m-.43 2.564a.97.97 0 1 1-1.872-.502.97.97 0 0 1 1.872.502m-6.583 5.881a.704.704 0 1 1-1.36.364.704.704 0 0 1 .498-.862.704.704 0 0 1 .862.498m2.125-1.082a.75.75 0 0 1-.274 1.022.75.75 0 0 1-1.022-.274.75.75 0 0 1 .274-1.023.75.75 0 0 1 1.022.274zm-3.922-1.035a.484.484 0 1 1 .935-.25.484.484 0 0 1-.935.25m2.283-.308a.528.528 0 1 1-.528-.915.528.528 0 0 1 .528.915m-4.76.28a.396.396 0 0 1-.766-.205.396.396 0 0 1 .485-.28.396.396 0 0 1 .28.485m-.897-8.276a.132.132 0 1 1 .187-.187.132.132 0 0 1-.187.187m.076-1.651a.264.264 0 0 1-.265-.458.264.264 0 0 1 .265.458m-.807-4.835a.616.616 0 1 1 1.19-.32.616.616 0 0 1-1.19.32m-.848 6.055a.22.22 0 1 1-.22.381.22.22 0 0 1-.08-.3.22.22 0 0 1 .3-.081zm.77-.908a.242.242 0 0 1-.343.343.242.242 0 0 1 .343-.343m-.532-2.062a.352.352 0 0 1 .61-.352.352.352 0 0 1-.61.352m2.858-3.552a.66.66 0 0 1 1.32 0 .66.66 0 0 1-.66.66.66.66 0 0 1-.66-.66m-.149 5.922a.176.176 0 1 1 .091.34.176.176 0 0 1-.09-.34m-.957-3.573a.396.396 0 0 1 .205.765.396.396 0 0 1-.485-.28.397.397 0 0 1 .28-.485zm.535 1.999a.286.286 0 1 1 .148.553.286.286 0 0 1-.148-.553M9.03 4.559a.57.57 0 0 1 .21-.781.573.573 0 0 1 .572.991.57.57 0 0 1-.782-.21m-.37 10.505a.264.264 0 1 1-.458.264.264.264 0 0 1 .458-.264M4.92 9.46a.46.46 0 0 1 .566-.327.46.46 0 0 1 .327.566.46.46 0 0 1-.566.327.46.46 0 0 1-.327-.567m.9-2.17a.484.484 0 1 1 .178.662.485.485 0 0 1-.178-.662m2.23 10.642a.53.53 0 0 1 0 .747.53.53 0 0 1-.748 0 .53.53 0 0 1 0-.747.53.53 0 0 1 .748 0m-1.373-1.722a.484.484 0 1 1-.839.485.484.484 0 0 1 .839-.485m.626-10.14a.53.53 0 0 1 0-.746.53.53 0 0 1 .747 0 .53.53 0 0 1 0 .747.53.53 0 0 1-.747 0m2.366 1.62a.31.31 0 0 1-.436 0 .31.31 0 0 1 0-.436.31.31 0 0 1 .436 0 .31.31 0 0 1 0 .436m0 8.623a.308.308 0 1 1-.436.435.308.308 0 0 1 .436-.436m-1.466-7.64a.264.264 0 1 1 .457.264.264.264 0 0 1-.458-.264"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 14.475a7.395 7.395 0 0 1-7.38 7.41h-.016a7.3 7.3 0 0 1-4.5-1.605A7.498 7.498 0 0 1 0 14.475V2.82h1.41v11.655a6 6 0 0 0 9.585 4.815 7.38 7.38 0 0 1-1.815-4.814v-9.54a2.82 2.82 0 0 1 5.64 0v9.54a7.37 7.37 0 0 1-1.77 4.814 5.997 5.997 0 0 0 8.383-1.304 6 6 0 0 0 1.157-3.511V2.82H24zm-10.59-9.54a1.41 1.41 0 0 0-2.82 0v9.54A6 6 0 0 0 12 18.33a6 6 0 0 0 1.41-3.855z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.98 11.645S24.533 0 11.735 0C.418 0 .064 11.17.064 11.17S-1.6 24 11.997 24C25.04 24 23.98 11.645 23.98 11.645M8.155 7.576c2.4-1.47 5.469-.571 6.618 1.638.218.419.246 1.063.108 1.503-.477 1.516-1.601 2.366-3.145 2.728.455-.39.817-.832.933-1.442a2.11 2.11 0 0 0-.364-1.677 2.14 2.14 0 0 0-2.465-.75c-.95.36-1.47 1.228-1.377 2.294.087.99.839 1.632 2.245 1.876-.21.111-.372.193-.53.281a5.1 5.1 0 0 0-1.644 1.43c-.143.192-.24.208-.458.075-2.827-1.729-3.009-6.067.078-7.956zM6.04 18.258c-.455.116-.895.286-1.359.438.227-1.532 2.021-2.943 3.539-2.782a3.9 3.9 0 0 0-.74 2.072c-.504.093-.98.155-1.44.272M15.703 3.3c.448.017.898.01 1.347.02a2 2 0 0 1 .334.047 3 3 0 0 1-.34.434c-.16.15-.341.296-.573.069-.055-.055-.187-.042-.283-.044-.447-.005-.894-.02-1.34-.003a8 8 0 0 0-1.154.118c-.072.013-.178.25-.146.338.078.207.191.435.359.567.619.49 1.277.928 1.9 1.413.604.472 1.167.99 1.51 1.7.446.928.46 1.9.267 2.877-.322 1.63-1.147 2.98-2.483 3.962-.538.395-1.205.62-1.821.903-.543.25-1.1.465-1.644.712-.98.446-1.53 1.51-1.369 2.615.149 1.015 1.04 1.862 2.059 2.037 1.223.21 2.486-.586 2.785-1.83.336-1.397-.423-2.646-1.845-3.024l-.256-.066c.38-.17.708-.291 1.012-.458q.793-.437 1.558-.925c.15-.096.231-.096.36.014.977.846 1.56 1.898 1.724 3.187.27 2.135-.74 4.096-2.646 5.101-2.948 1.555-6.557-.215-7.208-3.484-.558-2.8 1.418-5.34 3.797-5.83 1.023-.211 1.958-.637 2.685-1.425.47-.508.697-.944.775-1.141a3.2 3.2 0 0 0 .217-1.158 2.7 2.7 0 0 0-.237-.992c-.248-.566-1.2-1.466-1.435-1.656l-2.24-1.754c-.079-.065-.168-.06-.36-.047-.23.016-.815.048-1.067-.018.204-.155.76-.38 1-.56-.726-.49-1.554-.314-2.315-.46.176-.328 1.046-.831 1.541-.888a7 7 0 0 0-.135-.822c-.03-.111-.154-.22-.263-.283-.262-.154-.541-.281-.843-.434a1.76 1.76 0 0 1 .906-.28 3.4 3.4 0 0 1 .908.088c.54.123.97.042 1.399-.324-.338-.136-.676-.26-1.003-.407a10 10 0 0 1-.942-.493c.85.118 1.671.437 2.54.32l.022-.118-2.018-.47c1.203-.11 2.323-.128 3.384.388.299.146.61.266.897.432.14.08.233.24.348.365.09.098.164.23.276.29.424.225.89.234 1.366.223l.01-.16c.479.15 1.017.702 1.017 1.105-.776 0-1.55-.003-2.325.004-.083 0-.165.061-.247.094.078.046.155.128.235.131m-1-1.147a.118.118 0 0 0-.016.19.18.18 0 0 0 .246.065c.075-.038.148-.078.238-.125-.072-.062-.13-.114-.19-.163-.106-.087-.193-.032-.278.033"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.95 0C1.33 0 0 1.32 0 2.95v18.1C0 22.68 1.32 24 2.95 24h18.1c1.62 0 2.95-1.32 2.95-2.95V2.95A2.95 2.95 0 0 0 21.05 0zm0 1.09h18.1c1.04 0 1.85.818 1.85 1.86v14h-5.27c-.335-.796-2.57-6.47.283-10.9a.516.517 0 0 0-.443-.794c-5.24.083-8.2 3.19-9.74 6.21-1.35 2.64-1.63 4.91-1.69 5.53H1.09v-14c0-1.04.817-1.86 1.85-1.86zm13.6 5.24c-2.62 5.24.248 11.4.248 11.4a.516.517 0 0 0 .469.301h5.62v3.05a1.84 1.84 0 0 1-1.85 1.86h-18.1c-1.04 0-1.85-.818-1.85-1.86v-3.05h5.39a.516.517 0 0 0 .514-.477s.226-2.8 1.66-5.62c1.34-2.62 3.67-5.17 7.91-5.57z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.488 7.469 0 15.05h11.585l1.301-3.576H7.922l3.033-3.507.01-.092L8.993 4.48h8.873l-6.878 18.925h4.706L24 .595H2.543z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.864 19.826h-4.107l-3.227-9.393-2.28 9.39H5.143L0 4.65h4.217l4.354 13.128c1.558-4.4 2.534-8.5 1.021-13.128H13.7ZM20.57 4.174a15.7 15.7 0 0 1-3.425 4.171 17.1 17.1 0 0 1 3.425 5.56A17.1 17.1 0 0 1 24 8.345a15.7 15.7 0 0 1-3.43-4.17Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.69 6.605c.507-3.094-1.24-3.944-1.24-3.944s.073 2.519-4.555 3.053C13.787 6.188 0 5.83 0 5.83l4.43 5.081c1.2 1.378 1.838 1.537 3.187 1.633 1.349.09 4.327.058 6.345-.096 2.206-.169 5.35-.888 7.477-2.535 1.09-.843 2.039-2.016 2.25-3.308m.284 3.205s-.556 1.105-3.33 2.853c-1.182.744-3.637 1.535-6.793 1.84-1.705.166-4.842.031-6.188.031-1.354 0-1.974.285-3.187 1.652L0 21.23s1.55.008 2.72.008 8.488.425 11.735-.468c10.546-2.899 9.518-10.96 9.518-10.96"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 7.354 2.113 9.292h.801a1.54 1.54 0 0 0 1.506-1.218l1.351-6.34a.17.17 0 0 1 .167-.137c.08 0 .15.058.167.137l1.352 6.34a1.54 1.54 0 0 0 1.506 1.218h.805l2.113-9.292h-.565c-.62 0-1.159.43-1.296 1.035l-1.26 5.545-1.106-5.176a1.76 1.76 0 0 0-2.19-1.324c-.639.176-1.113.716-1.251 1.365l-1.094 5.127-1.26-5.537A1.33 1.33 0 0 0 .563 7.354zm13.992 0a.95.95 0 0 0-.951.95v8.342h.635a.95.95 0 0 0 .951-.95V7.353h-.635zm1.778 0 3.158 4.66-3.14 4.632h1.325c.368 0 .712-.181.918-.486l1.756-2.59a.12.12 0 0 1 .197 0l1.754 2.59c.206.305.55.486.918.486h1.326l-3.14-4.632L24 7.354h-1.326c-.368 0-.712.181-.918.486l-1.772 2.617a.12.12 0 0 1-.197 0L18.014 7.84a1.11 1.11 0 0 0-.918-.486z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.637 10.393h2.318l-2.746 3.592h-2.32zm-.175-.351-2.918 3.82a.29.29 0 0 0-.03.307.3.3 0 0 0 .264.166h2.605l2.943-3.848a.28.28 0 0 0 .027-.293.28.28 0 0 0-.25-.152zM9.127 8.175a.09.09 0 0 1 .074-.042h1.52l.219-1.255a.08.08 0 0 1 .082-.066l1.423-.001q.04 0 .062.024a.1.1 0 0 1 .02.069l-.142.812 6.69.005c.037 0 .062.021.075.043.008.015.018.047-.003.076l-.604.79 4.958-.002a.07.07 0 0 1 .057.034.05.05 0 0 1 0 .058l-4.121 5.395c-.047.06-.045.209-.012.272.034.065.151.156.225.156l2.898.003a.08.08 0 0 1 .063.028.08.08 0 0 1 .019.066l-.22 1.26a.08.08 0 0 1-.083.067H11.299l-.18-.001a1 1 0 0 1 .018.193 1.027 1.027 0 1 1-1.027-1.027 1.03 1.03 0 0 1 .9.532l4.495-5.892c.072-.152.036-.207-.003-.296-.028-.068-.137-.138-.255-.136H12.1l-.804 4.59a.08.08 0 0 1-.08.061H9.791a.08.08 0 0 1-.063-.028.08.08 0 0 1-.018-.066l.873-4.982-3.551 6.963a.18.18 0 0 1-.158.091l-1.21.007c-.043 0-.079-.031-.082-.068l-.334-5.058-2.624 5.029a.18.18 0 0 1-.157.091H1.241a.08.08 0 0 1-.081-.072l-.8-7.677a.1.1 0 0 1 .02-.064.09.09 0 0 1 .063-.023h1.649c.045 0 .083.036.083.084l.247 5.01 2.426-5.051a.08.08 0 0 1 .073-.043l1.503-.007c.042 0 .079.032.081.068l.245 5.048zm1.825-1.715a.35.35 0 0 0-.345.29l-.181 1.032H9.147c-.13 0-.247.07-.314.192l-1.8 3.84-.178-3.712a.35.35 0 0 0-.35-.32H4.868a.35.35 0 0 0-.313.193L2.704 11.83l-.183-3.698a.35.35 0 0 0-.35-.35H.351a.35.35 0 0 0-.259.11.37.37 0 0 0-.091.272l.816 7.842a.35.35 0 0 0 .349.311h1.353a.45.45 0 0 0 .396-.237l2.067-3.96.255 3.886a.35.35 0 0 0 .348.311h1.343a.45.45 0 0 0 .396-.239l2.512-4.925-.486 2.778a.36.36 0 0 0 .076.287.35.35 0 0 0 .268.125h1.592a.35.35 0 0 0 .343-.281l.766-4.372h2.735l-4.133 5.41a1.38 1.38 0 0 0-.884-.32c-.76 0-1.381.62-1.381 1.38 0 .761.62 1.38 1.38 1.38a1.39 1.39 0 0 0 1.374-1.222h10.912a.35.35 0 0 0 .344-.291l.25-1.42a.35.35 0 0 0-.078-.286.35.35 0 0 0-.268-.124l-2.83-.002 4.126-5.4a.33.33 0 0 0 .019-.339.33.33 0 0 0-.295-.179h-4.414l.28-.366a.352.352 0 0 0-.29-.547h-6.44l.088-.494a.36.36 0 0 0-.081-.289.34.34 0 0 0-.265-.121z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.105 12.001 3.307-3.708-4.854-1.059.495-4.944-4.55 1.996L12 0 9.495 4.287 4.947 2.291l.494 4.944L.587 8.289l3.305 3.707-3.305 3.713 4.854 1.053-.5 4.945 4.553-1.994L12 24l2.504-4.287 4.55 1.994-.495-4.938 4.854-1.06zm1.605 2.792-2.861-.982-1.899-2.471 2.526.942zm.459-6.096-2.602 2.918-3.066-1.141 1.844-2.612zm-4.288-1.324-1.533 2.179.088-3.162 1.788-2.415zm-3.304-2.399 3.091-1.354L15.9 5.998l-2.943 1.049zm1.187 1.772-.096 3.652-3.341 1.12V7.969zM12 1.308l1.969 3.371L12 7.199l-1.971-2.521zM9.423 4.974l1.619 2.072-2.948-1.048L6.332 3.62zm2.245 2.995v3.549l-3.335-1.12-.102-3.652zM7.564 6.39l.086 3.162-1.532-2.179-.341-3.397zM1.83 8.692l3.824-.83 1.839 2.612-3.065 1.136zm2.694 3.585 2.526-.937-1.9 2.471-2.861.977zm-2.093 3.159 2.929-1 3.045.896-2.622.837zm3.28 5.212.392-3.896 3.111-.982.082 3.31zm3.691-5.708-3.498-1.03 2.226-2.892 3.335 1.126zm2.266 7.191-1.711-2.934-.066-2.771 1.777 2.597zm-1.73-6.8L12 12.532l2.063 2.799L12 18.336zm4.104 3.866-1.715 2.934v-3.107l1.782-2.597zm-1.514-7.052 3.341-1.126 2.221 2.892-3.499 1.03zm2.175 6.935.077-3.31 3.116.982.386 3.901zm3.514-2.912-2.625-.837 3.049-.896 2.928 1.003z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.335 12.431c-.552.15-.615.18-1.164.337-.589-.337-1.107-.526-1.595-.463.057-.306.151-.525.245-.8 1.036-.15 1.805.4 2.514.926m5.308 7.201a10.8 10.8 0 0 1-1.907 1.52h-.006l-3.702-4.613 3.07.336s1.47.151 1.807 0c.308-.117 1.963-2.449 1.963-2.449s-4.76-3.009-6.384-4.666c.188-2.793-.213-6.508-.213-6.478-1.193 1.195-1.35 1.383-2.544 2.489-.52-1.688-.769-2.27-1.289-3.958-1.568 1.289-2.763 3.464-3.62 6.016a12 12 0 0 0-.55.656q-.171.234-.345.475a16 16 0 0 0-1.101 1.819q-.094.17-.188.35c-.913 1.788-1.676 3.79-2.338 5.604A10.8 10.8 0 0 1 1.205 12c0-2.862 1.138-5.613 3.163-7.64A10.79 10.79 0 0 1 12 1.202a10.8 10.8 0 0 1 7.642 3.158A10.83 10.83 0 0 1 22.797 12a10.81 10.81 0 0 1-3.154 7.633M12 6.691c.832-.801.951-.92 1.75-1.69.064 1.533.032 2.334-.062 4.204-.463-.458-1.381-1.044-1.381-1.044S12.126 7.09 12 6.69m3.834 15.463C9.218 24.547 4.436 20.14 3.417 18.602q.007-.021.006-.039c.92-3.889 2.058-8.535 3.884-9.91.955-1.655 1.231-4.113 2.943-5.401.432 1.288 1.107 3.958 1.57 5.246 2.025 2.025 5.087 4.545 7.146 5.59.212.12.489.98.489.98l-.825 1.038-8.835-.887c-.2-.02-.394-.028-.594-.028-.569 0-1.15.073-1.833.18.432-1.07 1.35-1.936 1.35-1.936s-.855-.519-1.505-.605c.187-.432.681-.989.8-1.138-.244.087-2.026.888-2.208 1.563.857.214 1.47.487 1.47.487s-.95.957-1.132 2.612c0 0 2.82-.43 4.939-.153.063.03.094.03.125.03l1.102.031 3.509 5.84.027.046a.01.01 0 0 1-.011.006m4.652-18.64A12.02 12.02 0 0 0 12 0C8.818 0 5.768 1.27 3.516 3.515a12.03 12.03 0 0 0-3.513 8.484c0 3.183 1.27 6.235 3.512 8.478a11.98 11.98 0 0 0 16.97 0 11.97 11.97 0 0 0 3.512-8.478c0-3.181-1.26-6.233-3.511-8.484z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.74 10.7c-.53-1.53.14-4 .14-4S13.6 8.01 11.93 8s-3.8-1.3-3.8-1.3.56 2.46.07 4.04c-.48 1.58-2.47 3.34-2.47 3.34s2.58.23 3.85 1.1S12 18.64 12 18.64s.78-2.35 2.32-3.41c1.54-1.07 3.96-1.15 3.96-1.15s-2-1.84-2.54-3.37zm-2 3.69c-1.09.81-1.75 2.19-1.75 2.19s-.76-1.43-1.8-2.22c-1.05-.79-2.57-.97-2.57-.97a5.06 5.06 0 0 0 1.53-2.37c.46-1.54.18-2.73.18-2.73s.92.7 2.62.7 2.79-.7 2.79-.7-.38 1.58.07 2.7c.44 1.14 1.57 2.41 1.57 2.41s-1.56.17-2.64.99m-.01-4.79s-.95.38-1.77.37c-.82 0-1.7-.37-1.7-.37.05.58 0 1.15-.17 1.7-.27.86-.91 1.64-.91 1.64A4.23 4.23 0 0 1 12 14.95s.45-.85 1.18-1.33c.5-.31 1.05-.55 1.63-.7 0 0-.74-.78-1.02-1.57-.28-.78-.06-1.75-.06-1.75M20.1 12l3.31-3.7-4.85-1.07.5-4.94-4.56 2L12 0 9.5 4.29l-4.55-2 .49 4.95L.59 8.29 3.89 12 .6 15.7l4.85 1.07-.5 4.94 4.55-2L12 24l2.5-4.29 4.56 2-.5-4.94 4.85-1.06-3.3-3.71zm-5.27 3.95C14 16.56 12 20.81 12 20.81s-1.5-3.86-3-4.86c-1.48-1-5.38-1.22-5.38-1.22s2.99-2.37 3.57-4.47c.59-2.1-.37-5.37-.37-5.37s2.9 2.1 5.08 2.1c2.17 0 5.26-2.1 5.26-2.1s-.82 4.5-.53 5.46c.3.96 3.73 4.38 3.73 4.38s-4.7.62-5.54 1.22z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.216 17.814 7.704 9.368l.02-.02c.391.239.91.19 1.249-.147l3.041-3.016 7.241 7.184c.397.394.402 1.029.005 1.426zm-5.253-3.017-3.03 3.017L0 9.915l3.746-3.73 7.217 7.187a1.005 1.005 0 0 1 0 1.425M24 9.913l-3.725 3.727L16 9.367l.02-.021c.388.239.903.19 1.239-.146l3.014-3.015z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.475 0A5.463 5.463 0 0 0 0 5.475v13.05A5.463 5.463 0 0 0 5.475 24h13.05A5.463 5.463 0 0 0 24 18.525V5.475A5.463 5.463 0 0 0 18.525 0zm4.552 3.6 4.026 4.029-4.617 4.623-.022-.023a1.09 1.09 0 0 0-.158-1.339L5.999 7.63zM14.528 8l4.027 4.03-8.528 8.536L6 16.536z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.227 4.857A2.23 2.23 0 0 0 0 7.094v7.457a2.236 2.236 0 0 0 2.237 2.237h9.253l4.229 2.355-.962-2.355h7.006c1.236 0 2.237-1 2.237-2.237V7.094c0-1.236-1-2.237-2.237-2.237zm8.08 1.311a.86.86 0 0 1 .535.2.77.77 0 0 1 .304.56.85.85 0 0 1-.098.47c-.382.707-.696 1.894-.951 3.542-.246 1.6-.334 2.846-.275 3.739q.03.367-.118.647a.63.63 0 0 1-.52.353c-.255.02-.52-.098-.775-.362-.913-.933-1.639-2.326-2.169-4.18a184 184 0 0 0-1.413 2.825c-.578 1.11-1.069 1.678-1.481 1.708-.265.02-.49-.206-.687-.677q-.75-1.928-1.619-7.448c-.03-.255.02-.48.157-.657.137-.186.344-.284.618-.304q.75-.06.854.706c.304 2.051.638 3.788.991 5.21l2.149-4.09q.294-.56.736-.589c.431-.03.696.245.804.824.246 1.305.56 2.414.932 3.356.255-2.492.687-4.288 1.295-5.397.148-.274.363-.412.648-.431a1 1 0 0 1 .084-.004zm3.734 1.063q.25 0 .53.06a2.28 2.28 0 0 1 1.57 1.137c.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943 0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m6.152 0q.25 0 .53.06c.696.146 1.216.52 1.57 1.137.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943 0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m-6.107 1.645c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168 3.3 3.3 0 0 0-.069.716c0 .284.06.589.177.893.147.382.343.589.579.638.245.049.51-.06.795-.315.363-.323.608-.804.745-1.452.05-.225.069-.47.069-.726a2.5 2.5 0 0 0-.176-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014m6.152 0c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168c-.049.225-.069.47-.069.716 0 .284.06.589.177.893.147.382.344.589.579.638.245.049.51-.06.795-.315.363-.323.608-.804.745-1.452.04-.225.07-.47.07-.726a2.5 2.5 0 0 0-.177-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.754 9.58a.754.754 0 0 0-.754.758v2.525c0 .42.339.758.758.758h3.135l1.431.799-.326-.799h2.373a.757.757 0 0 0 .758-.758v-2.525a.757.757 0 0 0-.758-.758zm2.709.445h.03a.3.3 0 0 1 .179.067.26.26 0 0 1 .103.19.3.3 0 0 1-.033.16q-.194.36-.322 1.199-.124.813-.094 1.267a.4.4 0 0 1-.039.219.21.21 0 0 1-.176.12c-.086.006-.177-.034-.263-.124q-.465-.474-.735-1.416-.324.638-.478.957-.294.563-.502.578-.134.01-.233-.228-.254-.654-.548-2.524a.3.3 0 0 1 .054-.222c.047-.064.116-.095.21-.102q.253-.02.288.238.156 1.043.336 1.766l.727-1.387q.1-.189.25-.199.219-.015.273.28.125.66.315 1.136.13-1.266.44-1.828a.26.26 0 0 1 .218-.147m1.293.36a1 1 0 0 1 .18.02q.35.074.53.386c.107.18.161.395.161.654q0 .513-.26.94-.299.499-.781.5a1 1 0 0 1-.18-.022.76.76 0 0 1-.531-.384 1.3 1.3 0 0 1-.158-.659q0-.514.258-.937.303-.499.78-.498zm2.084 0a1 1 0 0 1 .18.02q.353.074.53.386c.107.18.16.395.16.654q0 .513-.259.94-.299.499-.781.5a1 1 0 0 1-.18-.022.76.76 0 0 1-.531-.384 1.3 1.3 0 0 1-.16-.659q0-.514.26-.937.303-.499.78-.498zm4.437.047q-.459 0-.718.304-.258.306-.256.856 0 .592.256.906.255.316.744.316.473-.001.728-.316.256-.315.256-.883c0-.568-.087-.673-.26-.879q-.262-.303-.75-.304m-1.466.002a1.13 1.13 0 0 0-.84.326q-.333.33-.332.838-.001.545.328.88t.861.336q.156.001.346-.052v-.54a1.1 1.1 0 0 1-.303.051.55.55 0 0 1-.422-.177.7.7 0 0 1-.16-.48q0-.287.156-.468a.5.5 0 0 1 .397-.181q.153-.001.332.049v-.537a1.4 1.4 0 0 0-.363-.045m12.414 0a1.14 1.14 0 0 0-.84.326q-.333.33-.332.838-.001.545.328.88.33.335.861.336.156.001.346-.052v-.54a1.1 1.1 0 0 1-.303.051.55.55 0 0 1-.422-.177.7.7 0 0 1-.16-.48q0-.287.156-.468a.5.5 0 0 1 .397-.181q.153-.001.332.049v-.537a1.4 1.4 0 0 0-.363-.045m-9.598.06-.29 2.264h.579l.156-1.559.395 1.559h.412l.379-1.555.164 1.555h.603l-.304-2.264h-.791l-.12.508q-.046.195-.087.4l-.067.352a30 30 0 0 0-.258-1.26zm2.768 0-.29 2.264h.579l.156-1.559.396 1.559h.412l.375-1.555.165 1.555h.603l-.305-2.264h-.789l-.119.508q-.046.195-.086.4l-.066.352a30 30 0 0 0-.26-1.26zm3.988 0v2.264h.611v-1.031h.012l.494 1.03h.645l-.489-1.019a.61.61 0 0 0 .37-.552.6.6 0 0 0-.25-.506q-.25-.185-.68-.186zm3.377 0v2.264H24v-.483h-.63v-.414h.54v-.468h-.54v-.416h.626v-.483zm-4.793.004v2.264h1.24v-.483h-.627v-.416h.541v-.468h-.54v-.415h.622v-.482zm2.025.432q.219.003.313.072.093.068.091.227 0 .234-.404.24zm-15.22.011q-.156-.001-.301.211a1.08 1.08 0 0 0-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215q.125.023.27-.106.183-.164.252-.492.023-.116.023-.246 0-.147-.06-.303c-.05-.13-.116-.198-.196-.215a.3.3 0 0 0-.045-.006zm2.083 0q-.155-.001-.3.211a1.08 1.08 0 0 0-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215q.125.023.27-.106.183-.164.252-.492.021-.116.023-.246 0-.147-.06-.303c-.05-.13-.116-.198-.196-.215a.3.3 0 0 0-.045-.006m4.428.006c.233 0 .354.218.354.66-.004.273-.038.46-.098.553a.29.29 0 0 1-.262.139.27.27 0 0 1-.242-.139q-.084-.14-.084-.562c0-.436.11-.65.332-.65Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087q.036.078.078.149c-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709A10.79 10.79 0 0 1 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.268 10.541C23.268 4.715 18.544 0 12.728 0c-1.614 0-3.191.317-4.663.952a12 12 0 0 0-3.817 2.574 11.92 11.92 0 0 0-3.516 8.478 11.92 11.92 0 0 0 3.516 8.48 12 12 0 0 0 3.817 2.573 11.9 11.9 0 0 0 4.671.943c1.56 0 3.05-.3 4.416-.837l-.908-2.292a9.5 9.5 0 0 1-3.508.67 9.48 9.48 0 0 1-6.743-2.794A9.48 9.48 0 0 1 3.2 12.004a9.48 9.48 0 0 1 2.794-6.742 9.5 9.5 0 0 1 6.743-2.794 8.072 8.072 0 0 1 6.734 12.524l-2.098-5.165c-.308-.758-.679-1.895-2.071-1.895s-1.763 1.146-2.063 1.895l-1.93 4.769-2.591-6.54H5.993l3.226 7.95c.326.802.688 1.895 2.09 1.895 1.4 0 1.753-1.093 2.08-1.895l1.912-4.724 1.921 4.724c.388.978.802 1.895 2.08 1.895.908 0 1.481-.582 1.798-.96a10.5 10.5 0 0 0 2.168-6.4"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.021 1.412c-1.064 0-.611 1.579-.527 2.093 0 .025.086 3.57.102 4.379q.245-.065.477-.12l.321-.08c.015-.782.094-4.166.096-4.184.07-.551.628-2.088-.469-2.088m-.311 12.04c.119-.04.238-.075.345-.11l.23-.071c0-.228.068-3.372.08-3.944a7 7 0 0 0-.732.211zm.392 1.193c-.04.015-.144.059-.21.081-.065.023-.156.06-.156.085 0 .024.066 3.62.066 3.699 0 .744.379.749.379 0 0-.053.076-3.916.076-3.916zM11.247 4.5a5.5 5.5 0 0 0-.834.339c-.297.098-.714.119-1.15.588a6 6 0 0 0-.397.51c-.13.187-.137.49-.238.653-.138.238-.105.37-.105.37v.007a.63.63 0 0 1-.16.295.6.6 0 0 1-.554.221c.198.1.476-.039.476-.039a4 4 0 0 0-.105.393c.222-.501.426-.684.489-.736.095.022.292.013.659-.197.414-.238 1.037-.625 1.213-.87a1.6 1.6 0 0 1 .733-.554q-.018-.565-.027-.98M9.499 6.063l-.215.046.257-.413.3.01zm1.28 8.64c0 .466.345.714.689.913 0-.079-.014-.801-.014-.813.007-.144.146-.231.26-.285a6 6 0 0 1 .545-.208c.103-.036.19-.07.287-.099.69-.208 1.49-.476 1.49-1.31 0-.832-.685-1.19-1.429-1.443 0 .268-.013.66-.019.93.317.119.526.275.526.514 0 .3-.321.476-.549.562a6 6 0 0 1-.28.097 9 9 0 0 0-.565.19 3 3 0 0 0-.28.12c-.328.164-.662.406-.661.832m4.575-8.15c0-.853-.619-1.8-2.136-2.135a4 4 0 0 0-.463-.054c0 .129-.01.424-.01.424 0 .093-.01.434-.012.508a2 2 0 0 1 .292.04c.882.211 1.197.715 1.197 1.217 0 .81-.692 1.117-1.547 1.347l-.282.074c-.258.065-.524.126-.787.197l-.28.08c-.943.287-1.755.742-1.755 1.904s.926 1.588 1.83 1.866l-.02-1.002c-.399-.187-.68-.433-.68-.848 0-.414.256-.65.648-.833a3 3 0 0 1 .279-.108 9 9 0 0 1 .743-.206l.282-.068c1.273-.297 2.701-.696 2.701-2.403m-2.848 9.536c.428.217.824.517.989 1.085.073-.94-.455-1.348-.977-1.623zm7.014-10.8c.46.547 1.263.87 1.733 1.419-.337-1.623-1.59-2.947-3.07-3.264.723.544.879 1.3 1.337 1.845M1.724 9.402c1.02-2.22 2.542-1.75 3.186-3.864-.357.648-2.024.922-2.798 2.585.394-.988.196-2.5.863-3.315C.982 6.278 1.83 8.656 1.724 9.402m1.847 5.324c.183.864-.357 2.112.5 3.304-.886-.992-2.762-1.245-3.526-2.754.952 3.69 3.452 2.928 4.57 3.73-.924-1.328-.168-2.21-1.544-4.28zm-.287 2.315c-.546-2.06.427-2.774-.317-4.75-.077 1.114-.82 1.657-.319 3.69C1.764 14.26.396 13.617 0 12.434c.027 3.235 2.627 3.715 3.284 4.607m3.992 3.452c-.765-1.06-.238-1.658-2.392-3.581.454.702-.015 1.585 1.435 2.958-1.419-.833-3.375-.476-4.32-1.596 1.622 3.103 4.47 1.837 5.277 2.222zm10.405-.622c1.45-1.374.98-2.262 1.435-2.96-2.15 1.924-1.627 2.523-2.392 3.582.807-.386 3.655.88 5.275-2.219-.942 1.122-2.9.763-4.318 1.6zm2.248-1.844c.854-1.19.317-2.44.5-3.304-1.376 2.07-.62 2.952-1.547 4.285 1.124-.801 3.614-.042 4.57-3.73-.764 1.507-2.637 1.76-3.523 2.752zm-3.435 2.612a10.6 10.6 0 0 0-2.35-.357 5.7 5.7 0 0 0-2.143.365 5.7 5.7 0 0 0-2.142-.365 10.6 10.6 0 0 0-2.351.357c-1.294.344-2.411.61-3.386.12.934.833 2.023 1.124 3.598.952 1.31-.14 2.37-.797 3.605-.787h.049a6.6 6.6 0 0 0-2.038 1.584l.595.08s.628-1.26 2.07-1.59c1.443.33 2.07 1.59 2.07 1.59l.595-.08a6.6 6.6 0 0 0-2.038-1.576h.05c1.235-.01 2.293.647 3.603.787 1.575.17 2.665-.126 3.6-.952-.975.487-2.093.22-3.387-.124zM3.055 10.057c-.533 1.024-1.361 1.258-1.27 3.377C1.335 11.55.266 10.854.28 9.652c-.743 3.13 1.242 3.502 1.752 4.814-.075-1.88 1.124-2.26 1.023-4.41M3.8 7.64c-.185.26-.315.37-.81.778a4.02 4.02 0 0 0-1.443 2.353C1.598 9.625.89 7.976 1.36 6.774c-1.824 2.577.105 4.12.173 5.054.474-1.796 1.561-1.81 2.267-4.187m18.651 3.131A4.03 4.03 0 0 0 21.01 8.42c-.495-.408-.625-.519-.81-.778.705 2.38 1.793 2.39 2.26 4.187.069-.933 1.998-2.477.172-5.054.476 1.202-.232 2.85-.18 3.998M24 12.44c-.397 1.183-1.764 1.825-2.649 3.551.501-2.037-.238-2.58-.319-3.69-.743 1.979.238 2.69-.316 4.75.658-.901 3.258-1.381 3.285-4.616zm-3.05-2.382c-.102 2.15 1.099 2.53 1.023 4.404.51-1.31 2.5-1.683 1.752-4.813.014 1.2-1.055 1.904-1.501 3.775.083-2.108-.745-2.342-1.275-3.366M4.481 5.296c.461-.547.617-1.3 1.338-1.845-1.48.317-2.737 1.642-3.07 3.264.464-.555 1.268-.877 1.728-1.425zm14.613.248c.644 2.115 2.166 1.645 3.185 3.864-.106-.746.743-3.124-1.25-4.594.667.817.47 2.327.863 3.315-.777-1.669-2.44-1.943-2.803-2.591zm-5.17 1.195a5 5 0 0 0-1.217-.328v.272a4.8 4.8 0 0 1 1.119.307.7.7 0 0 0 .099-.251m-.308-2.619.081-.073-.154-.065-.407-.008-.106.073-.238-.02v.058a4 4 0 0 1 .419.044l.198-.017zm-.789 8.778c0-.069-.091-.137-.227-.201h-.025c0 .056 0 .332-.008.467.168-.076.26-.157.26-.266M8.114 7.721a1 1 0 0 1 .034-.15.7.7 0 0 1-.167.017zm3.895 11.973a8.303 8.303 0 0 0 .847-16.56c0 .016 0 .033-.01.048l-.044.218a8 8 0 0 1 4.836 2.261l-.917.917.035-.162-.12-.052-.163-.01.034-.106-.11-.375-.23-.25-.713-.378-.062.065-.13.038a2.14 2.14 0 0 1 .379 1.204v.163l.357.446-.167.038.11.167-.312.312-.126-.238a2.1 2.1 0 0 1-.238.467l.07.065-.965.965a3 3 0 0 0-.181-.16 5 5 0 0 1-.284.118l.082.065-.048.048-.12.063-.041.12-.07-.07-.204.067.056.09.14-.038.092.008.007-.05.07-.036.022-.042.126-.036h.099q.03.026.057.053l-.388.369-.028-.04-.4.065-.09.09-.087.01.248-.238-.088-.044-.232.31.068-.008v.12l.084.032.017.12-.14-.028-.145.026-.357-.18-.028 1.417c.833.278 1.708.68 1.708 1.738a1.31 1.31 0 0 1-.595 1.116l-.018.012-.026.018c-.336.221-.767.34-1.14.457l-.011.74c.595.295 1.315.725 1.248 1.955-.008.302-.126.385-.227.413a6 6 0 0 1-1.071.17v.27a6.65 6.65 0 0 0 4.14-1.828l.963.964a8.02 8.02 0 0 1-11.105.023l.964-.964a6.65 6.65 0 0 0 4.082 1.803v-.27a6.38 6.38 0 0 1-3.895-1.723l.257-.258.358.04.188-.202.492.017.073-.17-.018-.073a5 5 0 0 0 2.51 1.003v-.271a4.75 4.75 0 0 1-2.704-1.24l.965-.966a3.4 3.4 0 0 0 .782.525 1 1 0 0 1 .098-.253 3.1 3.1 0 0 1-.69-.463l.969-.967a1.8 1.8 0 0 0 .516.287v-.29a1.5 1.5 0 0 1-.319-.19l.273-.272a7 7 0 0 1-.288-.093l-.184.183a1.5 1.5 0 0 1-.23-.344 3.3 3.3 0 0 1-.477-.254 1.87 1.87 0 0 1-.903-1.64 1.97 1.97 0 0 1 .39-1.25l-.961-.962a4.75 4.75 0 0 1 2.575-1.266q.002-.14-.006-.272a5.02 5.02 0 0 0-2.76 1.35l-.163-.16a5 5 0 0 0-.13.252l.103.103a5.01 5.01 0 0 0-1.364 3.355H5.61a6.38 6.38 0 0 1 1.77-4.325l.433.435h.062a.7.7 0 0 0 .246-.072L7.57 6.8a6.5 6.5 0 0 1 .952-.76 2 2 0 0 1 .068-.2 3 3 0 0 1 .208-.28A6.7 6.7 0 0 0 7.38 6.605l-.964-.964a8 8 0 0 1 4.773-2.237l-.012-.06-.039-.207a8.304 8.304 0 0 0 .867 16.562zm1.799-5.73v-.008zm4.02-8.109a8 8 0 0 1 2.22 5.456h-1.37a6.6 6.6 0 0 0-.714-2.913l.012-.024.094.05.023-.073-.238-.427-.29-.4-.342-.28a8 8 0 0 0-.366-.42zm-1.743 1.747.327.014.079.094-.04.139.451.286.09-.011.583.667.238-.084a6.4 6.4 0 0 1 .595 2.604h-1.364a5 5 0 0 0-.127-1.037l.063-.085.084-.427-.064-.46-.164-.528-.381-.557.093.049.046-.047-.306-.207-.02.068.306.437.172.357.12.357.039.238.063.402-.12.009s-.131-.247-.172-.348l.06-.092-.118-.166v-.167l-.084-.105-.103.013a3 3 0 0 0-.119-.203l.074.037.019-.02-.04-.085.09-.05-.04-.05-.133.05.049-.207-.079-.045-.07.165a5 5 0 0 0-.496-.63zM15.81 10.8l.245-.134.25-.038.055-.119.139-.083.054-.12.042-.2a4 4 0 0 1 .055.215l-.132.394v.133l.192-.255a4.6 4.6 0 0 1 .067.714h-1.19l-.027-.104.14-.11.026-.067.061-.045.162-.017.017-.071zm-1.638-.937.12-.029v-.028l-.12-.082.042-.257.146-.147a3 3 0 0 1 .254.33l-.051.158-.134-.095-.101.027.05.094h.05l-.056.14-.038-.056zm.523 4.531-.296-.083-.088.032-.166-.127-.157-.056c.077-.056.152-.12.225-.176l.238.17.185.099.092.091zm-.15-5.263.965-.965a5 5 0 0 1 .595.802L15.986 9l.006.216.357.228a5 5 0 0 1 .226.61l-.063.092-.13.084-.033.2-.09.05-.074.088-.075-.028h-.133l.077-.104.056-.273.088-.055-.249-.256-.194.066-.044.182-.119.132-.127-.105-.045-.112.072-.045.04.074.06-.023-.026-.119h-.085l-.006.05-.056.011-.303-.356-.102-.077.039-.043.09-.031-.083-.033s-.106.023-.119.023l.06.077h-.152a3 3 0 0 0-.304-.393m.491 5.136-.13-.131.1-.13.125-.257-.048-.071.083-.19-.01-.172-.05-.178-.119-.041-.044.1-.071-.02a3.2 3.2 0 0 0 .286-.498l.119-.052.069-.093.033.038.083-.1-.066-.083.06-.017.112.045h.21l.128-.067.334-.088-.063-.11-.022-.135.179.079.066-.04-.033-.138-.215.087-.238-.05-.184-.375h1.044a4.75 4.75 0 0 1-1.318 3.105l-.142-.144.062-.192-.112-.423zm.185 2.662.128-.276-.05-.119.19-.166v-.1l-.162-.102.133-.265.2-.262-.2-.215h-.15l-.093-.151a8 8 0 0 0 .238-.206l.965.965a6.5 6.5 0 0 1-1.2.899zm1.204-1.273.107-.12-.1-.528-.07-.027.043-.09-.228-.07-.044.187-.023.238-.048.044-.416-.416a5.02 5.02 0 0 0 1.397-3.294h1.365a6.37 6.37 0 0 1-1.797 4.26zm.376.375a6.65 6.65 0 0 0 1.877-4.45h1.364a8 8 0 0 1-2.275 5.415zM8.59 14.708a5 5 0 0 1-.284-.319l.042-.345-.144-.33-.036-.518-.161-.315.033-.195-.195-.375-.17-.085.068-.2-.07-.156.07-.18h.187l.066-.108h.319l.049.094-.06.33-.038.055.119.261-.079.043-.054-.07-.024.027.055.155.094.18h.044l.03-.176-.045-.06v-.109l-.014-.226.06-.397-.065-.107h.229a3.4 3.4 0 0 0 .939 2.162zm-.905-2.667-.128.202h-.222l-.018-.013a5 5 0 0 1-.069-.648h.41l-.098.328zm.449-.937.025-.271.162-.094.289.051.044.053a3 3 0 0 0-.044.469h-.327zm1.389 1.02.068-.034.17.134-.077.063.2.134-.004-.143.107-.177.112.119.119.164-.22.045.095.188.144-.076-.014-.06.107-.072.063-.298a1.8 1.8 0 0 0 .313.476l-.964.965a3.12 3.12 0 0 1-.845-1.812l.197.21h.186zm-.993-3.982.964.965a3.4 3.4 0 0 0-.511.737h-.067l-.136.042h-.047l-.144.134.182-.038.164-.042-.029.063-.144.088H8.69l-.212.162-.205-.016-.296.552.058.11-.16.18-.026.237h-.604a4.75 4.75 0 0 1 1.285-3.174M7.283 15.42l.306.18.063.043-.221.221q-.155-.16-.3-.332zm-.306-3.838c0 .132.017.264.031.394l-.167.038-.034.169-.348.443.009.608-.357.119h-.196a6.4 6.4 0 0 1-.304-1.773zM5.63 13.346l-.08-.016-.075-.084-.383-.034.119.16-.357-.066.092-.085-.086-.086-.256.112-.092.169.036.389.295.7.142.221.08.03-.222-.422-.049-.216.05-.052-.03-.12.134.019.206.311.05.02v-.227l.084.049.018.119.217.057.09-.064.031.021v.166l.095.119.12.026.252.427.153.043.048-.2a6.7 6.7 0 0 0 .94 1.214l-.964.964a8 8 0 0 1-2.311-5.428h1.365a6.7 6.7 0 0 0 .288 1.764m.595-7.514.964.964a6.66 6.66 0 0 0-1.85 4.515H3.975a8 8 0 0 1 2.244-5.48zm9.879-.498-.082-.133-.179-.09-.14.106.18.096.191.146zm-.834 3.85v.105l.237-.07.073-.144-.163-.214.087-.131.22.157.04-.032-.043-.031-.05-.095.09-.053-.088-.119-.207.105-.07.13-.04.113.09.153-.033.072zm-9.868 6.12.018-.061-.119-.267-.145-.053zm5.58-5.127c0 .229.14.39.393.53v-.103l-.16-.159.085-.154.069-.019c0-.266-.01-.565-.012-.608h-.012c-.235.131-.363.288-.363.513"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.145 0v5.867L9.99 7.71h4.022l1.845-1.844V0zm8.145 0v5.867l1.845 1.844h5.864V.001zM1.845 0 0 1.845v5.866h7.712V0zM0 8.146v7.71h5.866l1.845-1.844V8.145zm18.133 0L16.29 9.989v4.022l1.845 1.845H24V8.145zm-6.147 2.75a1.105 1.105 0 0 0 .014 2.21A1.105 1.105 0 0 0 13.105 12a1.105 1.105 0 0 0-1.118-1.104zM0 16.29V24h5.866l1.845-1.842v-4.023L5.866 16.29zm9.988 0-1.843 1.845V24h7.71v-5.866L14.01 16.29zm6.3 0V24H24v-5.865l-1.842-1.845z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12A12 12 0 1 1 12 0a12.01 12.01 0 0 1 12 12m-1.5 0A10.5 10.5 0 1 0 12 22.5 10.516 10.516 0 0 0 22.5 12M7.542 5.841l4.074 1.739-1.739 4.073L5.8 9.914zm5.158 7.926 2.185 4.406H14.2l-2.343-4.687-2.295 4.687h-.656l2.4-5.01-1.046-.441.282-.656 3.215 1.364-.281.67Zm-.553-5.451 3.216 1.378-1.378 3.2-3.2-1.364 1.364-3.215Zm3.764 2.011 2.56 1.082-1.1 2.546-2.545-1.083 1.082-2.545Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.723.666c-.08-.276.08-.47.356-.47h2.283c.16 0 .31.137.356.274l1.675 6.6h.08L11.491.218A.37.37 0 0 1 11.824 0h.356c.172 0 .287.092.333.218l3.018 6.85h.08L17.286.47a.4.4 0 0 1 .356-.275h2.284c.275 0 .424.195.355.47l-3.683 13.082a.37.37 0 0 1-.356.275h-.31a.38.38 0 0 1-.333-.218l-3.568-7.963h-.058l-3.545 7.963a.4.4 0 0 1-.333.218h-.31a.38.38 0 0 1-.356-.275zm8.308 7.917-2.594 5.818a1.7 1.7 0 0 1-.344.448v.004a1.47 1.47 0 0 1-.688.34l1.4 8.687c.091.16.263.16.367 0l1.79-2.72 1.64 2.708c.104.16.265.16.368 0l1.584-8.698a1.5 1.5 0 0 1-.832-.618l-.02-.03a1 1 0 0 1-.066-.12l-.609-1.366h-.003Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.812 5.139 2.179 7.509a168 168 0 0 1 .666 2.459h.025q.081-.557.273-1.204l.353-1.176 1.05-3.442.213-.671q.093-.298.192-.551.1-.251.194-.478.092-.226.213-.451v-.028l-1.569.105V5.139h5.169V6.88q-.546 0-.956.358a3.6 3.6 0 0 0-.711.85 6.3 6.3 0 0 0-.493.984 23 23 0 0 0-.286.758l-3.096 8.997h-2.884L11.47 13.02q-.08-.214-.199-.606a47 47 0 0 1-.247-.85q-.126-.46-.265-.95-.139-.492-.259-.931h-.026q-.08.572-.26 1.283-.178.711-.372 1.388-.192.677-.358 1.223-.167.545-.246.771l-1.501 4.479h-2.7L1.742 9.392a28 28 0 0 1-.472-1.39 4 4 0 0 1-.113-.418l-.094-.425L0 7.212V5.139h6.526V6.88q-.572.04-.806.345-.232.306-.231.784-.014.227.032.478a5 5 0 0 0 .128.519l.916 3.322q.16.599.312 1.256t.247 1.336h.026l.134-.598a40 40 0 0 1 .331-1.429q.107-.418.254-.922l1.993-6.832zM24 16.628a2.232 2.232 0 1 1-4.464 0 2.232 2.232 0 1 1 4.464 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 1.047 15.67 18.08l-3.474-8.53-3.474 8.53L.393 1.048l3.228 8.977 3.286 8.5C3.874 19.334 1.332 20.46 0 21.75c.443-.168 3.47-1.24 7.409-1.927l1.21 3.129 1.552-3.518a37 37 0 0 1 3.96-.204l1.644 3.722 1.4-3.62c2.132.145 3.861.426 4.675.692 0 0 .92-1.962 1.338-2.866a55 55 0 0 0-5.138-.092l2.722-7.042zm-21.84.026L8.64 13.86l3.568-9.155 3.567 9.155 6.481-12.788-6.433 8.452-3.615-8.22-3.615 8.22zm10.036 13.776 1.115 2.523a43 43 0 0 0-2.363.306Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12a1.384 1.384 0 1 1-2.769 0A1.384 1.384 0 0 1 6 12m7.846-5.538a1.846 1.846 0 1 1-3.692 0 1.846 1.846 0 0 1 3.692 0M1.846 12a.923.923 0 0 1-.923.923.924.924 0 1 1 .923-.923M24 12a.923.923 0 1 1-1.846 0A.923.923 0 0 1 24 12m-3.23 0A1.385 1.385 0 1 1 18 12a1.385 1.385 0 0 1 2.77 0m-8.226 2.836c.003.535.256 1.013.658 1.313a1.828 1.828 0 0 1-1.171 3.235H12a1.83 1.83 0 0 1-1.171-3.235c.4-.3.661-.778.658-1.314v-.128a1.65 1.65 0 0 0-.658-1.315A1.83 1.83 0 0 1 12 10.154h.031c1.01 0 1.83.818 1.83 1.83 0 .565-.258 1.072-.659 1.408a1.62 1.62 0 0 0-.658 1.315zm3.692-2.77c.004.535.256 1.014.658 1.314a1.828 1.828 0 0 1-1.171 3.235h-.03a1.829 1.829 0 0 1-1.172-3.235c.4-.3.662-.778.658-1.314v-.128a1.65 1.65 0 0 0-.658-1.315 1.83 1.83 0 0 1 1.171-3.238h.032c1.01 0 1.829.817 1.829 1.83 0 .565-.258 1.072-.658 1.408a1.62 1.62 0 0 0-.658 1.315zm-7.385 0c.003.535.256 1.014.658 1.314a1.83 1.83 0 0 1 .658 1.405c0 1.014-.819 1.83-1.83 1.83h-.03a1.829 1.829 0 0 1-1.171-3.235c.4-.3.661-.778.657-1.314v-.128a1.65 1.65 0 0 0-.657-1.315 1.83 1.83 0 0 1 1.171-3.238h.03c1.011 0 1.83.817 1.83 1.83 0 .565-.257 1.072-.658 1.408a1.62 1.62 0 0 0-.658 1.315z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.707 17.486 1.406-.68zl.69 1.384 1.407-.68-.69-1.384Zm-.69-1.384 1.407-.68zl.691 1.384 1.406-.68-.69-1.384Zm-.691-1.384 1.406-.677zl.69 1.385 1.407-.681-.691-1.381Zm-.69-1.384 1.406-.678zl.69 1.384 1.407-.677-.69-1.385Zm-.69-1.381 1.406-.68zl.69 1.383 1.406-.679-.69-1.383Zm-.692-1.384 1.406-.68zl.69 1.384 1.407-.68-.69-1.384Zm6.981 3.494 1.407-.68zl.69 1.384 1.407-.68-.69-1.384zm-.69-1.382 1.406-.68zl.69 1.384 1.407-.68-.691-1.383zm-.691-1.383 1.406-.68zl.69 1.383 1.407-.68-.69-1.384Zm-.69-1.382 1.406-.68zl.691 1.383 1.406-.68-.69-1.383Zm-.691-1.384 1.406-.68zl.69 1.384 1.407-.68-.69-1.383Zm6.98 3.495 1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.68zl.691 1.385 1.406-.681-.69-1.385zm-.691-1.382 1.406-.68zl.69 1.383 1.407-.68-.69-1.383Zm-.69-1.385 1.406-.68zl.69 1.385 1.407-.68-.69-1.384Zm-.691-1.382 1.406-.68zl.69 1.384 1.407-.68-.691-1.385ZM5.66 9.89l1.405-.68zl.69 1.385 1.407-.68-.69-1.384Zm.69 1.385 1.406-.68zl.69 1.383 1.407-.678-.69-1.385zm.69 1.382 1.407-.678zl.691 1.385 1.406-.681-.69-1.383zm.691 1.385 1.406-.681zl.69 1.383 1.407-.679-.69-1.384Zm.69 1.38 1.407-.678zl.69 1.384 1.406-.68-.69-1.384Zm.691 1.385 1.406-.68zl.69 1.384 1.407-.681-.69-1.383zm1.406-.68 1.407-.679-1.407.68.691 1.383 1.406-.678-.69-1.385zm1.407-.679 1.406-.68zl.69 1.385 1.407-.681-.69-1.385zM9.879 7.853l1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384Zm.69 1.382 1.407-.68zl.69 1.383 1.407-.68-.691-1.383Zm.69 1.383 1.407-.68zl.69 1.384 1.407-.68-.69-1.383zm.692 1.384 1.406-.681-1.406.68.69 1.384 1.407-.679-.69-1.384zm.69 1.382 1.406-.679-1.407.679.691 1.383 1.406-.678-.69-1.384zm.69 1.383 1.406-.678zl.69 1.385 1.407-.679-.69-1.384zm1.406-.678 1.407-.679zl.69 1.384 1.407-.68-.69-1.384zm1.407-.679 1.406-.68zl.69 1.384 1.407-.68-.691-1.384zm1.405-.68 1.406-.68zl.69 1.384 1.407-.681-.69-1.383zm-.69-1.384 1.407-.68zl.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.677zl.69 1.385 1.407-.68-.691-1.383Zm-.69-1.38 1.405-.68-1.406.68.69 1.383 1.407-.679-.69-1.383Zm-.691-1.385 1.406-.678zl.69 1.384 1.406-.678-.69-1.384Zm-.691-1.384 1.406-.677zl.69 1.385 1.407-.678-.69-1.384Zm7.25 5.263q0-1.748-.132-3.017-.133-1.27-.498-1.988-.464-1.405-2.088-1.785-1.293-.344-5.003-.342h-3.182q-3.71 0-5.036.342-1.59.378-2.154 1.785-.63 1.508-.629 5.005v1.887q0 3.498.63 5.006.596 1.373 2.186 1.75 1.292.343 5.003.342h3.182q3.677 0 4.97-.342 1.624-.376 2.121-1.75.365-.72.498-1.987a30 30 0 0 0 .133-3.02zm2.456 5.628q-.2 1.612-.663 2.676a5.6 5.6 0 0 1-1.326 1.765 5.2 5.2 0 0 1-1.955 1.081v.034q-.963.309-2.487.48-1.525.172-3.713.172h-3.215q-5.04 0-6.995-.96-2.188-.996-2.952-3.672-.264-.995-.381-2.78Q0 13.716 0 11.074 0 8.914.182 7.3q.183-1.613.646-2.642a5.7 5.7 0 0 1 1.31-1.766q.813-.739 2.005-1.15h.033q1.857-.652 6.266-.653h3.215q4.84 0 6.962.996a4.9 4.9 0 0 1 1.807 1.407q.745.925 1.11 2.297.2.961.332 2.744T24 12.96q.001 2.13-.197 3.743"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.475 13.171 7.3 9.469h.974L5.779 14.53h-.608l-1.034-2.082-1.034 2.082h-.609L0 9.469h.973l1.826 3.673.851-1.706-.973-1.967h.973zm8.457-3.702-2.251 3.442v1.591h-.882v-1.591L8.517 9.469h1.034l1.673 2.545 1.673-2.545zm5.444 4.194H24v.867h-4.624zm0-4.194H24v.868h-4.624zm0 2.083H24v.867h-4.624zm-.273-2.083-3.438 4.223h3.133v.838H13.84l3.407-4.222h-3.042v-.839z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.792 11.923c.113.043.226.079.334.128.45.203.715.553.748 1.044q.063.953.002 1.905c-.049.732-.725 1.292-1.483 1.271-.735-.021-1.369-.62-1.397-1.341-.017-.441-.003-.884-.006-1.326-.001-.239-.003-.242-.245-.243-1.363-.001-2.726.008-4.089-.003-.888-.007-1.421.482-1.471 1.46-.019.38-.1.727-.357 1.018-.397.451-.898.601-1.472.466-.554-.131-.867-.522-1.035-1.048-.117-.367-.056-.737.012-1.094.341-1.797 1.366-3.006 3.125-3.555a3.7 3.7 0 0 1 1.105-.166q1.41.002 2.821-.001c.128 0 .257-.012.385-.021.702-.051 1.166-.511 1.22-1.352.004-.064 0-.129.001-.193a1.42 1.42 0 0 1 1.393-1.425c.787-.029 1.438.527 1.493 1.318.076 1.083-.265 2.046-.913 2.907-.06.079-.144.144-.171.251m-8.543-1.487c-.258-.008-.571.018-.882-.035-.536-.09-.876-.39-1.02-.916-.157-.573-.097-1.097.351-1.525.456-.434.996-.56 1.587-.315.52.216.859.731.89 1.293.025.444.003.89.007 1.334.001.116-.043.167-.161.165-.24-.003-.479-.001-.772-.001M21.682 0H2.318A2.2 2.2 0 0 0 .116 2.202v19.317A2.48 2.48 0 0 0 2.597 24h18.807a2.48 2.48 0 0 0 2.481-2.481V2.202A2.204 2.204 0 0 0 21.682 0m-1.557 12.473c.519.804.733 1.69.677 2.657a4.25 4.25 0 0 1-3.25 3.916c-2.585.623-4.566-.923-5.233-2.794-.109-.304-.16-.622-.224-.985-.068.414-.115.789-.264 1.134-.697 1.617-1.884 2.603-3.665 2.799a4.31 4.31 0 0 1-4.632-3.084c-.25-.863-.175-1.747-.068-2.625.08-.653.321-1.268.632-1.848.057-.106.057-.184-.01-.285-.561-.845-.779-1.777-.7-2.784a4 4 0 0 1 .417-1.536C4.52 5.626 6.09 4.427 8.193 4.626c1.849.175 3.562 1.77 3.83 3.564.013.09.039.178.068.311.044-.241.076-.439.118-.636.344-1.63 1.94-3.335 4.201-3.357 2.292-.021 3.99 1.776 4.31 3.446.17.888.089 1.776-.103 2.663-.112.517-.31 1.008-.524 1.492-.059.136-.05.236.032.364"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.06 5.333c.452-.194.774-.258 1.097-.194.516.13.774.516.968.71.194.387.903.774 1.226.839.258.064.71-.645 1.033-1.29.322-.582.516-1.356.451-1.55-.064-.193-.968-.58-1.161-.58-.13 0-.388.129-.84.064-.45-.064-.903-.58-1.16-.968-.453-.645-1.098-1.032-1.679-1.355C18.35.686 17.64.493 16.93.364 15.898.105 14.865-.088 13.833.04c-.58.064-1.29.129-1.807.323-.065 0-.194.193-.065.193s.581.065.581.065-.58.129-.58.258c0 .13.064.13.129.13.064 0 1.484-.065 2.065 0 .645.128 1.355.45 1.807 1.225.774 1.42.451 2.775.258 3.227-.968 2.13-8.648 15.23-9.035 16.133s-.516 1.484.581 2.065 1.678.322 2-.065c.388-.516 7.034-17.165 9.293-18.262m-3.614 8.711h1.549c1.032 0 1.226.517 1.226.71.065.516-.194 1.162-1.226 1.162h-.968l.774 1.29c.452.775.258 1.162 0 1.42-.387.387-1.226.387-1.677-.452l-.904-1.548c-.645 1.42-1.29 2.968-2.065 4.775h4.001c1.936 0 3.55-1.613 3.55-3.55V6.56c-.065-.13-.194-.065-.259 0-.387.451-1.484 2-4 7.485m-9.808 8.002h-.323a4.186 4.186 0 0 1-4.195-4.194V7.01a4.186 4.186 0 0 1 4.195-4.195h9.357c-.194-.194-.968-.516-1.742-.452-.323 0-.968.13-1.356-.129-.387-.322-.322-.516-.903-.516H4.928A4.764 4.764 0 0 0 .152 6.494V18.24c0 2.646 2.13 4.775 4.453 4.71.645 0 .839-.516 1.032-.903m14.777-15.1v10.906a4.186 4.186 0 0 1-4.194 4.194h-4.324s-.387 1.033.839 1.033h3.872a4.764 4.764 0 0 0 4.775-4.776V8.817c.065-.903-.71-1.484-.968-1.871M1.83 7.01v10.84c0 1.937 1.613 3.55 3.55 3.55h.58c0-.064.774-1.42 2.452-4.26.194-.386.452-.773.71-1.225h-4.71c-.581 0-.904-.387-.969-.71-.129-.516.194-1.162.904-1.162h2.387l3.034-5.291s-.71-1.29-.904-1.613c-.258-.452-.129-.904.13-1.162.386-.387 1.032-.58 1.677.452l.258.387.258-.387c.58-.84.968-.775 1.29-.71.517.129.84.71.388 1.613l-4.001 6.711h1.355c.452-.774.904-1.548 1.355-2.387-.064-.323-.129-.71-.064-1.033.064-.516.323-.968.645-1.355l.387.645c1.227-2.13 2.13-3.936 2.388-4.646.13-.387.323-1.162.13-1.807H5.38c-2.001 0-3.55 1.613-3.55 3.55m2.775 10.776c0-.064.774-1.42.774-1.42 1.227-.322 1.807.452 1.872.517 0 0-.84 1.484-1.097 1.742s-.581.323-.904.258c-.516-.129-.839-.645-.645-1.097"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.84 3.052V0h7.843v17.583H13.84v-3.024h4.591V3.052zM5.569 14.53V3.024h4.592V0H2.318v17.583H6.98L10.16 24v-9.483z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.94 1.9-9.092 11.874 4.598 6.392a14.3 14.3 0 0 1-2.56.228c-2.387 0-4.582-.577-6.316-1.542l6.556-8.627-6.031-8.311L2.23 1.91 9.8 12.48l-4.332 5.66c-1.692-1.266-2.729-2.965-2.729-4.832 0-2.13 1.348-4.042 3.48-5.342l-.655-.999C2.22 8.386 0 10.876 0 13.71c0 2.432 1.635 4.61 4.212 6.075l-1.765 2.307h1.661l1.299-1.709c1.892.83 4.158 1.314 6.592 1.314a17.4 17.4 0 0 0 4.188-.501l.65.903h4.865l-1.729-2.422C22.443 18.214 24 16.082 24 13.71c0-2.94-2.39-5.512-5.948-6.9l-.217.311c3.099 1.214 5.195 3.531 5.195 6.188 0 2.202-1.44 4.17-3.698 5.47l-5.153-7.22 7.382-9.658zM12 5.755c-.586 0-1.212.046-1.775.1 1.004 1.309 1.836 2.417 2.795 3.676-.538-1.157-1.644-2.268-1.261-2.839.378-.565 1.075-.47 1.128-.47 1.118 0 2.194.127 3.2.36l.235-.324C14.98 5.91 13.523 5.754 12 5.754z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.781 2.743H7.965l-5.341 9.264 5.341 9.263-1.312 2.266L0 12.007 6.653.464h6.454zm-5.128 2.28 1.312-2.28L9.873 6.03 8.561 8.296zm9.382-2.28 1.312 2.28L7.965 21.27l-1.312-2.279zm-5.128 20.793 1.298-2.279h3.83L14.1 17.931l1.312-2.267 1.926 3.337 4.038-6.994-5.341-9.264L17.347.464 24 12.007l-6.653 11.529z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m6.585 14.655a2.69 2.69 0 0 1-2.69-2.689 2.693 2.693 0 0 1 2.69-2.691c1.485 0 2.69 1.207 2.69 2.691s-1.207 2.689-2.69 2.689M7.53 14.644a.38.38 0 0 1-.267-.116l-2.043-2.04-2.052 2.047a.367.367 0 1 1-.515-.523l2.04-2.05-2.038-2.047a.35.35 0 0 1-.113-.261.367.367 0 0 1 .626-.261l2.055 2.048 2.048-2.045a.36.36 0 0 1 .26-.108c.211 0 .375.165.375.366a.34.34 0 0 1-.104.258l-2.056 2.055 2.055 2.051a.368.368 0 0 1-.261.626zm8.017-4.591c-.796.101-.882.476-.882 1.404v2.787a.367.367 0 0 1-.734 0v-4.53c0-.204.16-.366.362-.366.166 0 .316.125.346.289.27-.209.6-.317.93-.317h.105c.195 0 .359.165.359.368 0 .201-.164.352-.375.359 0 0-.09 0-.164.008zm-3.091 2.205H8.625q0 .028.006.057.028.16.083.31c.194.531.765 1.275 1.829 1.29.33-.003.631-.086.9-.229.21-.12.391-.271.525-.428.045-.058.09-.112.12-.168.18-.229.405-.186.54-.083.164.135.18.391.045.57l-.016.016c-.21.27-.435.495-.689.66a2.4 2.4 0 0 1-.811.345c-.33.09-.645.104-.975.06a2.69 2.69 0 0 1-2.28-2.01 2.3 2.3 0 0 1-.09-.645c0-.855.421-1.695 1.125-2.205.885-.615 2.085-.66 3-.075.63.405 1.035 1.021 1.185 1.771.075.419-.21.794-.734.81zm6.129-2.223a1.933 1.933 0 0 0-1.931 1.931c0 1.064.866 1.931 1.931 1.931s1.931-.867 1.931-1.931a1.935 1.935 0 0 0-1.931-1.933zm0 2.595a.666.666 0 1 1 0-1.332.666.666 0 0 1 0 1.332m-8.04-2.603c-.91 0-1.672.623-1.886 1.466v.03h3.776a1.946 1.946 0 0 0-1.891-1.494z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.121 5.727a.1.1 0 0 0-.034.002L.07 5.73l-.014.007a.1.1 0 0 0-.048.053.1.1 0 0 0-.007.067c.008.037.023.056.04.076q.047.058.142.128.192.148.597.38c.54.306 1.36.712 2.428 1.152 1.053.433 2.318 1.205 3.286 1.911.484.353.894.69 1.165.958.136.133.237.25.293.337a.4.4 0 0 1 .05.1l.002.018c-.7.987-1.113 2.187-.83 4.196.006.038-.03.127-.12.235-.088.108-.216.233-.346.365-.129.133-.26.273-.357.42s-.163.305-.138.471v.001c.013.074.062.14.125.169a.36.36 0 0 0 .2.018c.137-.018.294-.079.453-.145.158-.066.316-.139.437-.183a1 1 0 0 1 .131-.038c0 .021.003.031-.003.065-.01.061-.03.139-.054.225-.048.173-.119.382-.184.588a4 4 0 0 0-.15.57.7.7 0 0 0-.008.222c.01.067.049.141.122.168l.003.001.003.001c.05.015.083.001.116-.012a1 1 0 0 0 .104-.054q.113-.07.266-.191c.202-.16.451-.375.697-.592s.487-.433.673-.594c.093-.08.172-.146.23-.189l.062-.044c1.497.446 3.202.502 4.549.441a21 21 0 0 0 1.687-.144 15 15 0 0 0 .643-.097l.033-.007.087.04.318.144c.265.12.622.28.987.436s.738.307 1.038.41q.226.079.387.114.079.016.143.02a.2.2 0 0 0 .127-.029l.01-.006.007-.008c.176-.19.183-.426.1-.633-.084-.207-.246-.402-.413-.586-.167-.185-.342-.358-.45-.5a.6.6 0 0 1-.104-.178c-.012-.039-.007-.053.005-.07a.2.2 0 0 1 .05 0c.06.005.147.023.25.05.204.054.473.144.741.232.269.089.537.176.75.226q.16.038.276.042.059.002.112-.015a.16.16 0 0 0 .096-.088v-.002l.002-.003c.05-.151-.006-.313-.095-.476-.09-.162-.22-.33-.36-.492-.14-.163-.287-.318-.41-.45a3 3 0 0 1-.249-.292.67.67 0 0 1-.083-.398.54.54 0 0 1 .248-.394 3 3 0 0 1 .268-.14l.51-.24c.4-.187.898-.425 1.381-.69s.95-.557 1.294-.859c.342-.301.575-.619.529-.948-.072-.535-.425-.943-.897-1.25-.471-.305-1.065-.517-1.65-.67a16 16 0 0 0-1.595-.318c-.217-.033-.399-.06-.525-.083a2 2 0 0 1-.144-.032l-.001-.087c0-.083.002-.198 0-.331a6 6 0 0 0-.075-.942c-.056-.33-.15-.646-.331-.86s-.47-.304-.821-.165c-.232.087-.363.288-.418.519-.055.23-.045.497-.01.76.037.26.1.518.156.724.057.206.11.37.119.411.006.027.005.018-.005.026a.2.2 0 0 1-.084.025.4.4 0 0 1-.126-.01c-.037-.01-.062-.03-.057-.023a1 1 0 0 1-.07-.129l-.113-.255a9 9 0 0 0-.32-.67c-.125-.228-.265-.443-.428-.587a.65.65 0 0 0-.27-.15.44.44 0 0 0-.306.036h-.002l-.001.002a.9.9 0 0 0-.45.607c-.055.241-.037.502.004.743.04.242.105.466.145.629.02.081.035.148.038.187.002.012 0 .014 0 .018-.182.114-.274.294-.345.479-.075.194-.137.397-.264.573v.001c-.039.055-.12.105-.247.138a2 2 0 0 1-.49.049c-.392 0-.892-.059-1.413-.142-1.042-.165-2.161-.422-2.733-.457-.43-.025-.837.136-1.146.288-.154.076-.284.15-.376.198a1 1 0 0 1-.096.044c-.997-.993-3.013-2.688-5.25-3.26-.613-.167-1.387-.495-2.015-.78-.314-.142-.591-.274-.796-.37l-.248-.113-.077-.032-.03-.01zm22.7 1.835-.019.005c-.02.009-.025.019-.031.027a.2.2 0 0 0-.026.053 2 2 0 0 0-.052.176 8 8 0 0 0-.188 1.14 1.3 1.3 0 0 0 0 .213.3.3 0 0 0 .016.077.1.1 0 0 0 .047.059.1.1 0 0 0 .044.013.1.1 0 0 0 .043-.018.15.15 0 0 0 .042-.057 1 1 0 0 0 .06-.175c.038-.147.074-.35.103-.557s.05-.421.057-.59a2 2 0 0 0-.002-.214.4.4 0 0 0-.013-.076.1.1 0 0 0-.036-.059q-.008-.01-.024-.015a.1.1 0 0 0-.022-.002zm1.11.212a.1.1 0 0 0-.042.007.2.2 0 0 0-.065.043 1 1 0 0 0-.144.157 5 5 0 0 0-.35.517 4 4 0 0 0-.287.569 1 1 0 0 0-.061.225c-.007.064 0 .129.05.167.03.021.068.015.09.004a.2.2 0 0 0 .06-.048q.058-.06.129-.168a7 7 0 0 0 .31-.54 10 10 0 0 0 .276-.568 3 3 0 0 0 .08-.2 1 1 0 0 0 .02-.067l.003-.03c0-.011 0-.028-.02-.048l-.001-.002-.002-.002a.1.1 0 0 0-.046-.016M19.57 9.629c.182 0 .335.17.335.388 0 .217-.153.387-.335.387s-.334-.17-.334-.387c0-.218.152-.388.334-.388m-.882.34c.079.29.178.512.35.647.163.128.396.173.69.181-.181.13-.346.191-.481.175-.168-.02-.31-.124-.414-.268s-.17-.326-.187-.483a.44.44 0 0 1 .042-.252m2.09 1.78c.054-.004.083.006.091.014l.009.008.01.004c.008.002.004 0 .006.002a.4.4 0 0 1-.112.093 4 4 0 0 1-.58.278 8 8 0 0 1-.657.235c-.059.017-.098.026-.142.037.029-.022.05-.04.089-.065a6 6 0 0 1 .52-.306 4 4 0 0 1 .56-.251 1 1 0 0 1 .206-.049m.241.471a.1.1 0 0 1 .025.003c.026.03.04.058.035.096a.36.36 0 0 1-.071.154 2 2 0 0 1-.399.367c-.163.119-.337.226-.47.302-.048.028-.082.046-.116.064.015-.03.029-.058.056-.099.078-.116.2-.266.332-.409a3 3 0 0 1 .4-.37.8.8 0 0 1 .163-.096.2.2 0 0 1 .045-.012"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.405 9.879c.002.016.01.02.07.019h.725a.797.797 0 0 0 .78-.972.794.794 0 0 0-.884-.618.795.795 0 0 0-.692.794c0 .101-.002.666.001.777m-11.509 4.808c-.203.001-1.353.004-1.685.003a2.5 2.5 0 0 1-.766-.126.025.025 0 0 0-.03.014L7.7 16.127a.025.025 0 0 0 .01.032c.111.06.336.124.495.124.66.01 1.32.002 1.981 0q.017 0 .023-.015l.712-1.545a.025.025 0 0 0-.024-.036zM.477 9.91c-.071 0-.076.002-.076.01l-.01.08c-.027.397-.038.495-.234 3.06-.012.24-.034.389-.135.607-.026.057-.033.042.003.112.046.092.681 1.523.787 1.74.008.015.011.02.017.02.008 0 .033-.026.047-.044q.219-.282.371-.606c.306-.635.44-1.325.486-1.706.014-.11.021-.22.03-.33l.204-2.616.022-.293c.003-.029 0-.033-.03-.034zm7.203 3.757a1.4 1.4 0 0 1-.135-.607c-.004-.084-.031-.39-.235-3.06a.4.4 0 0 0-.01-.082c-.004-.011-.052-.008-.076-.008h-1.48c-.03.001-.034.005-.03.034l.021.293q.114 1.473.233 2.946c.05.4.186 1.085.487 1.706.103.215.223.419.37.606.015.018.037.051.048.049.02-.003.742-1.642.804-1.765.036-.07.03-.055.003-.112m3.861-.913h-.872a.126.126 0 0 1-.116-.178l1.178-2.625a.025.025 0 0 0-.023-.035l-1.318-.003a.148.148 0 0 1-.135-.21l.876-1.954a.025.025 0 0 0-.023-.035h-1.56q-.017 0-.024.015l-.926 2.068c-.085.169-.314.634-.399.938a.5.5 0 0 0-.02.191.46.46 0 0 0 .23.378 1 1 0 0 0 .46.119h.59c.041 0-.688 1.482-.834 1.972a.5.5 0 0 0-.023.172.47.47 0 0 0 .23.398c.15.092.342.12.475.12l1.66-.001q.017 0 .023-.015l.575-1.28a.025.025 0 0 0-.024-.035m-6.93-4.937H3.1a.032.032 0 0 0-.034.033c0 1.048-.01 2.795-.01 6.829 0 .288-.269.262-.28.262h-.74c-.04.001-.044.004-.04.047.001.037.465 1.064.555 1.263.01.02.03.033.051.033.157.003.767.009.938-.014.153-.02.3-.06.438-.132.3-.156.49-.419.595-.765.052-.172.075-.353.075-.533q.003-3.495-.007-6.991a.03.03 0 0 0-.032-.032zm11.784 6.896q-.002-.02-.024-.022h-1.465c-.048-.001-.049-.002-.05-.049v-4.66c0-.072-.005-.07.07-.07h.863c.08 0 .075.004.075-.074V8.393c0-.082.006-.076-.08-.076h-3.5c-.064 0-.075-.006-.075.073v1.445c0 .083-.006.077.08.077h.854c.075 0 .07-.004.07.07v4.624c0 .095.008.084-.085.084-.37 0-1.11-.002-1.304 0-.048.001-.06.03-.06.03l-.697 1.519s-.014.025-.008.036.013.008.058.008q2.622.003 5.243.002c.03-.001.034-.006.035-.033zm4.177-3.43q0 .021-.02.024c-.346.006-.692.004-1.037.004q-.021-.003-.022-.024-.006-.651-.01-1.303c0-.072-.006-.071.07-.07l.733-.003c.041 0 .081.002.12.015.093.025.16.107.165.204.006.431.002 1.153.001 1.153m2.67.244a1.95 1.95 0 0 0-.883-.222h-.18c-.04-.001-.04-.003-.042-.04V10.21q.001-.198-.025-.394a1.8 1.8 0 0 0-.153-.53 1.53 1.53 0 0 0-.677-.71 2.2 2.2 0 0 0-1-.258c-.153-.003-.567 0-.72 0-.07 0-.068.004-.068-.065V7.76c0-.031-.01-.041-.046-.039H17.93s-.016 0-.023.007q-.008.008-.008.023v.546c-.008.036-.057.015-.082.022h-.95c-.022.002-.028.008-.03.032v1.481c0 .09-.004.082.082.082h.913c.082 0 .072.128.072.128v1.148s.003.117-.06.117h-1.482c-.068 0-.06.082-.06.082v1.445s-.01.068.064.068h1.457c.082 0 .076-.006.076.079v3.225c0 .088-.007.081.082.081h1.43c.09 0 .082.007.082-.08v-3.27c0-.029.006-.035.033-.035l2.323-.003a.7.7 0 0 1 .28.061.46.46 0 0 1 .274.407c.008.395.003.79.003 1.185 0 .259-.107.367-.33.367h-1.218c-.023.002-.029.008-.028.033q.276.655.57 1.303a.05.05 0 0 0 .04.026c.17.005.34.002.51.003.15-.002.517.004.666-.01a2 2 0 0 0 .408-.075c.59-.18.975-.698.976-1.313v-1.981q.001-.191-.034-.38c0 .078-.029-.641-.724-.998"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.016 0 4.756.255 2.493 2.516.23 4.776 0 8.033 0 12.012s.23 7.235 2.494 9.497C4.757 23.77 8.017 24 12 24s7.243-.23 9.506-2.491S24 15.99 24 12.012c0-3.984-.233-7.243-2.502-9.504C19.234.252 15.978 0 12 0M4.906 7.405h5.624c1.47 0 3.007.068 3.764.827.746.746.827 2.233.83 3.676v4.54a.15.15 0 0 1-.152.147h-1.947a.15.15 0 0 1-.152-.148V11.83c-.002-.806-.048-1.634-.464-2.051-.358-.36-1.026-.441-1.72-.458H7.158a.15.15 0 0 0-.151.147v6.98a.15.15 0 0 1-.152.148H4.906a.15.15 0 0 1-.15-.148V7.554a.15.15 0 0 1 .15-.149m12.131 0h1.949a.15.15 0 0 1 .15.15v8.892a.15.15 0 0 1-.15.148h-1.949a.15.15 0 0 1-.151-.148V7.554a.15.15 0 0 1 .151-.149M8.92 10.948h2.046c.083 0 .15.066.15.147v5.352a.15.15 0 0 1-.15.148H8.92a.15.15 0 0 1-.152-.148v-5.352a.15.15 0 0 1 .152-.147"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.188 0c-.517 0-.741.325-.927.66 0 0-7.455 13.224-7.702 13.657.015.024 4.919 9.023 4.919 9.023.17.308.436.66.967.66h3.454c.211 0 .375-.078.463-.22.089-.151.089-.346-.009-.536l-4.879-8.916a.02.02 0 0 1 0-.022L22.139.756c.095-.191.097-.387.006-.535C22.056.078 21.894 0 21.686 0zM3.648 4.74c-.211 0-.385.074-.473.216-.09.149-.078.339.02.531l2.34 4.05q.006.014 0 .021L1.86 16.051a.52.52 0 0 0 0 .529c.085.142.239.234.45.234h3.461c.518 0 .766-.348.945-.667l3.734-6.609-2.378-4.155c-.172-.315-.434-.659-.962-.659H3.648z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.345 7.053c-.495.02-.44.725-.536 1.081-.157.583-.3 1.325-.347 1.926-.046.585-.008 1.127.066 1.719.058.46.191.767.07.89-.108.11-3.216 2.962-3.466 3.123-.26.169-.08.584.069.817.157.246.23.373.557.33.306-.042.405-.409.583-.606.228-.252 2.421-2.401 2.616-2.401.077.544.367 1.064.67 1.513.15.222.314.439.505.629.175.175.4.317.587.45.44.024.795-.301.35-.67-.17-.14-.735-.971-.927-1.43-.18-.43-.574-1.076-.146-1.428 1.494-1.23 3.72-2.262 4.247-2.313-.257 1.024-1.356 3.048-1.757 4.012-.14.333-.231.732-.185 1.094.055.434.383.774.587.806.417-.023.7-.387.946-.645.343-.357.634-.685.974-1.043.339-.356.672-.731.971-1.07.184-.207.674-.713.963-.713-.11.693-.716 1.552-.839 2.254-.125.716.531 1.596 1.217.956.623-.58 1.255-1.129 1.867-1.72.217-.208.175.037.224.242.05.208.176.91.275 1.1.18.346.496.592.897.598.362.006.727-.161.982-.414.19-.187.513-.699.154-.832-.23-.086-.217-.176-.495-.129-.172.029-.362.074-.507.179-.367-.003-.381-.89-.324-1.161.068-.327.207-.659.185-.998-.026-.418-.478-.69-.582-.72-.156-.076-.253.023-.458.212-.173.161-.363.332-.535.495-.34.322-.768.813-.942.813.305-.705.708-2.652-.643-2.48-.563.071-.95.377-1.394.71-.29.28-.683.641-.936.87-.236.216-.371.404-.496.404.132-.747 1.685-3.167.885-3.853-.158-.136-.313-.325-.515-.349a4.6 4.6 0 0 0-.833.19c-.565.18-2.78 1.28-4.19 2.289-.131.094-.214-.085-.231-.29-.087-1.058.199-2.19.496-3.188.208-.696-.557-1.225-.659-1.249m18.177.874c-.166.364-.2.894-.248 1.319a24 24 0 0 0-1.246-.115c.238.296.691.588 1.056.724-.048.366-.434.67-.599 1.021.458-.127.676-.47.989-.821.362.22.791.627 1.26.636-.177-.376-.334-.695-.658-.966.269-.175.717-.362.924-.633-.345-.074-.718-.093-1.052-.015-.258-.284-.3-.772-.426-1.15m-2.92.079c-.23.02-.613.49-.832.773-.807 1.039-1.542 3.15-1.661 3.542-.363 1.195-.502 2.672.28 3.722.456.612 1.258.66 2.041.434.405-.116.812-.406.95-.723.114-.263.174-.753-.404-.38-.224.145-.634.304-1.37.291-.247-.004-.651-.357-.76-.722-.192-.595-.11-1.393-.11-1.393.167-1.028.642-2.146 1.061-3.076.163-.36.658-1.259.842-1.546 0 0 .239-.373.131-.77-.031-.116-.091-.16-.168-.152m3.072 2.976c-.12.264-.144.648-.18.956-.274-.031-.63-.066-.904-.083.172.215.501.426.766.525-.034.265-.314.486-.434.741.332-.092.49-.34.717-.596.263.16.575.456.914.462-.127-.273-.242-.504-.477-.701.195-.127.52-.262.67-.46a1.8 1.8 0 0 0-.763-.01c-.187-.206-.217-.56-.309-.834m-1.123 2.422c-.083.183-.1.449-.125.662a13 13 0 0 0-.624-.058c.119.148.346.295.53.363-.025.184-.219.336-.301.513.23-.064.339-.236.496-.413.181.11.397.316.632.32-.088-.19-.168-.349-.33-.485.135-.087.36-.181.463-.317a1.2 1.2 0 0 0-.527-.008c-.13-.142-.151-.387-.214-.576z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.401 4.594 1.025.366 3.08.912q-.016.27-.016.543c0 3.353 1.693 7.444 4.51 10.387 2.817-2.943 4.51-7.034 4.51-10.387q0-.273-.016-.543l3.08-.912 1.025-.366L24 3.276C23.854 8.978 19.146 14.9 13.502 18.17c1.302 1.028 2.778 1.81 4.388 2.215v.114l.004.001v.224a14.6 14.6 0 0 1-4.829-1.281A21 21 0 0 1 12 18.966q-.53.255-1.065.477a14.6 14.6 0 0 1-4.829 1.281V20.5l.004-.001v-.113c1.61-.406 3.086-1.188 4.389-2.216C4.854 14.9.146 8.978 0 3.276z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.629 5.698 4.275 5.367 4.274-5.367h1.613l-5.089 6.384 4.958 6.219h-1.613L5.903 13.1l-4.142 5.201H.131l4.957-6.219L0 5.698zm16.48-.082C21.423 5.616 24 8.632 24 12c0 3.425-2.613 6.331-5.883 6.383-3.301-.1-5.804-2.878-5.911-6.164L12.202 12c0-3.436 2.637-6.384 5.907-6.384m0 1.268c-2.59 0-4.639 2.4-4.639 5.116.078 2.736 1.983 4.996 4.444 5.111l.195.004c2.583 0 4.623-2.406 4.623-5.115 0-2.752-2.086-5.116-4.623-5.116m.944 3.71c.507 0 1.1.662.702 1.473-.297.605-1.373 1.192-1.609 1.315l-.045.024s-1.32-.658-1.655-1.339c-.397-.811.196-1.473.703-1.473.56 0 .952.535.952.535s.391-.535.952-.535"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.52 2.955A3.52 3.52 0 0 0 1.996 6.48v2.558A2.12 2.12 0 0 1 0 11.157l.03.562-.03.561a2.12 2.12 0 0 1 1.996 2.121v2.948a3.69 3.69 0 0 0 3.68 3.696v-1.123a2.56 2.56 0 0 1-2.557-2.558v-2.963a3.24 3.24 0 0 0-1.42-2.682 3.26 3.26 0 0 0 1.42-2.682V6.48A2.41 2.41 0 0 1 5.52 4.078h.437V2.955zm12.538 0v1.123h.437a2.39 2.39 0 0 1 2.386 2.401v2.558a3.26 3.26 0 0 0 1.42 2.682 3.24 3.24 0 0 0-1.42 2.682v2.963a2.56 2.56 0 0 1-2.557 2.558v1.123a3.69 3.69 0 0 0 3.68-3.696V14.4A2.12 2.12 0 0 1 24 12.281l-.03-.562.03-.561a2.12 2.12 0 0 1-1.996-2.12v-2.56a3.52 3.52 0 0 0-3.509-3.524zM6.253 7.478l3.478 3.259a3.393 3.393 0 0 0 4.553 0l3.478-3.26h-1.669l-2.65 2.464a2.133 2.133 0 0 1-2.886 0L7.922 7.478zm5.606 4.884a3.36 3.36 0 0 0-2.128.886l-3.493 3.274h1.668l2.667-2.495a2.133 2.133 0 0 1 2.885 0l2.65 2.495h1.67l-3.494-3.274a3.36 3.36 0 0 0-2.425-.886"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 19.5c-.7-.1-2.5-.3-2.7-.3-.1 0-2.8 2.3-4 3.399l-.1.101c.1-1.3.3-2.601.399-3.9C11.7 18.1 5.9 17.4 0 16.7V1.3h.3C.9 1.4 22.9 3.9 24 4zm-2.6-2.6V6.2C15.1 5.5 8.7 4.7 2.4 4v10.6c6.3.8 12.7 1.5 19 2.3"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.891 0h6.023l-6.085 10.563A10.65 10.65 0 0 1 15.891 0m6.055 23.999L8.078.001H2.055l6.919 12.015L2.055 24h6.023L12 17.236 15.892 24z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m3.914 4.474c.385-.044.145 1.606.053 2.598-.081.868-.127 1.154-.289 2.112-.05.3-.2.687-.669.631-.392-.05-.455-.696-.442-.995.022-.514.303-1.767.393-2.217.116-.578.47-1.957.914-2.12a.2.2 0 0 1 .04-.01m3.226.709c.55.02-.415 1.75-.809 2.664-.276.642-.474 1.156-.832 2.004-.119.282-.484.686-.906.477-.354-.175-.233-.692.024-1.29a16 16 0 0 1 1.062-2.086c.303-.506.934-1.698 1.404-1.766a.3.3 0 0 1 .058-.003zm-9.284.47c.312.022.572.16.75.375.77.932.608 2.532.675 3.748 1.2.065 2.19.21 3.469.584.974.285 2.323.762 3.112 1.275.787.51 1.377 1.172 1.5 2.062.077.552-.343 1.106-.919 1.612-.575.505-1.326.98-2.137 1.426s-1.653.849-2.325 1.162c-1.466.684-3.016 1.35-4.917 1.542-5.155.52-4.592-4.158-4.392-5.704.155-1.205.8-2.942.907-3.259a10 10 0 0 1-.335-1.298c-.073-.404-.113-.87-.02-1.275.092-.398.36-.842.803-1.027.352-.147.61-.089.938.209.27.245.497.608.716.987.317.55.446 1.119.718 1.676.052.108.324.157.482.111.037-.01.077-.103.056-.175-.348-1.191-.597-2.176-.424-3.037.161-.799.842-.974 1.343-.994"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 0a2 2 0 0 0-2 2v6.667a2 2 0 0 0 2 2h6.667a2 2 0 0 0 2-2V7.22a2 2 0 0 1-1.334 0v1.447a.667.667 0 0 1-.666.666H2a.667.667 0 0 1-.667-.666V2c0-.368.299-.667.667-.667h6.667c.368 0 .666.299.666.667v1.447a2 2 0 0 1 1.334 0V2a2 2 0 0 0-2-2zm11.333 2a2 2 0 0 1 2-2H22a2 2 0 0 1 2 2v6.667a2 2 0 0 1-2 2h-1.447a2 2 0 0 0 0-1.334H22a.667.667 0 0 0 .667-.666V2A.667.667 0 0 0 22 1.333h-6.667a.667.667 0 0 0-.666.667v1.447a2 2 0 0 0-1.334 0zm3.448 7.333h-1.448a.667.667 0 0 1-.666-.666V7.22a2 2 0 0 1-1.334 0v1.447a2 2 0 0 0 2 2h1.447a2 2 0 0 1 0-1.334m-16.78 6a2 2 0 0 1 2-2h6.667a2 2 0 0 1 2 2v1.447a2 2 0 0 0-1.334 0v-1.447a.667.667 0 0 0-.666-.666H2a.667.667 0 0 0-.667.666V22c0 .368.299.667.667.667h6.667A.667.667 0 0 0 9.333 22v-1.447a2 2 0 0 0 1.334 0V22a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm22-.666h-1.447a2 2 0 0 0 0-1.334H22a2 2 0 0 1 2 2V22a2 2 0 0 1-2 2h-6.667a2 2 0 0 1-2-2v-1.447a2 2 0 0 0 1.334 0V22c0 .368.298.667.666.667H22a.667.667 0 0 0 .667-.667v-6.667a.667.667 0 0 0-.667-.666m-7.333 2.114v-1.448c0-.368.298-.666.666-.666h1.447a2 2 0 0 1 0-1.334h-1.447a2 2 0 0 0-2 2v1.447a2 2 0 0 1 1.334 0M20 14a1.333 1.333 0 1 1-1.667-1.291V11.29a1.334 1.334 0 1 1 .667 0v1.418c.575.148 1 .67 1 1.291m-10 6c.621 0 1.143-.425 1.291-1h1.418a1.334 1.334 0 1 0 0-.667H11.29A1.334 1.334 0 1 0 10 20m1.291-14.333a1.334 1.334 0 1 1 0-.667h1.418a1.334 1.334 0 1 1 0 .667z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12c1.26 0 2.474-.194 3.615-.555-.272-.827-.485-1.57-.72-1.496C8.607 23.925 1.668 18.246 1.668 12 1.667 6.29 7.79-.043 14.7 1.779c.18.047 1.364-.405 2.19-.738A11.95 11.95 0 0 0 12 0m6.37 1.83c-1.866.712-6.182 2.136-7.332 3.731-2.676.004-3.675.532-4.069.814-.316.226-.407 2.034-.407 2.034h-.814l-.406-1.627s-3.967 4.496 1.22 4.475c.202 1.339.15 3.974.407 5.696.27 1.806 4.18 3.74 5.29 3.662.58-.04.362-1.65.406-2.441 2.345.802 3.653 1.981 4.285 4.76C21.106 21.046 24 16.858 24 12c0-4.284-2.25-8.046-5.63-10.17m-2.81 4.124c.667-.062 6.563 2.538 4.428 4.454-.572.21-1.268.195-1.782.21-2.198.065-3.007-.61-3.421-1.376-.229-.422-.62-1.084-.492-1.24.67.001 1.497-.031 2.034 0-.191-.29-1.398-1.596-.814-2.034a.1.1 0 0 1 .048-.014m-3.465 6.166a1.124 1.124 0 1 1 0 2.248 1.124 1.124 0 0 1 0-2.248"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.075 0a3.26 3.26 0 0 0-2.38.955L6.216 4.431l-.53-.529c-1.2-1.055-2.822.514-1.745 1.742l.531.531L.976 9.671a3.263 3.263 0 0 0 0 4.613L4.47 17.78l-.068.066-.516.514c-1.07 1.206.472 2.816 1.707 1.775l.598-.594 3.502 3.502a3.263 3.263 0 0 0 4.615 0l8.714-8.714a3.263 3.263 0 0 0 0-4.615l.002-.002-3.486-3.488.58-.58a1.233 1.233 0 0 0-1.744-1.742l-.56.56L14.306.956A3.26 3.26 0 0 0 12.075 0M12 1.72c.394 0 .79.151 1.09.452l3.507 3.505-4.566 4.568L7.433 5.65l3.478-3.478A1.53 1.53 0 0 1 12 1.72M5.691 7.395l4.593 4.593-4.595 4.578-3.494-3.498a1.54 1.54 0 0 1 0-2.18zm12.626.047 3.49 3.49a1.54 1.54 0 0 1 0 2.177l-8.714 8.715a1.54 1.54 0 0 1-2.18 0l-3.5-3.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.8 15.72v-1.24c-.64.04-.8-.24-.8-.76V7.6h-1.36v6.24c0 1.2.44 1.96 2.16 1.88m4.96-5.24c-.44-.52-1.12-.88-2.08-.88-1 0-1.68.36-2.12.88-.52.64-.64 1.56-.64 2.24 0 .64.12 1.4.56 2.04.44.6 1.16 1 2.28 1q1.14 0 1.8-.48c.44-.32.76-.84.8-1.36h-1.4c-.04.2-.16.36-.32.52-.2.16-.48.2-.88.2-.56 0-.92-.16-1.12-.48-.16-.24-.24-.64-.24-1h4.04c0-1.08-.16-2.04-.68-2.68m-3.4 1.64c0-.32.12-.76.36-1s.56-.36.96-.36q.6 0 .96.36c.36.36.32.68.32 1zM10.4 9.64c-1.6 0-2.36.84-2.44 2h1.4c.04-.52.32-.84 1.04-.84.84 0 1.08.4 1.08 1v.36h-1.24c-.8 0-1.32.08-1.72.36-.48.32-.76.76-.76 1.44 0 .84.52 1.8 2.12 1.8.8 0 1.32-.24 1.68-.68v.6h1.32v-3.84c-.04-1.28-.72-2.2-2.48-2.2m1.04 4.16c0 .64-.56.92-1.32.92-.84 0-1.04-.36-1.04-.8 0-.24.08-.44.28-.56.16-.08.4-.12.88-.12h1.2zM9.12 7.6H7.56l-1.92 3.6-1.92-3.6H2.16l2.76 4.96v3.08h1.44v-3.08zM24 12c0 6.64-5.36 12-12 12S0 18.64 0 12 5.36 0 12 0s12 5.36 12 12"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0m-.412 1.377A10.65 10.65 0 0 1 22.664 12 10.65 10.65 0 0 1 12 22.664a10.648 10.648 0 0 1-.412-21.287M12 1.9a.18.18 0 0 0-.172.131l-.883 2.526a.4.4 0 0 0 0 .097.3.3 0 0 0 .133.25.926.926 0 0 1 .074 1.465 2.35 2.35 0 0 0-.82 1.79v.903L5.865 6.498l-.547.953 4.987 2.877v.692l-.602.347-4.978-2.88-.551.954L8.602 12l-.782.45a2.35 2.35 0 0 0-1.127 1.616.93.93 0 0 1-1.312.668.3.3 0 0 0-.277 0 .3.3 0 0 0-.079.063l-1.742 2.037a.188.188 0 0 0 .176.305l2.633-.493a.4.4 0 0 0 .09-.035.3.3 0 0 0 .152-.238.926.926 0 0 1 1.232-.781 2.35 2.35 0 0 0 1.954-.184l.78-.451v5.104h1.098v-5.756l.598-.344.598.344v5.756h1.1v-5.123l.78.45a2.35 2.35 0 0 0 1.954.184.926.926 0 0 1 1.234.782.28.28 0 0 0 .149.238.4.4 0 0 0 .09.035l2.634.492a.184.184 0 0 0 .176-.305l.004.02-1.744-2.037a.4.4 0 0 0-.075-.063.3.3 0 0 0-.28 0 .94.94 0 0 1-.864-.035.93.93 0 0 1-.434-.633 2.37 2.37 0 0 0-1.14-1.609l-.782-.45 4.436-2.558-.549-.955-4.98 2.873-.602-.347v-.692l4.985-2.877-.547-.953L13.7 9.062v-.904a2.35 2.35 0 0 0-.803-1.789.922.922 0 0 1 .079-1.465.31.31 0 0 0 .128-.25.3.3 0 0 0 0-.097L12.18 2.03A.184.184 0 0 0 12 1.9m.021 5.512a.6.6 0 0 1 .58.598V9.7l-.597.347-.598-.348V8.01a.6.6 0 0 1 .615-.597zm-.017 3.818.687.391v.781l-.687.391-.688-.39v-.782zm2.299 1.403 1.46.847a.6.6 0 0 1 .223.817v.004a.6.6 0 0 1-.82.219l-1.465-.844v-.696zm-4.596.004.602.347v.692l-1.465.844a.598.598 0 1 1-.598-1.036z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 .57C18.315.57 23.43 5.685 23.43 12c0 6.31-5.115 11.43-11.43 11.43C5.69 23.43.57 18.314.57 12 .57 5.69 5.69.57 12 .57m0 .234c-.1 0-.183.06-.218.147l-.492 1.551A9.523 9.523 0 0 0 2.475 12c0 1.48.337 2.885.94 4.136l-1.1 1.206a.24.24 0 0 0-.015.262.25.25 0 0 0 .238.115l1.592-.353a9.52 9.52 0 0 0 7.87 4.16c3.27 0 6.16-1.652 7.874-4.16l1.592.353a.24.24 0 0 0 .23-.123.23.23 0 0 0-.016-.262l-1.1-1.198A9.4 9.4 0 0 0 21.526 12a9.523 9.523 0 0 0-8.815-9.498L12.218.947A.24.24 0 0 0 12 .804m-.003.25c.024 0 .048.02.056.043l1.02 3.354a1.2 1.2 0 0 0-.48.957c0 .389.19.734.48.952h-.004c.436.326.718.846.718 1.429v1.12l4.326-2.497.476.825-4.802 2.77v.965l.834.48 4.802-2.774.476.825-4.326 2.5.972.56c.508.294.818.798.882 1.338v-.004a1.193 1.193 0 0 0 1.655.953l2.393 2.56c.02.02.02.047.008.07q-.025.036-.068.029l-3.413-.794a1.193 1.193 0 0 0-1.65-.957l.003-.004c-.5.215-1.091.199-1.6-.095l-.968-.56v4.994h-.952v-5.545l-.834-.48-.833.48v5.545h-.953V15.1l-.972.555c-.508.294-1.1.31-1.6.096l.004.004a1.193 1.193 0 0 0-1.651.957l-3.413.793a.054.054 0 0 1-.063-.028c-.016-.02-.012-.047.008-.067l2.397-2.56c.333.143.73.135 1.067-.064.338-.194.544-.528.588-.889v.004a1.78 1.78 0 0 1 .88-1.337l.97-.56-4.327-2.496.477-.826 4.802 2.774.833-.484v-.964l-4.802-2.77.476-.826 4.326 2.496V7.79c0-.583.282-1.103.719-1.429h-.004c.29-.214.476-.56.476-.952 0-.393-.19-.738-.48-.957l1.02-3.353c.008-.028.031-.044.051-.044zm.004 5.902a.833.833 0 0 0-.833.833v1.67L12 9.94l.833-.48V7.789A.833.833 0 0 0 12 6.956zm0 4.084-.833.48v.964l.833.476.833-.48v-.96zm-2.62 1.516-1.444.833a.833.833 0 0 0-.306 1.14.82.82 0 0 0 .723.412.83.83 0 0 0 .416-.111l1.445-.834v-.96zm5.243 0-.833.48V14l1.445.834a.834.834 0 0 0 .833-1.445z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 .97 4.111 6.453v4.09h2.638v-4.09L11.053.969H8.214L5.58 5.125 2.965.969Zm12.093.024-4.47 10.544h2.114l.97-2.345h4.775l.804 2.345h2.26L14.255.994Zm1.133 2.225 1.463 3.87h-3.096zm3.06 9.475v10.29H24v-2.199h-5.454v-8.091zm-12.175.002v10.335h2.217v-7.129l2.32 4.792h1.746l2.4-4.96v7.295h2.127V12.696h-2.904L9.44 17.37l-2.455-4.674Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.38 0 0 5.38 0 12s5.38 12 12 12 12-5.38 12-12S18.62 0 12 0M7.163 20.618A9.87 9.87 0 0 1 2.12 12c0-5.46 4.42-9.88 9.88-9.88 1.429 0 2.496.536 3.029 1.187.534.65.684 1.715.5 3.253l-3.207.631c-2.905.532-4.506 2.148-5.06 5.065-.07.406-.15.812-.226 1.196l-.09.46-.208 1.124-.247 1.34c-.324 1.884-.06 3.276.672 4.242m7.986-11.851q-.129.65-.247 1.302c-.081.434-.16.868-.247 1.301-.396 2.05-1.364 2.996-3.42 3.391l-2.391.474c.059-.296.119-.611.178-.927l.067-.362c.078-.421.157-.855.25-1.313.395-2.05 1.344-2.996 3.399-3.391zM12 21.88c-1.429 0-2.496-.536-3.029-1.187s-.684-1.715-.5-3.253l3.18-.631c2.905-.532 4.507-2.148 5.08-5.046.069-.406.149-.812.226-1.196q.047-.236.09-.46l.247-1.327c.081-.432.154-.822.215-1.156.325-1.884.061-3.275-.671-4.242A9.87 9.87 0 0 1 21.88 12c0 5.46-4.42 9.88-9.88 9.88"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0m.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a6 6 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.7 1.7 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.08 1.08 0 0 1-.58-1.153 1.2 1.2 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.5 5.5 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.42 3.42 0 0 1 2.298-1.103q.056-.138.125-.283c.31-.658.639-1.029 1.024-1.168a1 1 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.27.27 0 0 0-.157-.046z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24V0h24v24zM6.951 5.896l4.112 7.708v5.064h1.583v-4.972l4.148-7.799h-1.749l-2.457 4.875c-.372.745-.688 1.434-.688 1.434s-.297-.708-.651-1.434L8.831 5.896z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.689 15.142-3.672.848c-.377.087-.755.183-1.145.155-.261-.019-.512-.042-.76-.213a1.2 1.2 0 0 1-.332-.36c-.348-.551-.365-1.366-.37-2a6.3 6.3 0 0 1 .332-2.064 2 2 0 0 1 .107-.248 2 2 0 0 1 .126-.216 3 3 0 0 1 .156-.198 1.2 1.2 0 0 1 .399-.283 1.1 1.1 0 0 1 .46-.083c.235.001.513.052.91.173.055.02.123.038.185.057.328.101.705.24 1.15.399q1.027.36 2.046.74l1.212.442q.333.12.64.297c.175.098.328.23.452.387a1.2 1.2 0 0 1 .192.43 1.22 1.22 0 0 1-.872 1.453q-.072.022-.108.03l-1.105.255zM18.82 7.565a2 2 0 0 0-.204-.175 2 2 0 0 0-.208-.14 2 2 0 0 0-.227-.109 1.2 1.2 0 0 0-.482-.08 1.1 1.1 0 0 0-.45.127c-.21.105-.439.273-.742.555-.042.042-.095.089-.142.133-.25.235-.528.525-.86.863a115 115 0 0 0-1.516 1.563l-.897.93a4 4 0 0 0-.446.548 1.5 1.5 0 0 0-.237.545 1.2 1.2 0 0 0 .011.452l.005.02a1.22 1.22 0 0 0 1.418.923 1 1 0 0 0 .11-.021l4.779-1.104c.376-.087.758-.167 1.097-.363.227-.132.443-.262.59-.525a1.2 1.2 0 0 0 .141-.469c.073-.65-.267-1.39-.54-1.963a6.3 6.3 0 0 0-1.2-1.71M8.97.075a9 9 0 0 0-.83.157q-.415.097-.815.223c-.868.285-2.089.807-2.295 1.807-.117.565.16 1.144.373 1.66.26.625.614 1.189.938 1.778.854 1.554 1.724 3.099 2.592 4.645.259.462.542 1.047 1.043 1.286a1 1 0 0 0 .101.038c.225.085.47.102.704.047l.042-.01a1.2 1.2 0 0 0 .566-.34 1 1 0 0 0 .079-.081c.346-.435.345-1.084.376-1.614.104-1.77.214-3.542.301-5.314.033-.671.106-1.333.066-2.01-.033-.557-.037-1.198-.39-1.656-.621-.807-1.947-.74-2.852-.616m2.083 15.95a1.105 1.105 0 0 0-1.23-.414 1 1 0 0 0-.153.064 1.5 1.5 0 0 0-.217.135c-.2.148-.367.34-.52.532-.038.049-.074.114-.12.156l-.768 1.057a114 114 0 0 0-1.291 1.79c-.278.389-.519.718-.709 1.009-.036.054-.073.116-.107.164-.228.352-.357.61-.423.838a1.1 1.1 0 0 0-.046.472c.021.166.077.325.163.467q.069.108.15.207a2 2 0 0 0 .174.183 2 2 0 0 0 .211.173c.53.37 1.111.634 1.722.84a6 6 0 0 0 1.572.3q.136.006.273-.006a2 2 0 0 0 .25-.035 2 2 0 0 0 .245-.071 1.2 1.2 0 0 0 .418-.266c.112-.113.199-.25.254-.4.089-.22.147-.502.185-.92.004-.059.012-.13.018-.195.03-.346.044-.753.067-1.231q.056-1.103.09-2.203l.05-1.306c.01-.3.001-.634-.082-.934a1.4 1.4 0 0 0-.176-.405m8.676 2.045c-.16-.176-.388-.352-.746-.568l-.169-.101c-.298-.18-.658-.369-1.078-.597a121 121 0 0 0-1.943-1.042l-1.151-.61c-.06-.018-.12-.061-.177-.088a2.9 2.9 0 0 0-.699-.25 1.5 1.5 0 0 0-.254-.027 1 1 0 0 0-.165.01 1.11 1.11 0 0 0-.923.914 1.4 1.4 0 0 0 .016.439c.056.306.193.61.335.875l.615 1.152q.512.975 1.043 1.94c.23.421.42.78.598 1.079.034.056.072.116.101.168.218.358.392.584.57.746.114.11.251.195.402.247.158.052.326.07.492.054a2 2 0 0 0 .25-.043q.124-.033.242-.078a2 2 0 0 0 .247-.115 6 6 0 0 0 1.282-.96c.46-.452.866-.945 1.182-1.51q.066-.12.114-.248a3 3 0 0 0 .077-.24 3 3 0 0 0 .043-.252 1.2 1.2 0 0 0-.056-.491 1.1 1.1 0 0 0-.248-.404m2.86 3.742a.85.85 0 0 1-.111.423.85.85 0 0 1-.312.318.84.84 0 0 1-.438.119.85.85 0 0 1-.438-.118.85.85 0 0 1-.312-.317.86.86 0 0 1-.111-.425q0-.23.114-.43a.84.84 0 0 1 .315-.316.85.85 0 0 1 .432-.115.85.85 0 0 1 .43.114.84.84 0 0 1 .315.315.85.85 0 0 1 .116.432m-.12 0q0-.2-.1-.37a.6.6 0 0 0-.27-.27.7.7 0 0 0-.371-.1.7.7 0 0 0-.37.099.75.75 0 0 0-.271.27.7.7 0 0 0-.1.37q0 .199.1.372a.74.74 0 0 0 .27.271.74.74 0 0 0 .37.099.7.7 0 0 0 .37-.1.74.74 0 0 0 .27-.27.7.7 0 0 0 .102-.371m-.577.058.272.452h-.192l-.237-.405h-.155v.405h-.17v-1.02h.3q.19 0 .278.075.09.075.089.227a.3.3 0 0 1-.05.162.3.3 0 0 1-.135.104m-.042-.14a.15.15 0 0 0 .056-.122q0-.086-.049-.122-.05-.039-.156-.038h-.12v.328h.123q.091 0 .146-.047z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.575 8.582v1.685h2.183v5.15h2.14v-5.15h2.183V8.583h-6.505ZM0 8.582l2.699 3.972v2.864h2.144v-2.864l2.693-3.971H5.172l-1.398 2.305-1.397-2.305zm8.022 0v6.836h5.84v-1.663h-3.694v-.974H13.3v-1.54h-3.132v-.974h3.589V8.583Zm13.832 0 .001 6.836H24V8.583Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.88 0c-.844.545-1.806 1.509-2.363 2.34-1.168 1.743-1.44 2.995-.8 4.863.216.634.576 1.293.836 1.873 1.022 2.278 2.062 4.328 1.81 7.285 2.16-2.761 3.015-3.886 3.926-6.57 1.251-3.688-.007-7.659-3.41-9.791M5.643 4.656a9.3 9.3 0 0 0-3.382.659c-.21 2.657 1.021 7.23 5.516 8.506 1.818.559 3.272.413 5.056.898-.576 1.017-1.41 1.989-1.908 2.974-.494.976-.585 1.943-.54 3.043.047 1.105.302 2.19.548 3.264.924-.2 1.728-.54 2.424-.977 1.832-1.148 2.939-2.985 3.253-4.963l.015-.125v.017l.006-.061.001-.01.014-.16c.01-.123.022-.247.03-.356l.005-.08c.009-.117.017-.233.023-.336l.002-.034v-.002l.001-.032.015-.34q.005-.16.005-.298v-.018a9 9 0 0 0-.014-.508c-.009-.158-.02-.305-.032-.46a11 11 0 0 0-.529-2.662 12 12 0 0 0-.178-.503c-.18-.471-.355-.85-.48-1.145a7 7 0 0 0-.275-.568 10 10 0 0 0-.143-.258 9 9 0 0 0-.435-.693l-.123-.183c-2.025-2.844-5.446-4.62-8.875-4.59"/></svg>