@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="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8.883 9)"><rect width="10" height="5.002" rx="0.5" transform="translate(7.117 -1)" fill="none" stroke="#000" stroke-width="2"/><rect width="10" height="5" rx="0.5" transform="translate(7.117 10)" fill="none" stroke="#000" stroke-width="2"/><path d="M813.017,75.449h1.258V71.436l-1.376.353V70.424l2.887-.7v5.728H816.9v1.272h-3.882Z" transform="translate(-816.782 -71.721)"/><path d="M812.712,81.876a1.875,1.875,0,0,1,1.144-1.939l1.211-.639a.681.681,0,0,0,.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309,0-.455.157-.455.522v.747H812.7v-.67c0-1.3.626-1.937,1.758-1.937h.455c1.139,0,1.756.643,1.756,1.914v.37a1.859,1.859,0,0,1-1.142,1.916l-1.206.641a.629.629,0,0,0-.372.639v.224H816.7v1.3h-3.984Z" transform="translate(-816.579 -67.35)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 3)"><line x2="16" transform="translate(5 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="9" transform="translate(5 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-1 -1)" fill="none" stroke="#000" stroke-width="2"><rect width="28" height="28" rx="2" stroke="none"/><rect x="1" y="1" width="26" height="26" rx="1" fill="none"/></g><path d="M5.031,28.873c4.543,0,6.857-7,6.857-7l17.143,6.9-24,.1Z" transform="translate(-4.031 -2.873)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 3)"><g transform="translate(3)"><g transform="translate(-3 6)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="11" rx="3" stroke="none"/><rect x="1" y="1" width="14" height="9" rx="2" fill="none"/></g><path d="M259.1,10V7.835c0-1.565,1.791-2.835,4-2.835h0c2.209,0,4,1.269,4,2.835V10" transform="translate(-258.095 -4)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(-2 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(6 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/></g><g transform="translate(14 20)"><line y2="5" transform="translate(2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y2="2.5" transform="translate(0 1.25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="1"/><line x1="4" y1="2.5" transform="translate(0 1.25)" 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="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.333 6.668)"><line x2="6" transform="translate(5.667 15.332)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="15" transform="translate(5.667 9.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(5.667 3.332)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M812.958,72.994h.629V70.7l-.688.2v-.781l1.443-.4v3.273h.557v.727h-1.941Z" transform="translate(-813.232 -68.387)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M812.7,79.508a1.1,1.1,0,0,1,.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154,0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569,0,.878.367.878,1.094v.211a1.087,1.087,0,0,1-.571,1.095l-.6.366a.369.369,0,0,0-.186.365v.128H814.7v.741H812.7Z" transform="translate(-813.028 -69.017)" stroke="rgba(0,0,0,0)" stroke-width="1"/><path d="M814.687,85.724v.12c0,.727-.3,1.089-.865,1.089h-.269c-.566,0-.866-.361-.866-1.074v-.323h.608V85.9c0,.186.076.28.225.28h.326c.148,0,.227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143,0,.209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143,0-.217.091-.217.274v.335h-.611V84c0-.711.3-1.07.864-1.07h.21c.564,0,.863.359.863,1.089v.1c0,.418-.157.707-.459.786C814.522,84.967,814.687,85.29,814.687,85.724Z" transform="translate(-813.02 -69.599)" stroke="rgba(0,0,0,0)" stroke-width="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M68.888,22.487a2.717,2.717,0,0,1-2.889-3v-12a2.717,2.717,0,0,1,2.889-3H89.111a2.717,2.717,0,0,1,2.889,3v12a2.717,2.717,0,0,1-2.889,3" transform="translate(-67 -5.486)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M68.785,14.039l4-4h6l4-4" transform="translate(-63.785 -2.039)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(0 2)"><path d="M0,0A3,3,0,0,1,3,3,3,3,0,0,1,0,6" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -0.68)" stroke-miterlimit="10"><path d="M 25.00000381469727 19.67900276184082 C 24.46724319458008 19.67900276184082 23.96476364135742 19.47050285339355 23.58513450622559 19.09192276000977 C 23.20850372314453 18.7142333984375 23.00000381469727 18.21175193786621 23.00000381469727 17.67900276184082 C 23.00000381469727 17.14527320861816 23.20850372314453 16.64226341247559 23.58708381652832 16.26263236999512 C 23.96379470825195 15.886962890625 24.46627426147461 15.67900276184082 25.00000381469727 15.67900276184082 C 25.53373336791992 15.67900276184082 26.03620338439941 15.886962890625 26.41485404968262 16.26457214355469 C 26.7918529510498 16.64157295227051 27.00000381469727 17.14423370361328 27.00000381469727 17.67900276184082 C 27.00000381469727 18.21279335021973 26.79184341430664 18.71493339538574 26.41388320922852 19.09290313720703 C 26.03523445129395 19.47051239013672 25.53276443481445 19.67900276184082 25.00000381469727 19.67900276184082 Z" stroke="none"/><path d="M 25.00000381469727 16.67900276184082 C 24.65928649902344 16.67900276184082 24.42787170410156 16.8371467590332 24.29323959350586 16.97069931030273 C 24.18279647827148 17.08208084106445 24.00000381469727 17.32065200805664 24.00000381469727 17.67900276184082 C 24.00000381469727 18.01902770996094 24.15946578979492 18.25118827819824 24.29384994506836 18.38641357421875 C 24.42925453186035 18.52052688598633 24.66101837158203 18.67900276184082 25.00000381469727 18.67900276184082 C 25.34115409851074 18.67900276184082 25.57370376586914 18.51850318908691 25.70676422119141 18.38580322265625 C 25.84054374694824 18.25202369689941 26.00000381469727 18.02081298828125 26.00000381469727 17.67900276184082 C 26.00000381469727 17.33595275878906 25.84054374694824 17.10448265075684 25.7087230682373 16.97265243530273 C 25.57439422607422 16.83869361877441 25.34239387512207 16.67900276184082 25.00000381469727 16.67900276184082 M 25.00000381469727 14.67900276184082 C 25.82950401306152 14.67900276184082 26.57650375366211 15.01350212097168 27.12099456787109 15.55650329589844 C 27.66549301147461 16.10100364685059 28.00000381469727 16.84950256347656 28.00000381469727 17.67900276184082 C 28.00000381469727 18.50850296020508 27.66549301147461 19.2554931640625 27.12099456787109 19.80000305175781 C 26.57650375366211 20.34300231933594 25.82950401306152 20.67900276184082 25.00000381469727 20.67900276184082 C 24.17050361633301 20.67900276184082 23.42350387573242 20.34300231933594 22.87900352478027 19.80000305175781 C 22.33600425720215 19.2554931640625 22.00000381469727 18.50850296020508 22.00000381469727 17.67900276184082 C 22.00000381469727 16.84950256347656 22.33600425720215 16.10100364685059 22.87900352478027 15.55650329589844 C 23.42350387573242 15.01350212097168 24.17050361633301 14.67900276184082 25.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="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 7)"><line x2="22" transform="translate(-1.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(-1.667 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(-1.667 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="4" transform="translate(-1.667 18)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6.667 8)"><line x2="22" transform="translate(-1.667 17)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(-1.667 11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="10" transform="translate(-1.667 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="4" transform="translate(-1.667 -1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 2.666)"><g transform="translate(4.334 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="22" rx="2" stroke="none"/><rect x="1" y="1" width="14" height="20" rx="1" fill="none"/></g><path d="M14.5,26.5h-9a2.665,2.665,0,0,1-3-3V8.5" transform="translate(-1.167 -1.166)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="6" transform="translate(9.333 7.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="6" transform="translate(9.333 12.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(11.733 6.4)"><line y2="20" transform="translate(0.267 -0.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="20" transform="translate(8.267 -0.4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 9.334)"><line x1="13" transform="translate(12 0.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="13" transform="translate(12 6.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="26" transform="translate(-1 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><rect width="8" height="8" transform="translate(-1 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8.666 2.667)"><g transform="translate(-1.665 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="18" height="28" rx="2.999" stroke="none"/><rect x="1" y="1" width="16" height="26" rx="1.999" fill="none"/></g><circle cx="2" cy="2" r="2" transform="translate(5.334 19.334)"/><rect width="6" height="3" rx="1" transform="translate(4.334 0.334)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 1.664)"><g transform="translate(0.332 0.336)"><path d="M 10.00087547302246 26.56051635742188 C 9.092597007751465 25.59293174743652 7.433465480804443 23.73740386962891 5.81493091583252 21.47211265563965 C 4.402390956878662 19.4951229095459 3.2794508934021 17.58149337768555 2.477300882339478 15.78438282012939 C 1.498230934143066 13.59089279174805 1.001800894737244 11.57809257507324 1.001800894737244 9.801902770996094 C 1.001800894737244 4.950002670288086 5.038731098175049 1.002702713012695 10.00080108642578 1.002702713012695 C 14.96237087249756 1.002702713012695 18.9989013671875 4.950002670288086 18.9989013671875 9.801902770996094 C 18.9989013671875 11.57916259765625 18.50251007080078 13.59262275695801 17.52351188659668 15.78635311126709 C 16.72148132324219 17.58355331420898 15.59866142272949 19.49708366394043 14.18623065948486 21.47378349304199 C 12.56859493255615 23.73765563964844 10.90906620025635 25.59320449829102 10.00087547302246 26.56051635742188 Z M 10.00170135498047 5.000302791595459 C 7.244910717010498 5.000302791595459 5.002100944519043 7.243512630462646 5.002100944519043 10.00080299377441 C 5.002100944519043 12.75759315490723 7.244910717010498 15.00040245056152 10.00170135498047 15.00040245056152 C 12.75849056243896 15.00040245056152 15.00130081176758 12.75759315490723 15.00130081176758 10.00080299377441 C 15.00130081176758 7.243512630462646 12.75849056243896 5.000302791595459 10.00170135498047 5.000302791595459 Z" stroke="none"/><path d="M 10.00095748901367 25.0807991027832 C 10.91359233856201 24.06321716308594 12.15641689300537 22.59444618225098 13.37260055541992 20.89240264892578 C 14.74619102478027 18.97006225585938 15.83551120758057 17.11502265930176 16.61032104492188 15.37882232666016 C 17.53171157836914 13.31417274475098 17.9989013671875 11.43782234191895 17.9989013671875 9.801902770996094 C 17.9989013671875 5.501412868499756 14.41097068786621 2.002702713012695 10.00080108642578 2.002702713012695 C 5.590140819549561 2.002702713012695 2.001801013946533 5.501412868499756 2.001801013946533 9.801902770996094 C 2.001801013946533 11.43673229217529 2.469020843505859 13.31239318847656 3.390460968017578 15.37679290771484 C 4.165400981903076 17.1129322052002 5.254860877990723 18.96810340881348 6.628591060638428 20.89076232910156 C 7.84550666809082 22.59395027160645 9.088288307189941 24.06297492980957 10.00095748901367 25.0807991027832 M 10.00170135498047 4.000302791595459 C 13.30989074707031 4.000302791595459 16.00130081176758 6.692112922668457 16.00130081176758 10.00080299377441 C 16.00130081176758 13.30899238586426 13.30989074707031 16.00040245056152 10.00170135498047 16.00040245056152 C 6.693511009216309 16.00040245056152 4.002100944519043 13.30899238586426 4.002100944519043 10.00080299377441 C 4.002100944519043 6.692112922668457 6.693511009216309 4.000302791595459 10.00170135498047 4.000302791595459 M 10.00080108642578 27.99990272521973 L 10.00010108947754 27.99921226501465 C 9.974921226501465 27.97448348999023 7.453640937805176 25.48577308654785 5.001280784606934 22.05346298217773 C 3.549931049346924 20.02215194702148 2.393511056900024 18.05007362365723 1.564140915870667 16.19198226928711 C 0.5274509787559509 13.86940288543701 0.001800952129997313 11.71947288513184 0.001800952129997313 9.801902770996094 C 0.001800952129997313 4.398602485656738 4.487330913543701 0.002702719066292048 10.00080108642578 0.002702719066292048 C 15.51377105712891 0.002702719066292048 19.9989013671875 4.398602485656738 19.9989013671875 9.801902770996094 C 19.9989013671875 11.72051239013672 19.47330093383789 13.8710823059082 18.43670082092285 16.19388198852539 C 17.60744094848633 18.0521125793457 16.45112037658691 20.02412223815918 14.99987125396729 22.05515289306641 C 12.54876136779785 25.4854736328125 10.02669048309326 27.97447204589844 10.00150108337402 27.99921226501465 L 10.00080108642578 27.99990272521973 Z M 10.00170135498047 6.000302791595459 C 7.796310901641846 6.000302791595459 6.002100944519043 7.794922828674316 6.002100944519043 10.00080299377441 C 6.002100944519043 12.20619297027588 7.796310901641846 14.00040245056152 10.00170135498047 14.00040245056152 C 12.20709133148193 14.00040245056152 14.00130081176758 12.20619297027588 14.00130081176758 10.00080299377441 C 14.00130081176758 7.794922828674316 12.20709133148193 6.000302791595459 10.00170135498047 6.000302791595459 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 2.001)"><g transform="translate(6 5.998)" fill="none" stroke="#000" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g fill="none"><path d="M10,0A9.9,9.9,0,0,1,20,9.8C20,18.212,10,28,10,28S0,18.207,0,9.8A9.9,9.9,0,0,1,10,0Z" stroke="none"/><path d="M 10 2 C 5.588789939880371 2 2 5.499069213867188 2 9.799999237060547 C 2 12.80506038665771 3.5872802734375 16.62197875976562 6.590229988098145 20.83811950683594 C 7.831257820129395 22.58052444458008 9.084859848022461 24.06386566162109 10.00087833404541 25.08491706848145 C 10.90546321868896 24.07710647583008 12.14008045196533 22.61674880981445 13.37277030944824 20.8917293548584 C 16.39992904663086 16.65554046630859 18 12.8200798034668 18 9.799999237060547 C 18 5.499069213867188 14.41121006011963 2 10 2 M 10 0 C 15.52285003662109 0 20 4.387609481811523 20 9.799999237060547 C 20 18.21210861206055 10 28 10 28 C 10 28 0 18.20746040344238 0 9.799999237060547 C 0 4.387609481811523 4.477149963378906 0 10 0 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M21.361,4.408l8.651,26L4.062,21.741S2.194,4.408,21.361,4.408Z" transform="translate(-5.012 -5.408)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M6.293,21.972a15.119,15.119,0,0,1,.023-3.338,14.759,14.759,0,0,1,1.449-3.019,15.007,15.007,0,0,1,1.5-2.994,15.465,15.465,0,0,1,2.637-2.1,15.242,15.242,0,0,1,2.671-2.061,15.667,15.667,0,0,1,3.306-.77A15.224,15.224,0,0,1,21.2,6.972" transform="translate(-4.2 -4.972)" fill="rgba(0,0,0,0)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M17.149,12.794a2.356,2.356,0,0,0-3.223,3.225.784.784,0,0,0,.581.38.8.8,0,0,0,.674-.23l.18-.154,1.014,1.455L18.6,15.241,17.145,14.2l.154-.158a.806.806,0,0,0,.23-.675.783.783,0,0,0-.38-.58Z" transform="translate(-2.603 -6.47)"/><path d="M5,17.852s-.3-4.227,4.7-2.865,2.821,5.73,2.821,5.73" transform="translate(0.335 0.283)" fill="none" stroke="#000" stroke-width="2"/><path d="M5,16.807s-.189-2.818,2.938-1.91A2.637,2.637,0,0,1,9.7,18.717" transform="translate(14.662 34.303) rotate(-135)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(6 3)"><g transform="translate(24) rotate(90)" fill="none"><path d="M11.241,3.247a2,2,0,0,1,3.517,0l9.642,17.8A2,2,0,0,1,22.642,24H3.358A2,2,0,0,1,1.6,21.047Z" stroke="none"/><path d="M 13 4.199190139770508 L 3.357889175415039 22 L 22.64211082458496 22 L 13 4.199190139770508 M 13 2.199184417724609 C 13.69017028808594 2.199184417724609 14.38033962249756 2.548328399658203 14.75858020782471 3.246620178222656 L 24.40069007873535 21.04742813110352 C 25.12252044677734 22.38003921508789 24.15764999389648 24 22.64211082458496 24 L 3.357889175415039 24 C 1.842350006103516 24 0.8774795532226562 22.38003921508789 1.599309921264648 21.04742813110352 L 11.24141979217529 3.246620178222656 C 11.61966037750244 2.548328399658203 12.30982971191406 2.199184417724609 13 2.199184417724609 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 6.309)" fill="none"><path d="M2,19.693a2,2,0,0,1-2-2v-12a2,2,0,0,1,2-2H3v-2a2,2,0,0,1,2-2h5a2,2,0,0,1,2,2v2h4v-2a2,2,0,0,1,2-2h5a2,2,0,0,1,2,2v2h1a2,2,0,0,1,2,2v12a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 26.00010108947754 17.69289970397949 L 25.99990081787109 17.69309997558594 L 26.00010108947754 5.692699909210205 L 22.99930000305176 5.692699909210205 L 22.9995002746582 1.693099856376648 L 17.99930000305176 1.692899823188782 L 17.99930000305176 5.692699909210205 L 9.999700546264648 5.692699909210205 L 9.999900817871094 1.693099856376648 L 4.999701023101807 1.692899823188782 L 4.999701023101807 5.692699909210205 L 2.002700805664062 5.69249963760376 L 2.002500772476196 17.69289970397949 L 26.00010108947754 17.69289970397949 M 26.00010108947754 19.69289970397949 L 2.002500772476196 19.69289970397949 C 0.8982008099555969 19.69289970397949 0.002700811717659235 18.79739952087402 0.002700811717659235 17.69309997558594 L 0.002700811717659235 5.69249963760376 C 0.002700811717659235 4.588199615478516 0.8982008099555969 3.692699909210205 2.002500772476196 3.692699909210205 L 2.999700784683228 3.692699909210205 L 2.999700784683228 1.692899823188782 C 2.999700784683228 0.5885998606681824 3.895200729370117 -0.3069001734256744 5.000401020050049 -0.3069001734256744 L 9.999900817871094 -0.3069001734256744 C 11.10420036315918 -0.3069001734256744 11.99970054626465 0.5885998606681824 11.99970054626465 1.692899823188782 L 11.99970054626465 3.692699909210205 L 15.99930095672607 3.692699909210205 L 15.99930095672607 1.692899823188782 C 15.99930095672607 0.5885998606681824 16.89480018615723 -0.3069001734256744 18 -0.3069001734256744 L 22.9995002746582 -0.3069001734256744 C 24.10380172729492 -0.3069001734256744 24.99930000305176 0.5885998606681824 24.99930000305176 1.692899823188782 L 24.99930000305176 3.692699909210205 L 26.00010108947754 3.692699909210205 C 27.10440063476562 3.692699909210205 27.99990081787109 4.588199615478516 27.99990081787109 5.69249963760376 L 27.99990081787109 17.69309997558594 C 27.99990081787109 18.79739952087402 27.10440063476562 19.69289970397949 26.00010108947754 19.69289970397949 Z" stroke="none" fill="#000"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 4.333)"><g transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-width="2"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11" fill="none"/></g><g transform="translate(7.667 7.666)" stroke="#000" stroke-width="1"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3.5" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.33)"><g transform="translate(-6 -7.907)" fill="none" stroke-miterlimit="10"><path d="M30,10.576H6a1.836,1.836,0,0,0-2,2v11a1.812,1.812,0,0,0,2,2H9v3a1.843,1.843,0,0,0,2,2H25a1.843,1.843,0,0,0,2-2v-3h3a1.836,1.836,0,0,0,2-2v-11A1.836,1.836,0,0,0,30,10.576Z" stroke="none"/><path d="M 6 12.576171875 L 6 23.576171875 L 11 23.576171875 L 11 28.576171875 L 25 28.576171875 L 25 23.576171875 L 30 23.576171875 L 30 12.576171875 L 6 12.576171875 M 6 10.576171875 L 30 10.576171875 C 31.24250030517578 10.576171875 32 11.31110191345215 32 12.576171875 L 32 23.576171875 C 32 24.84242248535156 31.24250030517578 25.576171875 30 25.576171875 L 27 25.576171875 L 27 28.576171875 C 27 29.83410263061523 26.23550033569336 30.576171875 25 30.576171875 L 11 30.576171875 C 9.764499664306641 30.576171875 9 29.83410263061523 9 28.576171875 L 9 25.576171875 L 6 25.576171875 C 4.701169967651367 25.57317161560059 4 24.84242248535156 4 23.576171875 L 4 12.576171875 C 4 11.31110191345215 4.757499694824219 10.576171875 6 10.576171875 Z" stroke="none" fill="#000"/></g><line x2="3" transform="translate(17 8.67)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(7 -2.33)"><path d="M20.627,6.587h-2v-2Z" transform="translate(-10.626 -4.589)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M10.726,10.585v-4a1.8,1.8,0,0,1,2-2h6l2,2v4" transform="translate(-10.726 -4.585)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(-4.635 -2.314)" fill="none" stroke-miterlimit="10"><path d="M7.635,15.984h18v7a2.3,2.3,0,0,1-2.25,2H9.885a2.3,2.3,0,0,1-2.25-2Z" stroke="none"/><path d="M 9.635080337524414 17.9839973449707 L 9.635282516479492 22.8363094329834 C 9.701507568359375 22.90571784973145 9.820964813232422 22.97884559631348 9.885278701782227 22.98437881469727 L 23.38172912597656 22.98437881469727 C 23.44999313354492 22.97712707519531 23.5690975189209 22.90340614318848 23.63525199890137 22.8337516784668 L 23.63505172729492 17.9839973449707 L 9.635080337524414 17.9839973449707 M 7.634998321533203 15.9839973449707 L 25.63496780395508 15.9839973449707 L 25.63525772094727 22.98437881469727 C 25.63525772094727 23.98057746887207 24.51025772094727 24.98437881469727 23.38525772094727 24.98437881469727 L 9.885278701782227 24.98437881469727 C 8.760288238525391 24.98437881469727 7.635288238525391 23.98664855957031 7.635288238525391 22.98437881469727 L 7.634998321533203 15.9839973449707 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.668 4)"><g transform="translate(17.333 -1)"><line x2="10" transform="translate(-1.001 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="10" transform="translate(3.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(1.332 1.332)"><path d="M7913.624,19587.336a3,3,0,0,1,0-5.328,6,6,0,0,1,10.761,0,3,3,0,0,1,0,5.328,6,6,0,0,1-10.752,0Z" transform="translate(-7912 -19576.002)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M0,0A8,8,0,0,1,8,8a8,8,0,0,1-8,8" transform="translate(-1 24.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><rect width="6" height="6" rx="3" transform="translate(0 5.668)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><rect width="6" height="6" rx="3" transform="translate(8 5.668)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 5.334)"><path d="M8031.2,19589.588a4,4,0,0,1,0-7.84,7.005,7.005,0,0,1,11.6,0,4,4,0,0,1,0,7.84,7,7,0,0,1-11.6,0Z" transform="translate(-8029 -19579)" fill="rgba(0,0,0,0)" stroke="#000" stroke-width="2"/><path d="M0,0A9,9,0,0,1,9,9a9,9,0,0,1-9,9" transform="translate(-1 24.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><rect width="8" height="8" rx="4" transform="translate(-1 2.666)" fill="none" stroke="#000" stroke-width="2"/><rect width="8" height="8" rx="4" transform="translate(9 2.666)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M6085.649,17680.67a2.22,2.22,0,0,1-1.7-.791,11.534,11.534,0,0,1-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977,8.977,0,0,0,2.095,4.131.216.216,0,0,0,.173.076.239.239,0,0,0,.165-.066l10.788-10.789a.22.22,0,0,0,.066-.172.228.228,0,0,0-.08-.164,8.88,8.88,0,0,0-4.362-2.127l1.665-1.664a11.609,11.609,0,0,1,3.984,2.26,2.23,2.23,0,0,1,.138,3.283l-10.784,10.789A2.239,2.239,0,0,1,6085.649,17680.67Zm-5.938-11.289v0l-3.789-3.785a.215.215,0,0,0-.155-.066l-1.509-.008a1.6,1.6,0,0,1-1.123-2.725l7.655-7.66a1.6,1.6,0,0,1,2.729,1.123l.009,1.508a.219.219,0,0,0,.066.16l3.786,3.785-1.414,1.414-3.787-3.783a2.244,2.244,0,0,1-.652-1.566l0-.541-6.292,6.293h.545a2.217,2.217,0,0,1,1.563.652l3.788,3.787-1.414,1.412Z" transform="translate(-6075 -17657)"/><line x2="5" y2="5" transform="translate(17.667 17.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="24" x2="24" transform="translate(-1.333 -1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M30.342,17.819c-3.424-2.88-6.319-2.55-7.566-2.2a1.227,1.227,0,0,1-1.209-.309L15.994,9.739a1.224,1.224,0,0,1-.359-.86l-.007-1.509a.6.6,0,0,0-1.02-.418L6.951,14.608a.6.6,0,0,0,.418,1.02l1.509.007a1.224,1.224,0,0,1,.86.359l5.572,5.572a1.227,1.227,0,0,1,.309,1.209c-.352,1.248-.682,4.142,2.2,7.566a1.235,1.235,0,0,0,1.811.074L30.416,19.63A1.235,1.235,0,0,0,30.342,17.819Z" transform="translate(-8.108 -8.108)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="5" y2="5" transform="translate(17.667 17.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.667)"><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><g transform="translate(-0.667 18.332)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><g transform="translate(18.333 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="9" height="9" rx="2" stroke="none"/><rect x="1" y="1" width="7" height="7" rx="1" fill="none"/></g><path d="M128.927,78h12v3" transform="translate(-128.594 -64.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="7" transform="translate(13.333 0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="8" transform="translate(26.333 11.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M138.928,87.084V89.75h5v-8" transform="translate(-126.594 -63.417)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M143.5,78h5v3" transform="translate(-126.167 -64.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0V3H3" transform="translate(23.333 26.333) rotate(-90)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.667)"><circle cx="14" cy="14" r="14" transform="translate(-0.667 -0.666)"/><path d="M10.943,10.016A5.2,5.2,0,0,1,17.5,7.1a4.5,4.5,0,0,1,3.442,4.859c0,3.236-5,4.859-5,4.859" transform="translate(-2.61 -2.485)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y1="2" transform="translate(13.333 20.334)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.999 3)"><g transform="translate(-0.999 -1)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6)"><path d="M28.834,10.7h-15c-4.37,0-7,2.68-7,5.984V16.7c0,3.305,2.629,6,7,6h5.1" transform="translate(-6.834 -4.7)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M6.127,7.285l6,6-6,6" transform="translate(11.872 -7.285)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.267 4.334)"><g transform="translate(0 3.2)"><line x2="3" y2="3" transform="translate(2.733 3.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(-1.267 -0.533)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(10.667 1)"><line y2="4" transform="translate(1.066 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(-0.934 -1.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(17.133 2.2)"><line x1="3" y2="3" transform="translate(0.6 4.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(3.6 0.467)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(-1.267 0.666)"><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -3.68)" fill="none" stroke-miterlimit="10"><path d="M22,18.679a4,4,0,1,1,1.172,2.828A3.992,3.992,0,0,1,22,18.679Z" stroke="none"/><path d="M 26.00000190734863 16.67899894714355 C 25.46699523925781 16.67899894714355 24.96502685546875 16.88645172119141 24.58621215820312 17.26321601867676 C 24.20816230773926 17.6433162689209 24.00000190734863 18.1460018157959 24.00000190734863 18.67899894714355 C 24.00000190734863 19.21070861816406 24.20815277099609 19.71267509460449 24.58621406555176 20.09278106689453 C 24.96631050109863 20.47083282470703 25.46829223632812 20.67899894714355 26.00000190734863 20.67899894714355 C 26.53262138366699 20.67899894714355 27.03540229797363 20.47011947631836 27.41376113891602 20.09280967712402 C 27.79180145263672 19.71474838256836 28.00000190734863 19.21264839172363 28.00000190734863 18.67899894714355 C 28.00000190734863 18.1440486907959 27.79180145263672 17.64124870300293 27.41572189331055 17.2651481628418 C 27.03669166564941 16.88716888427734 26.53391265869141 16.67899894714355 26.00000190734863 16.67899894714355 M 26.00000190734863 14.67899894714355 C 27.10599136352539 14.67899894714355 28.10200119018555 15.12499809265137 28.8279914855957 15.8489990234375 C 29.55398178100586 16.57499885559082 30.00000190734863 17.572998046875 30.00000190734863 18.67899894714355 C 30.00000190734863 19.78499984741211 29.55398178100586 20.7809886932373 28.8279914855957 21.50699996948242 C 28.10200119018555 22.23099899291992 27.10599136352539 22.67899894714355 26.00000190734863 22.67899894714355 C 24.89400100708008 22.67899894714355 23.89800262451172 22.23099899291992 23.1720027923584 21.50699996948242 C 22.44800186157227 20.7809886932373 22.00000190734863 19.78499984741211 22.00000190734863 18.67899894714355 C 22.00000190734863 17.572998046875 22.44800186157227 16.57499885559082 23.1720027923584 15.8489990234375 C 23.89800262451172 15.12499809265137 24.89400100708008 14.67899894714355 26.00000190734863 14.67899894714355 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.889)"><path d="M23.732,22.791A9.7,9.7,0,0,1,16.536,26a9.9,9.9,0,0,1-9.8-10" transform="translate(-4.732 -6.889)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M9.767,9.329a10.225,10.225,0,0,1,6.837-2.6,10.083,10.083,0,0,1,10.163,10" transform="translate(-4.767 -7.618)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M9.5,17.387l-3-3-3,3" transform="translate(-4.5 -7.276)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M22.047,14.387l3,3,3-3" transform="translate(-3.047 -6.275)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(1.667 1.667)"><g transform="translate(0.333 0.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><line x2="10" transform="translate(9.333 14.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 16)"><line x2="24" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 8)"><line x2="24" transform="translate(-4 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="24" transform="translate(-4 6)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M77.813,6.868l-4-4-4,4" transform="translate(-65.813 -6.868)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M8,4,4,0,0,4" transform="translate(12 19.999) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 6.333)"><path d="M-351,67l4,4-4,4" transform="translate(369.666 -68.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-347,75l-4-4,4-4" transform="translate(351.667 -54.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-365,77V74a3.177,3.177,0,0,1,3.331-3H-345" transform="translate(365.667 -68.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-345,71v3a3.177,3.177,0,0,1-3.331,3H-365" transform="translate(367.667 -60.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.664 5.334)"><g transform="translate(16.002 8.667)"><path d="M0,0,3,3,6,0" transform="translate(5.333 1.999) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="6" transform="translate(2.333 1)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g><g transform="translate(0.336 -0.334)" fill="none"><path d="M1,21a2,2,0,0,1-2-2V2.407A2.53,2.53,0,0,1,1.287.006l8,0,1.113,0L12.7,3H25a2,2,0,0,1,2,2V19a2,2,0,0,1-2,2Z" stroke="none"/><path d="M 25.00020027160645 18.99970054626465 L 25 18.99900054931641 L 25.00020027160645 4.999700546264648 L 11.70983982086182 4.999700546264648 L 9.409381866455078 2.002314805984497 L 9.282688140869141 2.001802682876587 L 1.337342143058777 2.006272792816162 C 1.205820202827454 2.058528900146484 1.014733791351318 2.28501296043396 1.000099539756775 2.410799026489258 L 0.9998995661735535 18.99970054626465 L 25.00020027160645 18.99970054626465 M 25.00020027160645 20.99970054626465 L 0.9998995661735535 20.99970054626465 C -0.1044004112482071 20.99970054626465 -0.9999004006385803 20.10420036315918 -0.9999004006385803 18.99900054931641 L -0.9999004006385803 4.999500751495361 C -0.9999004006385803 4.199270725250244 -0.9999004006385803 3.10088062286377 -0.9999004006385803 2.406600475311279 C -0.9999004006385803 1.206900596618652 0.1448995918035507 0.01350054144859314 1.286999583244324 0.006300541572272778 L 9.285299301147461 0.001800541649572551 L 10.39859962463379 0.006300541572272778 L 12.69599914550781 2.999700546264648 L 25.00020027160645 2.999700546264648 C 26.10449981689453 2.999700546264648 27 3.89430046081543 27 4.999500751495361 L 27 18.99900054931641 C 27 20.10420036315918 26.10449981689453 20.99970054626465 25.00020027160645 20.99970054626465 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><path d="M1227.935,11.832a5.461,5.461,0,0,1-4,4m0-12a5.459,5.459,0,0,1,4,4m-12,0a5.46,5.46,0,0,1,4-4m0,12a5.454,5.454,0,0,1-4-4" transform="translate(-1209.935 2.169)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M1233.8,13.838c-.814,5.444-3.307,7.016-7.856,7.856m0-22c4.456.92,7.018,3.384,7.856,7.856m-22,0c.92-4.451,3.388-7.016,7.856-7.856m0,22c-4.55-.846-7-3.308-7.856-7.856" transform="translate(-1210.806 1.305)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="6" height="8" rx="1.333" transform="translate(9 17)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="8" height="6" rx="1.333" transform="translate(17 9)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="8" height="6" rx="1.333" transform="translate(-1 9)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><rect width="6" height="8" rx="1.333" transform="translate(9 -1)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.999 6.664)"><path d="M-2869.324,227.505v-6h-6" transform="translate(2894.325 -223.169)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2875.273,241.905h6v-6" transform="translate(2894.274 -221.568)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2890.122,221.558h-6v6" transform="translate(2895.123 -223.223)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2896.071,235.958v6h6" transform="translate(2895.071 -221.62)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2891.323,236.307h6v-2h-2v-8l-4,1v2l2-.65v5.668l-2-.018Z" transform="translate(2894.323 -221.971)"/><path d="M-2891.323,236.307h6v-2h-2v-8l-4,1v2l2-.65v5.668l-2-.018Z" transform="translate(2906.321 -221.971)"/><path d="M-2884.119,229.906h2v-2h-2Zm0,4h2v-2h-2Z" transform="translate(2895.12 -221.571)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.647 3.766)"><path d="M-2071.62,162.412l-4-4-4,4" transform="translate(2085.973 -155.177)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-2079.594,167.061l4,4,4-4" transform="translate(2085.947 -149.823)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="22" transform="translate(-0.647 -0.766)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="22" transform="translate(-0.647 25.234)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(28 5.332) rotate(90)"><path d="M8,4,4,0,0,4" transform="translate(6.669 3)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0,0,4,4,8,0" transform="translate(6.668 17.001)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="22" transform="translate(-0.332 -1)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="22" transform="translate(-0.332 25)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g transform="translate(0 0)"><line x2="10" y2="10" transform="translate(15 15)" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="9" cy="9" r="9" stroke="none"/><circle cx="9" cy="9" r="8" fill="none"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 5.333)"><rect width="10" height="5" rx="0.5" transform="translate(11.667 0.666)" fill="none" stroke="#000" stroke-width="2"/><path d="M813.017,75.449h1.258V71.436l-1.376.353V70.424l2.887-.7v5.728H816.9v1.272h-3.882Z" transform="translate(-812.232 -70.055)"/><path d="M812.712,81.876a1.875,1.875,0,0,1,1.144-1.939l1.211-.639a.681.681,0,0,0,.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309,0-.455.156-.455.522v.747H812.7v-.67c0-1.3.626-1.937,1.758-1.937h.455c1.139,0,1.756.643,1.756,1.914v.37a1.859,1.859,0,0,1-1.142,1.916l-1.206.641a.629.629,0,0,0-.372.639v.224H816.7v1.3h-3.984Z" transform="translate(-812.028 -61.682)"/><g transform="translate(10.667 9.667)"><g transform="translate(1 4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="8" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="6" rx="1" fill="none"/></g><path d="M259.1,8V6.7a1.869,1.869,0,0,1,2-1.7h0a1.869,1.869,0,0,1,2,1.7V8" transform="translate(-255.095 -3.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4.001)"><g transform="translate(-5 -5.016)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M15.478,29.016h3.044l.372-2.988.516-.142a9.112,9.112,0,0,0,2.153-.892l.467-.269,2.378,1.856,2.156-2.156-1.856-2.378.271-.468a9.139,9.139,0,0,0,.892-2.153l.142-.515L29,18.538V15.493l-2.987-.371-.142-.516a9.123,9.123,0,0,0-.893-2.155l-.269-.467,1.856-2.378L24.408,7.451,22.03,9.308l-.467-.271a9.131,9.131,0,0,0-2.153-.892L18.894,8l-.372-2.987H15.478L15.106,8l-.516.142a9.131,9.131,0,0,0-2.153.892l-.467.271L9.592,7.451,7.436,9.607l1.856,2.378-.269.468a9.106,9.106,0,0,0-.893,2.152l-.142.517L5,15.493v3.045l2.987.372.142.516a9.106,9.106,0,0,0,.893,2.152l.269.468L7.436,24.424,9.592,26.58l2.378-1.856.467.269a9.131,9.131,0,0,0,2.153.892l.516.142Z" stroke="none"/><path d="M 18.52182006835938 29.01599884033203 L 18.89381980895996 26.02798843383789 L 19.40982055664062 25.88616943359375 C 20.17782020568848 25.67562866210938 20.90327072143555 25.37562942504883 21.56327056884766 24.99380874633789 L 22.03017997741699 24.7243595123291 L 24.40835952758789 26.57999801635742 L 26.56399917602539 24.42435836791992 L 24.70836067199707 22.04617881774902 L 24.97891044616699 21.57817840576172 C 25.3596305847168 20.91817855834961 25.66072082519531 20.19381904602051 25.87126922607422 19.42472839355469 L 26.01309013366699 18.90980911254883 L 29 18.53780937194824 L 29 15.493088722229 L 26.01309013366699 15.12217903137207 L 25.87126922607422 14.60617923736572 C 25.66072082519531 13.8370885848999 25.3596305847168 13.1127290725708 24.97781944274902 12.45162868499756 L 24.70836067199707 11.98472881317139 L 26.56399917602539 9.606549263000488 L 24.40835952758789 7.450908660888672 L 22.03017997741699 9.307628631591797 L 21.56327056884766 9.037088394165039 C 20.90217971801758 8.655268669128418 20.17782020568848 8.355268478393555 19.40982055664062 8.144728660583496 L 18.89381980895996 8.002908706665039 L 18.52182006835938 5.015998840332031 L 15.47817993164062 5.015998840332031 L 15.10618019104004 8.002908706665039 L 14.59018039703369 8.144728660583496 C 13.82217979431152 8.355268478393555 13.09782028198242 8.655268669128418 12.43671989440918 9.037088394165039 L 11.96982002258301 9.307628631591797 L 9.591640472412109 7.450908660888672 L 7.435999870300293 9.606549263000488 L 9.291640281677246 11.98472881317139 L 9.02217960357666 12.45272922515869 C 8.640359878540039 13.1127290725708 8.339269638061523 13.8370885848999 8.128729820251465 14.60508918762207 L 7.986909866333008 15.12217903137207 L 5 15.493088722229 L 5 18.53780937194824 L 7.986909866333008 18.90980911254883 L 8.128729820251465 19.42580795288086 C 8.339269638061523 20.19381904602051 8.640359878540039 20.91817855834961 9.02217960357666 21.57817840576172 L 9.291640281677246 22.04617881774902 L 7.435999870300293 24.42435836791992 L 9.591640472412109 26.57999801635742 L 11.96982002258301 24.7243595123291 L 12.43671989440918 24.99380874633789 C 13.09782028198242 25.37562942504883 13.82217979431152 25.67562866210938 14.59018039703369 25.88616943359375 L 15.10618019104004 26.02798843383789 L 15.47817993164062 29.01599884033203 L 18.52182006835938 29.01599884033203 M 18.52182006835938 31.01599884033203 L 15.47817993164062 31.01599884033203 C 14.46916007995605 31.01599884033203 13.61816024780273 30.26437950134277 13.49349975585938 29.26308822631836 L 13.28295421600342 27.57192802429199 C 12.89928817749023 27.43700408935547 12.52572917938232 27.28253555297852 12.16434860229492 27.1093692779541 L 10.82198047637939 28.15678977966309 C 10.02582836151123 28.77800941467285 8.891489028930664 28.70826721191406 8.177430152893066 27.99420928955078 L 6.021790027618408 25.83856964111328 C 5.307730197906494 25.12450790405273 5.237989902496338 23.99016952514648 5.859210014343262 23.19401931762695 L 6.906513690948486 21.85179901123047 C 6.73310375213623 21.49057579040527 6.57836389541626 21.11697769165039 6.443172931671143 20.73300170898438 L 4.752820014953613 20.5224781036377 C 3.751569986343384 20.39777946472168 3 19.54679870605469 3 18.53780937194824 L 3 15.493088722229 C 3 14.4838285446167 3.751970052719116 13.63270854949951 4.7535400390625 13.50832843780518 L 6.442961692810059 13.29853916168213 C 6.57808780670166 12.91475772857666 6.732914924621582 12.5409517288208 6.906588554382324 12.1792049407959 L 5.859210014343262 10.83688926696777 C 5.237989902496338 10.04073905944824 5.307730197906494 8.906398773193359 6.021790027618408 8.192338943481445 L 8.177430152893066 6.036698818206787 C 8.891640663146973 5.322489261627197 10.02628040313721 5.252888202667236 10.82242012023926 5.874458789825439 L 12.16393375396729 6.921821117401123 C 12.5256814956665 6.748451232910156 12.89920997619629 6.593982219696045 13.28300857543945 6.459001541137695 L 13.49351024627686 4.768818855285645 C 13.61820983886719 3.767568826675415 14.46918964385986 3.015998840332031 15.47817993164062 3.015998840332031 L 18.52182006835938 3.015998840332031 C 19.53080940246582 3.015998840332031 20.38179016113281 3.767568826675415 20.50649070739746 4.768818855285645 L 20.71698379516602 6.458948135375977 C 21.10081672668457 6.593932628631592 21.47461128234863 6.748507976531982 21.83613586425781 6.92176628112793 L 23.17757987976074 5.874458789825439 C 23.97371864318848 5.252890586853027 25.10835838317871 5.322486877441406 25.82257080078125 6.036698818206787 L 27.97821044921875 8.192338943481445 C 28.69227027893066 8.906398773193359 28.76201057434082 10.04073905944824 28.14079093933105 10.83688926696777 L 27.09351348876953 12.17907333374023 C 27.26710891723633 12.54099369049072 27.42185020446777 12.91482162475586 27.55687141418457 13.29851818084717 L 29.2464599609375 13.50832843780518 C 30.2480297088623 13.63270854949951 31 14.4838285446167 31 15.493088722229 L 31 18.53780937194824 C 31 19.54679870605469 30.2484302520752 20.39777946472168 29.2471809387207 20.5224781036377 L 27.55676460266113 20.73300933837891 C 27.42190361022949 21.11624908447266 27.26727294921875 21.48989295959473 27.09364700317383 21.85200500488281 L 28.14079093933105 23.19401931762695 C 28.76201057434082 23.99016952514648 28.69227027893066 25.12450790405273 27.97821044921875 25.83856964111328 L 25.82257080078125 27.99420928955078 C 25.1085090637207 28.70827102661133 23.97417068481445 28.77800941467285 23.17802047729492 28.15678977966309 L 21.83590126037598 27.10956382751465 C 21.4750919342041 27.282470703125 21.10145378112793 27.4369068145752 20.71703720092773 27.57199859619141 L 20.50650024414062 29.26308822631836 C 20.38183975219727 30.26437950134277 19.53083992004395 31.01599884033203 18.52182006835938 31.01599884033203 Z" stroke="none" fill="#000"/></g><circle cx="5" cy="5" r="5" transform="translate(7 6.999)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4.333 4)"><g transform="translate(-0.333 8)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g transform="translate(14.667 17)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><g transform="translate(14.667 -1)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="4" cy="4" r="4" stroke="none"/><circle cx="4" cy="4" r="3" fill="none"/></g><line x1="9" y1="7" transform="translate(6.667 13)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x1="9" y2="6" transform="translate(6.667 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 4.418)"><g transform="translate(0 -0.416)" fill="none"><path d="M18.309,0a2,2,0,0,1,1.759,1.047l5.417,10a2,2,0,0,1,0,1.905l-5.417,10A2,2,0,0,1,18.309,24H7.691a2,2,0,0,1-1.759-1.047l-5.417-10a2,2,0,0,1,0-1.905l5.417-10A2,2,0,0,1,7.691,0Z" stroke="none"/><path d="M 7.691219329833984 2 L 2.27454948425293 12 L 7.691219329833984 22 L 18.30878067016602 22 L 23.72545051574707 12 L 18.30876922607422 2 L 7.691219329833984 2 M 7.691230773925781 0 L 18.30876922607422 0 C 19.04275894165039 0 19.71778106689453 0.4020500183105469 20.06735992431641 1.047430038452148 L 25.48402976989746 11.04743003845215 C 25.80591011047363 11.64169025421143 25.80591011047363 12.35830974578857 25.48402976989746 12.95256996154785 L 20.06735992431641 22.95256996154785 C 19.71778106689453 23.59794998168945 19.04275894165039 24 18.30876922607422 24 L 7.691219329833984 24 C 6.957239151000977 24 6.282220840454102 23.59794998168945 5.932640075683594 22.95256996154785 L 0.5159702301025391 12.95256996154785 C 0.1940898895263672 12.35830974578857 0.1940898895263672 11.64169025421143 0.5159702301025391 11.04743003845215 L 5.932640075683594 1.047430038452148 C 6.282230377197266 0.4020500183105469 6.957239151000977 0 7.691230773925781 0 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 1.666)"><rect width="6" height="6" rx="1" transform="translate(1.333 6.334)"/><path d="M3.132,1.519a1,1,0,0,1,1.736,0L7.145,5.5A1,1,0,0,1,6.277,7H1.723A1,1,0,0,1,.855,5.5Z" transform="translate(18.333 5.334)"/><path d="M2.393.464a1,1,0,0,1,1.214,0l1.839,1.4a1,1,0,0,1,.348,1.09L5.072,5.3a1,1,0,0,1-.955.7H1.884a1,1,0,0,1-.955-.7L.206,2.958a1,1,0,0,1,.348-1.09Z" transform="translate(10.333 1.334)"/><g transform="translate(0.333 3.334)"><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(9 24) rotate(-90)" fill="none" stroke="#000" stroke-width="2"/><g transform="translate(-13 -3.68)" fill="none" stroke-miterlimit="10"><path d="M22,18.679a4,4,0,1,1,1.172,2.828A3.992,3.992,0,0,1,22,18.679Z" stroke="none"/><path d="M 26.00000190734863 16.67899894714355 C 25.46699523925781 16.67899894714355 24.96502685546875 16.88645172119141 24.58621215820312 17.26321601867676 C 24.20816230773926 17.6433162689209 24.00000190734863 18.1460018157959 24.00000190734863 18.67899894714355 C 24.00000190734863 19.21070861816406 24.20815277099609 19.71267509460449 24.58621406555176 20.09278106689453 C 24.96631050109863 20.47083282470703 25.46829223632812 20.67899894714355 26.00000190734863 20.67899894714355 C 26.53262138366699 20.67899894714355 27.03540229797363 20.47011947631836 27.41376113891602 20.09280967712402 C 27.79180145263672 19.71474838256836 28.00000190734863 19.21264839172363 28.00000190734863 18.67899894714355 C 28.00000190734863 18.1440486907959 27.79180145263672 17.64124870300293 27.41572189331055 17.2651481628418 C 27.03669166564941 16.88716888427734 26.53391265869141 16.67899894714355 26.00000190734863 16.67899894714355 M 26.00000190734863 14.67899894714355 C 27.10599136352539 14.67899894714355 28.10200119018555 15.12499809265137 28.8279914855957 15.8489990234375 C 29.55398178100586 16.57499885559082 30.00000190734863 17.572998046875 30.00000190734863 18.67899894714355 C 30.00000190734863 19.78499984741211 29.55398178100586 20.7809886932373 28.8279914855957 21.50699996948242 C 28.10200119018555 22.23099899291992 27.10599136352539 22.67899894714355 26.00000190734863 22.67899894714355 C 24.89400100708008 22.67899894714355 23.89800262451172 22.23099899291992 23.1720027923584 21.50699996948242 C 22.44800186157227 20.7809886932373 22.00000190734863 19.78499984741211 22.00000190734863 18.67899894714355 C 22.00000190734863 17.572998046875 22.44800186157227 16.57499885559082 23.1720027923584 15.8489990234375 C 23.89800262451172 15.12499809265137 24.89400100708008 14.67899894714355 26.00000190734863 14.67899894714355 Z" stroke="none" fill="#000"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 6)"><g transform="translate(0 22) rotate(-90)" fill="none"><path d="M9.248,3.186a2,2,0,0,1,3.5,0l7.617,13.85A2,2,0,0,1,18.617,20H3.383A2,2,0,0,1,1.63,17.036Z" stroke="none"/><path d="M 11 4.150074005126953 L 3.382539749145508 17.9999942779541 L 18.61746025085449 18.00000381469727 L 11 4.150074005126953 M 11 2.15007209777832 C 11.68625259399414 2.15007209777832 12.37250518798828 2.495460510253906 12.7524299621582 3.186235427856445 L 20.3698902130127 17.03616523742676 C 21.10298919677734 18.36906433105469 20.1386604309082 19.9999942779541 18.61746025085449 19.9999942779541 L 3.382539749145508 19.9999942779541 C 1.861339569091797 19.9999942779541 0.8970108032226562 18.36906433105469 1.630109786987305 17.03616523742676 L 9.247570037841797 3.186235427856445 C 9.627494812011719 2.495460510253906 10.31374740600586 2.15007209777832 11 2.15007209777832 Z" stroke="none" fill="#000"/></g><line y2="18" transform="translate(23 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.667 5.333)"><g transform="translate(23.333 -0.334) rotate(90)" fill="none"><path d="M9.248,3.186a2,2,0,0,1,3.5,0l7.617,13.85A2,2,0,0,1,18.617,20H3.383A2,2,0,0,1,1.63,17.036Z" stroke="none"/><path d="M 11 4.150074005126953 L 3.382539749145508 17.9999942779541 L 18.61746025085449 18.00000381469727 L 11 4.150074005126953 M 11 2.15007209777832 C 11.68625259399414 2.15007209777832 12.37250518798828 2.495460510253906 12.7524299621582 3.186235427856445 L 20.3698902130127 17.03616523742676 C 21.10298919677734 18.36906433105469 20.1386604309082 19.9999942779541 18.61746025085449 19.9999942779541 L 3.382539749145508 19.9999942779541 C 1.861339569091797 19.9999942779541 0.8970108032226562 18.36906433105469 1.630109786987305 17.03616523742676 L 9.247570037841797 3.186235427856445 C 9.627494812011719 2.495460510253906 10.31374740600586 2.15007209777832 11 2.15007209777832 Z" stroke="none" fill="#000"/></g><line y2="18" transform="translate(0.333 1.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.666 4.333)"><g transform="translate(-0.666 1.668)" fill="none" stroke="#000" stroke-width="2"><rect width="28" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="26" height="16" rx="2" fill="none"/></g><line x2="16" transform="translate(5.334 8.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="10" transform="translate(5.334 12.668)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(3.465 18.261)" fill="none"><path d="M1.869.406h5l-5,5Z" stroke="none"/><path d="M 1.86865234375 0.40631103515625 L 6.86865234375 0.40631103515625 L 1.868662357330322 5.40631103515625 L 1.86865234375 0.40631103515625 Z" stroke="none" fill="#000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(-15882 -15443)" fill="none"><path d="M15906,15467h-15.243a3.207,3.207,0,0,1-.322-.017c-.144.011-.29.017-.437.017a6,6,0,0,1-1.951-11.676,5,5,0,0,1,6.516-4.073,8,8,0,0,1,14.434,4.549,6,6,0,0,1-2.692,11.192c-.073,0-.146.008-.221.008Z" stroke="none"/><path d="M 15906.0830078125 15464.9990234375 C 15906.107421875 15464.9990234375 15906.13671875 15464.998046875 15906.1708984375 15464.99609375 L 15906.2041015625 15464.994140625 C 15908.333984375 15464.8876953125 15910.001953125 15463.1337890625 15910.001953125 15461.0009765625 C 15910.001953125 15459.5751953125 15909.2333984375 15458.2451171875 15907.99609375 15457.53125 L 15907.0244140625 15456.9697265625 L 15906.9970703125 15455.8486328125 C 15906.9580078125 15454.27734375 15906.31640625 15452.8056640625 15905.1904296875 15451.7060546875 C 15904.064453125 15450.6044921875 15902.5751953125 15449.998046875 15901 15449.998046875 C 15899.0771484375 15449.998046875 15897.31640625 15450.8876953125 15896.1708984375 15452.4384765625 L 15895.3125 15453.6005859375 L 15893.939453125 15453.150390625 C 15893.63671875 15453.05078125 15893.3212890625 15453.0009765625 15893.0009765625 15453.0009765625 C 15891.505859375 15453.0009765625 15890.228515625 15454.1142578125 15890.029296875 15455.5908203125 L 15889.86328125 15456.8125 L 15888.6982421875 15457.2138671875 C 15887.083984375 15457.7705078125 15886 15459.2919921875 15886 15461.0009765625 C 15886 15463.205078125 15887.7939453125 15464.9990234375 15889.998046875 15464.9990234375 C 15890.0908203125 15464.9990234375 15890.1875 15464.9951171875 15890.28515625 15464.98828125 L 15890.4609375 15464.974609375 L 15890.6357421875 15464.9921875 C 15890.677734375 15464.9970703125 15890.71875 15464.9990234375 15890.7568359375 15464.9990234375 L 15906.0830078125 15464.9990234375 M 15906.0830078125 15466.9990234375 L 15890.7568359375 15466.9990234375 C 15890.6484375 15466.9990234375 15890.541015625 15466.9931640625 15890.4345703125 15466.982421875 C 15890.291015625 15466.9931640625 15890.14453125 15466.9990234375 15889.998046875 15466.9990234375 C 15886.6875 15466.9990234375 15884 15464.3154296875 15884 15461.0009765625 C 15884 15458.3701171875 15885.693359375 15456.1337890625 15888.046875 15455.3232421875 C 15888.376953125 15452.880859375 15890.4677734375 15451.0009765625 15893.0009765625 15451.0009765625 C 15893.5458984375 15451.0009765625 15894.0712890625 15451.0888671875 15894.5625 15451.25 C 15896.01953125 15449.27734375 15898.3603515625 15447.998046875 15901 15447.998046875 C 15905.349609375 15447.998046875 15908.888671875 15451.4716796875 15908.99609375 15455.798828125 C 15910.7919921875 15456.8359375 15912.001953125 15458.77734375 15912.001953125 15461.0009765625 C 15912.001953125 15464.212890625 15909.4765625 15466.8330078125 15906.3037109375 15466.9912109375 C 15906.23046875 15466.99609375 15906.1572265625 15466.9990234375 15906.0830078125 15466.9990234375 Z" stroke="none" fill="#000"/></g><g transform="translate(-471 -1732)"><line y2="5" transform="translate(487 1746)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(485 1745)" fill="none" stroke="#000" stroke-width="2"><circle cx="2" cy="2" r="2" stroke="none"/><circle cx="2" cy="2" r="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.333 3.334)"><path d="M13,0l3.069,9.931H26l-8.034,6.138L21.034,26,13,19.862,4.966,26l3.069-9.931L0,9.931H9.931Z" transform="translate(-0.333 -0.334)" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.333 3.334)"><path d="M13,0l3.069,9.931H26l-8.034,6.138L21.034,26,13,19.862,4.966,26l3.069-9.931L0,9.931H9.931Z" transform="translate(-0.333 -0.334)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.001 4.005)"><rect width="6" height="14" rx="2.005" transform="translate(0.999 9.995)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><path d="M27.146,16.585H25.92l.1-.678h1.13a1.678,1.678,0,0,0,0-3.354H24.431l-3.951-.083s.855-6.084-2.775-8.125c-2.33-1.177-2.764,1.065-2.764,1.065V9.647l-1.385,1.412s-2.771,2.62-2.771,4.264l0,9.857A2.622,2.622,0,0,0,13.557,28H24.89a1.678,1.678,0,0,0,0-3.354h-.111l.1-.679h1.143a1.677,1.677,0,0,0,0-3.353h-.668l.1-.679h1.7a1.678,1.678,0,0,0,0-3.354Z" transform="translate(-3.787 -4.01)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 4)"><g transform="translate(4 4)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7" fill="none"/></g><line y1="2" transform="translate(12 -1)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="2" transform="translate(12 23)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(23 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" transform="translate(-1 12)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" y2="1" transform="translate(21 21)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="1" y2="1" transform="translate(2 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" x2="1" transform="translate(21 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="1" x2="1" transform="translate(2 21)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 9.333)"><g transform="translate(-563.607 52.128)" fill="none" stroke-miterlimit="10"><path d="M567.607-38.461a8,8,0,0,1,8-8,8,8,0,0,1,8,8Z" stroke="none"/><path d="M 581.2648315429688 -40.46073913574219 C 580.4393920898438 -42.78897857666016 578.2149658203125 -44.46099853515625 575.6073608398438 -44.46099853515625 C 572.9996948242188 -44.46099853515625 570.7752075195312 -42.78897857666016 569.94970703125 -40.46073913574219 L 581.2648315429688 -40.46073913574219 M 583.6075439453125 -38.46073913574219 L 567.6069946289062 -38.46073913574219 C 567.6069946289062 -42.88000869750977 571.1881103515625 -46.46099853515625 575.6073608398438 -46.46099853515625 C 580.026611328125 -46.46099853515625 583.6075439453125 -42.88000869750977 583.6075439453125 -38.46073913574219 Z" stroke="none" fill="#000"/></g><line y1="3" transform="translate(12 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="26" transform="translate(-1 12.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="2" y2="2" transform="translate(2 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="2" x2="2" transform="translate(20 2.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 4.335)"><path d="M9,10.872c0-3.314,3.134-6,7-6s7,2.686,7,6" transform="translate(-5.333 -4.206)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-0.333 6.666)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="8" height="10" rx="2.004" stroke="none"/><rect x="1" y="1" width="6" height="8" rx="1.004" fill="none"/></g><g transform="translate(13.667 6.666)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"><rect width="8" height="10" rx="2.004" stroke="none"/><rect x="1" y="1" width="6" height="8" rx="1.004" fill="none"/></g><path d="M22.159,19.35v2.4a3.5,3.5,0,0,1-3.363,3.6h-.633" transform="translate(-4.492 -3.684)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><circle cx="2" cy="2" r="2" transform="translate(9.667 19.666)" 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="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 2.668)"><g transform="translate(-433.833 365.795)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M455.5-365.27h-15c-1.5,0-2,.5-2,2v8c0,1.5.5,2,2,2h2l.465,2.389c.261,1,1.242-.071,1.535-.389l2-2h9c1.5,0,2-.5,2-2v-8C457.5-364.773,457-365.27,455.5-365.27Z" stroke="none"/><path d="M 440.5 -363.26953125 L 440.5 -355.26953125 L 442.5 -355.26953125 C 443.3448486328125 -355.26953125 444.0851745605469 -354.7411193847656 444.3731079101562 -353.9710693359375 L 445.0857849121094 -354.6837463378906 C 445.4608459472656 -355.0588073730469 445.9695739746094 -355.26953125 446.5 -355.26953125 L 455.5 -355.26953125 L 455.5 -363.26953125 L 440.5 -363.26953125 M 440.5 -365.26953125 L 455.5 -365.26953125 C 456.9957580566406 -365.26953125 457.5 -364.7734375 457.5 -363.26953125 L 457.5 -355.26953125 C 457.5 -353.7693176269531 456.9963684082031 -353.26953125 455.5 -353.26953125 L 446.5 -353.26953125 L 444.5 -351.26953125 C 444.2065124511719 -350.9519958496094 443.2256164550781 -349.876953125 442.96484375 -350.880859375 L 442.5 -353.26953125 L 440.5 -353.26953125 C 439.000244140625 -353.26953125 438.5 -353.7741088867188 438.5 -355.26953125 L 438.5 -363.26953125 C 438.5 -364.7735900878906 438.9993286132812 -365.26953125 440.5 -365.26953125 Z" stroke="none" fill="#000"/></g><path d="M-427.017,67.611a.185.185,0,0,0-.073-.079.263.263,0,0,0-.1-.033l-.632-.1a.3.3,0,0,1-.127-.06.317.317,0,0,1-.094-.108l-.282-.6a.277.277,0,0,0-.068-.093.168.168,0,0,0-.11-.043.168.168,0,0,0-.11.043.277.277,0,0,0-.068.093l-.282.6a.317.317,0,0,1-.094.108.3.3,0,0,1-.127.06l-.632.1a.243.243,0,0,0-.125.054.178.178,0,0,0-.045.059.175.175,0,0,0-.017.075.206.206,0,0,0,.023.092.292.292,0,0,0,.054.074l.457.466a.308.308,0,0,1,.061.1.391.391,0,0,1,.025.132.217.217,0,0,1,0,.035l-.108.657h0a.322.322,0,0,0,0,.055.215.215,0,0,0,.043.137.162.162,0,0,0,.06.046.168.168,0,0,0,.07.015.248.248,0,0,0,.119-.034l.565-.31a.3.3,0,0,1,.137-.03.3.3,0,0,1,.137.03l.565.31a.247.247,0,0,0,.119.034.169.169,0,0,0,.071-.015.169.169,0,0,0,.08-.078.233.233,0,0,0,.023-.1.336.336,0,0,0,0-.055l-.108-.658h0a.214.214,0,0,1,0-.035.393.393,0,0,1,.026-.132.3.3,0,0,1,.062-.1l.457-.466a.293.293,0,0,0,.054-.074.206.206,0,0,0,.023-.092A.178.178,0,0,0-427.017,67.611Z" transform="translate(439.666 -62.167)"/><path d="M-427.017,67.611a.185.185,0,0,0-.073-.079.263.263,0,0,0-.1-.033l-.632-.1a.3.3,0,0,1-.127-.06.317.317,0,0,1-.094-.108l-.282-.6a.277.277,0,0,0-.068-.093.168.168,0,0,0-.11-.043.168.168,0,0,0-.11.043.277.277,0,0,0-.068.093l-.282.6a.317.317,0,0,1-.094.108.3.3,0,0,1-.127.06l-.632.1a.243.243,0,0,0-.125.054.178.178,0,0,0-.045.059.175.175,0,0,0-.017.075.206.206,0,0,0,.023.092.292.292,0,0,0,.054.074l.457.466a.308.308,0,0,1,.061.1.391.391,0,0,1,.025.132.217.217,0,0,1,0,.035l-.108.657h0a.322.322,0,0,0,0,.055.215.215,0,0,0,.043.137.162.162,0,0,0,.06.046.168.168,0,0,0,.07.015.248.248,0,0,0,.119-.034l.565-.31a.3.3,0,0,1,.137-.03.3.3,0,0,1,.137.03l.565.31a.247.247,0,0,0,.119.034.169.169,0,0,0,.071-.015.169.169,0,0,0,.08-.078.233.233,0,0,0,.023-.1.336.336,0,0,0,0-.055l-.108-.658h0a.214.214,0,0,1,0-.035.393.393,0,0,1,.026-.132.3.3,0,0,1,.062-.1l.457-.466a.293.293,0,0,0,.054-.074.206.206,0,0,0,.023-.092A.178.178,0,0,0-427.017,67.611Z" transform="translate(445.666 -62.167)"/><path d="M0,0A4,4,0,0,1,4,4,4,4,0,0,1,0,8" transform="translate(-1.333 27.332) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/><g transform="translate(-1.333 14.332)" fill="none" stroke="#000" stroke-width="2"><rect width="8" height="8" rx="4" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="3" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(-231 -1732.5)"><g transform="translate(233 1738.5)" fill="none" stroke="#000" stroke-width="2"><rect width="28" height="20" rx="2" stroke="none"/><rect x="1" y="1" width="26" height="18" rx="1" fill="none"/></g><line y2="20" transform="translate(242 1738.5)" fill="none" stroke="#000" stroke-width="2"/><line x2="26" transform="translate(234 1745.5)" fill="none" stroke="#000" stroke-width="2"/><line x2="26" transform="translate(234 1751.5)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 4.334)"><line y2="24" transform="translate(10.667 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x1="12" transform="translate(4.667 23.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M0,0H8.816L11,2.292,8.816,5H0Z" transform="translate(10.667 2.665)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0H8.816L11,2.292,8.816,5H0Z" transform="translate(10.667 11.667) rotate(180)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 5.334)"><g transform="translate(0 -1.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="10" rx="1.996" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="0.996" fill="none"/></g><g transform="translate(0 12.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="10" rx="1.996" stroke="none"/><rect x="1" y="1" width="8" height="8" rx="0.996" fill="none"/></g><path d="M0,0V17.284L2.5,22,5,17.284V0Z" transform="matrix(0.966, 0.259, -0.259, 0.966, 18.694, -0.331)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 6.668)"><path d="M8.053,25.775h4.06V11.913L7.69,13.236V10.472L15.124,8.35V25.775H18.69V28.35H8.053Z" transform="translate(-7.69 -9.016)"/><path d="M8.053,25.775h4.06V11.913L7.69,13.236V10.472L15.124,8.35V25.775H18.69V28.35H8.053Z" transform="translate(5.309 -9.016)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 5.334)"><path d="M13.233,19.842H8.95l-.795,2.731H5.588l3.721-12h3.565l3.714,12H14.021Zm-.522-1.8-.758-2.614c-.288-1.013-.553-1.945-.866-3.121-.3,1.175-.577,2.108-.858,3.121l-.756,2.614Z" transform="translate(-4.255 -5.906)"/><path d="M22.653,16.128v7.358H20.945l-.208-.883-1.351.586a4.976,4.976,0,0,1-1.961.448c-1.692,0-2.773-1.143-2.773-3.135v-.177c0-1.85,1.135-2.917,3.676-2.917H20.4V15.865c0-.8-.278-1.253-1.151-1.253H18.5c-.742,0-1.143.246-1.143.948v.772H15.07V15.7c0-1.957,1.274-3.059,3.459-3.059h.68C21.34,12.637,22.653,13.578,22.653,16.128ZM20.4,19.137H18.275c-.889,0-1.3.272-1.3.942v.634c0,.67.331,1,.9,1a2.62,2.62,0,0,0,1.027-.23l1.5-.467Z" transform="translate(-1.319 -6.969)"/><path d="M25.077,9.238h2v24h-2Z" transform="translate(-1.744 -10.572)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.667 6.666)"><path d="M13.731,20.708H8.28L7.268,24.35H4l4.736-16h4.538L18,24.35H14.735Zm-.666-2.4L12.1,14.822c-.367-1.351-.7-2.594-1.1-4.161-.387,1.567-.734,2.81-1.092,4.161l-.963,3.486Z" transform="translate(-3.667 -7.016)"/><path d="M27.4,15.755v8.695H25.483l-.234-1.043-1.52.692a5.358,5.358,0,0,1-2.207.53c-1.9,0-3.118-1.351-3.118-3.7v-.21c0-2.184,1.277-3.447,4.135-3.447h2.328V15.444c0-.951-.312-1.482-1.294-1.482H22.73c-.835,0-1.286.291-1.286,1.121v.911H18.873v-.749c0-2.314,1.434-3.616,3.892-3.616h.763C25.927,11.629,27.4,12.742,27.4,15.755Zm-2.537,3.557H22.478c-1,0-1.468.32-1.468,1.112v.751c0,.792.373,1.183,1.007,1.183a2.821,2.821,0,0,0,1.155-.271l1.685-.55Z" transform="translate(-3.07 -7.295)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.667)"><g transform="translate(-0.667 -0.666)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><circle cx="14" cy="14" r="14" stroke="none"/><circle cx="14" cy="14" r="13" fill="none"/></g><path d="M13,7l-3,3,5,5" transform="translate(3.334 3.333)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 5.333)"><ellipse cx="4" cy="9" rx="4" ry="9" transform="translate(17 -2.334)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><path d="M26.946,4.8h-16.6q-4.4,0-4.4,4.588V30.8H23.013V15.507" transform="translate(-5.946 -7.133)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="1" transform="translate(13 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(8 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><line x2="1" transform="translate(3 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><ellipse cx="1" cy="2" rx="1" ry="2" transform="translate(20 4.666)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 4)"><g transform="translate(-0.667 4)" fill="none" stroke="#000" stroke-width="2"><circle cx="11" cy="11" r="11" stroke="none"/><circle cx="11" cy="11" r="10" fill="none"/></g><g transform="translate(4.333 9)" fill="none" stroke="#000" stroke-width="2"><circle cx="6" cy="6" r="6" stroke="none"/><circle cx="6" cy="6" r="5" fill="none"/></g><line y1="10" x2="10" transform="translate(10.333 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/><path d="M.379,1.035V5.278L2.5,7.4,4.621,5.278V1.035Z" transform="translate(23.798 -2) rotate(45)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 4)"><g transform="translate(1.667 0.999)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path d="M0,0H18a0,0,0,0,1,0,0V21a3,3,0,0,1-3,3H3a3,3,0,0,1-3-3V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M2,1H16a1,1,0,0,1,1,1V21a2,2,0,0,1-2,2H3a2,2,0,0,1-2-2V2A1,1,0,0,1,2,1Z" fill="none"/></g><line x2="22" transform="translate(-0.333 2)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(13.667 2) rotate(-180)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><path d="M0,0H6A0,0,0,0,1,6,0V2A1,1,0,0,1,5,3H1A1,1,0,0,1,0,2V0A0,0,0,0,1,0,0Z" stroke="none"/><path d="M1,1H5A0,0,0,0,1,5,1V2A0,0,0,0,1,5,2H1A0,0,0,0,1,1,2V1A0,0,0,0,1,1,1Z" fill="none"/></g><line y2="8" transform="translate(7.667 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="8" transform="translate(13.667 9)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(7.533 8.889)"><path d="M445.2,71l0,10c0,5.1,3.583,8,8,8s8-2.9,8-8l0-10" transform="translate(-444.733 -74.889)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line x2="20" transform="translate(-1.533 18.111)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 7.667)"><path d="M6.834,10.7h15c4.37,0,7,2.68,7,5.984V16.7c0,3.305-2.629,6-7,6h-5.1" transform="translate(-6.167 -6.366)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M12.127,7.285l-6,6,6,6" transform="translate(-7.46 -8.951)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M320.818,13.572l-1.277-1.277a4.48,4.48,0,0,1,0-6.385h0a4.479,4.479,0,0,1,6.386,0L327.2,7.186" transform="translate(-315.537 -5.906)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="4" transform="translate(10.667 13.666)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(-1.333 6.667)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="24" height="18" rx="3" stroke="none"/><rect x="1" y="1" width="22" height="16" rx="2" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(5.333 5.334)"><path d="M0,0,4,4,8,0" transform="translate(14.667 3.666) rotate(180)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line y2="14" transform="translate(10.667 -0.334)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M25-3V1H1V-3" transform="translate(-2.333 20.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3 3)"><g transform="translate(16.333)"><line x2="10" transform="translate(-0.333 5)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="10" transform="translate(4.667)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g><g transform="translate(1 4)" fill="none" stroke="#000" stroke-width="2"><rect width="14" height="14" rx="7" stroke="none"/><rect x="1" y="1" width="12" height="12" rx="6" fill="none"/></g><path d="M-2,10a8,8,0,1,1,16,0" transform="translate(2 17)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2.667 2.668)"><path d="M76.874,2.858,79.025,1.03a1.365,1.365,0,0,1,2.212.752l.713,2.8a1.394,1.394,0,0,0,1.413,1.075L86.131,5.5A1.439,1.439,0,0,1,87.5,7.47l-1,2.7a1.485,1.485,0,0,0,.54,1.738l2.327,1.575a1.486,1.486,0,0,1,0,2.433L87.041,17.5a1.485,1.485,0,0,0-.54,1.738l1,2.7a1.439,1.439,0,0,1-1.368,1.969l-2.768-.157a1.394,1.394,0,0,0-1.413,1.075l-.713,2.8a1.365,1.365,0,0,1-2.212.752l-2.152-1.828a1.337,1.337,0,0,0-1.747,0L72.975,28.38a1.365,1.365,0,0,1-2.212-.752l-.713-2.8a1.394,1.394,0,0,0-1.413-1.075l-2.768.157A1.439,1.439,0,0,1,64.5,21.94l1-2.7a1.485,1.485,0,0,0-.54-1.738l-2.327-1.575a1.486,1.486,0,0,1,0-2.433l2.327-1.575a1.485,1.485,0,0,0,.54-1.738l-1-2.7A1.439,1.439,0,0,1,65.869,5.5l2.768.157A1.394,1.394,0,0,0,70.05,4.583l.713-2.8a1.365,1.365,0,0,1,2.212-.752l2.152,1.828A1.337,1.337,0,0,0,76.874,2.858Z" transform="translate(-62.667 -1.372)"/><path d="M4,0A4,4,0,1,1,0,4,4,4,0,0,1,4,0Z" transform="translate(9.333 6.332)" fill="none" stroke="#fff" stroke-width="2"/><path d="M0,0A5,5,0,0,1,5,5a5,5,0,0,1-5,5" transform="translate(8.333 20.333) rotate(-90)" fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(8 5.333)"><rect width="14" height="14" rx="7" transform="translate(1 -0.334)" fill="none" stroke="#000" stroke-width="2"/><path d="M0,0A9,9,0,0,1,9,9a9,9,0,0,1-9,9" transform="translate(-1 24.666) rotate(-90)" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 7.998)"><g transform="translate(-64.858 -8.148)" stroke-linecap="round" stroke-linejoin="round"><path d="M 88.85825347900391 20.03581047058105 L 83.03926086425781 16.14837455749512 L 88.85825347900391 12.26094245910645 L 88.85825347900391 20.03581047058105 Z" stroke="none"/><path d="M 87.85825347900391 14.13161659240723 L 84.83943176269531 16.14837074279785 L 87.85825347900391 18.16512489318848 L 87.85825347900391 14.13161659240723 M 88.99422454833984 11.14837074279785 C 89.44100189208984 11.14842414855957 89.85825347900391 11.47965621948242 89.85825347900391 11.95493316650391 L 89.85825347900391 20.34182357788086 C 89.85825347900391 20.99623489379883 89.06737518310547 21.37754821777344 88.49726104736328 20.99726295471191 L 82.21866607666016 16.80279159545898 C 81.73812103271484 16.4822826385498 81.73812103271484 15.81446266174316 82.21866607666016 15.49395179748535 L 88.49726104736328 11.29948234558105 C 88.65332794189453 11.19538116455078 88.82582855224609 11.14835166931152 88.99422454833984 11.14837074279785 Z" stroke="none" fill="#000"/></g><path d="M8171,18694h-6.759l2-2H8171v-4.76l2-2v6.76A2,2,0,0,1,8171,18694Zm-14.983-.256v0A2,2,0,0,1,8155,18692v-10a2,2,0,0,1,2-2h12.759l-2,2H8157v10h.759l-1.741,1.74Z" transform="translate(-8155 -18679)"/><line y1="24" x2="24" transform="translate(0 -3.998)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 7.999)"><g transform="translate(-64.858 -8.148)" stroke-linecap="round" stroke-linejoin="round"><path d="M 88.85825347900391 20.03581047058105 L 83.03926086425781 16.14837455749512 L 88.85825347900391 12.26094245910645 L 88.85825347900391 20.03581047058105 Z" stroke="none"/><path d="M 87.85825347900391 14.13161659240723 L 84.83943176269531 16.14837074279785 L 87.85825347900391 18.16512489318848 L 87.85825347900391 14.13161659240723 M 88.99422454833984 11.14837074279785 C 89.44100189208984 11.14842414855957 89.85825347900391 11.47965621948242 89.85825347900391 11.95493316650391 L 89.85825347900391 20.34182357788086 C 89.85825347900391 20.99623489379883 89.06737518310547 21.37754821777344 88.49726104736328 20.99726295471191 L 82.21866607666016 16.80279159545898 C 81.73812103271484 16.4822826385498 81.73812103271484 15.81446266174316 82.21866607666016 15.49395179748535 L 88.49726104736328 11.29948234558105 C 88.65332794189453 11.19538116455078 88.82582855224609 11.14835166931152 88.99422454833984 11.14837074279785 Z" stroke="none" fill="#000"/></g><g transform="translate(0 1.002)" fill="none" stroke="#000" stroke-width="2"><rect width="18" height="14" rx="2" stroke="none"/><rect x="1" y="1" width="16" height="12" rx="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(7.709 9.695)"><g transform="translate(-3.709 -1.697)"><g transform="translate(-64.858 -8.148)" stroke-linecap="round" stroke-linejoin="round"><path d="M 88.85825347900391 20.03581047058105 L 83.03926086425781 16.14837455749512 L 88.85825347900391 12.26094245910645 L 88.85825347900391 20.03581047058105 Z" stroke="none"/><path d="M 87.85825347900391 14.13161659240723 L 84.83943176269531 16.14837074279785 L 87.85825347900391 18.16512489318848 L 87.85825347900391 14.13161659240723 M 88.99422454833984 11.14837074279785 C 89.44100189208984 11.14842414855957 89.85825347900391 11.47965621948242 89.85825347900391 11.95493316650391 L 89.85825347900391 20.34182357788086 C 89.85825347900391 20.99623489379883 89.06737518310547 21.37754821777344 88.49726104736328 20.99726295471191 L 82.21866607666016 16.80279159545898 C 81.73812103271484 16.4822826385498 81.73812103271484 15.81446266174316 82.21866607666016 15.49395179748535 L 88.49726104736328 11.29948234558105 C 88.65332794189453 11.19538116455078 88.82582855224609 11.14835166931152 88.99422454833984 11.14837074279785 Z" stroke="none" fill="#000"/></g><g transform="translate(0 1.002)" fill="none" stroke="#000" stroke-width="2"><rect width="18" height="14" rx="2" stroke="none"/><rect x="1" y="1" width="16" height="12" rx="1" fill="none"/></g></g><circle cx="2.5" cy="2.5" r="2.5" transform="translate(-4.709 -1.695)" fill="#cb000f"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 13.267)"><g transform="translate(0 -3.268)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="16" height="12" rx="2" stroke="none"/><rect x="1" y="1" width="14" height="10" rx="1" fill="none"/></g><g transform="translate(18 0.732)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="10" height="8" rx="2" stroke="none"/><rect x="1" y="1" width="8" height="6" rx="1" fill="none"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(2 9)"><g transform="translate(0 -2)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="8" height="8" rx="2" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="1" fill="none"/></g><g transform="translate(0 8)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="8" height="8" rx="2" stroke="none"/><rect x="1" y="1" width="6" height="6" rx="1" fill="none"/></g><line x2="8" transform="translate(11 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(11 14)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(11)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x2="16" transform="translate(11 10)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(4 5.667)"><path d="M8533,20644.334h-14a3,3,0,0,1-3-3v-1h13a3,3,0,0,0,3-3v-7h1a3,3,0,0,1,3,3v8A3,3,0,0,1,8533,20644.334Z" transform="translate(-8512 -20625)" fill="none" stroke="#000" stroke-width="2"/><rect width="20" height="14" rx="3" transform="translate(0 1.334)" fill="none" stroke="#000" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32.001" height="32" viewBox="0 0 32.001 32"><rect width="32" height="32" transform="translate(0.001)" fill="none"/><path d="M7091.252,18723.99l0,0,3.737-3.736a4,4,0,0,1-3.736,3.738Zm-4.251-4.234V18710a4,4,0,1,1,8,0v1.76l-2,2V18710a2,2,0,0,0-4,0v7.758l-2,2Z" transform="translate(-7074.999 -18704)"/><path d="M7091,18728a8.711,8.711,0,0,1-3.174-.588l1.6-1.594a6.866,6.866,0,0,0,1.578.182c3.309,0,6-2.334,6-5.205V18719a1,1,0,1,1,2,0v1.795a6.807,6.807,0,0,1-2.389,5.135A8.42,8.42,0,0,1,7091,18728Zm-7.52-4.725v0a6.559,6.559,0,0,1-.482-2.479V18719a1,1,0,1,1,2,0v1.795a4.508,4.508,0,0,0,.086.879l-1.6,1.6Z" transform="translate(-7074.999 -18704)"/><line y2="6" transform="translate(16.001 23)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(12.001 29)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y1="24" x2="24" transform="translate(4.001 4)" fill="none" stroke="#000" stroke-linecap="round" stroke-width="2"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="none"/><g transform="translate(9.333 2.668)"><g transform="translate(2.667 -0.669)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"><rect width="8" height="18" rx="4" stroke="none"/><rect x="1" y="1" width="6" height="16" rx="3" fill="none"/></g><path d="M147.311,14.492v1.8c0,3.426-3.134,6.2-7,6.2h0c-3.866,0-7-2.777-7-6.2v-1.8" transform="translate(-133.645 -2.16)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line y2="6" transform="translate(6.667 20.332)" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/><line x2="8" transform="translate(2.667 26.331)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="#fff" opacity="0"/><g transform="translate(3.999 6.666)"><path d="M-472.8,76.031a5.075,5.075,0,0,1,0,6" transform="translate(494.804 -69.696)" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><g transform="translate(488.119 -71.649)" fill="none" stroke-linejoin="round"><path d="M-488.119,84.982a2.193,2.193,0,0,0,2,2h7a1.421,1.421,0,0,1,1,.35l5.025,3.254a1.828,1.828,0,0,0,2.975-1.321V72.7a1.828,1.828,0,0,0-2.975-1.321l-5.025,3.3a1.383,1.383,0,0,1-1,.3h-7a2.193,2.193,0,0,0-2,2Z" stroke="none"/><path d="M -472.1192016601562 88.83419036865234 L -472.1192016601562 73.13211059570312 L -476.9632568359375 76.31747436523438 C -477.7496948242188 76.90179443359375 -478.492431640625 76.982421875 -479.11865234375 76.982421875 L -486.0157775878906 76.982421875 C -486.0516357421875 77.00927734375 -486.0929565429688 77.05226898193359 -486.11865234375 77.08949279785156 L -486.11865234375 84.87535095214844 C -486.0929565429688 84.91257476806641 -486.0516357421875 84.95556640625 -486.0157775878906 84.982421875 L -479.11865234375 84.982421875 C -478.2929382324219 84.982421875 -477.6250305175781 85.202880859375 -476.9668579101562 85.69517517089844 L -472.1192016601562 88.83419036865234 M -471.9450073242188 90.98255920410156 C -472.3395080566406 90.98251342773438 -472.7432556152344 90.85945129394531 -473.0938110351562 90.58579254150391 L -478.11865234375 87.33203125 C -478.4446105957031 87.07695007324219 -478.6946716308594 86.982421875 -479.11865234375 86.982421875 L -486.11865234375 86.982421875 C -487.1222229003906 86.982421875 -488.11865234375 85.92864227294922 -488.11865234375 84.982421875 L -488.11865234375 76.982421875 C -488.11865234375 76.03618621826172 -487.1222229003906 74.982421875 -486.11865234375 74.982421875 L -479.11865234375 74.982421875 C -478.6946716308594 74.982421875 -478.4446105957031 74.93868255615234 -478.11865234375 74.68358612060547 L -473.0938110351562 71.37932586669922 C -471.9091186523438 70.45445251464844 -470.1192016601562 71.24968719482422 -470.1192016601562 72.70033264160156 L -470.1192016601562 89.26480865478516 C -470.1192016601562 90.28623199462891 -471.00634765625 90.98267364501953 -471.9450073242188 90.98255920410156 Z" stroke="none" fill="#000"/></g></g></svg>