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,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["node_modules/fuzzaldrin-plus/lib/scorer.js", "node_modules/fuzzaldrin-plus/lib/pathScorer.js", "node_modules/fuzzaldrin-plus/lib/query.js", "node_modules/fuzzaldrin-plus/lib/filter.js", "node_modules/fuzzaldrin-plus/lib/matcher.js", "node_modules/fuzzaldrin-plus/lib/fuzzaldrin.js", "node_modules/tslib/tslib.es6.mjs", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/BehaviorSubject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/observable/innerFrom.ts", "node_modules/rxjs/src/internal/util/executeSchedule.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/operators/subscribeOn.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/observable/throwError.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/src/internal/observable/concat.ts", "node_modules/rxjs/src/internal/observable/defer.ts", "node_modules/rxjs/src/internal/observable/fromEvent.ts", "node_modules/rxjs/src/internal/observable/timer.ts", "node_modules/rxjs/src/internal/observable/merge.ts", "node_modules/rxjs/src/internal/observable/never.ts", "node_modules/rxjs/src/internal/util/argsOrArgArray.ts", "node_modules/rxjs/src/internal/operators/filter.ts", "node_modules/rxjs/src/internal/observable/zip.ts", "node_modules/rxjs/src/internal/operators/audit.ts", "node_modules/rxjs/src/internal/operators/auditTime.ts", "node_modules/rxjs/src/internal/operators/bufferCount.ts", "node_modules/rxjs/src/internal/operators/combineLatest.ts", "node_modules/rxjs/src/internal/operators/combineLatestWith.ts", "node_modules/rxjs/src/internal/operators/debounceTime.ts", "node_modules/rxjs/src/internal/operators/take.ts", "node_modules/rxjs/src/internal/operators/ignoreElements.ts", "node_modules/rxjs/src/internal/operators/mapTo.ts", "node_modules/rxjs/src/internal/operators/delayWhen.ts", "node_modules/rxjs/src/internal/operators/delay.ts", "node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts", "node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts", "node_modules/rxjs/src/internal/operators/finalize.ts", "node_modules/rxjs/src/internal/operators/share.ts", "node_modules/rxjs/src/internal/operators/shareReplay.ts", "node_modules/rxjs/src/internal/operators/startWith.ts", "node_modules/rxjs/src/internal/operators/switchMap.ts", "node_modules/rxjs/src/internal/operators/tap.ts", "node_modules/rxjs/src/internal/operators/withLatestFrom.ts", "node_modules/rxjs/src/internal/operators/zip.ts", "node_modules/rxjs/src/internal/operators/zipWith.ts", "src/templates/assets/javascripts/browser/element/_/index.ts", "src/templates/assets/javascripts/browser/element/focus/index.ts", "src/templates/assets/javascripts/utilities/h/index.ts", "src/templates/assets/javascripts/utilities/round/index.ts", "src/templates/assets/javascripts/browser/script/index.ts", "src/templates/assets/javascripts/browser/element/size/_/index.ts", "src/templates/assets/javascripts/browser/element/size/content/index.ts", "src/templates/assets/javascripts/browser/element/offset/content/index.ts", "src/templates/assets/javascripts/browser/element/visibility/index.ts", "src/templates/assets/javascripts/browser/toggle/index.ts", "src/templates/assets/javascripts/_/index.ts", "src/templates/assets/javascripts/browser/location/_/index.ts", "src/templates/assets/javascripts/browser/request/index.ts", "src/overrides/assets/javascripts/components/_/index.ts", "src/overrides/assets/javascripts/components/iconsearch/query/index.ts", "src/overrides/assets/javascripts/components/iconsearch/result/index.ts", "src/overrides/assets/javascripts/templates/iconsearch/index.tsx", "src/overrides/assets/javascripts/templates/sponsorship/index.tsx", "src/overrides/assets/javascripts/components/iconsearch/_/index.ts", "src/overrides/assets/javascripts/components/sponsorship/index.ts", "src/overrides/assets/javascripts/integrations/analytics/index.ts", "src/overrides/assets/javascripts/custom.ts"],
4
+ "sourcesContent": ["(function() {\n var AcronymResult, computeScore, emptyAcronymResult, isAcronymFullWord, isMatch, isSeparator, isWordEnd, isWordStart, miss_coeff, pos_bonus, scoreAcronyms, scoreCharacter, scoreConsecutives, scoreExact, scoreExactMatch, scorePattern, scorePosition, scoreSize, tau_size, wm;\n\n wm = 150;\n\n pos_bonus = 20;\n\n tau_size = 150;\n\n miss_coeff = 0.75;\n\n exports.score = function(string, query, options) {\n var allowErrors, preparedQuery, score, string_lw;\n preparedQuery = options.preparedQuery, allowErrors = options.allowErrors;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return 0;\n }\n string_lw = string.toLowerCase();\n score = computeScore(string, string_lw, preparedQuery);\n return Math.ceil(score);\n };\n\n exports.isMatch = isMatch = function(subject, query_lw, query_up) {\n var i, j, m, n, qj_lw, qj_up, si;\n m = subject.length;\n n = query_lw.length;\n if (!m || n > m) {\n return false;\n }\n i = -1;\n j = -1;\n while (++j < n) {\n qj_lw = query_lw.charCodeAt(j);\n qj_up = query_up.charCodeAt(j);\n while (++i < m) {\n si = subject.charCodeAt(i);\n if (si === qj_lw || si === qj_up) {\n break;\n }\n }\n if (i === m) {\n return false;\n }\n }\n return true;\n };\n\n exports.computeScore = computeScore = function(subject, subject_lw, preparedQuery) {\n var acro, acro_score, align, csc_diag, csc_row, csc_score, csc_should_rebuild, i, j, m, miss_budget, miss_left, n, pos, query, query_lw, record_miss, score, score_diag, score_row, score_up, si_lw, start, sz;\n query = preparedQuery.query;\n query_lw = preparedQuery.query_lw;\n m = subject.length;\n n = query.length;\n acro = scoreAcronyms(subject, subject_lw, query, query_lw);\n acro_score = acro.score;\n if (acro.count === n) {\n return scoreExact(n, m, acro_score, acro.pos);\n }\n pos = subject_lw.indexOf(query_lw);\n if (pos > -1) {\n return scoreExactMatch(subject, subject_lw, query, query_lw, pos, n, m);\n }\n score_row = new Array(n);\n csc_row = new Array(n);\n sz = scoreSize(n, m);\n miss_budget = Math.ceil(miss_coeff * n) + 5;\n miss_left = miss_budget;\n csc_should_rebuild = true;\n j = -1;\n while (++j < n) {\n score_row[j] = 0;\n csc_row[j] = 0;\n }\n i = -1;\n while (++i < m) {\n si_lw = subject_lw[i];\n if (!si_lw.charCodeAt(0) in preparedQuery.charCodes) {\n if (csc_should_rebuild) {\n j = -1;\n while (++j < n) {\n csc_row[j] = 0;\n }\n csc_should_rebuild = false;\n }\n continue;\n }\n score = 0;\n score_diag = 0;\n csc_diag = 0;\n record_miss = true;\n csc_should_rebuild = true;\n j = -1;\n while (++j < n) {\n score_up = score_row[j];\n if (score_up > score) {\n score = score_up;\n }\n csc_score = 0;\n if (query_lw[j] === si_lw) {\n start = isWordStart(i, subject, subject_lw);\n csc_score = csc_diag > 0 ? csc_diag : scoreConsecutives(subject, subject_lw, query, query_lw, i, j, start);\n align = score_diag + scoreCharacter(i, j, start, acro_score, csc_score);\n if (align > score) {\n score = align;\n miss_left = miss_budget;\n } else {\n if (record_miss && --miss_left <= 0) {\n return Math.max(score, score_row[n - 1]) * sz;\n }\n record_miss = false;\n }\n }\n score_diag = score_up;\n csc_diag = csc_row[j];\n csc_row[j] = csc_score;\n score_row[j] = score;\n }\n }\n score = score_row[n - 1];\n return score * sz;\n };\n\n exports.isWordStart = isWordStart = function(pos, subject, subject_lw) {\n var curr_s, prev_s;\n if (pos === 0) {\n return true;\n }\n curr_s = subject[pos];\n prev_s = subject[pos - 1];\n return isSeparator(prev_s) || (curr_s !== subject_lw[pos] && prev_s === subject_lw[pos - 1]);\n };\n\n exports.isWordEnd = isWordEnd = function(pos, subject, subject_lw, len) {\n var curr_s, next_s;\n if (pos === len - 1) {\n return true;\n }\n curr_s = subject[pos];\n next_s = subject[pos + 1];\n return isSeparator(next_s) || (curr_s === subject_lw[pos] && next_s !== subject_lw[pos + 1]);\n };\n\n isSeparator = function(c) {\n return c === ' ' || c === '.' || c === '-' || c === '_' || c === '/' || c === '\\\\';\n };\n\n scorePosition = function(pos) {\n var sc;\n if (pos < pos_bonus) {\n sc = pos_bonus - pos;\n return 100 + sc * sc;\n } else {\n return Math.max(100 + pos_bonus - pos, 0);\n }\n };\n\n exports.scoreSize = scoreSize = function(n, m) {\n return tau_size / (tau_size + Math.abs(m - n));\n };\n\n scoreExact = function(n, m, quality, pos) {\n return 2 * n * (wm * quality + scorePosition(pos)) * scoreSize(n, m);\n };\n\n exports.scorePattern = scorePattern = function(count, len, sameCase, start, end) {\n var bonus, sz;\n sz = count;\n bonus = 6;\n if (sameCase === count) {\n bonus += 2;\n }\n if (start) {\n bonus += 3;\n }\n if (end) {\n bonus += 1;\n }\n if (count === len) {\n if (start) {\n if (sameCase === len) {\n sz += 2;\n } else {\n sz += 1;\n }\n }\n if (end) {\n bonus += 1;\n }\n }\n return sameCase + sz * (sz + bonus);\n };\n\n exports.scoreCharacter = scoreCharacter = function(i, j, start, acro_score, csc_score) {\n var posBonus;\n posBonus = scorePosition(i);\n if (start) {\n return posBonus + wm * ((acro_score > csc_score ? acro_score : csc_score) + 10);\n }\n return posBonus + wm * csc_score;\n };\n\n exports.scoreConsecutives = scoreConsecutives = function(subject, subject_lw, query, query_lw, i, j, startOfWord) {\n var k, m, mi, n, nj, sameCase, sz;\n m = subject.length;\n n = query.length;\n mi = m - i;\n nj = n - j;\n k = mi < nj ? mi : nj;\n sameCase = 0;\n sz = 0;\n if (query[j] === subject[i]) {\n sameCase++;\n }\n while (++sz < k && query_lw[++j] === subject_lw[++i]) {\n if (query[j] === subject[i]) {\n sameCase++;\n }\n }\n if (sz < k) {\n i--;\n }\n if (sz === 1) {\n return 1 + 2 * sameCase;\n }\n return scorePattern(sz, n, sameCase, startOfWord, isWordEnd(i, subject, subject_lw, m));\n };\n\n exports.scoreExactMatch = scoreExactMatch = function(subject, subject_lw, query, query_lw, pos, n, m) {\n var end, i, pos2, sameCase, start;\n start = isWordStart(pos, subject, subject_lw);\n if (!start) {\n pos2 = subject_lw.indexOf(query_lw, pos + 1);\n if (pos2 > -1) {\n start = isWordStart(pos2, subject, subject_lw);\n if (start) {\n pos = pos2;\n }\n }\n }\n i = -1;\n sameCase = 0;\n while (++i < n) {\n if (query[pos + i] === subject[i]) {\n sameCase++;\n }\n }\n end = isWordEnd(pos + n - 1, subject, subject_lw, m);\n return scoreExact(n, m, scorePattern(n, n, sameCase, start, end), pos);\n };\n\n AcronymResult = (function() {\n function AcronymResult(score, pos, count) {\n this.score = score;\n this.pos = pos;\n this.count = count;\n }\n\n return AcronymResult;\n\n })();\n\n emptyAcronymResult = new AcronymResult(0, 0.1, 0);\n\n exports.scoreAcronyms = scoreAcronyms = function(subject, subject_lw, query, query_lw) {\n var count, fullWord, i, j, m, n, qj_lw, sameCase, score, sepCount, sumPos;\n m = subject.length;\n n = query.length;\n if (!(m > 1 && n > 1)) {\n return emptyAcronymResult;\n }\n count = 0;\n sepCount = 0;\n sumPos = 0;\n sameCase = 0;\n i = -1;\n j = -1;\n while (++j < n) {\n qj_lw = query_lw[j];\n if (isSeparator(qj_lw)) {\n i = subject_lw.indexOf(qj_lw, i + 1);\n if (i > -1) {\n sepCount++;\n continue;\n } else {\n break;\n }\n }\n while (++i < m) {\n if (qj_lw === subject_lw[i] && isWordStart(i, subject, subject_lw)) {\n if (query[j] === subject[i]) {\n sameCase++;\n }\n sumPos += i;\n count++;\n break;\n }\n }\n if (i === m) {\n break;\n }\n }\n if (count < 2) {\n return emptyAcronymResult;\n }\n fullWord = count === n ? isAcronymFullWord(subject, subject_lw, query, count) : false;\n score = scorePattern(count, n, sameCase, true, fullWord);\n return new AcronymResult(score, sumPos / count, count + sepCount);\n };\n\n isAcronymFullWord = function(subject, subject_lw, query, nbAcronymInQuery) {\n var count, i, m, n;\n m = subject.length;\n n = query.length;\n count = 0;\n if (m > 12 * n) {\n return false;\n }\n i = -1;\n while (++i < m) {\n if (isWordStart(i, subject, subject_lw) && ++count > nbAcronymInQuery) {\n return false;\n }\n }\n return true;\n };\n\n}).call(this);\n", "(function() {\n var computeScore, countDir, file_coeff, getExtension, getExtensionScore, isMatch, scorePath, scoreSize, tau_depth, _ref;\n\n _ref = require('./scorer'), isMatch = _ref.isMatch, computeScore = _ref.computeScore, scoreSize = _ref.scoreSize;\n\n tau_depth = 20;\n\n file_coeff = 2.5;\n\n exports.score = function(string, query, options) {\n var allowErrors, preparedQuery, score, string_lw;\n preparedQuery = options.preparedQuery, allowErrors = options.allowErrors;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return 0;\n }\n string_lw = string.toLowerCase();\n score = computeScore(string, string_lw, preparedQuery);\n score = scorePath(string, string_lw, score, options);\n return Math.ceil(score);\n };\n\n scorePath = function(subject, subject_lw, fullPathScore, options) {\n var alpha, basePathScore, basePos, depth, end, extAdjust, fileLength, pathSeparator, preparedQuery, useExtensionBonus;\n if (fullPathScore === 0) {\n return 0;\n }\n preparedQuery = options.preparedQuery, useExtensionBonus = options.useExtensionBonus, pathSeparator = options.pathSeparator;\n end = subject.length - 1;\n while (subject[end] === pathSeparator) {\n end--;\n }\n basePos = subject.lastIndexOf(pathSeparator, end);\n fileLength = end - basePos;\n extAdjust = 1.0;\n if (useExtensionBonus) {\n extAdjust += getExtensionScore(subject_lw, preparedQuery.ext, basePos, end, 2);\n fullPathScore *= extAdjust;\n }\n if (basePos === -1) {\n return fullPathScore;\n }\n depth = preparedQuery.depth;\n while (basePos > -1 && depth-- > 0) {\n basePos = subject.lastIndexOf(pathSeparator, basePos - 1);\n }\n basePathScore = basePos === -1 ? fullPathScore : extAdjust * computeScore(subject.slice(basePos + 1, end + 1), subject_lw.slice(basePos + 1, end + 1), preparedQuery);\n alpha = 0.5 * tau_depth / (tau_depth + countDir(subject, end + 1, pathSeparator));\n return alpha * basePathScore + (1 - alpha) * fullPathScore * scoreSize(0, file_coeff * fileLength);\n };\n\n exports.countDir = countDir = function(path, end, pathSeparator) {\n var count, i;\n if (end < 1) {\n return 0;\n }\n count = 0;\n i = -1;\n while (++i < end && path[i] === pathSeparator) {\n continue;\n }\n while (++i < end) {\n if (path[i] === pathSeparator) {\n count++;\n while (++i < end && path[i] === pathSeparator) {\n continue;\n }\n }\n }\n return count;\n };\n\n exports.getExtension = getExtension = function(str) {\n var pos;\n pos = str.lastIndexOf(\".\");\n if (pos < 0) {\n return \"\";\n } else {\n return str.substr(pos + 1);\n }\n };\n\n getExtensionScore = function(candidate, ext, startPos, endPos, maxDepth) {\n var m, matched, n, pos;\n if (!ext.length) {\n return 0;\n }\n pos = candidate.lastIndexOf(\".\", endPos);\n if (!(pos > startPos)) {\n return 0;\n }\n n = ext.length;\n m = endPos - pos;\n if (m < n) {\n n = m;\n m = ext.length;\n }\n pos++;\n matched = -1;\n while (++matched < n) {\n if (candidate[pos + matched] !== ext[matched]) {\n break;\n }\n }\n if (matched === 0 && maxDepth > 0) {\n return 0.9 * getExtensionScore(candidate, ext, startPos, pos - 2, maxDepth - 1);\n }\n return matched / m;\n };\n\n}).call(this);\n", "(function() {\n var Query, coreChars, countDir, getCharCodes, getExtension, opt_char_re, truncatedUpperCase, _ref;\n\n _ref = require(\"./pathScorer\"), countDir = _ref.countDir, getExtension = _ref.getExtension;\n\n module.exports = Query = (function() {\n function Query(query, _arg) {\n var optCharRegEx, pathSeparator, _ref1;\n _ref1 = _arg != null ? _arg : {}, optCharRegEx = _ref1.optCharRegEx, pathSeparator = _ref1.pathSeparator;\n if (!(query && query.length)) {\n return null;\n }\n this.query = query;\n this.query_lw = query.toLowerCase();\n this.core = coreChars(query, optCharRegEx);\n this.core_lw = this.core.toLowerCase();\n this.core_up = truncatedUpperCase(this.core);\n this.depth = countDir(query, query.length, pathSeparator);\n this.ext = getExtension(this.query_lw);\n this.charCodes = getCharCodes(this.query_lw);\n }\n\n return Query;\n\n })();\n\n opt_char_re = /[ _\\-:\\/\\\\]/g;\n\n coreChars = function(query, optCharRegEx) {\n if (optCharRegEx == null) {\n optCharRegEx = opt_char_re;\n }\n return query.replace(optCharRegEx, '');\n };\n\n truncatedUpperCase = function(str) {\n var char, upper, _i, _len;\n upper = \"\";\n for (_i = 0, _len = str.length; _i < _len; _i++) {\n char = str[_i];\n upper += char.toUpperCase()[0];\n }\n return upper;\n };\n\n getCharCodes = function(str) {\n var charCodes, i, len;\n len = str.length;\n i = -1;\n charCodes = [];\n while (++i < len) {\n charCodes[str.charCodeAt(i)] = true;\n }\n return charCodes;\n };\n\n}).call(this);\n", "(function() {\n var Query, pathScorer, pluckCandidates, scorer, sortCandidates;\n\n scorer = require('./scorer');\n\n pathScorer = require('./pathScorer');\n\n Query = require('./query');\n\n pluckCandidates = function(a) {\n return a.candidate;\n };\n\n sortCandidates = function(a, b) {\n return b.score - a.score;\n };\n\n module.exports = function(candidates, query, options) {\n var bKey, candidate, key, maxInners, maxResults, score, scoreProvider, scoredCandidates, spotLeft, string, usePathScoring, _i, _len;\n scoredCandidates = [];\n key = options.key, maxResults = options.maxResults, maxInners = options.maxInners, usePathScoring = options.usePathScoring;\n spotLeft = (maxInners != null) && maxInners > 0 ? maxInners : candidates.length + 1;\n bKey = key != null;\n scoreProvider = usePathScoring ? pathScorer : scorer;\n for (_i = 0, _len = candidates.length; _i < _len; _i++) {\n candidate = candidates[_i];\n string = bKey ? candidate[key] : candidate;\n if (!string) {\n continue;\n }\n score = scoreProvider.score(string, query, options);\n if (score > 0) {\n scoredCandidates.push({\n candidate: candidate,\n score: score\n });\n if (!--spotLeft) {\n break;\n }\n }\n }\n scoredCandidates.sort(sortCandidates);\n candidates = scoredCandidates.map(pluckCandidates);\n if (maxResults != null) {\n candidates = candidates.slice(0, maxResults);\n }\n return candidates;\n };\n\n}).call(this);\n", "(function() {\n var basenameMatch, computeMatch, isMatch, isWordStart, match, mergeMatches, scoreAcronyms, scoreCharacter, scoreConsecutives, _ref;\n\n _ref = require('./scorer'), isMatch = _ref.isMatch, isWordStart = _ref.isWordStart, scoreConsecutives = _ref.scoreConsecutives, scoreCharacter = _ref.scoreCharacter, scoreAcronyms = _ref.scoreAcronyms;\n\n exports.match = match = function(string, query, options) {\n var allowErrors, baseMatches, matches, pathSeparator, preparedQuery, string_lw;\n allowErrors = options.allowErrors, preparedQuery = options.preparedQuery, pathSeparator = options.pathSeparator;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return [];\n }\n string_lw = string.toLowerCase();\n matches = computeMatch(string, string_lw, preparedQuery);\n if (matches.length === 0) {\n return matches;\n }\n if (string.indexOf(pathSeparator) > -1) {\n baseMatches = basenameMatch(string, string_lw, preparedQuery, pathSeparator);\n matches = mergeMatches(matches, baseMatches);\n }\n return matches;\n };\n\n exports.wrap = function(string, query, options) {\n var matchIndex, matchPos, matchPositions, output, strPos, tagClass, tagClose, tagOpen, _ref1;\n if ((options.wrap != null)) {\n _ref1 = options.wrap, tagClass = _ref1.tagClass, tagOpen = _ref1.tagOpen, tagClose = _ref1.tagClose;\n }\n if (tagClass == null) {\n tagClass = 'highlight';\n }\n if (tagOpen == null) {\n tagOpen = '<strong class=\"' + tagClass + '\">';\n }\n if (tagClose == null) {\n tagClose = '</strong>';\n }\n if (string === query) {\n return tagOpen + string + tagClose;\n }\n matchPositions = match(string, query, options);\n if (matchPositions.length === 0) {\n return string;\n }\n output = '';\n matchIndex = -1;\n strPos = 0;\n while (++matchIndex < matchPositions.length) {\n matchPos = matchPositions[matchIndex];\n if (matchPos > strPos) {\n output += string.substring(strPos, matchPos);\n strPos = matchPos;\n }\n while (++matchIndex < matchPositions.length) {\n if (matchPositions[matchIndex] === matchPos + 1) {\n matchPos++;\n } else {\n matchIndex--;\n break;\n }\n }\n matchPos++;\n if (matchPos > strPos) {\n output += tagOpen;\n output += string.substring(strPos, matchPos);\n output += tagClose;\n strPos = matchPos;\n }\n }\n if (strPos <= string.length - 1) {\n output += string.substring(strPos);\n }\n return output;\n };\n\n basenameMatch = function(subject, subject_lw, preparedQuery, pathSeparator) {\n var basePos, depth, end;\n end = subject.length - 1;\n while (subject[end] === pathSeparator) {\n end--;\n }\n basePos = subject.lastIndexOf(pathSeparator, end);\n if (basePos === -1) {\n return [];\n }\n depth = preparedQuery.depth;\n while (depth-- > 0) {\n basePos = subject.lastIndexOf(pathSeparator, basePos - 1);\n if (basePos === -1) {\n return [];\n }\n }\n basePos++;\n end++;\n return computeMatch(subject.slice(basePos, end), subject_lw.slice(basePos, end), preparedQuery, basePos);\n };\n\n mergeMatches = function(a, b) {\n var ai, bj, i, j, m, n, out;\n m = a.length;\n n = b.length;\n if (n === 0) {\n return a.slice();\n }\n if (m === 0) {\n return b.slice();\n }\n i = -1;\n j = 0;\n bj = b[j];\n out = [];\n while (++i < m) {\n ai = a[i];\n while (bj <= ai && ++j < n) {\n if (bj < ai) {\n out.push(bj);\n }\n bj = b[j];\n }\n out.push(ai);\n }\n while (j < n) {\n out.push(b[j++]);\n }\n return out;\n };\n\n computeMatch = function(subject, subject_lw, preparedQuery, offset) {\n var DIAGONAL, LEFT, STOP, UP, acro_score, align, backtrack, csc_diag, csc_row, csc_score, i, j, m, matches, move, n, pos, query, query_lw, score, score_diag, score_row, score_up, si_lw, start, trace;\n if (offset == null) {\n offset = 0;\n }\n query = preparedQuery.query;\n query_lw = preparedQuery.query_lw;\n m = subject.length;\n n = query.length;\n acro_score = scoreAcronyms(subject, subject_lw, query, query_lw).score;\n score_row = new Array(n);\n csc_row = new Array(n);\n STOP = 0;\n UP = 1;\n LEFT = 2;\n DIAGONAL = 3;\n trace = new Array(m * n);\n pos = -1;\n j = -1;\n while (++j < n) {\n score_row[j] = 0;\n csc_row[j] = 0;\n }\n i = -1;\n while (++i < m) {\n score = 0;\n score_up = 0;\n csc_diag = 0;\n si_lw = subject_lw[i];\n j = -1;\n while (++j < n) {\n csc_score = 0;\n align = 0;\n score_diag = score_up;\n if (query_lw[j] === si_lw) {\n start = isWordStart(i, subject, subject_lw);\n csc_score = csc_diag > 0 ? csc_diag : scoreConsecutives(subject, subject_lw, query, query_lw, i, j, start);\n align = score_diag + scoreCharacter(i, j, start, acro_score, csc_score);\n }\n score_up = score_row[j];\n csc_diag = csc_row[j];\n if (score > score_up) {\n move = LEFT;\n } else {\n score = score_up;\n move = UP;\n }\n if (align > score) {\n score = align;\n move = DIAGONAL;\n } else {\n csc_score = 0;\n }\n score_row[j] = score;\n csc_row[j] = csc_score;\n trace[++pos] = score > 0 ? move : STOP;\n }\n }\n i = m - 1;\n j = n - 1;\n pos = i * n + j;\n backtrack = true;\n matches = [];\n while (backtrack && i >= 0 && j >= 0) {\n switch (trace[pos]) {\n case UP:\n i--;\n pos -= n;\n break;\n case LEFT:\n j--;\n pos--;\n break;\n case DIAGONAL:\n matches.push(i + offset);\n j--;\n i--;\n pos -= n + 1;\n break;\n default:\n backtrack = false;\n }\n }\n matches.reverse();\n return matches;\n };\n\n}).call(this);\n", "(function() {\n var Query, defaultPathSeparator, filter, matcher, parseOptions, pathScorer, preparedQueryCache, scorer;\n\n filter = require('./filter');\n\n matcher = require('./matcher');\n\n scorer = require('./scorer');\n\n pathScorer = require('./pathScorer');\n\n Query = require('./query');\n\n preparedQueryCache = null;\n\n defaultPathSeparator = (typeof process !== \"undefined\" && process !== null ? process.platform : void 0) === \"win32\" ? '\\\\' : '/';\n\n module.exports = {\n filter: function(candidates, query, options) {\n if (options == null) {\n options = {};\n }\n if (!((query != null ? query.length : void 0) && (candidates != null ? candidates.length : void 0))) {\n return [];\n }\n options = parseOptions(options, query);\n return filter(candidates, query, options);\n },\n score: function(string, query, options) {\n if (options == null) {\n options = {};\n }\n if (!((string != null ? string.length : void 0) && (query != null ? query.length : void 0))) {\n return 0;\n }\n options = parseOptions(options, query);\n if (options.usePathScoring) {\n return pathScorer.score(string, query, options);\n } else {\n return scorer.score(string, query, options);\n }\n },\n match: function(string, query, options) {\n var _i, _ref, _results;\n if (options == null) {\n options = {};\n }\n if (!string) {\n return [];\n }\n if (!query) {\n return [];\n }\n if (string === query) {\n return (function() {\n _results = [];\n for (var _i = 0, _ref = string.length; 0 <= _ref ? _i < _ref : _i > _ref; 0 <= _ref ? _i++ : _i--){ _results.push(_i); }\n return _results;\n }).apply(this);\n }\n options = parseOptions(options, query);\n return matcher.match(string, query, options);\n },\n wrap: function(string, query, options) {\n if (options == null) {\n options = {};\n }\n if (!string) {\n return [];\n }\n if (!query) {\n return [];\n }\n options = parseOptions(options, query);\n return matcher.wrap(string, query, options);\n },\n prepareQuery: function(query, options) {\n if (options == null) {\n options = {};\n }\n options = parseOptions(options, query);\n return options.preparedQuery;\n }\n };\n\n parseOptions = function(options, query) {\n if (options.allowErrors == null) {\n options.allowErrors = false;\n }\n if (options.usePathScoring == null) {\n options.usePathScoring = true;\n }\n if (options.useExtensionBonus == null) {\n options.useExtensionBonus = false;\n }\n if (options.pathSeparator == null) {\n options.pathSeparator = defaultPathSeparator;\n }\n if (options.optCharRegEx == null) {\n options.optCharRegEx = null;\n }\n if (options.wrap == null) {\n options.wrap = null;\n }\n if (options.preparedQuery == null) {\n options.preparedQuery = preparedQueryCache && preparedQueryCache.query === query ? preparedQueryCache : (preparedQueryCache = new Query(query, options));\n }\n return options;\n };\n\n}).call(this);\n", "/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n var r, s = 0;\n function next() {\n while (r = env.stack.pop()) {\n try {\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\n if (r.dispose) {\n var result = r.dispose.call(r.value);\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n else s |= 1;\n }\n catch (e) {\n fail(e);\n }\n }\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n", "/**\n * Returns true if the object is a function.\n * @param value The value to check\n */\nexport function isFunction(value: any): value is (...args: any[]) => any {\n return typeof value === 'function';\n}\n", "/**\n * Used to create Error subclasses until the community moves away from ES5.\n *\n * This is because compiling from TypeScript down to ES5 has issues with subclassing Errors\n * as well as other built-in types: https://github.com/Microsoft/TypeScript/issues/12123\n *\n * @param createImpl A factory function to create the actual constructor implementation. The returned\n * function should be a named function that calls `_super` internally.\n */\nexport function createErrorClass<T>(createImpl: (_super: any) => any): T {\n const _super = (instance: any) => {\n Error.call(instance);\n instance.stack = new Error().stack;\n };\n\n const ctorFunc = createImpl(_super);\n ctorFunc.prototype = Object.create(Error.prototype);\n ctorFunc.prototype.constructor = ctorFunc;\n return ctorFunc;\n}\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface UnsubscriptionError extends Error {\n readonly errors: any[];\n}\n\nexport interface UnsubscriptionErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (errors: any[]): UnsubscriptionError;\n}\n\n/**\n * An error thrown when one or more errors have occurred during the\n * `unsubscribe` of a {@link Subscription}.\n */\nexport const UnsubscriptionError: UnsubscriptionErrorCtor = createErrorClass(\n (_super) =>\n function UnsubscriptionErrorImpl(this: any, errors: (Error | string)[]) {\n _super(this);\n this.message = errors\n ? `${errors.length} errors occurred during unsubscription:\n${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\\n ')}`\n : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n }\n);\n", "/**\n * Removes an item from an array, mutating it.\n * @param arr The array to remove the item from\n * @param item The item to remove\n */\nexport function arrRemove<T>(arr: T[] | undefined | null, item: T) {\n if (arr) {\n const index = arr.indexOf(item);\n 0 <= index && arr.splice(index, 1);\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nimport { SubscriptionLike, TeardownLogic, Unsubscribable } from './types';\nimport { arrRemove } from './util/arrRemove';\n\n/**\n * Represents a disposable resource, such as the execution of an Observable. A\n * Subscription has one important method, `unsubscribe`, that takes no argument\n * and just disposes the resource held by the subscription.\n *\n * Additionally, subscriptions may be grouped together through the `add()`\n * method, which will attach a child Subscription to the current Subscription.\n * When a Subscription is unsubscribed, all its children (and its grandchildren)\n * will be unsubscribed as well.\n */\nexport class Subscription implements SubscriptionLike {\n public static EMPTY = (() => {\n const empty = new Subscription();\n empty.closed = true;\n return empty;\n })();\n\n /**\n * A flag to indicate whether this Subscription has already been unsubscribed.\n */\n public closed = false;\n\n private _parentage: Subscription[] | Subscription | null = null;\n\n /**\n * The list of registered finalizers to execute upon unsubscription. Adding and removing from this\n * list occurs in the {@link #add} and {@link #remove} methods.\n */\n private _finalizers: Exclude<TeardownLogic, void>[] | null = null;\n\n /**\n * @param initialTeardown A function executed first as part of the finalization\n * process that is kicked off when {@link #unsubscribe} is called.\n */\n constructor(private initialTeardown?: () => void) {}\n\n /**\n * Disposes the resources held by the subscription. May, for instance, cancel\n * an ongoing Observable execution or cancel any other type of work that\n * started when the Subscription was created.\n */\n unsubscribe(): void {\n let errors: any[] | undefined;\n\n if (!this.closed) {\n this.closed = true;\n\n // Remove this from it's parents.\n const { _parentage } = this;\n if (_parentage) {\n this._parentage = null;\n if (Array.isArray(_parentage)) {\n for (const parent of _parentage) {\n parent.remove(this);\n }\n } else {\n _parentage.remove(this);\n }\n }\n\n const { initialTeardown: initialFinalizer } = this;\n if (isFunction(initialFinalizer)) {\n try {\n initialFinalizer();\n } catch (e) {\n errors = e instanceof UnsubscriptionError ? e.errors : [e];\n }\n }\n\n const { _finalizers } = this;\n if (_finalizers) {\n this._finalizers = null;\n for (const finalizer of _finalizers) {\n try {\n execFinalizer(finalizer);\n } catch (err) {\n errors = errors ?? [];\n if (err instanceof UnsubscriptionError) {\n errors = [...errors, ...err.errors];\n } else {\n errors.push(err);\n }\n }\n }\n }\n\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n }\n }\n\n /**\n * Adds a finalizer to this subscription, so that finalization will be unsubscribed/called\n * when this subscription is unsubscribed. If this subscription is already {@link #closed},\n * because it has already been unsubscribed, then whatever finalizer is passed to it\n * will automatically be executed (unless the finalizer itself is also a closed subscription).\n *\n * Closed Subscriptions cannot be added as finalizers to any subscription. Adding a closed\n * subscription to a any subscription will result in no operation. (A noop).\n *\n * Adding a subscription to itself, or adding `null` or `undefined` will not perform any\n * operation at all. (A noop).\n *\n * `Subscription` instances that are added to this instance will automatically remove themselves\n * if they are unsubscribed. Functions and {@link Unsubscribable} objects that you wish to remove\n * will need to be removed manually with {@link #remove}\n *\n * @param teardown The finalization logic to add to this subscription.\n */\n add(teardown: TeardownLogic): void {\n // Only add the finalizer if it's not undefined\n // and don't add a subscription to itself.\n if (teardown && teardown !== this) {\n if (this.closed) {\n // If this subscription is already closed,\n // execute whatever finalizer is handed to it automatically.\n execFinalizer(teardown);\n } else {\n if (teardown instanceof Subscription) {\n // We don't add closed subscriptions, and we don't add the same subscription\n // twice. Subscription unsubscribe is idempotent.\n if (teardown.closed || teardown._hasParent(this)) {\n return;\n }\n teardown._addParent(this);\n }\n (this._finalizers = this._finalizers ?? []).push(teardown);\n }\n }\n }\n\n /**\n * Checks to see if a this subscription already has a particular parent.\n * This will signal that this subscription has already been added to the parent in question.\n * @param parent the parent to check for\n */\n private _hasParent(parent: Subscription) {\n const { _parentage } = this;\n return _parentage === parent || (Array.isArray(_parentage) && _parentage.includes(parent));\n }\n\n /**\n * Adds a parent to this subscription so it can be removed from the parent if it\n * unsubscribes on it's own.\n *\n * NOTE: THIS ASSUMES THAT {@link _hasParent} HAS ALREADY BEEN CHECKED.\n * @param parent The parent subscription to add\n */\n private _addParent(parent: Subscription) {\n const { _parentage } = this;\n this._parentage = Array.isArray(_parentage) ? (_parentage.push(parent), _parentage) : _parentage ? [_parentage, parent] : parent;\n }\n\n /**\n * Called on a child when it is removed via {@link #remove}.\n * @param parent The parent to remove\n */\n private _removeParent(parent: Subscription) {\n const { _parentage } = this;\n if (_parentage === parent) {\n this._parentage = null;\n } else if (Array.isArray(_parentage)) {\n arrRemove(_parentage, parent);\n }\n }\n\n /**\n * Removes a finalizer from this subscription that was previously added with the {@link #add} method.\n *\n * Note that `Subscription` instances, when unsubscribed, will automatically remove themselves\n * from every other `Subscription` they have been added to. This means that using the `remove` method\n * is not a common thing and should be used thoughtfully.\n *\n * If you add the same finalizer instance of a function or an unsubscribable object to a `Subscription` instance\n * more than once, you will need to call `remove` the same number of times to remove all instances.\n *\n * All finalizer instances are removed to free up memory upon unsubscription.\n *\n * @param teardown The finalizer to remove from this subscription\n */\n remove(teardown: Exclude<TeardownLogic, void>): void {\n const { _finalizers } = this;\n _finalizers && arrRemove(_finalizers, teardown);\n\n if (teardown instanceof Subscription) {\n teardown._removeParent(this);\n }\n }\n}\n\nexport const EMPTY_SUBSCRIPTION = Subscription.EMPTY;\n\nexport function isSubscription(value: any): value is Subscription {\n return (\n value instanceof Subscription ||\n (value && 'closed' in value && isFunction(value.remove) && isFunction(value.add) && isFunction(value.unsubscribe))\n );\n}\n\nfunction execFinalizer(finalizer: Unsubscribable | (() => void)) {\n if (isFunction(finalizer)) {\n finalizer();\n } else {\n finalizer.unsubscribe();\n }\n}\n", "import { Subscriber } from './Subscriber';\nimport { ObservableNotification } from './types';\n\n/**\n * The {@link GlobalConfig} object for RxJS. It is used to configure things\n * like how to react on unhandled errors.\n */\nexport const config: GlobalConfig = {\n onUnhandledError: null,\n onStoppedNotification: null,\n Promise: undefined,\n useDeprecatedSynchronousErrorHandling: false,\n useDeprecatedNextContext: false,\n};\n\n/**\n * The global configuration object for RxJS, used to configure things\n * like how to react on unhandled errors. Accessible via {@link config}\n * object.\n */\nexport interface GlobalConfig {\n /**\n * A registration point for unhandled errors from RxJS. These are errors that\n * cannot were not handled by consuming code in the usual subscription path. For\n * example, if you have this configured, and you subscribe to an observable without\n * providing an error handler, errors from that subscription will end up here. This\n * will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onUnhandledError: ((err: any) => void) | null;\n\n /**\n * A registration point for notifications that cannot be sent to subscribers because they\n * have completed, errored or have been explicitly unsubscribed. By default, next, complete\n * and error notifications sent to stopped subscribers are noops. However, sometimes callers\n * might want a different behavior. For example, with sources that attempt to report errors\n * to stopped subscribers, a caller can configure RxJS to throw an unhandled error instead.\n * This will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onStoppedNotification: ((notification: ObservableNotification<any>, subscriber: Subscriber<any>) => void) | null;\n\n /**\n * The promise constructor used by default for {@link Observable#toPromise toPromise} and {@link Observable#forEach forEach}\n * methods.\n *\n * @deprecated As of version 8, RxJS will no longer support this sort of injection of a\n * Promise constructor. If you need a Promise implementation other than native promises,\n * please polyfill/patch Promise as you see appropriate. Will be removed in v8.\n */\n Promise?: PromiseConstructorLike;\n\n /**\n * If true, turns on synchronous error rethrowing, which is a deprecated behavior\n * in v6 and higher. This behavior enables bad patterns like wrapping a subscribe\n * call in a try/catch block. It also enables producer interference, a nasty bug\n * where a multicast can be broken for all observers by a downstream consumer with\n * an unhandled error. DO NOT USE THIS FLAG UNLESS IT'S NEEDED TO BUY TIME\n * FOR MIGRATION REASONS.\n *\n * @deprecated As of version 8, RxJS will no longer support synchronous throwing\n * of unhandled errors. All errors will be thrown on a separate call stack to prevent bad\n * behaviors described above. Will be removed in v8.\n */\n useDeprecatedSynchronousErrorHandling: boolean;\n\n /**\n * If true, enables an as-of-yet undocumented feature from v5: The ability to access\n * `unsubscribe()` via `this` context in `next` functions created in observers passed\n * to `subscribe`.\n *\n * This is being removed because the performance was severely problematic, and it could also cause\n * issues when types other than POJOs are passed to subscribe as subscribers, as they will likely have\n * their `this` context overwritten.\n *\n * @deprecated As of version 8, RxJS will no longer support altering the\n * context of next functions provided as part of an observer to Subscribe. Instead,\n * you will have access to a subscription or a signal or token that will allow you to do things like\n * unsubscribe and test closed status. Will be removed in v8.\n */\n useDeprecatedNextContext: boolean;\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearTimeoutFunction = (handle: TimerHandle) => void;\n\ninterface TimeoutProvider {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n delegate:\n | {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n }\n | undefined;\n}\n\nexport const timeoutProvider: TimeoutProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setTimeout(handler: () => void, timeout?: number, ...args) {\n const { delegate } = timeoutProvider;\n if (delegate?.setTimeout) {\n return delegate.setTimeout(handler, timeout, ...args);\n }\n return setTimeout(handler, timeout, ...args);\n },\n clearTimeout(handle) {\n const { delegate } = timeoutProvider;\n return (delegate?.clearTimeout || clearTimeout)(handle as any);\n },\n delegate: undefined,\n};\n", "import { config } from '../config';\nimport { timeoutProvider } from '../scheduler/timeoutProvider';\n\n/**\n * Handles an error on another job either with the user-configured {@link onUnhandledError},\n * or by throwing it on that new job so it can be picked up by `window.onerror`, `process.on('error')`, etc.\n *\n * This should be called whenever there is an error that is out-of-band with the subscription\n * or when an error hits a terminal boundary of the subscription and no error handler was provided.\n *\n * @param err the error to report\n */\nexport function reportUnhandledError(err: any) {\n timeoutProvider.setTimeout(() => {\n const { onUnhandledError } = config;\n if (onUnhandledError) {\n // Execute the user-configured error handler.\n onUnhandledError(err);\n } else {\n // Throw so it is picked up by the runtime's uncaught error mechanism.\n throw err;\n }\n });\n}\n", "/* tslint:disable:no-empty */\nexport function noop() { }\n", "import { CompleteNotification, NextNotification, ErrorNotification } from './types';\n\n/**\n * A completion object optimized for memory use and created to be the\n * same \"shape\" as other notifications in v8.\n * @internal\n */\nexport const COMPLETE_NOTIFICATION = (() => createNotification('C', undefined, undefined) as CompleteNotification)();\n\n/**\n * Internal use only. Creates an optimized error notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function errorNotification(error: any): ErrorNotification {\n return createNotification('E', undefined, error) as any;\n}\n\n/**\n * Internal use only. Creates an optimized next notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function nextNotification<T>(value: T) {\n return createNotification('N', value, undefined) as NextNotification<T>;\n}\n\n/**\n * Ensures that all notifications created internally have the same \"shape\" in v8.\n *\n * TODO: This is only exported to support a crazy legacy test in `groupBy`.\n * @internal\n */\nexport function createNotification(kind: 'N' | 'E' | 'C', value: any, error: any) {\n return {\n kind,\n value,\n error,\n };\n}\n", "import { config } from '../config';\n\nlet context: { errorThrown: boolean; error: any } | null = null;\n\n/**\n * Handles dealing with errors for super-gross mode. Creates a context, in which\n * any synchronously thrown errors will be passed to {@link captureError}. Which\n * will record the error such that it will be rethrown after the call back is complete.\n * TODO: Remove in v8\n * @param cb An immediately executed function.\n */\nexport function errorContext(cb: () => void) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n const isRoot = !context;\n if (isRoot) {\n context = { errorThrown: false, error: null };\n }\n cb();\n if (isRoot) {\n const { errorThrown, error } = context!;\n context = null;\n if (errorThrown) {\n throw error;\n }\n }\n } else {\n // This is the general non-deprecated path for everyone that\n // isn't crazy enough to use super-gross mode (useDeprecatedSynchronousErrorHandling)\n cb();\n }\n}\n\n/**\n * Captures errors only in super-gross mode.\n * @param err the error to capture\n */\nexport function captureError(err: any) {\n if (config.useDeprecatedSynchronousErrorHandling && context) {\n context.errorThrown = true;\n context.error = err;\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { Observer, ObservableNotification } from './types';\nimport { isSubscription, Subscription } from './Subscription';\nimport { config } from './config';\nimport { reportUnhandledError } from './util/reportUnhandledError';\nimport { noop } from './util/noop';\nimport { nextNotification, errorNotification, COMPLETE_NOTIFICATION } from './NotificationFactories';\nimport { timeoutProvider } from './scheduler/timeoutProvider';\nimport { captureError } from './util/errorContext';\n\n/**\n * Implements the {@link Observer} interface and extends the\n * {@link Subscription} class. While the {@link Observer} is the public API for\n * consuming the values of an {@link Observable}, all Observers get converted to\n * a Subscriber, in order to provide Subscription-like capabilities such as\n * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for\n * implementing operators, but it is rarely used as a public API.\n */\nexport class Subscriber<T> extends Subscription implements Observer<T> {\n /**\n * A static factory for a Subscriber, given a (potentially partial) definition\n * of an Observer.\n * @param next The `next` callback of an Observer.\n * @param error The `error` callback of an\n * Observer.\n * @param complete The `complete` callback of an\n * Observer.\n * @return A Subscriber wrapping the (partially defined)\n * Observer represented by the given arguments.\n * @deprecated Do not use. Will be removed in v8. There is no replacement for this\n * method, and there is no reason to be creating instances of `Subscriber` directly.\n * If you have a specific use case, please file an issue.\n */\n static create<T>(next?: (x?: T) => void, error?: (e?: any) => void, complete?: () => void): Subscriber<T> {\n return new SafeSubscriber(next, error, complete);\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected isStopped: boolean = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected destination: Subscriber<any> | Observer<any>; // this `any` is the escape hatch to erase extra type param (e.g. R)\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * There is no reason to directly create an instance of Subscriber. This type is exported for typings reasons.\n */\n constructor(destination?: Subscriber<any> | Observer<any>) {\n super();\n if (destination) {\n this.destination = destination;\n // Automatically chain subscriptions together here.\n // if destination is a Subscription, then it is a Subscriber.\n if (isSubscription(destination)) {\n destination.add(this);\n }\n } else {\n this.destination = EMPTY_OBSERVER;\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `next` from\n * the Observable, with a value. The Observable may call this method 0 or more\n * times.\n * @param value The `next` value.\n */\n next(value: T): void {\n if (this.isStopped) {\n handleStoppedNotification(nextNotification(value), this);\n } else {\n this._next(value!);\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `error` from\n * the Observable, with an attached `Error`. Notifies the Observer that\n * the Observable has experienced an error condition.\n * @param err The `error` exception.\n */\n error(err?: any): void {\n if (this.isStopped) {\n handleStoppedNotification(errorNotification(err), this);\n } else {\n this.isStopped = true;\n this._error(err);\n }\n }\n\n /**\n * The {@link Observer} callback to receive a valueless notification of type\n * `complete` from the Observable. Notifies the Observer that the Observable\n * has finished sending push-based notifications.\n */\n complete(): void {\n if (this.isStopped) {\n handleStoppedNotification(COMPLETE_NOTIFICATION, this);\n } else {\n this.isStopped = true;\n this._complete();\n }\n }\n\n unsubscribe(): void {\n if (!this.closed) {\n this.isStopped = true;\n super.unsubscribe();\n this.destination = null!;\n }\n }\n\n protected _next(value: T): void {\n this.destination.next(value);\n }\n\n protected _error(err: any): void {\n try {\n this.destination.error(err);\n } finally {\n this.unsubscribe();\n }\n }\n\n protected _complete(): void {\n try {\n this.destination.complete();\n } finally {\n this.unsubscribe();\n }\n }\n}\n\n/**\n * This bind is captured here because we want to be able to have\n * compatibility with monoid libraries that tend to use a method named\n * `bind`. In particular, a library called Monio requires this.\n */\nconst _bind = Function.prototype.bind;\n\nfunction bind<Fn extends (...args: any[]) => any>(fn: Fn, thisArg: any): Fn {\n return _bind.call(fn, thisArg);\n}\n\n/**\n * Internal optimization only, DO NOT EXPOSE.\n * @internal\n */\nclass ConsumerObserver<T> implements Observer<T> {\n constructor(private partialObserver: Partial<Observer<T>>) {}\n\n next(value: T): void {\n const { partialObserver } = this;\n if (partialObserver.next) {\n try {\n partialObserver.next(value);\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n\n error(err: any): void {\n const { partialObserver } = this;\n if (partialObserver.error) {\n try {\n partialObserver.error(err);\n } catch (error) {\n handleUnhandledError(error);\n }\n } else {\n handleUnhandledError(err);\n }\n }\n\n complete(): void {\n const { partialObserver } = this;\n if (partialObserver.complete) {\n try {\n partialObserver.complete();\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n}\n\nexport class SafeSubscriber<T> extends Subscriber<T> {\n constructor(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((e?: any) => void) | null,\n complete?: (() => void) | null\n ) {\n super();\n\n let partialObserver: Partial<Observer<T>>;\n if (isFunction(observerOrNext) || !observerOrNext) {\n // The first argument is a function, not an observer. The next\n // two arguments *could* be observers, or they could be empty.\n partialObserver = {\n next: (observerOrNext ?? undefined) as ((value: T) => void) | undefined,\n error: error ?? undefined,\n complete: complete ?? undefined,\n };\n } else {\n // The first argument is a partial observer.\n let context: any;\n if (this && config.useDeprecatedNextContext) {\n // This is a deprecated path that made `this.unsubscribe()` available in\n // next handler functions passed to subscribe. This only exists behind a flag\n // now, as it is *very* slow.\n context = Object.create(observerOrNext);\n context.unsubscribe = () => this.unsubscribe();\n partialObserver = {\n next: observerOrNext.next && bind(observerOrNext.next, context),\n error: observerOrNext.error && bind(observerOrNext.error, context),\n complete: observerOrNext.complete && bind(observerOrNext.complete, context),\n };\n } else {\n // The \"normal\" path. Just use the partial observer directly.\n partialObserver = observerOrNext;\n }\n }\n\n // Wrap the partial observer to ensure it's a full observer, and\n // make sure proper error handling is accounted for.\n this.destination = new ConsumerObserver(partialObserver);\n }\n}\n\nfunction handleUnhandledError(error: any) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n captureError(error);\n } else {\n // Ideal path, we report this as an unhandled error,\n // which is thrown on a new call stack.\n reportUnhandledError(error);\n }\n}\n\n/**\n * An error handler used when no error handler was supplied\n * to the SafeSubscriber -- meaning no error handler was supplied\n * do the `subscribe` call on our observable.\n * @param err The error to handle\n */\nfunction defaultErrorHandler(err: any) {\n throw err;\n}\n\n/**\n * A handler for notifications that cannot be sent to a stopped subscriber.\n * @param notification The notification being sent.\n * @param subscriber The stopped subscriber.\n */\nfunction handleStoppedNotification(notification: ObservableNotification<any>, subscriber: Subscriber<any>) {\n const { onStoppedNotification } = config;\n onStoppedNotification && timeoutProvider.setTimeout(() => onStoppedNotification(notification, subscriber));\n}\n\n/**\n * The observer used as a stub for subscriptions where the user did not\n * pass any arguments to `subscribe`. Comes with the default error handling\n * behavior.\n */\nexport const EMPTY_OBSERVER: Readonly<Observer<any>> & { closed: true } = {\n closed: true,\n next: noop,\n error: defaultErrorHandler,\n complete: noop,\n};\n", "/**\n * Symbol.observable or a string \"@@observable\". Used for interop\n *\n * @deprecated We will no longer be exporting this symbol in upcoming versions of RxJS.\n * Instead polyfill and use Symbol.observable directly *or* use https://www.npmjs.com/package/symbol-observable\n */\nexport const observable: string | symbol = (() => (typeof Symbol === 'function' && Symbol.observable) || '@@observable')();\n", "/**\n * This function takes one parameter and just returns it. Simply put,\n * this is like `<T>(x: T): T => x`.\n *\n * ## Examples\n *\n * This is useful in some cases when using things like `mergeMap`\n *\n * ```ts\n * import { interval, take, map, range, mergeMap, identity } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(5));\n *\n * const result$ = source$.pipe(\n * map(i => range(i)),\n * mergeMap(identity) // same as mergeMap(x => x)\n * );\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * Or when you want to selectively apply an operator\n *\n * ```ts\n * import { interval, take, identity } from 'rxjs';\n *\n * const shouldLimit = () => Math.random() < 0.5;\n *\n * const source$ = interval(1000);\n *\n * const result$ = source$.pipe(shouldLimit() ? take(5) : identity);\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * @param x Any value that is returned by this function\n * @returns The value passed as the first parameter to this function\n */\nexport function identity<T>(x: T): T {\n return x;\n}\n", "import { identity } from './identity';\nimport { UnaryFunction } from '../types';\n\nexport function pipe(): typeof identity;\nexport function pipe<T, A>(fn1: UnaryFunction<T, A>): UnaryFunction<T, A>;\nexport function pipe<T, A, B>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>): UnaryFunction<T, B>;\nexport function pipe<T, A, B, C>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>): UnaryFunction<T, C>;\nexport function pipe<T, A, B, C, D>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>\n): UnaryFunction<T, D>;\nexport function pipe<T, A, B, C, D, E>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>\n): UnaryFunction<T, E>;\nexport function pipe<T, A, B, C, D, E, F>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>\n): UnaryFunction<T, F>;\nexport function pipe<T, A, B, C, D, E, F, G>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>\n): UnaryFunction<T, G>;\nexport function pipe<T, A, B, C, D, E, F, G, H>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>\n): UnaryFunction<T, H>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>\n): UnaryFunction<T, I>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>,\n ...fns: UnaryFunction<any, any>[]\n): UnaryFunction<T, unknown>;\n\n/**\n * pipe() can be called on one or more functions, each of which can take one argument (\"UnaryFunction\")\n * and uses it to return a value.\n * It returns a function that takes one argument, passes it to the first UnaryFunction, and then\n * passes the result to the next one, passes that result to the next one, and so on. \n */\nexport function pipe(...fns: Array<UnaryFunction<any, any>>): UnaryFunction<any, any> {\n return pipeFromArray(fns);\n}\n\n/** @internal */\nexport function pipeFromArray<T, R>(fns: Array<UnaryFunction<T, R>>): UnaryFunction<T, R> {\n if (fns.length === 0) {\n return identity as UnaryFunction<any, any>;\n }\n\n if (fns.length === 1) {\n return fns[0];\n }\n\n return function piped(input: T): R {\n return fns.reduce((prev: any, fn: UnaryFunction<T, R>) => fn(prev), input as any);\n };\n}\n", "import { Operator } from './Operator';\nimport { SafeSubscriber, Subscriber } from './Subscriber';\nimport { isSubscription, Subscription } from './Subscription';\nimport { TeardownLogic, OperatorFunction, Subscribable, Observer } from './types';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { isFunction } from './util/isFunction';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A representation of any set of values over any amount of time. This is the most basic building block\n * of RxJS.\n */\nexport class Observable<T> implements Subscribable<T> {\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n source: Observable<any> | undefined;\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n operator: Operator<any, T> | undefined;\n\n /**\n * @param subscribe The function that is called when the Observable is\n * initially subscribed to. This function is given a Subscriber, to which new values\n * can be `next`ed, or an `error` method can be called to raise an error, or\n * `complete` can be called to notify of a successful completion.\n */\n constructor(subscribe?: (this: Observable<T>, subscriber: Subscriber<T>) => TeardownLogic) {\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n\n // HACK: Since TypeScript inherits static properties too, we have to\n // fight against TypeScript here so Subject can have a different static create signature\n /**\n * Creates a new Observable by calling the Observable constructor\n * @param subscribe the subscriber function to be passed to the Observable constructor\n * @return A new observable.\n * @deprecated Use `new Observable()` instead. Will be removed in v8.\n */\n static create: (...args: any[]) => any = <T>(subscribe?: (subscriber: Subscriber<T>) => TeardownLogic) => {\n return new Observable<T>(subscribe);\n };\n\n /**\n * Creates a new Observable, with this Observable instance as the source, and the passed\n * operator defined as the new observable's operator.\n * @param operator the operator defining the operation to take on the observable\n * @return A new observable with the Operator applied.\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * If you have implemented an operator using `lift`, it is recommended that you create an\n * operator by simply returning `new Observable()` directly. See \"Creating new operators from\n * scratch\" section here: https://rxjs.dev/guide/operators\n */\n lift<R>(operator?: Operator<T, R>): Observable<R> {\n const observable = new Observable<R>();\n observable.source = this;\n observable.operator = operator;\n return observable;\n }\n\n subscribe(observerOrNext?: Partial<Observer<T>> | ((value: T) => void)): Subscription;\n /** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\n subscribe(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): Subscription;\n /**\n * Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.\n *\n * <span class=\"informal\">Use it when you have all these Observables, but still nothing is happening.</span>\n *\n * `subscribe` is not a regular operator, but a method that calls Observable's internal `subscribe` function. It\n * might be for example a function that you passed to Observable's constructor, but most of the time it is\n * a library implementation, which defines what will be emitted by an Observable, and when it be will emitted. This means\n * that calling `subscribe` is actually the moment when Observable starts its work, not when it is created, as it is often\n * the thought.\n *\n * Apart from starting the execution of an Observable, this method allows you to listen for values\n * that an Observable emits, as well as for when it completes or errors. You can achieve this in two\n * of the following ways.\n *\n * The first way is creating an object that implements {@link Observer} interface. It should have methods\n * defined by that interface, but note that it should be just a regular JavaScript object, which you can create\n * yourself in any way you want (ES6 class, classic function constructor, object literal etc.). In particular, do\n * not attempt to use any RxJS implementation details to create Observers - you don't need them. Remember also\n * that your object does not have to implement all methods. If you find yourself creating a method that doesn't\n * do anything, you can simply omit it. Note however, if the `error` method is not provided and an error happens,\n * it will be thrown asynchronously. Errors thrown asynchronously cannot be caught using `try`/`catch`. Instead,\n * use the {@link onUnhandledError} configuration option or use a runtime handler (like `window.onerror` or\n * `process.on('error)`) to be notified of unhandled errors. Because of this, it's recommended that you provide\n * an `error` method to avoid missing thrown errors.\n *\n * The second way is to give up on Observer object altogether and simply provide callback functions in place of its methods.\n * This means you can provide three functions as arguments to `subscribe`, where the first function is equivalent\n * of a `next` method, the second of an `error` method and the third of a `complete` method. Just as in case of an Observer,\n * if you do not need to listen for something, you can omit a function by passing `undefined` or `null`,\n * since `subscribe` recognizes these functions by where they were placed in function call. When it comes\n * to the `error` function, as with an Observer, if not provided, errors emitted by an Observable will be thrown asynchronously.\n *\n * You can, however, subscribe with no parameters at all. This may be the case where you're not interested in terminal events\n * and you also handled emissions internally by using operators (e.g. using `tap`).\n *\n * Whichever style of calling `subscribe` you use, in both cases it returns a Subscription object.\n * This object allows you to call `unsubscribe` on it, which in turn will stop the work that an Observable does and will clean\n * up all resources that an Observable used. Note that cancelling a subscription will not call `complete` callback\n * provided to `subscribe` function, which is reserved for a regular completion signal that comes from an Observable.\n *\n * Remember that callbacks provided to `subscribe` are not guaranteed to be called asynchronously.\n * It is an Observable itself that decides when these functions will be called. For example {@link of}\n * by default emits all its values synchronously. Always check documentation for how given Observable\n * will behave when subscribed and if its default behavior can be modified with a `scheduler`.\n *\n * #### Examples\n *\n * Subscribe with an {@link guide/observer Observer}\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * const sumObserver = {\n * sum: 0,\n * next(value) {\n * console.log('Adding: ' + value);\n * this.sum = this.sum + value;\n * },\n * error() {\n * // We actually could just remove this method,\n * // since we do not really care about errors right now.\n * },\n * complete() {\n * console.log('Sum equals: ' + this.sum);\n * }\n * };\n *\n * of(1, 2, 3) // Synchronously emits 1, 2, 3 and then completes.\n * .subscribe(sumObserver);\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Subscribe with functions ({@link deprecations/subscribe-arguments deprecated})\n *\n * ```ts\n * import { of } from 'rxjs'\n *\n * let sum = 0;\n *\n * of(1, 2, 3).subscribe(\n * value => {\n * console.log('Adding: ' + value);\n * sum = sum + value;\n * },\n * undefined,\n * () => console.log('Sum equals: ' + sum)\n * );\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Cancel a subscription\n *\n * ```ts\n * import { interval } from 'rxjs';\n *\n * const subscription = interval(1000).subscribe({\n * next(num) {\n * console.log(num)\n * },\n * complete() {\n * // Will not be called, even when cancelling subscription.\n * console.log('completed!');\n * }\n * });\n *\n * setTimeout(() => {\n * subscription.unsubscribe();\n * console.log('unsubscribed!');\n * }, 2500);\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 'unsubscribed!' after 2.5s\n * ```\n *\n * @param observerOrNext Either an {@link Observer} with some or all callback methods,\n * or the `next` handler that is called for each value emitted from the subscribed Observable.\n * @param error A handler for a terminal event resulting from an error. If no error handler is provided,\n * the error will be thrown asynchronously as unhandled.\n * @param complete A handler for a terminal event resulting from successful completion.\n * @return A subscription reference to the registered handlers.\n */\n subscribe(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n ): Subscription {\n const subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);\n\n errorContext(() => {\n const { operator, source } = this;\n subscriber.add(\n operator\n ? // We're dealing with a subscription in the\n // operator chain to one of our lifted operators.\n operator.call(subscriber, source)\n : source\n ? // If `source` has a value, but `operator` does not, something that\n // had intimate knowledge of our API, like our `Subject`, must have\n // set it. We're going to just call `_subscribe` directly.\n this._subscribe(subscriber)\n : // In all other cases, we're likely wrapping a user-provided initializer\n // function, so we need to catch errors and handle them appropriately.\n this._trySubscribe(subscriber)\n );\n });\n\n return subscriber;\n }\n\n /** @internal */\n protected _trySubscribe(sink: Subscriber<T>): TeardownLogic {\n try {\n return this._subscribe(sink);\n } catch (err) {\n // We don't need to return anything in this case,\n // because it's just going to try to `add()` to a subscription\n // above.\n sink.error(err);\n }\n }\n\n /**\n * Used as a NON-CANCELLABLE means of subscribing to an observable, for use with\n * APIs that expect promises, like `async/await`. You cannot unsubscribe from this.\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * #### Example\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(4));\n *\n * async function getTotal() {\n * let total = 0;\n *\n * await source$.forEach(value => {\n * total += value;\n * console.log('observable -> ' + value);\n * });\n *\n * return total;\n * }\n *\n * getTotal().then(\n * total => console.log('Total: ' + total)\n * );\n *\n * // Expected:\n * // 'observable -> 0'\n * // 'observable -> 1'\n * // 'observable -> 2'\n * // 'observable -> 3'\n * // 'Total: 6'\n * ```\n *\n * @param next A handler for each value emitted by the observable.\n * @return A promise that either resolves on observable completion or\n * rejects with the handled error.\n */\n forEach(next: (value: T) => void): Promise<void>;\n\n /**\n * @param next a handler for each value emitted by the observable\n * @param promiseCtor a constructor function used to instantiate the Promise\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n * @deprecated Passing a Promise constructor will no longer be available\n * in upcoming versions of RxJS. This is because it adds weight to the library, for very\n * little benefit. If you need this functionality, it is recommended that you either\n * polyfill Promise, or you create an adapter to convert the returned native promise\n * to whatever promise implementation you wanted. Will be removed in v8.\n */\n forEach(next: (value: T) => void, promiseCtor: PromiseConstructorLike): Promise<void>;\n\n forEach(next: (value: T) => void, promiseCtor?: PromiseConstructorLike): Promise<void> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor<void>((resolve, reject) => {\n const subscriber = new SafeSubscriber<T>({\n next: (value) => {\n try {\n next(value);\n } catch (err) {\n reject(err);\n subscriber.unsubscribe();\n }\n },\n error: reject,\n complete: resolve,\n });\n this.subscribe(subscriber);\n }) as Promise<void>;\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<any>): TeardownLogic {\n return this.source?.subscribe(subscriber);\n }\n\n /**\n * An interop point defined by the es7-observable spec https://github.com/zenparsing/es-observable\n * @return This instance of the observable.\n */\n [Symbol_observable]() {\n return this;\n }\n\n /* tslint:disable:max-line-length */\n pipe(): Observable<T>;\n pipe<A>(op1: OperatorFunction<T, A>): Observable<A>;\n pipe<A, B>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>): Observable<B>;\n pipe<A, B, C>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>): Observable<C>;\n pipe<A, B, C, D>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>\n ): Observable<D>;\n pipe<A, B, C, D, E>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>\n ): Observable<E>;\n pipe<A, B, C, D, E, F>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>\n ): Observable<F>;\n pipe<A, B, C, D, E, F, G>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>\n ): Observable<G>;\n pipe<A, B, C, D, E, F, G, H>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>\n ): Observable<H>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>\n ): Observable<I>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>,\n ...operations: OperatorFunction<any, any>[]\n ): Observable<unknown>;\n /* tslint:enable:max-line-length */\n\n /**\n * Used to stitch together functional operators into a chain.\n *\n * ## Example\n *\n * ```ts\n * import { interval, filter, map, scan } from 'rxjs';\n *\n * interval(1000)\n * .pipe(\n * filter(x => x % 2 === 0),\n * map(x => x + x),\n * scan((acc, x) => acc + x)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @return The Observable result of all the operators having been called\n * in the order they were passed in.\n */\n pipe(...operations: OperatorFunction<any, any>[]): Observable<any> {\n return pipeFromArray(operations)(this);\n }\n\n /* tslint:disable:max-line-length */\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: typeof Promise): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: PromiseConstructorLike): Promise<T | undefined>;\n /* tslint:enable:max-line-length */\n\n /**\n * Subscribe to this Observable and get a Promise resolving on\n * `complete` with the last emission (if any).\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * @param [promiseCtor] a constructor function used to instantiate\n * the Promise\n * @return A Promise that resolves with the last value emit, or\n * rejects on an error. If there were no emissions, Promise\n * resolves with undefined.\n * @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise\n */\n toPromise(promiseCtor?: PromiseConstructorLike): Promise<T | undefined> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor((resolve, reject) => {\n let value: T | undefined;\n this.subscribe(\n (x: T) => (value = x),\n (err: any) => reject(err),\n () => resolve(value)\n );\n }) as Promise<T | undefined>;\n }\n}\n\n/**\n * Decides between a passed promise constructor from consuming code,\n * A default configured promise constructor, and the native promise\n * constructor and returns it. If nothing can be found, it will throw\n * an error.\n * @param promiseCtor The optional promise constructor to passed by consuming code\n */\nfunction getPromiseCtor(promiseCtor: PromiseConstructorLike | undefined) {\n return promiseCtor ?? config.Promise ?? Promise;\n}\n\nfunction isObserver<T>(value: any): value is Observer<T> {\n return value && isFunction(value.next) && isFunction(value.error) && isFunction(value.complete);\n}\n\nfunction isSubscriber<T>(value: any): value is Subscriber<T> {\n return (value && value instanceof Subscriber) || (isObserver(value) && isSubscription(value));\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction } from '../types';\nimport { isFunction } from './isFunction';\n\n/**\n * Used to determine if an object is an Observable with a lift function.\n */\nexport function hasLift(source: any): source is { lift: InstanceType<typeof Observable>['lift'] } {\n return isFunction(source?.lift);\n}\n\n/**\n * Creates an `OperatorFunction`. Used to define operators throughout the library in a concise way.\n * @param init The logic to connect the liftedSource to the subscriber at the moment of subscription.\n */\nexport function operate<T, R>(\n init: (liftedSource: Observable<T>, subscriber: Subscriber<R>) => (() => void) | void\n): OperatorFunction<T, R> {\n return (source: Observable<T>) => {\n if (hasLift(source)) {\n return source.lift(function (this: Subscriber<R>, liftedSource: Observable<T>) {\n try {\n return init(liftedSource, this);\n } catch (err) {\n this.error(err);\n }\n });\n }\n throw new TypeError('Unable to lift unknown Observable type');\n };\n}\n", "import { Subscriber } from '../Subscriber';\n\n/**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional teardown logic here. This will only be called on teardown if the\n * subscriber itself is not already closed. This is called after all other teardown logic is executed.\n */\nexport function createOperatorSubscriber<T>(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n onFinalize?: () => void\n): Subscriber<T> {\n return new OperatorSubscriber(destination, onNext, onComplete, onError, onFinalize);\n}\n\n/**\n * A generic helper for allowing operators to be created with a Subscriber and\n * use closures to capture necessary state from the operator function itself.\n */\nexport class OperatorSubscriber<T> extends Subscriber<T> {\n /**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional finalization logic here. This will only be called on finalization if the\n * subscriber itself is not already closed. This is called after all other finalization logic is executed.\n * @param shouldUnsubscribe An optional check to see if an unsubscribe call should truly unsubscribe.\n * NOTE: This currently **ONLY** exists to support the strange behavior of {@link groupBy}, where unsubscription\n * to the resulting observable does not actually disconnect from the source if there are active subscriptions\n * to any grouped observable. (DO NOT EXPOSE OR USE EXTERNALLY!!!)\n */\n constructor(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n private onFinalize?: () => void,\n private shouldUnsubscribe?: () => boolean\n ) {\n // It's important - for performance reasons - that all of this class's\n // members are initialized and that they are always initialized in the same\n // order. This will ensure that all OperatorSubscriber instances have the\n // same hidden class in V8. This, in turn, will help keep the number of\n // hidden classes involved in property accesses within the base class as\n // low as possible. If the number of hidden classes involved exceeds four,\n // the property accesses will become megamorphic and performance penalties\n // will be incurred - i.e. inline caches won't be used.\n //\n // The reasons for ensuring all instances have the same hidden class are\n // further discussed in this blog post from Benedikt Meurer:\n // https://benediktmeurer.de/2018/03/23/impact-of-polymorphism-on-component-based-frameworks-like-react/\n super(destination);\n this._next = onNext\n ? function (this: OperatorSubscriber<T>, value: T) {\n try {\n onNext(value);\n } catch (err) {\n destination.error(err);\n }\n }\n : super._next;\n this._error = onError\n ? function (this: OperatorSubscriber<T>, err: any) {\n try {\n onError(err);\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._error;\n this._complete = onComplete\n ? function (this: OperatorSubscriber<T>) {\n try {\n onComplete();\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._complete;\n }\n\n unsubscribe() {\n if (!this.shouldUnsubscribe || this.shouldUnsubscribe()) {\n const { closed } = this;\n super.unsubscribe();\n // Execute additional teardown if we have any and we didn't already do so.\n !closed && this.onFinalize?.();\n }\n }\n}\n", "import { Subscription } from '../Subscription';\n\ninterface AnimationFrameProvider {\n schedule(callback: FrameRequestCallback): Subscription;\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n delegate:\n | {\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n }\n | undefined;\n}\n\nexport const animationFrameProvider: AnimationFrameProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n schedule(callback) {\n let request = requestAnimationFrame;\n let cancel: typeof cancelAnimationFrame | undefined = cancelAnimationFrame;\n const { delegate } = animationFrameProvider;\n if (delegate) {\n request = delegate.requestAnimationFrame;\n cancel = delegate.cancelAnimationFrame;\n }\n const handle = request((timestamp) => {\n // Clear the cancel function. The request has been fulfilled, so\n // attempting to cancel the request upon unsubscription would be\n // pointless.\n cancel = undefined;\n callback(timestamp);\n });\n return new Subscription(() => cancel?.(handle));\n },\n requestAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.requestAnimationFrame || requestAnimationFrame)(...args);\n },\n cancelAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.cancelAnimationFrame || cancelAnimationFrame)(...args);\n },\n delegate: undefined,\n};\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface ObjectUnsubscribedError extends Error {}\n\nexport interface ObjectUnsubscribedErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (): ObjectUnsubscribedError;\n}\n\n/**\n * An error thrown when an action is invalid because the object has been\n * unsubscribed.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n *\n * @class ObjectUnsubscribedError\n */\nexport const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor = createErrorClass(\n (_super) =>\n function ObjectUnsubscribedErrorImpl(this: any) {\n _super(this);\n this.name = 'ObjectUnsubscribedError';\n this.message = 'object unsubscribed';\n }\n);\n", "import { Operator } from './Operator';\nimport { Observable } from './Observable';\nimport { Subscriber } from './Subscriber';\nimport { Subscription, EMPTY_SUBSCRIPTION } from './Subscription';\nimport { Observer, SubscriptionLike, TeardownLogic } from './types';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { arrRemove } from './util/arrRemove';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A Subject is a special type of Observable that allows values to be\n * multicasted to many Observers. Subjects are like EventEmitters.\n *\n * Every Subject is an Observable and an Observer. You can subscribe to a\n * Subject, and you can call next to feed values as well as error and complete.\n */\nexport class Subject<T> extends Observable<T> implements SubscriptionLike {\n closed = false;\n\n private currentObservers: Observer<T>[] | null = null;\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n observers: Observer<T>[] = [];\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n isStopped = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n hasError = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n thrownError: any = null;\n\n /**\n * Creates a \"subject\" by basically gluing an observer to an observable.\n *\n * @deprecated Recommended you do not use. Will be removed at some point in the future. Plans for replacement still under discussion.\n */\n static create: (...args: any[]) => any = <T>(destination: Observer<T>, source: Observable<T>): AnonymousSubject<T> => {\n return new AnonymousSubject<T>(destination, source);\n };\n\n constructor() {\n // NOTE: This must be here to obscure Observable's constructor.\n super();\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n lift<R>(operator: Operator<T, R>): Observable<R> {\n const subject = new AnonymousSubject(this, this);\n subject.operator = operator as any;\n return subject as any;\n }\n\n /** @internal */\n protected _throwIfClosed() {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n }\n\n next(value: T) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n if (!this.currentObservers) {\n this.currentObservers = Array.from(this.observers);\n }\n for (const observer of this.currentObservers) {\n observer.next(value);\n }\n }\n });\n }\n\n error(err: any) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.hasError = this.isStopped = true;\n this.thrownError = err;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.error(err);\n }\n }\n });\n }\n\n complete() {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.isStopped = true;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.complete();\n }\n }\n });\n }\n\n unsubscribe() {\n this.isStopped = this.closed = true;\n this.observers = this.currentObservers = null!;\n }\n\n get observed() {\n return this.observers?.length > 0;\n }\n\n /** @internal */\n protected _trySubscribe(subscriber: Subscriber<T>): TeardownLogic {\n this._throwIfClosed();\n return super._trySubscribe(subscriber);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._checkFinalizedStatuses(subscriber);\n return this._innerSubscribe(subscriber);\n }\n\n /** @internal */\n protected _innerSubscribe(subscriber: Subscriber<any>) {\n const { hasError, isStopped, observers } = this;\n if (hasError || isStopped) {\n return EMPTY_SUBSCRIPTION;\n }\n this.currentObservers = null;\n observers.push(subscriber);\n return new Subscription(() => {\n this.currentObservers = null;\n arrRemove(observers, subscriber);\n });\n }\n\n /** @internal */\n protected _checkFinalizedStatuses(subscriber: Subscriber<any>) {\n const { hasError, thrownError, isStopped } = this;\n if (hasError) {\n subscriber.error(thrownError);\n } else if (isStopped) {\n subscriber.complete();\n }\n }\n\n /**\n * Creates a new Observable with this Subject as the source. You can do this\n * to create custom Observer-side logic of the Subject and conceal it from\n * code that uses the Observable.\n * @return Observable that this Subject casts to.\n */\n asObservable(): Observable<T> {\n const observable: any = new Observable<T>();\n observable.source = this;\n return observable;\n }\n}\n\nexport class AnonymousSubject<T> extends Subject<T> {\n constructor(\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n public destination?: Observer<T>,\n source?: Observable<T>\n ) {\n super();\n this.source = source;\n }\n\n next(value: T) {\n this.destination?.next?.(value);\n }\n\n error(err: any) {\n this.destination?.error?.(err);\n }\n\n complete() {\n this.destination?.complete?.();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n return this.source?.subscribe(subscriber) ?? EMPTY_SUBSCRIPTION;\n }\n}\n", "import { Subject } from './Subject';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\n\n/**\n * A variant of Subject that requires an initial value and emits its current\n * value whenever it is subscribed to.\n */\nexport class BehaviorSubject<T> extends Subject<T> {\n constructor(private _value: T) {\n super();\n }\n\n get value(): T {\n return this.getValue();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n const subscription = super._subscribe(subscriber);\n !subscription.closed && subscriber.next(this._value);\n return subscription;\n }\n\n getValue(): T {\n const { hasError, thrownError, _value } = this;\n if (hasError) {\n throw thrownError;\n }\n this._throwIfClosed();\n return _value;\n }\n\n next(value: T): void {\n super.next((this._value = value));\n }\n}\n", "import { TimestampProvider } from '../types';\n\ninterface DateTimestampProvider extends TimestampProvider {\n delegate: TimestampProvider | undefined;\n}\n\nexport const dateTimestampProvider: DateTimestampProvider = {\n now() {\n // Use the variable rather than `this` so that the function can be called\n // without being bound to the provider.\n return (dateTimestampProvider.delegate || Date).now();\n },\n delegate: undefined,\n};\n", "import { Subject } from './Subject';\nimport { TimestampProvider } from './types';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * A variant of {@link Subject} that \"replays\" old values to new subscribers by emitting them when they first subscribe.\n *\n * `ReplaySubject` has an internal buffer that will store a specified number of values that it has observed. Like `Subject`,\n * `ReplaySubject` \"observes\" values by having them passed to its `next` method. When it observes a value, it will store that\n * value for a time determined by the configuration of the `ReplaySubject`, as passed to its constructor.\n *\n * When a new subscriber subscribes to the `ReplaySubject` instance, it will synchronously emit all values in its buffer in\n * a First-In-First-Out (FIFO) manner. The `ReplaySubject` will also complete, if it has observed completion; and it will\n * error if it has observed an error.\n *\n * There are two main configuration items to be concerned with:\n *\n * 1. `bufferSize` - This will determine how many items are stored in the buffer, defaults to infinite.\n * 2. `windowTime` - The amount of time to hold a value in the buffer before removing it from the buffer.\n *\n * Both configurations may exist simultaneously. So if you would like to buffer a maximum of 3 values, as long as the values\n * are less than 2 seconds old, you could do so with a `new ReplaySubject(3, 2000)`.\n *\n * ### Differences with BehaviorSubject\n *\n * `BehaviorSubject` is similar to `new ReplaySubject(1)`, with a couple of exceptions:\n *\n * 1. `BehaviorSubject` comes \"primed\" with a single value upon construction.\n * 2. `ReplaySubject` will replay values, even after observing an error, where `BehaviorSubject` will not.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n * @see {@link shareReplay}\n */\nexport class ReplaySubject<T> extends Subject<T> {\n private _buffer: (T | number)[] = [];\n private _infiniteTimeWindow = true;\n\n /**\n * @param _bufferSize The size of the buffer to replay on subscription\n * @param _windowTime The amount of time the buffered items will stay buffered\n * @param _timestampProvider An object with a `now()` method that provides the current timestamp. This is used to\n * calculate the amount of time something has been buffered.\n */\n constructor(\n private _bufferSize = Infinity,\n private _windowTime = Infinity,\n private _timestampProvider: TimestampProvider = dateTimestampProvider\n ) {\n super();\n this._infiniteTimeWindow = _windowTime === Infinity;\n this._bufferSize = Math.max(1, _bufferSize);\n this._windowTime = Math.max(1, _windowTime);\n }\n\n next(value: T): void {\n const { isStopped, _buffer, _infiniteTimeWindow, _timestampProvider, _windowTime } = this;\n if (!isStopped) {\n _buffer.push(value);\n !_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);\n }\n this._trimBuffer();\n super.next(value);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._trimBuffer();\n\n const subscription = this._innerSubscribe(subscriber);\n\n const { _infiniteTimeWindow, _buffer } = this;\n // We use a copy here, so reentrant code does not mutate our array while we're\n // emitting it to a new subscriber.\n const copy = _buffer.slice();\n for (let i = 0; i < copy.length && !subscriber.closed; i += _infiniteTimeWindow ? 1 : 2) {\n subscriber.next(copy[i] as T);\n }\n\n this._checkFinalizedStatuses(subscriber);\n\n return subscription;\n }\n\n private _trimBuffer() {\n const { _bufferSize, _timestampProvider, _buffer, _infiniteTimeWindow } = this;\n // If we don't have an infinite buffer size, and we're over the length,\n // use splice to truncate the old buffer values off. Note that we have to\n // double the size for instances where we're not using an infinite time window\n // because we're storing the values and the timestamps in the same array.\n const adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;\n _bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);\n\n // Now, if we're not in an infinite time window, remove all values where the time is\n // older than what is allowed.\n if (!_infiniteTimeWindow) {\n const now = _timestampProvider.now();\n let last = 0;\n // Search the array for the first timestamp that isn't expired and\n // truncate the buffer up to that point.\n for (let i = 1; i < _buffer.length && (_buffer[i] as number) <= now; i += 2) {\n last = i;\n }\n last && _buffer.splice(0, last + 1);\n }\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Subscription } from '../Subscription';\nimport { SchedulerAction } from '../types';\n\n/**\n * A unit of work to be executed in a `scheduler`. An action is typically\n * created from within a {@link SchedulerLike} and an RxJS user does not need to concern\n * themselves about creating and manipulating an Action.\n *\n * ```ts\n * class Action<T> extends Subscription {\n * new (scheduler: Scheduler, work: (state?: T) => void);\n * schedule(state?: T, delay: number = 0): Subscription;\n * }\n * ```\n */\nexport class Action<T> extends Subscription {\n constructor(scheduler: Scheduler, work: (this: SchedulerAction<T>, state?: T) => void) {\n super();\n }\n /**\n * Schedules this action on its parent {@link SchedulerLike} for execution. May be passed\n * some context object, `state`. May happen at some point in the future,\n * according to the `delay` parameter, if specified.\n * @param state Some contextual data that the `work` function uses when called by the\n * Scheduler.\n * @param delay Time to wait before executing the work, where the time unit is implicit\n * and defined by the Scheduler.\n * @return A subscription in order to be able to unsubscribe the scheduled work.\n */\n public schedule(state?: T, delay: number = 0): Subscription {\n return this;\n }\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearIntervalFunction = (handle: TimerHandle) => void;\n\ninterface IntervalProvider {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n delegate:\n | {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n }\n | undefined;\n}\n\nexport const intervalProvider: IntervalProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setInterval(handler: () => void, timeout?: number, ...args) {\n const { delegate } = intervalProvider;\n if (delegate?.setInterval) {\n return delegate.setInterval(handler, timeout, ...args);\n }\n return setInterval(handler, timeout, ...args);\n },\n clearInterval(handle) {\n const { delegate } = intervalProvider;\n return (delegate?.clearInterval || clearInterval)(handle as any);\n },\n delegate: undefined,\n};\n", "import { Action } from './Action';\nimport { SchedulerAction } from '../types';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { intervalProvider } from './intervalProvider';\nimport { arrRemove } from '../util/arrRemove';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncAction<T> extends Action<T> {\n public id: TimerHandle | undefined;\n public state?: T;\n // @ts-ignore: Property has no initializer and is not definitely assigned\n public delay: number;\n protected pending: boolean = false;\n\n constructor(protected scheduler: AsyncScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (this.closed) {\n return this;\n }\n\n // Always replace the current state with the new state.\n this.state = state;\n\n const id = this.id;\n const scheduler = this.scheduler;\n\n //\n // Important implementation note:\n //\n // Actions only execute once by default, unless rescheduled from within the\n // scheduled callback. This allows us to implement single and repeat\n // actions via the same code path, without adding API surface area, as well\n // as mimic traditional recursion but across asynchronous boundaries.\n //\n // However, JS runtimes and timers distinguish between intervals achieved by\n // serial `setTimeout` calls vs. a single `setInterval` call. An interval of\n // serial `setTimeout` calls can be individually delayed, which delays\n // scheduling the next `setTimeout`, and so on. `setInterval` attempts to\n // guarantee the interval callback will be invoked more precisely to the\n // interval period, regardless of load.\n //\n // Therefore, we use `setInterval` to schedule single and repeat actions.\n // If the action reschedules itself with the same delay, the interval is not\n // canceled. If the action doesn't reschedule, or reschedules with a\n // different delay, the interval will be canceled after scheduled callback\n // execution.\n //\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n\n // Set the pending flag indicating that this action has been scheduled, or\n // has recursively rescheduled itself.\n this.pending = true;\n\n this.delay = delay;\n // If this action has already an async Id, don't request a new one.\n this.id = this.id ?? this.requestAsyncId(scheduler, this.id, delay);\n\n return this;\n }\n\n protected requestAsyncId(scheduler: AsyncScheduler, _id?: TimerHandle, delay: number = 0): TimerHandle {\n return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);\n }\n\n protected recycleAsyncId(_scheduler: AsyncScheduler, id?: TimerHandle, delay: number | null = 0): TimerHandle | undefined {\n // If this action is rescheduled with the same delay time, don't clear the interval id.\n if (delay != null && this.delay === delay && this.pending === false) {\n return id;\n }\n // Otherwise, if the action's delay time is different from the current delay,\n // or the action has been rescheduled before it's executed, clear the interval id\n if (id != null) {\n intervalProvider.clearInterval(id);\n }\n\n return undefined;\n }\n\n /**\n * Immediately executes this action and the `work` it contains.\n */\n public execute(state: T, delay: number): any {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n\n this.pending = false;\n const error = this._execute(state, delay);\n if (error) {\n return error;\n } else if (this.pending === false && this.id != null) {\n // Dequeue if the action didn't reschedule itself. Don't call\n // unsubscribe(), because the action could reschedule later.\n // For example:\n // ```\n // scheduler.schedule(function doWork(counter) {\n // /* ... I'm a busy worker bee ... */\n // var originalAction = this;\n // /* wait 100ms before rescheduling the action */\n // setTimeout(function () {\n // originalAction.schedule(counter + 1);\n // }, 100);\n // }, 1000);\n // ```\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n }\n\n protected _execute(state: T, _delay: number): any {\n let errored: boolean = false;\n let errorValue: any;\n try {\n this.work(state);\n } catch (e) {\n errored = true;\n // HACK: Since code elsewhere is relying on the \"truthiness\" of the\n // return here, we can't have it return \"\" or 0 or false.\n // TODO: Clean this up when we refactor schedulers mid-version-8 or so.\n errorValue = e ? e : new Error('Scheduled action threw falsy error');\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n }\n\n unsubscribe() {\n if (!this.closed) {\n const { id, scheduler } = this;\n const { actions } = scheduler;\n\n this.work = this.state = this.scheduler = null!;\n this.pending = false;\n\n arrRemove(actions, this);\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n\n this.delay = null!;\n super.unsubscribe();\n }\n }\n}\n", "import { Action } from './scheduler/Action';\nimport { Subscription } from './Subscription';\nimport { SchedulerLike, SchedulerAction } from './types';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * An execution context and a data structure to order tasks and schedule their\n * execution. Provides a notion of (potentially virtual) time, through the\n * `now()` getter method.\n *\n * Each unit of work in a Scheduler is called an `Action`.\n *\n * ```ts\n * class Scheduler {\n * now(): number;\n * schedule(work, delay?, state?): Subscription;\n * }\n * ```\n *\n * @deprecated Scheduler is an internal implementation detail of RxJS, and\n * should not be used directly. Rather, create your own class and implement\n * {@link SchedulerLike}. Will be made internal in v8.\n */\nexport class Scheduler implements SchedulerLike {\n public static now: () => number = dateTimestampProvider.now;\n\n constructor(private schedulerActionCtor: typeof Action, now: () => number = Scheduler.now) {\n this.now = now;\n }\n\n /**\n * A getter method that returns a number representing the current time\n * (at the time this function was called) according to the scheduler's own\n * internal clock.\n * @return A number that represents the current time. May or may not\n * have a relation to wall-clock time. May or may not refer to a time unit\n * (e.g. milliseconds).\n */\n public now: () => number;\n\n /**\n * Schedules a function, `work`, for execution. May happen at some point in\n * the future, according to the `delay` parameter, if specified. May be passed\n * some context object, `state`, which will be passed to the `work` function.\n *\n * The given arguments will be processed an stored as an Action object in a\n * queue of actions.\n *\n * @param work A function representing a task, or some unit of work to be\n * executed by the Scheduler.\n * @param delay Time to wait before executing the work, where the time unit is\n * implicit and defined by the Scheduler itself.\n * @param state Some contextual data that the `work` function uses when called\n * by the Scheduler.\n * @return A subscription in order to be able to unsubscribe the scheduled work.\n */\n public schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay: number = 0, state?: T): Subscription {\n return new this.schedulerActionCtor<T>(this, work).schedule(state, delay);\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Action } from './Action';\nimport { AsyncAction } from './AsyncAction';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncScheduler extends Scheduler {\n public actions: Array<AsyncAction<any>> = [];\n /**\n * A flag to indicate whether the Scheduler is currently executing a batch of\n * queued actions.\n * @internal\n */\n public _active: boolean = false;\n /**\n * An internal ID used to track the latest asynchronous task such as those\n * coming from `setTimeout`, `setInterval`, `requestAnimationFrame`, and\n * others.\n * @internal\n */\n public _scheduled: TimerHandle | undefined;\n\n constructor(SchedulerAction: typeof Action, now: () => number = Scheduler.now) {\n super(SchedulerAction, now);\n }\n\n public flush(action: AsyncAction<any>): void {\n const { actions } = this;\n\n if (this._active) {\n actions.push(action);\n return;\n }\n\n let error: any;\n this._active = true;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions.shift()!)); // exhaust the scheduler queue\n\n this._active = false;\n\n if (error) {\n while ((action = actions.shift()!)) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\n/**\n *\n * Async Scheduler\n *\n * <span class=\"informal\">Schedule task as if you used setTimeout(task, duration)</span>\n *\n * `async` scheduler schedules tasks asynchronously, by putting them on the JavaScript\n * event loop queue. It is best used to delay tasks in time or to schedule tasks repeating\n * in intervals.\n *\n * If you just want to \"defer\" task, that is to perform it right after currently\n * executing synchronous code ends (commonly achieved by `setTimeout(deferredTask, 0)`),\n * better choice will be the {@link asapScheduler} scheduler.\n *\n * ## Examples\n * Use async scheduler to delay task\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * const task = () => console.log('it works!');\n *\n * asyncScheduler.schedule(task, 2000);\n *\n * // After 2 seconds logs:\n * // \"it works!\"\n * ```\n *\n * Use async scheduler to repeat task in intervals\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * function task(state) {\n * console.log(state);\n * this.schedule(state + 1, 1000); // `this` references currently executing Action,\n * // which we reschedule with new state and delay\n * }\n *\n * asyncScheduler.schedule(task, 3000, 0);\n *\n * // Logs:\n * // 0 after 3s\n * // 1 after 4s\n * // 2 after 5s\n * // 3 after 6s\n * ```\n */\n\nexport const asyncScheduler = new AsyncScheduler(AsyncAction);\n\n/**\n * @deprecated Renamed to {@link asyncScheduler}. Will be removed in v8.\n */\nexport const async = asyncScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nimport { SchedulerAction } from '../types';\nimport { animationFrameProvider } from './animationFrameProvider';\nimport { TimerHandle } from './timerHandle';\n\nexport class AnimationFrameAction<T> extends AsyncAction<T> {\n constructor(protected scheduler: AnimationFrameScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay is greater than 0, request as an async action.\n if (delay !== null && delay > 0) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n // Push the action to the end of the scheduler queue.\n scheduler.actions.push(this);\n // If an animation frame has already been requested, don't request another\n // one. If an animation frame hasn't been requested yet, request one. Return\n // the current animation frame request id.\n return scheduler._scheduled || (scheduler._scheduled = animationFrameProvider.requestAnimationFrame(() => scheduler.flush(undefined)));\n }\n\n protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle | undefined {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n if (delay != null ? delay > 0 : this.delay > 0) {\n return super.recycleAsyncId(scheduler, id, delay);\n }\n // If the scheduler queue has no remaining actions with the same async id,\n // cancel the requested animation frame and set the scheduled flag to\n // undefined so the next AnimationFrameAction will request its own.\n const { actions } = scheduler;\n if (id != null && id === scheduler._scheduled && actions[actions.length - 1]?.id !== id) {\n animationFrameProvider.cancelAnimationFrame(id as number);\n scheduler._scheduled = undefined;\n }\n // Return undefined so the action knows to request a new async id if it's rescheduled.\n return undefined;\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\nexport class AnimationFrameScheduler extends AsyncScheduler {\n public flush(action?: AsyncAction<any>): void {\n this._active = true;\n // The async id that effects a call to flush is stored in _scheduled.\n // Before executing an action, it's necessary to check the action's async\n // id to determine whether it's supposed to be executed in the current\n // flush.\n // Previous implementations of this method used a count to determine this,\n // but that was unsound, as actions that are unsubscribed - i.e. cancelled -\n // are removed from the actions array and that can shift actions that are\n // scheduled to be executed in a subsequent flush into positions at which\n // they are executed within the current flush.\n let flushId;\n if (action) {\n flushId = action.id;\n } else {\n flushId = this._scheduled;\n this._scheduled = undefined;\n }\n\n const { actions } = this;\n let error: any;\n action = action || actions.shift()!;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions[0]) && action.id === flushId && actions.shift());\n\n this._active = false;\n\n if (error) {\n while ((action = actions[0]) && action.id === flushId && actions.shift()) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AnimationFrameAction } from './AnimationFrameAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\n\n/**\n *\n * Animation Frame Scheduler\n *\n * <span class=\"informal\">Perform task when `window.requestAnimationFrame` would fire</span>\n *\n * When `animationFrame` scheduler is used with delay, it will fall back to {@link asyncScheduler} scheduler\n * behaviour.\n *\n * Without delay, `animationFrame` scheduler can be used to create smooth browser animations.\n * It makes sure scheduled task will happen just before next browser content repaint,\n * thus performing animations as efficiently as possible.\n *\n * ## Example\n * Schedule div height animation\n * ```ts\n * // html: <div style=\"background: #0ff;\"></div>\n * import { animationFrameScheduler } from 'rxjs';\n *\n * const div = document.querySelector('div');\n *\n * animationFrameScheduler.schedule(function(height) {\n * div.style.height = height + \"px\";\n *\n * this.schedule(height + 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * }, 0, 0);\n *\n * // You will see a div element growing in height\n * ```\n */\n\nexport const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);\n\n/**\n * @deprecated Renamed to {@link animationFrameScheduler}. Will be removed in v8.\n */\nexport const animationFrame = animationFrameScheduler;\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\n/**\n * A simple Observable that emits no items to the Observer and immediately\n * emits a complete notification.\n *\n * <span class=\"informal\">Just emits 'complete', and nothing else.</span>\n *\n * ![](empty.png)\n *\n * A simple Observable that only emits the complete notification. It can be used\n * for composing with other Observables, such as in a {@link mergeMap}.\n *\n * ## Examples\n *\n * Log complete notification\n *\n * ```ts\n * import { EMPTY } from 'rxjs';\n *\n * EMPTY.subscribe({\n * next: () => console.log('Next'),\n * complete: () => console.log('Complete!')\n * });\n *\n * // Outputs\n * // Complete!\n * ```\n *\n * Emit the number 7, then complete\n *\n * ```ts\n * import { EMPTY, startWith } from 'rxjs';\n *\n * const result = EMPTY.pipe(startWith(7));\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // 7\n * ```\n *\n * Map and flatten only odd numbers to the sequence `'a'`, `'b'`, `'c'`\n *\n * ```ts\n * import { interval, mergeMap, of, EMPTY } from 'rxjs';\n *\n * const interval$ = interval(1000);\n * const result = interval$.pipe(\n * mergeMap(x => x % 2 === 1 ? of('a', 'b', 'c') : EMPTY),\n * );\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following to the console:\n * // x is equal to the count on the interval, e.g. (0, 1, 2, 3, ...)\n * // x will occur every 1000ms\n * // if x % 2 is equal to 1, print a, b, c (each on its own)\n * // if x % 2 is not equal to 1, nothing will be output\n * ```\n *\n * @see {@link Observable}\n * @see {@link NEVER}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const EMPTY = new Observable<never>((subscriber) => subscriber.complete());\n\n/**\n * @param scheduler A {@link SchedulerLike} to use for scheduling\n * the emission of the complete notification.\n * @deprecated Replaced with the {@link EMPTY} constant or {@link scheduled} (e.g. `scheduled([], scheduler)`). Will be removed in v8.\n */\nexport function empty(scheduler?: SchedulerLike) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\n\nfunction emptyScheduled(scheduler: SchedulerLike) {\n return new Observable<never>((subscriber) => scheduler.schedule(() => subscriber.complete()));\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport function isScheduler(value: any): value is SchedulerLike {\n return value && isFunction(value.schedule);\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\nimport { isScheduler } from './isScheduler';\n\nfunction last<T>(arr: T[]): T | undefined {\n return arr[arr.length - 1];\n}\n\nexport function popResultSelector(args: any[]): ((...args: unknown[]) => unknown) | undefined {\n return isFunction(last(args)) ? args.pop() : undefined;\n}\n\nexport function popScheduler(args: any[]): SchedulerLike | undefined {\n return isScheduler(last(args)) ? args.pop() : undefined;\n}\n\nexport function popNumber(args: any[], defaultValue: number): number {\n return typeof last(args) === 'number' ? args.pop()! : defaultValue;\n}\n", "export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');", "import { isFunction } from \"./isFunction\";\n\n/**\n * Tests to see if the object is \"thennable\".\n * @param value the object to test\n */\nexport function isPromise(value: any): value is PromiseLike<any> {\n return isFunction(value?.then);\n}\n", "import { InteropObservable } from '../types';\nimport { observable as Symbol_observable } from '../symbol/observable';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being Observable (but not necessary an Rx Observable) */\nexport function isInteropObservable(input: any): input is InteropObservable<any> {\n return isFunction(input[Symbol_observable]);\n}\n", "import { isFunction } from './isFunction';\n\nexport function isAsyncIterable<T>(obj: any): obj is AsyncIterable<T> {\n return Symbol.asyncIterator && isFunction(obj?.[Symbol.asyncIterator]);\n}\n", "/**\n * Creates the TypeError to throw if an invalid object is passed to `from` or `scheduled`.\n * @param input The object that was passed.\n */\nexport function createInvalidObservableTypeError(input: any) {\n // TODO: We should create error codes that can be looked up, so this can be less verbose.\n return new TypeError(\n `You provided ${\n input !== null && typeof input === 'object' ? 'an invalid object' : `'${input}'`\n } where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`\n );\n}\n", "export function getSymbolIterator(): symbol {\n if (typeof Symbol !== 'function' || !Symbol.iterator) {\n return '@@iterator' as any;\n }\n\n return Symbol.iterator;\n}\n\nexport const iterator = getSymbolIterator();\n", "import { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being an Iterable */\nexport function isIterable(input: any): input is Iterable<any> {\n return isFunction(input?.[Symbol_iterator]);\n}\n", "import { ReadableStreamLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport async function* readableStreamLikeToAsyncGenerator<T>(readableStream: ReadableStreamLike<T>): AsyncGenerator<T> {\n const reader = readableStream.getReader();\n try {\n while (true) {\n const { value, done } = await reader.read();\n if (done) {\n return;\n }\n yield value!;\n }\n } finally {\n reader.releaseLock();\n }\n}\n\nexport function isReadableStreamLike<T>(obj: any): obj is ReadableStreamLike<T> {\n // We don't want to use instanceof checks because they would return\n // false for instances from another Realm, like an <iframe>.\n return isFunction(obj?.getReader);\n}\n", "import { isArrayLike } from '../util/isArrayLike';\nimport { isPromise } from '../util/isPromise';\nimport { Observable } from '../Observable';\nimport { ObservableInput, ObservedValueOf, ReadableStreamLike } from '../types';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isIterable } from '../util/isIterable';\nimport { isReadableStreamLike, readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\nimport { Subscriber } from '../Subscriber';\nimport { isFunction } from '../util/isFunction';\nimport { reportUnhandledError } from '../util/reportUnhandledError';\nimport { observable as Symbol_observable } from '../symbol/observable';\n\nexport function innerFrom<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\nexport function innerFrom<T>(input: ObservableInput<T>): Observable<T> {\n if (input instanceof Observable) {\n return input;\n }\n if (input != null) {\n if (isInteropObservable(input)) {\n return fromInteropObservable(input);\n }\n if (isArrayLike(input)) {\n return fromArrayLike(input);\n }\n if (isPromise(input)) {\n return fromPromise(input);\n }\n if (isAsyncIterable(input)) {\n return fromAsyncIterable(input);\n }\n if (isIterable(input)) {\n return fromIterable(input);\n }\n if (isReadableStreamLike(input)) {\n return fromReadableStreamLike(input);\n }\n }\n\n throw createInvalidObservableTypeError(input);\n}\n\n/**\n * Creates an RxJS Observable from an object that implements `Symbol.observable`.\n * @param obj An object that properly implements `Symbol.observable`.\n */\nexport function fromInteropObservable<T>(obj: any) {\n return new Observable((subscriber: Subscriber<T>) => {\n const obs = obj[Symbol_observable]();\n if (isFunction(obs.subscribe)) {\n return obs.subscribe(subscriber);\n }\n // Should be caught by observable subscribe function error handling.\n throw new TypeError('Provided object does not correctly implement Symbol.observable');\n });\n}\n\n/**\n * Synchronously emits the values of an array like and completes.\n * This is exported because there are creation functions and operators that need to\n * make direct use of the same logic, and there's no reason to make them run through\n * `from` conditionals because we *know* they're dealing with an array.\n * @param array The array to emit values from\n */\nexport function fromArrayLike<T>(array: ArrayLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n // Loop over the array and emit each value. Note two things here:\n // 1. We're making sure that the subscriber is not closed on each loop.\n // This is so we don't continue looping over a very large array after\n // something like a `take`, `takeWhile`, or other synchronous unsubscription\n // has already unsubscribed.\n // 2. In this form, reentrant code can alter that array we're looping over.\n // This is a known issue, but considered an edge case. The alternative would\n // be to copy the array before executing the loop, but this has\n // performance implications.\n for (let i = 0; i < array.length && !subscriber.closed; i++) {\n subscriber.next(array[i]);\n }\n subscriber.complete();\n });\n}\n\nexport function fromPromise<T>(promise: PromiseLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n promise\n .then(\n (value) => {\n if (!subscriber.closed) {\n subscriber.next(value);\n subscriber.complete();\n }\n },\n (err: any) => subscriber.error(err)\n )\n .then(null, reportUnhandledError);\n });\n}\n\nexport function fromIterable<T>(iterable: Iterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n for (const value of iterable) {\n subscriber.next(value);\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n });\n}\n\nexport function fromAsyncIterable<T>(asyncIterable: AsyncIterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n process(asyncIterable, subscriber).catch((err) => subscriber.error(err));\n });\n}\n\nexport function fromReadableStreamLike<T>(readableStream: ReadableStreamLike<T>) {\n return fromAsyncIterable(readableStreamLikeToAsyncGenerator(readableStream));\n}\n\nasync function process<T>(asyncIterable: AsyncIterable<T>, subscriber: Subscriber<T>) {\n for await (const value of asyncIterable) {\n subscriber.next(value);\n // A side-effect may have closed our subscriber,\n // check before the next iteration.\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n}\n", "import { Subscription } from '../Subscription';\nimport { SchedulerAction, SchedulerLike } from '../types';\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay: number,\n repeat: true\n): void;\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay?: number,\n repeat?: false\n): Subscription;\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay = 0,\n repeat = false\n): Subscription | void {\n const scheduleSubscription = scheduler.schedule(function (this: SchedulerAction<any>) {\n work();\n if (repeat) {\n parentSubscription.add(this.schedule(null, delay));\n } else {\n this.unsubscribe();\n }\n }, delay);\n\n parentSubscription.add(scheduleSubscription);\n\n if (!repeat) {\n // Because user-land scheduler implementations are unlikely to properly reuse\n // Actions for repeat scheduling, we can't trust that the returned subscription\n // will control repeat subscription scenarios. So we're trying to avoid using them\n // incorrectly within this library.\n return scheduleSubscription;\n }\n}\n", "/** @prettier */\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Re-emits all notifications from source Observable with specified scheduler.\n *\n * <span class=\"informal\">Ensure a specific scheduler is used, from outside of an Observable.</span>\n *\n * `observeOn` is an operator that accepts a scheduler as a first parameter, which will be used to reschedule\n * notifications emitted by the source Observable. It might be useful, if you do not have control over\n * internal scheduler of a given Observable, but want to control when its values are emitted nevertheless.\n *\n * Returned Observable emits the same notifications (nexted values, complete and error events) as the source Observable,\n * but rescheduled with provided scheduler. Note that this doesn't mean that source Observables internal\n * scheduler will be replaced in any way. Original scheduler still will be used, but when the source Observable emits\n * notification, it will be immediately scheduled again - this time with scheduler passed to `observeOn`.\n * An anti-pattern would be calling `observeOn` on Observable that emits lots of values synchronously, to split\n * that emissions into asynchronous chunks. For this to happen, scheduler would have to be passed into the source\n * Observable directly (usually into the operator that creates it). `observeOn` simply delays notifications a\n * little bit more, to ensure that they are emitted at expected moments.\n *\n * As a matter of fact, `observeOn` accepts second parameter, which specifies in milliseconds with what delay notifications\n * will be emitted. The main difference between {@link delay} operator and `observeOn` is that `observeOn`\n * will delay all notifications - including error notifications - while `delay` will pass through error\n * from source Observable immediately when it is emitted. In general it is highly recommended to use `delay` operator\n * for any kind of delaying of values in the stream, while using `observeOn` to specify which scheduler should be used\n * for notification emissions in general.\n *\n * ## Example\n *\n * Ensure values in subscribe are called just before browser repaint\n *\n * ```ts\n * import { interval, observeOn, animationFrameScheduler } from 'rxjs';\n *\n * const someDiv = document.createElement('div');\n * someDiv.style.cssText = 'width: 200px;background: #09c';\n * document.body.appendChild(someDiv);\n * const intervals = interval(10); // Intervals are scheduled\n * // with async scheduler by default...\n * intervals.pipe(\n * observeOn(animationFrameScheduler) // ...but we will observe on animationFrame\n * ) // scheduler to ensure smooth animation.\n * .subscribe(val => {\n * someDiv.style.height = val + 'px';\n * });\n * ```\n *\n * @see {@link delay}\n *\n * @param scheduler Scheduler that will be used to reschedule notifications from source Observable.\n * @param delay Number of milliseconds that states with what delay every notification should be rescheduled.\n * @return A function that returns an Observable that emits the same\n * notifications as the source Observable, but with provided scheduler.\n */\nexport function observeOn<T>(scheduler: SchedulerLike, delay = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => executeSchedule(subscriber, scheduler, () => subscriber.next(value), delay),\n () => executeSchedule(subscriber, scheduler, () => subscriber.complete(), delay),\n (err) => executeSchedule(subscriber, scheduler, () => subscriber.error(err), delay)\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Asynchronously subscribes Observers to this Observable on the specified {@link SchedulerLike}.\n *\n * With `subscribeOn` you can decide what type of scheduler a specific Observable will be using when it is subscribed to.\n *\n * Schedulers control the speed and order of emissions to observers from an Observable stream.\n *\n * ![](subscribeOn.png)\n *\n * ## Example\n *\n * Given the following code:\n *\n * ```ts\n * import { of, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3);\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 1\n * // 2\n * // 3\n * // 4\n * // 5\n * // 6\n * ```\n *\n * Both Observable `a` and `b` will emit their values directly and synchronously once they are subscribed to.\n *\n * If we instead use the `subscribeOn` operator declaring that we want to use the {@link asyncScheduler} for values emitted by Observable `a`:\n *\n * ```ts\n * import { of, subscribeOn, asyncScheduler, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3).pipe(subscribeOn(asyncScheduler));\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 4\n * // 5\n * // 6\n * // 1\n * // 2\n * // 3\n * ```\n *\n * The reason for this is that Observable `b` emits its values directly and synchronously like before\n * but the emissions from `a` are scheduled on the event loop because we are now using the {@link asyncScheduler} for that specific Observable.\n *\n * @param scheduler The {@link SchedulerLike} to perform subscription actions on.\n * @param delay A delay to pass to the scheduler to delay subscriptions\n * @return A function that returns an Observable modified so that its\n * subscriptions happen on the specified {@link SchedulerLike}.\n */\nexport function subscribeOn<T>(scheduler: SchedulerLike, delay: number = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n subscriber.add(scheduler.schedule(() => source.subscribe(subscriber), delay));\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { InteropObservable, SchedulerLike } from '../types';\n\nexport function scheduleObservable<T>(input: InteropObservable<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { SchedulerLike } from '../types';\n\nexport function schedulePromise<T>(input: PromiseLike<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\nexport function scheduleArray<T>(input: ArrayLike<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n // The current array index.\n let i = 0;\n // Start iterating over the array like on a schedule.\n return scheduler.schedule(function () {\n if (i === input.length) {\n // If we have hit the end of the array like in the\n // previous job, we can complete.\n subscriber.complete();\n } else {\n // Otherwise let's next the value at the current index,\n // then increment our index.\n subscriber.next(input[i++]);\n // If the last emission didn't cause us to close the subscriber\n // (via take or some side effect), reschedule the job and we'll\n // make another pass.\n if (!subscriber.closed) {\n this.schedule();\n }\n }\n });\n });\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from '../util/isFunction';\nimport { executeSchedule } from '../util/executeSchedule';\n\n/**\n * Used in {@link scheduled} to create an observable from an Iterable.\n * @param input The iterable to create an observable from\n * @param scheduler The scheduler to use\n */\nexport function scheduleIterable<T>(input: Iterable<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n let iterator: Iterator<T, T>;\n\n // Schedule the initial creation of the iterator from\n // the iterable. This is so the code in the iterable is\n // not called until the scheduled job fires.\n executeSchedule(subscriber, scheduler, () => {\n // Create the iterator.\n iterator = (input as any)[Symbol_iterator]();\n\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n let value: T;\n let done: boolean | undefined;\n try {\n // Pull the value out of the iterator\n ({ value, done } = iterator.next());\n } catch (err) {\n // We got an error while pulling from the iterator\n subscriber.error(err);\n return;\n }\n\n if (done) {\n // If it is \"done\" we just complete. This mimics the\n // behavior of JavaScript's `for..of` consumption of\n // iterables, which will not emit the value from an iterator\n // result of `{ done: true: value: 'here' }`.\n subscriber.complete();\n } else {\n // The iterable is not done, emit the value.\n subscriber.next(value);\n }\n },\n 0,\n true\n );\n });\n\n // During finalization, if we see this iterator has a `return` method,\n // then we know it is a Generator, and not just an Iterator. So we call\n // the `return()` function. This will ensure that any `finally { }` blocks\n // inside of the generator we can hit will be hit properly.\n return () => isFunction(iterator?.return) && iterator.return();\n });\n}\n", "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { executeSchedule } from '../util/executeSchedule';\n\nexport function scheduleAsyncIterable<T>(input: AsyncIterable<T>, scheduler: SchedulerLike) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable<T>((subscriber) => {\n executeSchedule(subscriber, scheduler, () => {\n const iterator = input[Symbol.asyncIterator]();\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n iterator.next().then((result) => {\n if (result.done) {\n // This will remove the subscriptions from\n // the parent subscription.\n subscriber.complete();\n } else {\n subscriber.next(result.value);\n }\n });\n },\n 0,\n true\n );\n });\n });\n}\n", "import { SchedulerLike, ReadableStreamLike } from '../types';\nimport { Observable } from '../Observable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\n\nexport function scheduleReadableStreamLike<T>(input: ReadableStreamLike<T>, scheduler: SchedulerLike): Observable<T> {\n return scheduleAsyncIterable(readableStreamLikeToAsyncGenerator(input), scheduler);\n}\n", "import { scheduleObservable } from './scheduleObservable';\nimport { schedulePromise } from './schedulePromise';\nimport { scheduleArray } from './scheduleArray';\nimport { scheduleIterable } from './scheduleIterable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isPromise } from '../util/isPromise';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isIterable } from '../util/isIterable';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isReadableStreamLike } from '../util/isReadableStreamLike';\nimport { scheduleReadableStreamLike } from './scheduleReadableStreamLike';\n\n/**\n * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions\n * are scheduled on the provided scheduler.\n *\n * @see {@link from}\n * @see {@link of}\n *\n * @param input The observable, array, promise, iterable, etc you would like to schedule\n * @param scheduler The scheduler to use to schedule the subscription and emissions from\n * the returned observable.\n */\nexport function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T> {\n if (input != null) {\n if (isInteropObservable(input)) {\n return scheduleObservable(input, scheduler);\n }\n if (isArrayLike(input)) {\n return scheduleArray(input, scheduler);\n }\n if (isPromise(input)) {\n return schedulePromise(input, scheduler);\n }\n if (isAsyncIterable(input)) {\n return scheduleAsyncIterable(input, scheduler);\n }\n if (isIterable(input)) {\n return scheduleIterable(input, scheduler);\n }\n if (isReadableStreamLike(input)) {\n return scheduleReadableStreamLike(input, scheduler);\n }\n }\n throw createInvalidObservableTypeError(input);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf } from '../types';\nimport { scheduled } from '../scheduled/scheduled';\nimport { innerFrom } from './innerFrom';\n\nexport function from<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function from<O extends ObservableInput<any>>(input: O, scheduler: SchedulerLike | undefined): Observable<ObservedValueOf<O>>;\n\n/**\n * Creates an Observable from an Array, an array-like object, a Promise, an iterable object, or an Observable-like object.\n *\n * <span class=\"informal\">Converts almost anything to an Observable.</span>\n *\n * ![](from.png)\n *\n * `from` converts various other objects and data types into Observables. It also converts a Promise, an array-like, or an\n * <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#iterable\" target=\"_blank\">iterable</a>\n * object into an Observable that emits the items in that promise, array, or iterable. A String, in this context, is treated\n * as an array of characters. Observable-like objects (contains a function named with the ES2015 Symbol for Observable) can also be\n * converted through this operator.\n *\n * ## Examples\n *\n * Converts an array to an Observable\n *\n * ```ts\n * import { from } from 'rxjs';\n *\n * const array = [10, 20, 30];\n * const result = from(array);\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 10\n * // 20\n * // 30\n * ```\n *\n * Convert an infinite iterable (from a generator) to an Observable\n *\n * ```ts\n * import { from, take } from 'rxjs';\n *\n * function* generateDoubles(seed) {\n * let i = seed;\n * while (true) {\n * yield i;\n * i = 2 * i; // double it\n * }\n * }\n *\n * const iterator = generateDoubles(3);\n * const result = from(iterator).pipe(take(10));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 3\n * // 6\n * // 12\n * // 24\n * // 48\n * // 96\n * // 192\n * // 384\n * // 768\n * // 1536\n * ```\n *\n * With `asyncScheduler`\n *\n * ```ts\n * import { from, asyncScheduler } from 'rxjs';\n *\n * console.log('start');\n *\n * const array = [10, 20, 30];\n * const result = from(array, asyncScheduler);\n *\n * result.subscribe(x => console.log(x));\n *\n * console.log('end');\n *\n * // Logs:\n * // 'start'\n * // 'end'\n * // 10\n * // 20\n * // 30\n * ```\n *\n * @see {@link fromEvent}\n * @see {@link fromEventPattern}\n *\n * @param input A subscription object, a Promise, an Observable-like,\n * an Array, an iterable, or an array-like object to be converted.\n * @param scheduler An optional {@link SchedulerLike} on which to schedule the emission of values.\n * @return An Observable converted from {@link ObservableInput}.\n */\nexport function from<T>(input: ObservableInput<T>, scheduler?: SchedulerLike): Observable<T> {\n return scheduler ? scheduled(input, scheduler) : innerFrom(input);\n}\n", "import { SchedulerLike, ValueFromArray } from '../types';\nimport { Observable } from '../Observable';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function of(value: null): Observable<null>;\nexport function of(value: undefined): Observable<undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of(scheduler: SchedulerLike): Observable<never>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of<A extends readonly unknown[]>(...valuesAndScheduler: [...A, SchedulerLike]): Observable<ValueFromArray<A>>;\n\nexport function of(): Observable<never>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function of<T>(): Observable<T>;\nexport function of<T>(value: T): Observable<T>;\nexport function of<A extends readonly unknown[]>(...values: A): Observable<ValueFromArray<A>>;\n\n/**\n * Converts the arguments to an observable sequence.\n *\n * <span class=\"informal\">Each argument becomes a `next` notification.</span>\n *\n * ![](of.png)\n *\n * Unlike {@link from}, it does not do any flattening and emits each argument in whole\n * as a separate `next` notification.\n *\n * ## Examples\n *\n * Emit the values `10, 20, 30`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of(10, 20, 30)\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: 10\n * // next: 20\n * // next: 30\n * // the end\n * ```\n *\n * Emit the array `[1, 2, 3]`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of([1, 2, 3])\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: [1, 2, 3]\n * // the end\n * ```\n *\n * @see {@link from}\n * @see {@link range}\n *\n * @param args A comma separated list of arguments you want to be emitted.\n * @return An Observable that synchronously emits the arguments described\n * above and then immediately completes.\n */\nexport function of<T>(...args: Array<T | SchedulerLike>): Observable<T> {\n const scheduler = popScheduler(args);\n return from(args as T[], scheduler);\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { SchedulerLike } from '../types';\nimport { isFunction } from '../util/isFunction';\n\n/**\n * Creates an observable that will create an error instance and push it to the consumer as an error\n * immediately upon subscription.\n *\n * <span class=\"informal\">Just errors and does nothing else</span>\n *\n * ![](throw.png)\n *\n * This creation function is useful for creating an observable that will create an error and error every\n * time it is subscribed to. Generally, inside of most operators when you might want to return an errored\n * observable, this is unnecessary. In most cases, such as in the inner return of {@link concatMap},\n * {@link mergeMap}, {@link defer}, and many others, you can simply throw the error, and RxJS will pick\n * that up and notify the consumer of the error.\n *\n * ## Example\n *\n * Create a simple observable that will create a new error with a timestamp and log it\n * and the message every time you subscribe to it\n *\n * ```ts\n * import { throwError } from 'rxjs';\n *\n * let errorCount = 0;\n *\n * const errorWithTimestamp$ = throwError(() => {\n * const error: any = new Error(`This is error number ${ ++errorCount }`);\n * error.timestamp = Date.now();\n * return error;\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * // Logs the timestamp and a new error message for each subscription\n * ```\n *\n * ### Unnecessary usage\n *\n * Using `throwError` inside of an operator or creation function\n * with a callback, is usually not necessary\n *\n * ```ts\n * import { of, concatMap, timer, throwError } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // This is probably overkill.\n * return throwError(() => new Error(`Invalid time ${ ms }`));\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * You can just throw the error instead\n *\n * ```ts\n * import { of, concatMap, timer } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // Cleaner and easier to read for most folks.\n * throw new Error(`Invalid time ${ ms }`);\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * @param errorFactory A factory function that will create the error instance that is pushed.\n */\nexport function throwError(errorFactory: () => any): Observable<never>;\n\n/**\n * Returns an observable that will error with the specified error immediately upon subscription.\n *\n * @param error The error instance to emit\n * @deprecated Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is\n * because it will create the error at the moment it should be created and capture a more appropriate stack trace. If\n * for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);`.\n */\nexport function throwError(error: any): Observable<never>;\n\n/**\n * Notifies the consumer of an error using a given scheduler by scheduling it at delay `0` upon subscription.\n *\n * @param errorOrErrorFactory An error instance or error factory\n * @param scheduler A scheduler to use to schedule the error notification\n * @deprecated The `scheduler` parameter will be removed in v8.\n * Use `throwError` in combination with {@link observeOn}: `throwError(() => new Error('test')).pipe(observeOn(scheduler));`.\n * Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport function throwError(errorOrErrorFactory: any, scheduler: SchedulerLike): Observable<never>;\n\nexport function throwError(errorOrErrorFactory: any, scheduler?: SchedulerLike): Observable<never> {\n const errorFactory = isFunction(errorOrErrorFactory) ? errorOrErrorFactory : () => errorOrErrorFactory;\n const init = (subscriber: Subscriber<never>) => subscriber.error(errorFactory());\n return new Observable(scheduler ? (subscriber) => scheduler.schedule(init as any, 0, subscriber) : init);\n}\n", "/**\n * Checks to see if a value is not only a `Date` object,\n * but a *valid* `Date` object that can be converted to a\n * number. For example, `new Date('blah')` is indeed an\n * `instanceof Date`, however it cannot be converted to a\n * number.\n */\nexport function isValidDate(value: any): value is Date {\n return value instanceof Date && !isNaN(value as any);\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;\n\n/**\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * ![](map.png)\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * ## Example\n *\n * Map every click to the `clientX` position of that click\n *\n * ```ts\n * import { fromEvent, map } from 'rxjs';\n *\n * const clicks = fromEvent<PointerEvent>(document, 'click');\n * const positions = clicks.pipe(map(ev => ev.clientX));\n *\n * positions.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param project The function to apply to each `value` emitted by the source\n * Observable. The `index` parameter is the number `i` for the i-th emission\n * that has happened since the subscription, starting from the number `0`.\n * @param thisArg An optional argument to define what `this` is in the\n * `project` function.\n * @return A function that returns an Observable that emits the values from the\n * source Observable transformed by the given `project` function.\n */\nexport function map<T, R>(project: (value: T, index: number) => R, thisArg?: any): OperatorFunction<T, R> {\n return operate((source, subscriber) => {\n // The index of the value from the source. Used with projection.\n let index = 0;\n // Subscribe to the source, all errors and completions are sent along\n // to the consumer.\n source.subscribe(\n createOperatorSubscriber(subscriber, (value: T) => {\n // Call the projection function with the appropriate this context,\n // and send the resulting value to the consumer.\n subscriber.next(project.call(thisArg, value, index++));\n })\n );\n });\n}\n", "import { OperatorFunction } from \"../types\";\nimport { map } from \"../operators/map\";\n\nconst { isArray } = Array;\n\nfunction callOrApply<T, R>(fn: ((...values: T[]) => R), args: T|T[]): R {\n return isArray(args) ? fn(...args) : fn(args);\n}\n\n/**\n * Used in several -- mostly deprecated -- situations where we need to \n * apply a list of arguments or a single argument to a result selector.\n */\nexport function mapOneOrManyArgs<T, R>(fn: ((...values: T[]) => R)): OperatorFunction<T|T[], R> {\n return map(args => callOrApply(fn, args))\n}", "const { isArray } = Array;\nconst { getPrototypeOf, prototype: objectProto, keys: getKeys } = Object;\n\n/**\n * Used in functions where either a list of arguments, a single array of arguments, or a\n * dictionary of arguments can be returned. Returns an object with an `args` property with\n * the arguments in an array, if it is a dictionary, it will also return the `keys` in another\n * property.\n */\nexport function argsArgArrayOrObject<T, O extends Record<string, T>>(args: T[] | [O] | [T[]]): { args: T[]; keys: string[] | null } {\n if (args.length === 1) {\n const first = args[0];\n if (isArray(first)) {\n return { args: first, keys: null };\n }\n if (isPOJO(first)) {\n const keys = getKeys(first);\n return {\n args: keys.map((key) => first[key]),\n keys,\n };\n }\n }\n\n return { args: args as T[], keys: null };\n}\n\nfunction isPOJO(obj: any): obj is object {\n return obj && typeof obj === 'object' && getPrototypeOf(obj) === objectProto;\n}\n", "export function createObject(keys: string[], values: any[]) {\n return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {} as any);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf, ObservableInputTuple } from '../types';\nimport { argsArgArrayOrObject } from '../util/argsArgArrayOrObject';\nimport { Subscriber } from '../Subscriber';\nimport { from } from './from';\nimport { identity } from '../util/identity';\nimport { Subscription } from '../Subscription';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { popResultSelector, popScheduler } from '../util/args';\nimport { createObject } from '../util/createObject';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { AnyCatcher } from '../AnyCatcher';\nimport { executeSchedule } from '../util/executeSchedule';\n\n// combineLatest(any)\n// We put this first because we need to catch cases where the user has supplied\n// _exactly `any`_ as the argument. Since `any` literally matches _anything_,\n// we don't want it to randomly hit one of the other type signatures below,\n// as we have no idea at build-time what type we should be returning when given an any.\n\n/**\n * You have passed `any` here, we can't figure out if it is\n * an array or an object, so you're getting `unknown`. Use better types.\n * @param arg Something typed as `any`\n */\nexport function combineLatest<T extends AnyCatcher>(arg: T): Observable<unknown>;\n\n// combineLatest([a, b, c])\nexport function combineLatest(sources: []): Observable<never>;\nexport function combineLatest<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R,\n scheduler: SchedulerLike\n): Observable<R>;\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n sources: readonly [...ObservableInputTuple<A>],\n scheduler: SchedulerLike\n): Observable<A>;\n\n// combineLatest(a, b, c)\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelectorAndScheduler: [...ObservableInputTuple<A>, (...values: A) => R, SchedulerLike]\n): Observable<R>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]\n): Observable<A>;\n\n// combineLatest({a, b, c})\nexport function combineLatest(sourcesObject: { [K in any]: never }): Observable<never>;\nexport function combineLatest<T extends Record<string, ObservableInput<any>>>(\n sourcesObject: T\n): Observable<{ [K in keyof T]: ObservedValueOf<T[K]> }>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are\n * calculated from the latest values of each of its input Observables.\n *\n * <span class=\"informal\">Whenever any input Observable emits a value, it\n * computes a formula using the latest values from all the inputs, then emits\n * the output of that formula.</span>\n *\n * ![](combineLatest.png)\n *\n * `combineLatest` combines the values from all the Observables passed in the\n * observables array. This is done by subscribing to each Observable in order and,\n * whenever any Observable emits, collecting an array of the most recent\n * values from each Observable. So if you pass `n` Observables to this operator,\n * the returned Observable will always emit an array of `n` values, in an order\n * corresponding to the order of the passed Observables (the value from the first Observable\n * will be at index 0 of the array and so on).\n *\n * Static version of `combineLatest` accepts an array of Observables. Note that an array of\n * Observables is a good choice, if you don't know beforehand how many Observables\n * you will combine. Passing an empty array will result in an Observable that\n * completes immediately.\n *\n * To ensure the output array always has the same length, `combineLatest` will\n * actually wait for all input Observables to emit at least once,\n * before it starts emitting results. This means if some Observable emits\n * values before other Observables started emitting, all these values but the last\n * will be lost. On the other hand, if some Observable does not emit a value but\n * completes, resulting Observable will complete at the same moment without\n * emitting anything, since it will now be impossible to include a value from the\n * completed Observable in the resulting array. Also, if some input Observable does\n * not emit any value and never completes, `combineLatest` will also never emit\n * and never complete, since, again, it will wait for all streams to emit some\n * value.\n *\n * If at least one Observable was passed to `combineLatest` and all passed Observables\n * emitted something, the resulting Observable will complete when all combined\n * streams complete. So even if some Observable completes, the result of\n * `combineLatest` will still emit values when other Observables do. In case\n * of a completed Observable, its value from now on will always be the last\n * emitted value. On the other hand, if any Observable errors, `combineLatest`\n * will error immediately as well, and all other Observables will be unsubscribed.\n *\n * ## Examples\n *\n * Combine two timer Observables\n *\n * ```ts\n * import { timer, combineLatest } from 'rxjs';\n *\n * const firstTimer = timer(0, 1000); // emit 0, 1, 2... after every second, starting from now\n * const secondTimer = timer(500, 1000); // emit 0, 1, 2... after every second, starting 0,5s from now\n * const combinedTimers = combineLatest([firstTimer, secondTimer]);\n * combinedTimers.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0] after 0.5s\n * // [1, 0] after 1s\n * // [1, 1] after 1.5s\n * // [2, 1] after 2s\n * ```\n *\n * Combine a dictionary of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = {\n * a: of(1).pipe(delay(1000), startWith(0)),\n * b: of(5).pipe(delay(5000), startWith(0)),\n * c: of(10).pipe(delay(10000), startWith(0))\n * };\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // { a: 0, b: 0, c: 0 } immediately\n * // { a: 1, b: 0, c: 0 } after 1s\n * // { a: 1, b: 5, c: 0 } after 5s\n * // { a: 1, b: 5, c: 10 } after 10s\n * ```\n *\n * Combine an array of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = [1, 5, 10].map(\n * n => of(n).pipe(\n * delay(n * 1000), // emit 0 and then emit n after n seconds\n * startWith(0)\n * )\n * );\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0, 0] immediately\n * // [1, 0, 0] after 1s\n * // [1, 5, 0] after 5s\n * // [1, 5, 10] after 10s\n * ```\n *\n * Use map operator to dynamically calculate the Body-Mass Index\n *\n * ```ts\n * import { of, combineLatest, map } from 'rxjs';\n *\n * const weight = of(70, 72, 76, 79, 75);\n * const height = of(1.76, 1.77, 1.78);\n * const bmi = combineLatest([weight, height]).pipe(\n * map(([w, h]) => w / (h * h)),\n * );\n * bmi.subscribe(x => console.log('BMI is ' + x));\n *\n * // With output to console:\n * // BMI is 24.212293388429753\n * // BMI is 23.93948099205209\n * // BMI is 23.671253629592222\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link merge}\n * @see {@link withLatestFrom}\n *\n * @param args Any number of `ObservableInput`s provided either as an array or as an object\n * to combine with each other. If the last parameter is the function, it will be used to project the\n * values from the combined latest values into a new value on the output Observable.\n * @return An Observable of projected values from the most recent values from each `ObservableInput`,\n * or an array of the most recent values from each `ObservableInput`.\n */\nexport function combineLatest<O extends ObservableInput<any>, R>(...args: any[]): Observable<R> | Observable<ObservedValueOf<O>[]> {\n const scheduler = popScheduler(args);\n const resultSelector = popResultSelector(args);\n\n const { args: observables, keys } = argsArgArrayOrObject(args);\n\n if (observables.length === 0) {\n // If no observables are passed, or someone has passed an empty array\n // of observables, or even an empty object POJO, we need to just\n // complete (EMPTY), but we have to honor the scheduler provided if any.\n return from([], scheduler as any);\n }\n\n const result = new Observable<ObservedValueOf<O>[]>(\n combineLatestInit(\n observables as ObservableInput<ObservedValueOf<O>>[],\n scheduler,\n keys\n ? // A handler for scrubbing the array of args into a dictionary.\n (values) => createObject(keys, values)\n : // A passthrough to just return the array\n identity\n )\n );\n\n return resultSelector ? (result.pipe(mapOneOrManyArgs(resultSelector)) as Observable<R>) : result;\n}\n\nexport function combineLatestInit(\n observables: ObservableInput<any>[],\n scheduler?: SchedulerLike,\n valueTransform: (values: any[]) => any = identity\n) {\n return (subscriber: Subscriber<any>) => {\n // The outer subscription. We're capturing this in a function\n // because we may have to schedule it.\n maybeSchedule(\n scheduler,\n () => {\n const { length } = observables;\n // A store for the values each observable has emitted so far. We match observable to value on index.\n const values = new Array(length);\n // The number of currently active subscriptions, as they complete, we decrement this number to see if\n // we are all done combining values, so we can complete the result.\n let active = length;\n // The number of inner sources that still haven't emitted the first value\n // We need to track this because all sources need to emit one value in order\n // to start emitting values.\n let remainingFirstValues = length;\n // The loop to kick off subscription. We're keying everything on index `i` to relate the observables passed\n // in to the slot in the output array or the key in the array of keys in the output dictionary.\n for (let i = 0; i < length; i++) {\n maybeSchedule(\n scheduler,\n () => {\n const source = from(observables[i], scheduler as any);\n let hasFirstValue = false;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // When we get a value, record it in our set of values.\n values[i] = value;\n if (!hasFirstValue) {\n // If this is our first value, record that.\n hasFirstValue = true;\n remainingFirstValues--;\n }\n if (!remainingFirstValues) {\n // We're not waiting for any more\n // first values, so we can emit!\n subscriber.next(valueTransform(values.slice()));\n }\n },\n () => {\n if (!--active) {\n // We only complete the result if we have no more active\n // inner observables.\n subscriber.complete();\n }\n }\n )\n );\n },\n subscriber\n );\n }\n },\n subscriber\n );\n };\n}\n\n/**\n * A small utility to handle the couple of locations where we want to schedule if a scheduler was provided,\n * but we don't if there was no scheduler.\n */\nfunction maybeSchedule(scheduler: SchedulerLike | undefined, execute: () => void, subscription: Subscription) {\n if (scheduler) {\n executeSchedule(subscription, scheduler, execute);\n } else {\n execute();\n }\n}\n", "import { Observable } from '../Observable';\nimport { innerFrom } from '../observable/innerFrom';\nimport { Subscriber } from '../Subscriber';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * A process embodying the general \"merge\" strategy. This is used in\n * `mergeMap` and `mergeScan` because the logic is otherwise nearly identical.\n * @param source The original source observable\n * @param subscriber The consumer subscriber\n * @param project The projection function to get our inner sources\n * @param concurrent The number of concurrent inner subscriptions\n * @param onBeforeNext Additional logic to apply before nexting to our consumer\n * @param expand If `true` this will perform an \"expand\" strategy, which differs only\n * in that it recurses, and the inner subscription must be schedule-able.\n * @param innerSubScheduler A scheduler to use to schedule inner subscriptions,\n * this is to support the expand strategy, mostly, and should be deprecated\n */\nexport function mergeInternals<T, R>(\n source: Observable<T>,\n subscriber: Subscriber<R>,\n project: (value: T, index: number) => ObservableInput<R>,\n concurrent: number,\n onBeforeNext?: (innerValue: R) => void,\n expand?: boolean,\n innerSubScheduler?: SchedulerLike,\n additionalFinalizer?: () => void\n) {\n // Buffered values, in the event of going over our concurrency limit\n const buffer: T[] = [];\n // The number of active inner subscriptions.\n let active = 0;\n // An index to pass to our accumulator function\n let index = 0;\n // Whether or not the outer source has completed.\n let isComplete = false;\n\n /**\n * Checks to see if we can complete our result or not.\n */\n const checkComplete = () => {\n // If the outer has completed, and nothing is left in the buffer,\n // and we don't have any active inner subscriptions, then we can\n // Emit the state and complete.\n if (isComplete && !buffer.length && !active) {\n subscriber.complete();\n }\n };\n\n // If we're under our concurrency limit, just start the inner subscription, otherwise buffer and wait.\n const outerNext = (value: T) => (active < concurrent ? doInnerSub(value) : buffer.push(value));\n\n const doInnerSub = (value: T) => {\n // If we're expanding, we need to emit the outer values and the inner values\n // as the inners will \"become outers\" in a way as they are recursively fed\n // back to the projection mechanism.\n expand && subscriber.next(value as any);\n\n // Increment the number of active subscriptions so we can track it\n // against our concurrency limit later.\n active++;\n\n // A flag used to show that the inner observable completed.\n // This is checked during finalization to see if we should\n // move to the next item in the buffer, if there is on.\n let innerComplete = false;\n\n // Start our inner subscription.\n innerFrom(project(value, index++)).subscribe(\n createOperatorSubscriber(\n subscriber,\n (innerValue) => {\n // `mergeScan` has additional handling here. For example\n // taking the inner value and updating state.\n onBeforeNext?.(innerValue);\n\n if (expand) {\n // If we're expanding, then just recurse back to our outer\n // handler. It will emit the value first thing.\n outerNext(innerValue as any);\n } else {\n // Otherwise, emit the inner value.\n subscriber.next(innerValue);\n }\n },\n () => {\n // Flag that we have completed, so we know to check the buffer\n // during finalization.\n innerComplete = true;\n },\n // Errors are passed to the destination.\n undefined,\n () => {\n // During finalization, if the inner completed (it wasn't errored or\n // cancelled), then we want to try the next item in the buffer if\n // there is one.\n if (innerComplete) {\n // We have to wrap this in a try/catch because it happens during\n // finalization, possibly asynchronously, and we want to pass\n // any errors that happen (like in a projection function) to\n // the outer Subscriber.\n try {\n // INNER SOURCE COMPLETE\n // Decrement the active count to ensure that the next time\n // we try to call `doInnerSub`, the number is accurate.\n active--;\n // If we have more values in the buffer, try to process those\n // Note that this call will increment `active` ahead of the\n // next conditional, if there were any more inner subscriptions\n // to start.\n while (buffer.length && active < concurrent) {\n const bufferedValue = buffer.shift()!;\n // Particularly for `expand`, we need to check to see if a scheduler was provided\n // for when we want to start our inner subscription. Otherwise, we just start\n // are next inner subscription.\n if (innerSubScheduler) {\n executeSchedule(subscriber, innerSubScheduler, () => doInnerSub(bufferedValue));\n } else {\n doInnerSub(bufferedValue);\n }\n }\n // Check to see if we can complete, and complete if so.\n checkComplete();\n } catch (err) {\n subscriber.error(err);\n }\n }\n }\n )\n );\n };\n\n // Subscribe to our source observable.\n source.subscribe(\n createOperatorSubscriber(subscriber, outerNext, () => {\n // Outer completed, make a note of it, and check to see if we can complete everything.\n isComplete = true;\n checkComplete();\n })\n );\n\n // Additional finalization (for when the destination is torn down).\n // Other finalization is added implicitly via subscription above.\n return () => {\n additionalFinalizer?.();\n };\n}\n", "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { map } from './map';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { mergeInternals } from './mergeInternals';\nimport { isFunction } from '../util/isFunction';\n\n/* tslint:disable:max-line-length */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R,\n concurrent?: number\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link mergeAll}.</span>\n *\n * ![](mergeMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an Observable, and then merging those resulting Observables and\n * emitting the results of this merger.\n *\n * ## Example\n *\n * Map and flatten each letter to an Observable ticking every 1 second\n *\n * ```ts\n * import { of, mergeMap, interval, map } from 'rxjs';\n *\n * const letters = of('a', 'b', 'c');\n * const result = letters.pipe(\n * mergeMap(x => interval(1000).pipe(map(i => x + i)))\n * );\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // a0\n * // b0\n * // c0\n * // a1\n * // b1\n * // c1\n * // continues to list a, b, c every second with respective ascending integers\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link merge}\n * @see {@link mergeAll}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchMap}\n *\n * @param project A function that, when applied to an item emitted by the source\n * Observable, returns an Observable.\n * @param concurrent Maximum number of `ObservableInput`s being subscribed to concurrently.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and merging\n * the results of the Observables obtained from this transformation.\n */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: ((outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R) | number,\n concurrent: number = Infinity\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n if (isFunction(resultSelector)) {\n // DEPRECATED PATH\n return mergeMap((a, i) => map((b: any, ii: number) => resultSelector(a, b, i, ii))(innerFrom(project(a, i))), concurrent);\n } else if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n\n return operate((source, subscriber) => mergeInternals(source, subscriber, project, concurrent));\n}\n", "import { mergeMap } from './mergeMap';\nimport { identity } from '../util/identity';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * ![](mergeAll.png)\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Spawn a new interval Observable for each click event, and blend their outputs as one Observable\n *\n * ```ts\n * import { fromEvent, map, interval, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(map(() => interval(1000)));\n * const firstOrder = higherOrder.pipe(mergeAll());\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * Count from 0 to 9 every second for each click, but only allow 2 concurrent timers\n *\n * ```ts\n * import { fromEvent, map, interval, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(10)))\n * );\n * const firstOrder = higherOrder.pipe(mergeAll(2));\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link exhaustAll}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @param concurrent Maximum number of inner Observables being subscribed to\n * concurrently.\n * @return A function that returns an Observable that emits values coming from\n * all the inner Observables emitted by the source Observable.\n */\nexport function mergeAll<O extends ObservableInput<any>>(concurrent: number = Infinity): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeMap(identity, concurrent);\n}\n", "import { mergeAll } from './mergeAll';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable by\n * concatenating the inner Observables in order.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables by putting one\n * inner Observable after the other.</span>\n *\n * ![](concatAll.svg)\n *\n * Joins every Observable emitted by the source (a higher-order Observable), in\n * a serial fashion. It subscribes to each inner Observable only after the\n * previous inner Observable has completed, and merges all of their values into\n * the returned observable.\n *\n * __Warning:__ If the source Observable emits Observables quickly and\n * endlessly, and the inner Observables it emits generally complete slower than\n * the source emits, you can run into memory issues as the incoming Observables\n * collect in an unbounded buffer.\n *\n * Note: `concatAll` is equivalent to `mergeAll` with concurrency parameter set\n * to `1`.\n *\n * ## Example\n *\n * For each click event, tick every second from 0 to 3, with no concurrency\n *\n * ```ts\n * import { fromEvent, map, interval, take, concatAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(4)))\n * );\n * const firstOrder = higherOrder.pipe(concatAll());\n * firstOrder.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // (results are not concurrent)\n * // For every click on the \"document\" it will emit values 0 to 3 spaced\n * // on a 1000ms interval\n * // one click = 1000ms-> 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concat}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link exhaustAll}\n * @see {@link mergeAll}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @return A function that returns an Observable emitting values from all the\n * inner Observables concatenated.\n */\nexport function concatAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeAll(1);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple, SchedulerLike } from '../types';\nimport { concatAll } from '../operators/concatAll';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function concat<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\nexport function concat<T extends readonly unknown[]>(\n ...inputsAndScheduler: [...ObservableInputTuple<T>, SchedulerLike]\n): Observable<T[number]>;\n\n/**\n * Creates an output Observable which sequentially emits all values from the first given\n * Observable and then moves on to the next.\n *\n * <span class=\"informal\">Concatenates multiple Observables together by\n * sequentially emitting their values, one Observable after the other.</span>\n *\n * ![](concat.png)\n *\n * `concat` joins multiple Observables together, by subscribing to them one at a time and\n * merging their results into the output Observable. You can pass either an array of\n * Observables, or put them directly as arguments. Passing an empty array will result\n * in Observable that completes immediately.\n *\n * `concat` will subscribe to first input Observable and emit all its values, without\n * changing or affecting them in any way. When that Observable completes, it will\n * subscribe to then next Observable passed and, again, emit its values. This will be\n * repeated, until the operator runs out of Observables. When last input Observable completes,\n * `concat` will complete as well. At any given moment only one Observable passed to operator\n * emits values. If you would like to emit values from passed Observables concurrently, check out\n * {@link merge} instead, especially with optional `concurrent` parameter. As a matter of fact,\n * `concat` is an equivalent of `merge` operator with `concurrent` parameter set to `1`.\n *\n * Note that if some input Observable never completes, `concat` will also never complete\n * and Observables following the one that did not complete will never be subscribed. On the other\n * hand, if some Observable simply completes immediately after it is subscribed, it will be\n * invisible for `concat`, which will just move on to the next Observable.\n *\n * If any Observable in chain errors, instead of passing control to the next Observable,\n * `concat` will error immediately as well. Observables that would be subscribed after\n * the one that emitted error, never will.\n *\n * If you pass to `concat` the same Observable many times, its stream of values\n * will be \"replayed\" on every subscription, which means you can repeat given Observable\n * as many times as you like. If passing the same Observable to `concat` 1000 times becomes tedious,\n * you can always use {@link repeat}.\n *\n * ## Examples\n *\n * Concatenate a timer counting from 0 to 3 with a synchronous sequence from 1 to 10\n *\n * ```ts\n * import { interval, take, range, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(4));\n * const sequence = range(1, 10);\n * const result = concat(timer, sequence);\n * result.subscribe(x => console.log(x));\n *\n * // results in:\n * // 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3 -immediate-> 1 ... 10\n * ```\n *\n * Concatenate 3 Observables\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const result = concat(timer1, timer2, timer3);\n * result.subscribe(x => console.log(x));\n *\n * // results in the following:\n * // (Prints to console sequentially)\n * // -1000ms-> 0 -1000ms-> 1 -1000ms-> ... 9\n * // -2000ms-> 0 -2000ms-> 1 -2000ms-> ... 5\n * // -500ms-> 0 -500ms-> 1 -500ms-> ... 9\n * ```\n *\n * Concatenate the same Observable to repeat it\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(2));\n *\n * concat(timer, timer) // concatenating the same Observable!\n * .subscribe({\n * next: value => console.log(value),\n * complete: () => console.log('...and it is done!')\n * });\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 0 after 3s\n * // 1 after 4s\n * // '...and it is done!' also after 4s\n * ```\n *\n * @see {@link concatAll}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link startWith}\n * @see {@link endWith}\n *\n * @param args `ObservableInput`s to concatenate.\n */\nexport function concat(...args: any[]): Observable<unknown> {\n return concatAll()(from(args, popScheduler(args)));\n}\n", "import { Observable } from '../Observable';\nimport { ObservedValueOf, ObservableInput } from '../types';\nimport { innerFrom } from './innerFrom';\n\n/**\n * Creates an Observable that, on subscribe, calls an Observable factory to\n * make an Observable for each new Observer.\n *\n * <span class=\"informal\">Creates the Observable lazily, that is, only when it\n * is subscribed.\n * </span>\n *\n * ![](defer.png)\n *\n * `defer` allows you to create an Observable only when the Observer\n * subscribes. It waits until an Observer subscribes to it, calls the given\n * factory function to get an Observable -- where a factory function typically\n * generates a new Observable -- and subscribes the Observer to this Observable.\n * In case the factory function returns a falsy value, then EMPTY is used as\n * Observable instead. Last but not least, an exception during the factory\n * function call is transferred to the Observer by calling `error`.\n *\n * ## Example\n *\n * Subscribe to either an Observable of clicks or an Observable of interval, at random\n *\n * ```ts\n * import { defer, fromEvent, interval } from 'rxjs';\n *\n * const clicksOrInterval = defer(() => {\n * return Math.random() > 0.5\n * ? fromEvent(document, 'click')\n * : interval(1000);\n * });\n * clicksOrInterval.subscribe(x => console.log(x));\n *\n * // Results in the following behavior:\n * // If the result of Math.random() is greater than 0.5 it will listen\n * // for clicks anywhere on the \"document\"; when document is clicked it\n * // will log a MouseEvent object to the console. If the result is less\n * // than 0.5 it will emit ascending numbers, one every second(1000ms).\n * ```\n *\n * @see {@link Observable}\n *\n * @param observableFactory The Observable factory function to invoke for each\n * Observer that subscribes to the output Observable. May also return any\n * `ObservableInput`, which will be converted on the fly to an Observable.\n * @return An Observable whose Observers' subscriptions trigger an invocation of the\n * given Observable factory function.\n */\nexport function defer<R extends ObservableInput<any>>(observableFactory: () => R): Observable<ObservedValueOf<R>> {\n return new Observable<ObservedValueOf<R>>((subscriber) => {\n innerFrom(observableFactory()).subscribe(subscriber);\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Observable } from '../Observable';\nimport { mergeMap } from '../operators/mergeMap';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isFunction } from '../util/isFunction';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\n\n// These constants are used to create handler registry functions using array mapping below.\nconst nodeEventEmitterMethods = ['addListener', 'removeListener'] as const;\nconst eventTargetMethods = ['addEventListener', 'removeEventListener'] as const;\nconst jqueryMethods = ['on', 'off'] as const;\n\nexport interface NodeStyleEventEmitter {\n addListener(eventName: string | symbol, handler: NodeEventHandler): this;\n removeListener(eventName: string | symbol, handler: NodeEventHandler): this;\n}\n\nexport type NodeEventHandler = (...args: any[]) => void;\n\n// For APIs that implement `addListener` and `removeListener` methods that may\n// not use the same arguments or return EventEmitter values\n// such as React Native\nexport interface NodeCompatibleEventEmitter {\n addListener(eventName: string, handler: NodeEventHandler): void | {};\n removeListener(eventName: string, handler: NodeEventHandler): void | {};\n}\n\n// Use handler types like those in @types/jquery. See:\n// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/847731ba1d7fa6db6b911c0e43aa0afe596e7723/types/jquery/misc.d.ts#L6395\nexport interface JQueryStyleEventEmitter<TContext, T> {\n on(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n off(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n}\n\nexport interface EventListenerObject<E> {\n handleEvent(evt: E): void;\n}\n\nexport interface HasEventTargetAddRemove<E> {\n addEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: boolean | AddEventListenerOptions\n ): void;\n removeEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: EventListenerOptions | boolean\n ): void;\n}\n\nexport interface EventListenerOptions {\n capture?: boolean;\n passive?: boolean;\n once?: boolean;\n}\n\nexport interface AddEventListenerOptions extends EventListenerOptions {\n once?: boolean;\n passive?: boolean;\n}\n\nexport function fromEvent<T>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n resultSelector: (event: T) => R\n): Observable<R>;\nexport function fromEvent<T>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions,\n resultSelector: (event: T) => R\n): Observable<R>;\n\nexport function fromEvent(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string\n): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent<T>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string,\n resultSelector: (value: T, ...args: any[]) => R\n): Observable<R>;\n\n/**\n * Creates an Observable that emits events of a specific type coming from the\n * given event target.\n *\n * <span class=\"informal\">Creates an Observable from DOM events, or Node.js\n * EventEmitter events or others.</span>\n *\n * ![](fromEvent.png)\n *\n * `fromEvent` accepts as a first argument event target, which is an object with methods\n * for registering event handler functions. As a second argument it takes string that indicates\n * type of event we want to listen for. `fromEvent` supports selected types of event targets,\n * which are described in detail below. If your event target does not match any of the ones listed,\n * you should use {@link fromEventPattern}, which can be used on arbitrary APIs.\n * When it comes to APIs supported by `fromEvent`, their methods for adding and removing event\n * handler functions have different names, but they all accept a string describing event type\n * and function itself, which will be called whenever said event happens.\n *\n * Every time resulting Observable is subscribed, event handler function will be registered\n * to event target on given event type. When that event fires, value\n * passed as a first argument to registered function will be emitted by output Observable.\n * When Observable is unsubscribed, function will be unregistered from event target.\n *\n * Note that if event target calls registered function with more than one argument, second\n * and following arguments will not appear in resulting stream. In order to get access to them,\n * you can pass to `fromEvent` optional project function, which will be called with all arguments\n * passed to event handler. Output Observable will then emit value returned by project function,\n * instead of the usual value.\n *\n * Remember that event targets listed below are checked via duck typing. It means that\n * no matter what kind of object you have and no matter what environment you work in,\n * you can safely use `fromEvent` on that object if it exposes described methods (provided\n * of course they behave as was described above). So for example if Node.js library exposes\n * event target which has the same method names as DOM EventTarget, `fromEvent` is still\n * a good choice.\n *\n * If the API you use is more callback then event handler oriented (subscribed\n * callback function fires only once and thus there is no need to manually\n * unregister it), you should use {@link bindCallback} or {@link bindNodeCallback}\n * instead.\n *\n * `fromEvent` supports following types of event targets:\n *\n * **DOM EventTarget**\n *\n * This is an object with `addEventListener` and `removeEventListener` methods.\n *\n * In the browser, `addEventListener` accepts - apart from event type string and event\n * handler function arguments - optional third parameter, which is either an object or boolean,\n * both used for additional configuration how and when passed function will be called. When\n * `fromEvent` is used with event target of that type, you can provide this values\n * as third parameter as well.\n *\n * **Node.js EventEmitter**\n *\n * An object with `addListener` and `removeListener` methods.\n *\n * **JQuery-style event target**\n *\n * An object with `on` and `off` methods\n *\n * **DOM NodeList**\n *\n * List of DOM Nodes, returned for example by `document.querySelectorAll` or `Node.childNodes`.\n *\n * Although this collection is not event target in itself, `fromEvent` will iterate over all Nodes\n * it contains and install event handler function in every of them. When returned Observable\n * is unsubscribed, function will be removed from all Nodes.\n *\n * **DOM HtmlCollection**\n *\n * Just as in case of NodeList it is a collection of DOM nodes. Here as well event handler function is\n * installed and removed in each of elements.\n *\n *\n * ## Examples\n *\n * Emit clicks happening on the DOM document\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * clicks.subscribe(x => console.log(x));\n *\n * // Results in:\n * // MouseEvent object logged to console every time a click\n * // occurs on the document.\n * ```\n *\n * Use `addEventListener` with capture option\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * // note optional configuration parameter which will be passed to addEventListener\n * const clicksInDocument = fromEvent(document, 'click', { capture: true });\n * const clicksInDiv = fromEvent(div, 'click');\n *\n * clicksInDocument.subscribe(() => console.log('document'));\n * clicksInDiv.subscribe(() => console.log('div'));\n *\n * // By default events bubble UP in DOM tree, so normally\n * // when we would click on div in document\n * // \"div\" would be logged first and then \"document\".\n * // Since we specified optional `capture` option, document\n * // will catch event when it goes DOWN DOM tree, so console\n * // will log \"document\" and then \"div\".\n * ```\n *\n * @see {@link bindCallback}\n * @see {@link bindNodeCallback}\n * @see {@link fromEventPattern}\n *\n * @param target The DOM EventTarget, Node.js EventEmitter, JQuery-like event target,\n * NodeList or HTMLCollection to attach the event handler to.\n * @param eventName The event name of interest, being emitted by the `target`.\n * @param options Options to pass through to the underlying `addListener`,\n * `addEventListener` or `on` functions.\n * @param resultSelector A mapping function used to transform events. It takes the\n * arguments from the event handler and should return a single value.\n * @return An Observable emitting events registered through `target`'s\n * listener handlers.\n */\nexport function fromEvent<T>(\n target: any,\n eventName: string,\n options?: EventListenerOptions | ((...args: any[]) => T),\n resultSelector?: (...args: any[]) => T\n): Observable<T> {\n if (isFunction(options)) {\n resultSelector = options;\n options = undefined;\n }\n if (resultSelector) {\n return fromEvent<T>(target, eventName, options as EventListenerOptions).pipe(mapOneOrManyArgs(resultSelector));\n }\n\n // Figure out our add and remove methods. In order to do this,\n // we are going to analyze the target in a preferred order, if\n // the target matches a given signature, we take the two \"add\" and \"remove\"\n // method names and apply them to a map to create opposite versions of the\n // same function. This is because they all operate in duplicate pairs,\n // `addListener(name, handler)`, `removeListener(name, handler)`, for example.\n // The call only differs by method name, as to whether or not you're adding or removing.\n const [add, remove] =\n // If it is an EventTarget, we need to use a slightly different method than the other two patterns.\n isEventTarget(target)\n ? eventTargetMethods.map((methodName) => (handler: any) => target[methodName](eventName, handler, options as EventListenerOptions))\n : // In all other cases, the call pattern is identical with the exception of the method names.\n isNodeStyleEventEmitter(target)\n ? nodeEventEmitterMethods.map(toCommonHandlerRegistry(target, eventName))\n : isJQueryStyleEventEmitter(target)\n ? jqueryMethods.map(toCommonHandlerRegistry(target, eventName))\n : [];\n\n // If add is falsy, it's because we didn't match a pattern above.\n // Check to see if it is an ArrayLike, because if it is, we want to\n // try to apply fromEvent to all of it's items. We do this check last,\n // because there are may be some types that are both ArrayLike *and* implement\n // event registry points, and we'd rather delegate to that when possible.\n if (!add) {\n if (isArrayLike(target)) {\n return mergeMap((subTarget: any) => fromEvent(subTarget, eventName, options as EventListenerOptions))(\n innerFrom(target)\n ) as Observable<T>;\n }\n }\n\n // If add is falsy and we made it here, it's because we didn't\n // match any valid target objects above.\n if (!add) {\n throw new TypeError('Invalid event target');\n }\n\n return new Observable<T>((subscriber) => {\n // The handler we are going to register. Forwards the event object, by itself, or\n // an array of arguments to the event handler, if there is more than one argument,\n // to the consumer.\n const handler = (...args: any[]) => subscriber.next(1 < args.length ? args : args[0]);\n // Do the work of adding the handler to the target.\n add(handler);\n // When we finalize, we want to remove the handler and free up memory.\n return () => remove!(handler);\n });\n}\n\n/**\n * Used to create `add` and `remove` functions to register and unregister event handlers\n * from a target in the most common handler pattern, where there are only two arguments.\n * (e.g. `on(name, fn)`, `off(name, fn)`, `addListener(name, fn)`, or `removeListener(name, fn)`)\n * @param target The target we're calling methods on\n * @param eventName The event name for the event we're creating register or unregister functions for\n */\nfunction toCommonHandlerRegistry(target: any, eventName: string) {\n return (methodName: string) => (handler: any) => target[methodName](eventName, handler);\n}\n\n/**\n * Checks to see if the target implements the required node-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isNodeStyleEventEmitter(target: any): target is NodeStyleEventEmitter {\n return isFunction(target.addListener) && isFunction(target.removeListener);\n}\n\n/**\n * Checks to see if the target implements the required jQuery-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isJQueryStyleEventEmitter(target: any): target is JQueryStyleEventEmitter<any, any> {\n return isFunction(target.on) && isFunction(target.off);\n}\n\n/**\n * Checks to see if the target implements the required EventTarget methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isEventTarget(target: any): target is HasEventTargetAddRemove<any> {\n return isFunction(target.addEventListener) && isFunction(target.removeEventListener);\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { async as asyncScheduler } from '../scheduler/async';\nimport { isScheduler } from '../util/isScheduler';\nimport { isValidDate } from '../util/isDate';\n\n/**\n * Creates an observable that will wait for a specified time period, or exact date, before\n * emitting the number 0.\n *\n * <span class=\"informal\">Used to emit a notification after a delay.</span>\n *\n * This observable is useful for creating delays in code, or racing against other values\n * for ad-hoc timeouts.\n *\n * The `delay` is specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Examples\n *\n * Wait 3 seconds and start another observable\n *\n * You might want to use `timer` to delay subscription to an\n * observable by a set amount of time. Here we use a timer with\n * {@link concatMapTo} or {@link concatMap} in order to wait\n * a few seconds and start a subscription to a source.\n *\n * ```ts\n * import { of, timer, concatMap } from 'rxjs';\n *\n * // This could be any observable\n * const source = of(1, 2, 3);\n *\n * timer(3000)\n * .pipe(concatMap(() => source))\n * .subscribe(console.log);\n * ```\n *\n * Take all values until the start of the next minute\n *\n * Using a `Date` as the trigger for the first emission, you can\n * do things like wait until midnight to fire an event, or in this case,\n * wait until a new minute starts (chosen so the example wouldn't take\n * too long to run) in order to stop watching a stream. Leveraging\n * {@link takeUntil}.\n *\n * ```ts\n * import { interval, takeUntil, timer } from 'rxjs';\n *\n * // Build a Date object that marks the\n * // next minute.\n * const currentDate = new Date();\n * const startOfNextMinute = new Date(\n * currentDate.getFullYear(),\n * currentDate.getMonth(),\n * currentDate.getDate(),\n * currentDate.getHours(),\n * currentDate.getMinutes() + 1\n * );\n *\n * // This could be any observable stream\n * const source = interval(1000);\n *\n * const result = source.pipe(\n * takeUntil(timer(startOfNextMinute))\n * );\n *\n * result.subscribe(console.log);\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `dueTime`.\n *\n * @param due If a `number`, the amount of time in milliseconds to wait before emitting.\n * If a `Date`, the exact time at which to emit.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(due: number | Date, scheduler?: SchedulerLike): Observable<0>;\n\n/**\n * Creates an observable that starts an interval after a specified delay, emitting incrementing numbers -- starting at `0` --\n * on each interval after words.\n *\n * The `delay` and `intervalDuration` are specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Example\n *\n * ### Start an interval that starts right away\n *\n * Since {@link interval} waits for the passed delay before starting,\n * sometimes that's not ideal. You may want to start an interval immediately.\n * `timer` works well for this. Here we have both side-by-side so you can\n * see them in comparison.\n *\n * Note that this observable will never complete.\n *\n * ```ts\n * import { timer, interval } from 'rxjs';\n *\n * timer(0, 1000).subscribe(n => console.log('timer', n));\n * interval(1000).subscribe(n => console.log('interval', n));\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `startDue`.\n * @param startDue If a `number`, is the time to wait before starting the interval.\n * If a `Date`, is the exact time at which to start the interval.\n * @param intervalDuration The delay between each value emitted in the interval. Passing a\n * negative number here will result in immediate completion after the first value is emitted, as though\n * no `intervalDuration` was passed at all.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(startDue: number | Date, intervalDuration: number, scheduler?: SchedulerLike): Observable<number>;\n\n/**\n * @deprecated The signature allowing `undefined` to be passed for `intervalDuration` will be removed in v8. Use the `timer(dueTime, scheduler?)` signature instead.\n */\nexport function timer(dueTime: number | Date, unused: undefined, scheduler?: SchedulerLike): Observable<0>;\n\nexport function timer(\n dueTime: number | Date = 0,\n intervalOrScheduler?: number | SchedulerLike,\n scheduler: SchedulerLike = asyncScheduler\n): Observable<number> {\n // Since negative intervalDuration is treated as though no\n // interval was specified at all, we start with a negative number.\n let intervalDuration = -1;\n\n if (intervalOrScheduler != null) {\n // If we have a second argument, and it's a scheduler,\n // override the scheduler we had defaulted. Otherwise,\n // it must be an interval.\n if (isScheduler(intervalOrScheduler)) {\n scheduler = intervalOrScheduler;\n } else {\n // Note that this *could* be negative, in which case\n // it's like not passing an intervalDuration at all.\n intervalDuration = intervalOrScheduler;\n }\n }\n\n return new Observable((subscriber) => {\n // If a valid date is passed, calculate how long to wait before\n // executing the first value... otherwise, if it's a number just schedule\n // that many milliseconds (or scheduler-specified unit size) in the future.\n let due = isValidDate(dueTime) ? +dueTime - scheduler!.now() : dueTime;\n\n if (due < 0) {\n // Ensure we don't schedule in the future.\n due = 0;\n }\n\n // The incrementing value we emit.\n let n = 0;\n\n // Start the timer.\n return scheduler.schedule(function () {\n if (!subscriber.closed) {\n // Emit the next value and increment.\n subscriber.next(n++);\n\n if (0 <= intervalDuration) {\n // If we have a interval after the initial timer,\n // reschedule with the period.\n this.schedule(undefined, intervalDuration);\n } else {\n // We didn't have an interval. So just complete.\n subscriber.complete();\n }\n }\n }, due);\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, ObservableInputTuple, SchedulerLike } from '../types';\nimport { mergeAll } from '../operators/mergeAll';\nimport { innerFrom } from './innerFrom';\nimport { EMPTY } from './empty';\nimport { popNumber, popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function merge<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\nexport function merge<A extends readonly unknown[]>(...sourcesAndConcurrency: [...ObservableInputTuple<A>, number?]): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike?]\n): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number?, SchedulerLike?]\n): Observable<A[number]>;\n\n/**\n * Creates an output Observable which concurrently emits all values from every\n * given input Observable.\n *\n * <span class=\"informal\">Flattens multiple Observables together by blending\n * their values into one Observable.</span>\n *\n * ![](merge.png)\n *\n * `merge` subscribes to each given input Observable (as arguments), and simply\n * forwards (without doing any transformation) all the values from all the input\n * Observables to the output Observable. The output Observable only completes\n * once all input Observables have completed. Any error delivered by an input\n * Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Merge together two Observables: 1s interval and clicks\n *\n * ```ts\n * import { merge, fromEvent, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const clicksOrTimer = merge(clicks, timer);\n * clicksOrTimer.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // timer will emit ascending values, one every second(1000ms) to console\n * // clicks logs MouseEvents to console every time the \"document\" is clicked\n * // Since the two streams are merged you see these happening\n * // as they occur.\n * ```\n *\n * Merge together 3 Observables, but run only 2 concurrently\n *\n * ```ts\n * import { interval, take, merge } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const concurrent = 2; // the argument\n * const merged = merge(timer1, timer2, timer3, concurrent);\n * merged.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // - First timer1 and timer2 will run concurrently\n * // - timer1 will emit a value every 1000ms for 10 iterations\n * // - timer2 will emit a value every 2000ms for 6 iterations\n * // - after timer1 hits its max iteration, timer2 will\n * // continue, and timer3 will start to run concurrently with timer2\n * // - when timer2 hits its max iteration it terminates, and\n * // timer3 will continue to emit a value every 500ms until it is complete\n * ```\n *\n * @see {@link mergeAll}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n *\n * @param args `ObservableInput`s to merge together. If the last parameter\n * is of type number, `merge` will use it to limit number of concurrently\n * subscribed `ObservableInput`s. If the last parameter is {@link SchedulerLike},\n * it will be used for scheduling the emission of values.\n * @return An Observable that emits items that are the result of every input Observable.\n */\nexport function merge(...args: (ObservableInput<unknown> | number | SchedulerLike)[]): Observable<unknown> {\n const scheduler = popScheduler(args);\n const concurrent = popNumber(args, Infinity);\n const sources = args as ObservableInput<unknown>[];\n return !sources.length\n ? // No source provided\n EMPTY\n : sources.length === 1\n ? // One source? Just return it.\n innerFrom(sources[0])\n : // Merge all sources\n mergeAll(concurrent)(from(sources, scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { noop } from '../util/noop';\n\n/**\n * An Observable that emits no items to the Observer and never completes.\n *\n * ![](never.png)\n *\n * A simple Observable that emits neither values nor errors nor the completion\n * notification. It can be used for testing purposes or for composing with other\n * Observables. Please note that by never emitting a complete notification, this\n * Observable keeps the subscription from being disposed automatically.\n * Subscriptions need to be manually disposed.\n *\n * ## Example\n *\n * Emit the number 7, then never emit anything else (not even complete)\n *\n * ```ts\n * import { NEVER, startWith } from 'rxjs';\n *\n * const info = () => console.log('Will not be called');\n *\n * const result = NEVER.pipe(startWith(7));\n * result.subscribe({\n * next: x => console.log(x),\n * error: info,\n * complete: info\n * });\n * ```\n *\n * @see {@link Observable}\n * @see {@link EMPTY}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const NEVER = new Observable<never>(noop);\n\n/**\n * @deprecated Replaced with the {@link NEVER} constant. Will be removed in v8.\n */\nexport function never() {\n return NEVER;\n}\n", "const { isArray } = Array;\n\n/**\n * Used in operators and functions that accept either a list of arguments, or an array of arguments\n * as a single argument.\n */\nexport function argsOrArgArray<T>(args: (T | T[])[]): T[] {\n return args.length === 1 && isArray(args[0]) ? args[0] : (args as T[]);\n}\n", "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, S extends T, A>(predicate: (this: A, value: T, index: number) => value is S, thisArg: A): OperatorFunction<T, S>;\nexport function filter<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport function filter<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, A>(predicate: (this: A, value: T, index: number) => boolean, thisArg: A): MonoTypeOperatorFunction<T>;\nexport function filter<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;\n\n/**\n * Filter items emitted by the source Observable by only emitting those that\n * satisfy a specified predicate.\n *\n * <span class=\"informal\">Like\n * [Array.prototype.filter()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter),\n * it only emits a value from the source if it passes a criterion function.</span>\n *\n * ![](filter.png)\n *\n * Similar to the well-known `Array.prototype.filter` method, this operator\n * takes values from the source Observable, passes them through a `predicate`\n * function and only emits those values that yielded `true`.\n *\n * ## Example\n *\n * Emit only click events whose target was a DIV element\n *\n * ```ts\n * import { fromEvent, filter } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * const clicks = fromEvent(document, 'click');\n * const clicksOnDivs = clicks.pipe(filter(ev => (<HTMLElement>ev.target).tagName === 'DIV'));\n * clicksOnDivs.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n * @see {@link distinctUntilKeyChanged}\n * @see {@link ignoreElements}\n * @see {@link partition}\n * @see {@link skip}\n *\n * @param predicate A function that\n * evaluates each value emitted by the source Observable. If it returns `true`,\n * the value is emitted, if `false` the value is not passed to the output\n * Observable. The `index` parameter is the number `i` for the i-th source\n * emission that has happened since the subscription, starting from the number\n * `0`.\n * @param thisArg An optional argument to determine the value of `this`\n * in the `predicate` function.\n * @return A function that returns an Observable that emits items from the\n * source Observable that satisfy the specified `predicate`.\n */\nexport function filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // An index passed to our predicate function on each call.\n let index = 0;\n\n // Subscribe to the source, all errors and completions are\n // forwarded to the consumer.\n source.subscribe(\n // Call the predicate with the appropriate `this` context,\n // if the predicate returns `true`, then send the value\n // to the consumer.\n createOperatorSubscriber(subscriber, (value) => predicate.call(thisArg, value, index++) && subscriber.next(value))\n );\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple } from '../types';\nimport { innerFrom } from './innerFrom';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { EMPTY } from './empty';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { popResultSelector } from '../util/args';\n\nexport function zip<A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\nexport function zip<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are calculated from the values, in order, of each\n * of its input Observables.\n *\n * If the last parameter is a function, this function is used to compute the created value from the input values.\n * Otherwise, an array of the input values is returned.\n *\n * ## Example\n *\n * Combine age and name from different sources\n *\n * ```ts\n * import { of, zip, map } from 'rxjs';\n *\n * const age$ = of(27, 25, 29);\n * const name$ = of('Foo', 'Bar', 'Beer');\n * const isDev$ = of(true, true, false);\n *\n * zip(age$, name$, isDev$).pipe(\n * map(([age, name, isDev]) => ({ age, name, isDev }))\n * )\n * .subscribe(x => console.log(x));\n *\n * // Outputs\n * // { age: 27, name: 'Foo', isDev: true }\n * // { age: 25, name: 'Bar', isDev: true }\n * // { age: 29, name: 'Beer', isDev: false }\n * ```\n *\n * @param args Any number of `ObservableInput`s provided either as an array or as an object\n * to combine with each other.\n * @return An Observable of array values of the values emitted at the same index from each\n * individual `ObservableInput`.\n */\nexport function zip(...args: unknown[]): Observable<unknown> {\n const resultSelector = popResultSelector(args);\n\n const sources = argsOrArgArray(args) as Observable<unknown>[];\n\n return sources.length\n ? new Observable<unknown[]>((subscriber) => {\n // A collection of buffers of values from each source.\n // Keyed by the same index with which the sources were passed in.\n let buffers: unknown[][] = sources.map(() => []);\n\n // An array of flags of whether or not the sources have completed.\n // This is used to check to see if we should complete the result.\n // Keyed by the same index with which the sources were passed in.\n let completed = sources.map(() => false);\n\n // When everything is done, release the arrays above.\n subscriber.add(() => {\n buffers = completed = null!;\n });\n\n // Loop over our sources and subscribe to each one. The index `i` is\n // especially important here, because we use it in closures below to\n // access the related buffers and completion properties\n for (let sourceIndex = 0; !subscriber.closed && sourceIndex < sources.length; sourceIndex++) {\n innerFrom(sources[sourceIndex]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n buffers[sourceIndex].push(value);\n // if every buffer has at least one value in it, then we\n // can shift out the oldest value from each buffer and emit\n // them as an array.\n if (buffers.every((buffer) => buffer.length)) {\n const result: any = buffers.map((buffer) => buffer.shift()!);\n // Emit the array. If theres' a result selector, use that.\n subscriber.next(resultSelector ? resultSelector(...result) : result);\n // If any one of the sources is both complete and has an empty buffer\n // then we complete the result. This is because we cannot possibly have\n // any more values to zip together.\n if (buffers.some((buffer, i) => !buffer.length && completed[i])) {\n subscriber.complete();\n }\n }\n },\n () => {\n // This source completed. Mark it as complete so we can check it later\n // if we have to.\n completed[sourceIndex] = true;\n // But, if this complete source has nothing in its buffer, then we\n // can complete the result, because we can't possibly have any more\n // values from this to zip together with the other values.\n !buffers[sourceIndex].length && subscriber.complete();\n }\n )\n );\n }\n\n // When everything is done, release the arrays above.\n return () => {\n buffers = completed = null!;\n };\n })\n : EMPTY;\n}\n", "import { Subscriber } from '../Subscriber';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n\nimport { operate } from '../util/lift';\nimport { innerFrom } from '../observable/innerFrom';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Ignores source values for a duration determined by another Observable, then\n * emits the most recent value from the source Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link auditTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](audit.svg)\n *\n * `audit` is similar to `throttle`, but emits the last value from the silenced\n * time window, instead of the first value. `audit` emits the most recent value\n * from the source Observable on the output Observable as soon as its internal\n * timer becomes disabled, and ignores source values while the timer is enabled.\n * Initially, the timer is disabled. As soon as the first source value arrives,\n * the timer is enabled by calling the `durationSelector` function with the\n * source value, which returns the \"duration\" Observable. When the duration\n * Observable emits a value, the timer is disabled, then the most\n * recent source value is emitted on the output Observable, and this process\n * repeats for the next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, audit, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(audit(ev => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttle}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the silencing\n * duration, returned as an Observable or a Promise.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function audit<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let hasValue = false;\n let lastValue: T | null = null;\n let durationSubscriber: Subscriber<any> | null = null;\n let isComplete = false;\n\n const endDuration = () => {\n durationSubscriber?.unsubscribe();\n durationSubscriber = null;\n if (hasValue) {\n hasValue = false;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n isComplete && subscriber.complete();\n };\n\n const cleanupDuration = () => {\n durationSubscriber = null;\n isComplete && subscriber.complete();\n };\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n hasValue = true;\n lastValue = value;\n if (!durationSubscriber) {\n innerFrom(durationSelector(value)).subscribe(\n (durationSubscriber = createOperatorSubscriber(subscriber, endDuration, cleanupDuration))\n );\n }\n },\n () => {\n isComplete = true;\n (!hasValue || !durationSubscriber || durationSubscriber.closed) && subscriber.complete();\n }\n )\n );\n });\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { audit } from './audit';\nimport { timer } from '../observable/timer';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n\n/**\n * Ignores source values for `duration` milliseconds, then emits the most recent\n * value from the source Observable, then repeats this process.\n *\n * <span class=\"informal\">When it sees a source value, it ignores that plus\n * the next ones for `duration` milliseconds, and then it emits the most recent\n * value from the source.</span>\n *\n * ![](auditTime.png)\n *\n * `auditTime` is similar to `throttleTime`, but emits the last value from the\n * silenced time window, instead of the first value. `auditTime` emits the most\n * recent value from the source Observable on the output Observable as soon as\n * its internal timer becomes disabled, and ignores source values while the\n * timer is enabled. Initially, the timer is disabled. As soon as the first\n * source value arrives, the timer is enabled. After `duration` milliseconds (or\n * the time unit determined internally by the optional `scheduler`) has passed,\n * the timer is disabled, then the most recent source value is emitted on the\n * output Observable, and this process repeats for the next source value.\n * Optionally takes a {@link SchedulerLike} for managing timers.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, auditTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(auditTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param duration Time to wait before emitting the most recent source value,\n * measured in milliseconds or the time unit determined internally by the\n * optional `scheduler`.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers\n * that handle the rate-limiting behavior.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function auditTime<T>(duration: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return audit(() => timer(duration, scheduler));\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { arrRemove } from '../util/arrRemove';\n\n/**\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * ![](bufferCount.png)\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * ## Examples\n *\n * Emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * On every click, emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2, 1));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param bufferSize The maximum size of the buffer emitted.\n * @param startBufferEvery Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport function bufferCount<T>(bufferSize: number, startBufferEvery: number | null = null): OperatorFunction<T, T[]> {\n // If no `startBufferEvery` value was supplied, then we're\n // opening and closing on the bufferSize itself.\n startBufferEvery = startBufferEvery ?? bufferSize;\n\n return operate((source, subscriber) => {\n let buffers: T[][] = [];\n let count = 0;\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n let toEmit: T[][] | null = null;\n\n // Check to see if we need to start a buffer.\n // This will start one at the first value, and then\n // a new one every N after that.\n if (count++ % startBufferEvery! === 0) {\n buffers.push([]);\n }\n\n // Push our value into our active buffers.\n for (const buffer of buffers) {\n buffer.push(value);\n // Check to see if we're over the bufferSize\n // if we are, record it so we can emit it later.\n // If we emitted it now and removed it, it would\n // mutate the `buffers` array while we're looping\n // over it.\n if (bufferSize <= buffer.length) {\n toEmit = toEmit ?? [];\n toEmit.push(buffer);\n }\n }\n\n if (toEmit) {\n // We have found some buffers that are over the\n // `bufferSize`. Emit them, and remove them from our\n // buffers list.\n for (const buffer of toEmit) {\n arrRemove(buffers, buffer);\n subscriber.next(buffer);\n }\n }\n },\n () => {\n // When the source completes, emit all of our\n // active buffers.\n for (const buffer of buffers) {\n subscriber.next(buffer);\n }\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Clean up our memory when we finalize\n buffers = null!;\n }\n )\n );\n });\n}\n", "import { combineLatestInit } from '../observable/combineLatest';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { pipe } from '../util/pipe';\nimport { popResultSelector } from '../util/args';\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n project: (...values: [T, ...A]) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n ...sourcesAndProject: [...ObservableInputTuple<A>, (...values: [T, ...A]) => R]\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/**\n * @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8.\n */\nexport function combineLatest<T, R>(...args: (ObservableInput<any> | ((...values: any[]) => R))[]): OperatorFunction<T, unknown> {\n const resultSelector = popResultSelector(args);\n return resultSelector\n ? pipe(combineLatest(...(args as Array<ObservableInput<any>>)), mapOneOrManyArgs(resultSelector))\n : operate((source, subscriber) => {\n combineLatestInit([source, ...argsOrArgArray(args)])(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { combineLatest } from './combineLatest';\n\n/**\n * Create an observable that combines the latest values from all passed observables and the source\n * into arrays and emits them.\n *\n * Returns an observable, that when subscribed to, will subscribe to the source observable and all\n * sources provided as arguments. Once all sources emit at least one value, all of the latest values\n * will be emitted as an array. After that, every time any source emits a value, all of the latest values\n * will be emitted as an array.\n *\n * This is a useful operator for eagerly calculating values based off of changed inputs.\n *\n * ## Example\n *\n * Simple concatenation of values from two inputs\n *\n * ```ts\n * import { fromEvent, combineLatestWith, map } from 'rxjs';\n *\n * // Setup: Add two inputs to the page\n * const input1 = document.createElement('input');\n * document.body.appendChild(input1);\n * const input2 = document.createElement('input');\n * document.body.appendChild(input2);\n *\n * // Get streams of changes\n * const input1Changes$ = fromEvent(input1, 'change');\n * const input2Changes$ = fromEvent(input2, 'change');\n *\n * // Combine the changes by adding them together\n * input1Changes$.pipe(\n * combineLatestWith(input2Changes$),\n * map(([e1, e2]) => (<HTMLInputElement>e1.target).value + ' - ' + (<HTMLInputElement>e2.target).value)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @param otherSources the other sources to subscribe to.\n * @return A function that returns an Observable that emits the latest\n * emissions from both source and provided Observables.\n */\nexport function combineLatestWith<T, A extends readonly unknown[]>(\n ...otherSources: [...ObservableInputTuple<A>]\n): OperatorFunction<T, Cons<T, A>> {\n return combineLatest(...otherSources);\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SchedulerAction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits a notification from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent notification from each burst of emissions.</span>\n *\n * ![](debounceTime.png)\n *\n * `debounceTime` delays notifications emitted by the source Observable, but drops\n * previous pending delayed emissions if a new notification arrives on the source\n * Observable. This operator keeps track of the most recent notification from the\n * source Observable, and emits that only when `dueTime` has passed\n * without any other notification appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous notification will be dropped\n * and will not be emitted and a new `dueTime` is scheduled.\n * If the completing event happens during `dueTime` the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during `dueTime` or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * notification to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link SchedulerLike} for\n * managing timers.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, debounceTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(debounceTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param dueTime The timeout duration in milliseconds (or the time unit determined\n * internally by the optional `scheduler`) for the window of time required to wait\n * for emission silence before emitting the most recent source value.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers that\n * handle the timeout for each value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified `dueTime`, and may drop some values\n * if they occur too frequently.\n */\nexport function debounceTime<T>(dueTime: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let activeTask: Subscription | null = null;\n let lastValue: T | null = null;\n let lastTime: number | null = null;\n\n const emit = () => {\n if (activeTask) {\n // We have a value! Free up memory first, then emit the value.\n activeTask.unsubscribe();\n activeTask = null;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n };\n function emitWhenIdle(this: SchedulerAction<unknown>) {\n // This is called `dueTime` after the first value\n // but we might have received new values during this window!\n\n const targetTime = lastTime! + dueTime;\n const now = scheduler.now();\n if (now < targetTime) {\n // On that case, re-schedule to the new target\n activeTask = this.schedule(undefined, targetTime - now);\n subscriber.add(activeTask);\n return;\n }\n\n emit();\n }\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value: T) => {\n lastValue = value;\n lastTime = scheduler.now();\n\n // Only set up a task if it's not already up\n if (!activeTask) {\n activeTask = scheduler.schedule(emitWhenIdle, dueTime);\n subscriber.add(activeTask);\n }\n },\n () => {\n // Source completed.\n // Emit any pending debounced values then complete\n emit();\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Finalization.\n lastValue = activeTask = null;\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { EMPTY } from '../observable/empty';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits only the first `count` values emitted by the source Observable.\n *\n * <span class=\"informal\">Takes the first `count` values from the source, then\n * completes.</span>\n *\n * ![](take.png)\n *\n * `take` returns an Observable that emits only the first `count` values emitted\n * by the source Observable. If the source emits fewer than `count` values then\n * all of its values are emitted. After that, it completes, regardless if the\n * source completes.\n *\n * ## Example\n *\n * Take the first 5 seconds of an infinite 1-second interval Observable\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const intervalCount = interval(1000);\n * const takeFive = intervalCount.pipe(take(5));\n * takeFive.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * ```\n *\n * @see {@link takeLast}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of `next` values to emit.\n * @return A function that returns an Observable that emits only the first\n * `count` values emitted by the source Observable, or all of the values from\n * the source if the source emits fewer than `count` values.\n */\nexport function take<T>(count: number): MonoTypeOperatorFunction<T> {\n return count <= 0\n ? // If we are taking no values, that's empty.\n () => EMPTY\n : operate((source, subscriber) => {\n let seen = 0;\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // Increment the number of values we have seen,\n // then check it against the allowed count to see\n // if we are still letting values through.\n if (++seen <= count) {\n subscriber.next(value);\n // If we have met or passed our allowed count,\n // we need to complete. We have to do <= here,\n // because re-entrant code will increment `seen` twice.\n if (count <= seen) {\n subscriber.complete();\n }\n }\n })\n );\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { noop } from '../util/noop';\n\n/**\n * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`.\n *\n * ![](ignoreElements.png)\n *\n * The `ignoreElements` operator suppresses all items emitted by the source Observable,\n * but allows its termination notification (either `error` or `complete`) to pass through unchanged.\n *\n * If you do not care about the items being emitted by an Observable, but you do want to be notified\n * when it completes or when it terminates with an error, you can apply the `ignoreElements` operator\n * to the Observable, which will ensure that it will never call its observers\u2019 `next` handlers.\n *\n * ## Example\n *\n * Ignore all `next` emissions from the source\n *\n * ```ts\n * import { of, ignoreElements } from 'rxjs';\n *\n * of('you', 'talking', 'to', 'me')\n * .pipe(ignoreElements())\n * .subscribe({\n * next: word => console.log(word),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // result:\n * // 'the end'\n * ```\n *\n * @return A function that returns an empty Observable that only calls\n * `complete` or `error`, based on which one is called by the source\n * Observable.\n */\nexport function ignoreElements(): OperatorFunction<unknown, never> {\n return operate((source, subscriber) => {\n source.subscribe(createOperatorSubscriber(subscriber, noop));\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { map } from './map';\n\n/** @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`. */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R>;\n/**\n * @deprecated Do not specify explicit type parameters. Signatures with type parameters\n * that cannot be inferred will be removed in v8. `mapTo` itself will be removed in v9,\n * use {@link map} instead: `map(() => value)`.\n * */\nexport function mapTo<T, R>(value: R): OperatorFunction<T, R>;\n\n/**\n * Emits the given constant value on the output Observable every time the source\n * Observable emits a value.\n *\n * <span class=\"informal\">Like {@link map}, but it maps every source value to\n * the same output value every time.</span>\n *\n * ![](mapTo.png)\n *\n * Takes a constant `value` as argument, and emits that whenever the source\n * Observable emits a value. In other words, ignores the actual source value,\n * and simply uses the emission moment to know when to emit the given `value`.\n *\n * ## Example\n *\n * Map every click to the string `'Hi'`\n *\n * ```ts\n * import { fromEvent, mapTo } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const greetings = clicks.pipe(mapTo('Hi'));\n *\n * greetings.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link map}\n *\n * @param value The value to map each source value to.\n * @return A function that returns an Observable that emits the given `value`\n * every time the source Observable emits.\n * @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`.\n */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R> {\n return map(() => value);\n}\n", "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { concat } from '../observable/concat';\nimport { take } from './take';\nimport { ignoreElements } from './ignoreElements';\nimport { mapTo } from './mapTo';\nimport { mergeMap } from './mergeMap';\nimport { innerFrom } from '../observable/innerFrom';\n\n/** @deprecated The `subscriptionDelay` parameter will be removed in v8. */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay: Observable<any>\n): MonoTypeOperatorFunction<T>;\nexport function delayWhen<T>(delayDurationSelector: (value: T, index: number) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n\n/**\n * Delays the emission of items from the source Observable by a given time span\n * determined by the emissions of another Observable.\n *\n * <span class=\"informal\">It's like {@link delay}, but the time span of the\n * delay duration is determined by a second Observable.</span>\n *\n * ![](delayWhen.png)\n *\n * `delayWhen` operator shifts each emitted value from the source Observable by\n * a time span determined by another Observable. When the source emits a value,\n * the `delayDurationSelector` function is called with the value emitted from\n * the source Observable as the first argument to the `delayDurationSelector`.\n * The `delayDurationSelector` function should return an {@link ObservableInput},\n * that is internally converted to an Observable that is called the \"duration\"\n * Observable.\n *\n * The source value is emitted on the output Observable only when the \"duration\"\n * Observable emits ({@link guide/glossary-and-semantics#next next}s) any value.\n * Upon that, the \"duration\" Observable gets unsubscribed.\n *\n * Before RxJS V7, the {@link guide/glossary-and-semantics#complete completion}\n * of the \"duration\" Observable would have been triggering the emission of the\n * source value to the output Observable, but with RxJS V7, this is not the case\n * anymore.\n *\n * Only next notifications (from the \"duration\" Observable) trigger values from\n * the source Observable to be passed to the output Observable. If the \"duration\"\n * Observable only emits the complete notification (without next), the value\n * emitted by the source Observable will never get to the output Observable - it\n * will be swallowed. If the \"duration\" Observable errors, the error will be\n * propagated to the output Observable.\n *\n * Optionally, `delayWhen` takes a second argument, `subscriptionDelay`, which\n * is an Observable. When `subscriptionDelay` emits its first value or\n * completes, the source Observable is subscribed to and starts behaving like\n * described in the previous paragraph. If `subscriptionDelay` is not provided,\n * `delayWhen` will subscribe to the source Observable as soon as the output\n * Observable is subscribed.\n *\n * ## Example\n *\n * Delay each click by a random amount of time, between 0 and 5 seconds\n *\n * ```ts\n * import { fromEvent, delayWhen, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(\n * delayWhen(() => interval(Math.random() * 5000))\n * );\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delay}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param delayDurationSelector A function that returns an `ObservableInput` for\n * each `value` emitted by the source Observable, which is then used to delay the\n * emission of that `value` on the output Observable until the `ObservableInput`\n * returned from this function emits a next value. When called, beside `value`,\n * this function receives a zero-based `index` of the emission order.\n * @param subscriptionDelay An Observable that triggers the subscription to the\n * source Observable once it emits any value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by an amount of time specified by the Observable\n * returned by `delayDurationSelector`.\n */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay?: Observable<any>\n): MonoTypeOperatorFunction<T> {\n if (subscriptionDelay) {\n // DEPRECATED PATH\n return (source: Observable<T>) =>\n concat(subscriptionDelay.pipe(take(1), ignoreElements()), source.pipe(delayWhen(delayDurationSelector)));\n }\n\n return mergeMap((value, index) => innerFrom(delayDurationSelector(value, index)).pipe(take(1), mapTo(value)));\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { delayWhen } from './delayWhen';\nimport { timer } from '../observable/timer';\n\n/**\n * Delays the emission of items from the source Observable by a given timeout or\n * until a given Date.\n *\n * <span class=\"informal\">Time shifts each item by some specified amount of\n * milliseconds.</span>\n *\n * ![](delay.svg)\n *\n * If the delay argument is a Number, this operator time shifts the source\n * Observable by that amount of time expressed in milliseconds. The relative\n * time intervals between the values are preserved.\n *\n * If the delay argument is a Date, this operator time shifts the start of the\n * Observable execution until the given date occurs.\n *\n * ## Examples\n *\n * Delay each click by one second\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(delay(1000)); // each click emitted after 1 second\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * Delay all clicks until a future date happens\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const date = new Date('March 15, 2050 12:00:00'); // in the future\n * const delayedClicks = clicks.pipe(delay(date)); // click emitted only after that date\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delayWhen}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param due The delay duration in milliseconds (a `number`) or a `Date` until\n * which the emission of the source items is delayed.\n * @param scheduler The {@link SchedulerLike} to use for managing the timers\n * that handle the time-shift for each item.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified timeout or Date.\n */\nexport function delay<T>(due: number | Date, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n const duration = timer(due, scheduler);\n return delayWhen(() => duration);\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { identity } from '../util/identity';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function distinctUntilChanged<T>(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction<T>;\nexport function distinctUntilChanged<T, K>(\n comparator: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a result {@link Observable} that emits all values pushed by the source observable if they\n * are distinct in comparison to the last value the result observable emitted.\n *\n * When provided without parameters or with the first parameter (`{@link distinctUntilChanged#comparator comparator}`),\n * it behaves like this:\n *\n * 1. It will always emit the first value from the source.\n * 2. For all subsequent values pushed by the source, they will be compared to the previously emitted values\n * using the provided `comparator` or an `===` equality check.\n * 3. If the value pushed by the source is determined to be unequal by this check, that value is emitted and\n * becomes the new \"previously emitted value\" internally.\n *\n * When the second parameter (`{@link distinctUntilChanged#keySelector keySelector}`) is provided, the behavior\n * changes:\n *\n * 1. It will always emit the first value from the source.\n * 2. The `keySelector` will be run against all values, including the first value.\n * 3. For all values after the first, the selected key will be compared against the key selected from\n * the previously emitted value using the `comparator`.\n * 4. If the keys are determined to be unequal by this check, the value (not the key), is emitted\n * and the selected key from that value is saved for future comparisons against other keys.\n *\n * ## Examples\n *\n * A very basic example with no `{@link distinctUntilChanged#comparator comparator}`. Note that `1` is emitted more than once,\n * because it's distinct in comparison to the _previously emitted_ value,\n * not in comparison to _all other emitted values_.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * of(1, 1, 1, 2, 2, 2, 1, 1, 3, 3)\n * .pipe(distinctUntilChanged())\n * .subscribe(console.log);\n * // Logs: 1, 2, 1, 3\n * ```\n *\n * With a `{@link distinctUntilChanged#comparator comparator}`, you can do custom comparisons. Let's say\n * you only want to emit a value when all of its components have\n * changed:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const totallyDifferentBuilds$ = of(\n * { engineVersion: '1.1.0', transmissionVersion: '1.2.0' },\n * { engineVersion: '1.1.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.5.0' },\n * { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ).pipe(\n * distinctUntilChanged((prev, curr) => {\n * return (\n * prev.engineVersion === curr.engineVersion ||\n * prev.transmissionVersion === curr.transmissionVersion\n * );\n * })\n * );\n *\n * totallyDifferentBuilds$.subscribe(console.log);\n *\n * // Logs:\n * // { engineVersion: '1.1.0', transmissionVersion: '1.2.0' }\n * // { engineVersion: '1.3.0', transmissionVersion: '1.4.0' }\n * // { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ```\n *\n * You can also provide a custom `{@link distinctUntilChanged#comparator comparator}` to check that emitted\n * changes are only in one direction. Let's say you only want to get\n * the next record temperature:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const temps$ = of(30, 31, 20, 34, 33, 29, 35, 20);\n *\n * const recordHighs$ = temps$.pipe(\n * distinctUntilChanged((prevHigh, temp) => {\n * // If the current temp is less than\n * // or the same as the previous record,\n * // the record hasn't changed.\n * return temp <= prevHigh;\n * })\n * );\n *\n * recordHighs$.subscribe(console.log);\n * // Logs: 30, 31, 34, 35\n * ```\n *\n * Selecting update events only when the `updatedBy` field shows\n * the account changed hands.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * // A stream of updates to a given account\n * const accountUpdates$ = of(\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'blesh', data: [] }\n * );\n *\n * // We only want the events where it changed hands\n * const changedHands$ = accountUpdates$.pipe(\n * distinctUntilChanged(undefined, update => update.updatedBy)\n * );\n *\n * changedHands$.subscribe(console.log);\n * // Logs:\n * // { updatedBy: 'blesh', data: Array[0] }\n * // { updatedBy: 'ncjamieson', data: Array[0] }\n * // { updatedBy: 'blesh', data: Array[0] }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilKeyChanged}\n *\n * @param comparator A function used to compare the previous and current keys for\n * equality. Defaults to a `===` check.\n * @param keySelector Used to select a key value to be passed to the `comparator`.\n *\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values.\n */\nexport function distinctUntilChanged<T, K>(\n comparator?: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K = identity as (value: T) => K\n): MonoTypeOperatorFunction<T> {\n // We've been allowing `null` do be passed as the `compare`, so we can't do\n // a default value for the parameter, because that will only work\n // for `undefined`.\n comparator = comparator ?? defaultCompare;\n\n return operate((source, subscriber) => {\n // The previous key, used to compare against keys selected\n // from new arrivals to determine \"distinctiveness\".\n let previousKey: K;\n // Whether or not this is the first value we've gotten.\n let first = true;\n\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // We always call the key selector.\n const currentKey = keySelector(value);\n\n // If it's the first value, we always emit it.\n // Otherwise, we compare this key to the previous key, and\n // if the comparer returns false, we emit.\n if (first || !comparator!(previousKey, currentKey)) {\n // Update our state *before* we emit the value\n // as emission can be the source of re-entrant code\n // in functional libraries like this. We only really\n // need to do this if it's the first value, or if the\n // key we're tracking in previous needs to change.\n first = false;\n previousKey = currentKey;\n\n // Emit the value!\n subscriber.next(value);\n }\n })\n );\n });\n}\n\nfunction defaultCompare(a: any, b: any) {\n return a === b;\n}\n", "import { distinctUntilChanged } from './distinctUntilChanged';\nimport { MonoTypeOperatorFunction } from '../types';\n\nexport function distinctUntilKeyChanged<T>(key: keyof T): MonoTypeOperatorFunction<T>;\nexport function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns an Observable that emits all items emitted by the source Observable that\n * are distinct by comparison from the previous item, using a property accessed by\n * using the key provided to check if the two items are distinct.\n *\n * If a comparator function is provided, then it will be called for each item to\n * test for whether that value should be emitted or not.\n *\n * If a comparator function is not provided, an equality check is used by default.\n *\n * ## Examples\n *\n * An example comparing the name of persons\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo' },\n * { age: 6, name: 'Foo' }\n * ).pipe(\n * distinctUntilKeyChanged('name')\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo' }\n * ```\n *\n * An example comparing the first letters of the name\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo1' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo2' },\n * { age: 6, name: 'Foo3' }\n * ).pipe(\n * distinctUntilKeyChanged('name', (x, y) => x.substring(0, 3) === y.substring(0, 3))\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo1' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo2' }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n *\n * @param key String key for object property lookup on each item.\n * @param compare Optional comparison function called to test if an item is distinct\n * from the previous item in the source.\n * @return A function that returns an Observable that emits items from the source\n * Observable with distinct values based on the key specified.\n */\nexport function distinctUntilKeyChanged<T, K extends keyof T>(\n key: K,\n compare?: (x: T[K], y: T[K]) => boolean\n): MonoTypeOperatorFunction<T> {\n return distinctUntilChanged((x: T, y: T) => (compare ? compare(x[key], y[key]) : x[key] === y[key]));\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Returns an Observable that mirrors the source Observable, but will call a specified function when\n * the source terminates on complete or error.\n * The specified function will also be called when the subscriber explicitly unsubscribes.\n *\n * ## Examples\n *\n * Execute callback function when the observable completes\n *\n * ```ts\n * import { interval, take, finalize } from 'rxjs';\n *\n * // emit value in sequence every 1 second\n * const source = interval(1000);\n * const example = source.pipe(\n * take(5), //take only the first 5 values\n * finalize(() => console.log('Sequence complete')) // Execute when the observable completes\n * );\n * const subscribe = example.subscribe(val => console.log(val));\n *\n * // results:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * // 'Sequence complete'\n * ```\n *\n * Execute callback function when the subscriber explicitly unsubscribes\n *\n * ```ts\n * import { interval, finalize, tap, noop, timer } from 'rxjs';\n *\n * const source = interval(100).pipe(\n * finalize(() => console.log('[finalize] Called')),\n * tap({\n * next: () => console.log('[next] Called'),\n * error: () => console.log('[error] Not called'),\n * complete: () => console.log('[tap complete] Not called')\n * })\n * );\n *\n * const sub = source.subscribe({\n * next: x => console.log(x),\n * error: noop,\n * complete: () => console.log('[complete] Not called')\n * });\n *\n * timer(150).subscribe(() => sub.unsubscribe());\n *\n * // results:\n * // '[next] Called'\n * // 0\n * // '[finalize] Called'\n * ```\n *\n * @param callback Function to be called when source terminates.\n * @return A function that returns an Observable that mirrors the source, but\n * will call the specified function on termination.\n */\nexport function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // TODO: This try/finally was only added for `useDeprecatedSynchronousErrorHandling`.\n // REMOVE THIS WHEN THAT HOT GARBAGE IS REMOVED IN V8.\n try {\n source.subscribe(subscriber);\n } finally {\n subscriber.add(callback);\n }\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Subject } from '../Subject';\nimport { SafeSubscriber } from '../Subscriber';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SubjectLike, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\n\nexport interface ShareConfig<T> {\n /**\n * The factory used to create the subject that will connect the source observable to\n * multicast consumers.\n */\n connector?: () => SubjectLike<T>;\n /**\n * If `true`, the resulting observable will reset internal state on error from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"retried\" in the event of an error.\n * If `false`, when an error comes from the source it will push the error into the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent retries\n * or resubscriptions will resubscribe to that same subject. In all cases, RxJS subjects will emit the same error again, however\n * {@link ReplaySubject} will also push its buffered values before pushing the error.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnError?: boolean | ((error: any) => ObservableInput<any>);\n /**\n * If `true`, the resulting observable will reset internal state on completion from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"repeated\" after it is done.\n * If `false`, when the source completes, it will push the completion through the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent repeats\n * or resubscriptions will resubscribe to that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnComplete?: boolean | (() => ObservableInput<any>);\n /**\n * If `true`, when the number of subscribers to the resulting observable reaches zero due to those subscribers unsubscribing, the\n * internal state will be reset and the resulting observable will return to a \"cold\" state. This means that the next\n * time the resulting observable is subscribed to, a new subject will be created and the source will be subscribed to\n * again.\n * If `false`, when the number of subscribers to the resulting observable reaches zero due to unsubscription, the subject\n * will remain connected to the source, and new subscriptions to the result will be connected through that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnRefCountZero?: boolean | (() => ObservableInput<any>);\n}\n\nexport function share<T>(): MonoTypeOperatorFunction<T>;\n\nexport function share<T>(options: ShareConfig<T>): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a new Observable that multicasts (shares) the original Observable. As long as there is at least one\n * Subscriber this Observable will be subscribed and emitting data. When all subscribers have unsubscribed it will\n * unsubscribe from the source Observable. Because the Observable is multicasting it makes the stream `hot`.\n * This is an alias for `multicast(() => new Subject()), refCount()`.\n *\n * The subscription to the underlying source Observable can be reset (unsubscribe and resubscribe for new subscribers),\n * if the subscriber count to the shared observable drops to 0, or if the source Observable errors or completes. It is\n * possible to use notifier factories for the resets to allow for behaviors like conditional or delayed resets. Please\n * note that resetting on error or complete of the source Observable does not behave like a transparent retry or restart\n * of the source because the error or complete will be forwarded to all subscribers and their subscription will be\n * closed. Only new subscribers after a reset on error or complete happened will cause a fresh subscription to the\n * source. To achieve transparent retries or restarts pipe the source through appropriate operators before sharing.\n *\n * ![](share.png)\n *\n * ## Example\n *\n * Generate new multicast Observable from the `source` Observable value\n *\n * ```ts\n * import { interval, tap, map, take, share } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * tap(x => console.log('Processing: ', x)),\n * map(x => x * x),\n * take(6),\n * share()\n * );\n *\n * source.subscribe(x => console.log('subscription 1: ', x));\n * source.subscribe(x => console.log('subscription 2: ', x));\n *\n * // Logs:\n * // Processing: 0\n * // subscription 1: 0\n * // subscription 2: 0\n * // Processing: 1\n * // subscription 1: 1\n * // subscription 2: 1\n * // Processing: 2\n * // subscription 1: 4\n * // subscription 2: 4\n * // Processing: 3\n * // subscription 1: 9\n * // subscription 2: 9\n * // Processing: 4\n * // subscription 1: 16\n * // subscription 2: 16\n * // Processing: 5\n * // subscription 1: 25\n * // subscription 2: 25\n * ```\n *\n * ## Example with notifier factory: Delayed reset\n *\n * ```ts\n * import { interval, take, share, timer } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * take(3),\n * share({\n * resetOnRefCountZero: () => timer(1000)\n * })\n * );\n *\n * const subscriptionOne = source.subscribe(x => console.log('subscription 1: ', x));\n * setTimeout(() => subscriptionOne.unsubscribe(), 1300);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 2: ', x)), 1700);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 3: ', x)), 5000);\n *\n * // Logs:\n * // subscription 1: 0\n * // (subscription 1 unsubscribes here)\n * // (subscription 2 subscribes here ~400ms later, source was not reset)\n * // subscription 2: 1\n * // subscription 2: 2\n * // (subscription 2 unsubscribes here)\n * // (subscription 3 subscribes here ~2000ms later, source did reset before)\n * // subscription 3: 0\n * // subscription 3: 1\n * // subscription 3: 2\n * ```\n *\n * @see {@link shareReplay}\n *\n * @return A function that returns an Observable that mirrors the source.\n */\nexport function share<T>(options: ShareConfig<T> = {}): MonoTypeOperatorFunction<T> {\n const { connector = () => new Subject<T>(), resetOnError = true, resetOnComplete = true, resetOnRefCountZero = true } = options;\n // It's necessary to use a wrapper here, as the _operator_ must be\n // referentially transparent. Otherwise, it cannot be used in calls to the\n // static `pipe` function - to create a partial pipeline.\n //\n // The _operator function_ - the function returned by the _operator_ - will\n // not be referentially transparent - as it shares its source - but the\n // _operator function_ is called when the complete pipeline is composed via a\n // call to a source observable's `pipe` method - not when the static `pipe`\n // function is called.\n return (wrapperSource) => {\n let connection: SafeSubscriber<T> | undefined;\n let resetConnection: Subscription | undefined;\n let subject: SubjectLike<T> | undefined;\n let refCount = 0;\n let hasCompleted = false;\n let hasErrored = false;\n\n const cancelReset = () => {\n resetConnection?.unsubscribe();\n resetConnection = undefined;\n };\n // Used to reset the internal state to a \"cold\"\n // state, as though it had never been subscribed to.\n const reset = () => {\n cancelReset();\n connection = subject = undefined;\n hasCompleted = hasErrored = false;\n };\n const resetAndUnsubscribe = () => {\n // We need to capture the connection before\n // we reset (if we need to reset).\n const conn = connection;\n reset();\n conn?.unsubscribe();\n };\n\n return operate<T, T>((source, subscriber) => {\n refCount++;\n if (!hasErrored && !hasCompleted) {\n cancelReset();\n }\n\n // Create the subject if we don't have one yet. Grab a local reference to\n // it as well, which avoids non-null assertions when using it and, if we\n // connect to it now, then error/complete need a reference after it was\n // reset.\n const dest = (subject = subject ?? connector());\n\n // Add the finalization directly to the subscriber - instead of returning it -\n // so that the handling of the subscriber's unsubscription will be wired\n // up _before_ the subscription to the source occurs. This is done so that\n // the assignment to the source connection's `closed` property will be seen\n // by synchronous firehose sources.\n subscriber.add(() => {\n refCount--;\n\n // If we're resetting on refCount === 0, and it's 0, we only want to do\n // that on \"unsubscribe\", really. Resetting on error or completion is a different\n // configuration.\n if (refCount === 0 && !hasErrored && !hasCompleted) {\n resetConnection = handleReset(resetAndUnsubscribe, resetOnRefCountZero);\n }\n });\n\n // The following line adds the subscription to the subscriber passed.\n // Basically, `subscriber === dest.subscribe(subscriber)` is `true`.\n dest.subscribe(subscriber);\n\n if (\n !connection &&\n // Check this shareReplay is still activate - it can be reset to 0\n // and be \"unsubscribed\" _before_ it actually subscribes.\n // If we were to subscribe then, it'd leak and get stuck.\n refCount > 0\n ) {\n // We need to create a subscriber here - rather than pass an observer and\n // assign the returned subscription to connection - because it's possible\n // for reentrant subscriptions to the shared observable to occur and in\n // those situations we want connection to be already-assigned so that we\n // don't create another connection to the source.\n connection = new SafeSubscriber({\n next: (value) => dest.next(value),\n error: (err) => {\n hasErrored = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnError, err);\n dest.error(err);\n },\n complete: () => {\n hasCompleted = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnComplete);\n dest.complete();\n },\n });\n innerFrom(source).subscribe(connection);\n }\n })(wrapperSource);\n };\n}\n\nfunction handleReset<T extends unknown[] = never[]>(\n reset: () => void,\n on: boolean | ((...args: T) => ObservableInput<any>),\n ...args: T\n): Subscription | undefined {\n if (on === true) {\n reset();\n return;\n }\n\n if (on === false) {\n return;\n }\n\n const onSubscriber = new SafeSubscriber({\n next: () => {\n onSubscriber.unsubscribe();\n reset();\n },\n });\n\n return innerFrom(on(...args)).subscribe(onSubscriber);\n}\n", "import { ReplaySubject } from '../ReplaySubject';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { share } from './share';\n\nexport interface ShareReplayConfig {\n bufferSize?: number;\n windowTime?: number;\n refCount: boolean;\n scheduler?: SchedulerLike;\n}\n\nexport function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;\nexport function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n\n/**\n * Share source and replay specified number of emissions on subscription.\n *\n * This operator is a specialization of `replay` that connects to a source observable\n * and multicasts through a `ReplaySubject` constructed with the specified arguments.\n * A successfully completed source will stay cached in the `shareReplay`ed observable forever,\n * but an errored source can be retried.\n *\n * ## Why use `shareReplay`?\n *\n * You generally want to use `shareReplay` when you have side-effects or taxing computations\n * that you do not wish to be executed amongst multiple subscribers.\n * It may also be valuable in situations where you know you will have late subscribers to\n * a stream that need access to previously emitted values.\n * This ability to replay values on subscription is what differentiates {@link share} and `shareReplay`.\n *\n * ## Reference counting\n *\n * By default `shareReplay` will use `refCount` of false, meaning that it will _not_ unsubscribe the\n * source when the reference counter drops to zero, i.e. the inner `ReplaySubject` will _not_ be unsubscribed\n * (and potentially run for ever).\n * This is the default as it is expected that `shareReplay` is often used to keep around expensive to setup\n * observables which we want to keep running instead of having to do the expensive setup again.\n *\n * As of RXJS version 6.4.0 a new overload signature was added to allow for manual control over what\n * happens when the operators internal reference counter drops to zero.\n * If `refCount` is true, the source will be unsubscribed from once the reference count drops to zero, i.e.\n * the inner `ReplaySubject` will be unsubscribed. All new subscribers will receive value emissions from a\n * new `ReplaySubject` which in turn will cause a new subscription to the source observable.\n *\n * ## Examples\n *\n * Example with a third subscriber coming late to the party\n *\n * ```ts\n * import { interval, take, shareReplay } from 'rxjs';\n *\n * const shared$ = interval(2000).pipe(\n * take(6),\n * shareReplay(3)\n * );\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * setTimeout(() => {\n * shared$.subscribe(y => console.log('sub C: ', y));\n * }, 11000);\n *\n * // Logs:\n * // (after ~2000 ms)\n * // sub A: 0\n * // sub B: 0\n * // (after ~4000 ms)\n * // sub A: 1\n * // sub B: 1\n * // (after ~6000 ms)\n * // sub A: 2\n * // sub B: 2\n * // (after ~8000 ms)\n * // sub A: 3\n * // sub B: 3\n * // (after ~10000 ms)\n * // sub A: 4\n * // sub B: 4\n * // (after ~11000 ms, sub C gets the last 3 values)\n * // sub C: 2\n * // sub C: 3\n * // sub C: 4\n * // (after ~12000 ms)\n * // sub A: 5\n * // sub B: 5\n * // sub C: 5\n * ```\n *\n * Example for `refCount` usage\n *\n * ```ts\n * import { Observable, tap, interval, shareReplay, take } from 'rxjs';\n *\n * const log = <T>(name: string, source: Observable<T>) => source.pipe(\n * tap({\n * subscribe: () => console.log(`${ name }: subscribed`),\n * next: value => console.log(`${ name }: ${ value }`),\n * complete: () => console.log(`${ name }: completed`),\n * finalize: () => console.log(`${ name }: unsubscribed`)\n * })\n * );\n *\n * const obs$ = log('source', interval(1000));\n *\n * const shared$ = log('shared', obs$.pipe(\n * shareReplay({ bufferSize: 1, refCount: true }),\n * take(2)\n * ));\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * // PRINTS:\n * // shared: subscribed <-- reference count = 1\n * // source: subscribed\n * // shared: subscribed <-- reference count = 2\n * // source: 0\n * // shared: 0\n * // sub A: 0\n * // shared: 0\n * // sub B: 0\n * // source: 1\n * // shared: 1\n * // sub A: 1\n * // shared: completed <-- take(2) completes the subscription for sub A\n * // shared: unsubscribed <-- reference count = 1\n * // shared: 1\n * // sub B: 1\n * // shared: completed <-- take(2) completes the subscription for sub B\n * // shared: unsubscribed <-- reference count = 0\n * // source: unsubscribed <-- replaySubject unsubscribes from source observable because the reference count dropped to 0 and refCount is true\n *\n * // In case of refCount being false, the unsubscribe is never called on the source and the source would keep on emitting, even if no subscribers\n * // are listening.\n * // source: 2\n * // source: 3\n * // source: 4\n * // ...\n * ```\n *\n * @see {@link publish}\n * @see {@link share}\n * @see {@link publishReplay}\n *\n * @param configOrBufferSize Maximum element count of the replay buffer or {@link ShareReplayConfig configuration}\n * object.\n * @param windowTime Maximum time length of the replay buffer in milliseconds.\n * @param scheduler Scheduler where connected observers within the selector function\n * will be invoked on.\n * @return A function that returns an Observable sequence that contains the\n * elements of a sequence produced by multicasting the source sequence within a\n * selector function.\n */\nexport function shareReplay<T>(\n configOrBufferSize?: ShareReplayConfig | number,\n windowTime?: number,\n scheduler?: SchedulerLike\n): MonoTypeOperatorFunction<T> {\n let bufferSize: number;\n let refCount = false;\n if (configOrBufferSize && typeof configOrBufferSize === 'object') {\n ({ bufferSize = Infinity, windowTime = Infinity, refCount = false, scheduler } = configOrBufferSize);\n } else {\n bufferSize = (configOrBufferSize ?? Infinity) as number;\n }\n return share<T>({\n connector: () => new ReplaySubject(bufferSize, windowTime, scheduler),\n resetOnError: true,\n resetOnComplete: false,\n resetOnRefCountZero: refCount,\n });\n}\n", "import { concat } from '../observable/concat';\nimport { OperatorFunction, SchedulerLike, ValueFromArray } from '../types';\nimport { popScheduler } from '../util/args';\nimport { operate } from '../util/lift';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function startWith<T>(value: null): OperatorFunction<T, T | null>;\nexport function startWith<T>(value: undefined): OperatorFunction<T, T | undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function startWith<T, A extends readonly unknown[] = T[]>(\n ...valuesAndScheduler: [...A, SchedulerLike]\n): OperatorFunction<T, T | ValueFromArray<A>>;\nexport function startWith<T, A extends readonly unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n\n/**\n * Returns an observable that, at the moment of subscription, will synchronously emit all\n * values provided to this operator, then subscribe to the source and mirror all of its emissions\n * to subscribers.\n *\n * This is a useful way to know when subscription has occurred on an existing observable.\n *\n * <span class=\"informal\">First emits its arguments in order, and then any\n * emissions from the source.</span>\n *\n * ![](startWith.png)\n *\n * ## Examples\n *\n * Emit a value when a timer starts.\n *\n * ```ts\n * import { timer, map, startWith } from 'rxjs';\n *\n * timer(1000)\n * .pipe(\n * map(() => 'timer emit'),\n * startWith('timer start')\n * )\n * .subscribe(x => console.log(x));\n *\n * // results:\n * // 'timer start'\n * // 'timer emit'\n * ```\n *\n * @param values Items you want the modified Observable to emit first.\n * @return A function that returns an Observable that synchronously emits\n * provided values before subscribing to the source Observable.\n *\n * @see {@link endWith}\n * @see {@link finalize}\n * @see {@link concat}\n */\nexport function startWith<T, D>(...values: D[]): OperatorFunction<T, T | D> {\n const scheduler = popScheduler(values);\n return operate((source, subscriber) => {\n // Here we can't pass `undefined` as a scheduler, because if we did, the\n // code inside of `concat` would be confused by the `undefined`, and treat it\n // like an invalid observable. So we have to split it two different ways.\n (scheduler ? concat(values, source, scheduler) : concat(values, source)).subscribe(subscriber);\n });\n}\n", "import { Subscriber } from '../Subscriber';\nimport { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/* tslint:disable:max-line-length */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable, emitting values only from the most recently projected Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link switchAll}.</span>\n *\n * ![](switchMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an (so-called \"inner\") Observable. Each time it observes one of these\n * inner Observables, the output Observable begins emitting the items emitted by\n * that inner Observable. When a new inner Observable is emitted, `switchMap`\n * stops emitting items from the earlier-emitted inner Observable and begins\n * emitting items from the new one. It continues to behave like this for\n * subsequent inner Observables.\n *\n * ## Example\n *\n * Generate new Observable according to source Observable values\n *\n * ```ts\n * import { of, switchMap } from 'rxjs';\n *\n * const switched = of(1, 2, 3).pipe(switchMap(x => of(x, x ** 2, x ** 3)));\n * switched.subscribe(x => console.log(x));\n * // outputs\n * // 1\n * // 1\n * // 1\n * // 2\n * // 4\n * // 8\n * // 3\n * // 9\n * // 27\n * ```\n *\n * Restart an interval Observable on every click event\n *\n * ```ts\n * import { fromEvent, switchMap, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(switchMap(() => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link mergeMap}\n * @see {@link switchAll}\n * @see {@link switchMapTo}\n *\n * @param project A function that, when applied to an item emitted by the source\n * Observable, returns an Observable.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and taking\n * only the values from the most recently projected inner Observable.\n */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n return operate((source, subscriber) => {\n let innerSubscriber: Subscriber<ObservedValueOf<O>> | null = null;\n let index = 0;\n // Whether or not the source subscription has completed\n let isComplete = false;\n\n // We only complete the result if the source is complete AND we don't have an active inner subscription.\n // This is called both when the source completes and when the inners complete.\n const checkComplete = () => isComplete && !innerSubscriber && subscriber.complete();\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // Cancel the previous inner subscription if there was one\n innerSubscriber?.unsubscribe();\n let innerIndex = 0;\n const outerIndex = index++;\n // Start the next inner subscription\n innerFrom(project(value, outerIndex)).subscribe(\n (innerSubscriber = createOperatorSubscriber(\n subscriber,\n // When we get a new inner value, next it through. Note that this is\n // handling the deprecate result selector here. This is because with this architecture\n // it ends up being smaller than using the map operator.\n (innerValue) => subscriber.next(resultSelector ? resultSelector(value, innerValue, outerIndex, innerIndex++) : innerValue),\n () => {\n // The inner has completed. Null out the inner subscriber to\n // free up memory and to signal that we have no inner subscription\n // currently.\n innerSubscriber = null!;\n checkComplete();\n }\n ))\n );\n },\n () => {\n isComplete = true;\n checkComplete();\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, Observer } from '../types';\nimport { isFunction } from '../util/isFunction';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { identity } from '../util/identity';\n\n/**\n * An extension to the {@link Observer} interface used only by the {@link tap} operator.\n *\n * It provides a useful set of callbacks a user can register to do side-effects in\n * cases other than what the usual {@link Observer} callbacks are\n * ({@link guide/glossary-and-semantics#next next},\n * {@link guide/glossary-and-semantics#error error} and/or\n * {@link guide/glossary-and-semantics#complete complete}).\n *\n * ## Example\n *\n * ```ts\n * import { fromEvent, switchMap, tap, interval, take } from 'rxjs';\n *\n * const source$ = fromEvent(document, 'click');\n * const result$ = source$.pipe(\n * switchMap((_, i) => i % 2 === 0\n * ? fromEvent(document, 'mousemove').pipe(\n * tap({\n * subscribe: () => console.log('Subscribed to the mouse move events after click #' + i),\n * unsubscribe: () => console.log('Mouse move events #' + i + ' unsubscribed'),\n * finalize: () => console.log('Mouse move events #' + i + ' finalized')\n * })\n * )\n * : interval(1_000).pipe(\n * take(5),\n * tap({\n * subscribe: () => console.log('Subscribed to the 1-second interval events after click #' + i),\n * unsubscribe: () => console.log('1-second interval events #' + i + ' unsubscribed'),\n * finalize: () => console.log('1-second interval events #' + i + ' finalized')\n * })\n * )\n * )\n * );\n *\n * const subscription = result$.subscribe({\n * next: console.log\n * });\n *\n * setTimeout(() => {\n * console.log('Unsubscribe after 60 seconds');\n * subscription.unsubscribe();\n * }, 60_000);\n * ```\n */\nexport interface TapObserver<T> extends Observer<T> {\n /**\n * The callback that `tap` operator invokes at the moment when the source Observable\n * gets subscribed to.\n */\n subscribe: () => void;\n /**\n * The callback that `tap` operator invokes when an explicit\n * {@link guide/glossary-and-semantics#unsubscription unsubscribe} happens. It won't get invoked on\n * `error` or `complete` events.\n */\n unsubscribe: () => void;\n /**\n * The callback that `tap` operator invokes when any kind of\n * {@link guide/glossary-and-semantics#finalization finalization} happens - either when\n * the source Observable `error`s or `complete`s or when it gets explicitly unsubscribed\n * by the user. There is no difference in using this callback or the {@link finalize}\n * operator, but if you're already using `tap` operator, you can use this callback\n * instead. You'd get the same result in either case.\n */\n finalize: () => void;\n}\nexport function tap<T>(observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void)): MonoTypeOperatorFunction<T>;\n/** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\nexport function tap<T>(\n next?: ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Used to perform side-effects for notifications from the source observable\n *\n * <span class=\"informal\">Used when you want to affect outside state with a notification without altering the notification</span>\n *\n * ![](tap.png)\n *\n * Tap is designed to allow the developer a designated place to perform side effects. While you _could_ perform side-effects\n * inside of a `map` or a `mergeMap`, that would make their mapping functions impure, which isn't always a big deal, but will\n * make it so you can't do things like memoize those functions. The `tap` operator is designed solely for such side-effects to\n * help you remove side-effects from other operations.\n *\n * For any notification, next, error, or complete, `tap` will call the appropriate callback you have provided to it, via a function\n * reference, or a partial observer, then pass that notification down the stream.\n *\n * The observable returned by `tap` is an exact mirror of the source, with one exception: Any error that occurs -- synchronously -- in a handler\n * provided to `tap` will be emitted as an error from the returned observable.\n *\n * > Be careful! You can mutate objects as they pass through the `tap` operator's handlers.\n *\n * The most common use of `tap` is actually for debugging. You can place a `tap(console.log)` anywhere\n * in your observable `pipe`, log out the notifications as they are emitted by the source returned by the previous\n * operation.\n *\n * ## Examples\n *\n * Check a random number before it is handled. Below is an observable that will use a random number between 0 and 1,\n * and emit `'big'` or `'small'` depending on the size of that number. But we wanted to log what the original number\n * was, so we have added a `tap(console.log)`.\n *\n * ```ts\n * import { of, tap, map } from 'rxjs';\n *\n * of(Math.random()).pipe(\n * tap(console.log),\n * map(n => n > 0.5 ? 'big' : 'small')\n * ).subscribe(console.log);\n * ```\n *\n * Using `tap` to analyze a value and force an error. Below is an observable where in our system we only\n * want to emit numbers 3 or less we get from another source. We can force our observable to error\n * using `tap`.\n *\n * ```ts\n * import { of, tap } from 'rxjs';\n *\n * const source = of(1, 2, 3, 4, 5);\n *\n * source.pipe(\n * tap(n => {\n * if (n > 3) {\n * throw new TypeError(`Value ${ n } is greater than 3`);\n * }\n * })\n * )\n * .subscribe({ next: console.log, error: err => console.log(err.message) });\n * ```\n *\n * We want to know when an observable completes before moving on to the next observable. The system\n * below will emit a random series of `'X'` characters from 3 different observables in sequence. The\n * only way we know when one observable completes and moves to the next one, in this case, is because\n * we have added a `tap` with the side effect of logging to console.\n *\n * ```ts\n * import { of, concatMap, interval, take, map, tap } from 'rxjs';\n *\n * of(1, 2, 3).pipe(\n * concatMap(n => interval(1000).pipe(\n * take(Math.round(Math.random() * 10)),\n * map(() => 'X'),\n * tap({ complete: () => console.log(`Done with ${ n }`) })\n * ))\n * )\n * .subscribe(console.log);\n * ```\n *\n * @see {@link finalize}\n * @see {@link TapObserver}\n *\n * @param observerOrNext A next handler or partial observer\n * @param error An error handler\n * @param complete A completion handler\n * @return A function that returns an Observable identical to the source, but\n * runs the specified Observer or callback(s) for each item.\n */\nexport function tap<T>(\n observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void) | null,\n error?: ((e: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T> {\n // We have to check to see not only if next is a function,\n // but if error or complete were passed. This is because someone\n // could technically call tap like `tap(null, fn)` or `tap(null, null, fn)`.\n const tapObserver =\n isFunction(observerOrNext) || error || complete\n ? // tslint:disable-next-line: no-object-literal-type-assertion\n ({ next: observerOrNext as Exclude<typeof observerOrNext, Partial<TapObserver<T>>>, error, complete } as Partial<TapObserver<T>>)\n : observerOrNext;\n\n return tapObserver\n ? operate((source, subscriber) => {\n tapObserver.subscribe?.();\n let isUnsub = true;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n tapObserver.next?.(value);\n subscriber.next(value);\n },\n () => {\n isUnsub = false;\n tapObserver.complete?.();\n subscriber.complete();\n },\n (err) => {\n isUnsub = false;\n tapObserver.error?.(err);\n subscriber.error(err);\n },\n () => {\n if (isUnsub) {\n tapObserver.unsubscribe?.();\n }\n tapObserver.finalize?.();\n }\n )\n );\n })\n : // Tap was called with no valid tap observer or handler\n // (e.g. `tap(null, null, null)` or `tap(null)` or `tap()`)\n // so we're going to just mirror the source.\n identity;\n}\n", "import { OperatorFunction, ObservableInputTuple } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { identity } from '../util/identity';\nimport { noop } from '../util/noop';\nimport { popResultSelector } from '../util/args';\n\nexport function withLatestFrom<T, O extends unknown[]>(...inputs: [...ObservableInputTuple<O>]): OperatorFunction<T, [T, ...O]>;\n\nexport function withLatestFrom<T, O extends unknown[], R>(\n ...inputs: [...ObservableInputTuple<O>, (...value: [T, ...O]) => R]\n): OperatorFunction<T, R>;\n\n/**\n * Combines the source Observable with other Observables to create an Observable\n * whose values are calculated from the latest values of each, only when the\n * source emits.\n *\n * <span class=\"informal\">Whenever the source Observable emits a value, it\n * computes a formula using that value plus the latest values from other input\n * Observables, then emits the output of that formula.</span>\n *\n * ![](withLatestFrom.png)\n *\n * `withLatestFrom` combines each value from the source Observable (the\n * instance) with the latest values from the other input Observables only when\n * the source emits a value, optionally using a `project` function to determine\n * the value to be emitted on the output Observable. All input Observables must\n * emit at least one value before the output Observable will emit a value.\n *\n * ## Example\n *\n * On every click event, emit an array with the latest timer event plus the click event\n *\n * ```ts\n * import { fromEvent, interval, withLatestFrom } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const result = clicks.pipe(withLatestFrom(timer));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatest}\n *\n * @param inputs An input Observable to combine with the source Observable. More\n * than one input Observables may be given as argument. If the last parameter is\n * a function, it will be used as a projection function for combining values\n * together. When the function is called, it receives all values in order of the\n * Observables passed, where the first parameter is a value from the source\n * Observable. (e.g.\n * `a.pipe(withLatestFrom(b, c), map(([a1, b1, c1]) => a1 + b1 + c1))`). If this\n * is not passed, arrays will be emitted on the output Observable.\n * @return A function that returns an Observable of projected values from the\n * most recent values from each input Observable, or an array of the most\n * recent values from each input Observable.\n */\nexport function withLatestFrom<T, R>(...inputs: any[]): OperatorFunction<T, R | any[]> {\n const project = popResultSelector(inputs) as ((...args: any[]) => R) | undefined;\n\n return operate((source, subscriber) => {\n const len = inputs.length;\n const otherValues = new Array(len);\n // An array of whether or not the other sources have emitted. Matched with them by index.\n // TODO: At somepoint, we should investigate the performance implications here, and look\n // into using a `Set()` and checking the `size` to see if we're ready.\n let hasValue = inputs.map(() => false);\n // Flipped true when we have at least one value from all other sources and\n // we are ready to start emitting values.\n let ready = false;\n\n // Other sources. Note that here we are not checking `subscriber.closed`,\n // this causes all inputs to be subscribed to, even if nothing can be emitted\n // from them. This is an important distinction because subscription constitutes\n // a side-effect.\n for (let i = 0; i < len; i++) {\n innerFrom(inputs[i]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n otherValues[i] = value;\n if (!ready && !hasValue[i]) {\n // If we're not ready yet, flag to show this observable has emitted.\n hasValue[i] = true;\n // Intentionally terse code.\n // If all of our other observables have emitted, set `ready` to `true`,\n // so we know we can start emitting values, then clean up the `hasValue` array,\n // because we don't need it anymore.\n (ready = hasValue.every(identity)) && (hasValue = null!);\n }\n },\n // Completing one of the other sources has\n // no bearing on the completion of our result.\n noop\n )\n );\n }\n\n // Source subscription\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n if (ready) {\n // We have at least one value from the other sources. Go ahead and emit.\n const values = [value, ...otherValues];\n subscriber.next(project ? project(...values) : values);\n }\n })\n );\n });\n}\n", "import { zip as zipStatic } from '../observable/zip';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { operate } from '../util/lift';\n\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n otherInputsAndProject: [...ObservableInputTuple<A>],\n project: (...values: Cons<T, A>) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n ...otherInputsAndProject: [...ObservableInputTuple<A>, (...values: Cons<T, A>) => R]\n): OperatorFunction<T, R>;\n\n/**\n * @deprecated Replaced with {@link zipWith}. Will be removed in v8.\n */\nexport function zip<T, R>(...sources: Array<ObservableInput<any> | ((...values: Array<any>) => R)>): OperatorFunction<T, any> {\n return operate((source, subscriber) => {\n zipStatic(source as ObservableInput<any>, ...(sources as Array<ObservableInput<any>>)).subscribe(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { zip } from './zip';\n\n/**\n * Subscribes to the source, and the observable inputs provided as arguments, and combines their values, by index, into arrays.\n *\n * What is meant by \"combine by index\": The first value from each will be made into a single array, then emitted,\n * then the second value from each will be combined into a single array and emitted, then the third value\n * from each will be combined into a single array and emitted, and so on.\n *\n * This will continue until it is no longer able to combine values of the same index into an array.\n *\n * After the last value from any one completed source is emitted in an array, the resulting observable will complete,\n * as there is no way to continue \"zipping\" values together by index.\n *\n * Use-cases for this operator are limited. There are memory concerns if one of the streams is emitting\n * values at a much faster rate than the others. Usage should likely be limited to streams that emit\n * at a similar pace, or finite streams of known length.\n *\n * In many cases, authors want `combineLatestWith` and not `zipWith`.\n *\n * @param otherInputs other observable inputs to collate values from.\n * @return A function that returns an Observable that emits items by index\n * combined from the source Observable and provided Observables, in form of an\n * array.\n */\nexport function zipWith<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>> {\n return zip(...otherInputs);\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getElements<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T][]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T[]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll<T>(selector))\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * Note that this function assumes that the element is present. If unsure if an\n * element is existent, use the `getOptionalElement` function instead.\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T {\n const el = getOptionalElement<T>(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n\n /* Return element */\n return el\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an optional element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element or nothing\n */\nexport function getOptionalElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T] | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector<T>(selector) || undefined\n}\n\n/**\n * Retrieve the currently active element\n *\n * @returns Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return (\n document.activeElement?.shadowRoot?.activeElement as HTMLElement ??\n document.activeElement as HTMLElement ??\n undefined\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n debounceTime,\n distinctUntilChanged,\n fromEvent,\n map,\n merge,\n shareReplay,\n startWith\n} from \"rxjs\"\n\nimport { getActiveElement } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Focus observable\n *\n * Previously, this observer used `focus` and `blur` events to determine whether\n * an element is focused, but this doesn't work if there are focusable elements\n * within the elements itself. A better solutions are `focusin` and `focusout`\n * events, which bubble up the tree and allow for more fine-grained control.\n *\n * `debounceTime` is necessary, because when a focus change happens inside an\n * element, the observable would first emit `false` and then `true` again.\n */\nconst observer$ = merge(\n fromEvent(document.body, \"focusin\"),\n fromEvent(document.body, \"focusout\")\n)\n .pipe(\n debounceTime(1),\n startWith(undefined),\n map(() => getActiveElement() || document.body),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element focus\n *\n * @param el - Element\n *\n * @returns Element focus observable\n */\nexport function watchElementFocus(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n map(active => el.contains(active)),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { JSX as JSXInternal } from \"preact\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * HTML attributes\n */\ntype Attributes =\n & JSXInternal.HTMLAttributes\n & JSXInternal.SVGAttributes\n & Record<string, any>\n\n/**\n * Child element\n */\ntype Child =\n | ChildNode\n | HTMLElement\n | Text\n | string\n | number\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Append a child node to an element\n *\n * @param el - Element\n * @param child - Child node(s)\n */\nfunction appendChild(el: HTMLElement, child: Child | Child[]): void {\n\n /* Handle primitive types (including raw HTML) */\n if (typeof child === \"string\" || typeof child === \"number\") {\n el.innerHTML += child.toString()\n\n /* Handle nodes */\n } else if (child instanceof Node) {\n el.appendChild(child)\n\n /* Handle nested children */\n } else if (Array.isArray(child)) {\n for (const node of child)\n appendChild(el, node)\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * JSX factory\n *\n * @template T - Element type\n *\n * @param tag - HTML tag\n * @param attributes - HTML attributes\n * @param children - Child elements\n *\n * @returns Element\n */\nexport function h<T extends keyof HTMLElementTagNameMap>(\n tag: T, attributes?: Attributes | null, ...children: Child[]\n): HTMLElementTagNameMap[T]\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T {\n const el = document.createElement(tag)\n\n /* Set attributes, if any */\n if (attributes)\n for (const attr of Object.keys(attributes)) {\n if (typeof attributes[attr] === \"undefined\")\n continue\n\n /* Set default attribute or boolean */\n if (typeof attributes[attr] !== \"boolean\")\n el.setAttribute(attr, attributes[attr])\n else\n el.setAttribute(attr, \"\")\n }\n\n /* Append child nodes */\n for (const child of children)\n appendChild(el, child)\n\n /* Return element */\n return el as T\n}\n\n/* ----------------------------------------------------------------------------\n * Namespace\n * ------------------------------------------------------------------------- */\n\nexport declare namespace h {\n namespace JSX {\n type Element = HTMLElement\n type IntrinsicElements = JSXInternal.IntrinsicElements\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Round a number for display with repository facts\n *\n * This is a reverse-engineered version of GitHub's weird rounding algorithm\n * for stars, forks and all other numbers. While all numbers below `1,000` are\n * returned as-is, bigger numbers are converted to fixed numbers:\n *\n * - `1,049` => `1k`\n * - `1,050` => `1.1k`\n * - `1,949` => `1.9k`\n * - `1,950` => `2k`\n *\n * @param value - Original value\n *\n * @returns Rounded value\n */\nexport function round(value: number): string {\n if (value > 999) {\n const digits = +((value - 950) % 1000 > 99)\n return `${((value + 0.000001) / 1000).toFixed(digits)}k`\n } else {\n return value.toString()\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n defer,\n finalize,\n fromEvent,\n map,\n merge,\n switchMap,\n take,\n throwError\n} from \"rxjs\"\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create and load a `script` element\n *\n * This function returns an observable that will emit when the script was\n * successfully loaded, or throw an error if it wasn't.\n *\n * @param src - Script URL\n *\n * @returns Script observable\n */\nexport function watchScript(src: string): Observable<void> {\n const script = h(\"script\", { src })\n return defer(() => {\n document.head.appendChild(script)\n return merge(\n fromEvent(script, \"load\"),\n fromEvent(script, \"error\")\n .pipe(\n switchMap(() => (\n throwError(() => new ReferenceError(`Invalid script: ${src}`))\n ))\n )\n )\n .pipe(\n map(() => undefined),\n finalize(() => document.head.removeChild(script)),\n take(1)\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n startWith,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { watchScript } from \"../../../script\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementSize {\n width: number /* Element width */\n height: number /* Element height */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Resize observer entry subject\n */\nconst entry$ = new Subject<ResizeObserverEntry>()\n\n/**\n * Resize observer observable\n *\n * This observable will create a `ResizeObserver` on the first subscription\n * and will automatically terminate it when there are no more subscribers.\n * It's quite important to centralize observation in a single `ResizeObserver`,\n * as the performance difference can be quite dramatic, as the link shows.\n *\n * If the browser doesn't have a `ResizeObserver` implementation available, a\n * polyfill is automatically downloaded from unpkg.com. This is also compatible\n * with the built-in privacy plugin, which will download the polyfill and put\n * it alongside the built site for self-hosting.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => (\n typeof ResizeObserver === \"undefined\"\n ? watchScript(\"https://unpkg.com/resize-observer-polyfill\")\n : of(undefined)\n))\n .pipe(\n map(() => new ResizeObserver(entries => (\n entries.forEach(entry => entry$.next(entry))\n ))),\n switchMap(observer => merge(NEVER, of(observer)).pipe(\n finalize(() => observer.disconnect())\n )),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element size\n *\n * @param el - Element\n *\n * @returns Element size\n */\nexport function getElementSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.offsetWidth,\n height: el.offsetHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element size\n *\n * This function returns an observable that subscribes to a single internal\n * instance of `ResizeObserver` upon subscription, and emit resize events until\n * termination. Note that this function should not be called with the same\n * element twice, as the first unsubscription will terminate observation.\n *\n * Sadly, we can't use the `DOMRect` objects returned by the observer, because\n * we need the emitted values to be consistent with `getElementSize`, which will\n * return the used values (rounded) and not actual values (unrounded). Thus, we\n * use the `offset*` properties. See the linked GitHub issue.\n *\n * @see https://bit.ly/3m0k3he - GitHub issue\n *\n * @param el - Element\n *\n * @returns Element size observable\n */\nexport function watchElementSize(\n el: HTMLElement\n): Observable<ElementSize> {\n\n // Compute target element - since inline elements cannot be observed by the\n // current `ResizeObserver` implementation as provided by browsers, we need\n // to determine the first containing parent element and use that one as a\n // target, while we always compute the actual size from the element.\n let target = el\n while (target.clientWidth === 0)\n if (target.parentElement)\n target = target.parentElement\n else\n break\n\n // Observe target element and recompute element size on resize - as described\n // above, the target element is not necessarily the element of interest\n return observer$.pipe(\n tap(observer => observer.observe(target)),\n switchMap(observer => entry$.pipe(\n filter(entry => entry.target === target),\n finalize(() => observer.unobserve(target))\n )),\n map(() => getElementSize(el)),\n startWith(getElementSize(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ElementSize } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content size (= scroll width and height)\n *\n * @param el - Element\n *\n * @returns Element content size\n */\nexport function getElementContentSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.scrollWidth,\n height: el.scrollHeight\n }\n}\n\n/**\n * Retrieve the overflowing container of an element, if any\n *\n * @param el - Element\n *\n * @returns Overflowing container or nothing\n */\nexport function getElementContainer(\n el: HTMLElement\n): HTMLElement | undefined {\n let parent = el.parentElement\n while (parent)\n if (\n el.scrollWidth <= parent.scrollWidth &&\n el.scrollHeight <= parent.scrollHeight\n )\n parent = (el = parent).parentElement\n else\n break\n\n /* Return overflowing container */\n return parent ? el : undefined\n}\n\n/**\n * Retrieve all overflowing containers of an element, if any\n *\n * Note that this function has a slightly different behavior, so we should at\n * some point consider refactoring how overflowing containers are handled.\n *\n * @param el - Element\n *\n * @returns Overflowing containers\n */\nexport function getElementContainers(\n el: HTMLElement\n): HTMLElement[] {\n const containers: HTMLElement[] = []\n\n // Walk up the DOM tree until we find an overflowing container\n let parent = el.parentElement\n while (parent) {\n if (\n el.clientWidth > parent.clientWidth ||\n el.clientHeight > parent.clientHeight\n )\n containers.push(parent)\n\n // Continue with parent element\n parent = (el = parent).parentElement\n }\n\n // If the page is short, the body might not be overflowing and there might be\n // no other containers, which is why we need to make sure the body is present\n if (containers.length === 0)\n containers.push(document.documentElement)\n\n // Return overflowing containers\n return containers\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n animationFrameScheduler,\n auditTime,\n fromEvent,\n map,\n merge,\n startWith\n} from \"rxjs\"\n\nimport { ElementOffset } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content offset (= scroll offset)\n *\n * @param el - Element\n *\n * @returns Element content offset\n */\nexport function getElementContentOffset(\n el: HTMLElement\n): ElementOffset {\n return {\n x: el.scrollLeft,\n y: el.scrollTop\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element content offset\n *\n * @param el - Element\n *\n * @returns Element content offset observable\n */\nexport function watchElementContentOffset(\n el: HTMLElement\n): Observable<ElementOffset> {\n return merge(\n fromEvent(el, \"scroll\"),\n fromEvent(window, \"scroll\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n auditTime(0, animationFrameScheduler),\n map(() => getElementContentOffset(el)),\n startWith(getElementContentOffset(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n distinctUntilChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport {\n getElementContentSize,\n getElementSize,\n watchElementContentOffset\n} from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Intersection observer entry subject\n */\nconst entry$ = new Subject<IntersectionObserverEntry>()\n\n/**\n * Intersection observer observable\n *\n * This observable will create an `IntersectionObserver` on first subscription\n * and will automatically terminate it when there are no more subscribers.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => of(\n new IntersectionObserver(entries => {\n for (const entry of entries)\n entry$.next(entry)\n }, {\n threshold: 0\n })\n))\n .pipe(\n switchMap(observer => merge(NEVER, of(observer))\n .pipe(\n finalize(() => observer.disconnect())\n )\n ),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element visibility\n *\n * @param el - Element\n *\n * @returns Element visibility observable\n */\nexport function watchElementVisibility(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n tap(observer => observer.observe(el)),\n switchMap(observer => entry$\n .pipe(\n filter(({ target }) => target === el),\n finalize(() => observer.unobserve(el)),\n map(({ isIntersecting }) => isIntersecting)\n )\n )\n )\n}\n\n/**\n * Watch element boundary\n *\n * This function returns an observable which emits whether the bottom content\n * boundary (= scroll offset) of an element is within a certain threshold.\n *\n * @param el - Element\n * @param threshold - Threshold\n *\n * @returns Element boundary observable\n */\nexport function watchElementBoundary(\n el: HTMLElement, threshold = 16\n): Observable<boolean> {\n return watchElementContentOffset(el)\n .pipe(\n map(({ y }) => {\n const visible = getElementSize(el)\n const content = getElementContentSize(el)\n return y >= (\n content.height - visible.height - threshold\n )\n }),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n startWith\n} from \"rxjs\"\n\nimport { getElement } from \"../element\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle\n */\nexport type Toggle =\n | \"drawer\" /* Toggle for drawer */\n | \"search\" /* Toggle for search */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle map\n */\nconst toggles: Record<Toggle, HTMLInputElement> = {\n drawer: getElement(\"[data-md-toggle=drawer]\"),\n search: getElement(\"[data-md-toggle=search]\")\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the value of a toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value\n */\nexport function getToggle(name: Toggle): boolean {\n return toggles[name].checked\n}\n\n/**\n * Set toggle\n *\n * Simulating a click event seems to be the most cross-browser compatible way\n * of changing the value while also emitting a `change` event. Before, Material\n * used `CustomEvent` to programmatically change the value of a toggle, but this\n * is a much simpler and cleaner solution which doesn't require a polyfill.\n *\n * @param name - Toggle\n * @param value - Toggle value\n */\nexport function setToggle(name: Toggle, value: boolean): void {\n if (toggles[name].checked !== value)\n toggles[name].click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value observable\n */\nexport function watchToggle(name: Toggle): Observable<boolean> {\n const el = toggles[name]\n return fromEvent(el, \"change\")\n .pipe(\n map(() => el.checked),\n startWith(el.checked)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getLocation } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Feature flag\n */\nexport type Flag =\n | \"announce.dismiss\" /* Dismissable announcement bar */\n | \"content.code.annotate\" /* Code annotations */\n | \"content.code.copy\" /* Code copy button */\n | \"content.code.select\" /* Code selection */\n | \"content.footnote.tooltips\" /* Footnote tooltips */\n | \"content.lazy\" /* Lazy content elements */\n | \"content.tabs.link\" /* Link content tabs */\n | \"content.tooltips\" /* Tooltips */\n | \"header.autohide\" /* Hide header */\n | \"navigation.expand\" /* Automatic expansion */\n | \"navigation.indexes\" /* Section pages */\n | \"navigation.instant\" /* Instant navigation */\n | \"navigation.instant.prefetch\" /* Instant navigation prefetching */\n | \"navigation.instant.progress\" /* Instant navigation progress */\n | \"navigation.instant.preview\" /* Instant preview */\n | \"navigation.sections\" /* Section navigation */\n | \"navigation.tabs\" /* Tabs navigation */\n | \"navigation.tabs.sticky\" /* Tabs navigation (sticky) */\n | \"navigation.top\" /* Back-to-top button */\n | \"navigation.tracking\" /* Anchor tracking */\n | \"search.highlight\" /* Search highlighting */\n | \"search.share\" /* Search sharing */\n | \"search.suggest\" /* Search suggestions */\n | \"toc.follow\" /* Following table of contents */\n | \"toc.integrate\" /* Integrated table of contents */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Translation\n */\nexport type Translation =\n | \"clipboard.copy\" /* Copy to clipboard */\n | \"clipboard.copied\" /* Copied to clipboard */\n | \"search.result.placeholder\" /* Type to start searching */\n | \"search.result.none\" /* No matching documents */\n | \"search.result.one\" /* 1 matching document */\n | \"search.result.other\" /* # matching documents */\n | \"search.result.more.one\" /* 1 more on this page */\n | \"search.result.more.other\" /* # more on this page */\n | \"search.result.term.missing\" /* Missing */\n | \"select.version\" /* Version selector */\n\n/**\n * Translations\n */\nexport type Translations =\n Record<Translation, string>\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Versioning\n */\nexport interface Versioning {\n provider: \"mike\" /* Version provider */\n default?: string | string[] /* Default version */\n alias?: boolean /* Show alias */\n}\n\n/**\n * Configuration\n */\nexport interface Config {\n base: string /* Base URL */\n features: Flag[] /* Feature flags */\n translations: Translations /* Translations */\n search: string /* Search worker URL */\n annotate?: Record<string, string[]> /* Annotation mappings */\n tags?: Record<string, string> /* Tags mapping */\n version?: Versioning /* Versioning */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration and make base URL absolute\n */\nconst script = getElement(\"#__config\")\nconst config: Config = JSON.parse(script.textContent!)\nconfig.base = `${new URL(config.base, getLocation())}`\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration\n *\n * @returns Global configuration\n */\nexport function configuration(): Config {\n return config\n}\n\n/**\n * Check whether a feature flag is enabled\n *\n * @param flag - Feature flag\n *\n * @returns Test result\n */\nexport function feature(flag: Flag): boolean {\n return config.features.includes(flag)\n}\n\n/**\n * Retrieve the translation for the given key\n *\n * @param key - Key to be translated\n * @param value - Positional value, if any\n *\n * @returns Translation\n */\nexport function translation(\n key: Translation, value?: string | number\n): string {\n return typeof value !== \"undefined\"\n ? config.translations[key].replace(\"#\", value.toString())\n : config.translations[key]\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Subject } from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location\n *\n * This function returns a `URL` object (and not `Location`) to normalize the\n * typings across the application. Furthermore, locations need to be tracked\n * without setting them and `Location` is a singleton which represents the\n * current location.\n *\n * @returns URL\n */\nexport function getLocation(): URL {\n return new URL(location.href)\n}\n\n/**\n * Set location\n *\n * If instant navigation is enabled, this function creates a temporary anchor\n * element, sets the `href` attribute, appends it to the body, clicks it, and\n * then removes it again. The event will bubble up the DOM and be intercepted\n * by the instant navigation event handlers.\n *\n * Note that we must append and remove the anchor element, or the event will\n * not bubble up the DOM, making it impossible to intercept it.\n *\n * @param url - URL to navigate to\n * @param navigate - Force navigation\n */\nexport function setLocation(\n url: URL | HTMLLinkElement, navigate = false\n): void {\n if (feature(\"navigation.instant\") && !navigate) {\n const el = h(\"a\", { href: url.href })\n document.body.appendChild(el)\n el.click()\n el.remove()\n\n // If we're not using instant navigation, and the page should not be reloaded\n // just instruct the browser to navigate to the given URL\n } else {\n location.href = url.href\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location\n *\n * @returns Location subject\n */\nexport function watchLocation(): Subject<URL> {\n return new Subject<URL>()\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n map,\n shareReplay,\n switchMap\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Options\n */\ninterface Options {\n progress$?: Subject<number> // Progress subject\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch the given URL\n *\n * This function returns an observable that emits the response as a blob and\n * completes, or emits an error if the request failed. The caller can cancel\n * the request by unsubscribing at any time, which will automatically abort\n * the inflight request and complete the observable.\n *\n * Note that we use `XMLHTTPRequest` not because we're nostalgic, but because\n * it's the only way to get progress events for downloads and also allow for\n * cancellation of requests, as the official Fetch API does not support this\n * yet, even though we're already in 2024.\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function request(\n url: URL | string, options?: Options\n): Observable<Blob> {\n return new Observable<Blob>(observer => {\n const req = new XMLHttpRequest()\n req.open(\"GET\", `${url}`)\n req.responseType = \"blob\"\n\n // Handle response\n req.addEventListener(\"load\", () => {\n if (req.status >= 200 && req.status < 300) {\n observer.next(req.response)\n observer.complete()\n\n // Every response that is not in the 2xx range is considered an error\n } else {\n observer.error(new Error(req.statusText))\n }\n })\n\n // Handle network errors\n req.addEventListener(\"error\", () => {\n observer.error(new Error(\"Network error\"))\n })\n\n // Handle aborted requests\n req.addEventListener(\"abort\", () => {\n observer.complete()\n })\n\n // Handle download progress\n if (typeof options?.progress$ !== \"undefined\") {\n req.addEventListener(\"progress\", event => {\n if (event.lengthComputable) {\n options.progress$!.next((event.loaded / event.total) * 100)\n\n // Hack: Chromium doesn't report the total number of bytes if content\n // is compressed, so we need this fallback - see https://t.ly/ZXofI\n } else {\n const length = req.getResponseHeader(\"Content-Length\") ?? 0\n options.progress$!.next((event.loaded / +length) * 100)\n }\n })\n\n // Immediately set progress to 5% to indicate that we're loading\n options.progress$.next(5)\n }\n\n // Send request and automatically abort request upon unsubscription\n req.send()\n return () => req.abort()\n })\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Fetch JSON from the given URL\n *\n * @template T - Data type\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestJSON<T>(\n url: URL | string, options?: Options\n): Observable<T> {\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(body => JSON.parse(body) as T),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch HTML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestHTML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/html\")),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch XML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestXML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/xml\")),\n shareReplay(1)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type\n */\nexport type ComponentType =\n | \"iconsearch\" /* Icon search */\n | \"iconsearch-query\" /* Icon search input */\n | \"iconsearch-result\" /* Icon search results */\n | \"iconsearch-select\" /* Icon search select */\n | \"sponsorship\" /* Sponsorship */\n | \"sponsorship-count\" /* Sponsorship count */\n | \"sponsorship-total\" /* Sponsorship total */\n\n/**\n * Component\n *\n * @template T - Component type\n * @template U - Reference type\n */\nexport type Component<\n T extends {} = {},\n U extends HTMLElement = HTMLElement\n> =\n T & {\n ref: U /* Component reference */\n }\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type map\n */\ninterface ComponentTypeMap {\n \"iconsearch\": HTMLElement /* Icon search */\n \"iconsearch-query\": HTMLInputElement /* Icon search input */\n \"iconsearch-result\": HTMLElement /* Icon search results */\n \"iconsearch-select\": HTMLSelectElement\n \"sponsorship\": HTMLElement /* Sponsorship */\n \"sponsorship-count\": HTMLElement /* Sponsorship count */\n \"sponsorship-total\": HTMLElement /* Sponsorship total */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the element for a given component or throw a reference error\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getComponentElement<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T] {\n return getElement(`[data-mdx-component=${type}]`, node)\n}\n\n/**\n * Retrieve all elements for a given component\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getComponentElements<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T][] {\n return getElements(`[data-mdx-component=${type}]`, node)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n delay,\n distinctUntilChanged,\n filter,\n fromEvent,\n map,\n merge,\n startWith,\n withLatestFrom\n} from \"rxjs\"\n\nimport { watchElementFocus } from \"~/browser\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon search query\n */\nexport interface IconSearchQuery {\n value: string /* Query value */\n focus: boolean /* Query focus */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount icon search query\n *\n * @param el - Icon search query element\n *\n * @returns Icon search query component observable\n */\nexport function mountIconSearchQuery(\n el: HTMLInputElement\n): Observable<Component<IconSearchQuery, HTMLInputElement>> {\n\n /* Intercept focus and input events */\n const focus$ = watchElementFocus(el)\n const value$ = merge(\n fromEvent(el, \"keyup\"),\n fromEvent(el, \"focus\").pipe(delay(1))\n )\n .pipe(\n map(() => el.value),\n startWith(el.value),\n distinctUntilChanged(),\n )\n\n /* Log search on blur */\n focus$\n .pipe(\n filter(active => !active),\n withLatestFrom(value$)\n )\n .subscribe(([, value]) => {\n const path = document.location.pathname\n if (typeof ga === \"function\" && value.length)\n ga(\"send\", \"pageview\", `${path}?q=[icon]+${value}`)\n })\n\n /* Combine into single observable */\n return combineLatest([value$, focus$])\n .pipe(\n map(([value, focus]) => ({ ref: el, value, focus })),\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { filter as search } from \"fuzzaldrin-plus\"\nimport {\n Observable,\n Subject,\n bufferCount,\n combineLatest,\n combineLatestWith,\n distinctUntilKeyChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n switchMap,\n tap,\n withLatestFrom,\n zipWith\n} from \"rxjs\"\n\nimport {\n getElement,\n watchElementBoundary\n} from \"~/browser\"\nimport { round } from \"~/utilities\"\n\nimport { Icon, renderIconSearchResult } from \"_/templates\"\n\nimport { Component } from \"../../_\"\nimport { IconSearchIndex, IconSearchMode } from \"../_\"\nimport { IconSearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon search result\n */\nexport interface IconSearchResult {\n data: Icon[] /* Search result data */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n index$: Observable<IconSearchIndex> /* Search index observable */\n query$: Observable<IconSearchQuery> /* Search query observable */\n mode$: Observable<IconSearchMode> /* Search mode observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n index$: Observable<IconSearchIndex> /* Search index observable */\n query$: Observable<IconSearchQuery> /* Search query observable */\n mode$: Observable<IconSearchMode> /* Search mode observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch icon search result\n *\n * @param el - Icon search result element\n * @param options - Options\n *\n * @returns Icon search result observable\n */\nexport function watchIconSearchResult(\n el: HTMLElement, { index$, query$, mode$ }: WatchOptions\n): Observable<IconSearchResult> {\n switch (el.getAttribute(\"data-mdx-mode\")) {\n\n case \"file\":\n return combineLatest([\n query$.pipe(distinctUntilKeyChanged(\"value\")),\n index$\n .pipe(\n map(({ icons }) => Object.values(icons.data)\n .map(icon => icon.replace(/\\.svg$/, \"\"))\n )\n )\n ])\n .pipe(\n map(([{ value }, data]) => search(data, value)),\n switchMap(files => index$.pipe(\n map(({ icons }) => ({\n data: files.map<Icon>(shortcode => {\n return {\n shortcode,\n url: [\n icons.base,\n shortcode,\n \".svg\"\n ].join(\"\")\n }\n })\n }))\n ))\n )\n\n default:\n return combineLatest([\n query$.pipe(distinctUntilKeyChanged(\"value\")),\n index$\n .pipe(\n combineLatestWith(mode$),\n map(([{ icons, emojis }, mode]) => [\n ...[\"all\", \"icons\"].includes(mode)\n ? Object.keys(icons.data)\n : [],\n ...[\"all\", \"emojis\"].includes(mode)\n ? Object.keys(emojis.data)\n : []\n ])\n )\n ])\n .pipe(\n map(([{ value }, data]) => search(data, value)),\n switchMap(shortcodes => index$.pipe(\n map(({ icons, emojis }) => ({\n data: shortcodes.map<Icon>(shortcode => {\n const category =\n shortcode in icons.data\n ? icons\n : emojis\n return {\n shortcode,\n url: [\n category.base,\n category.data[shortcode]\n ].join(\"\")\n }\n })\n }))\n ))\n )\n }\n}\n\n/**\n * Mount icon search result\n *\n * @param el - Icon search result element\n * @param options - Options\n *\n * @returns Icon search result component observable\n */\nexport function mountIconSearchResult(\n el: HTMLElement, { index$, query$, mode$ }: MountOptions\n): Observable<Component<IconSearchResult, HTMLElement>> {\n const push$ = new Subject<IconSearchResult>()\n const boundary$ = watchElementBoundary(el)\n .pipe(\n filter(Boolean)\n )\n\n /* Update search result metadata */\n const meta = getElement(\".mdx-iconsearch-result__meta\", el)\n push$\n .pipe(\n withLatestFrom(query$)\n )\n .subscribe(([{ data }, { value }]) => {\n if (value) {\n switch (data.length) {\n\n /* No results */\n case 0:\n meta.textContent = \"No matches\"\n break\n\n /* One result */\n case 1:\n meta.textContent = \"1 match\"\n break\n\n /* Multiple result */\n default:\n meta.textContent = `${round(data.length)} matches`\n }\n } else {\n meta.textContent = \"Type to start searching\"\n }\n })\n\n /* Update icon search result list */\n const file = el.getAttribute(\"data-mdx-mode\") === \"file\"\n const list = getElement(\":scope > :last-child\", el)\n push$\n .pipe(\n tap(() => list.innerHTML = \"\"),\n switchMap(({ data }) => merge(\n of(...data.slice(0, 10)),\n of(...data.slice(10))\n .pipe(\n bufferCount(10),\n zipWith(boundary$),\n switchMap(([chunk]) => chunk)\n )\n )),\n withLatestFrom(query$)\n )\n .subscribe(([result, { value }]) => list.appendChild(\n renderIconSearchResult(result, value, file)\n ))\n\n /* Create and return component */\n return watchIconSearchResult(el, { query$, index$, mode$ })\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { wrap } from \"fuzzaldrin-plus\"\n\nimport { translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon\n */\nexport interface Icon {\n shortcode: string /* Icon shortcode */\n url: string /* Icon URL */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Highlight an icon search result\n *\n * @param icon - Icon\n * @param query - Search query\n *\n * @returns Highlighted result\n */\nfunction highlight(icon: Icon, query: string): string {\n return wrap(icon.shortcode, query, {\n wrap: {\n tagOpen: \"<b>\",\n tagClose: \"</b>\"\n }\n })\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render an icon search result\n *\n * @param icon - Icon\n * @param query - Search query\n * @param file - Render as file\n *\n * @returns Element\n */\nexport function renderIconSearchResult(\n icon: Icon, query: string, file?: boolean\n): HTMLElement {\n return (\n <li class=\"mdx-iconsearch-result__item\">\n <span class=\"twemoji\">\n <img src={icon.url} />\n </span>\n <button\n class=\"md-clipboard--inline\"\n title={translation(\"clipboard.copy\")}\n data-clipboard-text={file ? icon.shortcode : `:${icon.shortcode}:`}\n >\n <code>{\n file\n ? highlight(icon, query)\n : `:${highlight(icon, query)}:`\n }</code>\n </button>\n </li>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\nimport { SponsorUser } from \"_/components\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render public sponsor\n *\n * @param user - Sponsor user\n *\n * @returns Element\n */\nexport function renderPublicSponsor(\n user: SponsorUser\n): HTMLElement {\n const title = `@${user.name}`\n return (\n <a href={user.url} title={title} class=\"mdx-sponsorship__item\">\n <img src={user.image} />\n </a>\n )\n}\n\n/**\n * Render private sponsor\n *\n * @param count - Number of private sponsors\n *\n * @returns Element\n */\nexport function renderPrivateSponsor(\n count: number\n): HTMLElement {\n return (\n <a\n href=\"https://github.com/sponsors/squidfunk?metadata_origin=docs\"\n class=\"mdx-sponsorship__item mdx-sponsorship__item--private\"\n >\n +{count}\n </a>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { BehaviorSubject, Observable, fromEvent, map, merge } from \"rxjs\"\n\nimport { configuration } from \"~/_\"\nimport { requestJSON } from \"~/browser\"\n\nimport {\n Component,\n getComponentElement,\n getComponentElements\n} from \"../../_\"\nimport {\n IconSearchQuery,\n mountIconSearchQuery\n} from \"../query\"\nimport {\n IconSearchResult,\n mountIconSearchResult\n} from \"../result\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon category\n */\nexport interface IconCategory {\n base: string /* Category base URL */\n data: Record<string, string> /* Category data */\n}\n\n/**\n * Icon search index\n */\nexport interface IconSearchIndex {\n icons: IconCategory /* Icons */\n emojis: IconCategory /* Emojis */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Icon search\n */\nexport type IconSearch =\n | IconSearchQuery\n | IconSearchResult\n\n/**\n * Icon search mode\n */\nexport type IconSearchMode =\n | \"all\"\n | \"icons\"\n | \"emojis\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount icon search\n *\n * @param el - Icon search element\n *\n * @returns Icon search component observable\n */\nexport function mountIconSearch(\n el: HTMLElement\n): Observable<Component<IconSearch>> {\n const config = configuration()\n const index$ = requestJSON<IconSearchIndex>(\n new URL(\"assets/javascripts/iconsearch_index.json\", config.base)\n )\n\n /* Retrieve query and result components */\n const query = getComponentElement(\"iconsearch-query\", el)\n const result = getComponentElement(\"iconsearch-result\", el)\n\n /* Retrieve select component */\n const mode$ = new BehaviorSubject<IconSearchMode>(\"all\")\n const selects = getComponentElements(\"iconsearch-select\", el)\n for (const select of selects) {\n fromEvent(select, \"change\").pipe(\n map(ev => (ev.target as HTMLSelectElement).value as IconSearchMode)\n )\n .subscribe(mode$)\n }\n\n /* Create and return component */\n const query$ = mountIconSearchQuery(query)\n const result$ = mountIconSearchResult(result, { index$, query$, mode$ })\n return merge(query$, result$)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, from, map, switchMap, tap } from \"rxjs\"\n\nimport { getOptionalElement, requestJSON } from \"~/browser\"\n\nimport { renderPrivateSponsor, renderPublicSponsor } from \"_/templates\"\n\nimport { Component, getComponentElements } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Sponsor type\n */\nexport type SponsorType =\n | \"user\" /* Sponsor is a user */\n | \"organization\" /* Sponsor is an organization */\n\n/**\n * Sponsor visibility\n */\nexport type SponsorVisibility =\n | \"public\" /* Sponsor is a user */\n | \"private\" /* Sponsor is an organization */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsor user\n */\nexport interface SponsorUser {\n type: SponsorType /* Sponsor type */\n name: string /* Sponsor login name */\n image: string /* Sponsor image URL */\n url: string /* Sponsor URL */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Public sponsor\n */\nexport interface PublicSponsor {\n type: \"public\" /* Sponsor visibility */\n user: SponsorUser /* Sponsor user */\n}\n\n/**\n * Private sponsor\n */\nexport interface PrivateSponsor {\n type: \"private\" /* Sponsor visibility */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsor\n */\nexport type Sponsor =\n | PublicSponsor\n | PrivateSponsor\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsorship\n */\nexport interface Sponsorship {\n sponsors: Sponsor[] /* Sponsors */\n total: number /* Total amount */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount sponsorship\n *\n * @param el - Sponsorship element\n *\n * @returns Sponsorship component observable\n */\nexport function mountSponsorship(\n el: HTMLElement\n): Observable<Component<Sponsorship>> {\n const sponsorship$ = requestJSON<Sponsorship>(\n \"https://3if8u9o552.execute-api.us-east-1.amazonaws.com/_/\"\n )\n\n /* Retrieve adjacent components */\n const count = getComponentElements(\"sponsorship-count\")\n const total = getComponentElements(\"sponsorship-total\")\n\n /* Render sponsorship count */\n sponsorship$.pipe(\n switchMap(sponsorship => from(count).pipe(\n tap(child => child.innerText = `${sponsorship.sponsors.length}`)\n ))\n )\n .subscribe(() => el.removeAttribute(\"hidden\"))\n\n /* Render sponsorship total */\n sponsorship$.pipe(\n switchMap(sponsorship => from(total).pipe(\n tap(child => child.innerText = `$ ${sponsorship.total\n .toString()\n .replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\")\n } a month`)\n ))\n )\n .subscribe()\n\n // Render sponsorship list\n const list = getOptionalElement(\":scope > .mdx-sponsorship__list\", el)\n if (list && count.length) {\n sponsorship$.subscribe(sponsorship => {\n for (const sponsor of sponsorship.sponsors)\n if (sponsor.type === \"public\")\n list.appendChild(renderPublicSponsor(sponsor.user))\n\n /* Render combined private sponsors */\n list.appendChild(renderPrivateSponsor(\n sponsorship.sponsors.filter(({ type }) => (\n type === \"private\"\n )).length\n ))\n })\n }\n\n /* Create and return component */\n return sponsorship$\n .pipe(\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { fromEvent } from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up extra analytics events\n */\nexport function setupAnalytics(): void {\n const { origin } = new URL(location.href)\n fromEvent(document.body, \"click\")\n .subscribe(ev => {\n if (ev.target instanceof HTMLElement) {\n const el = ev.target.closest(\"a\")\n if (el && el.origin !== origin)\n ga(\"send\", \"event\", \"outbound\", \"click\", el.href)\n }\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { merge, switchMap } from \"rxjs\"\n\nimport {\n getComponentElements,\n mountIconSearch,\n mountSponsorship\n} from \"./components\"\nimport { setupAnalytics } from \"./integrations\"\n\n/* ----------------------------------------------------------------------------\n * Application\n * ------------------------------------------------------------------------- */\n\n/* Set up extra analytics events */\nsetupAnalytics()\n\n/* Set up extra component observables */\nconst component$ = document$\n .pipe(\n switchMap(() => merge(\n\n /* Icon search */\n ...getComponentElements(\"iconsearch\")\n .map(el => mountIconSearch(el)),\n\n /* Sponsorship */\n ...getComponentElements(\"sponsorship\")\n .map(el => mountSponsorship(el))\n ))\n )\n\n/* Subscribe to all components */\ncomponent$.subscribe()\n"],
5
+ "mappings": "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",
6
+ "names": ["require_scorer", "__commonJSMin", "exports", "AcronymResult", "computeScore", "emptyAcronymResult", "isAcronymFullWord", "isMatch", "isSeparator", "isWordEnd", "isWordStart", "miss_coeff", "pos_bonus", "scoreAcronyms", "scoreCharacter", "scoreConsecutives", "scoreExact", "scoreExactMatch", "scorePattern", "scorePosition", "scoreSize", "tau_size", "wm", "string", "query", "options", "allowErrors", "preparedQuery", "score", "string_lw", "subject", "query_lw", "query_up", "i", "j", "m", "n", "qj_lw", "qj_up", "si", "subject_lw", "acro", "acro_score", "align", "csc_diag", "csc_row", "csc_score", "csc_should_rebuild", "miss_budget", "miss_left", "pos", "record_miss", "score_diag", "score_row", "score_up", "si_lw", "start", "sz", "curr_s", "prev_s", "len", "next_s", "c", "sc", "quality", "count", "sameCase", "end", "bonus", "posBonus", "startOfWord", "k", "mi", "nj", "pos2", "fullWord", "sepCount", "sumPos", "nbAcronymInQuery", "require_pathScorer", "__commonJSMin", "exports", "computeScore", "countDir", "file_coeff", "getExtension", "getExtensionScore", "isMatch", "scorePath", "scoreSize", "tau_depth", "_ref", "string", "query", "options", "allowErrors", "preparedQuery", "score", "string_lw", "subject", "subject_lw", "fullPathScore", "alpha", "basePathScore", "basePos", "depth", "end", "extAdjust", "fileLength", "pathSeparator", "useExtensionBonus", "path", "count", "i", "str", "pos", "candidate", "ext", "startPos", "endPos", "maxDepth", "m", "matched", "n", "require_query", "__commonJSMin", "exports", "module", "Query", "coreChars", "countDir", "getCharCodes", "getExtension", "opt_char_re", "truncatedUpperCase", "_ref", "query", "_arg", "optCharRegEx", "pathSeparator", "_ref1", "str", "char", "upper", "_i", "_len", "charCodes", "i", "len", "require_filter", "__commonJSMin", "exports", "module", "Query", "pathScorer", "pluckCandidates", "scorer", "sortCandidates", "a", "b", "candidates", "query", "options", "bKey", "candidate", "key", "maxInners", "maxResults", "score", "scoreProvider", "scoredCandidates", "spotLeft", "string", "usePathScoring", "_i", "_len", "require_matcher", "__commonJSMin", "exports", "basenameMatch", "computeMatch", "isMatch", "isWordStart", "match", "mergeMatches", "scoreAcronyms", "scoreCharacter", "scoreConsecutives", "_ref", "string", "query", "options", "allowErrors", "baseMatches", "matches", "pathSeparator", "preparedQuery", "string_lw", "matchIndex", "matchPos", "matchPositions", "output", "strPos", "tagClass", "tagClose", "tagOpen", "_ref1", "subject", "subject_lw", "basePos", "depth", "end", "a", "b", "ai", "bj", "i", "j", "m", "n", "out", "offset", "DIAGONAL", "LEFT", "STOP", "UP", "acro_score", "align", "backtrack", "csc_diag", "csc_row", "csc_score", "move", "pos", "query_lw", "score", "score_diag", "score_row", "score_up", "si_lw", "start", "trace", "require_fuzzaldrin", "__commonJSMin", "exports", "module", "Query", "defaultPathSeparator", "filter", "matcher", "parseOptions", "pathScorer", "preparedQueryCache", "scorer", "candidates", "query", "options", "string", "_i", "_ref", "_results", "extendStatics", "d", "b", "p", "__extends", "__", "__awaiter", "thisArg", "_arguments", "P", "generator", "adopt", "value", "resolve", "reject", "fulfilled", "step", "e", "rejected", "result", "__generator", "body", "_", "t", "f", "y", "g", "verb", "n", "v", "op", "__values", "o", "s", "m", "i", "__read", "n", "r", "ar", "e", "error", "__spreadArray", "to", "from", "pack", "i", "l", "ar", "__await", "v", "__asyncGenerator", "thisArg", "_arguments", "generator", "g", "q", "verb", "awaitReturn", "f", "reject", "n", "a", "b", "resume", "step", "e", "settle", "r", "fulfill", "value", "__asyncValues", "o", "m", "i", "__values", "verb", "n", "v", "resolve", "reject", "settle", "d", "isFunction", "value", "createErrorClass", "createImpl", "_super", "instance", "ctorFunc", "UnsubscriptionError", "createErrorClass", "_super", "errors", "err", "i", "arrRemove", "arr", "item", "index", "Subscription", "initialTeardown", "errors", "_parentage", "_parentage_1", "__values", "_parentage_1_1", "parent_1", "initialFinalizer", "isFunction", "e", "UnsubscriptionError", "_finalizers", "_finalizers_1", "_finalizers_1_1", "finalizer", "execFinalizer", "err", "__spreadArray", "__read", "teardown", "_a", "parent", "arrRemove", "empty", "EMPTY_SUBSCRIPTION", "Subscription", "isSubscription", "value", "isFunction", "execFinalizer", "finalizer", "config", "timeoutProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "reportUnhandledError", "err", "timeoutProvider", "onUnhandledError", "config", "noop", "COMPLETE_NOTIFICATION", "createNotification", "errorNotification", "error", "nextNotification", "value", "kind", "context", "errorContext", "cb", "config", "isRoot", "_a", "errorThrown", "error", "captureError", "err", "Subscriber", "_super", "__extends", "destination", "_this", "isSubscription", "EMPTY_OBSERVER", "next", "error", "complete", "SafeSubscriber", "value", "handleStoppedNotification", "nextNotification", "err", "errorNotification", "COMPLETE_NOTIFICATION", "Subscription", "_bind", "bind", "fn", "thisArg", "ConsumerObserver", "partialObserver", "value", "error", "handleUnhandledError", "err", "SafeSubscriber", "_super", "__extends", "observerOrNext", "complete", "_this", "isFunction", "context_1", "config", "Subscriber", "handleUnhandledError", "error", "config", "captureError", "reportUnhandledError", "defaultErrorHandler", "err", "handleStoppedNotification", "notification", "subscriber", "onStoppedNotification", "timeoutProvider", "EMPTY_OBSERVER", "noop", "observable", "identity", "x", "pipe", "fns", "_i", "pipeFromArray", "identity", "input", "prev", "fn", "Observable", "subscribe", "operator", "observable", "observerOrNext", "error", "complete", "_this", "subscriber", "isSubscriber", "SafeSubscriber", "errorContext", "_a", "source", "sink", "err", "next", "promiseCtor", "getPromiseCtor", "resolve", "reject", "value", "operations", "_i", "pipeFromArray", "x", "getPromiseCtor", "promiseCtor", "_a", "config", "isObserver", "value", "isFunction", "isSubscriber", "Subscriber", "isSubscription", "hasLift", "source", "isFunction", "operate", "init", "liftedSource", "err", "createOperatorSubscriber", "destination", "onNext", "onComplete", "onError", "onFinalize", "OperatorSubscriber", "_super", "__extends", "shouldUnsubscribe", "_this", "value", "err", "closed_1", "_a", "Subscriber", "animationFrameProvider", "callback", "request", "cancel", "delegate", "handle", "timestamp", "Subscription", "args", "_i", "__spreadArray", "__read", "ObjectUnsubscribedError", "createErrorClass", "_super", "Subject", "_super", "__extends", "_this", "operator", "subject", "AnonymousSubject", "ObjectUnsubscribedError", "value", "errorContext", "_b", "__values", "_c", "observer", "err", "observers", "_a", "subscriber", "hasError", "isStopped", "EMPTY_SUBSCRIPTION", "Subscription", "arrRemove", "thrownError", "observable", "Observable", "destination", "source", "AnonymousSubject", "_super", "__extends", "destination", "source", "_this", "value", "_b", "_a", "err", "subscriber", "EMPTY_SUBSCRIPTION", "Subject", "BehaviorSubject", "_super", "__extends", "_value", "_this", "subscriber", "subscription", "_a", "hasError", "thrownError", "value", "Subject", "dateTimestampProvider", "ReplaySubject", "_super", "__extends", "_bufferSize", "_windowTime", "_timestampProvider", "dateTimestampProvider", "_this", "value", "_a", "isStopped", "_buffer", "_infiniteTimeWindow", "subscriber", "subscription", "copy", "i", "adjustedBufferSize", "now", "last", "Subject", "Action", "_super", "__extends", "scheduler", "work", "state", "delay", "Subscription", "intervalProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "AsyncAction", "_super", "__extends", "scheduler", "work", "_this", "state", "delay", "id", "_a", "_id", "intervalProvider", "_scheduler", "error", "_delay", "errored", "errorValue", "e", "actions", "arrRemove", "Action", "Scheduler", "schedulerActionCtor", "now", "work", "delay", "state", "dateTimestampProvider", "AsyncScheduler", "_super", "__extends", "SchedulerAction", "now", "Scheduler", "_this", "action", "actions", "error", "asyncScheduler", "AsyncScheduler", "AsyncAction", "async", "AnimationFrameAction", "_super", "__extends", "scheduler", "work", "_this", "id", "delay", "animationFrameProvider", "actions", "_a", "AsyncAction", "AnimationFrameScheduler", "_super", "__extends", "action", "flushId", "actions", "error", "AsyncScheduler", "animationFrameScheduler", "AnimationFrameScheduler", "AnimationFrameAction", "EMPTY", "Observable", "subscriber", "isScheduler", "value", "isFunction", "last", "arr", "popResultSelector", "args", "isFunction", "popScheduler", "isScheduler", "popNumber", "defaultValue", "isArrayLike", "x", "isPromise", "value", "isFunction", "isInteropObservable", "input", "isFunction", "observable", "isAsyncIterable", "obj", "isFunction", "createInvalidObservableTypeError", "input", "getSymbolIterator", "iterator", "isIterable", "input", "isFunction", "iterator", "readableStreamLikeToAsyncGenerator", "readableStream", "reader", "__await", "_a", "_b", "value", "done", "isReadableStreamLike", "obj", "isFunction", "innerFrom", "input", "Observable", "isInteropObservable", "fromInteropObservable", "isArrayLike", "fromArrayLike", "isPromise", "fromPromise", "isAsyncIterable", "fromAsyncIterable", "isIterable", "fromIterable", "isReadableStreamLike", "fromReadableStreamLike", "createInvalidObservableTypeError", "obj", "subscriber", "obs", "observable", "isFunction", "array", "i", "promise", "value", "err", "reportUnhandledError", "iterable", "iterable_1", "__values", "iterable_1_1", "asyncIterable", "process", "readableStream", "readableStreamLikeToAsyncGenerator", "asyncIterable_1", "__asyncValues", "asyncIterable_1_1", "executeSchedule", "parentSubscription", "scheduler", "work", "delay", "repeat", "scheduleSubscription", "observeOn", "scheduler", "delay", "operate", "source", "subscriber", "createOperatorSubscriber", "value", "executeSchedule", "err", "subscribeOn", "scheduler", "delay", "operate", "source", "subscriber", "scheduleObservable", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "schedulePromise", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "scheduleArray", "input", "scheduler", "Observable", "subscriber", "i", "scheduleIterable", "input", "scheduler", "Observable", "subscriber", "iterator", "executeSchedule", "value", "done", "_a", "err", "isFunction", "scheduleAsyncIterable", "input", "scheduler", "Observable", "subscriber", "executeSchedule", "iterator", "result", "scheduleReadableStreamLike", "input", "scheduler", "scheduleAsyncIterable", "readableStreamLikeToAsyncGenerator", "scheduled", "input", "scheduler", "isInteropObservable", "scheduleObservable", "isArrayLike", "scheduleArray", "isPromise", "schedulePromise", "isAsyncIterable", "scheduleAsyncIterable", "isIterable", "scheduleIterable", "isReadableStreamLike", "scheduleReadableStreamLike", "createInvalidObservableTypeError", "from", "input", "scheduler", "scheduled", "innerFrom", "of", "args", "_i", "scheduler", "popScheduler", "from", "throwError", "errorOrErrorFactory", "scheduler", "errorFactory", "isFunction", "init", "subscriber", "Observable", "isValidDate", "value", "map", "project", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "isArray", "callOrApply", "fn", "args", "__spreadArray", "__read", "mapOneOrManyArgs", "map", "isArray", "getPrototypeOf", "objectProto", "getKeys", "argsArgArrayOrObject", "args", "first_1", "isPOJO", "keys", "key", "obj", "createObject", "keys", "values", "result", "key", "i", "combineLatest", "args", "_i", "scheduler", "popScheduler", "resultSelector", "popResultSelector", "_a", "argsArgArrayOrObject", "observables", "keys", "from", "result", "Observable", "combineLatestInit", "values", "createObject", "identity", "mapOneOrManyArgs", "valueTransform", "subscriber", "maybeSchedule", "length", "active", "remainingFirstValues", "i", "source", "hasFirstValue", "createOperatorSubscriber", "value", "execute", "subscription", "executeSchedule", "mergeInternals", "source", "subscriber", "project", "concurrent", "onBeforeNext", "expand", "innerSubScheduler", "additionalFinalizer", "buffer", "active", "index", "isComplete", "checkComplete", "outerNext", "value", "doInnerSub", "innerComplete", "innerFrom", "createOperatorSubscriber", "innerValue", "bufferedValue", "executeSchedule", "err", "mergeMap", "project", "resultSelector", "concurrent", "isFunction", "a", "i", "map", "b", "ii", "innerFrom", "operate", "source", "subscriber", "mergeInternals", "mergeAll", "concurrent", "mergeMap", "identity", "concatAll", "mergeAll", "concat", "args", "_i", "concatAll", "from", "popScheduler", "defer", "observableFactory", "Observable", "subscriber", "innerFrom", "nodeEventEmitterMethods", "eventTargetMethods", "jqueryMethods", "fromEvent", "target", "eventName", "options", "resultSelector", "isFunction", "mapOneOrManyArgs", "_a", "__read", "isEventTarget", "methodName", "handler", "isNodeStyleEventEmitter", "toCommonHandlerRegistry", "isJQueryStyleEventEmitter", "add", "remove", "isArrayLike", "mergeMap", "subTarget", "innerFrom", "Observable", "subscriber", "args", "_i", "timer", "dueTime", "intervalOrScheduler", "scheduler", "async", "intervalDuration", "isScheduler", "Observable", "subscriber", "due", "isValidDate", "n", "merge", "args", "_i", "scheduler", "popScheduler", "concurrent", "popNumber", "sources", "innerFrom", "mergeAll", "from", "EMPTY", "NEVER", "Observable", "noop", "isArray", "argsOrArgArray", "args", "filter", "predicate", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "zip", "args", "_i", "resultSelector", "popResultSelector", "sources", "argsOrArgArray", "Observable", "subscriber", "buffers", "completed", "sourceIndex", "innerFrom", "createOperatorSubscriber", "value", "buffer", "result", "__spreadArray", "__read", "i", "EMPTY", "audit", "durationSelector", "operate", "source", "subscriber", "hasValue", "lastValue", "durationSubscriber", "isComplete", "endDuration", "value", "cleanupDuration", "createOperatorSubscriber", "innerFrom", "auditTime", "duration", "scheduler", "asyncScheduler", "audit", "timer", "bufferCount", "bufferSize", "startBufferEvery", "operate", "source", "subscriber", "buffers", "count", "createOperatorSubscriber", "value", "toEmit", "buffers_1", "__values", "buffers_1_1", "buffer", "toEmit_1", "toEmit_1_1", "arrRemove", "buffers_2", "buffers_2_1", "combineLatest", "args", "_i", "resultSelector", "popResultSelector", "pipe", "__spreadArray", "__read", "mapOneOrManyArgs", "operate", "source", "subscriber", "combineLatestInit", "argsOrArgArray", "combineLatestWith", "otherSources", "_i", "combineLatest", "__spreadArray", "__read", "debounceTime", "dueTime", "scheduler", "asyncScheduler", "operate", "source", "subscriber", "activeTask", "lastValue", "lastTime", "emit", "value", "emitWhenIdle", "targetTime", "now", "createOperatorSubscriber", "take", "count", "EMPTY", "operate", "source", "subscriber", "seen", "createOperatorSubscriber", "value", "ignoreElements", "operate", "source", "subscriber", "createOperatorSubscriber", "noop", "mapTo", "value", "map", "delayWhen", "delayDurationSelector", "subscriptionDelay", "source", "concat", "take", "ignoreElements", "mergeMap", "value", "index", "innerFrom", "mapTo", "delay", "due", "scheduler", "asyncScheduler", "duration", "timer", "delayWhen", "distinctUntilChanged", "comparator", "keySelector", "identity", "defaultCompare", "operate", "source", "subscriber", "previousKey", "first", "createOperatorSubscriber", "value", "currentKey", "a", "b", "distinctUntilKeyChanged", "key", "compare", "distinctUntilChanged", "x", "y", "finalize", "callback", "operate", "source", "subscriber", "share", "options", "_a", "connector", "Subject", "_b", "resetOnError", "_c", "resetOnComplete", "_d", "resetOnRefCountZero", "wrapperSource", "connection", "resetConnection", "subject", "refCount", "hasCompleted", "hasErrored", "cancelReset", "reset", "resetAndUnsubscribe", "conn", "operate", "source", "subscriber", "dest", "handleReset", "SafeSubscriber", "value", "err", "innerFrom", "on", "args", "_i", "onSubscriber", "__spreadArray", "__read", "shareReplay", "configOrBufferSize", "windowTime", "scheduler", "bufferSize", "refCount", "_a", "_b", "_c", "share", "ReplaySubject", "startWith", "values", "_i", "scheduler", "popScheduler", "operate", "source", "subscriber", "concat", "switchMap", "project", "resultSelector", "operate", "source", "subscriber", "innerSubscriber", "index", "isComplete", "checkComplete", "createOperatorSubscriber", "value", "innerIndex", "outerIndex", "innerFrom", "innerValue", "tap", "observerOrNext", "error", "complete", "tapObserver", "isFunction", "operate", "source", "subscriber", "_a", "isUnsub", "createOperatorSubscriber", "value", "err", "_b", "identity", "withLatestFrom", "inputs", "_i", "project", "popResultSelector", "operate", "source", "subscriber", "len", "otherValues", "hasValue", "ready", "i", "innerFrom", "createOperatorSubscriber", "value", "identity", "noop", "values", "__spreadArray", "__read", "zip", "sources", "_i", "operate", "source", "subscriber", "__spreadArray", "__read", "zipWith", "otherInputs", "_i", "zip", "__spreadArray", "__read", "getElements", "selector", "node", "getElement", "el", "getOptionalElement", "getActiveElement", "_a", "_b", "_c", "_d", "observer$", "merge", "fromEvent", "debounceTime", "startWith", "map", "getActiveElement", "shareReplay", "watchElementFocus", "el", "active", "distinctUntilChanged", "appendChild", "el", "child", "node", "h", "tag", "attributes", "children", "attr", "round", "value", "digits", "watchScript", "src", "script", "h", "defer", "merge", "fromEvent", "switchMap", "throwError", "map", "finalize", "take", "entry$", "Subject", "observer$", "defer", "watchScript", "of", "map", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "getElementSize", "el", "getElementContentSize", "el", "getElementContentOffset", "el", "watchElementContentOffset", "merge", "fromEvent", "auditTime", "animationFrameScheduler", "map", "startWith", "entry$", "Subject", "observer$", "defer", "of", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "watchElementBoundary", "el", "threshold", "watchElementContentOffset", "map", "y", "visible", "getElementSize", "content", "getElementContentSize", "distinctUntilChanged", "toggles", "getElement", "script", "getElement", "config", "getLocation", "configuration", "translation", "key", "value", "config", "getLocation", "request", "url", "options", "Observable", "observer", "req", "event", "_a", "length", "requestJSON", "switchMap", "res", "map", "body", "shareReplay", "getComponentElement", "type", "node", "getElement", "getComponentElements", "getElements", "mountIconSearchQuery", "el", "focus$", "watchElementFocus", "value$", "merge", "fromEvent", "delay", "map", "startWith", "distinctUntilChanged", "filter", "active", "withLatestFrom", "value", "path", "combineLatest", "focus", "import_fuzzaldrin_plus", "import_fuzzaldrin_plus", "highlight", "icon", "query", "renderIconSearchResult", "file", "h", "translation", "renderPublicSponsor", "user", "title", "h", "renderPrivateSponsor", "count", "watchIconSearchResult", "el", "index$", "query$", "mode$", "combineLatest", "distinctUntilKeyChanged", "map", "icons", "icon", "value", "data", "search", "switchMap", "files", "shortcode", "combineLatestWith", "emojis", "mode", "shortcodes", "category", "mountIconSearchResult", "push$", "Subject", "boundary$", "watchElementBoundary", "filter", "meta", "getElement", "withLatestFrom", "round", "file", "list", "tap", "merge", "of", "bufferCount", "zipWith", "chunk", "result", "renderIconSearchResult", "state", "finalize", "__spreadValues", "mountIconSearch", "el", "config", "configuration", "index$", "requestJSON", "query", "getComponentElement", "result", "mode$", "BehaviorSubject", "selects", "getComponentElements", "select", "fromEvent", "map", "ev", "query$", "mountIconSearchQuery", "result$", "mountIconSearchResult", "merge", "mountSponsorship", "el", "sponsorship$", "requestJSON", "count", "getComponentElements", "total", "switchMap", "sponsorship", "from", "tap", "child", "list", "getOptionalElement", "sponsor", "renderPublicSponsor", "renderPrivateSponsor", "type", "map", "state", "__spreadValues", "setupAnalytics", "origin", "fromEvent", "ev", "el", "setupAnalytics", "component$", "switchMap", "merge", "getComponentElements", "el", "mountIconSearch", "mountSponsorship"]
7
+ }