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="M14.075 12.029a2.506 2.506 0 0 0-2.506-2.507 2.506 2.506 0 0 0-2.505 2.506 2.506 2.506 0 0 0 2.506 2.506 2.506 2.506 0 0 0 2.505-2.506m3.532 0a1.156 1.156 0 0 0-1.156-1.156 1.156 1.156 0 0 0-1.156 1.156 1.156 1.156 0 0 0 1.156 1.155 1.156 1.156 0 0 0 1.156-1.155m4.792 5.51a1.158 1.156 0 0 0-1.158-1.156 1.158 1.156 0 0 0-1.158 1.156 1.158 1.156 0 0 0 1.158 1.156A1.158 1.156 0 0 0 22.4 17.54m-1.651-3.651a1.153 1.157 0 0 0-1.153-1.157 1.153 1.157 0 0 0-1.154 1.157 1.153 1.157 0 0 0 1.154 1.157 1.153 1.157 0 0 0 1.153-1.157m3.251.062a1.154 1.154 0 0 0-1.154-1.154 1.154 1.154 0 0 0-1.154 1.154 1.154 1.154 0 0 0 1.154 1.154 1.154 1.154 0 0 0 1.154-1.154m-3.279-3.883a1.156 1.154 0 0 0-1.156-1.154 1.156 1.154 0 0 0-1.156 1.154 1.156 1.154 0 0 0 1.156 1.153 1.156 1.154 0 0 0 1.156-1.153m3.28.045a1.161 1.157 0 0 0-1.161-1.157 1.161 1.157 0 0 0-1.162 1.157 1.161 1.157 0 0 0 1.162 1.157A1.161 1.157 0 0 0 24 10.112M22.374 6.48a1.158 1.16 0 0 0-1.157-1.16 1.158 1.16 0 0 0-1.158 1.16 1.158 1.16 0 0 0 1.158 1.16 1.158 1.16 0 0 0 1.157-1.16M11.617.383c-3.11 0-6.029 1.207-8.22 3.398A11.58 11.58 0 0 0 0 12c0 3.109 1.207 6.028 3.397 8.22a11.58 11.58 0 0 0 8.22 3.397c2.578 0 5.018-.825 7.055-2.386l-1.42-1.852a9.2 9.2 0 0 1-5.635 1.904 9.26 9.26 0 0 1-6.572-2.715A9.23 9.23 0 0 1 2.334 12c0-2.478.964-4.812 2.715-6.57a9.22 9.22 0 0 1 6.568-2.713c2.058 0 4.007.659 5.637 1.905l1.417-1.854A11.52 11.52 0 0 0 11.617.383Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.336 1.816a6.95 6.95 0 0 0-6.879 5.889 7.9 7.9 0 0 1 2.24-.412A4.855 4.855 0 0 1 11.33 3.92a4.85 4.85 0 0 1 3.45 1.44 4.8 4.8 0 0 1 1.197 2.01 8 8 0 0 1 .875-.067h.33a8 8 0 0 1 .976.076 6.95 6.95 0 0 0-6.822-5.564zM6.99 8.224A6.983 6.983 0 0 0 0 15.2a6.98 6.98 0 0 0 6.977 6.976 6.97 6.97 0 0 0 4.933-2.03l1.56-1.581-1.488-1.488-1.55 1.582a4.86 4.86 0 0 1-3.452 1.436A4.88 4.88 0 0 1 2.104 15.2a4.877 4.877 0 0 1 4.876-4.871 4.86 4.86 0 0 1 2.819.904l.04-.043 1.466-1.465A6.97 6.97 0 0 0 6.99 8.224m10.04 0a6.97 6.97 0 0 0-4.936 2.047l-1.59 1.574 1.488 1.489 1.58-1.584A4.88 4.88 0 0 1 21.9 15.2a4.88 4.88 0 0 1-4.877 4.882 4.86 4.86 0 0 1-2.83-.914l-.045.046s-1.078 1.096-1.437 1.467a6.95 6.95 0 0 0 4.312 1.504A6.983 6.983 0 0 0 24 15.205a6.95 6.95 0 0 0-2.04-4.933 6.96 6.96 0 0 0-4.93-2.047z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.878 19.1c-2.861-.25-5.385-1.312-7.03-2.954-.936-.936-1.504-1.952-1.76-3.149-.118-.544-.117-1.448 0-1.997.357-1.664 1.433-3.12 3.126-4.23 3.862-2.533 9.778-2.52 13.604.03.508.338.836.607 1.296 1.06.58.573.988 1.142 1.418 1.98.016.03.095.07.176.086.27.056.633.268.924.54.226.21.401.44.832 1.093.435.658 2.404 3.697 2.524 3.896.046.078-.046.202-.15.202-.073 0-.126-.05-.234-.22l-1.116-1.732c-1.9-2.942-2.003-3.078-2.532-3.343l-.278-.14h-.817c-.816 0-.817.001-.837.087-.108.47-.128.586-.104.608.015.014.478.278 1.03.586l1.002.562-.062.131c-.035.072-.074.132-.088.132s-.858-.468-1.875-1.039c-1.018-.57-1.91-1.054-1.982-1.074-.29-.08-.734.24-.734.529 0 .292.087.378 1.874 1.841 1.115.914 1.753 1.462 1.85 1.592.178.236.357.584.523 1.012.29.754.763 1.174 1.538 1.368l.255.064-.021.14a.7.7 0 0 1-.037.157c-.033.037-.547-.127-.844-.27-.465-.223-.785-.541-1.099-1.094a6 6 0 0 0-.405.139c-.391.142-.41.154-.78.515-1.576 1.538-3.836 2.521-6.566 2.855-.443.055-2.15.079-2.621.037m2.717-.473c1.252-.166 2.223-.414 3.24-.83 1.067-.437 2.073-1.065 2.777-1.733l.277-.264-.698-.333c-.746-.357-.82-.416-.915-.735-.06-.2.008-.415.198-.621l.149-.161-.324-.246c-.256-.195-.336-.28-.386-.41a.65.65 0 0 1 .079-.616l.098-.138-1.023-.18a26 26 0 0 1-1.166-.222.58.58 0 0 1-.35-.391c-.022-.092.48-2.54.592-2.89a.67.67 0 0 1 .426-.376c.169-.031 3.185.499 3.335.587.238.138.313.362.238.705l-.032.144h.167c.092 0 .31-.012.483-.025l.316-.025-.157-.29c-.474-.882-1.33-1.768-2.388-2.472-.494-.328-1.547-.847-2.181-1.074a13.5 13.5 0 0 0-3.043-.674c-.575-.06-2.082-.06-2.64.001-1.339.146-2.554.449-3.617.902C2.59 7.309.935 9.046.512 11.027c-.11.517-.12 1.423-.018 1.894.224 1.04.713 1.941 1.509 2.78 1.62 1.707 4.097 2.756 7.066 2.994.397.031 2.121-.015 2.526-.068m-.543-1.864c-.153-.044-.308-.227-.34-.4-.022-.114.004-.192.166-.506.656-1.27.941-2.437.941-3.855 0-1.37-.252-2.435-.879-3.713-.135-.274-.245-.529-.245-.565 0-.136.114-.333.237-.41.169-.107.452-.087.588.04.052.05.187.271.3.494.449.88.756 1.847.908 2.853.094.623.113 1.803.038 2.373a9.3 9.3 0 0 1-.86 2.909c-.27.555-.438.784-.58.784a.4.4 0 0 0-.101.015.4.4 0 0 1-.173-.019m-1.826-.955c-.234-.069-.404-.357-.336-.573.017-.052.127-.293.246-.535a6 6 0 0 0 .609-3.201c-.084-.886-.243-1.445-.643-2.263-.269-.549-.281-.634-.125-.854.148-.21.519-.245.713-.066.135.124.555 1 .716 1.496a7.1 7.1 0 0 1-.232 5.016c-.352.826-.599 1.081-.948.98m-1.882-.969a.57.57 0 0 1-.304-.374c-.021-.094.014-.198.187-.547.632-1.28.639-2.514.02-3.765-.271-.55-.277-.659-.047-.876.113-.107.161-.126.32-.126.267 0 .406.135.644.625.367.754.518 1.408.516 2.246 0 .86-.141 1.452-.533 2.247-.225.455-.336.575-.56.606a.5.5 0 0 1-.243-.036m-1.757-.902a.6.6 0 0 1-.286-.34c-.043-.152-.008-.273.165-.557.222-.365.274-.56.274-1.038 0-.477-.052-.673-.274-1.038a2 2 0 0 1-.168-.329c-.071-.24.129-.535.398-.586.228-.043.385.06.595.387a2.96 2.96 0 0 1 0 3.155c-.215.332-.454.45-.704.346m13.09 1.473c.203-.073.379-.141.39-.153.012-.011-.027-.141-.087-.289-.122-.302-.102-.295-.534-.212-.468.09-.739.01-1.25-.366-.14-.103-.283-.187-.32-.187-.036 0-.115.053-.177.119-.13.14-.15.36-.044.49.093.113 1.377.724 1.53.727.067.002.289-.056.492-.129m-.202-.983c.19-.038.211-.051.178-.112-.036-.068-1.812-1.542-1.966-1.632-.127-.074-.23-.057-.335.056-.309.33-.273.4.526 1.013.964.738 1.066.782 1.597.675m-2.384-2.231c0-.01-.201-.183-.448-.385-.608-.501-.738-.688-.738-1.058 0-.31.206-.608.538-.78a.97.97 0 0 1 .625-.057c.118.038.648.325 1.383.748l.155.089.128-.606c.13-.62.133-.782.012-.82a85 85 0 0 0-1.575-.286c-1.473-.26-1.634-.275-1.702-.164-.037.06-.597 2.656-.597 2.767 0 .055.028.124.062.152.034.029.512.132 1.062.23 1.062.191 1.095.196 1.095.17"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.629 0v24H20.37V0zM17.59 21.208H6.421V10.604h7.812V6.692h3.346v14.516zm-7.823-7.812h4.466v5.02H9.767z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.133 14.233c.672 3.125 1.23 6.1 3.189 8.242H1.588A1.6 1.6 0 0 1 0 20.897V3.109a1.6 1.6 0 0 1 1.588-1.584h2.698a10.3 10.3 0 0 0-1.718 2.028c-2.135 3.271-1.257 6.838-.435 10.68M22.411 1.525h-4.234c1.002 1.002 1.847 2.3 2.486 3.913l-6.437 1.358c-.706-1.351-1.779-2.476-3.877-2.034-1.156.245-1.923.894-2.264 1.604-.418.876-.624 1.858.377 6.525.999 4.667 1.588 5.481 2.327 6.112.601.511 1.57.794 2.727.55 2.1-.442 2.617-1.902 2.708-3.422l6.437-1.359c.153 3.329-.879 5.911-2.699 7.696h2.449A1.6 1.6 0 0 0 24 20.891V3.109a1.6 1.6 0 0 0-1.589-1.584"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.875 16.361c-.043-.048-1.067-1.18-2.365-1.19-.68 0-1.288.283-1.815.858-.773.842-2.35 1.85-4.25 1.921-1.598.059-3.085-.548-4.423-1.805-1.644-1.544-2.155-4.016-1.302-6.297.834-2.23 2.752-3.616 5.131-3.707l.044-.004c.024-.003 2.302-.258 4.325 1.548.17.185 1.154 1.197 2.475 1.228.823.018 1.586-.336 2.27-1.055.602-.632.87-1.342.797-2.112-.154-1.61-1.806-2.876-2.03-3.04-.212-.184-1.878-1.578-4.476-2.294-2.52-.695-6.42-.853-10.685 2.349a7 7 0 0 0-.557.49c-.28.208-.523.462-.716.753a12.47 12.47 0 0 0-3.064 8.677c.207 6.283 5.265 9.293 5.646 9.51.262.17 2.906 1.81 6.495 1.809 2.106 0 4.538-.565 7.005-2.322.248-.138 1.714-1.012 2.103-2.52.23-.894.042-1.815-.562-2.737zm-16.932 1.97c0-1.09.887-1.977 1.977-1.977s1.977.886 1.977 1.977c0 1.09-.887 1.977-1.977 1.977s-1.977-.887-1.977-1.977m.139-13.657c.236-.275.451-.498.628-.67a1.97 1.97 0 0 1 1.088-.329c1.09 0 1.977.887 1.977 1.977S7.888 7.63 6.798 7.63s-1.977-.887-1.977-1.977c0-.356.096-.69.261-.978zM13.249.999c3.954 0 6.657 2.336 6.826 2.486l.043.034c.42.3 1.532 1.301 1.63 2.324.044.469-.126.898-.52 1.313-.477.5-.983.752-1.504.738-.964-.019-1.743-.887-1.76-.905l-.042-.044c-2.292-2.063-4.83-1.855-5.13-1.822a6.8 6.8 0 0 0-3.012.818 3 3 0 0 0-2.34-3.214C9.543 1.45 11.516.999 13.248.999zM3.884 6.34a3 3 0 0 0 2.914 2.31q.182-.001.358-.024a7 7 0 0 0-.39.866c-.75 2.003-.59 4.14.359 5.854q-.102-.009-.205-.01a3 3 0 0 0-2.967 2.6 10.07 10.07 0 0 1-1.7-5.288 11.43 11.43 0 0 1 1.63-6.309zM21.497 18.9c-.3 1.174-1.615 1.89-1.627 1.896l-.058.036c-6.287 4.499-12.137.667-12.382.502l-.036-.022-.034-.02a3 3 0 0 0 2.543-3.228c1.124.64 2.336.951 3.58.906 2.214-.083 4.057-1.264 4.962-2.25.327-.356.67-.53 1.048-.53h.005c.762.004 1.46.688 1.593.826.421.658.558 1.291.406 1.884"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.564 10.108a.347.347 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.79a.35.35 0 0 1 .37-.368h6.964a.347.347 0 0 1 .364.369zm3.085 2.29a.347.347 0 0 1-.368.37h-8.59a.343.343 0 0 1-.363-.37v-.807a.342.342 0 0 1 .364-.364h8.514a.346.346 0 0 1 .369.364zm2.35 2.35a.347.347 0 0 1-.37.368h-9.32a.342.342 0 0 1-.364-.368v-.803a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm0 2.352a.347.347 0 0 1-.37.364h-9.32a.343.343 0 0 1-.364-.364v-.807a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm-2.35 2.273a.35.35 0 0 1-.368.37h-8.589a.347.347 0 0 1-.364-.37v-.807a.346.346 0 0 1 .364-.37h8.515a.35.35 0 0 1 .368.37zm-3.085 2.349a.346.346 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.808a.347.347 0 0 1 .37-.365h6.964a.343.343 0 0 1 .364.365zM5.354 3.087a.347.347 0 0 0 .37.364h6.97a.342.342 0 0 0 .367-.365V2.28a.346.346 0 0 0-.368-.369h-6.97a.35.35 0 0 0-.367.37ZM2.35 5.43a.342.342 0 0 0 .364.364h8.514a.346.346 0 0 0 .368-.364v-.807a.35.35 0 0 0-.368-.37H2.712a.346.346 0 0 0-.364.37ZM0 7.778a.342.342 0 0 0 .364.364h9.321a.342.342 0 0 0 .364-.364V6.97a.346.346 0 0 0-.364-.37H.365a.347.347 0 0 0-.364.37Zm0 2.33a.347.347 0 0 0 .364.37h9.321a.346.346 0 0 0 .364-.37v-.79a.346.346 0 0 0-.364-.368H.365A.347.347 0 0 0 0 9.319Zm2.347 2.291a.342.342 0 0 0 .365.368h8.513a.346.346 0 0 0 .37-.368v-.808a.346.346 0 0 0-.37-.364H2.713a.342.342 0 0 0-.365.364zm3.008 2.348a.346.346 0 0 0 .369.368h6.968a.346.346 0 0 0 .37-.368v-.803a.346.346 0 0 0-.37-.37H5.725a.347.347 0 0 0-.37.37z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.992 0C5.374 0 .008 5.381.008 12c0 6.633 5.35 12 11.984 12s12-5.367 12-12-5.381-12-12-12m0 2.504c5.247 0 9.512 4.264 9.512 9.496s-4.265 9.51-9.512 9.51S2.496 17.262 2.496 12a9.493 9.493 0 0 1 9.496-9.496m-.059 2.385c-3.935 0-7.127 3.176-7.127 7.127s3.192 7.14 7.127 7.14c1.968 0 3.756-.79 5.038-2.088a1.89 1.89 0 0 0 0-2.683 1.87 1.87 0 0 0-2.668 0 3.33 3.33 0 0 1-2.37.984c-1.848 0-3.34-1.52-3.34-3.353s1.492-3.34 3.34-3.34V8.66c.925 0 1.758.373 2.37.984.73.731 1.922.731 2.668 0s.745-1.923 0-2.683a7.1 7.1 0 0 0-5.038-2.072m.059 5.754c-.76 0-1.371.612-1.371 1.373s.61 1.37 1.37 1.37 1.372-.625 1.372-1.37-.61-1.373-1.371-1.373"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.688 0c-6.627 0-12 5.373-12 12s5.373 12 12 12a12 12 0 0 0 10.624-6.412 10.48 10.48 0 0 1-8.374 4.162c-5.799 0-10.5-4.701-10.5-10.5S9.14.75 14.938.75c1.001 0 1.97.14 2.887.402A11.96 11.96 0 0 0 12.688 0m2.438 2.25a9 9 0 1 0 7.967 13.19 7.875 7.875 0 1 1-4.115-12.326 9 9 0 0 0-3.852-.864"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.382 0 0 5.382 0 12s5.382 12 12 12 12-5.382 12-12S18.618 0 12 0m0 1.6c5.753 0 10.4 4.647 10.4 10.4S17.753 22.4 12 22.4 1.6 17.753 1.6 12 6.247 1.6 12 1.6"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .037C5.373.037 0 5.394 0 12s5.373 11.963 12 11.963c6.628 0 12-5.357 12-11.963S18.627.037 12 .037m-.541 4.8c1.91-.13 3.876.395 5.432 1.934 1.426 1.437 2.51 3.44 2.488 5.317h2.133l-4.444 4.963-4.445-4.963h2.313c-.001-1.724-.427-2.742-1.78-4.076-1.325-1.336-2.667-2.11-4.978-2.303a9.2 9.2 0 0 1 3.281-.871zM6.934 6.95l4.445 4.963H9.066c0 1.724.426 2.742 1.778 4.076 1.326 1.336 2.667 2.112 4.978 2.305-2.684 1.268-6.22 1.398-8.71-1.064-1.427-1.437-2.512-3.44-2.489-5.317H2.488z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.806 0a12 12 0 0 0-4.512.885A12 12 0 0 0 .858 12.978a12 12 0 0 0 9.303 10.724 12 12 0 0 0 13.021-5.656L12.817 12l9.244-7.65A12 12 0 0 0 12.806 0M9.218 2.143c.34-.003.701.123 1.193.378.847.437 1.013 1.027.36 1.277-.487.187-2.457.177-2.932-.015-.526-.212-.38-.781.32-1.24.402-.263.72-.396 1.059-.4m4.077 4.052h.022a1.29 1.29 0 0 1 1.292 1.291 1.29 1.29 0 0 1-1.292 1.292 1.29 1.29 0 0 1-1.292-1.292 1.29 1.29 0 0 1 1.27-1.291m-6.259 3.8c1.033 0 1.788.434 1.788 1.028 0 .694-1.961 2.384-2.766 2.384-.365 0-.727-.166-.804-.368-.078-.203.117-.97.434-1.706.505-1.176.67-1.338 1.348-1.338m8.637 9.187c.372 0 1.362 2.316 1.186 2.775-.201.524-1.046.467-1.564-.105-.676-.747-.404-2.67.378-2.67"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.526c-.97 0-2.528.285-5.647 1.43-2.721 1-3.219 1.246-3.65 1.443C.603 6.361 0 7.356 0 9.863v4.608c0 2.326.357 3.004 2.49 3.933.741.32 1.858.875 4.71 1.956 1.263.478 3.153 1.114 4.797 1.114 1.645 0 3.543-.636 4.801-1.114 2.857-1.081 3.975-1.636 4.714-1.956C23.647 17.475 24 16.797 24 14.471V9.863c.003-2.507-.593-3.502-2.694-4.464-.431-.197-.929-.444-3.65-1.443-3.124-1.145-4.685-1.43-5.656-1.43m0 .645c1.373 0 3.347.595 5.492 1.393 2.609.967 2.824 1.106 3.344 1.323 1.472.615 2.5 1.384 2.5 3.667l-.003 2.401v2.691c0 1.769-.408 2.442-1.867 3.096-1.22.542-1.344.6-3.871 1.59-1.596.625-3.716 1.451-5.595 1.451s-3.998-.826-5.589-1.451c-2.525-.989-2.644-1.047-3.869-1.59-1.461-.653-1.866-1.327-1.866-3.095V9.555c0-2.284 1.028-3.053 2.495-3.668.522-.218.736-.357 3.342-1.323C8.666 3.766 10.628 3.171 12 3.171m.722.811v7.681h3.071v-1.381l-1.724-.125V4.435zm-2.212.275a1.1 1.1 0 0 0-.45.078c-1.197.456-1.659 2.22-1.576 4.115.086 1.936.747 3.292 1.813 3.292 1.191 0 1.985-1.341 1.939-3.985-.033-1.903-.72-3.46-1.726-3.5m5.666.867.001 6.539h2.962v-1.159l-1.739-.118V9.203l1.442.195V8.221L17.4 7.925V6.817l1.739.462V6.108zm-9.641.436a1.1 1.1 0 0 0-.3.059c-.978.328-1.489 1.71-1.431 3.357.059 1.62.642 2.765 1.603 2.765 1.174 0 1.788-1.278 1.751-3.314-.032-1.619-.686-2.912-1.623-2.867m3.8.302c.339.019.556.844.586 2.042.034 1.332-.188 2.349-.608 2.39-.379.038-.606-.808-.645-1.965-.045-1.319.212-2.246.514-2.424a.27.27 0 0 1 .153-.043m9.194.379v5.422h1.121V9.919l.376.043.526 1.701h.954l-.593-1.798c.265-.115.56-.451.56-1.199 0-.813-.426-1.578-1.15-1.822zm-16.355.554q-.102.003-.204.025c-1.117.253-1.561 1.476-1.525 2.782.036 1.27.635 2.14 1.594 2.14.859 0 1.585-.886 1.585-1.857l-.976.082c-.048.429-.324.74-.623.762-.455.032-.64-.483-.656-1.268-.016-.796.154-1.432.615-1.562.3-.084.506.143.579.502l1.015-.189c-.139-.844-.749-1.436-1.404-1.417m3.234.021c.356-.021.598.704.619 1.739.025 1.082-.207 1.912-.598 1.944-.367.031-.585-.701-.615-1.702-.029-1.132.26-1.879.521-1.967a.3.3 0 0 1 .073-.014m14.241.864.526.14c.253.067.43.318.43.664s-.177.517-.43.47l-.526-.098zM10.53 12.161c-.95-.012-1.868.806-1.839 2.039.048 2.208 2.456 1.856 2.474 3.691 0 .275-.154.553-.435.525-.356-.068-.623-.314-.647-1.07l-1.251-.307c-.013 1.153.404 2.373 1.625 2.638 1.187.261 2.276-.697 2.019-2.346-.304-1.917-2.469-2.031-2.524-3.059-.02-.385.259-.645.534-.615.203.024.468.24.431.762l1.338.132c.071-1.353-.499-2.369-1.725-2.39m-8.982.072v4.305l.761.266v-2.722l.576 2.919.327.113.742-2.789v3.047l.997.345v-5.484H3.659l-.578 2.286-.445-2.286zm4.648 0-1.015 5.56.97.335.136-.856 1.066.302.154 1.019 1.181.412-1.269-6.772zm6.526 0v1.599l.937-.063.002 5.841 1.281-.427v-5.505l.842-.069v-1.376zm3.454 0v6.539l2.963-.987v-1.149l-1.739.457v-1.207l1.533-.305V14.41l-1.533.198v-1.095l1.739-.122v-1.158zm3.353 0v5.422l1.122-.373v-1.733l.377-.082.52 1.516.958-.319-.585-1.594c.264-.204.559-.64.559-1.392 0-.819-.426-1.445-1.153-1.445zm1.696 1.03c.229.008.385.198.385.523 0 .348-.178.579-.431.617l-.529.077v-1.179l.529-.037zM6.79 13.96l.376 2.291-.723-.162z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.364 4.364V0h17.454v4.364zm0 13.09H0V4.365h4.364zm0 0h17.454v4.364H4.364ZM6.545 6.546v-1.7H22.3V2.182H24v4.363zm0 0v10.4h-1.7v-10.4Zm-2.663 11.39v1.7h-1.7v-1.7ZM24 24H6.545v-1.7H22.3v-2.664H24Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.275 5.265c0-.852-.132-1.703-.36-2.555-.328-1.016-1.081-1.834-2.031-2.194a9.25 9.25 0 0 0-6.092 0 3.17 3.17 0 0 0-2.03 2.194 9.53 9.53 0 0 0 0 5.077c.326 1.015 1.08 1.834 2.03 2.194a8 8 0 0 0 3.046.491c1.049 0 2.063-.196 3.046-.491a3.17 3.17 0 0 0 2.031-2.194c.229-.819.36-1.67.36-2.522m-3.308 0c0 .393-.065.852-.196 1.212-.164.524-.623.95-1.18 1.081a4.2 4.2 0 0 1-1.571 0 1.47 1.47 0 0 1-1.18-1.081 4.03 4.03 0 0 1 0-2.489c.163-.524.622-.95 1.18-1.081a4.2 4.2 0 0 1 1.571 0 1.48 1.48 0 0 1 1.18 1.081q.195.687.196 1.277m-8.745 13.79a9.55 9.55 0 0 0 0-5.077c-.327-1.016-1.081-1.834-2.03-2.195a9.25 9.25 0 0 0-6.092 0 3.17 3.17 0 0 0-2.031 2.195 9.55 9.55 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.193a9.25 9.25 0 0 0 6.092 0 3.4 3.4 0 0 0 2.03-2.193m-2.948-2.523c0 .393-.066.852-.197 1.212a1.64 1.64 0 0 1-1.179 1.081 4.2 4.2 0 0 1-1.572 0 1.48 1.48 0 0 1-1.179-1.081 4.04 4.04 0 0 1 0-2.489 1.64 1.64 0 0 1 1.179-1.081 4.2 4.2 0 0 1 1.572 0 1.48 1.48 0 0 1 1.179 1.081q.197.639.197 1.277m0-11.3h3.308c0-.851-.131-1.703-.36-2.521-.327-1.016-1.081-1.834-2.03-2.194a9.25 9.25 0 0 0-6.092 0C2.084.909 1.331 1.728 1.068 2.743a9.55 9.55 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.194.982.36 1.998.492 3.046.492s2.063-.197 3.046-.492a3.17 3.17 0 0 0 2.03-2.194c.033-.131.065-.295.131-.426L8.241 5.953c-.033.196-.065.36-.131.557-.163.524-.622.95-1.179 1.081a4.2 4.2 0 0 1-1.572 0A1.48 1.48 0 0 1 4.18 6.51a4.04 4.04 0 0 1 0-2.489c.164-.524.622-.95 1.179-1.082a4.2 4.2 0 0 1 1.572 0A1.48 1.48 0 0 1 8.11 4.021c.098.425.164.818.164 1.211m4.421 8.779a9.4 9.4 0 0 0-.36 2.555V24h3.308v-7.468c0-.393.065-.852.196-1.212.163-.524.622-.95 1.18-1.081a4.2 4.2 0 0 1 1.571 0 1.48 1.48 0 0 1 1.18 1.081 4.04 4.04 0 0 1 0 2.489c-.164.523-.623.95-1.146 1.08a4.2 4.2 0 0 1-1.572 0c-.099-.031-.229-.064-.327-.098l1.113 3.079c1.049 0 2.063-.197 3.046-.491a3.18 3.18 0 0 0 2.031-2.194 9.55 9.55 0 0 0 0-5.077c-.328-1.016-1.081-1.834-2.031-2.195a9.25 9.25 0 0 0-6.092 0c-1.016.263-1.769 1.082-2.097 2.098"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .105v6.456c.69-.02 1.48.208 2.336.32l-1.502.191c-.256.01-.545.033-.834.06v.339a20 20 0 0 1 3.387-.344c9.682-2.296 17.7-.135 17.7-.135C19.368 6.602 9.78 5.302 0 9.122v.58c1.452-.489 2.986-.867 4.453-1.04 2.176-.267 4.2-.147 5.902.332 7.157-.509 12.342 1.016 12.342 1.016C20.75 9.694 10.303 8.269 0 12.953v.465c2.852-1.355 5.844-2.138 8.395-2.305 2.585-.138 4.896.228 6.634 1.256 4.1-.063 7.225.467 8.971.889V.105zm7.264 7.397a7.3 7.3 0 0 1 1.859.787l-.734-.115c-.63-.236-1.377-.394-2.118-.498.321-.07.635-.13.993-.174m-.059 1.807C5.014 9.306 2.491 9.697 0 10.518v.752c2.566-.993 5.155-1.598 7.639-1.956a18 18 0 0 0-.434-.005m5.643.75c.511.336 1.198.871 1.605 1.38l-.426-.138c-.605-.435-1.239-.831-2.058-1.164.274-.018.557-.062.879-.078m-3.323 2.224c-2.884.008-6.186.705-9.525 2.096v1.453c4.215-2.037 8.514-3.007 12.258-3.328a15.6 15.6 0 0 0-2.733-.22zm9.104.865c-5.013.01-12.024.842-18.629 4.598v.606c.29-.165.58-.321.854-.467 2.156-1.153 4.31-1.957 6.464-2.446 2.039-.483 4.035-.653 5.86-.492 3.45.308 5.93 1.808 7.123 4.395.01.02.863 1.919.945 3.71l-.414-1.025c-.11-.512-.252-1.038-.521-1.51-.884-1.707-2.606-2.935-4.93-3.654-2.11-.662-4.882-.69-7.758-.13-2.552.48-5.15 1.438-7.623 2.656v4.506h.24c1.483-1.097 3.083-1.901 4.746-2.557 4.36-1.865 8.601-2.43 11.784-1.59 2.336.665 3.864 2.038 4.486 4.147H24V13.447a47 47 0 0 0-5.371-.299m-1.912.397q.192.14.365.351c.044.063 1.468 1.458 1.945 2.877l-.605-.664c-.727-1.066-1.648-1.873-2.926-2.49.382-.045.862-.058 1.22-.074zm-4.211 7.443a20 20 0 0 0-3.332.344c-2.37.43-4.854 1.23-7.242 2.563h18.226c-.849-1.231-2.199-2.02-3.85-2.471-1.17-.309-2.442-.455-3.802-.436"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.738 2.879a.716.716 0 0 0-.738.74v16.762c0 .428.35.74.738.74h22.52a.74.74 0 0 0 .739-.74V3.619c.039-.428-.31-.74-.738-.74Zm6.614 6.34c1.167 0 2.1.935 2.1 2.101 0 .234-.04.427-.079.621h12.058v1.868h-.973v2.527h-.97v-1.283h-.935v1.283h-.972v-2.527H9.373c.04.194.079.428.079.623a2.09 2.09 0 0 1-2.1 2.1c-1.011 0-1.83-.7-2.063-1.634a3.4 3.4 0 0 1-.62.077 2.09 2.09 0 0 1-2.102-2.1c0-1.167.934-2.1 2.101-2.1.234 0 .427 0 .621.079.234-.934 1.052-1.635 2.063-1.635m0 1.168c-.545 0-.973.428-.934.933 0 .506.428.932.934.932a.945.945 0 0 0 .933-.932.947.947 0 0 0-.933-.933M4.668 11.94a.947.947 0 0 0-.933.934c0 .506.428.934.933.934a.947.947 0 0 0 .934-.934.947.947 0 0 0-.934-.934m2.684 1.518a.947.947 0 0 0-.934.934c0 .505.428.933.934.933a.947.947 0 0 0 .933-.933.947.947 0 0 0-.933-.934"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.637 8.66c0-.083-.034-.115-.118-.111-.124.004-.249 0-.373 0a1.5 1.5 0 0 0-1.015.402 2.5 2.5 0 0 0-.462.594q-.079.132-.159.263l-.021-.005q-.006-.045-.008-.092l-.01-.89c0-.065-.008-.11-.094-.112-.477-.01-.953-.016-1.43-.008-.095.001-.118.037-.119.127a385 385 0 0 0 0 6.369c0 .075.028.09.096.09.48.009.96.014 1.439 0 .17-.004.173-.006.175-.18.012-1.167.021-2.334.036-3.5a1.26 1.26 0 0 1 1.011-1.258 3.5 3.5 0 0 1 .938-.052c.095.004.115-.025.114-.114-.003-.29.003-.58.003-.87 0-.217-.004-.435-.003-.652M3.296 9.995a.97.97 0 0 1 .8.475 1.6 1.6 0 0 1 .196.498c.015.07.047.085.111.083.256-.003.511 0 .766 0 .256 0 .511-.005.767.003.095.002.118-.028.109-.117a2.44 2.44 0 0 0-1.4-2.076 3.57 3.57 0 0 0-2.205-.264A2.6 2.6 0 0 0 .493 9.938a4 4 0 0 0-.465 1.671 5 5 0 0 0 .149 1.846 2.6 2.6 0 0 0 1.404 1.713 3.58 3.58 0 0 0 2.269.212c1.391-.289 2.016-1.34 2.185-2.36.015-.088-.002-.127-.108-.125-.463.006-.926.002-1.388.002-.223 0-.223 0-.282.22a1.16 1.16 0 0 1-.985.91 1.14 1.14 0 0 1-1.144-.47 1.8 1.8 0 0 1-.272-.675 5.6 5.6 0 0 1-.062-1.114 2.4 2.4 0 0 1 .084-.655c.155-.604.563-1.18 1.418-1.119m7.91-1.231A3.8 3.8 0 0 0 8.57 8.76a2.87 2.87 0 0 0-1.836 1.862 4.3 4.3 0 0 0-.042 2.618 2.88 2.88 0 0 0 1.862 1.991 3.8 3.8 0 0 0 2.54.043 2.9 2.9 0 0 0 1.838-1.644 3.9 3.9 0 0 0 .315-1.626 5 5 0 0 0-.098-.973 2.96 2.96 0 0 0-1.942-2.268m.056 4.367a1.3 1.3 0 0 1-1.258.865 1.7 1.7 0 0 1-.733-.091 1.42 1.42 0 0 1-.826-.912 3 3 0 0 1-.137-1.076 2.46 2.46 0 0 1 .234-1.14 1.34 1.34 0 0 1 1.193-.777 1.7 1.7 0 0 1 .744.09 1.3 1.3 0 0 1 .786.776 3.1 3.1 0 0 1-.003 2.265zm12.666 1.875a.5.5 0 0 1-.203-.228 1.05 1.05 0 0 1-.093-.462c-.025-1.342-.004-2.686-.038-4.028a1.51 1.51 0 0 0-.547-1.14 2.5 2.5 0 0 0-1.126-.515 5.4 5.4 0 0 0-1.71-.056 2.7 2.7 0 0 0-1.073.32c-.708.403-.985 1.063-1.083 1.83-.011.088.022.101.099.1q.653-.003 1.305-.001c.237 0 .237 0 .297-.225a.85.85 0 0 1 .748-.661 3 3 0 0 1 .784.02.69.69 0 0 1 .622.717.47.47 0 0 1-.285.441 1.5 1.5 0 0 1-.42.101c-.592.1-1.19.161-1.775.294a1.92 1.92 0 0 0-1.386 1.032 2.3 2.3 0 0 0-.194 1.282 1.7 1.7 0 0 0 .89 1.373 2.7 2.7 0 0 0 2.783-.285q.186-.157.368-.318c.056-.048.076-.04.086.035a3.4 3.4 0 0 0 .121.575.11.11 0 0 0 .125.09c.273-.005.546-.002.818-.002v-.008c.273 0 .546.002.818-.002.049 0 .12.023.131-.062.01-.08.034-.167-.062-.217m-2.584-1.072a1.7 1.7 0 0 1-1.068.289.78.78 0 0 1-.698-.984.82.82 0 0 1 .585-.65 6 6 0 0 1 .815-.187 2.7 2.7 0 0 0 .865-.267c.056-.033.066-.003.066.042v.435h.004v.28a1.18 1.18 0 0 1-.569 1.042"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.651 0C10.265.019 9.4.272 8.584.657c-.816.39-3.696 2.161-3.752 6.536.072 4.145 3.847 11.191 6.397 13.455 0 0-4.141-6.952-4.439-13.013C6.488 1.575 10.651 0 10.651 0m2.679 0s4.159 1.575 3.861 7.635c-.299 6.061-4.439 13.013-4.439 13.013 2.547-2.264 6.324-9.31 6.396-13.455-.057-4.375-2.936-6.146-3.752-6.536C14.58.272 13.715.019 13.33 0m-1.38.019a1.1 1.1 0 0 0-.555.144C9.864.99 8.909 3.982 9.177 8.66c.185 3.242 1.009 7.291 2.422 11.988h.7c1.413-4.697 2.24-8.742 2.425-11.984.268-4.677-.688-7.674-2.219-8.501a1.1 1.1 0 0 0-.555-.144M7.017 1.066S2.543 2.909 3.431 8.225c.884 5.32 5.588 10.995 6.986 12.2.503.457-5.777-6.548-6.386-12.699-.291-2.323.39-4.9 2.986-6.66m9.966 0c2.595 1.76 3.276 4.337 2.985 6.66-.608 6.151-6.888 13.156-6.386 12.699 1.398-1.205 6.103-6.88 6.987-12.2.888-5.316-3.586-7.159-3.586-7.159m-6.815 20.78L10.647 24h2.599l.488-2.154z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.69 7.499c-.919-.965-1.577-2.105-1.6-3.116.655-.187 2.017.001 3.35.558 1.354.566 2.668 1.514 3.158 2.831q.022.059.041.116a2.34 2.34 0 0 1-.529 1.14c-.26.279-.586.487-.948.605-1.143-.23-2.464-1.074-3.472-2.134m5.581 2.244c-.957.334-1.839 1.311-2.473 2.482v.001c-.697 1.284-1.093 2.799-.96 3.957.225.307.523.553.869.713.394.163.826.215 1.247.151q.056-.041.1-.075c1.103-.872 1.6-2.413 1.72-3.875.119-1.437-.122-2.79-.503-3.354m-7.939-3.389a2.23 2.23 0 0 0-.283-1.088 2.33 2.33 0 0 0-.92-.853l-.123.002C8.6 4.473 7.292 5.428 6.334 6.541 5.393 7.633 4.791 8.87 4.768 9.55c.969.288 2.257.017 3.459-.559v.002c1.32-.631 2.532-1.625 3.105-2.639M7.96 14.641c-.193-1.449-.765-2.907-1.553-3.767a2.25 2.25 0 0 0-1.123-.067c-.415.099-.794.31-1.097.61l-.036.118c-.38 1.355.125 2.893.886 4.146.749 1.233 1.741 2.185 2.382 2.418.577-.832.718-2.139.54-3.459zm5.297 2c-1.439-.264-3.004-.172-4.065.311a2.2 2.2 0 0 0-.411 1.046c-.034.426.05.852.243 1.233q.05.037.1.068c1.172.779 2.793.774 4.223.438 1.405-.332 2.619-.978 3.039-1.515-.614-.807-1.817-1.344-3.128-1.584zM24 12c0 6.622-5.364 11.992-11.985 12C5.387 24.008.008 18.642 0 12.015-.008 5.387 5.358.008 11.985 0h.001C18.617-.004 23.996 5.369 24 12m-1.547 0c-.003-5.778-4.69-10.459-10.468-10.456-5.774.007-10.45 4.693-10.443 10.468s4.693 10.45 10.468 10.443C17.78 22.448 22.453 17.77 22.453 12"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.734 11.603a5.665 5.665 0 0 1-1.44 5.033 5.66 5.66 0 0 1-3.789 1.741 5.67 5.67 0 0 1-3.979-1.365 5.66 5.66 0 0 1-1.921-3.684 5.67 5.67 0 0 1 1.17-4.057 5.67 5.67 0 0 1 3.574-2.095 5.67 5.67 0 0 1 4.123.97 5.67 5.67 0 0 1 2.262 3.457M24 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6m-2.172 3.483a9.17 9.17 0 0 0-5.973-5.849c.159.423.239.874.238 1.326a6.6 6.6 0 0 0-4.632-2.564 6.6 6.6 0 0 0-3.265.538 3.78 3.78 0 0 1 2.03 1.533 6.63 6.63 0 0 0-5.611.561 6.6 6.6 0 0 0-1.784 1.581 3.79 3.79 0 0 1 3.262.843 3.78 3.78 0 0 1-2.778 1.039q.232.377.544.689l-.031.051a3.8 3.8 0 0 0-1.68 1.496 3.754 3.754 0 0 0-.029 3.809 1.53 1.53 0 0 1 1.622-1.686c.921.071 1.576.983 1.351 1.88a1.53 1.53 0 0 1-1.386 1.142 6.62 6.62 0 0 0 4.08 3.146 6.6 6.6 0 0 0 1.866.206 3.73 3.73 0 0 1-1.637.711 9.16 9.16 0 0 0 9.282.587 9.2 9.2 0 0 0 3.184-2.684 9.14 9.14 0 0 0 1.676-3.876 9.24 9.24 0 0 0-.329-4.479"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.072.412s1.913 3.881 1.563 5.5c0 0 4.987 1.612 5.54 4.272 0 0 2.73-3.594-7.103-9.772M7.908 4.067s1.678 2.625 1.417 4.35l2.818 1.067a17.6 17.6 0 0 0-.991-3.248zm3.784.691a14.16 14.16 0 0 1 .163 13.794 17.7 17.7 0 0 0 .594-6.585c-.017-.186-.031-.368-.053-.55L6.908 7.759a14.1 14.1 0 0 1 1.133 4.465 14 14 0 0 1-1.305 7.347 17.8 17.8 0 0 0 .442-5.988 1 1 0 0 1-.022-.243l-5.133-2.726a11.6 11.6 0 0 1 1.075 3.93A11.79 11.79 0 0 1 0 23.587c21.91-9.29 22.795-3.173 22.795-3.173s1.656-2.164 1.085-4.51C23.128 12.79 11.692 4.759 11.692 4.759zM3.04 7.245s1.629 2.09 1.363 3.815l2.567.637a20 20 0 0 0-.863-2.788z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.111 14.104a1.467 1.458 0 0 1-1.235 1.503c-1.422.244-4.385.398-6.875.398s-5.454-.15-6.877-.398c-.814-.14-1.235-.787-1.235-1.503V9.417a1.57 1.56 0 0 1 1.235-1.505 15.72 15.619 0 0 1 2.156-.14.537.533 0 0 1 .523.543v3.303c1.463 0 2.727-.086 4.201-.086s2.727.086 4.196.086V8.342a.535.532 0 0 1 .494-.569h.027a15.995 15.891 0 0 1 2.156.14 1.57 1.56 0 0 1 1.234 1.504zM12.001 0C5.373 0 0 5.374 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.626-5.373-12-12-12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.71 3.235a.02.02 0 0 1-.022-.022c.002-.081.004-.37.005-.424 0-.129-.143-.183-.212-.083l-.229.333a.02.02 0 0 1-.02.01h-6.55a.047.047 0 0 1-.048-.046l-.013-.177a.048.048 0 0 1 .056-.048l.335.032a.06.06 0 0 0 .063-.045l.244-.989a.05.05 0 0 0-.03-.054l-.227-.085a.04.04 0 0 1-.026-.03c-.041-.171-.377-1.323-1.993-1.58-.787-.125-1.302.21-1.577.478a1.6 1.6 0 0 0-.302.41l-.097.212a2 2 0 0 0-.046.234l.051.982a.11.11 0 0 0 .043.085l.354.153-.196.325a.055.055 0 0 1-.053.04s-.417.01-.622.02c-.386.015-1.245.485-1.878 1.838l-.724 1.55a.07.07 0 0 1-.068.04l-.578.001c-.035 0-.073.028-.088.06L6.364 9a.11.11 0 0 0 .017.108l.627.392a.06.06 0 0 1 .02.058l-.328.967a.2.2 0 0 1-.023.062l-.435.382a.1.1 0 0 0-.035.06l-.598 1.53a.06.06 0 0 1-.06.045l-.336.002a.163.163 0 0 0-.162.149l-.201 2.288a2 2 0 0 1-.016.121l-.158.908a.13.13 0 0 1-.034.055l-.558.427a4.8 4.8 0 0 0-.767 1.001l-1.86 3.924a.8.8 0 0 0-.078.322l.132.235c.002.084-.032.456-.07.53l-.624 1.09a.1.1 0 0 0-.003.085l.03.07.094.187 1.891.002c.118.011.247-.14.251-.3l.103-1.297-.027-.195 3.606-4.232c.095-.114.222-.317.286-.45l1.719-3.79a.17.17 0 0 1 .1-.088l.109-.035a.17.17 0 0 1 .183.053c.15.181.504.781.676 1.032.143.208.85 1.23 1.158 1.567.086.093.349.198.466.27a.083.083 0 0 1 .03.112l-1.03 1.808-.455 2.136a1 1 0 0 0-.036.152l-.412 1.483c.003.188-.14.286-.153.507l-.15 1.084a.06.06 0 0 0 .059.061l2.544.014q.142-.001.286-.006l.075-.007c.124-.016.563-.076.75-.15a.6.6 0 0 0 .227-.13c.185-.194.2-.278.203-.398a.3.3 0 0 0-.028-.105.12.12 0 0 0-.06-.047l-1.18-.356a.37.37 0 0 1-.19-.134l-.317-.47a.09.09 0 0 1 .018-.097l.618-.609a.2.2 0 0 0 .048-.072l1.904-4.488c.089-.285.059-.605 0-.944-.044-.25-.686-1.326-.854-1.624l-1.286-2.251c-.079-.138-.19-.133-.228-.276l-.073-1.118a.04.04 0 0 1 .036-.05l.33-.028a.1.1 0 0 0 .075-.048l1.147-2.155a.1.1 0 0 0-.002-.094l-.235-.29a.09.09 0 0 1-.001-.088l.352-.38a.054.054 0 0 1 .073-.02l.934.526a.4.4 0 0 0 .186.05c.26-.001.686-.154.908-.29a.4.4 0 0 0 .139-.148l.458-1.07c.006-.014.027-.012.03.003l.127.595a.064.064 0 0 0 .079.05l1.35-.3a.066.066 0 0 0 .05-.078l-.319-1.344a.07.07 0 0 1 .01-.054l.13-.203a.3.3 0 0 0 .037-.082l.159-.725a.04.04 0 0 1 .04-.032l3.732.005a.09.09 0 0 0 .093-.093v-.634a.02.02 0 0 1 .022-.021h1.439a.047.047 0 0 0 .046-.047V3.28a.047.047 0 0 0-.046-.047h-1.44z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.327.512c-3.806.034-7.447 3.19-7.181 7.75.102 1.547.88 3.382 2.981 5.733a.365.365 0 0 0 .635-.23l.053-2.266a.36.36 0 0 0-.1-.255 5.047 5.047 0 0 1 3.407-8.502c2.27-.104 4.011 1.236 4.753 2.744.34.693.527 1.45.55 2.222a.357.357 0 0 0 .343.344q.724.022 1.437.147a.36.36 0 0 0 .424-.344 7.24 7.24 0 0 0-2.769-5.788C15.02 1.404 13.564.52 11.327.512m4.94 8.362a15 15 0 0 0-2.515.26.364.364 0 0 0-.17.635l1.695 1.435a.36.36 0 0 0 .316.073 5.03 5.03 0 0 1 3.123.281c1.78.787 2.92 2.414 3.042 4.304.208 3.187-2.48 5.539-5.277 5.37a5 5 0 0 1-1.751-.412.365.365 0 0 0-.443.115q-.434.578-.94 1.094a.367.367 0 0 0 .09.573c1.887 1.073 3.936 1.16 6.014.32 3.303-1.304 4.63-4.523 4.545-6.847-.096-2.641-1.48-5.072-4.085-6.402-.921-.47-2.04-.812-3.643-.799zm-12.931 1.2a.4.4 0 0 0-.152.052c-1.41.827-2.216 2.057-2.798 3.777-.285.892-.386 1.51-.386 2.436a7.276 7.276 0 0 0 7.157 7.141c1.129.017 2.104-.235 2.962-.583 1.45-.62 3.142-1.597 4.65-4.912a.363.363 0 0 0-.459-.489l-2.365.867a.36.36 0 0 0-.195.174 5.03 5.03 0 0 1-2.268 2.224C6 22.428 2.473 19.784 2.235 16.74c-.145-1.741.494-3.053 1.37-3.982.293-.308.41-.477.663-.662a.36.36 0 0 0 .098-.471 9 9 0 0 1-.653-1.326.37.37 0 0 0-.377-.225"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.374 23.977c-4.183-.21-8.006-2.626-9.959-6.347-2.097-3.858-1.871-8.864.732-12.454C4.748 1.338 9.497-.698 14.281.23c4.583.857 8.351 4.494 9.358 8.911 1.122 4.344-.423 9.173-3.925 12.04-2.289 1.953-5.295 2.956-8.34 2.797zm7.705-8.05a589 589 0 0 0-3.171-1.887c-.903 1.483-2.885 2.248-4.57 1.665-2.024-.639-3.394-2.987-2.488-5.134.801-2.009 2.79-2.707 4.357-2.464a4.2 4.2 0 0 1 2.623 1.669c1.077-.631 2.128-1.218 3.173-1.855-2.03-3.118-6.151-4.294-9.656-2.754-3.13 1.423-4.89 4.68-4.388 7.919.54 3.598 3.73 6.486 7.716 6.404a7.66 7.66 0 0 0 6.404-3.563"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12v12h24V0H0zm13.195-6.187 1.167 3.515 2.255.005c1.238.005 2.916.019 3.727.037l1.472.028-2.968 2.152c-1.63 1.181-2.976 2.18-2.99 2.212-.01.033.487 1.627 1.106 3.54.619 1.917 1.12 3.487 1.116 3.492-.005.01-1.35-.947-2.986-2.119a229 229 0 0 0-3.033-2.161c-.028-.01-1.411.947-3.07 2.138-1.655 1.185-3.02 2.151-3.024 2.142-.004-.005.497-1.575 1.116-3.492.619-1.913 1.115-3.507 1.106-3.54-.014-.032-1.36-1.03-2.99-2.212L2.23 9.398l1.472-.028c.811-.018 2.49-.032 3.727-.037l2.254-.005 1.168-3.515a513 513 0 0 1 1.171-3.516c.005 0 .53 1.58 1.172 3.516z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.366 12.096a.61.61 0 0 0-.608.608v1.218a.609.609 0 1 0 1.217 0v-1.218a.61.61 0 0 0-.609-.608m.8 3.453a.605.605 0 0 1 0-.86.605.605 0 0 1 .859 0 1.52 1.52 0 0 0 2.149 0 .605.605 0 0 1 .859 0 .605.605 0 0 1 0 .86 2.73 2.73 0 0 1-3.867 0m4.062-2.24a.61.61 0 1 1 .609.609.606.606 0 0 1-.61-.609zM3.023 0A3.024 3.024 0 0 0 0 3.023v17.954A3.024 3.024 0 0 0 3.023 24h17.954A3.024 3.024 0 0 0 24 20.977V3.023A3.024 3.024 0 0 0 20.977 0ZM12.1 3.78h.004a6.287 6.287 0 0 1 6.283 6.286v2.635h1.508c1.73 0 2.12 2.426.476 2.97l-1.984.663v1.137a1.513 1.513 0 0 1-2.19 1.353l-1.101-.549c-.052-.024-.115 0-.131.055-.892 2.785-4.835 2.785-5.727 0a.095.095 0 0 0-.13-.055l-1.102.55a1.513 1.513 0 0 1-2.19-1.354v-1.139l-1.984-.66c-1.647-.541-1.254-2.97.477-2.97h1.507v-2.636A6.285 6.285 0 0 1 12.1 3.78"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.586 9.346a.54.54 0 0 0-.34.113.56.56 0 0 0-.197.299L2.74 14.654h.922a.53.53 0 0 0 .332-.113.56.56 0 0 0 .2-.291l.968-3.604h.744a.7.7 0 0 1 .317.077.7.7 0 0 1 .24.199.7.7 0 0 1 .129.281.65.65 0 0 1-.01.326.7.7 0 0 1-.676.526h-.385a.54.54 0 0 0-.337.113.56.56 0 0 0-.2.291l-.24.896h1.201a1.94 1.94 0 0 0 1.62-.867 2 2 0 0 0 .265-.586l.027-.1a1.85 1.85 0 0 0 .026-.907 1.97 1.97 0 0 0-1.031-1.34 1.9 1.9 0 0 0-.88-.21zm18.447 0a.4.4 0 0 0-.25.082.38.38 0 0 0-.14.217l-1.334 5.01a1.7 1.7 0 0 0 .57-.096 1.8 1.8 0 0 0 .496-.266 1.7 1.7 0 0 0 .385-.408 1.7 1.7 0 0 0 .234-.531l.996-3.696a.23.23 0 0 0-.045-.217.25.25 0 0 0-.2-.095zM8.381 10.643l-.133.503a.6.6 0 0 0-.006.26.54.54 0 0 0 .1.221.55.55 0 0 0 .185.154.5.5 0 0 0 .252.06h2.157a.1.1 0 0 1 .084.038.1.1 0 0 1 .015.088l-.02.072-.324 1.201-.013.055a.17.17 0 0 1-.067.105.2.2 0 0 1-.127.04H9.178a.15.15 0 0 1-.12-.057.14.14 0 0 1-.027-.13q.033-.112.147-.112h.808a.53.53 0 0 0 .332-.112.56.56 0 0 0 .2-.293l.132-.498H8.84a1.1 1.1 0 0 0-.38.065 1.2 1.2 0 0 0-.323.176 1.2 1.2 0 0 0-.256.271 1 1 0 0 0-.156.346l-.028.1a1.1 1.1 0 0 0-.013.533 1.2 1.2 0 0 0 .212.464 1.14 1.14 0 0 0 .918.453l2.157.006a.9.9 0 0 0 .875-.67l.525-1.95a1.1 1.1 0 0 0 .01-.514 1.1 1.1 0 0 0-.205-.444 1.15 1.15 0 0 0-.377-.312 1.05 1.05 0 0 0-.498-.12zm-6.397.01a1.9 1.9 0 0 0-.638.107 2 2 0 0 0-.553.295 1.96 1.96 0 0 0-.7 1.045l-.027.1a1.94 1.94 0 0 0-.023.905 1.96 1.96 0 0 0 .361.786 2 2 0 0 0 .668.554 1.9 1.9 0 0 0 .88.21h.464l.266-.983a.23.23 0 0 0-.043-.215.24.24 0 0 0-.198-.096h-.423a.7.7 0 0 1-.319-.074.7.7 0 0 1-.24-.195.7.7 0 0 1-.127-.281.7.7 0 0 1 .01-.34.73.73 0 0 1 .256-.377.68.68 0 0 1 .42-.14h.697a.54.54 0 0 0 .338-.114.56.56 0 0 0 .199-.297l.232-.89zm11.08 0-.982 3.689a.23.23 0 0 0 .045.217.24.24 0 0 0 .195.095h.711a.4.4 0 0 0 .248-.08.36.36 0 0 0 .143-.21l.644-2.41h.745a.7.7 0 0 1 .318.075.7.7 0 0 1 .238.2.7.7 0 0 1 .129.28.65.65 0 0 1-.01.327l-.398 1.506a.243.243 0 0 0 .24.312h.713a.4.4 0 0 0 .244-.08.37.37 0 0 0 .143-.213l.332-1.248a1.9 1.9 0 0 0 .029-.908 1.96 1.96 0 0 0-.361-.79 2 2 0 0 0-.668-.554 1.9 1.9 0 0 0-.885-.209h-1.813zm5.793 0a1.5 1.5 0 0 0-.488.081 1.5 1.5 0 0 0-.752.58 1.5 1.5 0 0 0-.205.454l-.406 1.505a1 1 0 0 0-.016.508 1.1 1.1 0 0 0 .205.446 1.1 1.1 0 0 0 .377.312 1.1 1.1 0 0 0 .498.115h2.502a.53.53 0 0 0 .332-.113.56.56 0 0 0 .2-.291l.21-.791h-2.748a.2.2 0 0 1-.191-.252l.299-1.127a.34.34 0 0 1 .113-.162.28.28 0 0 1 .18-.064h1.232a.153.153 0 0 1 .147.193l-.026.1q-.033.113-.146.113h-.81a.54.54 0 0 0-.339.111.53.53 0 0 0-.191.293l-.133.49h2.004a.9.9 0 0 0 .547-.181.86.86 0 0 0 .32-.483l.12-.45a1.1 1.1 0 0 0 .013-.513 1.1 1.1 0 0 0-.203-.443 1.15 1.15 0 0 0-.375-.313 1.05 1.05 0 0 0-.498-.119h-1.772Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.394 6c-.167-.29-.398-.543-.652-.69L12.926.22c-.509-.294-1.34-.294-1.848 0L2.26 5.31c-.508.293-.923 1.013-.923 1.6v10.18c0 .294.104.62.271.91s.398.543.652.69l8.816 5.09c.508.293 1.34.293 1.848 0l8.816-5.09c.254-.147.485-.4.652-.69s.27-.616.27-.91V6.91c.003-.294-.1-.62-.268-.91M12 19.11c-3.92 0-7.109-3.19-7.109-7.11s3.19-7.11 7.11-7.11a7.13 7.13 0 0 1 6.156 3.553l-3.076 1.78a3.57 3.57 0 0 0-3.08-1.78A3.56 3.56 0 0 0 8.444 12 3.56 3.56 0 0 0 12 15.555a3.57 3.57 0 0 0 3.08-1.778l3.078 1.78A7.14 7.14 0 0 1 12 19.11m7.11-6.715h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79zm2.962 0h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 10.66a12 12 0 0 0-.46-2.21 12 12 0 0 0-1.47-3.09A12 12 0 0 0 20.63 3.67a12 12 0 0 0-3.016-2.273 12 12 0 0 0-2.343-.94 12 12 0 0 0-1.487-.32A11 11 0 0 0 12.39.01c-.236-.005-.473-.015-.709-.004-.345.016-.69.036-1.033.077q-.579.07-1.15.182a11.947 11.947 0 0 0-4.906 2.297q-.611.478-1.153 1.03a12 12 0 0 0-2.033 2.77A12 12 0 0 0 .395 8.94a12 12 0 0 0-.393 2.882 12 12 0 0 0 .073 1.527q.206 1.845.962 3.54.804 1.8 2.141 3.25a12 12 0 0 0 2.913 2.311 11.9 11.9 0 0 0 5.529 1.547c.013 0 .818-.002.868-.004a12 12 0 0 0 1.543-.162 11.945 11.945 0 0 0 6.173-3.072 12 12 0 0 0 3.303-5.353c.162-.55.29-1.107.364-1.675.053-.406.087-.815.113-1.224a10.7 10.7 0 0 0-.062-1.848m-5.83 7.555c-.043.276-.164.479-.324.706-.174.245-.418.418-.657.594-1.03.758-2.41 1.342-3.668 1.562-.47.082-2.956.504-5.4-.692a9.6 9.6 0 0 1-2.986-2.276c-1.76-2.017-2.56-4.628-2.217-7.253.334-2.555 1.763-4.9 3.859-6.387a8.7 8.7 0 0 1 3.425-1.472 8.989 8.989 0 0 1 3.94.112c.625.153 1.23.394 1.806.68.565.281 1.169.634 1.642 1.056.45.4.665.972.592 1.572-.087.715-.447 1.12-.967 1.36a1.68 1.68 0 0 1-1.597-.116c-.259-.17-.485-.385-.747-.551a5.5 5.5 0 0 0-.834-.412c-.607-.254-1.213-.36-1.865-.399-.625-.038-1.36.071-1.959.258-1.207.376-2.259 1.1-2.973 2.154-.72 1.064-1.107 2.322-1.03 3.609a6.04 6.04 0 0 0 1.34 3.444c.79.954 1.922 1.592 3.109 1.853 1.27.279 2.613.141 3.775-.458.283-.146.553-.298.807-.492.238-.182.458-.363.75-.45a1.77 1.77 0 0 1 1.67.368c.427.384.597 1.07.51 1.63m-7.321-5.023H8.974c-.26 0-.416-.155-.416-.415v-1.05c0-.255.156-.41.414-.411h1.868v-1.87c0-.257.155-.414.412-.414h1.053c.252 0 .408.156.409.41v1.873h1.86c.267 0 .422.154.422.422v1.049c0 .248-.157.405-.407.405h-1.875v1.865c0 .264-.154.42-.418.42h-1.048c-.251 0-.408-.158-.408-.412v-1.872zm12.107-.406c0 .248-.158.405-.408.406h-1.874v1.865c0 .263-.154.418-.419.419H19.13c-.252 0-.408-.158-.408-.411v-1.873h-1.867c-.26 0-.415-.155-.415-.415v-1.05c0-.255.155-.41.413-.411h1.869v-1.87c0-.257.155-.414.411-.414h1.054c.251 0 .408.156.408.41v1.873h1.86c.268 0 .422.154.423.422z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.474 0H2.526A2.516 2.516 0 0 0 0 2.526v18.948A2.516 2.516 0 0 0 2.526 24h18.948A2.534 2.534 0 0 0 24 21.474V2.526A2.516 2.516 0 0 0 21.474 0m-9.516 14.625c.786 0 1.628-.31 2.442-1.039l1.123 1.291c-1.18.955-2.527 1.488-3.874 1.488-2.667 0-4.35-1.769-3.958-4.267.393-2.498 2.667-4.266 5.334-4.266 1.29 0 2.498.505 3.34 1.431l-1.572 1.291c-.45-.59-1.207-.982-2.05-.982-1.6 0-2.834 1.039-3.087 2.526-.224 1.488.674 2.527 2.302 2.527"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.428 9.572v4.899h23.144V9.572Zm1.543 1.143h.172l.886.014v.572h-.744v1.484h.744v.572H1.971l-.371-.37v-1.901zm1.7 0h1.243l.47.314v.985l-.37.244.601 1.086h-.73l-.528-.973v.973h-.685Zm2.815 0H7.5l.357.314v2.315h-.615v-.873h-.484v.873h-.63v-2.315zm2.07 0h1.329v.613H9.27v.516h.543v.57H9.27v.93h-.714Zm1.944 0h1.686l-.2.629h-.443v2h-.672v-2h-.57zm2.1 0h1.556l-.17.613h-.843l1.029 1.414-.201.615h-1.713l.185-.586h.942l-.942-1.386zm2.1 0h.814l.414.97.4-.97h.815v2.613h-.672v-1.57l-.399.957h-.3l-.4-.944v1.573h-.673zm3.571 0h1.014l.358.314v2.315h-.63v-.873h-.484v.873h-.615v-2.315zm2.057 0h.629l.615 1.414v-1.414h.627v2.629h-.627l-.615-1.416v1.416h-.629zm-13.586.556v.614h.487v-.614zm11.787 0v.614h.485v-.614zm-14.172.014v.572h.358v-.572ZM0 9.143h24v5.714H0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9V3h-6v6H0v6h6v6h6v-6h12V9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.949 16.562a6.3 6.3 0 0 0 4.467 1.854 6.3 6.3 0 0 0 4.467-1.854l5.798-5.798-1.425-1.425-5.798 5.75c-1.664 1.663-4.373 1.663-6.084 0l-.095-.095c-1.663-1.663-1.663-4.372 0-6.083l.095-.095c1.664-1.664 4.373-1.664 6.084 0l.475.523 1.426-1.426-.476-.523c-2.471-2.471-6.51-2.471-8.982 0l-.047.143c-2.472 2.47-2.472 6.51 0 8.982zm20.055-9.124a6.3 6.3 0 0 0-4.467-1.854 6.3 6.3 0 0 0-4.468 1.854l-5.798 5.798 1.426 1.425 5.798-5.75c1.663-1.663 4.372-1.663 6.083 0l.095.095c1.664 1.663 1.664 4.372 0 6.083l-.095.095c-1.663 1.664-4.372 1.664-6.083 0l-.475-.475-1.426 1.426.475.475c2.472 2.471 6.511 2.471 8.983 0l.095-.095c2.47-2.471 2.47-6.511 0-8.982-.048 0-.143-.095-.143-.095"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.215 10.33-1.772.01c-.785.029-1.42.737-1.443 1.613v.088c.018.903.69 1.629 1.51 1.629h1.705c.01 0 .02-.011.02-.024v-.603a.02.02 0 0 0-.02-.022H1.508c-.501 0-.92-.443-.928-1.001-.007-.569.405-1.034.912-1.034l1.723-.007c.01 0 .02-.01.02-.022v-.603c0-.013-.01-.024-.02-.024m.412 0c-.011 0-.02.011-.02.024v3.292c0 .013.009.024.02.024h.54c.012 0 .02-.011.02-.024V11a.02.02 0 0 1 .02-.021h1.606c.168 0 .314.145.32.333.006.198-.137.36-.313.36l-1.533.002c-.018 0-.028.023-.016.037l1.75 1.95q.006.008.014.009H6.8c.017 0 .026-.025.014-.04L5.64 12.32h.183c.496 0 .898-.454.89-1.01-.006-.546-.416-.98-.905-.98zm4.873 0c-.827 0-1.5.75-1.5 1.67s.673 1.67 1.5 1.67h1.68c.01 0 .02-.011.02-.024v-.603c0-.012-.01-.022-.02-.022H8.5c-.404 0-.75-.292-.871-.697h2.55q.019-.002.02-.023v-.604q-.001-.02-.02-.021h-2.55c.123-.405.468-.697.872-.697h1.68c.01 0 .02-.012.02-.024v-.601c0-.013-.01-.024-.02-.024zm3.709 0q-.021 0-.033.024l-1.7 3.28c-.007.016 0 .036.016.036h.625a.02.02 0 0 0 .018-.012l1.056-2.045a.02.02 0 0 1 .036 0l.71 1.375c.008.015-.002.033-.017.033h-.928q-.01 0-.015.012l-.313.602c-.008.015.002.033.018.033h2.242c.015 0 .025-.018.017-.033l-1.697-3.281a.04.04 0 0 0-.035-.024m2.03.002c-.01 0-.02.01-.02.022v2.94c0 .207.15.376.336.376h2.148c.01 0 .022-.011.022-.024v-.603a.02.02 0 0 0-.022-.022H14.82A.02.02 0 0 1 14.8 13v-2.646c0-.013-.01-.022-.02-.022h-.54zm2.84 0c-.01 0-.02.01-.02.022v3.292c0 .013.01.024.02.024h.542c.01 0 .02-.011.02-.024v-3.292c0-.013-.01-.022-.02-.022h-.54zm.85 0c-.01 0-.02.01-.02.022v.601c0 .012.01.024.02.024h1.169c.01 0 .02.009.02.021v2.646c0 .013.01.022.02.022h.54c.01 0 .02-.01.02-.022V11a.02.02 0 0 1 .02-.021h1.172a.02.02 0 0 1 .015.007l1.018 1.354a.02.02 0 0 1 .004.014v1.292c0 .013.008.024.02.024h.54c.011 0 .02-.011.02-.024v-1.292q0-.009.006-.014l1.482-1.97c.011-.016.001-.038-.016-.038h-.705a.02.02 0 0 0-.015.008l-1.026 1.363a.02.02 0 0 1-.03 0l-1.026-1.363a.02.02 0 0 0-.016-.008z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.92 10.846c0-1.223-1.44-2.308-3.655-2.97.533-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.886-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.216c-1.054.607-1.273 2.386-.747 4.625-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.442 2.308 3.656 2.968-.533 2.251-.302 4.04.76 4.645.259.145.552.218.848.213.991 0 2.241-.69 3.503-1.886 1.26 1.186 2.507 1.873 3.496 1.873a1.7 1.7 0 0 0 .863-.216c1.054-.607 1.271-2.386.747-4.616 2.204-.668 3.636-1.744 3.638-2.96m-7.953-5.541c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M2.328 1.011v19.645H24V1.012zm20.825 18.8H3.176V1.859h19.977zm-15.09-6.019c-.533 2.251-.303 4.04.759 4.645.259.145.552.218.849.213.99 0 2.24-.69 3.503-1.886 1.26 1.186 2.506 1.873 3.495 1.873a1.7 1.7 0 0 0 .863-.216c1.055-.607 1.271-2.386.748-4.616 2.203-.66 3.636-1.737 3.637-2.953.002-1.216-1.44-2.308-3.653-2.97.532-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.99 0-2.24.69-3.502 1.886-1.262-1.186-2.508-1.873-3.496-1.873a1.7 1.7 0 0 0-.862.216C7.739 3.862 7.52 5.64 8.046 7.88c-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.444 2.297 3.658 2.961zm4.297 2.573c-1.454 1.301-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.103c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .178-1.027 18 18 0 0 0 2.233.366q.672.945 1.463 1.79zm4.402-6.55a24 24 0 0 0-.44-.8c-.155-.269-.32-.533-.484-.798.483.068.95.155 1.392.258-.13.438-.286.888-.467 1.34zm.483 3.373q-.673.157-1.407.258a21 21 0 0 0 .927-1.617c.187.47.348.921.476 1.368zm-.925-2.37a20 20 0 0 1-1.572 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-1.576-2.73q.33-.697.726-1.396c.266-.465.552-.918.847-1.35a20.6 20.6 0 0 1 3.176.004c.294.428.577.886.843 1.34.266.452.513.935.733 1.398zm-5.826 2.642a17 17 0 0 1-1.391-.259c.13-.437.289-.888.47-1.34q.208.399.438.8c.153.268.306.531.483.8M10 9.023q-.231.398-.437.802a18 18 0 0 1-.488-1.353q.675-.156 1.408-.259c-.165.263-.323.534-.483.81m3.175 6.542q-.48-.511-.943-1.106.458.021.93.021c.314 0 .636 0 .946-.02a16 16 0 0 1-.933 1.105m3.937 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.691-1.438l-.208-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.12.518.178 1.007c.178 1.338-.027 2.361-.533 2.65zm.938-8.994q.5.153.983.355c1.26.533 2.042 1.217 2.04 1.8-.001.585-.783 1.272-2.043 1.796q-.455.188-.966.342a17.5 17.5 0 0 0-.811-2.155q.468-1.046.797-2.145zm-4.084-3.389c1.454-1.301 2.363-1.442 2.687-1.442a.84.84 0 0 1 .43.103c.507.29.71 1.31.548 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.101-.107.211-.202zm-.807.792q.48.511.94 1.106a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.02a15 15 0 0 1 .934-1.105M9.22 3.974a.86.86 0 0 1 .438-.1 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zM7.299 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.798 2.13 10 10 0 0 1-.984-.354c-1.26-.533-2.041-1.216-2.041-1.8s.788-1.263 2.047-1.786m5.859.177a1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125zm8.761 1.64c0-1.223-1.44-2.307-3.654-2.97.533-2.25.3-4.039-.76-4.644a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.885-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.217c-1.054.607-1.273 2.386-.747 4.625-2.203.658-3.636 1.734-3.64 2.952-.003 1.218 1.442 2.308 3.656 2.969-.533 2.25-.302 4.039.76 4.644.259.145.552.219.848.213.991 0 2.241-.69 3.503-1.885 1.26 1.186 2.507 1.873 3.496 1.873.302.005.6-.07.863-.217 1.054-.607 1.271-2.386.747-4.616 2.204-.671 3.636-1.747 3.638-2.963zm-7.952-5.544c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M.85 22.14V2.49L0 3.341v19.647h21.669l.849-.847z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.983 0c-3.292 0-6.19 1.217-8.428 3.485C1.25 5.819 0 8.844 0 12c0 3.189 1.217 6.148 3.522 8.45 2.305 2.3 5.3 3.55 8.461 3.55 3.16 0 6.222-1.25 8.593-3.583C22.815 18.214 24 15.287 24 12c0-3.255-1.186-6.214-3.458-8.483C18.238 1.217 15.275 0 11.983 0m.033 2.17c2.7 0 5.103 1.02 6.98 2.893 1.843 1.841 2.83 4.274 2.83 6.937 0 2.696-.954 5.063-2.798 6.872-1.943 1.906-4.444 2.926-7.012 2.926-2.601 0-5.038-1.019-6.914-2.893-1.877-1.875-2.93-4.34-2.93-6.905 0-2.597 1.053-5.063 2.93-6.97 1.844-1.874 4.214-2.86 6.914-2.86M8.68 8.278C6.723 8.278 5.165 9.66 5.165 12c0 2.38 1.465 3.722 3.581 3.722 1.358 0 2.516-.744 3.155-1.874l-1.491-.758c-.333.798-.839 1.037-1.478 1.037-1.105 0-1.61-.917-1.61-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728m6.932 0c-1.957 0-3.514 1.382-3.514 3.722 0 2.38 1.464 3.722 3.58 3.722 1.359 0 2.516-.744 3.155-1.874l-1.49-.758c-.333.798-.84 1.037-1.478 1.037-1.105 0-1.611-.917-1.611-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.48 13.248h-.593l-1.028-2.213-1.004 2.213h-.514l1.543-3.422zM2.804 11.19s-.18-.103-.283-.155c-.206-.077-.489-.18-.798-.18-.617 0-1.183.283-1.183 1.004 0 .72.54 1.003 1.21 1.003.334 0 .668-.103.848-.257.103-.078.257-.232.257-.232l.283.437-.231.155c-.232.154-.54.36-1.21.36C.85 13.325 0 12.887 0 11.859c0-.927.797-1.467 1.775-1.467.437 0 .772.103 1.003.232.129 0 .309.128.309.128zm7.537 2.546h3.138v.438h-3.138zm12.116-2.135h.746v.54h-.746zm-1.107-.051v-1.106H24v.437h-2.11v.669zm.54.566v.694H24v.438h-2.65v-1.132zM4.786 11.6h.668c.283 0 .515-.103.515-.36s-.232-.386-.515-.386H4.27v2.367h-.54v-2.778h1.775c.669 0 1.029.36 1.029.797s-.283.772-.772.798l.746 1.029c.026.077.103.18.103.18h-.695zm10.186 1.647h-.54V10.88h-1.106v-.437h2.804v.437h-1.106zm2.238 0h-.54v-2.804h.54zm3.138-2.804-.952 2.11-.951-2.11h-.618l1.312 2.804h.54l1.287-2.83h-.618M8.386 11.55h.746v.54h-.746zm-1.106 0v-1.106h2.65v.437H7.82v.669zm.566.566v.694h2.109v.438H7.28v-1.132z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.8 13.154a.3.3 0 0 0-.101-.024.4.4 0 0 0-.202.048c-.06.028-.092.08-.127.136-.087.128-.15.268-.226.4-.107.187-.246.351-.38.515-.135.156-.286.291-.424.44-.028.027-.072.043-.107.027-.028-.016-.036-.056-.032-.088.04-.38.075-.763.123-1.138.02-.172.043-.336.063-.512.028-.247.056-.487.087-.735l.234-1.824c.02-.128.032-.372-.135-.52a.45.45 0 0 0-.233-.116.46.46 0 0 0-.254.06c-.226.16-.297.504-.365.76-.142.603-.178 1.241-.471 1.804a1.8 1.8 0 0 1-.202.316.7.7 0 0 1-.186.18.33.33 0 0 1-.246.051.37.37 0 0 1-.238-.207.871.87 0 0 1-.063-.324 4.5 4.5 0 0 1 .24-1.585c.045-.132.089-.252.104-.383.028-.156.028-.38-.114-.516-.131-.128-.337-.18-.504-.128-.194.056-.31.244-.372.392-.198.463-.25.95-.317 1.446-.044.327-.127.64-.293.926a2.7 2.7 0 0 1-.603.72c-.118.087-.222.123-.328.107a.38.38 0 0 1-.278-.208.9.9 0 0 1-.095-.315 3.361 3.36 0 0 1-.036-.616c.004-.223 0-.44.044-.658.075-.39.678-1.937.808-2.345.135-.407.262-.823.353-1.246.08-.38.123-.767.11-1.15-.007-.277-.07-.576-.288-.736a.611.61 0 0 0-.603-.048.97.97 0 0 0-.455.428 2.5 2.5 0 0 0-.226.59 12 12 0 0 0-.266 1.29c-.071.429-.138.848-.206 1.268-.06.355-.206 1.614-.261 1.88-.06.272-.175.54-.301.787-.131.268-.258.536-.408.791a.7.7 0 0 1-.175.224c-.08.06-.182.088-.27.048-.102-.048-.146-.176-.166-.292-.075-.435-.012-.875.072-1.302.083-.431.44-2.4.519-2.851.099-.532.24-1.05.285-1.59.028-.388.09-.88-.202-1.187-.115-.136-.31-.16-.44-.136-.174.036-.31.176-.388.296-.1.128-.186.28-.258.467-.115.284-.186.615-.261.91l-.032.129q-.123.574-.186 1.162a16.95 16.948 0 0 0-.06.632q-.011.15-.027.307c0 .08.007.168-.028.244a.3.3 0 0 1-.052.068c-.08.072-.202.06-.31.056-.557-.016-1.045.3-1.35.755-.18.252-.281.542-.39.834-.01.048-.034.1-.054.152-.051.143-.13.327-.222.511a3 3 0 0 1-.317.46 3.3 3.3 0 0 1-.384.41 1.1 1.1 0 0 1-.515.26c-.174.04-.384-.043-.543-.203a.9.9 0 0 1-.206-.54c-.004-.055-.004-.115.028-.163.05-.068.146-.072.23-.076a1.62 1.62 0 0 0 1.375-1.015c.138-.34.178-.698.122-1.046a1.2 1.2 0 0 0-.19-.48.9.9 0 0 0-.396-.323c-.293-.14-.658-.127-1.01.004-.575.232-.951.74-1.134 1.562l-.02.088c-.114.487-.23 1-.582 1.354-.127.12-.261.163-.368.143-.044-.004-.08-.04-.103-.075-.096-.16.003-.532.15-1a4 4 0 0 0 .1-.366.93.93 0 0 0-.108-.495.8.8 0 0 0-.372-.324c-.143-.064-.31-.06-.468-.06h-.047c-.044 0-.103 0-.151-.012a.22.22 0 0 1-.147-.127.5.5 0 0 1 .016-.232c.004-.02.012-.048.016-.072a.37.37 0 0 0-.162-.412.51.51 0 0 0-.468-.036.77.77 0 0 0-.364.348.77.77 0 0 0-.103.48c.04.13.07.32.043.475-.055.28-.222.51-.384.74-.04.05-.072.106-.107.16a5 5 0 0 1-.706.825c-.372.335-.804.575-1.232.67-.745.165-1.506-.06-1.91-.734-.222-.38-.32-.827-.348-1.266a5.4 5.4 0 0 1 .424-2.516c.328-.76.816-1.52 1.715-1.614.353-.04.753.083.912.4.115.23.075.506 0 .75-.072.244-.175.49-.18.75-.003.26.124.54.37.616.238.072.495-.08.634-.29.138-.21.186-.46.245-.704a6.282 6.281 0 0 1 .662-1.634c.139-.236.297-.488.254-.76a.54.54 0 0 0-.373-.415.54.54 0 0 0-.535.144c-.134.148-.206.371-.387.43-.17.06-.35-.055-.507-.134-.6-.32-1.336-.312-1.963-.048-.634.25-1.146.735-1.526 1.294C.462 8.53.098 9.508.022 10.48c-.027.34-.031.695 0 1.038.036.46.1.854.214 1.206.139.423.317.79.547 1.094.266.34.587.6.94.747.372.148.784.22 1.192.208a3.2 3.2 0 0 0 1.177-.283 4.3 4.3 0 0 0 1.026-.68c.309-.26.594-.559.84-.89q.243-.336.44-.708a5 5 0 0 0 .178-.383c.044-.104.087-.215.202-.26.056-.043.15-.02.202.013.064.04.115.075.135.135.048.116.02.232-.004.332v.012c-.028.1-.055.203-.091.303-.14.424-.238.811-.16 1.195.045.207.128.387.25.527a.84.84 0 0 0 .504.264c.246.04.51-.028.725-.132q.217-.103.397-.26c.06-.06.122-.12.174-.184.044-.06.087-.147.178-.143a.15.15 0 0 1 .107.064c.028.031.04.071.06.115.23.52.776.84 1.335.84h.07c.27 0 .556-.093.79-.22.27-.14.48-.348.7-.552.02-.016.045-.04.073-.044.035-.008.07.012.099.044a.3.3 0 0 1 .047.1c.135.34.46.6.824.66a1.1 1.1 0 0 0 .99-.356c.056-.06.104-.128.167-.176.064-.044.15-.076.222-.044.107.04.135.164.182.268.107.235.357.371.615.375.289 0 .554-.148.764-.34.195-.183.353-.399.516-.61a.3.3 0 0 1 .106-.096c.04-.024.096-.028.13 0 .033.024.045.06.06.091.163.4.587.652 1.01.648.417-.004.809-.224 1.103-.516.095-.092.194-.2.32-.21.14-.017.207.114.254.22.072.142.115.238.25.338.158.116.36.152.547.1.17-.04.34-.156.47-.316.072-.088.112-.204.19-.284.092-.087.132.028.136.1q.022.176.008.352c-.016.236-.052.471-.08.703-.011.068-.02.136-.063.188-.06.068-.166.08-.253.064a3 3 0 0 0-.321-.028l-.14-.016c-.201-.012-.4-.036-.61-.044h-.185c-.404 0-.733.048-1.03.16-.48.187-.852.57-1.003 1.018a1.3 1.3 0 0 0-.052.64c.04.203.13.403.282.587.265.315.68.515 1.149.543.408.02.852-.064 1.292-.26.848-.367 1.482-1.094 1.696-1.95 0-.02.01-.039.023-.043q.448-.157.813-.428c.245-.187.467-.399.65-.643q.135-.18.253-.37c.07-.125.13-.257.202-.38a.9.9 0 0 0 .13-.316.41.41 0 0 0-.05-.328.26.26 0 0 0-.135-.124m-13.68-1.63c.017-.071.045-.14.06-.206a1.9 1.9 0 0 1 .262-.504c.04-.048.08-.1.135-.136a.25.25 0 0 1 .186-.048c.107.02.183.128.202.236.032.18-.04.396-.114.555a1.1 1.1 0 0 1-.31.415c-.06.044-.114.088-.178.116-.028.008-.063.028-.115.028h-.016c-.055 0-.114-.028-.126-.088a.8.8 0 0 1 .015-.367m4.308-.184c-.004.072-.024.148-.028.223a5 5 0 0 0 0 .779c.012.152.047.3-.016.444a1.07 1.07 0 0 1-.567.643.56.56 0 0 1-.245.056q-.03-.002-.06-.004c-.12 0-.214-.092-.265-.18a.871.87 0 0 1-.1-.272 2.13 2.13 0 0 1 .072-1.122c.08-.22.202-.435.38-.594a.87.87 0 0 1 .563-.24.3.3 0 0 1 .206.064c.04.044.06.104.056.164a.05.05 0 0 1 .004.04m6.43 4.653c-.015.044-.06.104-.08.14-.042.08-.102.163-.161.235a2.6 2.6 0 0 1-.317.304c-.238.18-.503.311-.777.387a2 2 0 0 1-.487.072h-.04a.8.8 0 0 1-.515-.18.43.43 0 0 1-.158-.25.54.54 0 0 1 .047-.305.78.78 0 0 1 .38-.383c.326-.16.682-.176 1.019-.16.139.004.265.012.4.02.107.004.218.012.325.024q.086 0 .17.012c.044.004.092-.004.135.008.06.004.068.036.06.076"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.371 0 0 5.371 0 12c0 6.626 5.371 12 12 12s12-5.374 12-12c0-6.629-5.374-12-12-12m5.94 9.843v7.915h-3.957v-3.892h-3.895v3.83H6.13v-3.957h3.833V9.843H6.06V5.948h3.957v3.895h3.965V5.948h3.957v3.895z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.871 3.912A3.23 3.23 0 0 0 9.1 5.715c-.46.93-.44 2.029.048 2.945-.895-.524-1.898-.777-3.027-.777a6.097 6.097 0 0 0-6.086 6.74 6.11 6.11 0 0 0 6.086 5.467l.715-.043a5 5 0 0 0 .62-.106c.033-.01.067-.013.1-.023a6.1 6.1 0 0 0 2.231-1.055l3.535-2.85a6.107 6.107 0 0 0 8.62.522 6.103 6.103 0 0 0 .523-8.619 6.12 6.12 0 0 0-4.572-2.053q-.52 0-1.032.086l-3.439-1.717.006.01a3.23 3.23 0 0 0-1.557-.33Zm4.444 2.838 6.668 3.262a5.445 5.445 0 0 1-3.133 7.037 5.4 5.4 0 0 1-1.957.365 5.42 5.42 0 0 1-4.053-1.812l1.285-1.037a2.912 2.912 0 1 0 .465-4.092 2.9 2.9 0 0 0-.787.968l-3.27-1.61a.64.64 0 0 1-.207-.884.636.636 0 0 1 .83-.234l.442.215.593.289a5.45 5.45 0 0 1 3.123-2.467Zm.345 1.281a4.67 4.67 0 0 0-2.428 1.21l.633.316a3.94 3.94 0 0 1 1.924-.883Zm-10.539.504a5.447 5.447 0 0 1 5.45 5.443 5.447 5.447 0 0 1-4.807 5.416l-.672.04A5.453 5.453 0 0 1 .678 13.95 5.45 5.45 0 0 1 6.12 8.535Zm4.84 1.727 5.287 2.513-4.61 3.838a6.11 6.11 0 0 0-.677-6.351"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.014 0c-.51.281-9.231 5.256-10.323 5.87a.23.23 0 0 0-.136.23v11.866l.089.15c.004.005 6.521 3.746 10.24 5.884h.14c.52-.295 9.26-5.28 10.263-5.842a.28.28 0 0 0 .16-.272c-.006-3.915-.006-7.825 0-11.74 0-.145-.034-.253-.174-.309L12.094 0zm.324.863c3.066 1.763 6.123 3.516 9.19 5.279-.352.136-4.825 1.819-4.83 1.819l-.033.066q.056.127.099.262l.089.042c.117-.047 4.876-1.838 4.96-1.861v10.802c-.004-.005-3.282-5.692-3.624-6.282-.051-.085-.051-.085-.145-.07-.333.065-.207.037-.314.065l3.807 6.601h-8.754l-.089-.075-.042-1.256-.07-.061a3.4 3.4 0 0 1-1.107.014l-.065.06v.517l-.047.051c-.807-.117-.643.01-1.937-1.547-.126-.15-.239-.31-.36-.464l-.01-.01.01-.098c.398-.478.745-.844.703-1.528a1.14 1.14 0 0 0-.586-.957c-.47-.277-1.05-.225-2.626-.225-.178 0-.22.178-.084.225l.22.028c.235.047.253.127.253.633.005 3.3.01 3.085-.051 3.723-.024.244-.16.173-.31.206l-.094.084.08.141c.099.028 1.505.024 1.58.005.16-.042.122-.22-.023-.23-.352-.028-.432-.019-.455-.225-.042-.347-.033-.3-.047-1.528l.084-.085c.624 0 .68-.033.783.113q.507.688 1.027 1.369c.338.445.652.59 1.004.595.97.01.862-.014.862.047v.417l-.08.08H2.553c-.089 0-.098.01-.06-.052l3.164-5.485-.038-.066c-.286-.018-.351-.06-.426.07l-3.005 5.205V6.47c.121.033 1.251.469 1.256.469.108.042.14.042.502-.24l-1.449-.543-.005-.019q4.55-2.596 9.1-5.185l.01.01h-.005q-2.01 3.481-4.041 6.985c.16 0 .295.005.436-.005.084-.005 3.577-6.17 4.004-6.859.398.68 3.797 6.587 3.844 6.667.061.108.103.14.553.183l.014-.014zM11.93 4.05a.743.743 0 0 0-.675.76c.005.295.155.515.417.651l.075.131c-.019.328-.014.099-.047 1.388l-.084.084c-1.43-.009-1.482.01-1.744-.089-.094-.037-.14-.009-.16.09l-.154.843c-.01.052.07.277.183-.009.164-.417.37-.375 1.884-.399l.061.052a680 680 0 0 0-.173 5.687l-.094.127c-.544.173-1.153.801-.933 1.706.277 1.14 1.472 1.097 1.599 1.093 1.378-.066 1.575-1.191 1.51-1.744a1.15 1.15 0 0 0-.582-.905 3 3 0 0 0-.408-.188l-.056-.07-.174-5.725.047-.042c2.124.108 1.6.108 1.834.563l.121.01.038-.957-.122-.09a2 2 0 0 1-.258.038v.005c-.539.014-1.613.019-1.617.019l-.057-.052c-.051-1.613-.046-1.383-.046-1.411l.103-.202c.384-.244.436-.797.117-1.134a.69.69 0 0 0-.605-.23m.07.394c.47 0 .45.703-.004.698-.45-.004-.455-.698.004-.698M5.352 6.55q-.302.013-.647.089c-1.397.319-2.011 1.608-1.885 2.822.31 3.005 4.304 2.4 4.375 1.974 0-.01.075-.39.16-.895v-.047l-.141-.108c-.272.014.112.863-1.163.961-1.74.127-2.55-1.266-2.537-2.386.038-2.724 3.353-2.242 3.503-1.191.018.131-.005.422.187.342l.075-.108c.005-.037.052-.848.061-1.083.005-.131-.042-.173-.169-.187-.698-.09-1.214-.216-1.819-.183m12.645 1.477-.056.037c-.066.066-.014-.023-.863 1.95a7 7 0 0 1-.192.427.285.285 0 0 1-.277.16c-.112.004-.103.15.038.15h1.233c.183 0 .107-.15-.033-.174-.202-.042-.633.047-.572-.103q.098-.262.21-.516l.076-.047c.23-.014.455-.014.684-.004l.094.065q.093.24.192.478c.09.207-.103.235.02.263l.168.038c.136.004-.506-.005 2.377.014.258 0 .192-.15.248-.483h-.004c.018-.108-.099-.263-.178.01-.052.177-.127.177-.75.158l-.15-.117c-.024-.108-.015-1.856-.015-1.931v-.02l.127-.116c.305-.033.169-.16.056-.16-1.06-.004-1.008 0-1.017.01-.117.112-.01.14.004.14.15.024.258-.01.258.202v1.936c-.004.15-.023.207-.197.202-.028 0-.206.033-.3-.094-.243-.338-.97-2.279-1.106-2.433l-.019-.019zm-2.363.028c-.399-.005-.867.08-1.196.408-.46.464-.66 1.603.324 2.123.623.333 1.458.17 1.533.16.31-.042.281-.59.281-.596-.042-.136-.089-.112-.145-.051-.047.051-.047.272-.324.356-.323.099-1.078.08-1.355-.647-.262-.694.043-1.781 1.276-1.416.21.061.337.202.356.427.01.112.127.117.16.014.009-.033.009-.206.028-.455.009-.136-.024-.192-.141-.22-.066-.014-.399-.099-.797-.103m-4.534.051-.895.005c-.155.052-.155.14.033.16.136.009.15.056.15.318-.01 2.124-.01 1.744-.024 1.904l-.103.098a.53.53 0 0 1-.464-.15c-.488-.51-.764-.867-.811-.924q.149-.16.29-.314c.413-.468.038-1.012-.375-1.06-.347-.041-.853-.037-1.406-.032-.094 0-.277.122.051.16.132.013.155.07.155.23 0 .098-.014.674-.01 1.88 0 .332-.163.112-.276.285l.127.085h.914c.178 0 .178-.17-.042-.165-.188.005-.146-.056-.188-.825-.004-.093.31-.084.385.019.501.685.633.975 1.134.975.488-.004.97 0 1.458 0 .183 0 .118-.16 0-.16-.225.006-.234-.06-.239-.102-.014-.122-.033.051-.019-2.007.005-.169.02-.206.188-.216h.01c.168-.14-.029-.164-.043-.164m1.735.005c-.084 0-.14.089-.019.145.07.033.22-.042.22.197-.009 2.208.052 2.133-.159 2.133-.16 0-.178.16 0 .16q.555.006 1.013.005c.122 0 .126-.155.005-.16-.146-.005-.282.024-.282-.169-.037-1.978 0-2.044 0-2.053.014-.131.15-.094.197-.117.108-.057.066-.104.019-.132zm-4.501.267a.493.493 0 0 1 .581.432c.02.112.066.693-.572.628l-.098-.122c-.005-.23 0-.661 0-.872zm9.578.492.286.741h-.576c.094-.244.187-.483.29-.74zm-9.958 3.49c.174.004.361.037.408.051.708.207.868 1.144.586 1.824-.215.52-.66.399-1.2.342-.113-.01-.127-.028-.127-.14v-1.95c-.004-.104.16-.132.333-.127m10.202.745c-.426.047-.06.024-1.744.028-.178 0-.169.16.028.16l.005.004c.178 0 .295-.23.183 2.406-.01.145-.14.112-.192.121-.113.02-.136.136-.01.16.033.004-.089.01 1.65.014.212 0 .216-.094.216-.113q.027-.224.061-.454c.014-.113-.112-.136-.15-.029-.094.268.01.291-.769.268-.22-.005-.183-.188-.183-.765 0-.398-.117-.323.605-.28.174.009.117.154.174.248l.122-.014.051-.535c.01-.164-.122-.089-.14-.084-.254.089-.591.06-.737.07l-.075-.07v-.755l.075-.07c.633.028.718-.01.737.239.009.13.15.108.159.009.014-.16.033-.319.047-.478zm-3.061.028h-1.083c-.113 0-.132.132-.019.15.136.019.253 0 .267.174.01.15.028 1.495-.019 2.24-.009.15-.145.109-.239.132-.075.019-.07.145.02.16l1.79.009c.056 0 .258.056.244-.581 0-.01-.042-.155-.127-.052-.178.22.15.352-.881.295-.108-.004-.155-.065-.16-.168-.028-.582-.018-1.852-.018-1.946 0-.277.112-.24.234-.258.164-.014.145-.155-.01-.155zm-3.596.46c.014.093-.047 1.753-.052 1.847-.019.394 1.196.59 1.182.122 0-.024-.052-1.735-.052-1.833l.019-.005c.576.445.483 1.467.253 1.828a.844.844 0 0 1-1.05.333c-.98-.403-.961-1.94-.3-2.292m1.28 4.402c9.039.005 8.504-.005 8.51.014-.723.417-8.459 4.815-9.256 5.275h-.159c-.825-.479-9.063-5.21-9.185-5.284h8.575c.094 0 .094 0 .094.094a68 68 0 0 1-.07 2.25c-.01.174.023.347.094.506.201.483.393.97.59 1.454.047.108.061.084.094.004.652-1.533.605-1.425.633-1.51a1.3 1.3 0 0 0 .06-.36c0-.277-.055-2.358-.055-2.363z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.119 17.793a2.62 2.62 0 0 1-1.667-.562c-.546-.436-1.004-1.09-1.018-1.858-.008-.388.414-.388.414-.388l1.018-.008c.332.008.43.47.445.586.128 1.04.717 1.495 1.168 1.702.273.123.204.513-.362.528zm-5.695-5.287L8.5 12.252c-.867-.214-.844-.982-.807-1.247a5.1 5.1 0 0 1 .814-2.125c.545-.804 1.303-1.508 2.29-2.073 1.856-1.074 4.45-1.673 7.31-1.673 2.09 0 4.256.27 4.29.27.197.025.328.213.333.437a.377.377 0 0 1-.355.393l-.92-.01c-2.902 0-4.968.394-6.506 1.248-1.527.837-2.57 2.117-3.287 4.012-.076.163-.335 1.12-1.24 1.022zm2.533 7.823c-1.44 0-2.797-.622-3.825-1.746-.87-.96-1.397-1.931-1.493-3.164-.06-.813.3-1.094.788-1.044l1.988.218c.45.092.75.34.825.854.397 2.736 2.122 3.814 3.15 4.046.18.042.292.157.283.365a.41.41 0 0 1-.322.398c-.458.074-.936.073-1.394.073m-4.101 2.418a14 14 0 0 1-2.307-.214c-1.202-.214-2.208-.582-3.072-1.13C1.41 20.095.163 17.786.014 15.048c-.037-.65-.11-1.89 1.427-1.797.638.033 1.653.343 2.368.548.887.247 1.314.933 1.314 1.608 0 3.858 3.494 6.408 5.02 6.408.654 0 .414.701.127.779-.502.136-1.15.153-1.413.153zM3.525 11.419c-.605-.109-1.194-.358-1.768-.5C-.018 10.479.284 8.688.45 8.196c1.617-4.757 6.746-6.35 10.887-6.773 3.898-.4 7.978-.092 11.778.967.31.083 1.269.327.718.891-.35.358-1.7-.016-2.073-.041-2.23-.167-4.434-.192-6.656.15-2.349.357-4.768 1.099-6.71 2.665-.938.758-1.76 1.723-2.313 2.866-.144.3-.256.6-.354.9-.11.327-.47 1.91-2.215 1.6zm9.94.917c.332-1.488 1.81-3.848 6.385-3.686 1.05.033.57.749.052.731-2.586-.09-3.815 1.578-4.457 3.27-.219.546-.68.626-1.271.53-.415-.074-.866-.123-.71-.846Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.772a2.045 2.045 0 1 0 0 4.09 2.045 2.045 0 0 0 0-4.09M7.364 5.453a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092m9.273 0a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092M1.347 7.637a1.32 1.32 0 0 0-.93.36 1.325 1.325 0 0 0-.145 1.769c.66.864 1.993 2.604 2.652 3.465a5.4 5.4 0 0 1 1.112 3.283c0 1.519.71 2.966 1.949 3.841.767.543 1.614.982 2.515 1.3v-3.933c0-.592.191-1.17.472-1.652a4.15 4.15 0 0 0-1.198-2.496L2.342 8.106c-.261-.29-.625-.469-.996-.47m21.31 0a1.32 1.32 0 0 0-.917.39l-4.545 4.575-.968.974a4.16 4.16 0 0 0-1.199 2.494c.265.455.454.993.472 1.549v4.039a10.3 10.3 0 0 0 2.516-1.303c1.238-.875 1.949-2.323 1.949-3.842a5.4 5.4 0 0 1 1.111-3.285l2.652-3.462a1.327 1.327 0 0 0-.144-1.77 1.31 1.31 0 0 0-.928-.36M12 9.135a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092m.002 5.728c-1.658 0-3.002 1.28-3.002 2.86v4.091a11.1 11.1 0 0 0 6 0v-4.18c-.049-1.538-1.371-2.77-2.998-2.77"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0M7.045 14.465A2.11 2.11 0 0 0 9.84 13.42h1.66a3.69 3.69 0 1 1 0-1.75H9.84a2.11 2.11 0 1 0-2.795 2.795m11.345.845a3.6 3.6 0 0 1-1.06.63 3.68 3.68 0 0 1-3.39-.38v.38h-1.51V5.37h1.5v4.11a3.74 3.74 0 0 1 1.8-.63H16a3.67 3.67 0 0 1 2.39 6.46m-.223-2.766a2.104 2.104 0 1 1-4.207 0 2.104 2.104 0 0 1 4.207 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.909 13.436C2.914 7.61 7.642 2.893 13.468 2.898c5.576.005 10.137 4.339 10.51 9.819q.021-.351.022-.706C24.007 5.385 18.64.006 12.012 0S.007 5.36 0 11.988 5.36 23.994 11.988 24q.412 0 .815-.027c-5.526-.338-9.9-4.928-9.894-10.538Zm16.284.155a4.1 4.1 0 0 1-4.095-4.103 4.1 4.1 0 0 1 2.712-3.855 8.95 8.95 0 0 0-4.187-1.037 9.007 9.007 0 1 0 8.997 9.016q-.001-.847-.15-1.651a4.1 4.1 0 0 1-3.278 1.63Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.714 14.874c.296 0 .58.101.807.287l.014.013-.149.238a.996.996 0 1 0 .312.888l.002-.014h-.852l.173-.277h.966v.139c0 .702-.571 1.273-1.272 1.273a1.274 1.274 0 0 1-.001-2.547m-13.442 0c.347 0 .68.143.918.391l.012.013-.157.242a.996.996 0 1 0-.026 1.281l.01-.012.211.18A1.273 1.273 0 0 1 0 16.145c0-.7.571-1.272 1.272-1.272m2.44.014c.639 0 .894.3.894.734 0 .363-.184.619-.621.706l-.014.003.702 1.075h-.336l-.663-1.058h-.478v1.058h-.273v-2.517zm5.88 2.274v.244H7.87v-.244zm-4.018-2.273.691 1.149a.5.5 0 0 1 .045.115c.01-.03.019-.067.043-.11l.006-.01.688-1.145h.297L5.78 17.406h-.271l.647-1.05-.882-1.468zm17.522 2.273v.244h-1.722v-.244zm-4.561-2.273 1.512 2.085c-.013-.06-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm-1.361 0v2.518h-.272v-2.518zm-6.395 0 1.512 2.085c-.013-.06-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm12.317 1.065v.247h-1.722v-.248zm-13.504 0v.247H7.87v-.248zm-5.876-.822h-.52v.968h.517c.384 0 .615-.113.615-.479-.001-.367-.232-.489-.612-.489m19.991-.566a.292.292 0 1 1 0 .583.292.292 0 1 1 0-.583m-.611.322v.245h-1.722v-.244zm-13.504 0v.245h-1.47l.151-.244zm14.115-.273a.242.242 0 1 0 0 .484.242.242 0 1 0 0-.485m.002.09c.075 0 .108.038.108.091q.001.061-.059.084l-.006.002.08.123h-.058l-.067-.104q-.003-.004-.004-.01v-.004h-.058v.118h-.048v-.3zm.001.046h-.065v.091h.064c.041 0 .06-.01.06-.045q0-.048-.059-.046M10.909 6.598l.088-.007c-2.36.55-3.761 2.332-3.761 2.564v.001c0 .001.001-.009.002.036v.006h.001c.048.253.745 1.475 3.441 2.201-3.09-.245-4.494-1.748-4.563-2.188l-.001-.014h-.001c0-.046-.001-.037-.001-.034l.001-.013c.037-.452 1.928-2.312 4.794-2.552l.088-.007zm.981-.019c3.209.167 5.076 2.075 5.093 2.61v-.002l-.001.033v.006h-.002c-.025.268-1.045 1.358-2.571 1.86-1.865.613-4.866.39-4.866-1.948a1.994 1.994 0 0 1 3.989.005c0 .535-.231 1.053-.581 1.42.327-.007 1.517-.094 2.638-1.018.124-.12.203-.222.236-.284a.14.14 0 0 0 .02-.072c.001-.24-1.288-2.084-3.955-2.61m-.357 1.427a1.13 1.13 0 1 0 0 2.262 1.13 1.13 0 0 0 0-2.262m5.449 1.182"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.98 7.64c.41-.165 1.463-.51 3.016-.51.86 0 1.745.105 2.643.314-.212-2.883-2.434-5.69-5.668-5.69-3.477 0-5.474 2.799-5.669 5.677.894-.206 1.775-.31 2.63-.31 1.57 0 2.632.351 3.047.518m1.516-1.186a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25c.137 0 .25.113.25.25a.25.25 0 0 1-.249.25zM14 4.073c.72 0 1.313.592 1.313 1.313v.001h-2.626v-.001c0-.721.592-1.313 1.313-1.313m-1.486 1.88c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25m-1.962.5a.25.25 0 0 1-.25-.25c0-.137.113-.25.25-.25a.25.25 0 0 1 .25.25.25.25 0 0 1-.25.25m.981-.5c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.251-.25c0-.137.113-.25.251-.25M9.94 4.073c.721 0 1.313.592 1.313 1.313v.001H8.626v-.001c0-.721.593-1.313 1.313-1.313zM23.804 15.17a1.8 1.8 0 0 0-1.595-.976 1.07 1.07 0 0 0-.064-.821l-.448-.875a1.07 1.07 0 0 0-.79-.57l-.416-.817c.205-.279.316-.617.316-.963a1.632 1.632 0 0 0-1.847-1.61c.037.507.045 1.333-.174 2.121-.065.247-.061.507.011.752q.043.146.087.336.206.038.415.022l.392.766c-.167.31-.171.683-.011.996l.447.874c.13.254.356.446.628.533-.22.305-.339.672-.339 1.049a1.8 1.8 0 0 0 1.591 1.781l.05.003a.435.435 0 0 0 .429-.433.435.435 0 0 0-.382-.43.93.93 0 0 1-.823-.921.93.93 0 0 1 .927-.927c.508 0 .927.418.927.927 0 .157-.04.311-.116.448a.435.435 0 0 0 .373.654.43.43 0 0 0 .385-.236 1.8 1.8 0 0 0 .028-1.683m-19.931-.765.447-.874a1.07 1.07 0 0 0-.01-.997l.39-.765q.179.014.356-.013.04-.185.093-.367c.073-.244.078-.504.014-.751-.215-.781-.206-1.6-.168-2.107a1.634 1.634 0 0 0-1.801 1.616c0 .347.111.685.316.964l-.418.817a1.07 1.07 0 0 0-.79.57l-.447.875a1.07 1.07 0 0 0-.012.95l-.051-.001c-.984 0-1.793.81-1.793 1.793 0 .304.077.603.224.868a.434.434 0 0 0 .758-.418.9.9 0 0 1-.116-.448c0-.509.419-.927.927-.927a.93.93 0 0 1 .927.927.93.93 0 0 1-.824.921.435.435 0 0 0-.382.43c0 .237.194.432.43.433l.05-.002a1.8 1.8 0 0 0 1.593-1.783c0-.423-.15-.833-.423-1.157.307-.071.567-.274.71-.554m15.122 2.278a1.1 1.1 0 0 0-.513-.127h-.877a5.9 5.9 0 0 0 1.003-3.318 6 6 0 0 0-.227-1.707 1.8 1.8 0 0 1-.012-.988c.319-1.15.11-2.421.11-2.421-4.01-1.251-6.502-.01-6.502-.01s-2.487-1.249-6.498-.01c0 0-.214 1.27.102 2.422a1.8 1.8 0 0 1-.015.987c-.111.38-.232.964-.233 1.707a5.9 5.9 0 0 0 1.005 3.338h-.895c-.179 0-.355.044-.513.127-.429.22-.778.709-.981 1.38a4.8 4.8 0 0 0-.14 2.035c.183 1.285.84 2.148 1.635 2.148h2.241v-.002a.45.45 0 0 0 .28-.127l1.077-.95c.22-.197.384-.693.437-1.327a5 5 0 0 0 .016-.562 12 12 0 0 0 2.465 1.002s1.137-.282 2.471-.997q-.008.28.016.557c.053.634.217 1.13.437 1.327l1.077.949a.45.45 0 0 0 .28.127v.001h2.241c.794 0 1.452-.863 1.636-2.148.1-.68.052-1.374-.14-2.035-.203-.67-.553-1.159-.983-1.378M8.755 20.845c-.011.005-.562.495-.875.772a.24.24 0 0 1-.161.062.24.24 0 0 1-.215-.132c-.455-.892-.504-2.705-.182-3.823.546.526 1.15.958 1.736 1.307.033.66-.094 1.692-.303 1.814m4.178-4.573-.968.275-.968-.278.7-2.934a1.25 1.25 0 0 1-.972-1.214c0-.683.563-1.246 1.246-1.246s1.245.563 1.245 1.246c0 .58-.406 1.086-.971 1.214zm3.496 5.274a.243.243 0 0 1-.376.071c-.313-.277-.864-.767-.875-.772-.208-.122-.336-1.15-.303-1.81a9.6 9.6 0 0 0 1.738-1.303c.32 1.118.27 2.926-.184 3.814"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.355 0 .008.717.153 12.23c.045 3.668 1.528 6.09 3.425 7.692s4.168 2.444 5.844 3.215l.317.146.308-.164c1.492-.788 3.779-1.625 5.72-3.209 1.943-1.584 3.515-3.997 3.515-7.69V5.97L15.22 0Zm9.729 1.416h1.604v6.016h6.542v3.879H15.4c-.055 1.091-.59 1.926-1.256 2.484l.938 4.97h-2.994v3.655l-.018.008c-1.691-.764-3.651-1.55-5.215-2.87-1.653-1.396-2.884-3.32-2.925-6.628l-.02-1.62h4.674q-.005-.08-.006-.164a3.424 3.424 0 0 1 3.41-3.41l.096.002zm3.02.408 4.513 4.194h-4.513zm-3.112 6.91a2.412 2.412 0 0 0-1.043 4.586l-.844 4.448h3.772l-.842-4.448a2.412 2.412 0 0 0-1.043-4.586"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.964 15.266-8.687 8.669c-.034.035-.086.052-.121.035L3.29 20.79c-.052-.017-.087-.052-.087-.086L.007 8.856c-.018-.053 0-.087.035-.122L8.728.065c.035-.035.087-.052.121-.035l11.866 3.18c.052.017.087.052.087.086l3.18 11.848c.034.053.016.087-.018.122m-11.64-9.433L.667 8.943c-.017 0-.035.034-.017.052l8.53 8.512c.017.017.052.017.052-.017l3.127-11.64c.017 0-.018-.035-.035-.017"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.693 13.638c-.497.568-1.363.63-1.712.63-.648 0-1.144-.164-1.474-.488-.313-.307-.478-.76-.489-1.346-.025-1.358.744-2.762 2.074-2.762.635 0 1.124.455 1.311.644a.34.34 0 0 0 .282.099.38.38 0 0 0 .241-.159c.068-.087.135-.237.138-.401s-.057-.344-.243-.49a2.64 2.64 0 0 0-1.668-.591c-.819 0-1.627.376-2.218 1.033-.621.691-.953 1.63-.935 2.646.015.815.282 1.5.773 1.982.528.518 1.3.791 2.235.791 1.097 0 1.776-.325 2.154-.597a.58.58 0 0 0 .24-.456.7.7 0 0 0-.208-.497c-.23-.248-.448-.101-.503-.037Zm4.97-2.15a8 8 0 0 0-.698-.248q-.237-.072-.45-.131c-.922-.26-1.027-.5-1.017-.68.022-.363.515-.853 1.352-.792.607.045 1.015.509 1.205.781.149.214.371.135.434.095a.6.6 0 0 0 .309-.514.63.63 0 0 0-.209-.488 2.654 2.654 0 0 0-3.347-.273c-.456.323-.744.772-.77 1.202-.064 1.061 1.015 1.366 1.803 1.588.214.061.429.127.667.202 1.14.357 1.173.717 1.092 1.267-.082.556-.696.834-1.685.761-1.029-.076-1.464-.61-1.612-.901-.05-.098-.205-.248-.413-.156-.514.229-.473.731-.26.993.339.416 1.15 1.035 2.667 1.035 1.734 0 2.255-.875 2.378-1.64.092-.572-.022-1.028-.348-1.396-.236-.267-.592-.495-1.101-.706Zm6.777-2.165c-.598-.431-1.393-.61-2.36-.532-.712.058-1.274.243-1.335.263l-.006.002a.44.44 0 0 0-.297.379l-.47 5.201a.34.34 0 0 0 .247.35l.072.02.066.018.086.021a8 8 0 0 0 1.64.183c.972 0 1.765-.23 2.36-.684.764-.583 1.141-1.5 1.118-2.725-.021-1.135-.398-1.974-1.121-2.495Zm-.662 4.461c-.836.639-2.09.562-2.677.481a.13.13 0 0 1-.109-.137l.397-4.248a.11.11 0 0 1 .086-.1c.999-.241 1.777-.168 2.312.218.189.137.348.331.471.568.176.339.277.765.286 1.234.017.916-.24 1.583-.765 1.984Zm8.189-3.374a1.9 1.9 0 0 0-.432-.919c-.399-.465-1.029-.689-1.848-.689-.734 0-1.372.228-1.947.799.007-.086.019-.159.018-.223s-.017-.116-.066-.163c-.048-.045-.077-.067-.127-.077s-.122-.008-.256-.006a.587.587 0 0 0-.589.54s-.325 3.874-.428 5.165a.3.3 0 0 0 .073.228.36.36 0 0 0 .26.131h.387a.224.224 0 0 0 .226-.205l.273-2.929.014-.147a2 2 0 0 1 .082-.412q.021-.068.047-.14c.245-.694.803-1.72 1.971-1.694.84.018 1.449.455 1.385 1.114-.101 1.034-.266 3.1-.358 4.14-.019.209.182.273.252.273h.304a.44.44 0 0 0 .444-.404s.185-2.127.294-3.352l.048-.532a2 2 0 0 0-.026-.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v20.16A3.84 3.84 0 0 0 3.84 24h16.32A3.84 3.84 0 0 0 24 20.16V3.84A3.84 3.84 0 0 0 20.16 0Zm14.256 13.08c1.56 0 2.28 1.08 2.304 2.64h-1.608c.024-.288-.048-.6-.144-.84-.096-.192-.288-.264-.552-.264-.456 0-.696.264-.696.84-.024.576.288.888.768 1.08.72.288 1.608.744 1.92 1.296q.432.648.432 1.656c0 1.608-.912 2.592-2.496 2.592-1.656 0-2.4-1.032-2.424-2.688h1.68c0 .792.264 1.176.792 1.176.264 0 .456-.072.552-.24.192-.312.24-1.176-.048-1.512-.312-.408-.912-.6-1.32-.816q-.828-.396-1.224-.936c-.24-.36-.36-.888-.36-1.536 0-1.44.936-2.472 2.424-2.448m5.4 0c1.584 0 2.304 1.08 2.328 2.64h-1.608c0-.288-.048-.6-.168-.84-.096-.192-.264-.264-.528-.264-.48 0-.72.264-.72.84s.288.888.792 1.08c.696.288 1.608.744 1.92 1.296.264.432.408.984.408 1.656.024 1.608-.888 2.592-2.472 2.592-1.68 0-2.424-1.056-2.448-2.688h1.68c0 .744.264 1.176.792 1.176.264 0 .456-.072.552-.24.216-.312.264-1.176-.048-1.512-.288-.408-.888-.6-1.32-.816-.552-.264-.96-.576-1.2-.936s-.36-.888-.36-1.536c-.024-1.44.912-2.472 2.4-2.448m-11.031.018c.711-.006 1.419.198 1.839.63.432.432.672 1.128.648 1.992H9.336c.024-.456-.096-.792-.432-.96-.312-.144-.768-.048-.888.24-.12.264-.192.576-.168.864v3.504c0 .744.264 1.128.768 1.128a.65.65 0 0 0 .552-.264c.168-.24.192-.552.168-.84h1.776c.096 1.632-.984 2.712-2.568 2.688-1.536 0-2.496-.864-2.472-2.472v-4.032c0-.816.24-1.44.696-1.848.432-.408 1.146-.624 1.857-.63"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.46.93 0 8.31l3.73 3.73 3.74 3.65 3.73 3.65 3.74-3.65-7.47-7.38 7.47-7.4zm5.33 3.73L9.12 8.31l7.39 7.38-7.46 7.4h7.46l3.76-3.66L24 15.7l-3.73-3.65-3.74-3.73z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.705 2.147v19.706H0V2.147zM.141 21.712h19.423V2.288H.141zm2.561-10.444q.642 0 .996.338t.393.768h-.446a.93.93 0 0 0-.303-.517q-.225-.191-.635-.191-.5 0-.808.352-.306.349-.306 1.074 0 .594.276.964.279.368.828.368.507 0 .771-.389.14-.204.21-.538h.446q-.06.534-.396.895-.402.434-1.086.434-.588 0-.989-.356-.526-.472-.527-1.456 0-.748.396-1.226.428-.52 1.18-.52m2.28 2.38a.9.9 0 0 0 .135.467q.228.336.803.336.257 0 .47-.073.409-.143.409-.511 0-.276-.173-.393-.175-.116-.547-.2l-.458-.104q-.448-.101-.635-.223-.322-.211-.322-.633 0-.455.315-.747t.893-.292q.531 0 .902.257.372.255.372.82h-.43a.85.85 0 0 0-.147-.417q-.21-.265-.71-.265-.406 0-.583.17a.53.53 0 0 0-.177.396q0 .249.207.364.135.073.614.184l.474.108q.343.078.53.214.321.237.321.687 0 .562-.41.803a1.8 1.8 0 0 1-.947.242q-.63 0-.987-.322-.356-.32-.35-.867h.43Zm3.137 0a.9.9 0 0 0 .136.467q.228.336.803.336.257 0 .469-.073.41-.143.41-.511 0-.276-.173-.393-.176-.116-.548-.2l-.457-.104q-.45-.101-.635-.223-.322-.211-.322-.633 0-.455.315-.747.316-.292.892-.292.532 0 .902.257.373.255.373.82h-.43a.85.85 0 0 0-.148-.417q-.21-.265-.71-.265-.405 0-.582.17a.53.53 0 0 0-.177.396q0 .249.207.364.135.073.614.184l.474.108q.342.078.529.214.322.237.322.687 0 .562-.41.803a1.8 1.8 0 0 1-.947.242q-.63 0-.987-.322-.357-.32-.35-.867h.43Zm-6.197 3.6.97 2.857.965-2.857h.648v3.38h-.434v-1.995q0-.104.004-.343.005-.24.005-.513l-.964 2.85h-.453l-.97-2.85v.104q-.001.125.004.38.006.252.007.372v1.994h-.437v-3.379zm4.743-.091q.895 0 1.325.575.336.448.336 1.147 0 .757-.384 1.259-.451.588-1.286.589-.78 0-1.226-.516-.398-.496-.398-1.256 0-.685.34-1.173.438-.625 1.293-.625m.046 3.16q.605 0 .874-.432.272-.435.272-.999 0-.596-.313-.959-.31-.363-.851-.363-.525 0-.856.36t-.331 1.061q0 .562.283.948.285.384.922.384m3.455-.08q.233 0 .382-.049a.84.84 0 0 0 .437-.345 1.4 1.4 0 0 0 .196-.524 2 2 0 0 0 .034-.355q0-.627-.25-.975-.25-.347-.803-.347H9.35v2.595zm-1.276-2.99h1.368q.697 0 1.081.495.343.446.343 1.143 0 .539-.202.973-.357.768-1.226.769H8.89zm3.88 0v2.089q0 .368.138.612.205.368.69.368.582 0 .791-.398.114-.216.113-.582v-2.089h.465v1.898q0 .622-.168.96-.309.61-1.164.61c-.855 0-.958-.203-1.162-.61q-.168-.338-.168-.96v-1.898zm3.357 0v2.977h1.711v.402h-2.17v-3.379zm2.208 0h2.463v.414h-2.017v1.026h1.865v.391h-1.865v1.146h2.052v.402h-2.498zm3.402 2.29q.016.286.135.466.228.336.803.336.258 0 .47-.074.408-.143.409-.51 0-.276-.173-.394-.174-.114-.547-.2l-.458-.103q-.448-.102-.635-.223-.322-.211-.322-.633 0-.456.315-.748.315-.291.893-.292.531 0 .901.258.373.255.373.819h-.43a.85.85 0 0 0-.147-.416q-.21-.265-.711-.265-.405 0-.582.17a.53.53 0 0 0-.177.396q0 .248.207.363.135.074.614.184l.474.108q.343.08.529.214.322.238.322.688 0 .561-.41.803a1.8 1.8 0 0 1-.947.241q-.63 0-.987-.322-.356-.32-.35-.867h.43Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 16.5V1.127C0 .502.506 0 1.127 0h21.748C23.498 0 24 .505 24 1.126V15.95q-1.014-.62-2.372-.62-1.887 0-2.862.886-.974.886-.974 2.226 0 1.468 1.008 2.158.596.413 2.151.765l1.056.237q.926.202 1.36.466.432.27.432.765 0 .846-.872 1.157l-.024.008H20.68a1.53 1.53 0 0 1-.688-.462q-.278-.337-.372-1.021h-1.99q0 .839.325 1.483h-1.681q.294-.595.294-1.32 0-1.334-.892-2.037-.576-.453-1.705-.724l-1.719-.412q-.995-.237-1.299-.413a.86.86 0 0 1-.473-.799q0-.581.48-.906.481-.325 1.286-.325.723 0 1.21.25.732.38.785 1.28h2.003q-.054-1.59-1.167-2.426t-2.69-.836q-1.887 0-2.861.886t-.975 2.226q0 1.468 1.008 2.158.595.413 2.152.765l1.055.237q.927.202 1.36.466.433.27.433.765 0 .846-.873 1.157l-.025.008h-2.223a1.53 1.53 0 0 1-.688-.462q-.278-.337-.372-1.021h-1.99q0 .839.324 1.483H6.611a4.75 4.75 0 0 0 .667-1.801H5.215q-.21.771-.528 1.157-.391.489-1.026.644H2.42q-.675-.173-1.165-.762-.695-.835-.695-2.512t.656-2.595 1.793-.917q1.116 0 1.684.65.318.365.52 1.082H7.3q-.048-.933-.69-1.86-1.164-1.65-3.68-1.65-1.752 0-2.929 1.067zm24 3.654v-1.562h-.518q-.054-.9-.785-1.279-.487-.25-1.21-.25-.806 0-1.286.325-.48.324-.48.906 0 .535.473.799.304.176 1.299.413l1.718.412q.436.105.789.236"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.489 15.344c.05 0 .09.04.09.09v3.776c0 .05-.04.09-.09.09H16.44a.09.09 0 0 1-.075-.04.09.09 0 0 1-.007-.086l1.603-3.776a.09.09 0 0 1 .083-.055h1.444zm.97-7.892c1.083 0 2.183.358 3.272 1.065a.09.09 0 0 1 .03.12l-.86 1.537a.09.09 0 0 1-.13.033c-.803-.522-1.615-.786-2.412-.786-.6 0-1.312.13-1.312.746 0 .188.074.454.427.647.27.147.704.314 1.326.51.61.19 1.047.338 1.302.439s.564.26.918.472c.66.402.98 1.053.98 1.994 0 .944-.337 1.68-1.03 2.25-.604.494-1.36.776-2.253.838a.09.09 0 0 1-.097-.09v-1.762a.09.09 0 0 1 .078-.09q.33-.046.55-.195a.7.7 0 0 0 .333-.6q0-.374-.45-.68c-.286-.195-.703-.38-1.24-.548a14 14 0 0 1-1.22-.43 7 7 0 0 1-.956-.519c-.72-.448-1.07-1.094-1.07-1.975 0-.884.346-1.585 1.058-2.143.707-.553 1.633-.833 2.755-.833zm-15.786 0a.09.09 0 0 1 .096.09v2.106a.09.09 0 0 1-.076.09 2.66 2.66 0 0 0-1.38.668c-.52.471-.785 1.134-.785 1.971s.264 1.498.786 1.963c.5.458 1.155.708 1.832.7.87 0 1.666-.416 2.368-1.238a.1.1 0 0 1 .068-.032.1.1 0 0 1 .068.03l1.393 1.566a.09.09 0 0 1-.004.124c-1.204 1.212-2.52 1.826-3.91 1.826-1.43 0-2.658-.459-3.644-1.362C.5 15.05 0 13.854 0 12.395S.506 9.733 1.503 8.82a5.1 5.1 0 0 1 3.17-1.367ZM16.831 4.7c.05 0 .09.04.09.09v2.13c0 .05-.04.09-.09.09h-3.417a.06.06 0 0 0-.06.06v8.545c0 .05-.04.09-.09.09h-2.51a.09.09 0 0 1-.09-.09V7.072a.06.06 0 0 0-.06-.06H7.186a.09.09 0 0 1-.09-.09V4.79a.09.09 0 0 1 .09-.09z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.16 0C7.523-.03 3.223 3.007 1.886 7.715.241 13.51 3.746 19.51 9.601 20.925V24l.626-.094c6.715-1.008 11.876-6.254 12.271-12.472.258-4.041-1.795-8.064-5.108-10.01a9.6 9.6 0 0 0-1.999-.895A10.6 10.6 0 0 0 12.16 0m-.084 1.087h.013c1.011 0 2.015.161 2.976.477a8.5 8.5 0 0 1 1.769.792c2.97 1.744 4.809 5.363 4.576 9.008-.35 5.52-4.816 10.208-10.72 11.36V20.04l-.44-.085a9.518 9.518 0 0 1 1.826-18.868m2.042 4.306a.96.96 0 0 0-.843.333 4 4 0 0 0-.366.632c-.321.743-.436 1.803.043 2.385l-.001.003a3.08 3.08 0 0 0 1.918-1.641 1.7 1.7 0 0 0 .165-.698.996.996 0 0 0-.916-1.014m-4.061.092a1.014 1.014 0 0 0-.926.982c.01.241.07.478.18.694a3.28 3.28 0 0 0 2.062 1.6c.413-.593.216-1.65-.118-2.386a2.2 2.2 0 0 0-.377-.574.93.93 0 0 0-.821-.316M7.628 8c-.858.035-1.2 1.126-.516 1.645q.298.22.632.38a3 3 0 0 0 2.53-.07A3.17 3.17 0 0 0 8.54 8.167 2 2 0 0 0 7.628 8m7.762 3.216a3.3 3.3 0 0 0-1.228.296 3.09 3.09 0 0 0 1.718 1.755c.236.105.49.161.747.166a.933.933 0 0 0 .681-1.663c-.659-.46-1.105-.575-1.918-.554m-5.85.03c-.297-.012-.635.01-.983.026-.559 0-1.228.278-1.494.565-.695.61-.188 1.751.73 1.644a1.7 1.7 0 0 0 .747-.167c.744-.322 1.628-1.202 1.734-1.89-.182-.12-.438-.165-.735-.178zm2.086 1.214c-.863.32-1.56.975-1.93 1.817a1.6 1.6 0 0 0-.167.681c-.02.908 1.091 1.361 1.711.698q.211-.299.362-.632c.322-.69.449-1.928.024-2.564m1.497.173a2.8 2.8 0 0 0-.116 2.442c.089.211.21.408.362.58.577.627 1.81.186 1.763-.63a1.6 1.6 0 0 0-.167-.697 3.04 3.04 0 0 0-1.842-1.695"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.591 8.675C1.107 8.675 0 9.796 0 11.258c0 1.484 1.065 2.627 2.605 2.627 1.285 0 1.981-.817 1.981-.817l-.483-.66s-.59.639-1.463.639c-1.05 0-1.696-.845-1.697-1.803 0-.937.625-1.732 1.69-1.732.802 0 1.378.533 1.378.533l.44-.682s-.632-.69-1.86-.688m6.778.084h-.895v3.911c0 1.037.618 1.165 1.115 1.165.149 0 .284-.021.284-.021v-.788s-.064.007-.135.007c-.235 0-.37-.1-.37-.497zm.877.433v.987h-.49v.717h.47v1.577c0 1.213 1 1.362 1.505 1.362.17 0 .276-.021.276-.021v-.788s-.064.014-.163.014c-.249 0-.716-.085-.716-.681v-1.463h1.118v1.612c0 .987.484 1.377 1.257 1.377.618 0 1.079-.376 1.257-.753h.013s-.013.114-.013.256v.411h.866v-3.62h-.902v1.661c0 .646-.362 1.221-1.015 1.221-.448 0-.56-.298-.56-.738V10.18h-2.022v-.987zm9.592.902c-.86 0-1.42.448-1.42.448l.34.645s.476-.347.994-.348c.398 0 .696.164.696.64v.049h-.12c-.59 0-2.145.078-2.144 1.228 0 .724.582 1.129 1.228 1.129.823 0 1.108-.639 1.1-.64h.015s-.015.114-.015.257v.298h.831v-2.264c0-.916-.554-1.442-1.505-1.442m-1.715.035c-.553 0-.987.412-1.15.93h-.014a2 2 0 0 0 .014-.255v-.625h-.866V13.8h.902v-1.434c0-.214.02-.413.077-.59.171-.539.604-.759.987-.759.12 0 .214.014.214.014v-.887s-.079-.015-.164-.015m-13.428.05v2.329c0 .987.482 1.377 1.257 1.377.618 0 1.08-.376 1.256-.753h.014s-.014.114-.014.256v.412h.866v-3.62h-.901v1.66c0 .646-.363 1.222-1.016 1.222-.448 0-.56-.299-.56-.739V10.18zm18.316 1.902c-.13 0-.277.015-.473.05a.16.16 0 0 0-.104.064.3.3 0 0 0-.046.102.2.2 0 0 0-.007.049.12.12 0 0 0 .04.092.12.12 0 0 0 .08.027l.048-.003s.065-.007.174-.013l.001.018q.006.064.007.177c0 .367-.081 1.078-.627 1.607-.443.43-.91.642-1.499.675a3 3 0 0 1-1.714-.431c-.575-.349-.948-.823-1.131-1.042q-.04-.051-.073-.086c-.021-.022-.042-.048-.086-.05a.08.08 0 0 0-.055.021.5.5 0 0 0-.099.15.5.5 0 0 0-.058.197v.004c.002.125 0 .588.39.973a1.9 1.9 0 0 0 .452.328 1 1 0 0 0 .308.115h.01a.09.09 0 0 0 .075-.041.14.14 0 0 0 .017-.07c-.002-.092-.052-.206-.052-.209l-.01-.022-.054-.017a1.6 1.6 0 0 1-.41-.234 1.23 1.23 0 0 1-.43-.681c.268.34.708.776 1.073.98.453.258 1.103.515 1.802.514a2.55 2.55 0 0 0 1.065-.225 2.67 2.67 0 0 0 1.236-1.069c.342-.543.384-1.18.384-1.472v-.088c.08.031.223.11.34.3.001 0 .026.044.07.062a.1.1 0 0 0 .05.008.2.2 0 0 0 .09-.021.5.5 0 0 0 .128-.088c.04-.038.076-.084.077-.148a.1.1 0 0 0-.012-.055c-.096-.19-.335-.358-.65-.416a2 2 0 0 0-.328-.032zm-2.712.065h.157v.085c0 .44-.342.95-.817.95-.369 0-.547-.226-.547-.467 0-.504.746-.568 1.207-.568"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.803 14.817a.966.966 0 1 1 1.933 0 .966.966 0 0 1-1.933 0m2.736 0c0-.196-.053-.376-.112-.553-.234-.702-.876-1.216-1.657-1.216-.125 0-.235.046-.353.07C.615 13.286 0 13.965 0 14.817a1.77 1.77 0 0 0 3.539 0m-1.77-7.149a.967.967 0 1 1 0 1.934.967.967 0 0 1 0-1.934m0 2.736a1.77 1.77 0 0 0 1.77-1.77c0-.195-.053-.376-.112-.552-.234-.702-.877-1.217-1.657-1.217-.125 0-.235.047-.353.072C.615 7.104 0 7.782 0 8.634c0 .977.792 1.77 1.77 1.77M14.99 4.71a.966.966 0 0 1-.966-.967.966.966 0 0 1 .967-.966.966.966 0 1 1 0 1.933m-9.6 16.513a.967.967 0 0 1 0-1.933.966.966 0 0 1 .966.967.966.966 0 0 1-.966.966m9.6-19.249c-.978 0-1.77.792-1.77 1.77 0 .208.053.402.119.588L5.039 18.558c-.803.168-1.418.846-1.418 1.699a1.77 1.77 0 0 0 3.539 0 1.7 1.7 0 0 0-.111-.553l8.343-14.273c.778-.186 1.368-.853 1.368-1.688a1.77 1.77 0 0 0-1.77-1.769m7.24 2.736a.966.966 0 0 1-.966-.967.966.966 0 0 1 .967-.966.966.966 0 1 1 0 1.933m-9.6 16.513a.966.966 0 0 1-.966-.966.966.966 0 0 1 .966-.967.966.966 0 0 1 0 1.933m9.6-19.249a1.77 1.77 0 0 0-1.77 1.77c0 .208.053.402.119.588l-8.301 14.226c-.802.168-1.417.846-1.417 1.699a1.77 1.77 0 0 0 3.538 0c0-.197-.053-.376-.111-.553l8.343-14.273C23.409 5.245 24 4.578 24 3.743a1.77 1.77 0 0 0-1.77-1.769"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.326 9.215s4.9-.773 5.674-3.027h-7.507V4.4H0l2.032 2.358v2.415s5.127-.266 7.11 1.237c2.714 2.516-3.053 5.917-3.053 5.917l-.99 3.273c1.547-1.473 4.494-3.377 9.899-3.286-2.057.65-4.125 1.665-5.735 3.286h10.925l-1.029-3.273s-7.918-4.668-.833-7.112z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.503.131 1.891 5.678a.84.84 0 0 0-.42.726v11.188c0 .3.162.575.42.724l9.609 5.55a1 1 0 0 0 .998 0l9.61-5.55a.84.84 0 0 0 .42-.724V6.404a.84.84 0 0 0-.42-.726L12.497.131a1.01 1.01 0 0 0-.996 0M2.657 6.338h18.55c.263 0 .43.287.297.515L12.23 22.918c-.062.107-.229.064-.229-.06V12.335a.59.59 0 0 0-.295-.51l-9.11-5.257c-.109-.063-.064-.23.061-.23"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23.986c1.864 0 3.398-1.508 3.398-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm0-11.82a1.86 1.86 0 0 0 1.587-.9c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm1.772-3.293c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185m-3.292 0c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185m5.896-1.89q0 .872-.317 1.626c-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.572 3.399 17.46.014 11.988.014 6.515.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.5 4.5 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35zM7.85 19.238c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785M4.147 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.73 2.73 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251m12.005 4.509c1.141 2.949 5.53 2.05 5.42-1.11-.052-1.402-.978-2.354-2.46-2.685-1.268-.41-2.273-.462-3.61-1.15-.316-.225-.606-.04-.58.33.08 2.261 1.124 4.377 1.23 4.615m3.701-4.509c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.507.291 2.063.952a2.73 2.73 0 0 1-.344 3.861 2.74 2.74 0 0 1-3.16.251zm-9.372-5.857c-.068-.2.03-.42.224-.502a.6.6 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm3.291 0c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185m-1.771 3.292a1.86 1.86 0 0 0 1.586-.899c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm0 11.821c1.863 0 3.397-1.508 3.397-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm7.852-9.256c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.48.3 2.063.952.661 1.593.68 1.594-.33 3.85l-.014.011a2.74 2.74 0 0 1-3.16.251zm-3.7 4.509c1.14 2.949 5.53 2.05 5.42-1.11-.053-1.402-.98-2.354-2.46-2.685-1.269-.41-2.274-.462-3.61-1.15-.317-.225-.607-.04-.58.33.08 2.261 1.123 4.377 1.23 4.615M4.146 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.73 2.73 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251m3.702 4.509c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785m8.527-12.257q0 .873-.317 1.627c-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.57 3.399 17.46.014 11.988.014S2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.5 4.5 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.918 17.48c-.126 2.727-2.384 4.696-5.364 4.696H7.34v-6.123l-2.185-.957V24h8.381c4.334 0 7.549-2.962 7.549-6.881v-.163c-.65.235-1.372.415-2.167.524m1.355-9.501C18.611 4.313 17.726.989 15.432.213c-1.336-.452-2.005-.091-2.637.217a.306.306 0 0 0-.072.505c.361.307.813.687 1.336 1.174-1.95-1.138-7.333-2.835-7.874-.776-.488 1.86-1.319 4.587-1.319 4.587S.603 5.487.116 7.293s3.323 5.274 9.627 7.134c6.303 1.861 11.198 1.373 13.311-.921s.072-5.473-2.781-5.527m-1.247.036c-.487.47-2.077 1.68-5.563 1.427-3.738-.271-6.809-2.474-7.604-3.088a.34.34 0 0 1-.126-.398c.054-.18.126-.469.253-.849.072-.234.343-.343.542-.216 1.571.903 4.1 2.221 6.791 2.402 2.402.163 3.847-.542 4.786-1.066a.39.39 0 0 1 .542.199l.47 1.156c.036.162.018.325-.091.433"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.283 9.033c-.042-.354.425-.74.87-1.057.636-.453 1.682-.82 2.892-.962 1.093-.127 2.099-.045 2.816.189.632.206 1.263.503 1.31.906.046.4-.496.836-1.06 1.182-.644.394-1.606.708-2.703.837-1.206.14-2.306.025-3.03-.267-.509-.206-1.053-.473-1.095-.828m16.77-1.542c.365-.022.742.614 1.05 1.216.438.861.772 2.244.87 3.818.087 1.422-.038 2.715-.307 3.62-.236.798-.566 1.586-.981 1.61-.413.026-.837-.712-1.169-1.47-.379-.867-.662-2.137-.75-3.563-.096-1.57.066-2.98.395-3.89.23-.639.527-1.319.893-1.341zm-8.16 6.443c-.022-.336.362-.674.726-.948.522-.391 1.367-.677 2.335-.74.874-.055 1.674.082 2.238.345.496.233.989.552 1.014.935.024.382-.422.762-.882 1.055-.525.336-1.302.576-2.179.632-.966.063-1.839-.111-2.406-.43-.399-.225-.824-.51-.846-.849M18.16 6.41c.288.177.343.685.357 1.14.02.65-.233 1.503-.74 2.327-.457.745-1.028 1.317-1.568 1.624-.476.271-1.02.488-1.347.287-.327-.2-.38-.782-.355-1.326.028-.622.279-1.392.737-2.14.505-.822 1.149-1.434 1.736-1.71.413-.196.89-.379 1.18-.202M.382 6.211c.294-.168.771.04 1.183.257.588.31 1.228.967 1.722 1.834.447.784.685 1.582.704 2.219.015.56-.048 1.155-.382 1.345-.333.19-.876-.056-1.349-.353-.54-.34-1.107-.952-1.555-1.738C.211 8.91-.028 8.027.003 7.363c.021-.467.085-.984.38-1.152zm11.85 4.283c.32.188.341.828.32 1.406-.032.827-.398 1.948-1.054 3.066-.593 1.01-1.305 1.814-1.958 2.277-.575.407-1.225.756-1.589.542-.362-.212-.375-.948-.301-1.645.084-.797.44-1.813 1.036-2.826.655-1.115 1.453-1.979 2.159-2.41.496-.303 1.066-.598 1.387-.41"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998.02c-.864 0-1.682.11-2.144.193v.002A11.93 11.93 0 0 0 0 12.002c0 1.126.157 2.233.465 3.303.038.145.091.299.137.447 1.607 4.865 6.224 8.226 11.392 8.228.065 0 .252 0 .502-.011a2.22 2.22 0 0 0 1.951-1.37l.474-1.154 5.505-13.402H18.62l-2.316 5.871-2.334-5.871h-1.909l3.274 8.012-2.436 5.91a.54.54 0 0 1-.472.336c-.144.005-.285.01-.432.01-4.585 0-8.667-3.07-9.928-7.465a10.3 10.3 0 0 1-.398-2.844 10.27 10.27 0 0 1 8.603-10.164c.222-.037.889-.145 1.725-.145 4.417 0 8.269 2.732 9.73 6.848.056.144.098.293.147.44.299.974.453 1.988.453 3.021 0 4.57-2.941 8.533-7.316 9.861l.486 1.6c5.085-1.546 8.5-6.152 8.502-11.46 0-1.548-.298-2.87-.65-3.892l-.131-.363h-.002C21.457 3.095 17.044.02 11.998.02M8.434 7.89c-1.2 0-2.175.386-2.98 1.176-.802.786-1.206 1.774-1.206 2.936 0 1.154.407 2.137 1.205 2.92.806.79 1.78 1.174 2.98 1.174 1.706 0 3.156-.955 3.788-2.489l.033-.082-1.629-.554c-.168.456-.755 1.488-2.191 1.488-.675 0-1.244-.234-1.694-.7-.457-.47-.687-1.062-.687-1.757 0-.7.225-1.28.687-1.773.452-.465 1.02-.702 1.694-.702 1.438 0 2.023 1.082 2.193 1.489l1.627-.553-.033-.084c-.63-1.536-2.082-2.488-3.787-2.488"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0v24H0V0zm-4.842 7.26a1.86 1.86 0 0 0-1.841 1.61l-2.71.683a1.86 1.86 0 0 0-1.55-.834 1.858 1.858 0 1 0 .738 3.563l1.792 1.83-.049.093-2.345-.316a1.86 1.86 0 1 0-1.826 2.2 1.86 1.86 0 0 0 1.636-.977l2.346.316q.032.211.107.412l-.984.867a1.1 1.1 0 0 0-.318-.046 1.134 1.134 0 1 0 1.124.987l.945-.832a2.05 2.05 0 0 0 1.402.342l.835 1.665a1.85 1.85 0 0 0-.501 1.27 1.858 1.858 0 1 0 1.597-1.84l-.803-1.605a2.05 2.05 0 0 0 .683-1.53 2.06 2.06 0 0 0-.936-1.725l.735-2.419a1.858 1.858 0 0 0-.077-3.714m-1.582 2.832c.125.202.287.378.477.519l-.745 2.452a2.05 2.05 0 0 0-.819.201l-1.787-1.824a1.9 1.9 0 0 0 .203-.674z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.635 3.883a1.364 1.25 0 0 0-1.363 1.25 1.364 1.25 0 0 0 1.363 1.25A1.364 1.25 0 0 0 24 5.133a1.364 1.25 0 0 0-1.365-1.25m-16.004.418-6.027.008c-.026 0-.051-.003-.076 0-.296.036-.527.273-.528.558l.018 14.574c0 .22.06.676.682.676l5.58-.021c1.595-.003 2.664-.031 3.3-.112h.016a11.4 11.4 0 0 0 1.955-.469c1.22-.38 2.3-.944 3.23-1.697a7.85 7.85 0 0 0 2.114-2.562 6.7 6.7 0 0 0 .646-1.987 4.244 3.89 0 0 0 .26.028 4.244 3.89 0 0 0 4.244-3.89 4.244 3.89 0 0 0-4.244-3.89 4.244 3.89 0 0 0-2.9 1.082 8.8 8.8 0 0 0-2.25-1.355c-1.536-.65-3.536-.948-6.02-.943m-.262 3.004c1.215-.003 2.079.034 2.569.101a7.3 7.3 0 0 1 1.617.436c.57.218 1.068.483 1.496.814 1.177.915 1.732 1.999 1.734 3.432.003 1.468-.534 2.611-1.68 3.57a5.6 5.6 0 0 1-1.177.742c-.409.19-.942.355-1.615.496-.636.128-1.6.2-2.856.202l-2.673.004-.012-9.793 2.598-.004z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.312 12C13.312 5.718 8.22.625 1.937.625H0v5h1.938a6.375 6.375 0 1 1 0 12.75H0v5h1.938c6.281 0 11.374-5.093 11.374-11.375M24 7.563A6.94 6.94 0 0 0 17.062.625h-8a13.4 13.4 0 0 1 4.686 5h3.314a1.94 1.94 0 0 1 0 3.876h-1.938a13.4 13.4 0 0 1 0 5h1.938a1.94 1.94 0 0 1 0 3.876h-3.314a13.4 13.4 0 0 1-4.686 5h8a6.939 6.939 0 0 0 5.333-11.375A6.95 6.95 0 0 0 24 7.563"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.646v2.23h8.252v2.248H0v2.23h9.112a.62.62 0 0 0 .489-.201L12 12.819l2.399 2.334a.62.62 0 0 0 .49.201H24v-2.23h-8.252v-2.248H24v-2.23h-9.112a.62.62 0 0 0-.489.201L12 11.181 9.601 8.847a.62.62 0 0 0-.49-.201Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.649 12.782h-2.643V8.723H24v1.183h-4.351v.723h4.277v1.147h-4.277zm-7.51-3.039-1.831 3.05H7.76l2.414-4.07h3.924l2.424 4.07h-5.364l.64-1.06h1.534zM.004 12.785V8.741h4.99c1.62 0 2.773.738 2.773 1.994 0 1.196-.914 2.05-2.82 2.05zm4.008-1.034c.621 0 .985-.53.985-.935 0-.413-.325-.896-.967-.896H2.671v1.831zM0 13.731h23.926v1.546H0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.29 5.706a1.405 1.405 0 0 0-1.987 0L4.716 17.296l1.324-2.65-2.65-2.649 3.312-3.311 2.65 2.65 1.986-1.988-3.642-3.642a1.405 1.405 0 0 0-1.987 0L.411 11.004a1.404 1.404 0 0 0 0 1.987l4.305 4.304.993.993a1.405 1.405 0 0 0 1.987 0L19.285 6.7l-.993-.994Zm-.332 3.647 2.65 2.65-4.306 4.305a1.404 1.404 0 1 0 1.986 1.986l5.299-5.298a1.404 1.404 0 0 0 0-1.987l-4.305-4.304z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.823 7.327a11.9 11.9 0 0 0-2.606-3.814 12.1 12.1 0 0 0-3.866-2.57A12.25 12.25 0 0 0 10.617 0H1.831a.6.6 0 0 0-.609.603v3.764c0 .162.064.312.179.426l4.164 4.123a.61.61 0 0 0 .439.177h4.56c.806 0 1.56.313 2.125.88.557.559.856 1.296.843 2.075-.029 1.571-1.343 2.849-2.931 2.849h-6.74a.61.61 0 0 0-.432.176.62.62 0 0 0-.178.427v3.764c0 .162.063.312.178.427l4.139 4.099a.65.65 0 0 0 .476.21h2.572a12.3 12.3 0 0 0 4.733-.945 12.15 12.15 0 0 0 3.866-2.571 12 12 0 0 0 2.607-3.813c.633-1.479.956-3.051.956-4.67s-.321-3.19-.956-4.669zM2.441 4.118V1.982l2.945 2.755.001 2.297zm4.975 17.813-2.945-2.917v-2.137l2.945 2.755zm-2.004-5.832h5.19c2.248 0 4.107-1.807 4.147-4.03a4.03 4.03 0 0 0-1.192-2.937 4.2 4.2 0 0 0-2.996-1.239H6.606V5.216h3.996c1.831 0 3.553.706 4.849 1.986a6.724 6.724 0 0 1-.152 9.736 6.88 6.88 0 0 1-4.697 1.84H8.275L5.412 16.1zm15.289.1a10.8 10.8 0 0 1-2.345 3.431 10.9 10.9 0 0 1-3.48 2.314 11 11 0 0 1-4.26.847H8.633v-2.814h1.916c2.145 0 4.161-.802 5.675-2.254a7.88 7.88 0 0 0 2.451-5.728c0-2.177-.87-4.21-2.451-5.728-1.514-1.454-3.528-2.254-5.675-2.254h-4.16L3.383 1.202h7.234c1.479 0 2.911.285 4.259.847a11 11 0 0 1 3.48 2.313 10.8 10.8 0 0 1 2.345 3.432c.571 1.33.86 2.743.86 4.202s-.289 2.873-.86 4.203"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-1.56 0-3.137.721-4.095 2.122a5 5 0 0 0-.857-.081c-1.353-.006-2.62.565-3.53 1.476C2.415 4.62 1.81 6.241 2.121 7.905.722 8.863 0 10.44 0 12s.721 3.137 2.122 4.095c-.31 1.664.294 3.286 1.395 4.388 1.102 1.101 2.724 1.706 4.388 1.395C8.863 23.278 10.44 24 12 24s3.137-.721 4.095-2.122c1.664.31 3.286-.294 4.388-1.395 1.101-1.102 1.706-2.724 1.395-4.388C23.278 15.137 24 13.56 24 12s-.721-3.137-2.122-4.095c.31-1.664-.294-3.286-1.395-4.388-1.102-1.101-2.724-1.706-4.388-1.395C15.137.722 13.56 0 12 0m0 .962c1.18 0 2.345.471 3.123 1.447a5 5 0 0 0-.64.315 4.97 4.97 0 0 1-4.965 0 5 5 0 0 0-.64-.315C9.654 1.433 10.82.962 12 .962M7.026 2.99q.196 0 .397.023a5 5 0 0 0-.229.67 4.97 4.97 0 0 1-3.511 3.511 5 5 0 0 0-.67.229c-.138-1.238.352-2.393 1.185-3.225.743-.743 1.742-1.214 2.828-1.208m10.011 0c1.062.013 2.037.479 2.765 1.208.833.832 1.323 1.987 1.185 3.225a5 5 0 0 0-.67-.229 4.97 4.97 0 0 1-3.511-3.511 5 5 0 0 0-.229-.67 4 4 0 0 1 .46-.023m-8.667.252q.333.124.668.315a5.94 5.94 0 0 0 5.924 0q.335-.191.668-.315a4.5 4.5 0 0 1 .247.69 5.94 5.94 0 0 0 4.19 4.191q.37.101.691.247a4.5 4.5 0 0 1-.315.668 5.94 5.94 0 0 0 0 5.924q.191.335.315.668a4.5 4.5 0 0 1-.69.247 5.94 5.94 0 0 0-4.191 4.19q-.101.37-.247.691a4.5 4.5 0 0 1-.668-.315 5.94 5.94 0 0 0-5.924 0 4.5 4.5 0 0 1-.668.315 4.5 4.5 0 0 1-.247-.69 5.94 5.94 0 0 0-4.19-4.191 4.5 4.5 0 0 1-.691-.247q.124-.333.315-.668a5.94 5.94 0 0 0 0-5.924 4.5 4.5 0 0 1-.315-.668q.322-.146.69-.247a5.94 5.94 0 0 0 4.191-4.19q.101-.37.247-.691M2.41 8.877q.13.323.314.64a4.97 4.97 0 0 1 0 4.965 5 5 0 0 0-.315.64C1.433 14.346.962 13.18.962 12s.471-2.345 1.447-3.123m19.18 0c.977.778 1.448 1.943 1.448 3.123s-.471 2.345-1.447 3.123a5 5 0 0 0-.315-.64 4.97 4.97 0 0 1 0-4.965q.183-.319.315-.64m-14.907 1.57a.417.417 0 0 0-.296.714l.117.117c-.13.228-.203.492-.203.774 0 .87.7 1.569 1.569 1.569s1.568-.7 1.568-1.569-.7-1.568-1.568-1.568c-.282 0-.546.073-.775.203l-.116-.117a.42.42 0 0 0-.296-.123m10.748 0a.42.42 0 0 0-.295.123l-.12.12a1.57 1.57 0 0 0-.781-.206c-.869 0-1.569.7-1.569 1.568 0 .87.7 1.569 1.569 1.569a1.566 1.566 0 0 0 1.369-2.336l.123-.123a.417.417 0 0 0-.296-.715m-9.904.237a.627.627 0 0 1 .627.627.627.627 0 0 1-.627.627.627.627 0 0 1-.628-.627.627.627 0 0 1 .628-.627m8.365 0a.627.627 0 0 1 .628.627.627.627 0 0 1-.628.627.627.627 0 0 1-.627-.627.627.627 0 0 1 .627-.627m-7.187 1.17a.314.314 0 0 1 .313.314.314.314 0 0 1-.313.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m8.365 0a.314.314 0 0 1 .314.314.314.314 0 0 1-.314.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m-8.757.758a.21.21 0 0 1 .21.209.21.21 0 0 1-.21.209.21.21 0 0 1-.21-.21.21.21 0 0 1 .21-.208m8.366 0a.21.21 0 0 1 .209.209.21.21 0 0 1-.21.209.21.21 0 0 1-.209-.21.21.21 0 0 1 .21-.208m-5.551.48a.32.32 0 0 0-.232.082.32.32 0 0 0-.023.453c.296.328.737.524 1.18.524.441 0 .882-.196 1.178-.524a.32.32 0 0 0-.023-.453.32.32 0 0 0-.453.023c-.145.16-.486.312-.703.312s-.558-.152-.703-.312a.32.32 0 0 0-.221-.106m-8.115 3.485q.319.134.67.229a4.97 4.97 0 0 1 3.511 3.511q.095.351.229.67c-1.238.138-2.393-.352-3.225-1.185-.833-.832-1.323-1.987-1.185-3.225m17.974 0c.138 1.238-.352 2.393-1.185 3.225-.832.833-1.987 1.323-3.225 1.185a5 5 0 0 0 .229-.67 4.97 4.97 0 0 1 3.511-3.511 5 5 0 0 0 .67-.229M12 20.612c.857 0 1.714.222 2.482.664q.318.183.64.315c-.777.976-1.942 1.447-3.122 1.447s-2.345-.471-3.123-1.447q.323-.132.64-.315A5 5 0 0 1 12 20.612"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.618 7.658h10.509a.246.246 0 0 1 .246.246v.656a.246.246 0 0 1-.246.246H7.617a.246.246 0 0 1-.246-.246v-.656a.246.246 0 0 1 .246-.246M9.65 3.182h6.533a.13.13 0 0 1 .133.132v4.52a.13.13 0 0 1-.133.133H9.65a.13.13 0 0 1-.132-.133v-4.52a.13.13 0 0 1 .132-.132m5.832 16.9-1.05.736-1.05-.736.154-4.207h1.791zm-9.606-4.244h-1.78v-.559a1.8 1.8 0 0 1-.515.467Q3.124 16 2.545 16a2.46 2.46 0 0 1-1.671-.646Q0 14.584 0 13.315q0-1.291.895-2.062a2.43 2.43 0 0 1 1.633-.613q.537 0 1.01.228.27.13.558.429V7.688h1.78ZM4.15 13.32a1.1 1.1 0 0 0-.336-.81A1.11 1.11 0 0 0 3 12.174q-.531 0-.873.402a1.12 1.12 0 0 0-.277.743q0 .418.277.744.336.4.873.401.483 0 .817-.33.333-.332.334-.815m8.4 2.518h-1.78v-.559a1.8 1.8 0 0 1-.515.467Q9.8 16 9.22 16a2.46 2.46 0 0 1-1.671-.646q-.874-.77-.874-2.04 0-1.291.896-2.062a2.43 2.43 0 0 1 1.633-.613q.537 0 1.009.228.27.13.559.428v-.493h1.78zm-1.725-2.518a1.1 1.1 0 0 0-.336-.81 1.11 1.11 0 0 0-.814-.335q-.532 0-.874.402a1.12 1.12 0 0 0-.277.743q0 .418.277.744.336.4.874.401.483 0 .816-.33.334-.332.334-.815m8.6.006q0 1.29-.895 2.062a2.43 2.43 0 0 1-1.633.613q-.537 0-1.01-.228a2 2 0 0 1-.558-.429v3.012h-1.78v-7.553h1.78v.559q.24-.315.516-.467.455-.255 1.036-.255.94 0 1.67.646.874.77.874 2.04m-1.85-.006q0-.428-.271-.743a1.1 1.1 0 0 0-.879-.402q-.483 0-.817.331t-.333.814q0 .479.336.812t.814.333q.538 0 .873-.401.277-.325.277-.744M24 12.447a1.75 1.75 0 0 0-.76-.18q-.879 0-1.139.717-.098.26-.098.7v2.154h-1.78v-5.035h1.78v.824q.282-.44.608-.634.44-.26 1.042-.26a5 5 0 0 1 .347.015z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.281 8.572c-.18-1.671-.926-3.132-2.105-4.173A6.32 6.32 0 0 0 12 2.824c-1.538 0-3.026.56-4.176 1.575C6.646 5.44 5.9 6.901 5.72 8.572a5 5 0 0 1 .987-.101 4.59 4.59 0 0 1 4.24 2.827l2.107-.002a4.57 4.57 0 0 1 4.241-2.825 5 5 0 0 1 .987.101zM3.624 16.494l-2.212 6.094H0l2.662-7.324a4.6 4.6 0 0 1-.401-1.046 4.8 4.8 0 0 1-.143-1.16 4.7 4.7 0 0 1 .574-2.283 4.43 4.43 0 0 1 1.576-1.642c.08-2.207.943-4.178 2.43-5.593A7.7 7.7 0 0 1 12 1.412c1.973 0 3.876.768 5.305 2.13 1.486 1.417 2.348 3.388 2.427 5.596a4.4 4.4 0 0 1 1.576 1.64c.383.693.576 1.478.574 2.28 0 .39-.047.78-.142 1.159a4.6 4.6 0 0 1-.402 1.045L24 22.588h-1.412l-2.212-6.097c-.41.367-.879.649-1.383.843a4.7 4.7 0 0 1-1.699.313 4.64 4.64 0 0 1-3.132-1.227c-.827-.765-1.344-1.814-1.443-3.008H11.28c-.103 1.192-.62 2.241-1.447 3.005a4.64 4.64 0 0 1-3.128 1.23 4.6 4.6 0 0 1-1.698-.31 4.5 4.5 0 0 1-1.384-.843zm11.2-3.445a2.46 2.46 0 0 0 2.489 2.48 2.47 2.47 0 0 0-.019-4.94 2.464 2.464 0 0 0-2.47 2.46m-10.589.01a2.463 2.463 0 0 0 2.47 2.47 2.47 2.47 0 0 0 2.472-2.47 2.47 2.47 0 0 0-2.471-2.47 2.463 2.463 0 0 0-2.47 2.47zm5.647 6c.033-.423.327-.703.706-.706a.68.68 0 0 1 .706.706v2.823a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm2.824 0c.033-.423.326-.703.706-.706a.68.68 0 0 1 .706.706v2.823a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm2.823 1.412c.033-.423.327-.703.706-.706a.68.68 0 0 1 .706.706v1.411a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm-8.47 0c.033-.423.326-.703.706-.706a.68.68 0 0 1 .706.706v1.411a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.105 4.105S9.158 1.58 11.684.316a3.1 3.1 0 0 1 1.481-.315c.766.047 1.677.788 1.677.788L24 9.948v9.789h-4.263V24H9.789l-9-9C.303 14.5 0 13.795 0 13.105c0-.319.18-.818.316-1.105zm.679.679v11.787c.002.543.021 1.024.498 1.508L10.204 23h8.533v-4.263zm12.055-.678c-.899-.896-1.809-1.78-2.74-2.643-.302-.267-.567-.468-1.07-.462-.37.014-.87.195-.87.195L6.341 4.105z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.83 1.503A10.56 10.56 0 0 1 22.62 12.06c.06 5.76-4.68 10.5-10.56 10.5A10.56 10.56 0 0 1 1.5 12.06a10.56 10.56 0 0 1 9.77-10.53 11 11 0 0 1 .56-.027M2.4 9.24s.18 1.2.18 2.82c0 1.56-.18 2.76-.18 2.76h2.04c.66 0 1.86-.48 1.86-2.76-.06-2.34-1.2-2.82-1.86-2.82zm4.68 0s-.12 1.44-.42 2.82c-.3 1.32-.72 2.76-.72 2.76h1.8s-.06-.24 0-.72.18-.72.18-.72h.84s.12.3.18.72c.06.48 0 .72 0 .72h3.42s-.12-.36-.18-.96 0-.96 0-.96.24.36.48.96c.18.6.18.96.18.96h1.98s-.3-.66-.72-1.38-.66-1.08-.66-1.08.96-.3.96-1.56v-.3c.12-.06.42-.12.9-.12 0 0 .06 1.02 0 1.98s-.18 2.52-.18 2.52h1.8s-.12-1.56-.18-2.52 0-1.98 0-1.98.48 0 .96.18V9.42c.18.36.72 1.5.96 2.64.3 1.44.12 2.76.12 2.76h1.8s-.18-1.38.12-2.76 1.08-2.82 1.08-2.82h-1.62l-.42 1.62-.42-1.62h-4.98v.96a1.35 1.35 0 0 0-1.2-.96h-2.52s.18 1.02.18 2.82c0 1.08-.06 1.92-.12 2.34-.18-.54-.42-1.44-.6-2.34-.3-1.32-.42-2.82-.42-2.82zm5.16.96s.6 0 .6.72c.06.72-.6.72-.6.72zm-8.187.115c.15-.009.747.058.747 1.685 0 1.92-.78 1.68-.78 1.68v-3.36s.012-.003.033-.005m4.346.065.36 1.86h-.718z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.646.005C5.158.2-.001 5.57 0 12.127.135 18.724 5.468 24 12 24s11.865-5.276 12-11.873C24.001 5.291 18.41-.195 11.645.005zm5.138 4.93V16.96L8.78 19.92v-9.08l-3.9 1.386V9.263z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.21 9.967c-2.288 0-2.615 1.49-2.83 2.393A41 41 0 0 0 0 14.02h8.947c2.29 0 2.617-1.492 2.832-2.394.285-1.178.379-1.66.379-1.66zM15.72 2.26H6.982L6.26 6.307l7.884.01c3.885 0 5.03 1.41 4.997 3.748-.019 1.196-.537 3.225-.762 3.884-.598 1.753-1.827 3.749-6.435 3.744l-7.666-.004-.725 4.052h8.718c3.075 0 4.38-.36 5.767-.995 3.071-1.426 4.9-4.455 5.633-8.41C24.76 6.448 23.403 2.26 15.72 2.26"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.421c4.883 0 8.842 3.393 8.842 7.579S4.883 19.579 0 19.579zm16.421 0C20.608 4.421 24 7.814 24 12s-3.392 7.579-7.579 7.579S8.842 16.186 8.842 12s3.393-7.579 7.579-7.579"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.89 7.719c0-.149-.149-.298-.357-.357L18.03 6.44c-.416-.179-.893.03-.893.327V17.25c0 .149.15.327.298.387l2.561.922c.388.149.894-.06.894-.387zm-4.676-3.663c0-.15-.149-.298-.358-.358l-2.501-.922c-.417-.178-.894.03-.894.328v6.372c0 .15.149.328.298.388l2.561.922c.388.149.894-.06.894-.387zm0 11.466c0-.149-.149-.297-.358-.357l-2.501-.922c-.417-.179-.894.03-.894.328v6.372c0 .149.149.327.298.387l2.561.922c.388.15.894-.06.894-.387zm-4.676 1.281c0-.149-.149-.298-.358-.357l-2.501-.923c-.42-.178-.894.03-.894.328v6.79c0 .15.149.328.298.388l2.561.922c.387.15.894-.06.894-.387zm0-15.458c0-.149-.149-.297-.358-.357L8.68.066c-.42-.179-.894.03-.894.328v6.79c0 .15.149.328.298.387l2.561.922c.388.15.894-.06.894-.387zm-4.675.269c0-.15-.15-.298-.358-.358L4.004.334c-.417-.179-.894.03-.894.328v21.74c0 .15.149.328.298.387l2.561.923c.387.148.894-.06.894-.388z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.246 9.754 5.848-3.374a.2.2 0 0 0 .1-.175l.002-2.553c0-.324-.133-.645-.392-.841a1 1 0 0 0-1.118-.074l-2.425 1.4-6.436 3.712a1.01 1.01 0 0 0-.504.872l-.003 8.721v2.825c0 .324.132.645.39.842.335.253.766.278 1.12.074l2.363-1.364a.2.2 0 0 0 .101-.175l.003-8.244a1.9 1.9 0 0 1 .951-1.646m10.316-4.336a1 1 0 0 0-.504-.137 1 1 0 0 0-.503.137l-8.86 5.112a1.01 1.01 0 0 0-.505.87l-.003 11.591c0 .364.188.69.503.872a1 1 0 0 0 1.007 0l8.86-5.112a1.01 1.01 0 0 0 .504-.872l.004-11.59a1 1 0 0 0-.503-.871M6.378 7.074l6.334-3.655a.2.2 0 0 0 .1-.175l.001-2.193c0-.324-.133-.646-.392-.84a1 1 0 0 0-1.118-.075L2.443 5.25a1.01 1.01 0 0 0-.504.872l-.003 11.546c0 .324.133.645.39.842a1 1 0 0 0 1.12.074l1.877-1.082a.2.2 0 0 0 .1-.175l.003-8.605c0-.68.363-1.307.952-1.647z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.185 8.025c1.064.192 1.933.34 2.132.79.223.51-.936.541-1.52.552-2.8.054-4.487.11-4.572 1.061-.11 1.224 1.196 2.458 2.486 4.186 1.178 1.577 2.518 3.135 2.133 4.586-.482 1.809-2.7 2.192-4.81 2.192-2.022 0-3.939-.323-4.744-.482-1.002-.2-.852-.694-.585-.853.298-.178 2.002-.182 3.187-.252.975-.058 3.805-.056 4.246-.781.54-.89-.783-2.408-2-4-1.519-1.984-3.186-4.034-2.303-5.533 1.14-1.936 4.484-1.803 6.35-1.466m-13.69 2.95c1.772-.104 3.926.206 5.134 1.13a2.17 2.17 0 0 1 .78 2.278c-.698 2.752-3.304 6.083-9.093 8.643-1.841.813-3.29 1.125-3.593.906-.326-.234.624-2.052.909-2.654.925-1.952 2.079-3.853 3.205-5.595.414-.64 1.055-1.752 1.634-1.662.519.08-.09 1.26-.488 2.01-.672 1.26-2.523 4.76-1.912 4.97 1.35.462 7.68-4.354 6.746-7.036-.432-1.245-3.18-1.363-4.912-1.363-.787 0-2.508.186-2.603-.417-.102-.556 2.613-1.116 4.192-1.21M11.867.013c2.068-.098 4.514.342 4.97 1.802.747 2.39-3.04 5.877-6.338 7.587-.809.42-1.3.536-1.504.507-.195-.027-.225-.22-.162-.355.118-.252.65-.764 1.361-1.322 3.715-2.9 4.923-5.028 4.221-5.89-.45-.552-2.332-.937-4.287-.937-.53 0-1.925.123-2.068-.367C7.942.634 9.814.108 11.866.012"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.95 14.184 12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.946 18.151v-5.239L21.209 8.2 19.2 7.048l-6.254 3.567V5.36c0-.356-.192-.689-.5-.866L4.922.177a1.43 1.43 0 0 0-1.455.044 1.44 1.44 0 0 0-.676 1.224v14.777A1.44 1.44 0 0 0 4.92 17.49l6.032-3.44v4.683a1 1 0 0 0 .504.867l7.73 4.4 2.01-1.152zM10.953 5.938v5.814L4.785 15.27V2.4l6.168 3.539z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.57 17.04-1.997-1.316-1.665 2.782-1.937-.567-1.706 2.604.087.82 9.274-1.71-.538-5.794zm-8.649-2.498 1.488-.204c.241.108.409.15.697.223.45.117.97.23 1.741-.16.18-.088.553-.43.704-.625l6.096-1.106.622 7.527-10.444 1.882zm11.325-2.712-.602.115L20.488 0 .789 2.285l2.427 19.693 2.306-.334c-.184-.263-.471-.581-.96-.989-.68-.564-.44-1.522-.039-2.127.53-1.022 3.26-2.322 3.106-3.956-.056-.594-.15-1.368-.702-1.898-.02.22.017.432.017.432s-.227-.289-.34-.683c-.112-.15-.2-.199-.319-.4-.085.233-.073.503-.073.503s-.186-.437-.216-.807c-.11.166-.137.48-.137.48s-.241-.69-.186-1.062c-.11-.323-.436-.965-.343-2.424.6.421 1.924.321 2.44-.439.171-.251.288-.939-.086-2.293-.24-.868-.835-2.16-1.066-2.651l-.028.02c.122.395.374 1.223.47 1.625.293 1.218.372 1.642.234 2.204-.116.488-.397.808-1.107 1.165-.71.358-1.653-.514-1.713-.562-.69-.55-1.224-1.447-1.284-1.883-.062-.477.275-.763.445-1.153-.243.07-.514.192-.514.192s.323-.334.722-.624c.165-.109.262-.178.436-.323a10 10 0 0 0-.456.003s.42-.227.855-.392c-.318-.014-.623-.003-.623-.003s.937-.419 1.678-.727c.509-.208 1.006-.147 1.286.257.367.53.752.817 1.569.996.501-.223.653-.337 1.284-.509.554-.61.99-.688.99-.688s-.216.198-.274.51c.314-.249.66-.455.66-.455s-.134.164-.259.426l.03.043c.366-.22.797-.394.797-.394s-.123.156-.268.358c.277-.002.838.012 1.056.037 1.285.028 1.552-1.374 2.045-1.55.618-.22.894-.353 1.947.68.903.888 1.609 2.477 1.259 2.833-.294.295-.874-.115-1.516-.916a3.47 3.47 0 0 1-.716-1.562 1.53 1.53 0 0 0-.497-.85s.23.51.23.96c0 .246.03 1.165.424 1.68-.039.076-.057.374-.1.43-.458-.554-1.443-.95-1.604-1.067.544.445 1.793 1.468 2.273 2.449.453.927.186 1.777.416 1.997.065.063.976 1.197 1.15 1.767.306.994.019 2.038-.381 2.685l-1.117.174c-.163-.045-.273-.068-.42-.153.08-.143.241-.5.243-.572l-.063-.111c-.348.492-.93.97-1.414 1.245-.633.359-1.363.304-1.838.156-1.348-.415-2.623-1.327-2.93-1.566 0 0-.01.191.048.234.34.383 1.119 1.077 1.872 1.56l-1.605.177.759 5.908c-.337.048-.39.071-.757.124-.325-1.147-.946-1.895-1.624-2.332-.599-.384-1.424-.47-2.214-.314l-.05.059a2.85 2.85 0 0 1 1.863.444c.654.413 1.181 1.481 1.375 2.124.248.822.42 1.7-.248 2.632-.476.662-1.864 1.028-2.986.237.3.481.705.876 1.25.95.809.11 1.577-.03 2.106-.574.452-.464.69-1.434.628-2.456l.714-.104.258 1.834 11.827-1.424zM15.05 6.848c-.034.075-.085.125-.007.37l.004.014.013.032.032.073c.14.287.295.558.552.696q.1-.017.207-.023c.242-.01.395.028.492.08.009-.048.01-.119.005-.222-.018-.364.072-.982-.626-1.308-.264-.122-.634-.084-.757.068a.3.3 0 0 1 .058.013c.186.066.06.13.027.207m1.958 3.392c-.092-.05-.52-.03-.821.005-.574.068-1.193.267-1.328.372-.247.191-.135.523.047.66.511.382.96.638 1.432.575.29-.038.546-.497.728-.914.124-.288.124-.598-.058-.698m-5.077-2.942c.162-.154-.805-.355-1.556.156-.554.378-.571 1.187-.041 1.646.053.046.096.078.137.104a4.8 4.8 0 0 1 1.396-.412c.113-.125.243-.345.21-.745-.044-.542-.455-.456-.146-.749"/></svg>