@volverjs/ui-vue 0.0.1-beta.2

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 (933) hide show
  1. package/README.md +32 -0
  2. package/dist/DesignSystem.d.ts +67 -0
  3. package/dist/components/VvAccordion/VvAccordion.d.ts +32 -0
  4. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +104 -0
  5. package/dist/components/VvAccordion/useAccordionProps.d.ts +16 -0
  6. package/dist/components/VvAccordion/vv-accordion.es.js +262 -0
  7. package/dist/components/VvAccordion/vv-accordion.umd.js +1 -0
  8. package/dist/components/VvAccordionGroup/VvAccordionGroup.d.ts +50 -0
  9. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +170 -0
  10. package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +315 -0
  11. package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +1 -0
  12. package/dist/components/VvBadge/VvBadge.d.ts +4 -0
  13. package/dist/components/VvBadge/VvBadge.vue.d.ts +56 -0
  14. package/dist/components/VvBadge/vv-badge.es.js +18 -0
  15. package/dist/components/VvBadge/vv-badge.umd.js +1 -0
  16. package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +26 -0
  17. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +118 -0
  18. package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +206 -0
  19. package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +1 -0
  20. package/dist/components/VvButton/VvButton.d.ts +115 -0
  21. package/dist/components/VvButton/VvButton.vue.d.ts +228 -0
  22. package/dist/components/VvButton/useButtonGroupProps.d.ts +23 -0
  23. package/dist/components/VvButton/vv-button.es.js +424 -0
  24. package/dist/components/VvButton/vv-button.umd.js +1 -0
  25. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +57 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +210 -0
  27. package/dist/components/VvButtonGroup/vv-button-group.es.js +210 -0
  28. package/dist/components/VvButtonGroup/vv-button-group.umd.js +1 -0
  29. package/dist/components/VvCard/VvCard.d.ts +4 -0
  30. package/dist/components/VvCard/VvCard.vue.d.ts +63 -0
  31. package/dist/components/VvCard/vv-card.es.js +188 -0
  32. package/dist/components/VvCard/vv-card.umd.js +1 -0
  33. package/dist/components/VvCheck/VvCheck.d.ts +47 -0
  34. package/dist/components/VvCheck/VvCheck.vue.d.ts +165 -0
  35. package/dist/components/VvCheck/useCheckProps.d.ts +16 -0
  36. package/dist/components/VvCheck/vv-check.es.js +321 -0
  37. package/dist/components/VvCheck/vv-check.umd.js +1 -0
  38. package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +65 -0
  39. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +272 -0
  40. package/dist/components/VvCheckGroup/vv-check-group.es.js +434 -0
  41. package/dist/components/VvCheckGroup/vv-check-group.umd.js +2 -0
  42. package/dist/components/VvDialog/VvDialog.d.ts +22 -0
  43. package/dist/components/VvDialog/VvDialog.vue.d.ts +153 -0
  44. package/dist/components/VvDialog/constants.d.ts +5 -0
  45. package/dist/components/VvDialog/vv-dialog.es.js +315 -0
  46. package/dist/components/VvDialog/vv-dialog.umd.js +1 -0
  47. package/dist/components/VvDropdown/VvDropdown.d.ts +52 -0
  48. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +166 -0
  49. package/dist/components/VvDropdown/vv-dropdown.es.js +236 -0
  50. package/dist/components/VvDropdown/vv-dropdown.umd.js +1 -0
  51. package/dist/components/VvIcon/VvIcon.d.ts +92 -0
  52. package/dist/components/VvIcon/VvIcon.vue.d.ts +183 -0
  53. package/dist/components/VvIcon/vv-icon.es.js +229 -0
  54. package/dist/components/VvIcon/vv-icon.umd.js +1 -0
  55. package/dist/components/VvInputText/VvInputText.d.ts +59 -0
  56. package/dist/components/VvInputText/VvInputText.vue.d.ts +292 -0
  57. package/dist/components/VvInputText/constants.d.ts +55 -0
  58. package/dist/components/VvInputText/useInputNumber.d.ts +16 -0
  59. package/dist/components/VvInputText/useInputPassword.d.ts +16 -0
  60. package/dist/components/VvInputText/vv-input-text.es.js +596 -0
  61. package/dist/components/VvInputText/vv-input-text.umd.js +2 -0
  62. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +70 -0
  63. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +228 -0
  64. package/dist/components/VvNativeSelect/vv-native-select.es.js +395 -0
  65. package/dist/components/VvNativeSelect/vv-native-select.umd.js +2 -0
  66. package/dist/components/VvProgress/VvProgress.d.ts +29 -0
  67. package/dist/components/VvProgress/VvProgress.vue.d.ts +117 -0
  68. package/dist/components/VvProgress/vv-progress.es.js +185 -0
  69. package/dist/components/VvProgress/vv-progress.umd.js +1 -0
  70. package/dist/components/VvRadio/VvRadio.d.ts +22 -0
  71. package/dist/components/VvRadio/VvRadio.vue.d.ts +136 -0
  72. package/dist/components/VvRadio/useRadioProps.d.ts +15 -0
  73. package/dist/components/VvRadio/vv-radio.es.js +309 -0
  74. package/dist/components/VvRadio/vv-radio.umd.js +1 -0
  75. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +54 -0
  76. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +264 -0
  77. package/dist/components/VvRadioGroup/vv-radio-group.es.js +423 -0
  78. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +2 -0
  79. package/dist/components/VvSelect/VvSelect.d.ts +99 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +294 -0
  81. package/dist/components/VvSelect/vv-select.es.js +427 -0
  82. package/dist/components/VvSelect/vv-select.umd.js +2 -0
  83. package/dist/components/VvTextarea/VvTextarea.d.ts +67 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +314 -0
  85. package/dist/components/VvTextarea/constants.d.ts +19 -0
  86. package/dist/components/VvTextarea/vv-textarea.es.js +472 -0
  87. package/dist/components/VvTextarea/vv-textarea.umd.js +2 -0
  88. package/dist/components/common/HintSlot.d.ts +25 -0
  89. package/dist/components/index.d.ts +12 -0
  90. package/dist/composables/focus/useComponentFocus.d.ts +7 -0
  91. package/dist/composables/group/types/IAccordionGroupState.d.ts +10 -0
  92. package/dist/composables/group/types/IButtonGroupState.d.ts +19 -0
  93. package/dist/composables/group/types/IGroupState.d.ts +11 -0
  94. package/dist/composables/group/types/IInputGroup.d.ts +11 -0
  95. package/dist/composables/group/useInjectedGroupState.d.ts +10 -0
  96. package/dist/composables/group/useProvideGroupState.d.ts +6 -0
  97. package/dist/composables/icons/useComponentIcons.d.ts +20 -0
  98. package/dist/composables/options/useOptions.d.ts +5 -0
  99. package/dist/composables/useModifiers.d.ts +9 -0
  100. package/dist/constants.d.ts +4 -0
  101. package/dist/icons.es.js +1885 -0
  102. package/dist/icons.umd.js +1 -0
  103. package/dist/index.d.ts +4 -0
  104. package/dist/props/index.d.ts +50 -0
  105. package/dist/stories/Icon/IconList.vue.d.ts +44 -0
  106. package/dist/ui-vue.es.js +2985 -0
  107. package/dist/ui-vue.umd.js +2 -0
  108. package/dist/utils/ObjectUtilities.d.ts +96 -0
  109. package/package.json +187 -0
  110. package/src/DesignSystem.ts +115 -0
  111. package/src/assets/icons/detailed/add-circle.svg +1 -0
  112. package/src/assets/icons/detailed/add.svg +1 -0
  113. package/src/assets/icons/detailed/align-center.svg +1 -0
  114. package/src/assets/icons/detailed/align-justify.svg +1 -0
  115. package/src/assets/icons/detailed/align-left.svg +1 -0
  116. package/src/assets/icons/detailed/align-right.svg +1 -0
  117. package/src/assets/icons/detailed/analysis-2.svg +1 -0
  118. package/src/assets/icons/detailed/analysis-3.svg +1 -0
  119. package/src/assets/icons/detailed/analysis.svg +1 -0
  120. package/src/assets/icons/detailed/apple.svg +1 -0
  121. package/src/assets/icons/detailed/arrow-down.svg +1 -0
  122. package/src/assets/icons/detailed/arrow-left.svg +1 -0
  123. package/src/assets/icons/detailed/arrow-right.svg +1 -0
  124. package/src/assets/icons/detailed/arrow-up.svg +1 -0
  125. package/src/assets/icons/detailed/attachment.svg +1 -0
  126. package/src/assets/icons/detailed/back-to-front.svg +1 -0
  127. package/src/assets/icons/detailed/bell-active.svg +1 -0
  128. package/src/assets/icons/detailed/bell.svg +1 -0
  129. package/src/assets/icons/detailed/bold.svg +1 -0
  130. package/src/assets/icons/detailed/bookmark-active.svg +1 -0
  131. package/src/assets/icons/detailed/bookmark.svg +1 -0
  132. package/src/assets/icons/detailed/building.svg +1 -0
  133. package/src/assets/icons/detailed/bullet-list.svg +1 -0
  134. package/src/assets/icons/detailed/calendar.svg +1 -0
  135. package/src/assets/icons/detailed/camera-off.svg +1 -0
  136. package/src/assets/icons/detailed/camera-on.svg +1 -0
  137. package/src/assets/icons/detailed/catalog.svg +1 -0
  138. package/src/assets/icons/detailed/certificate.svg +1 -0
  139. package/src/assets/icons/detailed/chat.svg +1 -0
  140. package/src/assets/icons/detailed/check-badge.svg +1 -0
  141. package/src/assets/icons/detailed/check-circle.svg +1 -0
  142. package/src/assets/icons/detailed/check.svg +1 -0
  143. package/src/assets/icons/detailed/checkbox.svg +1 -0
  144. package/src/assets/icons/detailed/chevron-down-circle.svg +1 -0
  145. package/src/assets/icons/detailed/chevron-down.svg +1 -0
  146. package/src/assets/icons/detailed/chevron-left-circle.svg +1 -0
  147. package/src/assets/icons/detailed/chevron-left.svg +1 -0
  148. package/src/assets/icons/detailed/chevron-right-circle.svg +1 -0
  149. package/src/assets/icons/detailed/chevron-up-circle.svg +1 -0
  150. package/src/assets/icons/detailed/chevron-up.svg +1 -0
  151. package/src/assets/icons/detailed/classroom.svg +1 -0
  152. package/src/assets/icons/detailed/clear-field.svg +1 -0
  153. package/src/assets/icons/detailed/clear-style.svg +1 -0
  154. package/src/assets/icons/detailed/close-circle.svg +1 -0
  155. package/src/assets/icons/detailed/close-loader.svg +1 -0
  156. package/src/assets/icons/detailed/close.svg +1 -0
  157. package/src/assets/icons/detailed/coffee.svg +1 -0
  158. package/src/assets/icons/detailed/color.svg +1 -0
  159. package/src/assets/icons/detailed/contact-us.svg +1 -0
  160. package/src/assets/icons/detailed/copy.svg +1 -0
  161. package/src/assets/icons/detailed/courses.svg +1 -0
  162. package/src/assets/icons/detailed/dashboard.svg +1 -0
  163. package/src/assets/icons/detailed/download.svg +1 -0
  164. package/src/assets/icons/detailed/drag.svg +1 -0
  165. package/src/assets/icons/detailed/duplicate.svg +1 -0
  166. package/src/assets/icons/detailed/edit.svg +1 -0
  167. package/src/assets/icons/detailed/elearning.svg +1 -0
  168. package/src/assets/icons/detailed/email.svg +1 -0
  169. package/src/assets/icons/detailed/error-2.svg +1 -0
  170. package/src/assets/icons/detailed/error.svg +1 -0
  171. package/src/assets/icons/detailed/exercise.svg +1 -0
  172. package/src/assets/icons/detailed/external-link.svg +1 -0
  173. package/src/assets/icons/detailed/extract.svg +1 -0
  174. package/src/assets/icons/detailed/eye-off.svg +1 -0
  175. package/src/assets/icons/detailed/eye-on.svg +1 -0
  176. package/src/assets/icons/detailed/fail.svg +1 -0
  177. package/src/assets/icons/detailed/fast-back.svg +1 -0
  178. package/src/assets/icons/detailed/fast-forward.svg +1 -0
  179. package/src/assets/icons/detailed/file-add.svg +1 -0
  180. package/src/assets/icons/detailed/file-duplicate.svg +1 -0
  181. package/src/assets/icons/detailed/file-remove.svg +1 -0
  182. package/src/assets/icons/detailed/file-required.svg +1 -0
  183. package/src/assets/icons/detailed/file.svg +1 -0
  184. package/src/assets/icons/detailed/filter-2.svg +1 -0
  185. package/src/assets/icons/detailed/filter-active.svg +1 -0
  186. package/src/assets/icons/detailed/filter.svg +1 -0
  187. package/src/assets/icons/detailed/flag.svg +1 -0
  188. package/src/assets/icons/detailed/folder.svg +1 -0
  189. package/src/assets/icons/detailed/full-width.svg +1 -0
  190. package/src/assets/icons/detailed/go-to-back.svg +1 -0
  191. package/src/assets/icons/detailed/grid.svg +1 -0
  192. package/src/assets/icons/detailed/group-add.svg +1 -0
  193. package/src/assets/icons/detailed/group.svg +1 -0
  194. package/src/assets/icons/detailed/heart-active.svg +1 -0
  195. package/src/assets/icons/detailed/heart.svg +1 -0
  196. package/src/assets/icons/detailed/highlighter.svg +1 -0
  197. package/src/assets/icons/detailed/home.svg +1 -0
  198. package/src/assets/icons/detailed/hourglass.svg +1 -0
  199. package/src/assets/icons/detailed/image.svg +1 -0
  200. package/src/assets/icons/detailed/info-badge.svg +1 -0
  201. package/src/assets/icons/detailed/information.svg +1 -0
  202. package/src/assets/icons/detailed/italic.svg +1 -0
  203. package/src/assets/icons/detailed/key.svg +1 -0
  204. package/src/assets/icons/detailed/language.svg +1 -0
  205. package/src/assets/icons/detailed/learning-path.svg +1 -0
  206. package/src/assets/icons/detailed/light-off.svg +1 -0
  207. package/src/assets/icons/detailed/light-on.svg +1 -0
  208. package/src/assets/icons/detailed/link.svg +1 -0
  209. package/src/assets/icons/detailed/lock.svg +1 -0
  210. package/src/assets/icons/detailed/login.svg +1 -0
  211. package/src/assets/icons/detailed/logout.svg +1 -0
  212. package/src/assets/icons/detailed/maximaze.svg +1 -0
  213. package/src/assets/icons/detailed/menu.svg +1 -0
  214. package/src/assets/icons/detailed/merge.svg +1 -0
  215. package/src/assets/icons/detailed/minimize.svg +1 -0
  216. package/src/assets/icons/detailed/mixed-class.svg +1 -0
  217. package/src/assets/icons/detailed/more-horizontal.svg +1 -0
  218. package/src/assets/icons/detailed/more-vertical.svg +1 -0
  219. package/src/assets/icons/detailed/news.svg +1 -0
  220. package/src/assets/icons/detailed/no-prerequisites.svg +1 -0
  221. package/src/assets/icons/detailed/notes.svg +1 -0
  222. package/src/assets/icons/detailed/number-code.svg +1 -0
  223. package/src/assets/icons/detailed/numbered-list.svg +1 -0
  224. package/src/assets/icons/detailed/on-site.svg +1 -0
  225. package/src/assets/icons/detailed/order-down.svg +1 -0
  226. package/src/assets/icons/detailed/order-up.svg +1 -0
  227. package/src/assets/icons/detailed/paste.svg +1 -0
  228. package/src/assets/icons/detailed/pausa.svg +1 -0
  229. package/src/assets/icons/detailed/pdf.svg +1 -0
  230. package/src/assets/icons/detailed/phone.svg +1 -0
  231. package/src/assets/icons/detailed/pin-map.svg +1 -0
  232. package/src/assets/icons/detailed/pin.svg +1 -0
  233. package/src/assets/icons/detailed/pizza.svg +1 -0
  234. package/src/assets/icons/detailed/play.svg +1 -0
  235. package/src/assets/icons/detailed/plug-in.svg +1 -0
  236. package/src/assets/icons/detailed/pointer.svg +1 -0
  237. package/src/assets/icons/detailed/printer.svg +1 -0
  238. package/src/assets/icons/detailed/profile-add.svg +1 -0
  239. package/src/assets/icons/detailed/profile.svg +1 -0
  240. package/src/assets/icons/detailed/push-pin-off.svg +1 -0
  241. package/src/assets/icons/detailed/push-pin-on.svg +1 -0
  242. package/src/assets/icons/detailed/qrcode.svg +1 -0
  243. package/src/assets/icons/detailed/question-badge.svg +1 -0
  244. package/src/assets/icons/detailed/radio.svg +1 -0
  245. package/src/assets/icons/detailed/redo.svg +1 -0
  246. package/src/assets/icons/detailed/relations.svg +1 -0
  247. package/src/assets/icons/detailed/reload.svg +1 -0
  248. package/src/assets/icons/detailed/remove-circle.svg +1 -0
  249. package/src/assets/icons/detailed/remove.svg +1 -0
  250. package/src/assets/icons/detailed/reorder.svg +1 -0
  251. package/src/assets/icons/detailed/repeat.svg +1 -0
  252. package/src/assets/icons/detailed/repository.svg +1 -0
  253. package/src/assets/icons/detailed/request-form.svg +1 -0
  254. package/src/assets/icons/detailed/resize-100%.svg +1 -0
  255. package/src/assets/icons/detailed/resize-height.svg +1 -0
  256. package/src/assets/icons/detailed/resize-width.svg +1 -0
  257. package/src/assets/icons/detailed/search.svg +1 -0
  258. package/src/assets/icons/detailed/sequential-prerequisites.svg +1 -0
  259. package/src/assets/icons/detailed/settings.svg +1 -0
  260. package/src/assets/icons/detailed/share.svg +1 -0
  261. package/src/assets/icons/detailed/sketch.svg +1 -0
  262. package/src/assets/icons/detailed/skills.svg +1 -0
  263. package/src/assets/icons/detailed/skip-back.svg +1 -0
  264. package/src/assets/icons/detailed/skip-forward.svg +1 -0
  265. package/src/assets/icons/detailed/sms.svg +1 -0
  266. package/src/assets/icons/detailed/sso-access.svg +1 -0
  267. package/src/assets/icons/detailed/star-active.svg +1 -0
  268. package/src/assets/icons/detailed/star.svg +1 -0
  269. package/src/assets/icons/detailed/success.svg +1 -0
  270. package/src/assets/icons/detailed/sun.svg +1 -0
  271. package/src/assets/icons/detailed/sunrise.svg +1 -0
  272. package/src/assets/icons/detailed/support.svg +1 -0
  273. package/src/assets/icons/detailed/survey.svg +1 -0
  274. package/src/assets/icons/detailed/table.svg +1 -0
  275. package/src/assets/icons/detailed/tematic-channels.svg +1 -0
  276. package/src/assets/icons/detailed/test.svg +1 -0
  277. package/src/assets/icons/detailed/text-body.svg +1 -0
  278. package/src/assets/icons/detailed/text-edit.svg +1 -0
  279. package/src/assets/icons/detailed/text-style.svg +1 -0
  280. package/src/assets/icons/detailed/time.svg +1 -0
  281. package/src/assets/icons/detailed/toilet-piper.svg +1 -0
  282. package/src/assets/icons/detailed/training-points.svg +1 -0
  283. package/src/assets/icons/detailed/trash.svg +1 -0
  284. package/src/assets/icons/detailed/underline.svg +1 -0
  285. package/src/assets/icons/detailed/undo.svg +1 -0
  286. package/src/assets/icons/detailed/unlock.svg +1 -0
  287. package/src/assets/icons/detailed/upload.svg +1 -0
  288. package/src/assets/icons/detailed/user-add.svg +1 -0
  289. package/src/assets/icons/detailed/user-badge.svg +1 -0
  290. package/src/assets/icons/detailed/user.svg +1 -0
  291. package/src/assets/icons/detailed/video-off.svg +1 -0
  292. package/src/assets/icons/detailed/video-on.svg +1 -0
  293. package/src/assets/icons/detailed/video-rec.svg +1 -0
  294. package/src/assets/icons/detailed/view-card.svg +1 -0
  295. package/src/assets/icons/detailed/view-list.svg +1 -0
  296. package/src/assets/icons/detailed/view.svg +1 -0
  297. package/src/assets/icons/detailed/voice-off.svg +1 -0
  298. package/src/assets/icons/detailed/voice-on.svg +1 -0
  299. package/src/assets/icons/detailed/volume-down.svg +1 -0
  300. package/src/assets/icons/detailed/volume-off.svg +1 -0
  301. package/src/assets/icons/detailed/volume-up.svg +1 -0
  302. package/src/assets/icons/detailed/warning.svg +1 -0
  303. package/src/assets/icons/detailed/webinar.svg +1 -0
  304. package/src/assets/icons/detailed/whiteboard.svg +1 -0
  305. package/src/assets/icons/detailed/wine.svg +1 -0
  306. package/src/assets/icons/detailed/zip.svg +1 -0
  307. package/src/assets/icons/detailed/zoom-in.svg +1 -0
  308. package/src/assets/icons/detailed/zoom-out.svg +1 -0
  309. package/src/assets/icons/detailed.json +1 -0
  310. package/src/assets/icons/index.js +7 -0
  311. package/src/assets/icons/normal/add-circle.svg +1 -0
  312. package/src/assets/icons/normal/add.svg +1 -0
  313. package/src/assets/icons/normal/align-center.svg +1 -0
  314. package/src/assets/icons/normal/align-justify.svg +1 -0
  315. package/src/assets/icons/normal/align-left.svg +1 -0
  316. package/src/assets/icons/normal/align-right.svg +1 -0
  317. package/src/assets/icons/normal/analysis-2.svg +1 -0
  318. package/src/assets/icons/normal/analysis-3.svg +1 -0
  319. package/src/assets/icons/normal/analysis.svg +1 -0
  320. package/src/assets/icons/normal/apple.svg +1 -0
  321. package/src/assets/icons/normal/arrow-down.svg +1 -0
  322. package/src/assets/icons/normal/arrow-left.svg +1 -0
  323. package/src/assets/icons/normal/arrow-right.svg +1 -0
  324. package/src/assets/icons/normal/arrow-up.svg +1 -0
  325. package/src/assets/icons/normal/attachment.svg +1 -0
  326. package/src/assets/icons/normal/back-to-front.svg +1 -0
  327. package/src/assets/icons/normal/bell-active.svg +1 -0
  328. package/src/assets/icons/normal/bell.svg +1 -0
  329. package/src/assets/icons/normal/bold.svg +1 -0
  330. package/src/assets/icons/normal/bookmark active.svg +1 -0
  331. package/src/assets/icons/normal/bookmark.svg +1 -0
  332. package/src/assets/icons/normal/building.svg +1 -0
  333. package/src/assets/icons/normal/bulleted-list.svg +1 -0
  334. package/src/assets/icons/normal/calendar.svg +1 -0
  335. package/src/assets/icons/normal/camera-off.svg +1 -0
  336. package/src/assets/icons/normal/camera-on.svg +1 -0
  337. package/src/assets/icons/normal/catalog.svg +1 -0
  338. package/src/assets/icons/normal/certificate.svg +1 -0
  339. package/src/assets/icons/normal/chat.svg +1 -0
  340. package/src/assets/icons/normal/check-badge.svg +1 -0
  341. package/src/assets/icons/normal/check-circle.svg +1 -0
  342. package/src/assets/icons/normal/check.svg +1 -0
  343. package/src/assets/icons/normal/checkbox.svg +1 -0
  344. package/src/assets/icons/normal/chevron-down-circle.svg +1 -0
  345. package/src/assets/icons/normal/chevron-down.svg +1 -0
  346. package/src/assets/icons/normal/chevron-left-circle.svg +1 -0
  347. package/src/assets/icons/normal/chevron-left.svg +1 -0
  348. package/src/assets/icons/normal/chevron-right-circle.svg +1 -0
  349. package/src/assets/icons/normal/chevron-right.svg +1 -0
  350. package/src/assets/icons/normal/chevron-up-circle.svg +1 -0
  351. package/src/assets/icons/normal/chevron-up.svg +1 -0
  352. package/src/assets/icons/normal/classroom.svg +1 -0
  353. package/src/assets/icons/normal/clear-field.svg +1 -0
  354. package/src/assets/icons/normal/clear-style.svg +1 -0
  355. package/src/assets/icons/normal/close-circle.svg +1 -0
  356. package/src/assets/icons/normal/close-loader.svg +1 -0
  357. package/src/assets/icons/normal/close.svg +1 -0
  358. package/src/assets/icons/normal/coffee.svg +1 -0
  359. package/src/assets/icons/normal/color.svg +1 -0
  360. package/src/assets/icons/normal/contact-us.svg +1 -0
  361. package/src/assets/icons/normal/copy.svg +1 -0
  362. package/src/assets/icons/normal/courses.svg +1 -0
  363. package/src/assets/icons/normal/dashboard.svg +1 -0
  364. package/src/assets/icons/normal/download.svg +1 -0
  365. package/src/assets/icons/normal/drag.svg +1 -0
  366. package/src/assets/icons/normal/dulicate.svg +1 -0
  367. package/src/assets/icons/normal/edit.svg +1 -0
  368. package/src/assets/icons/normal/elearning.svg +1 -0
  369. package/src/assets/icons/normal/email.svg +1 -0
  370. package/src/assets/icons/normal/error-2.svg +1 -0
  371. package/src/assets/icons/normal/error.svg +1 -0
  372. package/src/assets/icons/normal/exercise.svg +1 -0
  373. package/src/assets/icons/normal/external-link.svg +1 -0
  374. package/src/assets/icons/normal/extract.svg +1 -0
  375. package/src/assets/icons/normal/eye-off.svg +1 -0
  376. package/src/assets/icons/normal/eye-on.svg +1 -0
  377. package/src/assets/icons/normal/fail.svg +1 -0
  378. package/src/assets/icons/normal/fast-back.svg +1 -0
  379. package/src/assets/icons/normal/fast-forward.svg +1 -0
  380. package/src/assets/icons/normal/file-add.svg +1 -0
  381. package/src/assets/icons/normal/file-duplicate.svg +1 -0
  382. package/src/assets/icons/normal/file-remove.svg +1 -0
  383. package/src/assets/icons/normal/file-required.svg +1 -0
  384. package/src/assets/icons/normal/file.svg +1 -0
  385. package/src/assets/icons/normal/filter-2.svg +1 -0
  386. package/src/assets/icons/normal/filter-active.svg +1 -0
  387. package/src/assets/icons/normal/filter.svg +1 -0
  388. package/src/assets/icons/normal/flag.svg +1 -0
  389. package/src/assets/icons/normal/folder.svg +1 -0
  390. package/src/assets/icons/normal/full-width.svg +1 -0
  391. package/src/assets/icons/normal/go-to-back.svg +1 -0
  392. package/src/assets/icons/normal/grid.svg +1 -0
  393. package/src/assets/icons/normal/group-add.svg +1 -0
  394. package/src/assets/icons/normal/group.svg +1 -0
  395. package/src/assets/icons/normal/heart-active.svg +1 -0
  396. package/src/assets/icons/normal/heart.svg +1 -0
  397. package/src/assets/icons/normal/highlighter.svg +1 -0
  398. package/src/assets/icons/normal/home.svg +1 -0
  399. package/src/assets/icons/normal/hourglass.svg +1 -0
  400. package/src/assets/icons/normal/image.svg +1 -0
  401. package/src/assets/icons/normal/info-badge.svg +1 -0
  402. package/src/assets/icons/normal/information.svg +1 -0
  403. package/src/assets/icons/normal/italic.svg +1 -0
  404. package/src/assets/icons/normal/key.svg +1 -0
  405. package/src/assets/icons/normal/language.svg +1 -0
  406. package/src/assets/icons/normal/learning-path.svg +1 -0
  407. package/src/assets/icons/normal/light-off.svg +1 -0
  408. package/src/assets/icons/normal/light-on.svg +1 -0
  409. package/src/assets/icons/normal/link.svg +1 -0
  410. package/src/assets/icons/normal/lock.svg +1 -0
  411. package/src/assets/icons/normal/login.svg +1 -0
  412. package/src/assets/icons/normal/logout.svg +1 -0
  413. package/src/assets/icons/normal/maximize.svg +1 -0
  414. package/src/assets/icons/normal/menu.svg +1 -0
  415. package/src/assets/icons/normal/merge.svg +1 -0
  416. package/src/assets/icons/normal/minimize.svg +1 -0
  417. package/src/assets/icons/normal/mixed-class.svg +1 -0
  418. package/src/assets/icons/normal/more-horizontal.svg +1 -0
  419. package/src/assets/icons/normal/more-vertical.svg +1 -0
  420. package/src/assets/icons/normal/news.svg +1 -0
  421. package/src/assets/icons/normal/no-prerequisites.svg +1 -0
  422. package/src/assets/icons/normal/notes.svg +1 -0
  423. package/src/assets/icons/normal/number-code.svg +1 -0
  424. package/src/assets/icons/normal/numbered-list.svg +1 -0
  425. package/src/assets/icons/normal/on-site.svg +1 -0
  426. package/src/assets/icons/normal/order-down.svg +1 -0
  427. package/src/assets/icons/normal/order-up.svg +1 -0
  428. package/src/assets/icons/normal/paste.svg +1 -0
  429. package/src/assets/icons/normal/pausa.svg +1 -0
  430. package/src/assets/icons/normal/pdf.svg +1 -0
  431. package/src/assets/icons/normal/phone.svg +1 -0
  432. package/src/assets/icons/normal/pin-map.svg +1 -0
  433. package/src/assets/icons/normal/pin.svg +1 -0
  434. package/src/assets/icons/normal/pizza.svg +1 -0
  435. package/src/assets/icons/normal/play.svg +1 -0
  436. package/src/assets/icons/normal/plug-in.svg +1 -0
  437. package/src/assets/icons/normal/pointer.svg +1 -0
  438. package/src/assets/icons/normal/printer.svg +1 -0
  439. package/src/assets/icons/normal/profile-add.svg +1 -0
  440. package/src/assets/icons/normal/profile.svg +1 -0
  441. package/src/assets/icons/normal/push pin on.svg +1 -0
  442. package/src/assets/icons/normal/push-pin-off.svg +1 -0
  443. package/src/assets/icons/normal/qrcode.svg +1 -0
  444. package/src/assets/icons/normal/question-badge.svg +1 -0
  445. package/src/assets/icons/normal/radio.svg +1 -0
  446. package/src/assets/icons/normal/redo.svg +1 -0
  447. package/src/assets/icons/normal/relations.svg +1 -0
  448. package/src/assets/icons/normal/reload.svg +1 -0
  449. package/src/assets/icons/normal/remove-circle.svg +1 -0
  450. package/src/assets/icons/normal/remove.svg +1 -0
  451. package/src/assets/icons/normal/reorder.svg +1 -0
  452. package/src/assets/icons/normal/repeat.svg +1 -0
  453. package/src/assets/icons/normal/repository.svg +1 -0
  454. package/src/assets/icons/normal/request-form.svg +1 -0
  455. package/src/assets/icons/normal/resize-100%.svg +1 -0
  456. package/src/assets/icons/normal/resize-height.svg +1 -0
  457. package/src/assets/icons/normal/resize-width.svg +1 -0
  458. package/src/assets/icons/normal/search.svg +1 -0
  459. package/src/assets/icons/normal/sequential-prerequisites.svg +1 -0
  460. package/src/assets/icons/normal/settings.svg +1 -0
  461. package/src/assets/icons/normal/share.svg +1 -0
  462. package/src/assets/icons/normal/sketch.svg +1 -0
  463. package/src/assets/icons/normal/skills.svg +1 -0
  464. package/src/assets/icons/normal/skip-back.svg +1 -0
  465. package/src/assets/icons/normal/skip-forward.svg +1 -0
  466. package/src/assets/icons/normal/sms.svg +1 -0
  467. package/src/assets/icons/normal/sso-access.svg +1 -0
  468. package/src/assets/icons/normal/star-active.svg +1 -0
  469. package/src/assets/icons/normal/star.svg +1 -0
  470. package/src/assets/icons/normal/success.svg +1 -0
  471. package/src/assets/icons/normal/sun.svg +1 -0
  472. package/src/assets/icons/normal/sunrise.svg +1 -0
  473. package/src/assets/icons/normal/support.svg +1 -0
  474. package/src/assets/icons/normal/survey.svg +1 -0
  475. package/src/assets/icons/normal/table.svg +1 -0
  476. package/src/assets/icons/normal/tematic-channels.svg +1 -0
  477. package/src/assets/icons/normal/test.svg +1 -0
  478. package/src/assets/icons/normal/text-body.svg +1 -0
  479. package/src/assets/icons/normal/text-edit.svg +1 -0
  480. package/src/assets/icons/normal/text-style.svg +1 -0
  481. package/src/assets/icons/normal/time.svg +1 -0
  482. package/src/assets/icons/normal/toilet-paper.svg +1 -0
  483. package/src/assets/icons/normal/training-points.svg +1 -0
  484. package/src/assets/icons/normal/trash.svg +1 -0
  485. package/src/assets/icons/normal/underline.svg +1 -0
  486. package/src/assets/icons/normal/undo.svg +1 -0
  487. package/src/assets/icons/normal/unlock.svg +1 -0
  488. package/src/assets/icons/normal/upload.svg +1 -0
  489. package/src/assets/icons/normal/user-add.svg +1 -0
  490. package/src/assets/icons/normal/user-badge.svg +1 -0
  491. package/src/assets/icons/normal/user.svg +1 -0
  492. package/src/assets/icons/normal/video-off.svg +1 -0
  493. package/src/assets/icons/normal/video-on.svg +1 -0
  494. package/src/assets/icons/normal/video-rec.svg +1 -0
  495. package/src/assets/icons/normal/view-card.svg +1 -0
  496. package/src/assets/icons/normal/view-list.svg +1 -0
  497. package/src/assets/icons/normal/view.svg +1 -0
  498. package/src/assets/icons/normal/voice-off.svg +1 -0
  499. package/src/assets/icons/normal/voice-on.svg +1 -0
  500. package/src/assets/icons/normal/volume-down.svg +1 -0
  501. package/src/assets/icons/normal/volume-off.svg +1 -0
  502. package/src/assets/icons/normal/volume-up.svg +1 -0
  503. package/src/assets/icons/normal/warning.svg +1 -0
  504. package/src/assets/icons/normal/webinar.svg +1 -0
  505. package/src/assets/icons/normal/whiteboard.svg +1 -0
  506. package/src/assets/icons/normal/wine.svg +1 -0
  507. package/src/assets/icons/normal/zip.svg +1 -0
  508. package/src/assets/icons/normal/zoom-in.svg +1 -0
  509. package/src/assets/icons/normal/zoom-out.svg +1 -0
  510. package/src/assets/icons/normal.json +1 -0
  511. package/src/assets/icons/simple/add-circle.svg +1 -0
  512. package/src/assets/icons/simple/add.svg +1 -0
  513. package/src/assets/icons/simple/align-center.svg +1 -0
  514. package/src/assets/icons/simple/align-justify.svg +1 -0
  515. package/src/assets/icons/simple/align-left.svg +1 -0
  516. package/src/assets/icons/simple/align-right.svg +1 -0
  517. package/src/assets/icons/simple/analysis-2.svg +1 -0
  518. package/src/assets/icons/simple/analysis-3.svg +1 -0
  519. package/src/assets/icons/simple/analysis.svg +1 -0
  520. package/src/assets/icons/simple/apple.svg +1 -0
  521. package/src/assets/icons/simple/arrow-down.svg +1 -0
  522. package/src/assets/icons/simple/arrow-left.svg +1 -0
  523. package/src/assets/icons/simple/arrow-right.svg +1 -0
  524. package/src/assets/icons/simple/arrow-up.svg +1 -0
  525. package/src/assets/icons/simple/attachment.svg +1 -0
  526. package/src/assets/icons/simple/bck-to-front.svg +1 -0
  527. package/src/assets/icons/simple/bell-active.svg +1 -0
  528. package/src/assets/icons/simple/bell.svg +1 -0
  529. package/src/assets/icons/simple/bold.svg +1 -0
  530. package/src/assets/icons/simple/bookmark-active.svg +1 -0
  531. package/src/assets/icons/simple/bookmark.svg +1 -0
  532. package/src/assets/icons/simple/building.svg +1 -0
  533. package/src/assets/icons/simple/bulleted-list.svg +1 -0
  534. package/src/assets/icons/simple/calendar.svg +1 -0
  535. package/src/assets/icons/simple/camera-off.svg +1 -0
  536. package/src/assets/icons/simple/camera-on.svg +1 -0
  537. package/src/assets/icons/simple/catalog.svg +1 -0
  538. package/src/assets/icons/simple/certificate.svg +1 -0
  539. package/src/assets/icons/simple/chat.svg +1 -0
  540. package/src/assets/icons/simple/check-badge.svg +1 -0
  541. package/src/assets/icons/simple/check-circle.svg +1 -0
  542. package/src/assets/icons/simple/check.svg +1 -0
  543. package/src/assets/icons/simple/checkbox.svg +1 -0
  544. package/src/assets/icons/simple/chevron-down-circle.svg +1 -0
  545. package/src/assets/icons/simple/chevron-down.svg +1 -0
  546. package/src/assets/icons/simple/chevron-left-circle.svg +1 -0
  547. package/src/assets/icons/simple/chevron-left.svg +1 -0
  548. package/src/assets/icons/simple/chevron-right-circle.svg +1 -0
  549. package/src/assets/icons/simple/chevron-right.svg +1 -0
  550. package/src/assets/icons/simple/chevron-up-circle.svg +1 -0
  551. package/src/assets/icons/simple/chevron-up.svg +1 -0
  552. package/src/assets/icons/simple/classroom.svg +1 -0
  553. package/src/assets/icons/simple/clear-field.svg +1 -0
  554. package/src/assets/icons/simple/clear-style.svg +1 -0
  555. package/src/assets/icons/simple/close-circle.svg +1 -0
  556. package/src/assets/icons/simple/close-loader.svg +1 -0
  557. package/src/assets/icons/simple/close.svg +1 -0
  558. package/src/assets/icons/simple/coffee.svg +1 -0
  559. package/src/assets/icons/simple/color.svg +1 -0
  560. package/src/assets/icons/simple/contact-us.svg +1 -0
  561. package/src/assets/icons/simple/copy.svg +1 -0
  562. package/src/assets/icons/simple/courses.svg +1 -0
  563. package/src/assets/icons/simple/dashboard.svg +1 -0
  564. package/src/assets/icons/simple/download.svg +1 -0
  565. package/src/assets/icons/simple/drag.svg +1 -0
  566. package/src/assets/icons/simple/duplicate.svg +1 -0
  567. package/src/assets/icons/simple/edit.svg +1 -0
  568. package/src/assets/icons/simple/elearning.svg +1 -0
  569. package/src/assets/icons/simple/email.svg +1 -0
  570. package/src/assets/icons/simple/error-2.svg +1 -0
  571. package/src/assets/icons/simple/error.svg +1 -0
  572. package/src/assets/icons/simple/exercise.svg +1 -0
  573. package/src/assets/icons/simple/external-link.svg +1 -0
  574. package/src/assets/icons/simple/extract.svg +1 -0
  575. package/src/assets/icons/simple/eye-off.svg +1 -0
  576. package/src/assets/icons/simple/eye-on.svg +1 -0
  577. package/src/assets/icons/simple/fail.svg +1 -0
  578. package/src/assets/icons/simple/fast-back.svg +1 -0
  579. package/src/assets/icons/simple/fast-forward.svg +1 -0
  580. package/src/assets/icons/simple/file-add.svg +1 -0
  581. package/src/assets/icons/simple/file-duplicate.svg +1 -0
  582. package/src/assets/icons/simple/file-remove.svg +1 -0
  583. package/src/assets/icons/simple/file-required.svg +1 -0
  584. package/src/assets/icons/simple/file.svg +1 -0
  585. package/src/assets/icons/simple/filter-2.svg +1 -0
  586. package/src/assets/icons/simple/filter-active.svg +1 -0
  587. package/src/assets/icons/simple/filter.svg +1 -0
  588. package/src/assets/icons/simple/flag.svg +1 -0
  589. package/src/assets/icons/simple/folder.svg +1 -0
  590. package/src/assets/icons/simple/full-width.svg +1 -0
  591. package/src/assets/icons/simple/go-to-back.svg +1 -0
  592. package/src/assets/icons/simple/grid.svg +1 -0
  593. package/src/assets/icons/simple/group-add.svg +1 -0
  594. package/src/assets/icons/simple/group.svg +1 -0
  595. package/src/assets/icons/simple/heart-active.svg +1 -0
  596. package/src/assets/icons/simple/heart.svg +1 -0
  597. package/src/assets/icons/simple/highlighter.svg +1 -0
  598. package/src/assets/icons/simple/home.svg +1 -0
  599. package/src/assets/icons/simple/hourglass.svg +1 -0
  600. package/src/assets/icons/simple/image.svg +1 -0
  601. package/src/assets/icons/simple/info-badge.svg +1 -0
  602. package/src/assets/icons/simple/information.svg +1 -0
  603. package/src/assets/icons/simple/italic.svg +1 -0
  604. package/src/assets/icons/simple/key.svg +1 -0
  605. package/src/assets/icons/simple/language.svg +1 -0
  606. package/src/assets/icons/simple/learning-path.svg +1 -0
  607. package/src/assets/icons/simple/light-off.svg +1 -0
  608. package/src/assets/icons/simple/light-on.svg +1 -0
  609. package/src/assets/icons/simple/link.svg +1 -0
  610. package/src/assets/icons/simple/lock.svg +1 -0
  611. package/src/assets/icons/simple/login.svg +1 -0
  612. package/src/assets/icons/simple/logout.svg +1 -0
  613. package/src/assets/icons/simple/maximaze.svg +1 -0
  614. package/src/assets/icons/simple/menu.svg +1 -0
  615. package/src/assets/icons/simple/merge.svg +1 -0
  616. package/src/assets/icons/simple/minimaze.svg +1 -0
  617. package/src/assets/icons/simple/mixed-class.svg +1 -0
  618. package/src/assets/icons/simple/more-horizontal.svg +1 -0
  619. package/src/assets/icons/simple/more-vertical.svg +1 -0
  620. package/src/assets/icons/simple/news.svg +1 -0
  621. package/src/assets/icons/simple/no-prerequisites.svg +1 -0
  622. package/src/assets/icons/simple/notes.svg +1 -0
  623. package/src/assets/icons/simple/number-code.svg +1 -0
  624. package/src/assets/icons/simple/numbered-list.svg +1 -0
  625. package/src/assets/icons/simple/on-site.svg +1 -0
  626. package/src/assets/icons/simple/order-down.svg +1 -0
  627. package/src/assets/icons/simple/order-up.svg +1 -0
  628. package/src/assets/icons/simple/paste.svg +1 -0
  629. package/src/assets/icons/simple/pausa.svg +1 -0
  630. package/src/assets/icons/simple/pdf.svg +1 -0
  631. package/src/assets/icons/simple/phone.svg +1 -0
  632. package/src/assets/icons/simple/pin-map.svg +1 -0
  633. package/src/assets/icons/simple/pin.svg +1 -0
  634. package/src/assets/icons/simple/pizza.svg +1 -0
  635. package/src/assets/icons/simple/play.svg +1 -0
  636. package/src/assets/icons/simple/plug-in.svg +1 -0
  637. package/src/assets/icons/simple/pointer.svg +1 -0
  638. package/src/assets/icons/simple/printer.svg +1 -0
  639. package/src/assets/icons/simple/profile-add.svg +1 -0
  640. package/src/assets/icons/simple/profile.svg +1 -0
  641. package/src/assets/icons/simple/push-pin-off.svg +1 -0
  642. package/src/assets/icons/simple/push-pin-on.svg +1 -0
  643. package/src/assets/icons/simple/qrcode.svg +1 -0
  644. package/src/assets/icons/simple/question-badge.svg +1 -0
  645. package/src/assets/icons/simple/radio.svg +1 -0
  646. package/src/assets/icons/simple/redo.svg +1 -0
  647. package/src/assets/icons/simple/relations.svg +1 -0
  648. package/src/assets/icons/simple/reload.svg +1 -0
  649. package/src/assets/icons/simple/remove-circle.svg +1 -0
  650. package/src/assets/icons/simple/remove.svg +1 -0
  651. package/src/assets/icons/simple/repeart.svg +1 -0
  652. package/src/assets/icons/simple/repository.svg +1 -0
  653. package/src/assets/icons/simple/request-form.svg +1 -0
  654. package/src/assets/icons/simple/resize-100%.svg +1 -0
  655. package/src/assets/icons/simple/resize-height.svg +1 -0
  656. package/src/assets/icons/simple/resize-width.svg +1 -0
  657. package/src/assets/icons/simple/search.svg +1 -0
  658. package/src/assets/icons/simple/sequential-prerequisites.svg +1 -0
  659. package/src/assets/icons/simple/settings.svg +1 -0
  660. package/src/assets/icons/simple/share.svg +1 -0
  661. package/src/assets/icons/simple/sketch.svg +1 -0
  662. package/src/assets/icons/simple/skills.svg +1 -0
  663. package/src/assets/icons/simple/skip-back.svg +1 -0
  664. package/src/assets/icons/simple/skip-forward.svg +1 -0
  665. package/src/assets/icons/simple/sms.svg +1 -0
  666. package/src/assets/icons/simple/sso-access.svg +1 -0
  667. package/src/assets/icons/simple/star-active.svg +1 -0
  668. package/src/assets/icons/simple/star.svg +1 -0
  669. package/src/assets/icons/simple/success.svg +1 -0
  670. package/src/assets/icons/simple/sun.svg +1 -0
  671. package/src/assets/icons/simple/sunrise.svg +1 -0
  672. package/src/assets/icons/simple/support.svg +1 -0
  673. package/src/assets/icons/simple/survey.svg +1 -0
  674. package/src/assets/icons/simple/table.svg +1 -0
  675. package/src/assets/icons/simple/tematic-channels.svg +1 -0
  676. package/src/assets/icons/simple/test.svg +1 -0
  677. package/src/assets/icons/simple/text-body.svg +1 -0
  678. package/src/assets/icons/simple/text-edit.svg +1 -0
  679. package/src/assets/icons/simple/text-style.svg +1 -0
  680. package/src/assets/icons/simple/time.svg +1 -0
  681. package/src/assets/icons/simple/toilet-paper.svg +1 -0
  682. package/src/assets/icons/simple/training-points.svg +1 -0
  683. package/src/assets/icons/simple/trash.svg +1 -0
  684. package/src/assets/icons/simple/underline.svg +1 -0
  685. package/src/assets/icons/simple/undo.svg +1 -0
  686. package/src/assets/icons/simple/unlock.svg +1 -0
  687. package/src/assets/icons/simple/upload.svg +1 -0
  688. package/src/assets/icons/simple/user-add.svg +1 -0
  689. package/src/assets/icons/simple/user-badge.svg +1 -0
  690. package/src/assets/icons/simple/user.svg +1 -0
  691. package/src/assets/icons/simple/video-off.svg +1 -0
  692. package/src/assets/icons/simple/video-on.svg +1 -0
  693. package/src/assets/icons/simple/video-rec.svg +1 -0
  694. package/src/assets/icons/simple/view-card.svg +1 -0
  695. package/src/assets/icons/simple/view-list.svg +1 -0
  696. package/src/assets/icons/simple/view.svg +1 -0
  697. package/src/assets/icons/simple/voice-off.svg +1 -0
  698. package/src/assets/icons/simple/voice-on.svg +1 -0
  699. package/src/assets/icons/simple/volume-down.svg +1 -0
  700. package/src/assets/icons/simple/volume-off.svg +1 -0
  701. package/src/assets/icons/simple/volume-up.svg +1 -0
  702. package/src/assets/icons/simple/warning.svg +1 -0
  703. package/src/assets/icons/simple/webinar.svg +1 -0
  704. package/src/assets/icons/simple/whiteboard.svg +1 -0
  705. package/src/assets/icons/simple/wine.svg +1 -0
  706. package/src/assets/icons/simple/zip.svg +1 -0
  707. package/src/assets/icons/simple/zoom-in.svg +1 -0
  708. package/src/assets/icons/simple/zoom-out.svg +1 -0
  709. package/src/assets/icons/simple.json +1 -0
  710. package/src/components/VvAccordion/VvAccordion.ts +34 -0
  711. package/src/components/VvAccordion/VvAccordion.vue +92 -0
  712. package/src/components/VvAccordion/useAccordionProps.ts +45 -0
  713. package/src/components/VvAccordionGroup/VvAccordionGroup.ts +36 -0
  714. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +63 -0
  715. package/src/components/VvBadge/VvBadge.ts +4 -0
  716. package/src/components/VvBadge/VvBadge.vue +12 -0
  717. package/src/components/VvBreadcrumb/VvBreadcrumb.ts +14 -0
  718. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +52 -0
  719. package/src/components/VvButton/VvButton.ts +117 -0
  720. package/src/components/VvButton/VvButton.vue +190 -0
  721. package/src/components/VvButton/useButtonGroupProps.ts +51 -0
  722. package/src/components/VvButtonGroup/VvButtonGroup.ts +37 -0
  723. package/src/components/VvButtonGroup/VvButtonGroup.vue +55 -0
  724. package/src/components/VvCard/VvCard.ts +4 -0
  725. package/src/components/VvCard/VvCard.vue +37 -0
  726. package/src/components/VvCheck/VvCheck.ts +48 -0
  727. package/src/components/VvCheck/VvCheck.vue +149 -0
  728. package/src/components/VvCheck/useCheckProps.ts +41 -0
  729. package/src/components/VvCheckGroup/VvCheckGroup.ts +34 -0
  730. package/src/components/VvCheckGroup/VvCheckGroup.vue +84 -0
  731. package/src/components/VvDialog/VvDialog.ts +17 -0
  732. package/src/components/VvDialog/VvDialog.vue +91 -0
  733. package/src/components/VvDialog/constants.ts +5 -0
  734. package/src/components/VvDropdown/VvDropdown.ts +46 -0
  735. package/src/components/VvDropdown/VvDropdown.vue +130 -0
  736. package/src/components/VvIcon/VvIcon.ts +94 -0
  737. package/src/components/VvIcon/VvIcon.vue +123 -0
  738. package/src/components/VvInputText/VvInputText.ts +49 -0
  739. package/src/components/VvInputText/VvInputText.vue +276 -0
  740. package/src/components/VvInputText/constants.ts +34 -0
  741. package/src/components/VvInputText/useInputNumber.ts +40 -0
  742. package/src/components/VvInputText/useInputPassword.ts +38 -0
  743. package/src/components/VvNativeSelect/VvNativeSelect.ts +70 -0
  744. package/src/components/VvNativeSelect/VvNativeSelect.vue +106 -0
  745. package/src/components/VvProgress/VvProgress.ts +28 -0
  746. package/src/components/VvProgress/VvProgress.vue +34 -0
  747. package/src/components/VvRadio/VvRadio.ts +25 -0
  748. package/src/components/VvRadio/VvRadio.vue +130 -0
  749. package/src/components/VvRadio/useRadioProps.ts +40 -0
  750. package/src/components/VvRadioGroup/VvRadioGroup.ts +25 -0
  751. package/src/components/VvRadioGroup/VvRadioGroup.vue +80 -0
  752. package/src/components/VvSelect/VvSelect.ts +91 -0
  753. package/src/components/VvSelect/VvSelect.vue +194 -0
  754. package/src/components/VvTextarea/VvTextarea.ts +55 -0
  755. package/src/components/VvTextarea/VvTextarea.vue +189 -0
  756. package/src/components/VvTextarea/constants.ts +14 -0
  757. package/src/components/common/HintSlot.ts +164 -0
  758. package/src/components/index.ts +12 -0
  759. package/src/composables/focus/useComponentFocus.ts +22 -0
  760. package/src/composables/group/types/IAccordionGroupState.ts +12 -0
  761. package/src/composables/group/types/IButtonGroupState.ts +21 -0
  762. package/src/composables/group/types/IGroupState.ts +12 -0
  763. package/src/composables/group/types/IInputGroup.ts +13 -0
  764. package/src/composables/group/useInjectedGroupState.ts +64 -0
  765. package/src/composables/group/useProvideGroupState.ts +23 -0
  766. package/src/composables/icons/useComponentIcons.ts +52 -0
  767. package/src/composables/options/useOptions.ts +27 -0
  768. package/src/composables/useModifiers.ts +54 -0
  769. package/src/constants.ts +7 -0
  770. package/src/directives/.README +0 -0
  771. package/src/index.ts +7 -0
  772. package/src/props/index.ts +45 -0
  773. package/src/stories/Accordion/Accordion.stories.mdx +37 -0
  774. package/src/stories/Accordion/AccordionBordered.stories.mdx +26 -0
  775. package/src/stories/Accordion/AccordionIconRight.stories.mdx +32 -0
  776. package/src/stories/Accordion/AccordionSlots.stories.mdx +82 -0
  777. package/src/stories/Accordion/accordionTest.js +36 -0
  778. package/src/stories/AccordionGroup/Accordion.stories.mdx +42 -0
  779. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +43 -0
  780. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +51 -0
  781. package/src/stories/AccordionGroup/accordionGroupTest.js +51 -0
  782. package/src/stories/Badge/Badge.stories.mdx +38 -0
  783. package/src/stories/Badge/BadgeColor.stories.mdx +54 -0
  784. package/src/stories/Badge/BadgeDot.stories.mdx +20 -0
  785. package/src/stories/Badge/BadgeTest.js +21 -0
  786. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +46 -0
  787. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +41 -0
  788. package/src/stories/Button/Button.stories.mdx +73 -0
  789. package/src/stories/Button/ButtonBadge.stories.mdx +33 -0
  790. package/src/stories/Button/ButtonIcon.stories.mdx +51 -0
  791. package/src/stories/Button/ButtonIconPosition.stories.mdx +103 -0
  792. package/src/stories/Button/ButtonLink.stories.mdx +156 -0
  793. package/src/stories/Button/ButtonLoading.stories.mdx +62 -0
  794. package/src/stories/Button/ButtonModifiers.stories.mdx +194 -0
  795. package/src/stories/Button/ButtonSlots.stories.mdx +123 -0
  796. package/src/stories/Button/ButtonVariant.stories.mdx +223 -0
  797. package/src/stories/Button/test.js +41 -0
  798. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +39 -0
  799. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +83 -0
  800. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +50 -0
  801. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +40 -0
  802. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +38 -0
  803. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +77 -0
  804. package/src/stories/ButtonGroup/ButtonGroupTest.js +61 -0
  805. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +131 -0
  806. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +38 -0
  807. package/src/stories/Card/Card.stories.mdx +23 -0
  808. package/src/stories/Card/CardSlots.stories.mdx +42 -0
  809. package/src/stories/Card/CardVariant.stories.mdx +37 -0
  810. package/src/stories/Check/Check.stories.mdx +62 -0
  811. package/src/stories/Check/CheckBinary.stories.mdx +80 -0
  812. package/src/stories/Check/CheckDisabled.stories.mdx +30 -0
  813. package/src/stories/Check/CheckError.stories.mdx +64 -0
  814. package/src/stories/Check/CheckErrorTests.js +72 -0
  815. package/src/stories/Check/CheckHintLabel.stories.mdx +30 -0
  816. package/src/stories/Check/CheckPropertyTest.js +101 -0
  817. package/src/stories/Check/CheckReadonly.stories.mdx +30 -0
  818. package/src/stories/Check/CheckSlots.stories.mdx +51 -0
  819. package/src/stories/Check/CheckSwitch.stories.mdx +30 -0
  820. package/src/stories/CheckGroup/CheckGroup.stories.mdx +69 -0
  821. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +26 -0
  822. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +28 -0
  823. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +27 -0
  824. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +26 -0
  825. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +48 -0
  826. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +48 -0
  827. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +40 -0
  828. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +26 -0
  829. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +152 -0
  830. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +28 -0
  831. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +26 -0
  832. package/src/stories/Dialog/Dialog.stories.mdx +29 -0
  833. package/src/stories/Dialog/DialogAutoClose.stories.mdx +18 -0
  834. package/src/stories/Dialog/DialogSize.stories.mdx +36 -0
  835. package/src/stories/Dropdown/Dropdown.stories.mdx +50 -0
  836. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +25 -0
  837. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +25 -0
  838. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +26 -0
  839. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +56 -0
  840. package/src/stories/Dropdown/DropdownOptions.stories.mdx +76 -0
  841. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +58 -0
  842. package/src/stories/Icon/Icon.stories.mdx +73 -0
  843. package/src/stories/Icon/IconList.vue +34 -0
  844. package/src/stories/Icon/IconPrefix.stories.mdx +79 -0
  845. package/src/stories/Icon/IconRemote.stories.mdx +39 -0
  846. package/src/stories/Icon/IconTest.js +27 -0
  847. package/src/stories/Icon/IconsList.stories.mdx +35 -0
  848. package/src/stories/InputText/InputText.stories.mdx +94 -0
  849. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +15 -0
  850. package/src/stories/InputText/InputTextAutofocus.stories.mdx +20 -0
  851. package/src/stories/InputText/InputTextDisabled.stories.mdx +19 -0
  852. package/src/stories/InputText/InputTextError.stories.mdx +19 -0
  853. package/src/stories/InputText/InputTextFloating.stories.mdx +20 -0
  854. package/src/stories/InputText/InputTextHintLabel.stories.mdx +18 -0
  855. package/src/stories/InputText/InputTextIcon.stories.mdx +18 -0
  856. package/src/stories/InputText/InputTextIconPosition.stories.mdx +31 -0
  857. package/src/stories/InputText/InputTextLabel.stories.mdx +15 -0
  858. package/src/stories/InputText/InputTextLoading.stories.mdx +19 -0
  859. package/src/stories/InputText/InputTextMax.stories.mdx +31 -0
  860. package/src/stories/InputText/InputTextMaxLength.stories.mdx +15 -0
  861. package/src/stories/InputText/InputTextMin.stories.mdx +31 -0
  862. package/src/stories/InputText/InputTextMinLength.stories.mdx +15 -0
  863. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +15 -0
  864. package/src/stories/InputText/InputTextReadonly.stories.mdx +19 -0
  865. package/src/stories/InputText/InputTextSlots.stories.mdx +30 -0
  866. package/src/stories/InputText/InputTextStep.stories.mdx +31 -0
  867. package/src/stories/InputText/InputTextType.stories.mdx +81 -0
  868. package/src/stories/InputText/InputTextValid.stories.mdx +19 -0
  869. package/src/stories/NativeSelect/NativeSelect.stories.mdx +53 -0
  870. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +32 -0
  871. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +36 -0
  872. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +34 -0
  873. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +42 -0
  874. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +27 -0
  875. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +78 -0
  876. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +34 -0
  877. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +66 -0
  878. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +36 -0
  879. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +66 -0
  880. package/src/stories/Progress/Progress.stories.mdx +29 -0
  881. package/src/stories/Progress/ProgressDeterminate.stories.mdx +19 -0
  882. package/src/stories/Radio/Radio.stories.mdx +67 -0
  883. package/src/stories/Radio/RadioDisabled.stories.mdx +30 -0
  884. package/src/stories/Radio/RadioError.stories.mdx +64 -0
  885. package/src/stories/Radio/RadioHintLabel.stories.mdx +30 -0
  886. package/src/stories/Radio/RadioSlots.stories.mdx +29 -0
  887. package/src/stories/Radio/RadioTest.js +89 -0
  888. package/src/stories/RadioGroup/RadioGroup.stories.mdx +73 -0
  889. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +29 -0
  890. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +31 -0
  891. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +28 -0
  892. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +29 -0
  893. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +65 -0
  894. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +65 -0
  895. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +58 -0
  896. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +29 -0
  897. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +162 -0
  898. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +31 -0
  899. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +29 -0
  900. package/src/stories/RadioGroup/RadioOptionsTest.js +78 -0
  901. package/src/stories/RadioGroup/RadioPropertyTest.js +131 -0
  902. package/src/stories/RadioGroup/RadioSlotsTest.js +20 -0
  903. package/src/stories/Select/Select.stories.mdx +55 -0
  904. package/src/stories/Select/SelectDisabled.stories.mdx +32 -0
  905. package/src/stories/Select/SelectMaxValues.stories.mdx +33 -0
  906. package/src/stories/Select/SelectMultiple.stories.mdx +64 -0
  907. package/src/stories/Select/SelectOptions.stories.mdx +78 -0
  908. package/src/stories/Select/SelectSearchable.stories.mdx +80 -0
  909. package/src/stories/Select/SelectSeparator.stories.mdx +64 -0
  910. package/src/stories/Select/SelectUseObject.stories.mdx +66 -0
  911. package/src/stories/Textarea/Textarea.stories.mdx +84 -0
  912. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +15 -0
  913. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +20 -0
  914. package/src/stories/Textarea/TextareaDisabled.stories.mdx +19 -0
  915. package/src/stories/Textarea/TextareaError.stories.mdx +19 -0
  916. package/src/stories/Textarea/TextareaFloating.stories.mdx +20 -0
  917. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +18 -0
  918. package/src/stories/Textarea/TextareaIcon.stories.mdx +18 -0
  919. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +31 -0
  920. package/src/stories/Textarea/TextareaLabel.stories.mdx +15 -0
  921. package/src/stories/Textarea/TextareaLoading.stories.mdx +19 -0
  922. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +15 -0
  923. package/src/stories/Textarea/TextareaMinLength.stories.mdx +15 -0
  924. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +15 -0
  925. package/src/stories/Textarea/TextareaReadonly.stories.mdx +19 -0
  926. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +31 -0
  927. package/src/stories/Textarea/TextareaSlots.stories.mdx +31 -0
  928. package/src/stories/Textarea/TextareaValid.stories.mdx +19 -0
  929. package/src/stories/stories.scss +24 -0
  930. package/src/stories/volver-ui-vue.stories.mdx +70 -0
  931. package/src/types/.README +0 -0
  932. package/src/types/generic.d.ts +1 -0
  933. package/src/utils/ObjectUtilities.ts +275 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.14" viewBox="0 0 16 16.14"><g transform="translate(0 0.14)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.466)"><g transform="translate(-4.465 -5.565)" fill="none" stroke-miterlimit="10"><path d="M11.809,20.416a3.9,3.9,0,0,1,.8.1,4.318,4.318,0,0,1,.8.314l.019.009c.1.047.2.1.3.139a1.345,1.345,0,0,0,.539.124,2.029,2.029,0,0,0,.834-.248,3.537,3.537,0,0,0,1.324-1.129,11.185,11.185,0,0,0,1.456-2.447c.077-.172.136-.315.186-.446a8.9,8.9,0,0,0,.529-5.47,4.23,4.23,0,0,0-1.694-2.514.386.386,0,0,1-.037-.026,2.886,2.886,0,0,0-.582-.363,3.523,3.523,0,0,0-1.52-.356h-.086a5.038,5.038,0,0,0-1.73.454l-.342.132c-.149.056-.495.176-.5.177a.4.4,0,0,1-.136.024h-.128l-.025,0H11.79l-.026,0h-.129a.4.4,0,0,1-.136-.023s-.347-.121-.5-.179l-.337-.13A5.076,5.076,0,0,0,8.927,8.1H8.834a3.562,3.562,0,0,0-1.512.356,2.91,2.91,0,0,0-.584.363.339.339,0,0,1-.035.026,4.3,4.3,0,0,0-1.684,2.474A8.9,8.9,0,0,0,5.524,16.8c.073.192.139.343.2.477a11.141,11.141,0,0,0,1.455,2.447,3.51,3.51,0,0,0,1.276,1.109,2.208,2.208,0,0,0,.885.267,1.35,1.35,0,0,0,.535-.123c.1-.043.2-.091.3-.137l.018-.009a4.419,4.419,0,0,1,.8-.317,3.706,3.706,0,0,1,.8-.1h.014Z" stroke="none"/><path d="M 14.260986328125 20.09961318969727 C 14.32536697387695 20.09961318969727 14.50913619995117 20.01754379272461 14.68877696990967 19.93733406066895 C 15.00012683868408 19.7990837097168 15.25736618041992 19.57120323181152 15.63781642913818 19.09665298461914 C 16.13151741027832 18.48062324523926 16.57657623291016 17.73093414306641 16.96085739135742 16.8679141998291 C 17.0268669128418 16.71989440917969 17.07902717590332 16.5946044921875 17.1250171661377 16.47362327575684 L 17.14455604553223 16.42595481872559 C 18.23100662231445 13.95873355865479 17.62941741943359 11.64108371734619 17.62321662902832 11.61796379089355 L 17.61015701293945 11.5631742477417 C 17.36825752258301 10.4043436050415 16.43461799621582 9.741438865661621 16.35490608215332 9.686763763427734 C 16.31573867797852 9.66197395324707 16.28406715393066 9.638636589050293 16.25646591186523 9.617584228515625 L 16.22528648376465 9.593124389648438 C 16.12227630615234 9.508934020996094 15.99695682525635 9.43182373046875 15.8407564163208 9.356674194335938 C 15.49393653869629 9.189173698425293 15.11858654022217 9.10063362121582 14.75527667999268 9.10063362121582 C 14.73395347595215 9.100632667541504 14.71262550354004 9.100553512573242 14.69343662261963 9.100974082946777 C 14.26431655883789 9.111443519592285 13.83969688415527 9.277084350585938 13.2977466583252 9.488473892211914 L 12.95023632049561 9.622143745422363 C 12.79885864257812 9.679323196411133 12.4832010269165 9.789033889770508 12.42975902557373 9.807562828063965 C 12.27939224243164 9.860764503479004 12.12204647064209 9.887733459472656 11.96197700500488 9.887733459472656 L 11.63514614105225 9.887733459472656 C 11.47371673583984 9.887733459472656 11.31545639038086 9.860584259033203 11.16475677490234 9.80704402923584 L 11.1370964050293 9.797313690185547 C 10.98491668701172 9.743893623352051 10.76855659484863 9.667583465576172 10.64699649810791 9.621773719787598 L 10.63960647583008 9.618964195251465 L 10.29893684387207 9.487483978271484 C 9.758896827697754 9.277624130249023 9.33234691619873 9.11185359954834 8.906126976013184 9.101043701171875 C 8.882996559143066 9.100553512573242 8.858916282653809 9.100004196166992 8.834336280822754 9.100004196166992 C 8.488106727600098 9.100004196166992 8.095166206359863 9.193683624267578 7.7546067237854 9.357833862304688 C 7.602083206176758 9.43099308013916 7.476366519927979 9.508245468139648 7.370387077331543 9.593930244445801 C 7.33384895324707 9.623902320861816 7.29572868347168 9.651962280273438 7.256727695465088 9.677605628967285 C 7.195810317993164 9.720224380493164 6.225821495056152 10.4150915145874 5.99812650680542 11.52038383483887 L 5.985506534576416 11.57410430908203 C 5.959956645965576 11.67080402374268 5.371976375579834 13.97023391723633 6.439456462860107 16.39472389221191 L 6.458856582641602 16.44202423095703 C 6.524376392364502 16.61422348022461 6.582476615905762 16.74697303771973 6.637466430664062 16.86920356750488 C 7.01992654800415 17.73015403747559 7.46463680267334 18.47954368591309 7.9591965675354 19.09651374816895 C 8.334726333618164 19.56493377685547 8.587996482849121 19.7951545715332 8.860456466674805 19.91673469543457 L 8.865276336669922 19.91886329650879 C 9.064207077026367 20.00709342956543 9.269916534423828 20.09833335876465 9.339886665344238 20.09833335876465 C 9.349576950073242 20.09833335876465 9.38858699798584 20.09519386291504 9.484686851501465 20.05437469482422 C 9.567099571228027 20.01944732666016 9.654199600219727 19.97832870483398 9.736672401428223 19.9389591217041 L 9.773836135864258 19.92097473144531 C 10.05079650878906 19.79001426696777 10.36470699310303 19.64157485961914 10.74653625488281 19.54405403137207 C 11.03658676147461 19.46997451782227 11.3695764541626 19.42821311950684 11.76453685760498 19.41637420654297 L 11.82625675201416 19.41592407226562 L 11.84363651275635 19.41652297973633 C 12.09560680389404 19.42529487609863 12.47415637969971 19.44802474975586 12.8513069152832 19.54392433166504 C 13.2381067276001 19.64249420166016 13.56612682342529 19.79865455627441 13.82985687255859 19.92420387268066 L 13.86786651611328 19.94228363037109 C 13.95346641540527 19.98296356201172 14.03431701660156 20.02139472961426 14.11122703552246 20.05385398864746 L 14.11623668670654 20.05598449707031 C 14.18092632293701 20.08371353149414 14.23368644714355 20.09961318969727 14.260986328125 20.09961318969727 M 14.260986328125 21.09961318969727 C 14.09163665771484 21.09961318969727 13.92041683197021 21.06003379821777 13.72231674194336 20.97513389587402 C 13.6179666519165 20.93108367919922 13.51672649383545 20.88256454467773 13.41861629486084 20.83596420288086 L 13.39986705780029 20.82703399658203 C 13.15178680419922 20.70893478393555 12.89494705200195 20.58700370788574 12.60436630249023 20.51295471191406 C 12.32066631317139 20.4408130645752 12.01071643829346 20.42294311523438 11.80887699127197 20.41592407226562 L 11.79449653625488 20.41592407226562 C 11.47517681121826 20.42549324035645 11.21396636962891 20.45677375793457 10.99400615692139 20.51295471191406 C 10.70154666900635 20.58764457702637 10.44408702850342 20.71021461486816 10.19162654876709 20.8295841217041 L 10.17350673675537 20.83852386474609 C 10.07726669311523 20.88448333740234 9.977286338806152 20.93171310424805 9.87480640411377 20.97513389587402 C 9.677956581115723 21.05875396728516 9.507356643676758 21.09833335876465 9.339886665344238 21.09833335876465 C 9.056806564331055 21.09833335876465 8.806216239929199 20.98661422729492 8.455026626586914 20.83085441589355 C 7.955726623535156 20.60807418823242 7.583286762237549 20.22633361816406 7.178976535797119 19.72202301025391 C 6.630936622619629 19.03833389282227 6.141016483306885 18.21485328674316 5.723586559295654 17.27518463134766 C 5.662966728210449 17.14048385620117 5.597356796264648 16.98983383178711 5.524236679077148 16.79768371582031 C 4.340676784515381 14.109543800354 4.946836471557617 11.59056377410889 5.018696784973145 11.31862354278564 C 5.336146831512451 9.777613639831543 6.641566753387451 8.885824203491211 6.70280647277832 8.844964027404785 C 6.715926647186279 8.836673736572266 6.72779655456543 8.827733993530273 6.737796783447266 8.81943416595459 C 6.905276775360107 8.683464050292969 7.095866680145264 8.564723968505859 7.322086811065674 8.456203460693359 C 7.798886775970459 8.226393699645996 8.336297035217285 8.100004196166992 8.834336280822754 8.100004196166992 C 8.866216659545898 8.100004196166992 8.897456169128418 8.10063362121582 8.927456855773926 8.101273536682129 C 9.532356262207031 8.116603851318359 10.05602645874023 8.320234298706055 10.66217708587646 8.555793762207031 L 10.99962615966797 8.686014175415039 C 11.15210628509521 8.743474006652832 11.4982967376709 8.864124298095703 11.49954700469971 8.864753723144531 C 11.5426664352417 8.880073547363281 11.58828639984131 8.887733459472656 11.63514614105225 8.887733459472656 L 11.76387691497803 8.887733459472656 C 11.77324676513672 8.885824203491211 11.78262615203857 8.885184288024902 11.79012680053711 8.884544372558594 C 11.79262638092041 8.884544372558594 11.80511665344238 8.884544372558594 11.80887699127197 8.885184288024902 C 11.81824684143066 8.885184288024902 11.82636642456055 8.88646411895752 11.83386707305908 8.887733459472656 L 11.96197700500488 8.887733459472656 C 12.00821685791016 8.887733459472656 12.05383682250977 8.880073547363281 12.09820652008057 8.864124298095703 C 12.10194683074951 8.86284351348877 12.44814682006836 8.742834091186523 12.59687614440918 8.686654090881348 L 12.93869686126709 8.555153846740723 C 13.54421615600586 8.318953514099121 14.0672664642334 8.115954399108887 14.66904640197754 8.101273536682129 C 15.20958518981934 8.089235305786133 15.76615619659424 8.21012020111084 16.27566719055176 8.456203460693359 C 16.50125694274902 8.564723968505859 16.69247627258301 8.683464050292969 16.85807609558105 8.818794250488281 C 16.86994743347168 8.827733993530273 16.88181686401367 8.83730411529541 16.89494705200195 8.844964027404785 C 16.9086856842041 8.853903770446777 18.24472618103027 9.709314346313477 18.58905601501465 11.3588342666626 C 18.6334171295166 11.52417373657227 19.27581596374512 14.06740379333496 18.05975723266602 16.82896423339844 C 18.00976753234863 16.96046447753906 17.95102691650391 17.10282325744629 17.87416648864746 17.27518463134766 C 17.45547676086426 18.21548461914062 16.96555709838867 19.03897476196289 16.41814613342285 19.72202301025391 C 16.01383590698242 20.22633361816406 15.63514614105225 20.61126327514648 15.09460639953613 20.85128402709961 C 14.77152633666992 20.99555397033691 14.53781700134277 21.09961318969727 14.260986328125 21.09961318969727 Z" stroke="none" fill="#000"/></g><path d="M16.026,7.035a2.771,2.771,0,0,1,2-3.5" transform="translate(-8.693 -3.501)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M20.1,12.249s2.075,1.039,2,3" transform="translate(-10.769 -6.715)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(12 13.334) rotate(180)"><path d="M11,6,5.5,0,0,6" transform="translate(-1.5 -2.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(4 -2.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 12) rotate(-90)"><path d="M11,6,5.5,0,0,6" transform="translate(-1.5 -2.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(4 -2.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(16 2.5) rotate(90)"><path d="M-725.49,73l-5.5-6-5.5,6" transform="translate(736.491 -66.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(5.501 0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.5)"><path d="M-725.49,73l-5.5-6-5.5,6" transform="translate(736.491 -66.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="15" transform="translate(5.501 0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.207" height="16.202" viewBox="0 0 16.207 16.202"><g transform="translate(0 0.202)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><path d="M-475.375,74.032l-7.091,6.688a4.832,4.832,0,0,1-6.552,0,4.2,4.2,0,0,1,0-6.179l7.092-6.689a3.223,3.223,0,0,1,4.368,0,2.8,2.8,0,0,1,0,4.119l-7.1,6.688a1.609,1.609,0,0,1-2.183,0,1.4,1.4,0,0,1,0-2.059l6.551-6.172" transform="translate(490.375 -67)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.207" viewBox="0 0 16 16.207"><g transform="translate(0 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2)"><path d="M0,0,2,2,4,0" transform="translate(10.5 -1.5) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-53.833,68.915h-2.5a1.568,1.568,0,0,0-1.25.417A1.569,1.569,0,0,0-58,70.582v6.667a1.571,1.571,0,0,0,.417,1.25,1.568,1.568,0,0,0,1.25.417h11.667a1.568,1.568,0,0,0,1.25-.417A1.568,1.568,0,0,0-43,77.248V70.582a1.568,1.568,0,0,0-.417-1.25,1.568,1.568,0,0,0-1.25-.417h-2.5" transform="translate(56.5 -68.414)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(55.101 -73.416)" fill="none" stroke-miterlimit="10"><path d="M-51.624,84.416h5.043l.431,1.062a.7.7,0,0,1-.679.938h-4.543a.7.7,0,0,1-.68-.936Z" stroke="none"/><path d="M -51.62363815307617 84.41600799560547 L -46.58088684082031 84.41600799560547 L -46.14959716796875 85.47846984863281 C -45.96616744995117 85.93022918701172 -46.31779861450195 86.41600799560547 -46.82875823974609 86.41600799560547 L -51.37184906005859 86.41600799560547 C -51.88182830810547 86.41600799560547 -52.23344802856445 85.93209075927734 -52.05198669433594 85.4803466796875 L -51.62363815307617 84.41600799560547 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.334)"><path d="M-296.033,87.573a1.949,1.949,0,0,0,2,1.894,1.949,1.949,0,0,0,2-1.894v-.106h-4Z" transform="translate(300.032 -75.802)"/><g transform="translate(303.673 -68.833)" stroke-miterlimit="10"><path d="M -291.4987182617188 79 L -292.5100708007812 79 L -293.0681762695312 79 L -301.6728515625 79 L -302.6728515625 79 L -303.8472290039062 79 C -304.0268859863281 79 -304.1730346679688 78.85713958740234 -304.1730346679688 78.68154907226562 C -304.1730346679688 78.60665130615234 -304.1457824707031 78.53497314453125 -304.0958862304688 78.47779846191406 C -304.0814514160156 78.46543121337891 -304.0670776367188 78.45291900634766 -304.0527038574219 78.44036865234375 L -304.016357421875 78.40885162353516 C -302.38232421875 77.00411224365234 -302.1728515625 75.04761505126953 -302.1728515625 73.5 L -302.1728515625 71.5 C -302.1728515625 69.71942901611328 -300.6119689941406 67.70323181152344 -298.8325805664062 67.18534851074219 L -298.822509765625 67.18243408203125 L -298.8125915527344 67.17908477783203 C -298.8083190917969 67.17767333984375 -298.2648620605469 66.99999237060547 -297.6012878417969 66.99999237060547 C -297.2536315917969 66.99999237060547 -296.9361877441406 67.04836273193359 -296.6578063964844 67.14374542236328 L -296.6402282714844 67.14976501464844 L -296.6222839355469 67.15446472167969 C -295.7676391601562 67.37804412841797 -294.89697265625 67.97749328613281 -294.2334899902344 68.79910278320312 C -293.5594482421875 69.63384246826172 -293.1728515625 70.61827850341797 -293.1728515625 71.5 L -293.1728515625 73.5 C -293.1728515625 76.44650268554688 -292.1880798339844 77.67091369628906 -291.3301696777344 78.40843200683594 L -291.2943725585938 78.43947601318359 C -291.2796325683594 78.45229339599609 -291.2649230957031 78.46509552001953 -291.2501831054688 78.47774505615234 C -291.2002868652344 78.53489685058594 -291.1730346679688 78.60659790039062 -291.1730346679688 78.68154907226562 C -291.1730346679688 78.85713958740234 -291.3191223144531 79 -291.4987182617188 79 Z" stroke="none"/><path d="M -297.6012878417969 67.49999237060547 C -298.1766967773438 67.49999237060547 -298.6528625488281 67.65291595458984 -298.6529235839844 67.65290069580078 L -298.6928405761719 67.66543579101562 C -300.2524719238281 68.11935424804688 -301.6728515625 69.94704437255859 -301.6728515625 71.5 L -301.6728515625 73.5 C -301.6728515625 75.05319213867188 -301.8749389648438 76.99569702148438 -303.379638671875 78.5 L -291.9664916992188 78.5 C -293.4706726074219 76.99653625488281 -293.6728515625 75.05354309082031 -293.6728515625 73.5 L -293.6728515625 71.5 C -293.6728515625 69.9000244140625 -295.1389770507812 68.05934143066406 -296.7488098144531 67.63818359375 L -296.7847595214844 67.6287841796875 L -296.8198547363281 67.61675262451172 C -297.0459594726562 67.53926849365234 -297.3088989257812 67.49999237060547 -297.6012878417969 67.49999237060547 M -297.6012878417969 66.49999237060547 C -297.2503356933594 66.49999237060547 -296.8670043945312 66.54352569580078 -296.4957275390625 66.67074584960938 C -294.52294921875 67.18684387207031 -292.6728515625 69.38286590576172 -292.6728515625 71.5 L -292.6728515625 73.5 C -292.6728515625 75.29393005371094 -292.347412109375 76.87459564208984 -291.0042114257812 78.02927398681641 C -290.9708251953125 78.05795288085938 -290.9379272460938 78.08724975585938 -290.904541015625 78.11529541015625 C -290.7615356445312 78.26190185546875 -290.6730346679688 78.46131896972656 -290.6730346679688 78.68154907226562 C -290.6730346679688 79.1337890625 -291.0429077148438 79.5 -291.4987182617188 79.5 L -303.8472290039062 79.5 C -304.3030395507812 79.5 -304.6730346679688 79.1337890625 -304.6730346679688 78.68154907226562 C -304.6730346679688 78.46131896972656 -304.58447265625 78.26190185546875 -304.4414672851562 78.11529541015625 C -304.4080200195312 78.08724975585938 -304.375244140625 78.05795288085938 -304.341796875 78.02927398681641 C -302.9986572265625 76.87459564208984 -302.6728515625 75.29393005371094 -302.6728515625 73.5 L -302.6728515625 71.5 C -302.6728515625 69.42715454101562 -300.8821411132812 67.26112365722656 -298.9722900390625 66.70526885986328 C -298.9722900390625 66.70526885986328 -298.3631896972656 66.49999237060547 -297.6012878417969 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 2.334)"><path d="M-296.033,87.573a1.949,1.949,0,0,0,2,1.894,1.949,1.949,0,0,0,2-1.894v-.106h-4Z" transform="translate(300.032 -75.802)"/><g transform="translate(303.673 -68.833)" fill="none" stroke-miterlimit="10"><path d="M-296.5,66.671a5.454,5.454,0,0,1,3.823,4.829v2A5.518,5.518,0,0,0-291,78.029l.1.086a.808.808,0,0,1,.232.566.822.822,0,0,1-.826.818h-12.349a.822.822,0,0,1-.826-.818.808.808,0,0,1,.232-.566l.1-.086a5.519,5.519,0,0,0,1.669-4.529v-2a5.471,5.471,0,0,1,3.7-4.795A4.359,4.359,0,0,1-296.5,66.671Z" stroke="none"/><path d="M -297.6012878417969 67.49999237060547 C -298.1766967773438 67.49999237060547 -298.6528625488281 67.65291595458984 -298.6529235839844 67.65290069580078 L -298.6928405761719 67.66543579101562 C -300.2524719238281 68.11935424804688 -301.6728515625 69.94704437255859 -301.6728515625 71.5 L -301.6728515625 73.5 C -301.6728515625 75.05319213867188 -301.8749389648438 76.99569702148438 -303.379638671875 78.5 L -291.9664916992188 78.5 C -293.4706726074219 76.99653625488281 -293.6728515625 75.05354309082031 -293.6728515625 73.5 L -293.6728515625 71.5 C -293.6728515625 69.9000244140625 -295.1389770507812 68.05934143066406 -296.7488098144531 67.63818359375 L -296.7847595214844 67.6287841796875 L -296.8198547363281 67.61675262451172 C -297.0459594726562 67.53926849365234 -297.3088989257812 67.49999237060547 -297.6012878417969 67.49999237060547 M -297.6012878417969 66.49999237060547 C -297.2503356933594 66.49999237060547 -296.8670043945312 66.54352569580078 -296.4957275390625 66.67074584960938 C -294.52294921875 67.18684387207031 -292.6728515625 69.38286590576172 -292.6728515625 71.5 L -292.6728515625 73.5 C -292.6728515625 75.29393005371094 -292.347412109375 76.87459564208984 -291.0042114257812 78.02927398681641 C -290.9708251953125 78.05795288085938 -290.9379272460938 78.08724975585938 -290.904541015625 78.11529541015625 C -290.7615356445312 78.26190185546875 -290.6730346679688 78.46131896972656 -290.6730346679688 78.68154907226562 C -290.6730346679688 79.1337890625 -291.0429077148438 79.5 -291.4987182617188 79.5 L -303.8472290039062 79.5 C -304.3030395507812 79.5 -304.6730346679688 79.1337890625 -304.6730346679688 78.68154907226562 C -304.6730346679688 78.46131896972656 -304.58447265625 78.26190185546875 -304.4414672851562 78.11529541015625 C -304.4080200195312 78.08724975585938 -304.375244140625 78.05795288085938 -304.341796875 78.02927398681641 C -302.9986572265625 76.87459564208984 -302.6728515625 75.29393005371094 -302.6728515625 73.5 L -302.6728515625 71.5 C -302.6728515625 69.42715454101562 -300.8821411132812 67.26112365722656 -298.9722900390625 66.70526885986328 C -298.9722900390625 66.70526885986328 -298.3631896972656 66.49999237060547 -297.6012878417969 66.49999237060547 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.5 1.301)"><path d="M319.6,70h6.722a3.772,3.772,0,0,1,0,7.5H319.6Z" transform="translate(-319.6 -70.801)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M319.6,78h7.615a3.77,3.77,0,0,1,0,7.5H319.6Z" transform="translate(-319.6 -71.301)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4.667 2)"><g transform="translate(299.333 -68.233)" stroke-miterlimit="10"><path d="M -293 79.9810791015625 L -295.1638793945312 77.62306976318359 C -295.3768920898438 77.38973999023438 -295.6824035644531 77.25482940673828 -296.0003356933594 77.25482940673828 C -296.318359375 77.25482940673828 -296.6239013671875 77.38978576660156 -296.8386535644531 77.62510681152344 L -299 79.98079681396484 L -299 67.59067535400391 C -299 67.39345550537109 -298.8513793945312 67.23300933837891 -298.6686706542969 67.23300933837891 L -293.3313293457031 67.23300933837891 C -293.1486206054688 67.23300933837891 -293 67.39345550537109 -293 67.59067535400391 L -293 79.9810791015625 Z" stroke="none"/><path d="M -298 68.23300933837891 L -298 77.41169738769531 L -297.5736999511719 76.94707489013672 L -297.5736999511719 76.94708251953125 C -297.1701354980469 76.50706481933594 -296.5970153808594 76.25482940673828 -296.0003356933594 76.25482940673828 C -295.4021606445312 76.25482940673828 -294.8275146484375 76.50843048095703 -294.4270935058594 76.94693756103516 L -294 77.412353515625 L -294 68.23300933837891 L -298 68.23300933837891 M -298.6686706542969 66.23300933837891 L -293.3313293457031 66.23300933837891 C -292.5960083007812 66.23300933837891 -292 66.84080505371094 -292 67.59067535400391 L -292 82.02552032470703 C -292.0000305175781 82.21319580078125 -292.2254333496094 82.30421447753906 -292.3513488769531 82.16693115234375 L -295.9006652832031 78.29920196533203 C -295.9547119140625 78.23999786376953 -296.0460815429688 78.24005889892578 -296.1000061035156 78.29920196533203 L -299.6486511230469 82.16693115234375 C -299.774658203125 82.30426025390625 -300 82.21317291259766 -300 82.02552032470703 L -300 67.59067535400391 C -300 66.84080505371094 -299.4040222167969 66.23300933837891 -298.6686706542969 66.23300933837891 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4)"><g transform="translate(300 -66.233)" fill="none" stroke-miterlimit="10"><path d="M-300,67.591V82.026a.2.2,0,0,0,.351.141L-296.1,78.3a.134.134,0,0,1,.2,0l3.549,3.868a.2.2,0,0,0,.351-.141V67.591a1.345,1.345,0,0,0-1.331-1.358h-5.337A1.345,1.345,0,0,0-300,67.591Z" stroke="none"/><path d="M -298.668701171875 67.23300933837891 C -298.8513793945312 67.23300933837891 -299 67.39345550537109 -299 67.59067535400391 L -299 79.98077392578125 L -296.8387145996094 77.62516784667969 C -296.6239624023438 77.38980865478516 -296.3183898925781 77.25482940673828 -296.0003356933594 77.25482940673828 C -295.6824340820312 77.25482940673828 -295.3769226074219 77.38971710205078 -295.1638488769531 77.62307739257812 L -293 79.98108673095703 L -293 67.59067535400391 C -293 67.39345550537109 -293.1486206054688 67.23300933837891 -293.331298828125 67.23300933837891 L -298.668701171875 67.23300933837891 M -298.668701171875 66.23300933837891 L -293.331298828125 66.23300933837891 C -292.5960083007812 66.23300933837891 -292 66.84080505371094 -292 67.59067535400391 L -292 82.02552032470703 C -292 82.21314239501953 -292.2253112792969 82.30426788330078 -292.3513793945312 82.16693878173828 L -295.900634765625 78.29920196533203 C -295.9546508789062 78.24002838134766 -296.0460510253906 78.24002838134766 -296.1000061035156 78.29920196533203 L -299.648681640625 82.16693878173828 C -299.774658203125 82.30422973632812 -300 82.21319580078125 -300 82.02552032470703 L -300 67.59067535400391 C -300 66.84080505371094 -299.404052734375 66.23300933837891 -298.668701171875 66.23300933837891 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><g transform="translate(0 0.001)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-2 -2.627)"><line x2="15" transform="translate(2.5 18.127)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M13.125,5.126v-2h-5v2" transform="translate(-0.625)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="2" transform="translate(10 15.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M0,0H1" transform="translate(7 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(7 10.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(12 7.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="1" transform="translate(12 10.627)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(4 4.627)" fill="none" stroke="#000" stroke-width="1"><path d="M2,0h8a2,2,0,0,1,2,2V14a0,0,0,0,1,0,0H0a0,0,0,0,1,0,0V2A2,2,0,0,1,2,0Z" stroke="none"/><path d="M2,.5h8A1.5,1.5,0,0,1,11.5,2V13.5a0,0,0,0,1,0,0H.5a0,0,0,0,1,0,0V2A1.5,1.5,0,0,1,2,.5Z" fill="none"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 4.166)"><line x2="5" transform="translate(3.5 7.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="10" transform="translate(3.5 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" transform="translate(3.5 -0.167)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-2 -1.667)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><g transform="translate(-2 2.333)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><g transform="translate(-2 6.333)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 0.167)"><line y2="2" transform="translate(5.167 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="2" transform="translate(12.167 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="14" transform="translate(1.667 5.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(4.167 8.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(11.167 8.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(4.167 12.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(11.167 12.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(0.667 0.833)" fill="none" stroke="#000" stroke-width="1"><rect width="16" height="15" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="14" rx="1.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-1 1.5)"><path d="M13163.5,18685h-9.882l1-1h8.883c.747,0,1-.252,1-1v-7c0-.713-.231-.975-.884-1l.84-.84a1.8,1.8,0,0,1,1.043,1.838v7A1.789,1.789,0,0,1,13163.5,18685Zm-13.547-.576v0a2.083,2.083,0,0,1-.451-1.426v-7a1.789,1.789,0,0,1,2-2h1l1-1h4l1,1h1.88l-1,1h-1.29l-1-1h-3.17l-1,1h-1.417c-.747,0-1,.252-1,1v7a1.2,1.2,0,0,0,.164.719l-.709.707Z" transform="translate(-13148.5 -18672.5)"/><path d="M13156.731,18681.891h0l1.662-1.664A2.494,2.494,0,0,1,13156.731,18681.891Zm-2.968-1.275v0a2.468,2.468,0,0,1-.262-1.113,2.5,2.5,0,0,1,3.615-2.236l-.775.775a1.488,1.488,0,0,0-.34-.041,1.5,1.5,0,0,0-1.5,1.5,1.457,1.457,0,0,0,.039.34l-.774.773Z" transform="translate(-13148.5 -18672.5)"/><line y1="14" x2="14" transform="translate(2 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-1 1.5)"><g transform="translate(-251 -6.281)" fill="none" stroke-miterlimit="10"><path d="M266,7.781h-5l-1-1h-4l-1,1h-1a1.8,1.8,0,0,0-2,2v7a1.794,1.794,0,0,0,2,2h12a1.8,1.8,0,0,0,2-2v-7A1.8,1.8,0,0,0,266,7.781Z" stroke="none"/><path d="M 256.4142150878906 7.78125 L 255.4142150878906 8.78125 L 254 8.78125 C 253.2523498535156 8.78125 253 9.033590316772461 253 9.78125 L 253 16.78125 C 253 17.52890968322754 253.2523498535156 17.78125 254 17.78125 L 266 17.78125 C 266.7476806640625 17.78125 267 17.52890968322754 267 16.78125 L 267 9.78125 C 267 9.033590316772461 266.7476806640625 8.78125 266 8.78125 L 260.5857849121094 8.78125 L 259.5857849121094 7.78125 L 256.4142150878906 7.78125 M 256 6.78125 L 260 6.78125 L 261 7.78125 L 266 7.78125 C 267.2962341308594 7.78125 268 8.476490020751953 268 9.78125 L 268 16.78125 C 268 18.08267974853516 267.2978515625 18.78125 266 18.78125 L 254 18.78125 C 252.6979370117188 18.78125 252 18.08216094970703 252 16.78125 L 252 9.78125 C 252 8.484369277954102 252.7000732421875 7.78125 254 7.78125 L 255 7.78125 L 256 6.78125 Z" stroke="none" fill="#000"/></g><g transform="translate(5 4.501)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 1.334)"><g transform="translate(-0.667 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><path d="M2,0h9a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H2a2,2,0,0,1-2-2V2A2,2,0,0,1,2,0Z" stroke="none"/><path d="M2,.5h9a.5.5,0,0,1,.5.5V15a.5.5,0,0,1-.5.5H2A1.5,1.5,0,0,1,.5,14V2A1.5,1.5,0,0,1,2,.5Z" fill="none"/></g><line x2="5" transform="translate(2.833 7.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="3" transform="translate(2.833 10.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="10" transform="translate(0.333 3.166)" fill="none" stroke="#000" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(1.374 0.545)"><path d="M204.9,447.9a4.5,4.5,0,1,1-4.5,4.5,4.5,4.5,0,0,1,4.5-4.5Z" transform="translate(-198.273 -447.946)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="1"/><path d="M205.057,451.061a1.5,1.5,0,1,1-1.5,1.5,1.5,1.5,0,0,1,1.5-1.5Z" transform="translate(-198.431 -448.106)" fill="none" stroke="#000" stroke-miterlimit="22.926" stroke-width="1"/><path d="M201.543,456.352l-3,4,2.3.5.7,2.5,3.5-4,3.5,4,.693-2.5,2.3-.5-3-4" transform="translate(-198.417 -448.396)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(0.5 2.498)"><path d="M12851,24049h-1.5a4.5,4.5,0,0,1,0-9h6a4.118,4.118,0,0,1,4.5,4.5,4.281,4.281,0,0,1-4.5,4.5l-1.5,3Z" transform="translate(-12845.005 -24039.994)" fill="none" stroke="#000" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 -0.666)"><path d="M70.5,1.935,71.728.891a.78.78,0,0,1,1.264.43l.407,1.6a.8.8,0,0,0,.807.614l1.581-.089A.822.822,0,0,1,76.57,4.57L76,6.116a.849.849,0,0,0,.308.993l1.329.9a.849.849,0,0,1,0,1.39l-1.329.9a.849.849,0,0,0-.308.993l.57,1.546a.822.822,0,0,1-.781,1.125l-1.581-.089a.8.8,0,0,0-.807.614l-.407,1.6a.78.78,0,0,1-1.264.43L70.5,15.474a.764.764,0,0,0-1,0l-1.229,1.044a.78.78,0,0,1-1.264-.43l-.407-1.6a.8.8,0,0,0-.807-.614l-1.581.089a.822.822,0,0,1-.781-1.125L64,11.293a.849.849,0,0,0-.308-.993l-1.329-.9a.849.849,0,0,1,0-1.39l1.329-.9A.849.849,0,0,0,64,6.116l-.57-1.546a.822.822,0,0,1,.781-1.125l1.581.089a.8.8,0,0,0,.807-.614l.407-1.6a.78.78,0,0,1,1.264-.43L69.5,1.935A.764.764,0,0,0,70.5,1.935Z" transform="translate(-61.333 -0.038)"/><path d="M11.244,18.273l2.5,2.5,4.5-4.45" transform="translate(-6.077 -10.107)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M10.458,16.773l3,3,6-6" transform="translate(-7.291 -8.607)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1 3.1)"><path d="M-426,79.9l4,4,9-9" transform="translate(426.497 -74.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="16" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="15" height="15" rx="2.5" fill="none"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M11,13.5l3.5,3,3.5-3" transform="translate(-6.833 -6.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 5.5)"><path d="M6,0,0,6.5,6,13" transform="translate(0 6) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M202.5,11l-3,3.5,3,3.5" transform="translate(-193.334 -6.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(7 5)"><path d="M132-49l-6,6.5,6,6.5" transform="translate(-127.5 45.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.333 0.334)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M-420.479,72.942l2.86,3.583-3,3.417" transform="translate(426.786 -68.776)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0 16) rotate(-90)" fill="#fff" opacity="0"/><g transform="translate(5.5 14.5) rotate(-90)"><path d="M0,0,6.5,6,13,0" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><g transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><path d="M-609,78.5l3.5-3,3.5,3" transform="translate(612.167 -70.335)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.5 5.5)"><path d="M6,0,0,6.5,6,13" transform="translate(13) rotate(90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 1.334)"><line x2="13" transform="translate(-0.5 6.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="13" transform="translate(-0.5 14.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(2)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g><g transform="translate(5 8)"><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(-1 5.667) rotate(-90)" fill="none" stroke="#000" stroke-width="1"/><g transform="translate(-23 -15.013)" fill="none" stroke-miterlimit="10"><path d="M22,16.679a2,2,0,1,1,.586,1.414A2,2,0,0,1,22,16.679Z" stroke="none"/><path d="M 24.00000381469727 15.67900276184082 C 23.7330436706543 15.67900276184082 23.48165321350098 15.78308296203613 23.2940845489502 15.97013282775879 C 23.10444450378418 16.16030311584473 23.00000381469727 16.41204261779785 23.00000381469727 16.67900276184082 C 23.00000381469727 16.9453125 23.10444450378418 17.19670295715332 23.29213333129883 17.38492202758789 C 23.48230361938477 17.57456207275391 23.73369407653809 17.67900276184082 24.00000381469727 17.67900276184082 C 24.26631355285645 17.67900276184082 24.51770401000977 17.57456207275391 24.70688438415527 17.38589286804199 C 24.89590454101562 17.19687271118164 25.00000381469727 16.94583320617676 25.00000381469727 16.67900276184082 C 25.00000381469727 16.41153335571289 24.89590454101562 16.16013336181641 24.70785331726074 15.97207260131836 C 24.51834297180176 15.78308296203613 24.26696395874023 15.67900276184082 24.00000381469727 15.67900276184082 M 24.00000381469727 14.67900276184082 C 24.55300331115723 14.67900276184082 25.05100440979004 14.90200233459473 25.41399383544922 15.26400184631348 C 25.7769947052002 15.62700271606445 26.00000381469727 16.12600326538086 26.00000381469727 16.67900276184082 C 26.00000381469727 17.23200225830078 25.7769947052002 17.73000335693359 25.41399383544922 18.09300231933594 C 25.05100440979004 18.45500183105469 24.55300331115723 18.67900276184082 24.00000381469727 18.67900276184082 C 23.4470043182373 18.67900276184082 22.94900321960449 18.45500183105469 22.58600425720215 18.09300231933594 C 22.2240047454834 17.73000335693359 22.00000381469727 17.23200225830078 22.00000381469727 16.67900276184082 C 22.00000381469727 16.12600326538086 22.2240047454834 15.62700271606445 22.58600425720215 15.26400184631348 C 22.94900321960449 14.90200233459473 23.4470043182373 14.67900276184082 24.00000381469727 14.67900276184082 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" opacity="0"/><circle cx="8" cy="8" r="8" stroke="#000" stroke-width="1"/><g transform="translate(5.333 5.333)"><line y1="6" x2="6" transform="translate(-0.333 -0.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="6" y2="6" transform="translate(-0.333 -0.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><rect width="7" height="10" transform="translate(0.333 0.334)" fill="none"/><path d="M12797.21,17008.336h-9.876a.5.5,0,0,1,0-1h10.876l-1,1Z" transform="translate(-12788.5 -17008.5)"/><path d="M0,3.5A.5.5,0,0,1-.5,3V0A.5.5,0,0,1,0-.5.5.5,0,0,1,.5,0V3A.5.5,0,0,1,0,3.5Z" transform="translate(-1.167 -2.166)"/><line x1="3" transform="translate(3.833 12.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M12793.832,17021.836a.549.549,0,0,1-.5-.586v-4.793l1-1v5.793A.549.549,0,0,1,12793.832,17021.836Zm-.5-9.623v-3.8a.506.506,0,1,1,1,0v2.8l-1,1Z" transform="translate(-12788.5 -17008.5)"/><line y1="14" x2="14" transform="translate(-1.667 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 -0.666)"><g transform="translate(0.667 0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g><g transform="translate(5.499 5.501)"><line y1="7" x2="7" transform="translate(-0.332 -0.336)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="7" y2="7" transform="translate(-0.332 -0.336)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(4 4)"><line y1="8" x2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="8" y2="8" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.414" height="16.414" viewBox="0 0 16.414 16.414"><g transform="translate(0.207 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.5 0.5)"><line y1="15" x2="15" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="15" y2="15" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><g transform="translate(0.5 0.5)"><rect width="16" height="16" fill="#fff" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1" opacity="0"/><g transform="translate(-0.349 -1.213)"><g transform="translate(1.349 5.213)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"><path d="M.686,0h9.628A.686.686,0,0,1,11,.686V3.5A5.5,5.5,0,0,1,5.5,9h0A5.5,5.5,0,0,1,0,3.5V.686A.686.686,0,0,1,.686,0Z" stroke="none"/><path d="M.832.5h9.336A.332.332,0,0,1,10.5.832V3.5a5,5,0,0,1-5,5h0a5,5,0,0,1-5-5V.832A.332.332,0,0,1,.832.5Z" fill="none"/></g><g transform="translate(11.349 11.213) rotate(-90)" fill="none" stroke="#000" stroke-width="1"><path d="M0,0H6A0,0,0,0,1,6,0V1A3,3,0,0,1,3,4H3A3,3,0,0,1,0,1V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M.5.5h5a0,0,0,0,1,0,0V1A2.5,2.5,0,0,1,3,3.5H3A2.5,2.5,0,0,1,.5,1V.5A0,0,0,0,1,.5.5Z" fill="none"/></g><line x2="15" transform="translate(0.849 14.713)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="2" transform="translate(2.849 2.213)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y1="2" transform="translate(6.849 2.213)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y1="2" transform="translate(10.849 2.213)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="red"/><stop offset="0.148" stop-color="#ff9d00"/><stop offset="0.32" stop-color="#ffe200"/><stop offset="0.493" stop-color="#00ff27"/><stop offset="0.66" stop-color="blue"/><stop offset="0.833" stop-color="#f0f"/><stop offset="1" stop-color="red"/></radialGradient></defs><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.651 0.652)"><g transform="translate(-0.651 -0.652)" stroke="#fff" stroke-width="1" fill="url(#a)"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.001 4)"><path d="M1286.177,6.648V4.109a5.5,5.5,0,0,0-11,0v1.2" transform="translate(-1273.677 -2.147)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1288.25,8.8v2.471a5.592,5.592,0,0,1-1,3.529" transform="translate(-1277.752 -7.299)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1279.529,1.43c0,1.733,6.184,3.375,8.5,3.5" transform="translate(-1276.031 -3.429)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1279.58,4.471a5.4,5.4,0,0,0-2,3.556v.889a4.306,4.306,0,0,0,2,3.556" transform="translate(-1274.081 -4.471)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1286.128,18.705h.375c1.995.011,3.618-2.156,3.625-4.837,0-.055,0-.109,0-.164" transform="translate(-1277.63 -8.206)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1293.193,8.08h-1v4h1a.95.95,0,0,0,1-.889V8.968A.951.951,0,0,0,1293.193,8.08Z" transform="translate(-1279.694 -5.58)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M1273.685,8.08h1v4h-1a.949.949,0,0,1-1-.887V8.97a.949.949,0,0,1,1-.89h0Z" transform="translate(-1273.186 -5.582)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(5.999 9)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 1.334)"><g transform="translate(0.667 -1.333)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="10" height="14" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="9" height="13" rx="1.5" fill="none"/></g><path d="M9.5,18.5H4c-1.1,0-1.5-.4-1.5-1.5V8.5" transform="translate(-3.333 -4.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0 1.775)"><g transform="translate(53 -7.438)" fill="none" stroke-miterlimit="10"><path d="M-37.272,11.679l-7.49-3.957a.51.51,0,0,0-.476,0l-7.49,3.957a.509.509,0,0,0,0,.9L-50,14.072v3.592a1.8,1.8,0,0,0,2,2h6a1.8,1.8,0,0,0,2-2V14.072l2.728-1.493A.509.509,0,0,0-37.272,11.679Z" stroke="none"/><path d="M -45.00037002563477 8.726720809936523 L -51.45432662963867 12.13645839691162 L -49.00000381469727 13.47955322265625 L -49.00000381469727 17.6640625 C -49.00000381469727 18.41172409057617 -48.74766540527344 18.6640625 -48.00000381469727 18.6640625 L -42.00000381469727 18.6640625 C -41.25234222412109 18.6640625 -41.00000381469727 18.41172409057617 -41.00000381469727 17.6640625 L -41.00000381469727 13.47963333129883 L -38.54629516601562 12.13652324676514 L -45.00037002563477 8.726720809936523 M -45.00037002563477 7.662500381469727 C -44.91853713989258 7.662500381469727 -44.83670806884766 7.682157516479492 -44.76237487792969 7.721473693847656 L -37.2719841003418 11.67878246307373 C -36.91000366210938 11.87002277374268 -36.91000366210938 12.38776302337646 -37.2719841003418 12.57899284362793 L -40.00000381469727 14.07226276397705 L -40.00000381469727 17.6640625 C -40.00000381469727 18.96406173706055 -40.70000457763672 19.6640625 -42.00000381469727 19.6640625 L -48.00000381469727 19.6640625 C -49.29507446289062 19.6640625 -50.00000381469727 18.96878242492676 -50.00000381469727 17.6640625 L -50.00000381469727 14.07226276397705 L -52.72875213623047 12.57899284362793 C -53.09074401855469 12.38776302337646 -53.09074401855469 11.87002277374268 -52.72875213623047 11.67878246307373 L -45.23836517333984 7.721473693847656 C -45.16402816772461 7.682157516479492 -45.08219909667969 7.662500381469727 -45.00037002563477 7.662500381469727 Z" stroke="none" fill="#000"/></g><g transform="translate(53 -7.436)" fill="none" stroke-miterlimit="10"><path d="M-45.238,16.6l-7.49-3.987a.514.514,0,0,1,0-.907l7.49-3.987a.506.506,0,0,1,.476,0l7.49,3.987a.514.514,0,0,1,0,.907l-7.49,3.987A.506.506,0,0,1-45.238,16.6Z" stroke="none"/><path d="M -45.0003662109375 15.59692192077637 L -38.54824829101562 12.16250038146973 L -45.00037002563477 8.728068351745605 L -51.45248031616211 12.16250419616699 L -45.0003662109375 15.59692192077637 M -45.00037002563477 16.66250228881836 C -45.08219909667969 16.66250228881836 -45.16402816772461 16.6426944732666 -45.23836517333984 16.60308074951172 L -52.72875213623047 12.61599063873291 C -53.09074401855469 12.42331027984619 -53.09074401855469 11.90167999267578 -52.72875213623047 11.70901012420654 L -45.23836517333984 7.72191047668457 C -45.08968353271484 7.642688751220703 -44.91103363037109 7.642692089080811 -44.76237487792969 7.72191047668457 L -37.2719841003418 11.70901012420654 C -36.91000366210938 11.90167999267578 -36.91000366210938 12.42331027984619 -37.2719841003418 12.61599063873291 L -44.76237487792969 16.60308074951172 C -44.83670806884766 16.6426944732666 -44.91853713989258 16.66250228881836 -45.00037002563477 16.66250228881836 Z" stroke="none" fill="#000"/></g><rect width="1" height="5" rx="0.5" transform="translate(15 4.226)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 -0.4)"><g transform="translate(0.333 0.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="6" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="0.5" fill="none"/></g><g transform="translate(8.333 10.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="6" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="0.5" fill="none"/></g><g transform="translate(8.333 0.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="9" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="8" rx="0.5" fill="none"/></g><g transform="translate(0.333 7.4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="6" height="9" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="5" height="8" rx="0.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.667 2.666)"><path d="M135.648,24.4l3,3,3-3" transform="translate(-133.315 -18.564)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="10" transform="translate(5.333 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M16-3V0H1V-3" transform="translate(-3.167 11.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(5.333 0.166)"><line y2="15" transform="translate(5.667 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="15" transform="translate(2.667 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="15" transform="translate(-0.333 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" transform="translate(0 0.002)" fill="#fff" opacity="0"/><g transform="translate(-0.157 -1.154)"><g transform="translate(-12908 -20860)" fill="rgba(0,0,0,0)" stroke-miterlimit="10"><path d="M 12917.154296875 20876.65625 L 12910.1552734375 20876.65625 C 12909.330078125 20876.65625 12908.658203125 20875.982421875 12908.658203125 20875.154296875 L 12908.658203125 20868.154296875 C 12908.658203125 20867.328125 12909.330078125 20866.654296875 12910.1552734375 20866.654296875 L 12913.1572265625 20866.654296875 L 12913.6572265625 20866.654296875 L 12913.6572265625 20866.154296875 L 12913.6572265625 20863.15625 C 12913.6572265625 20862.328125 12914.330078125 20861.654296875 12915.158203125 20861.654296875 L 12922.158203125 20861.654296875 C 12922.9833984375 20861.654296875 12923.654296875 20862.328125 12923.654296875 20863.15625 L 12923.654296875 20870.15625 C 12923.654296875 20870.984375 12922.9833984375 20871.658203125 12922.158203125 20871.658203125 L 12919.15625 20871.658203125 L 12918.65625 20871.658203125 L 12918.65625 20872.158203125 L 12918.65625 20875.154296875 C 12918.65625 20875.982421875 12917.982421875 20876.65625 12917.154296875 20876.65625 Z" stroke="none"/><path d="M 12917.154296875 20876.15625 C 12917.70703125 20876.15625 12918.15625 20875.70703125 12918.15625 20875.154296875 L 12918.15625 20871.158203125 L 12922.158203125 20871.158203125 C 12922.70703125 20871.158203125 12923.154296875 20870.708984375 12923.154296875 20870.15625 L 12923.154296875 20863.15625 C 12923.154296875 20862.603515625 12922.70703125 20862.154296875 12922.158203125 20862.154296875 L 12915.158203125 20862.154296875 C 12914.6064453125 20862.154296875 12914.1572265625 20862.603515625 12914.1572265625 20863.15625 L 12914.1572265625 20867.154296875 L 12910.1552734375 20867.154296875 C 12909.60546875 20867.154296875 12909.158203125 20867.603515625 12909.158203125 20868.154296875 L 12909.158203125 20875.154296875 C 12909.158203125 20875.70703125 12909.60546875 20876.15625 12910.1552734375 20876.15625 L 12917.154296875 20876.15625 M 12917.154296875 20877.15625 L 12910.1552734375 20877.15625 C 12909.0546875 20877.15625 12908.158203125 20876.259765625 12908.158203125 20875.154296875 L 12908.158203125 20868.154296875 C 12908.158203125 20867.048828125 12909.0546875 20866.154296875 12910.1552734375 20866.154296875 L 12913.1572265625 20866.154296875 L 12913.1572265625 20863.15625 C 12913.1572265625 20862.05078125 12914.052734375 20861.154296875 12915.158203125 20861.154296875 L 12922.158203125 20861.154296875 C 12923.263671875 20861.154296875 12924.154296875 20862.05078125 12924.154296875 20863.15625 L 12924.154296875 20870.15625 C 12924.154296875 20871.26171875 12923.263671875 20872.158203125 12922.158203125 20872.158203125 L 12919.15625 20872.158203125 L 12919.15625 20875.154296875 C 12919.15625 20876.259765625 12918.2607421875 20877.15625 12917.154296875 20877.15625 Z" stroke="none" fill="#000"/></g><g transform="translate(5.157 1.156)" fill="rgba(0,0,0,0)" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="11" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="10" height="10" rx="1.5" fill="none"/></g><g transform="translate(9.03 4.283)"><line x2="4" transform="translate(-0.373 2.373)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="4" transform="translate(1.627 0.373)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.011" viewBox="0 0 16 16.011"><rect width="16" height="16" transform="translate(0 0.011)" fill="#fff" opacity="0"/><g transform="translate(0 0.011)"><line x2="3" y2="3" transform="translate(10 3)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><line x2="4" y2="4" transform="translate(2 10)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(180.729 -66.831)" fill="none" stroke-miterlimit="10"><path d="M-166.873,67.546l1.414,1.414a1.719,1.719,0,0,1,.132,2.7l-9.45,9.45a1.174,1.174,0,0,1-.683.334l-4.206,1.193a.793.793,0,0,1-.86-.861l1.215-4.274a1.173,1.173,0,0,1,.336-.68l9.406-9.406a1.716,1.716,0,0,1,2.7.132Z" stroke="none"/><path d="M -168.3228149414062 67.82054901123047 C -168.5205383300781 67.82054901123047 -168.7257385253906 67.98423767089844 -168.8630523681641 68.12155914306641 L -178.2751312255859 77.53357696533203 C -178.3054504394531 77.56334686279297 -178.317138671875 77.60749816894531 -178.3215942382812 77.63928985595703 L -178.3311767578125 77.70747375488281 L -179.4166259765625 81.52448272705078 L -175.6658935546875 80.46072387695312 L -175.5963745117188 80.45118713378906 C -175.5641479492188 80.44676971435547 -175.5195465087891 80.43524169921875 -175.4901123046875 80.40538024902344 L -175.4851226806641 80.40035247802734 L -166.0346374511719 70.94998168945312 C -165.7197723388672 70.63512420654297 -165.5123443603516 70.32128143310547 -166.1662292480469 69.66738128662109 L -167.5804901123047 68.25315093994141 C -167.8594512939453 67.97418212890625 -168.1230773925781 67.82054901123047 -168.3228149414062 67.82054901123047 M -168.3228149414062 66.82054901123047 C -167.8462066650391 66.82054901123047 -167.3568267822266 67.06258392333984 -166.8733673095703 67.54605865478516 L -166.8733520507812 67.54605865478516 L -165.4591369628906 68.96027374267578 C -164.5407257080078 69.87867736816406 -164.4969024658203 70.82646942138672 -165.3275299072266 71.65708923339844 L -174.7780151367188 81.10746002197266 C -174.9573059082031 81.28931427001953 -175.1948394775391 81.40548706054688 -175.4605407714844 81.44191741943359 L -179.6668090820312 82.63488006591797 C -180.1388549804688 82.69935607910156 -180.5934448242188 82.24393463134766 -180.5272979736328 81.77425384521484 L -179.3118743896484 77.50018310546875 C -179.2746124267578 77.23493194580078 -179.1574859619141 76.99857330322266 -178.9759216308594 76.82021331787109 L -169.5701599121094 67.41445159912109 C -169.174072265625 67.01837158203125 -168.753662109375 66.82054901123047 -168.3228149414062 66.82054901123047 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002" viewBox="0 0 16 16.002"><rect width="16" height="16" transform="translate(0 0.002)" fill="#fff" opacity="0"/><g transform="translate(1.334 1.334)"><g transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="16" height="11" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="10" rx="1.5" fill="none"/></g><line x2="13" transform="translate(0.167 13.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(1.667 11.666)" fill="none" stroke="#000" stroke-width="1"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1" fill="none"/></g><path d="M2.106,1.789a1,1,0,0,1,1.789,0L5.276,4.553A1,1,0,0,1,4.382,6H1.618A1,1,0,0,1,.724,4.553Z" transform="translate(10.666 1.166) rotate(90)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.667 2.001)"><g transform="translate(16.667 -0.001) rotate(90)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="12" height="16" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="11" height="15" rx="1.5" fill="none"/></g><path d="M377.771-362.477l7,4.5,7-4.5" transform="translate(-376.104 363.477)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="8" transform="translate(8.334 1.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="2" transform="translate(8.334 12.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.334 -0.334)"><line y2="5" transform="translate(8.333 3.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y2="1" transform="translate(8.333 11.833)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.667 2)"><g transform="translate(-1.667 -2)"><g transform="translate(-42.668 3.725)" fill="none" stroke-miterlimit="10"><path d="M45.668,12.029a.632.632,0,0,1-1,0,11.769,11.769,0,0,1-2-3.713V-2.347A1.4,1.4,0,0,1,44.1-3.725h2.141a1.4,1.4,0,0,1,1.43,1.378V8.317A11.769,11.769,0,0,1,45.668,12.029Z" stroke="none"/><path d="M 45.16794204711914 11.049485206604 C 45.77964019775391 10.20328521728516 46.56356048583984 8.69914436340332 46.66796493530273 8.26326847076416 L 46.66800308227539 -2.347212076187134 C 46.66800308227539 -2.555521965026855 46.47510528564453 -2.72500205039978 46.23799514770508 -2.72500205039978 L 44.09728240966797 -2.72500205039978 C 43.86057281494141 -2.72500205039978 43.66800308227539 -2.555521965026855 43.66800308227539 -2.347212076187134 L 43.66796493530273 8.263269424438477 C 43.77238464355469 8.699199676513672 44.55646896362305 10.20363521575928 45.16794204711914 11.049485206604 M 45.16769790649414 12.27500057220459 C 44.98974990844727 12.27500057220459 44.81189346313477 12.19308280944824 44.66796493530273 12.02924823760986 C 43.93225479125977 11.19075775146484 42.66796493530273 8.847098350524902 42.66796493530273 8.316557884216309 L 42.66800308227539 -2.347212076187134 C 42.66800308227539 -3.108351945877075 43.3079948425293 -3.72500205039978 44.09728240966797 -3.72500205039978 L 46.23799514770508 -3.72500205039978 C 47.02799224853516 -3.72500205039978 47.66800308227539 -3.108351945877075 47.66800308227539 -2.347212076187134 L 47.66796493530273 8.316557884216309 C 47.66796493530273 8.847098350524902 46.40368270874023 11.19075775146484 45.66796493530273 12.02924823760986 C 45.52367782592773 12.19308280944824 45.34564590454102 12.27500057220459 45.16769790649414 12.27500057220459 Z" stroke="none" fill="#000"/></g><line x2="3" transform="translate(1 4.014)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(5.333 0)"><g transform="translate(0 -2)" fill="none"><path d="M0,0H5V16H0Z" stroke="none"/><path d="M 1 1 L 1 15 L 4 15 L 4 1 L 1 1 M 0 0 L 5 0 L 5 16 L 0 16 L 0 0 Z" stroke="none" fill="#000"/></g><line x2="2" transform="translate(0.5 1.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 7.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="2" transform="translate(0.5 10.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.207" height="16.708" viewBox="0 0 16.207 16.708"><g transform="translate(0 0.207)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 0.668)"><path d="M-539,78.667v4a2.1,2.1,0,0,1-2,2h-10a2.1,2.1,0,0,1-2-2v-10a2.1,2.1,0,0,1,2-2h4" transform="translate(551.5 -69.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-538.333,67h4v4" transform="translate(547.833 -67.168)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="8" x2="8" transform="translate(5.5 -0.168)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2.666 3.332)"><line x2="7" transform="translate(1.834 3.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="4" transform="translate(1.834 6.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><path d="M-2871.324,225.505v-4h-4" transform="translate(2883.157 -223.339)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2875.273,239.905h4v-4" transform="translate(2883.108 -228.738)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2892.122,221.558h-4v4" transform="translate(2894.957 -223.392)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><path d="M-2896.071,235.958v4h4" transform="translate(2894.905 -228.791)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><circle cx="1.5" cy="1.5" r="1.5" transform="translate(10.334 9.666)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.002" height="16" viewBox="0 0 16.002 16"><rect width="16" height="16" transform="translate(0.001)" fill="#fff" opacity="0"/><g transform="translate(2.668 2.666)"><path d="M12793.834,21130.836a2.991,2.991,0,0,1-.779-.1l.9-.9a2,2,0,0,0,1.872-1.871l.9-.9a3,3,0,0,1-2.9,3.779Zm-2.9-2.225v0a2.923,2.923,0,0,1-.1-.775,3,3,0,0,1,3.776-2.9l-.9.9a2,2,0,0,0-1.869,1.869l-.9.9Z" transform="translate(-12788.5 -21122.5)" fill="#040405"/><path d="M12793.834,21132.836a10.545,10.545,0,0,1-2.576-.307l.843-.842a10.108,10.108,0,0,0,1.733.145,8.81,8.81,0,0,0,3.507-.668,6.782,6.782,0,0,0,2.8-2.232,5.814,5.814,0,0,0,.642-1.088,6.942,6.942,0,0,0-2.223-2.619l.717-.717a7.954,7.954,0,0,1,.864.742,7.439,7.439,0,0,1,1.665,2.445.378.378,0,0,1,.006.266,6.326,6.326,0,0,1-.859,1.564,7.846,7.846,0,0,1-3.215,2.557A9.822,9.822,0,0,1,12793.834,21132.836Zm-5.472-1.652v0a7.51,7.51,0,0,1-.887-.766,6.879,6.879,0,0,1-1.618-2.455.377.377,0,0,1,0-.266,6.847,6.847,0,0,1,.9-1.555,8.052,8.052,0,0,1,3.23-2.551,9.485,9.485,0,0,1,3.846-.754h.011a10.309,10.309,0,0,1,2.56.311l-.838.838a9.646,9.646,0,0,0-1.722-.15h-.011a8.581,8.581,0,0,0-3.448.668,7.056,7.056,0,0,0-2.827,2.238,1.662,1.662,0,0,0,.631,2.971,6.651,6.651,0,0,0,.9.754l-.717.717Z" transform="translate(-12788.5 -21122.5)"/><line y1="14" x2="14" transform="translate(-1.667 -1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17.003" height="16" viewBox="0 0 17.003 16"><g transform="translate(0.502)"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(0 2.001)"><path d="M20.48,13.363a7.364,7.364,0,0,0-1.669-2.445,8.014,8.014,0,0,0-2.457-1.665A9.537,9.537,0,0,0,12.5,8.5a9.534,9.534,0,0,0-3.85.753,8.021,8.021,0,0,0-3.23,2.553,6.641,6.641,0,0,0-.9,1.557.4.4,0,0,0,0,.264A7.005,7.005,0,0,0,6.146,16.08,7.817,7.817,0,0,0,8.6,17.747a9.738,9.738,0,0,0,3.9.753,9.738,9.738,0,0,0,3.9-.753,7.772,7.772,0,0,0,3.213-2.558,6.334,6.334,0,0,0,.861-1.562A.4.4,0,0,0,20.48,13.363Z" transform="translate(-4.504 -7.5)" fill="none" stroke="#000" stroke-width="1"/><circle cx="3" cy="3" r="3" transform="translate(5 3)" fill="none" stroke="#000" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" transform="translate(16 16) rotate(180)" fill="#fff" opacity="0"/><g transform="translate(0.5 1.5)"><rect width="3" height="8" rx="1" transform="translate(12 0)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M11.788,10.656h.749l-.059.4h-.69a.978.978,0,1,0,0,1.956h1.5l3.5-.013s-.918,3.612,1.3,4.8c1.424.686,1.7-.6,1.7-.6V14.5l1-.5s1.992-1.2,2-2.5v-6a1.314,1.314,0,0,0-1.5-1.5h-8a1.1,1.1,0,0,0-1.12.978.993.993,0,0,0,1,.978h.068l-.059.4h-.7a.978.978,0,1,0,0,1.955h.408l-.059.4H11.788a.978.978,0,1,0,0,1.956Z" transform="translate(-10.786 -3.997)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" transform="translate(0)" fill="#fff" opacity="0"/><g transform="translate(0 3)"><g transform="translate(15.999 10.002) rotate(180)" fill="none"><path d="M6,1.625v.359L2.5.2A1.7,1.7,0,0,0,0,1.625V8.377A1.7,1.7,0,0,0,2.5,9.8L6,8.02v.357A1.7,1.7,0,0,0,8.5,9.8l6.6-3.373a1.588,1.588,0,0,0,0-2.857L8.5.2A1.775,1.775,0,0,0,7.7,0,1.665,1.665,0,0,0,6,1.625Z" stroke="none"/><path d="M 7.701175689697266 1 C 7.363955497741699 1 6.999996185302734 1.238949775695801 6.999996185302734 1.625 L 6.999996185302734 3.619639873504639 L 2.04909610748291 1.085399627685547 C 1.938705444335938 1.02886962890625 1.822065353393555 1.000209808349609 1.702415466308594 1.000209808349609 C 1.364605903625488 1.000209808349609 0.9999961853027344 1.239080429077148 0.9999961853027344 1.625 L 0.9999961853027344 8.376950263977051 C 0.9999961853027344 8.761670112609863 1.36452579498291 8.999810218811035 1.702256202697754 8.999810218811035 C 1.821986198425293 8.999810218811035 1.938685417175293 8.971139907836914 2.050025939941406 8.914130210876465 L 6.999996185302734 6.385879993438721 L 6.999996185302734 8.376950263977051 C 6.999996185302734 8.761670112609863 7.363696098327637 8.999810218811035 7.700665473937988 8.999810218811035 C 7.821075439453125 8.999810218811035 7.938715934753418 8.970930099487305 8.049785614013672 8.914250373840332 L 14.64741611480713 5.542220115661621 C 14.96583557128906 5.378570079803467 14.99972534179688 5.108230113983154 14.99951553344727 4.999589920043945 C 14.99930572509766 4.892230033874512 14.96491622924805 4.625259876251221 14.64876556396484 4.464340209960938 L 8.052366256713867 1.08705997467041 C 7.938515663146973 1.029290199279785 7.820365905761719 1 7.701175689697266 1 M 7.701175689697266 0 C 7.967775344848633 0 8.243165969848633 0.0625 8.504885673522949 0.1953096389770508 L 15.10449600219727 3.574220180511475 C 16.29785537719727 4.181640148162842 16.29785537719727 5.818359851837158 15.10449600219727 6.431639671325684 L 8.504885673522949 9.804690361022949 C 7.368165016174316 10.38477039337158 5.999996185302734 9.601559638977051 5.999996185302734 8.376950263977051 L 5.999996185302734 8.019530296325684 L 2.504885673522949 9.804690361022949 C 1.372066497802734 10.38476943969727 -3.814697265625e-06 9.601560592651367 -3.814697265625e-06 8.376950263977051 L -3.814697265625e-06 1.625 C -3.814697265625e-06 0.3984403610229492 1.372067451477051 -0.3847675323486328 2.504885673522949 0.1953096389770508 L 5.999996185302734 1.984370231628418 L 5.999996185302734 1.625 C 5.999996185302734 0.6816396713256836 6.809565544128418 0 7.701175689697266 0 Z" stroke="none" fill="#000"/></g><g transform="translate(15.999) rotate(90)" fill="none"><path d="M3.57,9.1a1.589,1.589,0,0,0,2.861,0L9.805,2.5A1.7,1.7,0,0,0,8.375,0H1.625A1.7,1.7,0,0,0,.195,2.5Z" stroke="none"/><path d="M 4.999999046325684 9.000006675720215 C 5.108179092407227 9.000006675720215 5.377368927001953 8.965657234191895 5.540069103240967 8.647486686706543 L 8.915079116821289 2.047487020492554 C 9.036998748779297 1.809057116508484 9.026759147644043 1.530997037887573 8.887688636779785 1.303677082061768 C 8.818299293518066 1.190267086029053 8.659428596496582 0.999997079372406 8.375019073486328 0.999997079372406 L 1.624989032745361 0.999997079372406 C 1.340569019317627 0.999997079372406 1.18169903755188 1.190267086029053 1.112309098243713 1.30368709564209 C 0.9732390642166138 1.531007051467896 0.9629990458488464 1.809057116508484 1.084919095039368 2.047487020492554 L 4.4599289894104 8.647477149963379 C 4.622639179229736 8.965657234191895 4.891819000244141 9.000006675720215 4.999999046325684 9.000006675720215 M 4.999999046325684 10.00000190734863 C 4.437731742858887 10.00000190734863 3.875463962554932 9.700926780700684 3.569589138031006 9.102777481079102 L 0.1945790499448776 2.502777099609375 C -0.3845309615135193 1.370297074317932 0.3986290395259857 -2.913513071689522e-06 1.624989032745361 -2.913513071689522e-06 L 8.375019073486328 -2.913513071689522e-06 C 9.60136890411377 -2.913513071689522e-06 10.38452911376953 1.370297074317932 9.805418968200684 2.502777099609375 L 6.430408954620361 9.102777481079102 C 6.124534130096436 9.700926780700684 5.56226634979248 10.00000190734863 4.999999046325684 10.00000190734863 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.999 3.332)"><g transform="translate(-12668 -18787)" fill="none"><path d="M12672,18795.045v-.359l-3.5,1.789a1.7,1.7,0,0,1-2.5-1.43v-6.752a1.7,1.7,0,0,1,2.5-1.428l3.5,1.785v-.357a1.7,1.7,0,0,1,2.5-1.428l6.6,3.373a1.588,1.588,0,0,1,0,2.857l-6.6,3.379a1.775,1.775,0,0,1-.8.2A1.665,1.665,0,0,1,12672,18795.045Z" stroke="none"/><path d="M 12673.7021484375 18795.669921875 C 12673.8212890625 18795.669921875 12673.939453125 18795.640625 12674.0498046875 18795.583984375 L 12680.6513671875 18792.205078125 C 12680.9658203125 18792.044921875 12681 18791.77734375 12681.0009765625 18791.669921875 C 12681.0009765625 18791.5625 12680.966796875 18791.291015625 12680.650390625 18791.12890625 L 12674.0517578125 18787.755859375 C 12673.939453125 18787.69921875 12673.822265625 18787.669921875 12673.701171875 18787.669921875 C 12673.3642578125 18787.669921875 12673.0009765625 18787.908203125 12673.0009765625 18788.29296875 L 12673.0009765625 18790.283203125 L 12668.0498046875 18787.755859375 C 12667.939453125 18787.69921875 12667.8232421875 18787.669921875 12667.703125 18787.669921875 C 12667.365234375 18787.669921875 12667.0009765625 18787.908203125 12667.0009765625 18788.29296875 L 12667.0009765625 18795.044921875 C 12667.0009765625 18795.212890625 12667.06640625 18795.357421875 12667.1943359375 18795.474609375 C 12667.330078125 18795.59765625 12667.515625 18795.669921875 12667.703125 18795.669921875 C 12667.8232421875 18795.669921875 12667.939453125 18795.640625 12668.0498046875 18795.583984375 L 12673.0009765625 18793.05078125 L 12673.0009765625 18795.044921875 C 12673.0009765625 18795.431640625 12673.365234375 18795.669921875 12673.7021484375 18795.669921875 M 12673.7021484375 18796.669921875 C 12672.810546875 18796.669921875 12672.0009765625 18795.98828125 12672.0009765625 18795.044921875 L 12672.0009765625 18794.685546875 L 12668.505859375 18796.474609375 C 12667.373046875 18797.056640625 12666 18796.271484375 12666.0009765625 18795.044921875 L 12666.0009765625 18788.29296875 C 12666.001953125 18787.0703125 12667.3740234375 18786.28515625 12668.505859375 18786.865234375 L 12672.0009765625 18788.650390625 L 12672.0009765625 18788.29296875 C 12672.001953125 18787.0703125 12673.3681640625 18786.28515625 12674.505859375 18786.865234375 L 12681.10546875 18790.23828125 C 12682.298828125 18790.8515625 12682.298828125 18792.48828125 12681.10546875 18793.095703125 L 12674.505859375 18796.474609375 C 12674.244140625 18796.607421875 12673.96875 18796.669921875 12673.7021484375 18796.669921875 Z" stroke="none" fill="#000"/></g><g transform="translate(8.001 -0.332) rotate(90)" fill="none"><path d="M3.57.9A1.589,1.589,0,0,1,6.43.9L9.805,7.5A1.7,1.7,0,0,1,8.375,10H1.625A1.7,1.7,0,0,1,.195,7.5Z" stroke="none"/><path d="M 4.999999046325684 0.9999933242797852 C 4.891819000244141 0.9999933242797852 4.622629165649414 1.034342765808105 4.4599289894104 1.352513313293457 L 1.084918975830078 7.952512741088867 C 0.9629993438720703 8.190942764282227 0.9732389450073242 8.468993186950684 1.112309455871582 8.69631290435791 C 1.181698799133301 8.809732437133789 1.340569496154785 9.000002861022949 1.62498950958252 9.000002861022949 L 8.375019073486328 9.000002861022949 C 8.659429550170898 9.000002861022949 8.818299293518066 8.809732437133789 8.887688636779785 8.696323394775391 C 9.026759147644043 8.469002723693848 9.036998748779297 8.190942764282227 8.915079116821289 7.952512741088867 L 5.540069103240967 1.352522850036621 C 5.377358913421631 1.034342765808105 5.108179092407227 0.9999933242797852 4.999999046325684 0.9999933242797852 M 4.999999046325684 -1.9073486328125e-06 C 5.56226634979248 -1.9073486328125e-06 6.124534130096436 0.2990732192993164 6.430408954620361 0.8972225189208984 L 9.805418968200684 7.497222900390625 C 10.38452911376953 8.629702568054199 9.60136890411377 10.00000286102295 8.375019073486328 10.00000286102295 L 1.62498950958252 10.00000286102295 C 0.3986291885375977 10.00000286102295 -0.3845310211181641 8.629702568054199 0.1945791244506836 7.497222900390625 L 3.569589138031006 0.8972225189208984 C 3.875463962554932 0.2990732192993164 4.437731742858887 -1.9073486328125e-06 4.999999046325684 -1.9073486328125e-06 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.334 2)"><path d="M1,0H6" transform="translate(1.166 7.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line y2="5" transform="translate(4.666 4.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-0.001)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-232 -5782)"><path d="M13261.284,23185.5a.731.731,0,0,1-.786-.832v-9.332a.732.732,0,0,1,.786-.838h4.219v-3.166a.727.727,0,0,1,.785-.832h4.5l2.712,2.705v7.461a.731.731,0,0,1-.792.832h-4.213v3.17a.727.727,0,0,1-.785.832Z" transform="translate(-13027 -17388)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(234.333 5788)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M140.315,8v7.667A1.216,1.216,0,0,1,139.029,17H132.6a1.216,1.216,0,0,1-1.286-1.333V6.333A1.216,1.216,0,0,1,132.6,5h4.715Z" stroke="none"/><path d="M 132.6002197265625 6.000001907348633 C 132.4343109130859 6.000001907348633 132.3144226074219 6.000001907348633 132.3144226074219 6.333331108093262 L 132.3144226074219 15.66667079925537 C 132.3144226074219 16 132.4343109130859 16 132.6002197265625 16 L 139.0291137695312 16 C 139.1950378417969 16 139.3149108886719 16 139.3149108886719 15.66663074493408 L 139.3151702880859 8.414206504821777 L 136.9009704589844 6.000001907348633 L 132.6002197265625 6.000001907348633 M 132.6002197265625 5.000001907348633 L 137.315185546875 5.000001907348633 L 140.315185546875 8.000000953674316 L 140.3149108886719 15.66667079925537 C 140.3149108886719 16.49521064758301 139.8161468505859 17 139.0291137695312 17 L 132.6002197265625 17 C 131.8132019042969 17 131.3144226074219 16.49521064758301 131.3144226074219 15.66667079925537 L 131.3144226074219 6.333331108093262 C 131.3144226074219 5.504791259765625 131.8132019042969 5.000001907348633 132.6002197265625 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-138.312 -7.416)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(101.021 5776.584)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.334 2)"><path d="M1,0H6" transform="translate(1.166 7)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><g transform="translate(-0.001)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.667 2)"><g transform="translate(10 -1.5)"><line y2="5" transform="translate(0.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="3" transform="translate(-1.167 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x2="4" y2="3" transform="translate(-1.167 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(0.666 4)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M140.315,8v7.667A1.216,1.216,0,0,1,139.029,17H132.6a1.216,1.216,0,0,1-1.286-1.333V6.333A1.216,1.216,0,0,1,132.6,5h4.715Z" stroke="none"/><path d="M 132.6002197265625 6.000001907348633 C 132.4343109130859 6.000001907348633 132.3144226074219 6.000001907348633 132.3144226074219 6.333331108093262 L 132.3144226074219 15.66667079925537 C 132.3144226074219 16 132.4343109130859 16 132.6002197265625 16 L 139.0291137695312 16 C 139.1950378417969 16 139.3149108886719 16 139.3149108886719 15.66663074493408 L 139.3151702880859 8.414206504821777 L 136.9009704589844 6.000001907348633 L 132.6002197265625 6.000001907348633 M 132.6002197265625 5.000001907348633 L 137.315185546875 5.000001907348633 L 140.315185546875 8.000000953674316 L 140.3149108886719 15.66667079925537 C 140.3149108886719 16.49521064758301 139.8161468505859 17 139.0291137695312 17 L 132.6002197265625 17 C 131.8132019042969 17 131.3144226074219 16.49521064758301 131.3144226074219 15.66667079925537 L 131.3144226074219 6.333331108093262 C 131.3144226074219 5.504791259765625 131.8132019042969 5.000001907348633 132.6002197265625 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M145.478,8.917h-3v-3Z" transform="translate(-138.312 -7.416)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 2)"><g transform="translate(-132.648 -7)" fill="none" stroke-linejoin="round"><path d="M143.315,9V19.222A1.621,1.621,0,0,1,141.6,21h-8.572a1.621,1.621,0,0,1-1.714-1.778V6.778A1.621,1.621,0,0,1,133.029,5h6.287Z" stroke="none"/><path d="M 133.0288238525391 6.000001907348633 C 132.6755676269531 6.000001907348633 132.3144378662109 6.092411041259766 132.3144378662109 6.777780532836914 L 132.3144378662109 19.22222137451172 C 132.3144378662109 19.90759086608887 132.6755676269531 20 133.0288238525391 20 L 141.6006927490234 20 C 141.9539489746094 20 142.3150787353516 19.90759086608887 142.3150787353516 19.22219085693359 L 142.3154144287109 9.414207458496094 L 138.9012145996094 6.000001907348633 L 133.0288238525391 6.000001907348633 M 133.0288238525391 5.000001907348633 L 139.3154296875 5.000001907348633 L 143.3154296875 9.000001907348633 L 143.3150787353516 19.22222137451172 C 143.3150787353516 20.32695007324219 142.6500549316406 21 141.6006927490234 21 L 133.0288238525391 21 C 131.9794616699219 21 131.3144378662109 20.32695007324219 131.3144378662109 19.22222137451172 L 131.3144378662109 6.777780532836914 C 131.3144378662109 5.673051834106445 131.9794616699219 5.000001907348633 133.0288238525391 5.000001907348633 Z" stroke="none" fill="#000"/></g><path d="M146.478,9.917h-4v-4Z" transform="translate(-136.312 -7.415)" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(3.333 4.666)"><g transform="translate(0 -4)"><line x2="9" transform="translate(-2.833 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="2" transform="translate(10.167 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(5.667 8.334)" fill="none" stroke="#000" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g><g transform="translate(0 -11)"><line x2="2" transform="translate(-2.833 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line x2="9" transform="translate(3.167 10.834)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(-1.333 8.334)" fill="none" stroke="#000" stroke-width="1"><circle cx="2.5" cy="2.5" r="2.5" stroke="none"/><circle cx="2.5" cy="2.5" r="2" fill="none"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" transform="translate(0 0.001)" fill="#fff" opacity="0"/><g transform="translate(3.333 2.001)"><g transform="translate(673.419 -67.961)" stroke-linejoin="round"><path d="M -666.623779296875 81.46867370605469 C -666.70947265625 81.46867370605469 -666.788330078125 81.44034576416016 -666.8580322265625 81.38449096679688 L -666.88818359375 81.36032867431641 L -666.9216918945312 81.34108734130859 L -670.8352661132812 79.09435272216797 C -671.1005249023438 78.86886596679688 -671.251953125 78.54673767089844 -671.251953125 78.205078125 L -671.251953125 73.93792724609375 C -671.251953125 73.73109436035156 -671.3007202148438 73.26187896728516 -671.4853515625 72.96644592285156 L -671.4918212890625 72.95611572265625 L -671.498779296875 72.94610595703125 L -675.1333618164062 67.7154541015625 C -675.2872314453125 67.46045684814453 -675.2926635742188 67.16593933105469 -675.1478881835938 66.90561676025391 C -674.9935913085938 66.62825012207031 -674.7057495117188 66.46265411376953 -674.3779296875 66.46265411376953 L -663.1260375976562 66.45998382568359 C -662.7977294921875 66.45998382568359 -662.509521484375 66.62615966796875 -662.3552856445312 66.90449523925781 C -662.21044921875 67.165771484375 -662.216796875 67.46089172363281 -662.3721923828125 67.71567535400391 L -666.0053100585938 73.00754547119141 L -666.0114135742188 73.01646423339844 L -666.0171508789062 73.02565002441406 C -666.1707763671875 73.27154541015625 -666.251953125 73.55392456054688 -666.251953125 73.84224700927734 L -666.251953125 81.123046875 C -666.251953125 81.3614501953125 -666.4693603515625 81.46867370605469 -666.623779296875 81.46867370605469 Z" stroke="none"/><path d="M -663.1260986328125 66.95998382568359 L -663.1259155273438 66.95998382568359 L -674.3779296875 66.96265411376953 C -674.5850830078125 66.96265411376953 -674.6798095703125 67.09273529052734 -674.7109375 67.14866638183594 C -674.7493896484375 67.21779632568359 -674.779541015625 67.32441711425781 -674.711669921875 67.44607543945312 L -671.088134765625 72.66078948974609 C -671.078857421875 72.67414093017578 -671.0699462890625 72.68769836425781 -671.0613403320312 72.70148468017578 C -670.7606201171875 73.18267059326172 -670.751953125 73.86204528808594 -670.751953125 73.93792724609375 L -670.751953125 78.205078125 C -670.751953125 78.38613128662109 -670.67578125 78.55857849121094 -670.5411376953125 78.68667602539062 L -666.751953125 80.86200714111328 L -666.751953125 73.84224700927734 C -666.751953125 73.46012878417969 -666.6444702148438 73.08613586425781 -666.441162109375 72.76070404052734 C -666.4335327148438 72.74848937988281 -666.4256591796875 72.73643493652344 -666.41748046875 72.72455596923828 L -662.793701171875 67.44622802734375 C -662.7238159179688 67.32410430908203 -662.7539672851562 67.21654510498047 -662.7926025390625 67.14689636230469 C -662.82373046875 67.0906982421875 -662.9185791015625 66.96000671386719 -663.1260986328125 66.95998382568359 M -663.1261596679688 65.95998382568359 C -662.0560302734375 65.95998382568359 -661.3973999023438 67.09939575195312 -661.9533081054688 67.98892974853516 L -665.5930786132812 73.29055023193359 C -665.6971435546875 73.45713043212891 -665.751953125 73.64768981933594 -665.751953125 73.84224700927734 L -665.751953125 81.123046875 C -665.751953125 81.83664703369141 -666.6050415039062 82.22783660888672 -667.170654296875 81.77470397949219 L -671.1206665039062 79.50704956054688 C -671.5203857421875 79.18655395507812 -671.751953125 78.70879364013672 -671.751953125 78.205078125 L -671.751953125 73.93792724609375 C -671.751953125 73.74403381347656 -671.8060913085938 73.39667510986328 -671.9093627929688 73.23141479492188 L -675.5521850585938 67.98892974853516 C -676.1047973632812 67.09872436523438 -675.4468383789062 65.96265411376953 -674.3779296875 65.96265411376953 L -663.1261596679688 65.95998382568359 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.009" viewBox="0 0 16 16.009"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.999 0)"><g transform="translate(674.752 -65.96)" fill="none" stroke-linejoin="round"><path d="M-674.378,65.963l11.252,0a1.335,1.335,0,0,1,1.173,2.029l-3.64,5.3a1.04,1.04,0,0,0-.159.552v7.281a.87.87,0,0,1-1.419.652l-3.95-2.268a1.67,1.67,0,0,1-.631-1.3V73.938a1.652,1.652,0,0,0-.157-.707l-3.643-5.242A1.335,1.335,0,0,1-674.378,65.963Z" stroke="none"/><path d="M -663.1260986328125 66.95998382568359 L -663.1259155273438 66.95998382568359 L -674.3779296875 66.96265411376953 C -674.5850830078125 66.96265411376953 -674.6798095703125 67.09273529052734 -674.7109375 67.14866638183594 C -674.7493896484375 67.21779632568359 -674.779541015625 67.32441711425781 -674.711669921875 67.44607543945312 L -671.088134765625 72.66078948974609 C -671.078857421875 72.67414093017578 -671.0699462890625 72.68769836425781 -671.0613403320312 72.70148468017578 C -670.7606201171875 73.18267059326172 -670.751953125 73.86204528808594 -670.751953125 73.93792724609375 L -670.751953125 78.205078125 C -670.751953125 78.38613128662109 -670.67578125 78.55857849121094 -670.5411376953125 78.68667602539062 L -666.751953125 80.86200714111328 L -666.751953125 73.84224700927734 C -666.751953125 73.46012878417969 -666.6444702148438 73.08613586425781 -666.441162109375 72.76070404052734 C -666.4335327148438 72.74848937988281 -666.4256591796875 72.73643493652344 -666.41748046875 72.72455596923828 L -662.793701171875 67.44622802734375 C -662.7238159179688 67.32410430908203 -662.7539672851562 67.21654510498047 -662.7926025390625 67.14689636230469 C -662.82373046875 67.0906982421875 -662.9185791015625 66.96000671386719 -663.1260986328125 66.95998382568359 M -663.1261596679688 65.95998382568359 C -662.0560302734375 65.95998382568359 -661.3973999023438 67.09939575195312 -661.9533081054688 67.98892974853516 L -665.5930786132812 73.29055023193359 C -665.6971435546875 73.45713043212891 -665.751953125 73.64768981933594 -665.751953125 73.84224700927734 L -665.751953125 81.123046875 C -665.751953125 81.83664703369141 -666.6050415039062 82.22783660888672 -667.170654296875 81.77470397949219 L -671.1206665039062 79.50704956054688 C -671.5203857421875 79.18655395507812 -671.751953125 78.70879364013672 -671.751953125 78.205078125 L -671.751953125 73.93792724609375 C -671.751953125 73.74403381347656 -671.8060913085938 73.39667510986328 -671.9093627929688 73.23141479492188 L -675.5521850585938 67.98892974853516 C -676.1047973632812 67.09872436523438 -675.4468383789062 65.96265411376953 -674.3779296875 65.96265411376953 L -663.1261596679688 65.95998382568359 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.049 1.199)"><path d="M8.976-830.507c1.962.461,3.088,1.5,3.088,2.861,0,1.76-2.636,3.139-6,3.139s-6-1.379-6-3.139c0-1.358,1.126-2.4,3.088-2.861" transform="translate(0.387 838.808)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(5.785 -1.033)"><path d="M7.451,11.879V.379h7l-3,2.5,3,2.5h-7" transform="translate(-6.785 -0.045)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.156 1.518)"><g transform="translate(0.156 0.482)" fill="none"><path d="M2,12a2,2,0,0,1-2-2V3c0-.02,0-.04,0-.06V.6A1.638,1.638,0,0,1,1.43-1l5,0,.693,0L8.559,1H14a2,2,0,0,1,2,2v7a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 14.00040054321289 10.99970054626465 C 14.55169010162354 10.99970054626465 15.00020027160645 10.55079078674316 15.00020027160645 9.999000549316406 L 15.00020027160645 2.999700307846069 C 15.00020027160645 2.447910308837891 14.55169010162354 1.999000310897827 14.00040054321289 1.999000310897827 L 8.046740531921387 1.999000310897827 L 6.609145641326904 0.000567753566429019 L 6.429960250854492 0.0001003410361590795 L 1.435529828071594 0.001898515853099525 C 1.313629150390625 0.01016018912196159 1.001800298690796 0.3027100265026093 1.001800298690796 0.6039003133773804 L 1.001370310783386 2.969350337982178 C 1.001080274581909 2.979450225830078 1.000900268554688 2.989530324935913 1.000900268554688 2.999700307846069 L 1.000900268554688 9.999000549316406 C 1.000900268554688 10.55079078674316 1.449410319328308 10.99970054626465 2.000700235366821 10.99970054626465 L 14.00040054321289 10.99970054626465 M 14.00040054321289 11.99970054626465 L 2.000700235366821 11.99970054626465 C 0.8964002728462219 11.99970054626465 0.0009002700680866838 11.10420036315918 0.0009002700680866838 9.999000549316406 L 0.0009002700680866838 2.999700307846069 C 0.0009002700680866838 2.979730367660522 0.001220270060002804 2.959940433502197 0.001800270052626729 2.940110445022583 C 0.001800270052626729 2.634180307388306 0.001800270052626729 1.307190299034119 0.001800270052626729 0.6039003133773804 C 0.001800270052626729 -0.1970996558666229 0.7128002643585205 -0.994499683380127 1.430100321769714 -0.998099684715271 L 6.429600238800049 -0.999899685382843 L 7.122600078582764 -0.998099684715271 L 8.559240341186523 0.9990003705024719 L 14.00040054321289 0.9990003705024719 C 15.10470008850098 0.9990003705024719 16.00020027160645 1.894500374794006 16.00020027160645 2.999700307846069 L 16.00020027160645 9.999000549316406 C 16.00020027160645 11.10420036315918 15.10470008850098 11.99970054626465 14.00040054321289 11.99970054626465 Z" stroke="none" fill="#000"/></g><path d="M3.1,16.588l4-5.5h10" transform="translate(-1.947 -5.105)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(-0.333 1.6)"><line y2="11" transform="translate(11.833 0.899)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><g transform="translate(0.333 0.399)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"><rect width="16" height="12" rx="2" stroke="none"/><rect x="0.5" y="0.5" width="15" height="11" rx="1.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.006" height="16" viewBox="0 0 16.006 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(2 4)"><path d="M-53.833,68.915h-2.5a1.568,1.568,0,0,0-1.25.417A1.569,1.569,0,0,0-58,70.582v6.667a1.571,1.571,0,0,0,.417,1.25,1.568,1.568,0,0,0,1.25.417h11.667a1.568,1.568,0,0,0,1.25-.417A1.568,1.568,0,0,0-43,77.248V70.414c0-.531.086-.864-.261-1.213s-.71-.286-1.239-.286h-2.667" transform="translate(56.5 -70.415)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><g transform="translate(55.101 -75.415)" fill="none" stroke-miterlimit="10"><path d="M-51.624,84.416h5.043l.431,1.062a.7.7,0,0,1-.679.938h-4.543a.7.7,0,0,1-.68-.936Z" stroke="none"/><path d="M -51.62363815307617 84.41600799560547 L -46.58088684082031 84.41600799560547 L -46.14959716796875 85.47846984863281 C -45.96616744995117 85.93022918701172 -46.31779861450195 86.41600799560547 -46.82875823974609 86.41600799560547 L -51.37184906005859 86.41600799560547 C -51.88182830810547 86.41600799560547 -52.23344802856445 85.93209075927734 -52.05198669433594 85.4803466796875 L -51.62363815307617 84.41600799560547 Z" stroke="none" fill="#000"/></g><path d="M-49.5,74.181l2,2,2-2" transform="translate(53.5 -70.682)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line y1="6" transform="translate(6 -1.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(0.667 0.666)"><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(-0.667 8.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(8.333 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g><g transform="translate(8.333 8.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1"><rect width="7" height="7" rx="1" stroke="none"/><rect x="0.5" y="0.5" width="6" height="6" rx="0.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001" viewBox="0 0 16 16.001"><g transform="translate(0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 2)"><g transform="translate(5.667 7)" fill="none" stroke="#000" stroke-width="1"><rect width="5" height="5" rx="2.5" stroke="none"/><rect x="0.5" y="0.5" width="4" height="4" rx="2" fill="none"/></g><g transform="translate(-1.333 5)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g><path d="M0,0A2,2,0,0,1,2,2,2,2,0,0,1,0,4" transform="translate(6.167 14.001) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M0,0A2.5,2.5,0,0,1,2.5,2.5,2.5,2.5,0,0,1,0,5" transform="translate(-0.833 14.001) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(9.167 -1)"><line x2="6" transform="translate(-1 2.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/><line y2="6" transform="translate(2 -0.5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g transform="translate(0)"><rect width="16" height="16" fill="#fff" opacity="0"/><g transform="translate(1.333 1.334)"><g transform="translate(-1.333 0.666)" fill="none" stroke="#000" stroke-width="1"><rect width="8" height="8" rx="4" stroke="none"/><rect x="0.5" y="0.5" width="7" height="7" rx="3.5" fill="none"/></g><path d="M0,0A3.5,3.5,0,0,1,3.5,3.5,3.5,3.5,0,0,1,0,7" transform="translate(-0.833 12.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><path d="M0,0A2.5,2.5,0,0,1,2.5,2.5,2.5,2.5,0,0,1,0,5" transform="translate(9.167 12.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1"/><g transform="translate(8.667 3.666)" fill="none" stroke="#000" stroke-width="1"><rect width="6" height="6" rx="3" stroke="none"/><rect x="0.5" y="0.5" width="5" height="5" rx="2.5" fill="none"/></g></g></g></svg>