zova-ui-empty 5.0.93

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 (485) hide show
  1. package/.editorconfig +9 -0
  2. package/.eslintignore +8 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitattributes +2 -0
  5. package/.gitignore +65 -0
  6. package/.npmrc +27 -0
  7. package/.vscode/extensions.json +9 -0
  8. package/.vscode/settings.json +57 -0
  9. package/.vscode/zova.code-snippets +18 -0
  10. package/LICENSE +21 -0
  11. package/README.md +1 -0
  12. package/env/.env +29 -0
  13. package/env/.env.development +0 -0
  14. package/env/.env.production +0 -0
  15. package/index.html +14 -0
  16. package/package.json +50 -0
  17. package/pnpm-workspace.yaml +7 -0
  18. package/prettier.config.cjs +2 -0
  19. package/public/favicon.ico +0 -0
  20. package/src/boot/app.vue +9 -0
  21. package/src/boot/main.ts +15 -0
  22. package/src/boot/router.ts +14 -0
  23. package/src/boot/zova.ts +14 -0
  24. package/src/css/settings.scss +19 -0
  25. package/src/front/_config/config/config.app.ts +16 -0
  26. package/src/front/_config/config/config.ts +17 -0
  27. package/src/front/_config/config/config.web.ts +15 -0
  28. package/src/front/_config/locale/en-us.ts +5 -0
  29. package/src/front/_config/locale/zh-cn.ts +5 -0
  30. package/src/front/_config/locales.ts +7 -0
  31. package/src/front/_config/monkey.ts +24 -0
  32. package/src/front/typing/env.d.ts +5 -0
  33. package/src/front/typing/shims-vue.d.ts +10 -0
  34. package/src/front/typing/types.d.ts +2 -0
  35. package/src/module/.gitkeep +0 -0
  36. package/src/module-vendor/.gitkeep +0 -0
  37. package/src/suite/a-demo/modules/a-demo/package.json +29 -0
  38. package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
  39. package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
  40. package/src/suite/a-demo/modules/a-demo/src/component/card/controller.ts +25 -0
  41. package/src/suite/a-demo/modules/a-demo/src/component/card/index.vue +12 -0
  42. package/src/suite/a-demo/modules/a-demo/src/component/card/render.tsx +35 -0
  43. package/src/suite/a-demo/modules/a-demo/src/config/config.ts +5 -0
  44. package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +1 -0
  45. package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +1 -0
  46. package/src/suite/a-demo/modules/a-demo/src/config/index.ts +4 -0
  47. package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +1 -0
  48. package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +1 -0
  49. package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +7 -0
  50. package/src/suite/a-demo/modules/a-demo/src/index.ts +7 -0
  51. package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +9 -0
  52. package/src/suite/a-demo/modules/a-demo/src/page/component/index.vue +10 -0
  53. package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +39 -0
  54. package/src/suite/a-demo/modules/a-demo/src/page/state/controller.ts +21 -0
  55. package/src/suite/a-demo/modules/a-demo/src/page/state/index.vue +10 -0
  56. package/src/suite/a-demo/modules/a-demo/src/page/state/render.tsx +18 -0
  57. package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +4 -0
  58. package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +3 -0
  59. package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +3 -0
  60. package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +30 -0
  61. package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +4 -0
  62. package/src/suite/a-demo/modules/a-demo/src/routes.ts +8 -0
  63. package/src/suite/a-demo/modules/a-demo/src/types.ts +1 -0
  64. package/src/suite/a-demo/modules/a-demo/src/typings.ts +1 -0
  65. package/src/suite/a-demo/modules/a-demo/tsconfig.json +5 -0
  66. package/src/suite/a-demo/package.json +11 -0
  67. package/src/suite/a-demo/tsconfig.base.json +4 -0
  68. package/src/suite/a-home/README.md +1 -0
  69. package/src/suite/a-home/modules/a-home/README.md +1 -0
  70. package/src/suite/a-home/modules/a-home/package.json +28 -0
  71. package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
  72. package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
  73. package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
  74. package/src/suite/a-home/modules/a-home/src/config/config.ts +5 -0
  75. package/src/suite/a-home/modules/a-home/src/config/constants.ts +1 -0
  76. package/src/suite/a-home/modules/a-home/src/config/errors.ts +1 -0
  77. package/src/suite/a-home/modules/a-home/src/config/index.ts +4 -0
  78. package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +1 -0
  79. package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +1 -0
  80. package/src/suite/a-home/modules/a-home/src/config/locales.ts +7 -0
  81. package/src/suite/a-home/modules/a-home/src/index.ts +7 -0
  82. package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +4 -0
  83. package/src/suite/a-home/modules/a-home/src/page/home/index.vue +10 -0
  84. package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +21 -0
  85. package/src/suite/a-home/modules/a-home/src/resource/beans.ts +4 -0
  86. package/src/suite/a-home/modules/a-home/src/resource/components.ts +1 -0
  87. package/src/suite/a-home/modules/a-home/src/resource/index.ts +3 -0
  88. package/src/suite/a-home/modules/a-home/src/resource/scope.ts +30 -0
  89. package/src/suite/a-home/modules/a-home/src/resource/this.ts +4 -0
  90. package/src/suite/a-home/modules/a-home/src/routes.ts +4 -0
  91. package/src/suite/a-home/modules/a-home/src/types.ts +1 -0
  92. package/src/suite/a-home/modules/a-home/src/typings.ts +4 -0
  93. package/src/suite/a-home/modules/a-home/tsconfig.json +5 -0
  94. package/src/suite/a-home/modules/home-api/package.json +34 -0
  95. package/src/suite/a-home/modules/home-api/src/bean/store.api.ts +22 -0
  96. package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
  97. package/src/suite/a-home/modules/home-api/src/config/config.ts +5 -0
  98. package/src/suite/a-home/modules/home-api/src/config/constants.ts +1 -0
  99. package/src/suite/a-home/modules/home-api/src/config/errors.ts +1 -0
  100. package/src/suite/a-home/modules/home-api/src/config/index.ts +4 -0
  101. package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +1 -0
  102. package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +1 -0
  103. package/src/suite/a-home/modules/home-api/src/config/locales.ts +7 -0
  104. package/src/suite/a-home/modules/home-api/src/index.ts +7 -0
  105. package/src/suite/a-home/modules/home-api/src/monkey.ts +24 -0
  106. package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
  107. package/src/suite/a-home/modules/home-api/src/resource/beans.ts +8 -0
  108. package/src/suite/a-home/modules/home-api/src/resource/components.ts +1 -0
  109. package/src/suite/a-home/modules/home-api/src/resource/index.ts +3 -0
  110. package/src/suite/a-home/modules/home-api/src/resource/scope.ts +26 -0
  111. package/src/suite/a-home/modules/home-api/src/resource/this.ts +4 -0
  112. package/src/suite/a-home/modules/home-api/src/routes.ts +3 -0
  113. package/src/suite/a-home/modules/home-api/src/types.ts +13 -0
  114. package/src/suite/a-home/modules/home-api/src/typings.ts +1 -0
  115. package/src/suite/a-home/modules/home-api/tsconfig.json +5 -0
  116. package/src/suite/a-home/modules/home-icon/icons/auth/dingtalk-square.svg +1 -0
  117. package/src/suite/a-home/modules/home-icon/icons/auth/github.svg +1 -0
  118. package/src/suite/a-home/modules/home-icon/icons/auth/password.svg +1 -0
  119. package/src/suite/a-home/modules/home-icon/icons/auth/sms.svg +1 -0
  120. package/src/suite/a-home/modules/home-icon/icons/auth/wechat-outline.svg +1 -0
  121. package/src/suite/a-home/modules/home-icon/icons/auth/wxwork-outline.svg +1 -0
  122. package/src/suite/a-home/modules/home-icon/icons/business/coupon.svg +1 -0
  123. package/src/suite/a-home/modules/home-icon/icons/business/course.svg +1 -0
  124. package/src/suite/a-home/modules/home-icon/icons/business/distribution.svg +1 -0
  125. package/src/suite/a-home/modules/home-icon/icons/business/hotsprings.svg +1 -0
  126. package/src/suite/a-home/modules/home-icon/icons/business/kitchen-set.svg +1 -0
  127. package/src/suite/a-home/modules/home-icon/icons/business/money-bag.svg +1 -0
  128. package/src/suite/a-home/modules/home-icon/icons/business/party.svg +1 -0
  129. package/src/suite/a-home/modules/home-icon/icons/business/provider.svg +1 -0
  130. package/src/suite/a-home/modules/home-icon/icons/business/purchase.svg +1 -0
  131. package/src/suite/a-home/modules/home-icon/icons/business/store.svg +1 -0
  132. package/src/suite/a-home/modules/home-icon/icons/default/add.svg +1 -0
  133. package/src/suite/a-home/modules/home-icon/icons/default/alert.svg +1 -0
  134. package/src/suite/a-home/modules/home-icon/icons/default/archive.svg +1 -0
  135. package/src/suite/a-home/modules/home-icon/icons/default/arrow-back.svg +1 -0
  136. package/src/suite/a-home/modules/home-icon/icons/default/arrow-cycle.svg +1 -0
  137. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-left.svg +1 -0
  138. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-right.svg +1 -0
  139. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down.svg +1 -0
  140. package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-down.svg +1 -0
  141. package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-up.svg +1 -0
  142. package/src/suite/a-home/modules/home-icon/icons/default/arrow-forward.svg +1 -0
  143. package/src/suite/a-home/modules/home-icon/icons/default/arrow-left.svg +1 -0
  144. package/src/suite/a-home/modules/home-icon/icons/default/arrow-repeat.svg +1 -0
  145. package/src/suite/a-home/modules/home-icon/icons/default/arrow-right-left.svg +1 -0
  146. package/src/suite/a-home/modules/home-icon/icons/default/arrow-right.svg +1 -0
  147. package/src/suite/a-home/modules/home-icon/icons/default/arrow-shuffle.svg +1 -0
  148. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-down.svg +1 -0
  149. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-left.svg +1 -0
  150. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-right.svg +1 -0
  151. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up.svg +1 -0
  152. package/src/suite/a-home/modules/home-icon/icons/default/article.svg +1 -0
  153. package/src/suite/a-home/modules/home-icon/icons/default/attachment-line.svg +1 -0
  154. package/src/suite/a-home/modules/home-icon/icons/default/book.svg +1 -0
  155. package/src/suite/a-home/modules/home-icon/icons/default/cabloy.svg +4 -0
  156. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-checked.svg +1 -0
  157. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-intermediate.svg +1 -0
  158. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-off.svg +1 -0
  159. package/src/suite/a-home/modules/home-icon/icons/default/checkbox.svg +1 -0
  160. package/src/suite/a-home/modules/home-icon/icons/default/chevron-left.svg +1 -0
  161. package/src/suite/a-home/modules/home-icon/icons/default/chevron-right.svg +1 -0
  162. package/src/suite/a-home/modules/home-icon/icons/default/close.svg +1 -0
  163. package/src/suite/a-home/modules/home-icon/icons/default/comment-dots.svg +1 -0
  164. package/src/suite/a-home/modules/home-icon/icons/default/construction.svg +1 -0
  165. package/src/suite/a-home/modules/home-icon/icons/default/copyright.svg +1 -0
  166. package/src/suite/a-home/modules/home-icon/icons/default/cross-circle.svg +1 -0
  167. package/src/suite/a-home/modules/home-icon/icons/default/dashboard.svg +1 -0
  168. package/src/suite/a-home/modules/home-icon/icons/default/database.svg +1 -0
  169. package/src/suite/a-home/modules/home-icon/icons/default/delete-forever.svg +1 -0
  170. package/src/suite/a-home/modules/home-icon/icons/default/delete.svg +1 -0
  171. package/src/suite/a-home/modules/home-icon/icons/default/developer-board.svg +1 -0
  172. package/src/suite/a-home/modules/home-icon/icons/default/done.svg +1 -0
  173. package/src/suite/a-home/modules/home-icon/icons/default/dot.svg +1 -0
  174. package/src/suite/a-home/modules/home-icon/icons/default/draft.svg +1 -0
  175. package/src/suite/a-home/modules/home-icon/icons/default/drive-file-move.svg +1 -0
  176. package/src/suite/a-home/modules/home-icon/icons/default/edit.svg +1 -0
  177. package/src/suite/a-home/modules/home-icon/icons/default/expand-more.svg +1 -0
  178. package/src/suite/a-home/modules/home-icon/icons/default/export.svg +1 -0
  179. package/src/suite/a-home/modules/home-icon/icons/default/fast-forward.svg +1 -0
  180. package/src/suite/a-home/modules/home-icon/icons/default/flow-chart.svg +1 -0
  181. package/src/suite/a-home/modules/home-icon/icons/default/folder-open.svg +1 -0
  182. package/src/suite/a-home/modules/home-icon/icons/default/folder.svg +1 -0
  183. package/src/suite/a-home/modules/home-icon/icons/default/fullscreen-exit.svg +1 -0
  184. package/src/suite/a-home/modules/home-icon/icons/default/fullscreen.svg +1 -0
  185. package/src/suite/a-home/modules/home-icon/icons/default/grading.svg +1 -0
  186. package/src/suite/a-home/modules/home-icon/icons/default/group-work.svg +1 -0
  187. package/src/suite/a-home/modules/home-icon/icons/default/group.svg +1 -0
  188. package/src/suite/a-home/modules/home-icon/icons/default/groups.svg +1 -0
  189. package/src/suite/a-home/modules/home-icon/icons/default/heart.svg +1 -0
  190. package/src/suite/a-home/modules/home-icon/icons/default/home.svg +1 -0
  191. package/src/suite/a-home/modules/home-icon/icons/default/identification.svg +1 -0
  192. package/src/suite/a-home/modules/home-icon/icons/default/import.svg +1 -0
  193. package/src/suite/a-home/modules/home-icon/icons/default/info-circle.svg +1 -0
  194. package/src/suite/a-home/modules/home-icon/icons/default/information-filled.svg +1 -0
  195. package/src/suite/a-home/modules/home-icon/icons/default/information.svg +1 -0
  196. package/src/suite/a-home/modules/home-icon/icons/default/label.svg +1 -0
  197. package/src/suite/a-home/modules/home-icon/icons/default/language.svg +1 -0
  198. package/src/suite/a-home/modules/home-icon/icons/default/layers.svg +1 -0
  199. package/src/suite/a-home/modules/home-icon/icons/default/layout-columns.svg +1 -0
  200. package/src/suite/a-home/modules/home-icon/icons/default/location-on.svg +1 -0
  201. package/src/suite/a-home/modules/home-icon/icons/default/lock-open.svg +1 -0
  202. package/src/suite/a-home/modules/home-icon/icons/default/lock.svg +1 -0
  203. package/src/suite/a-home/modules/home-icon/icons/default/mail.svg +1 -0
  204. package/src/suite/a-home/modules/home-icon/icons/default/mark-as-unread.svg +1 -0
  205. package/src/suite/a-home/modules/home-icon/icons/default/mark-email-read.svg +1 -0
  206. package/src/suite/a-home/modules/home-icon/icons/default/menu.svg +1 -0
  207. package/src/suite/a-home/modules/home-icon/icons/default/message.svg +1 -0
  208. package/src/suite/a-home/modules/home-icon/icons/default/module.svg +1 -0
  209. package/src/suite/a-home/modules/home-icon/icons/default/more-horiz.svg +1 -0
  210. package/src/suite/a-home/modules/home-icon/icons/default/notebook.svg +1 -0
  211. package/src/suite/a-home/modules/home-icon/icons/default/open-in-new.svg +1 -0
  212. package/src/suite/a-home/modules/home-icon/icons/default/open-with.svg +1 -0
  213. package/src/suite/a-home/modules/home-icon/icons/default/people.svg +1 -0
  214. package/src/suite/a-home/modules/home-icon/icons/default/person.svg +1 -0
  215. package/src/suite/a-home/modules/home-icon/icons/default/play-arrow.svg +1 -0
  216. package/src/suite/a-home/modules/home-icon/icons/default/popup.svg +1 -0
  217. package/src/suite/a-home/modules/home-icon/icons/default/preview.svg +1 -0
  218. package/src/suite/a-home/modules/home-icon/icons/default/radio-button-checked.svg +1 -0
  219. package/src/suite/a-home/modules/home-icon/icons/default/radio-button-unchecked.svg +1 -0
  220. package/src/suite/a-home/modules/home-icon/icons/default/redo.svg +1 -0
  221. package/src/suite/a-home/modules/home-icon/icons/default/remove.svg +1 -0
  222. package/src/suite/a-home/modules/home-icon/icons/default/reply.svg +1 -0
  223. package/src/suite/a-home/modules/home-icon/icons/default/reset.svg +1 -0
  224. package/src/suite/a-home/modules/home-icon/icons/default/round-person-add.svg +1 -0
  225. package/src/suite/a-home/modules/home-icon/icons/default/save-and-return.svg +1 -0
  226. package/src/suite/a-home/modules/home-icon/icons/default/save-and-submit.svg +1 -0
  227. package/src/suite/a-home/modules/home-icon/icons/default/save-as-draft.svg +1 -0
  228. package/src/suite/a-home/modules/home-icon/icons/default/save.svg +1 -0
  229. package/src/suite/a-home/modules/home-icon/icons/default/search.svg +1 -0
  230. package/src/suite/a-home/modules/home-icon/icons/default/send.svg +1 -0
  231. package/src/suite/a-home/modules/home-icon/icons/default/settings.svg +1 -0
  232. package/src/suite/a-home/modules/home-icon/icons/default/share.svg +1 -0
  233. package/src/suite/a-home/modules/home-icon/icons/default/sort.svg +1 -0
  234. package/src/suite/a-home/modules/home-icon/icons/default/star.svg +1 -0
  235. package/src/suite/a-home/modules/home-icon/icons/default/stats-chart.svg +1 -0
  236. package/src/suite/a-home/modules/home-icon/icons/default/stop.svg +1 -0
  237. package/src/suite/a-home/modules/home-icon/icons/default/text-fields.svg +1 -0
  238. package/src/suite/a-home/modules/home-icon/icons/default/timeline.svg +1 -0
  239. package/src/suite/a-home/modules/home-icon/icons/default/undo.svg +1 -0
  240. package/src/suite/a-home/modules/home-icon/icons/default/view-list.svg +1 -0
  241. package/src/suite/a-home/modules/home-icon/icons/default/visibility.svg +1 -0
  242. package/src/suite/a-home/modules/home-icon/icons/default/zoom-in.svg +1 -0
  243. package/src/suite/a-home/modules/home-icon/icons/default/zoom-out.svg +1 -0
  244. package/src/suite/a-home/modules/home-icon/icons/editor/add-box-outline.svg +1 -0
  245. package/src/suite/a-home/modules/home-icon/icons/editor/add-box.svg +1 -0
  246. package/src/suite/a-home/modules/home-icon/icons/editor/bookmark-outline.svg +1 -0
  247. package/src/suite/a-home/modules/home-icon/icons/editor/bookmark.svg +1 -0
  248. package/src/suite/a-home/modules/home-icon/icons/editor/code-block.svg +1 -0
  249. package/src/suite/a-home/modules/home-icon/icons/editor/code.svg +1 -0
  250. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-center.svg +1 -0
  251. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-left.svg +1 -0
  252. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-right.svg +1 -0
  253. package/src/suite/a-home/modules/home-icon/icons/editor/format-bold.svg +1 -0
  254. package/src/suite/a-home/modules/home-icon/icons/editor/format-italic.svg +1 -0
  255. package/src/suite/a-home/modules/home-icon/icons/editor/format-list-bulleted.svg +1 -0
  256. package/src/suite/a-home/modules/home-icon/icons/editor/format-list-numbered.svg +1 -0
  257. package/src/suite/a-home/modules/home-icon/icons/editor/format-quote.svg +1 -0
  258. package/src/suite/a-home/modules/home-icon/icons/editor/format-strikethrough.svg +1 -0
  259. package/src/suite/a-home/modules/home-icon/icons/editor/format-underlined.svg +1 -0
  260. package/src/suite/a-home/modules/home-icon/icons/editor/grid-on.svg +1 -0
  261. package/src/suite/a-home/modules/home-icon/icons/editor/horizontal-rule.svg +1 -0
  262. package/src/suite/a-home/modules/home-icon/icons/editor/image-outline.svg +1 -0
  263. package/src/suite/a-home/modules/home-icon/icons/editor/image.svg +1 -0
  264. package/src/suite/a-home/modules/home-icon/icons/editor/insert-link-outline.svg +1 -0
  265. package/src/suite/a-home/modules/home-icon/icons/editor/paragraph-break.svg +1 -0
  266. package/src/suite/a-home/modules/home-icon/icons/editor/paragraph.svg +1 -0
  267. package/src/suite/a-home/modules/home-icon/icons/editor/redo.svg +1 -0
  268. package/src/suite/a-home/modules/home-icon/icons/editor/source-outline.svg +1 -0
  269. package/src/suite/a-home/modules/home-icon/icons/editor/subscript.svg +1 -0
  270. package/src/suite/a-home/modules/home-icon/icons/editor/superscript.svg +1 -0
  271. package/src/suite/a-home/modules/home-icon/icons/editor/task-alt.svg +1 -0
  272. package/src/suite/a-home/modules/home-icon/icons/editor/title.svg +1 -0
  273. package/src/suite/a-home/modules/home-icon/icons/editor/undo.svg +1 -0
  274. package/src/suite/a-home/modules/home-icon/icons/flow/activity-none.svg +17 -0
  275. package/src/suite/a-home/modules/home-icon/icons/flow/activity-service.svg +30 -0
  276. package/src/suite/a-home/modules/home-icon/icons/flow/activity-user-task.svg +27 -0
  277. package/src/suite/a-home/modules/home-icon/icons/flow/end-event-atom.svg +24 -0
  278. package/src/suite/a-home/modules/home-icon/icons/flow/end-event-none.svg +22 -0
  279. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-exclusive.svg +1 -0
  280. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-inclusive.svg +1 -0
  281. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-parallel.svg +1 -0
  282. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-atom.svg +16 -0
  283. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-none.svg +16 -0
  284. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-timer.svg +16 -0
  285. package/src/suite/a-home/modules/home-icon/icons/login/call-outline.svg +1 -0
  286. package/src/suite/a-home/modules/home-icon/icons/login/chevron-left.svg +1 -0
  287. package/src/suite/a-home/modules/home-icon/icons/login/done.svg +1 -0
  288. package/src/suite/a-home/modules/home-icon/icons/login/lock-outline.svg +1 -0
  289. package/src/suite/a-home/modules/home-icon/icons/login/person-outline.svg +1 -0
  290. package/src/suite/a-home/modules/home-icon/icons/outline/add-circle-outline.svg +1 -0
  291. package/src/suite/a-home/modules/home-icon/icons/outline/alert-outline.svg +1 -0
  292. package/src/suite/a-home/modules/home-icon/icons/outline/apps-outline.svg +1 -0
  293. package/src/suite/a-home/modules/home-icon/icons/outline/archive-lock-outline.svg +1 -0
  294. package/src/suite/a-home/modules/home-icon/icons/outline/archive-outline.svg +1 -0
  295. package/src/suite/a-home/modules/home-icon/icons/outline/article-outline.svg +1 -0
  296. package/src/suite/a-home/modules/home-icon/icons/outline/backspace-outline.svg +1 -0
  297. package/src/suite/a-home/modules/home-icon/icons/outline/build-circle-outline.svg +1 -0
  298. package/src/suite/a-home/modules/home-icon/icons/outline/calendar-today-outline.svg +1 -0
  299. package/src/suite/a-home/modules/home-icon/icons/outline/check-circle-outline.svg +1 -0
  300. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-checked-outline.svg +1 -0
  301. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-off-outline.svg +1 -0
  302. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-outline.svg +1 -0
  303. package/src/suite/a-home/modules/home-icon/icons/outline/copy-outline.svg +1 -0
  304. package/src/suite/a-home/modules/home-icon/icons/outline/data-list-outline.svg +1 -0
  305. package/src/suite/a-home/modules/home-icon/icons/outline/database-lock-outline.svg +1 -0
  306. package/src/suite/a-home/modules/home-icon/icons/outline/delete-forever-outline.svg +1 -0
  307. package/src/suite/a-home/modules/home-icon/icons/outline/delete-outline.svg +1 -0
  308. package/src/suite/a-home/modules/home-icon/icons/outline/dict-outline.svg +1 -0
  309. package/src/suite/a-home/modules/home-icon/icons/outline/draft-outline.svg +1 -0
  310. package/src/suite/a-home/modules/home-icon/icons/outline/folder-transfer-outline.svg +1 -0
  311. package/src/suite/a-home/modules/home-icon/icons/outline/group-outline.svg +1 -0
  312. package/src/suite/a-home/modules/home-icon/icons/outline/heart-outline.svg +1 -0
  313. package/src/suite/a-home/modules/home-icon/icons/outline/insert-emoticon-outline.svg +1 -0
  314. package/src/suite/a-home/modules/home-icon/icons/outline/key-reset-outline.svg +1 -0
  315. package/src/suite/a-home/modules/home-icon/icons/outline/label-outline.svg +1 -0
  316. package/src/suite/a-home/modules/home-icon/icons/outline/layout-outline.svg +1 -0
  317. package/src/suite/a-home/modules/home-icon/icons/outline/login-outline.svg +1 -0
  318. package/src/suite/a-home/modules/home-icon/icons/outline/logout-outline.svg +1 -0
  319. package/src/suite/a-home/modules/home-icon/icons/outline/mail-outline.svg +1 -0
  320. package/src/suite/a-home/modules/home-icon/icons/outline/note-outline.svg +1 -0
  321. package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg +1 -0
  322. package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-outline.svg +1 -0
  323. package/src/suite/a-home/modules/home-icon/icons/outline/star-outline.svg +1 -0
  324. package/src/suite/a-home/modules/home-icon/icons/outline/theme-outline.svg +1 -0
  325. package/src/suite/a-home/modules/home-icon/icons/outline/timer-outline.svg +1 -0
  326. package/src/suite/a-home/modules/home-icon/icons/outline/visibility-off-outline.svg +1 -0
  327. package/src/suite/a-home/modules/home-icon/icons/outline/visibility-outline.svg +1 -0
  328. package/src/suite/a-home/modules/home-icon/icons/outline/work-history-outline.svg +1 -0
  329. package/src/suite/a-home/modules/home-icon/icons/role/collaboration.svg +1 -0
  330. package/src/suite/a-home/modules/home-icon/icons/role/level.svg +1 -0
  331. package/src/suite/a-home/modules/home-icon/icons/role/organization.svg +1 -0
  332. package/src/suite/a-home/modules/home-icon/icons/role/position.svg +1 -0
  333. package/src/suite/a-home/modules/home-icon/icons/role/relation.svg +1 -0
  334. package/src/suite/a-home/modules/home-icon/icons/role/role.svg +1 -0
  335. package/src/suite/a-home/modules/home-icon/icons/role/shield-key.svg +1 -0
  336. package/src/suite/a-home/modules/home-icon/icons/role/template.svg +1 -0
  337. package/src/suite/a-home/modules/home-icon/icons/social/chat.svg +1 -0
  338. package/src/suite/a-home/modules/home-icon/icons/social/facebook.svg +1 -0
  339. package/src/suite/a-home/modules/home-icon/icons/social/github.svg +1 -0
  340. package/src/suite/a-home/modules/home-icon/icons/social/public.svg +1 -0
  341. package/src/suite/a-home/modules/home-icon/icons/social/record-voice-over.svg +1 -0
  342. package/src/suite/a-home/modules/home-icon/icons/social/school.svg +1 -0
  343. package/src/suite/a-home/modules/home-icon/icons/social/twitter.svg +1 -0
  344. package/src/suite/a-home/modules/home-icon/icons/tools/pomotodo.svg +1 -0
  345. package/src/suite/a-home/modules/home-icon/icons/tools/spreadsheet.svg +1 -0
  346. package/src/suite/a-home/modules/home-icon/package.json +34 -0
  347. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/auth.svg +8 -0
  348. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/business.svg +12 -0
  349. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/default.svg +114 -0
  350. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/editor.svg +32 -0
  351. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/flow.svg +13 -0
  352. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/login.svg +7 -0
  353. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/outline.svg +41 -0
  354. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/role.svg +10 -0
  355. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/social.svg +9 -0
  356. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/tools.svg +4 -0
  357. package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
  358. package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
  359. package/src/suite/a-home/modules/home-icon/src/config/config.ts +5 -0
  360. package/src/suite/a-home/modules/home-icon/src/config/constants.ts +1 -0
  361. package/src/suite/a-home/modules/home-icon/src/config/errors.ts +1 -0
  362. package/src/suite/a-home/modules/home-icon/src/config/icons.ts +23 -0
  363. package/src/suite/a-home/modules/home-icon/src/config/index.ts +5 -0
  364. package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +1 -0
  365. package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +1 -0
  366. package/src/suite/a-home/modules/home-icon/src/config/locales.ts +7 -0
  367. package/src/suite/a-home/modules/home-icon/src/index.ts +6 -0
  368. package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
  369. package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +4 -0
  370. package/src/suite/a-home/modules/home-icon/src/resource/components.ts +1 -0
  371. package/src/suite/a-home/modules/home-icon/src/resource/icons.ts +235 -0
  372. package/src/suite/a-home/modules/home-icon/src/resource/index.ts +4 -0
  373. package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +26 -0
  374. package/src/suite/a-home/modules/home-icon/src/resource/this.ts +4 -0
  375. package/src/suite/a-home/modules/home-icon/src/routes.ts +3 -0
  376. package/src/suite/a-home/modules/home-icon/src/types.ts +1 -0
  377. package/src/suite/a-home/modules/home-icon/src/typings.ts +1 -0
  378. package/src/suite/a-home/modules/home-icon/tsconfig.json +5 -0
  379. package/src/suite/a-home/modules/home-layout/package.json +29 -0
  380. package/src/suite/a-home/modules/home-layout/src/assets/css/module.scss +14 -0
  381. package/src/suite/a-home/modules/home-layout/src/bean/.gitkeep +0 -0
  382. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/controller.ts +21 -0
  383. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/index.vue +12 -0
  384. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/render.tsx +27 -0
  385. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/controller.ts +31 -0
  386. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/index.vue +12 -0
  387. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +46 -0
  388. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/controller.ts +16 -0
  389. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/index.vue +12 -0
  390. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/render.tsx +15 -0
  391. package/src/suite/a-home/modules/home-layout/src/config/config.ts +5 -0
  392. package/src/suite/a-home/modules/home-layout/src/config/constants.ts +1 -0
  393. package/src/suite/a-home/modules/home-layout/src/config/errors.ts +1 -0
  394. package/src/suite/a-home/modules/home-layout/src/config/index.ts +4 -0
  395. package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +1 -0
  396. package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +1 -0
  397. package/src/suite/a-home/modules/home-layout/src/config/locales.ts +7 -0
  398. package/src/suite/a-home/modules/home-layout/src/index.ts +7 -0
  399. package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
  400. package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +4 -0
  401. package/src/suite/a-home/modules/home-layout/src/resource/components.ts +7 -0
  402. package/src/suite/a-home/modules/home-layout/src/resource/index.ts +3 -0
  403. package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +30 -0
  404. package/src/suite/a-home/modules/home-layout/src/resource/this.ts +4 -0
  405. package/src/suite/a-home/modules/home-layout/src/routes.ts +3 -0
  406. package/src/suite/a-home/modules/home-layout/src/types.ts +1 -0
  407. package/src/suite/a-home/modules/home-layout/src/typings.ts +1 -0
  408. package/src/suite/a-home/modules/home-layout/tsconfig.json +5 -0
  409. package/src/suite/a-home/modules/home-mock/package.json +30 -0
  410. package/src/suite/a-home/modules/home-mock/src/bean/.gitkeep +0 -0
  411. package/src/suite/a-home/modules/home-mock/src/component/.gitkeep +0 -0
  412. package/src/suite/a-home/modules/home-mock/src/config/config.ts +5 -0
  413. package/src/suite/a-home/modules/home-mock/src/config/constants.ts +1 -0
  414. package/src/suite/a-home/modules/home-mock/src/config/errors.ts +1 -0
  415. package/src/suite/a-home/modules/home-mock/src/config/index.ts +4 -0
  416. package/src/suite/a-home/modules/home-mock/src/config/locale/en-us.ts +1 -0
  417. package/src/suite/a-home/modules/home-mock/src/config/locale/zh-cn.ts +1 -0
  418. package/src/suite/a-home/modules/home-mock/src/config/locales.ts +7 -0
  419. package/src/suite/a-home/modules/home-mock/src/index.ts +6 -0
  420. package/src/suite/a-home/modules/home-mock/src/mock/menu.fake.ts +42 -0
  421. package/src/suite/a-home/modules/home-mock/src/page/.gitkeep +0 -0
  422. package/src/suite/a-home/modules/home-mock/src/resource/beans.ts +4 -0
  423. package/src/suite/a-home/modules/home-mock/src/resource/components.ts +1 -0
  424. package/src/suite/a-home/modules/home-mock/src/resource/index.ts +3 -0
  425. package/src/suite/a-home/modules/home-mock/src/resource/scope.ts +30 -0
  426. package/src/suite/a-home/modules/home-mock/src/resource/this.ts +4 -0
  427. package/src/suite/a-home/modules/home-mock/src/routes.ts +3 -0
  428. package/src/suite/a-home/modules/home-mock/src/types.ts +1 -0
  429. package/src/suite/a-home/modules/home-mock/src/typings.ts +1 -0
  430. package/src/suite/a-home/modules/home-mock/tsconfig.json +5 -0
  431. package/src/suite/a-home/modules/home-pagesystem/package.json +34 -0
  432. package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
  433. package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
  434. package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +5 -0
  435. package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +1 -0
  436. package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +1 -0
  437. package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +4 -0
  438. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +1 -0
  439. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +1 -0
  440. package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +7 -0
  441. package/src/suite/a-home/modules/home-pagesystem/src/index.ts +6 -0
  442. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/controller.ts +4 -0
  443. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/index.vue +10 -0
  444. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/render.tsx +24 -0
  445. package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +4 -0
  446. package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +1 -0
  447. package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +3 -0
  448. package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +30 -0
  449. package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +4 -0
  450. package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +22 -0
  451. package/src/suite/a-home/modules/home-pagesystem/src/types.ts +1 -0
  452. package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +1 -0
  453. package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +5 -0
  454. package/src/suite/a-home/modules/home-router/package.json +37 -0
  455. package/src/suite/a-home/modules/home-router/src/bean/.gitkeep +0 -0
  456. package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
  457. package/src/suite/a-home/modules/home-router/src/config/config.ts +5 -0
  458. package/src/suite/a-home/modules/home-router/src/config/constants.ts +1 -0
  459. package/src/suite/a-home/modules/home-router/src/config/errors.ts +1 -0
  460. package/src/suite/a-home/modules/home-router/src/config/index.ts +4 -0
  461. package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +1 -0
  462. package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +1 -0
  463. package/src/suite/a-home/modules/home-router/src/config/locales.ts +7 -0
  464. package/src/suite/a-home/modules/home-router/src/index.ts +7 -0
  465. package/src/suite/a-home/modules/home-router/src/local/router.ts +12 -0
  466. package/src/suite/a-home/modules/home-router/src/monkey.ts +17 -0
  467. package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
  468. package/src/suite/a-home/modules/home-router/src/resource/beans.ts +4 -0
  469. package/src/suite/a-home/modules/home-router/src/resource/components.ts +1 -0
  470. package/src/suite/a-home/modules/home-router/src/resource/index.ts +3 -0
  471. package/src/suite/a-home/modules/home-router/src/resource/scope.ts +26 -0
  472. package/src/suite/a-home/modules/home-router/src/resource/this.ts +4 -0
  473. package/src/suite/a-home/modules/home-router/src/routes.ts +3 -0
  474. package/src/suite/a-home/modules/home-router/src/types.ts +1 -0
  475. package/src/suite/a-home/modules/home-router/src/typings.ts +1 -0
  476. package/src/suite/a-home/modules/home-router/tsconfig.json +5 -0
  477. package/src/suite/a-home/package.json +17 -0
  478. package/src/suite/a-home/tsconfig.base.json +4 -0
  479. package/src/suite-vendor/.gitkeep +0 -0
  480. package/tsconfig.base.cjs.json +3 -0
  481. package/tsconfig.base.esm.json +12 -0
  482. package/tsconfig.base.json +6 -0
  483. package/tsconfig.json +5 -0
  484. package/tsconfig.vue-tsc.json +5 -0
  485. package/vite.config.ts +41 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--material-symbols" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M21 12v7q0 .825-.587 1.413Q19.825 21 19 21H5q-.825 0-1.413-.587Q3 19.825 3 19V5q0-.825.587-1.413Q4.175 3 5 3h7v2H5v14h14v-7ZM9.7 15.7l-1.4-1.4L17.6 5H14V3h7v7h-2V6.4Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10.5 9h3c.28 0 .5-.22.5-.5V6h1.79c.45 0 .67-.54.35-.85l-3.79-3.79c-.2-.2-.51-.2-.71 0L7.85 5.15a.5.5 0 0 0 .36.85H10v2.5c0 .28.22.5.5.5zm-2 1H6V8.21c0-.45-.54-.67-.85-.35l-3.79 3.79c-.2.2-.2.51 0 .71l3.79 3.79a.5.5 0 0 0 .85-.36V14h2.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm14.15 1.65l-3.79-3.79a.501.501 0 0 0-.86.35V10h-2.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zM13.5 15h-3c-.28 0-.5.22-.5.5V18H8.21c-.45 0-.67.54-.35.85l3.79 3.79c.2.2.51.2.71 0l3.79-3.79a.5.5 0 0 0-.35-.85H14v-2.5c0-.28-.22-.5-.5-.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5S5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05c.02.01.03.03.04.04c1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill="currentColor" d="M3 14s-1 0-1-1s1-4 6-4s6 3 6 4s-1 1-1 1H3zm5-6a3 3 0 1 0 0-6a3 3 0 0 0 0 6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18a1 1 0 0 0 0-1.69L9.54 5.98A.998.998 0 0 0 8 6.82z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--entypo" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path fill="currentColor" d="M16 2H7.979C6.88 2 6 2.88 6 3.98V12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10H8V4h8v8zM4 10H2v6c0 1.1.9 2 2 2h6v-2H4v-6z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2zm0 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5s1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4c.94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8z"/><circle cx="12" cy="12" r="5" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8s8 3.58 8 8s-3.58 8-8 8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93c-.32.67.04 1.47.75 1.71c.59.2 1.23-.08 1.5-.64c1.3-2.66 4.03-4.5 7.19-4.5c1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71l-1.89 1.9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10 9V5l-7 7l7 7v-4.1c5 0 8.5 1.6 11 5.1c-1-5-4-10-11-11z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M7.207 2.543a1 1 0 0 1 0 1.414L5.414 5.75h7.836a8 8 0 1 1-8 8a1 1 0 1 1 2 0a6 6 0 1 0 6-6H5.414l1.793 1.793a1 1 0 0 1-1.414 1.414l-3.5-3.5a1 1 0 0 1 0-1.414l3.5-3.5a1 1 0 0 1 1.414 0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle cx="9" cy="8" r="4" fill="currentColor"></circle><path fill="currentColor" d="M9 14c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm11-4V7h-2v3h-3v2h3v3h2v-3h3v-2z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6.81c-.39-.66-.64-1.4-.74-2.16a2.994 2.994 0 0 1-1.87-3.81C9.61 13.83 10.73 13 12 13c.44 0 .88.1 1.28.29c2.29-1.79 5.55-1.7 7.72.25V7l-4-4m-2 6H5V5h10v4m-2 8h4v-3l5 4.5l-5 4.5v-3h-4v-3"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M17 3H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6.81c-.39-.66-.64-1.4-.74-2.16a2.994 2.994 0 0 1-1.87-3.81C9.61 13.83 10.73 13 12 13c.44 0 .88.1 1.28.29c2.29-1.79 5.55-1.7 7.72.25V7l-4-4m-2 6H5V5h10v4m.75 12L13 18l1.16-1.16l1.59 1.59l3.59-3.59l1.16 1.41L15.75 21"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="m10 19l.14-.14A2.97 2.97 0 0 1 8 16a3 3 0 0 1 3-3c1.36 0 2.5.9 2.86 2.14L20 9V7l-4-4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6v-2M4 5h10v4H4V5m16.04 7.13c-.14 0-.28.06-.39.17l-1 1l2.05 2.05l1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.533.533 0 0 0-.38-.17m-1.97 1.75L12 19.94V22h2.06l6.06-6.07l-2.05-2.05Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15 9H5V5h10m-3 14a3 3 0 0 1-3-3a3 3 0 0 1 3-3a3 3 0 0 1 3 3a3 3 0 0 1-3 3m5-16H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7l-4-4Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m16.325 14.899l5.38 5.38a1.008 1.008 0 0 1-1.427 1.426l-5.38-5.38a8 8 0 1 1 1.426-1.426ZM10 16a6 6 0 1 0 0-12a6 6 0 0 0 0 12Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m12.815 12.197l-7.532 1.255a.5.5 0 0 0-.386.318L2.3 20.728c-.248.64.421 1.25 1.035.942l18-9a.75.75 0 0 0 0-1.341l-18-9c-.614-.307-1.283.303-1.035.942l2.598 6.958a.5.5 0 0 0 .386.318l7.532 1.255a.2.2 0 0 1 0 .395Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M13.82 22h-3.64a1 1 0 0 1-.977-.786l-.407-1.884a8.002 8.002 0 0 1-1.535-.887l-1.837.585a1 1 0 0 1-1.17-.453L2.43 15.424a1.006 1.006 0 0 1 .193-1.239l1.425-1.3a8.1 8.1 0 0 1 0-1.772L2.623 9.816a1.006 1.006 0 0 1-.193-1.24l1.82-3.153a1 1 0 0 1 1.17-.453l1.837.585c.244-.18.498-.348.76-.5c.253-.142.513-.271.779-.386l.408-1.882A1 1 0 0 1 10.18 2h3.64a1 1 0 0 1 .976.787l.412 1.883a8.192 8.192 0 0 1 1.535.887l1.838-.585a1 1 0 0 1 1.169.453l1.82 3.153c.232.407.152.922-.193 1.239l-1.425 1.3a8.1 8.1 0 0 1 0 1.772l1.425 1.3c.345.318.425.832.193 1.239l-1.82 3.153a1 1 0 0 1-1.17.453l-1.837-.585a7.98 7.98 0 0 1-1.534.886l-.413 1.879a1 1 0 0 1-.976.786ZM11.996 8a4 4 0 1 0 0 8a4 4 0 0 0 0-8Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81c1.66 0 3-1.34 3-3s-1.34-3-3-3s-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65c0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 18h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm1 6h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="m16 2l-4.55 9.22l-10.17 1.47l7.36 7.18L6.9 30l9.1-4.78L25.1 30l-1.74-10.13l7.36-7.17l-10.17-1.48Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ion" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"><path fill="currentColor" d="M104 496H72a24 24 0 0 1-24-24V328a24 24 0 0 1 24-24h32a24 24 0 0 1 24 24v144a24 24 0 0 1-24 24Zm224 0h-32a24 24 0 0 1-24-24V232a24 24 0 0 1 24-24h32a24 24 0 0 1 24 24v240a24 24 0 0 1-24 24Zm112 0h-32a24 24 0 0 1-24-24V120a24 24 0 0 1 24-24h32a24 24 0 0 1 24 24v352a24 24 0 0 1-24 24Zm-224 0h-32a24 24 0 0 1-24-24V40a24 24 0 0 1 24-24h32a24 24 0 0 1 24 24v432a24 24 0 0 1-24 24Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill="currentColor" d="M5 3.5h6A1.5 1.5 0 0 1 12.5 5v6a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 11V5A1.5 1.5 0 0 1 5 3.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M2.5 5.5C2.5 6.33 3.17 7 4 7h3.5v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7H14c.83 0 1.5-.67 1.5-1.5S14.83 4 14 4H4c-.83 0-1.5.67-1.5 1.5zM20 9h-6c-.83 0-1.5.67-1.5 1.5S13.17 12 14 12h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12H20c.83 0 1.5-.67 1.5-1.5S20.83 9 20 9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-width="4"><path stroke-linejoin="round" d="M13 12a4 4 0 1 0 8 0a4 4 0 0 0-8 0Zm18 12a4 4 0 1 0 8 0a4 4 0 0 0-8 0ZM13 36a4 4 0 1 0 8 0a4 4 0 0 0-8 0Z"/><path stroke-linecap="round" d="M4 36h9m8 0h23M4 12h9m8 0h23"/><path stroke-linecap="round" stroke-linejoin="round" d="M4 4v40"/><path stroke-linecap="round" d="M4 24h27m8 0h5"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88c3.16 0 5.89 1.84 7.19 4.5c.27.56.91.84 1.5.64c.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 14h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM4 9h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm5 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM8 6v2c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4C7 4 2.73 7.11 1 11.5C2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5s5 2.24 5 5s-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3s3-1.34 3-3s-1.34-3-3-3z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34c-4.23-.52-7.78 3.04-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5S14 7.01 14 9.5S11.99 14 9.5 14zm0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5S14 7.01 14 9.5S11.99 14 9.5 14zm-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3l7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3l7 3V5c0-1.1-.9-2-2-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM4 19V7h16l.002 12H4z"/><path fill="currentColor" d="M9.293 9.293L5.586 13l3.707 3.707l1.414-1.414L8.414 13l2.293-2.293zm5.414 0l-1.414 1.414L15.586 13l-2.293 2.293l1.414 1.414L18.414 13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M8.7 15.9L4.8 12l3.9-3.9a.984.984 0 0 0 0-1.4a.984.984 0 0 0-1.4 0l-4.59 4.59a.996.996 0 0 0 0 1.41l4.59 4.6c.39.39 1.01.39 1.4 0a.984.984 0 0 0 0-1.4zm6.6 0l3.9-3.9l-3.9-3.9a.984.984 0 0 1 0-1.4a.984.984 0 0 1 1.4 0l4.59 4.59c.39.39.39 1.02 0 1.41l-4.59 4.6a.984.984 0 0 1-1.4 0a.984.984 0 0 1 0-1.4z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M7 16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M14 15H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-8H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 13h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm-6-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79c0-2.26-1.75-4-4-4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5.78c2.07 0 3.96-1.69 3.97-3.77c.01-1.53-.85-2.84-2.15-3.44zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5s1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5S5.5 6.83 5.5 6S4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5s1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5zM8 19h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-6h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M8 7h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm12 10H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM4.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5H2.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11H3v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2 5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96a.49.49 0 0 0-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H3.2l1.68-1.96a.49.49 0 0 0 .12-.32v-.22c0-.28-.22-.5-.5-.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94zm10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 19c1.1 0 2-.9 2-2v-1h-4v1c0 1.1.9 2 2 2zM5 5.5C5 6.33 5.67 7 6.5 7H10v3h4V7h3.5c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5zM4 14h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12.79 16.95c3.03-.39 5.21-3.11 5.21-6.16V4.25a1.25 1.25 0 0 0-2.5 0v6.65c0 1.67-1.13 3.19-2.77 3.52A3.494 3.494 0 0 1 8.5 11V4.25a1.25 1.25 0 0 0-2.5 0V11c0 3.57 3.13 6.42 6.79 5.95zM5 20c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h4v4zm0-6H4V5c0-.55.45-1 1-1h3v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm5 12h-3v-4h4v3c0 .55-.45 1-1 1zm1-6h-4v-4h4v4zm0-6h-4V4h3c.55 0 1 .45 1 1v3z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M19 13H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14L6 17h12l-3.86-5.14z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53l3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68a.5.5 0 0 1-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"><path d="M6 9H42"/><path d="M6 19H42"/><path d="M6 29H24"/><path d="M6 39H16"/><path d="M24 39C24 39 34.2386 39 37 39C39.7614 39 42 36.7614 42 34C42 31.2386 39.7614 29 37 29C35.7115 29 32 29 32 29M24 39L28 35M24 39L28 43"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 5h-3m-5 0h5m-5 0v10m0-10h-1c-1.667 0-5 1-5 5s3.333 5 5 5h1m0 4v-4m5 4V5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93c-.32.67.04 1.47.75 1.71c.59.2 1.23-.08 1.5-.64c1.3-2.66 4.03-4.5 7.19-4.5c1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71l-1.89 1.9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10.52 10.73L7.3 5.72a1.112 1.112 0 1 1 1.88-1.19l2.76 4.46h.12l2.74-4.45c.21-.34.57-.54.96-.54c.88 0 1.42.98.94 1.72l-3.23 5l3.55 5.55c.48.75-.06 1.73-.94 1.73c-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.2.32-.56.52-.95.52c-.88 0-1.42-.97-.94-1.72l3.54-5.55zM23 19.5c0-.28-.22-.5-.5-.5H20v-1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M10.51 12.73L7.3 7.72a1.112 1.112 0 1 1 1.88-1.19l2.76 4.46h.12l2.74-4.45c.2-.34.56-.54.95-.54c.88 0 1.42.98.94 1.72l-3.23 5l3.55 5.55c.49.75-.05 1.73-.93 1.73c-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.21.32-.56.52-.95.52c-.88 0-1.42-.97-.94-1.72l3.53-5.55zM23 8.5c0-.28-.22-.5-.5-.5H20V7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m21.29 5.89l-10 10a.996.996 0 0 1-1.41 0l-2.83-2.83a.996.996 0 1 1 1.41-1.41l2.12 2.12l9.29-9.29a.996.996 0 0 1 1.41 0c.4.39.4 1.02.01 1.41zm-5.52-3.15c-1.69-.69-3.61-.93-5.61-.57c-4.07.73-7.32 4.01-8.01 8.08a10.009 10.009 0 0 0 11.19 11.66c3.96-.51 7.28-3.46 8.32-7.31c.4-1.47.44-2.89.21-4.22c-.13-.8-1.12-1.11-1.7-.54c-.23.23-.33.57-.27.89c.22 1.33.12 2.75-.52 4.26c-1.16 2.71-3.68 4.7-6.61 4.97c-5.1.47-9.33-3.85-8.7-8.98c.43-3.54 3.28-6.42 6.81-6.91c1.73-.24 3.37.09 4.77.81a1.003 1.003 0 0 0 .93-1.78c-.27-.12-.54-.25-.81-.36z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88c3.16 0 5.89 1.84 7.19 4.5c.27.56.91.84 1.5.64c.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8z"/></svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-894 -133 1920 1580" width="1920" height="1580">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:25:53 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Graphic_3">
11
+ <title>rect4187</title>
12
+ <path d="M -472.6628 -23 L 604.6628 -23 C 776.6096 -23 916 116.39042 916 288.33722 L 916 1025.6628 C 916 1197.6096 776.6096 1337 604.6628 1337 L -472.6628 1337 C -644.6096 1337 -784 1197.6096 -784 1025.6628 L -784 288.33722 C -784 116.39042 -644.6096 -23 -472.6628 -23 Z" fill="white"/>
13
+ <path d="M -472.6628 -23 L 604.6628 -23 C 776.6096 -23 916 116.39042 916 288.33722 L 916 1025.6628 C 916 1197.6096 776.6096 1337 604.6628 1337 L -472.6628 1337 C -644.6096 1337 -784 1197.6096 -784 1025.6628 L -784 288.33722 C -784 116.39042 -644.6096 -23 -472.6628 -23 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="220"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="40.000004 210.00002 1920 1580" width="1920" height="1580">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:31:41 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Group_2">
11
+ <title>layer1</title>
12
+ <g id="Graphic_6">
13
+ <title>rect4187</title>
14
+ <path d="M 429.65115 270.00002 L 1570.3488 270.00002 C 1752.4102 270.00002 1900 417.58987 1900 599.6512 L 1900 1400.3489 C 1900 1582.4102 1752.4102 1730 1570.3488 1730 L 429.65115 1730 C 247.58985 1730 100 1582.4102 100 1400.3489 L 100 599.6512 C 100 417.58987 247.58985 270.00002 429.65115 270.00002 Z" fill="white"/>
15
+ <path d="M 429.65115 270.00002 L 1570.3488 270.00002 C 1752.4102 270.00002 1900 417.58987 1900 599.6512 L 1900 1400.3489 C 1900 1582.4102 1752.4102 1730 1570.3488 1730 L 429.65115 1730 C 247.58985 1730 100 1582.4102 100 1400.3489 L 100 599.6512 C 100 417.58987 247.58985 270.00002 429.65115 270.00002 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="119.99999"/>
16
+ </g>
17
+ <g id="Group_3">
18
+ <title>g4165</title>
19
+ <g id="Group_4">
20
+ <title>layer6-6</title>
21
+ <g id="Graphic_5">
22
+ <title>path4170</title>
23
+ <path d="M 502.7908 430.8679 C 502.7618 454.03584 502.7972 477.2043 502.85684 500.37214 C 483.0986 505.9619 465.04375 513.76264 447.9934 523.31845 L 398.1602 474.08455 L 304.9795 567.8046 L 354.809 617.0299 C 345.1835 634.2823 337.6671 652.6165 332.42164 671.6598 L 261.83503 671.7882 L 261.83503 803.7815 L 333.1591 803.5246 C 339.6814 829.3851 353.87625 852.6334 368.01397 873.4215 L 368.01397 759.5656 L 305.66807 759.7894 L 305.66807 715.54175 L 367.7033 715.4292 L 371.18526 697.7884 C 376.26333 672.0618 386.3201 647.5373 400.7689 625.5935 L 410.65335 610.5822 L 367.06857 567.5245 L 398.4366 535.97426 L 442.10086 579.11385 L 456.96056 569.1976 C 479.6685 554.21576 504.50555 544.173 529.27285 538.9425 L 546.7804 535.3077 L 546.62384 474.7022 L 591.68846 474.7022 L 591.3399 534.9922 L 609.14096 534.9922 L 709.58514 534.9922 C 698.49325 521.7523 652.5268 504.5234 635.3772 499.7227 L 635.7747 430.86913 C 586.68165 430.8679 548.19284 430.87163 502.7908 430.8679 Z M 627.50094 557.1435 L 627.6807 626.6453 C 607.9218 632.2351 589.86685 640.03475 572.81604 649.5916 L 522.98163 600.3577 L 429.80095 694.07775 L 479.6317 743.3031 C 470.00573 760.5564 462.4885 778.89 457.2431 797.9342 L 386.6577 798.0614 L 386.6577 930.0546 L 457.98056 929.799 C 463.5946 949.3717 471.3773 967.2448 480.91463 984.1182 L 429.8841 1034.9493 L 524.10314 1127.5492 L 574.9502 1076.9381 C 592.36714 1086.6093 610.8811 1094.1181 630.0754 1099.3438 L 630.1086 1171.1755 C 675.4393 1171.5724 723.7028 1171.3679 762.4442 1171.3639 L 762.4442 1098.6822 C 782.2178 1093.1067 800.3291 1085.2499 817.3835 1075.698 L 868.189 1125.7905 L 961.4308 1032.1878 L 910.519 982.0158 C 920.1666 964.717 927.6842 946.3522 932.9357 927.2881 L 1002.0534 926.8613 L 1002.0534 794.9952 L 932.1603 795.4209 C 926.5419 775.8294 918.8718 758.0771 909.2078 741.0919 L 957.5 692.6762 L 863.3336 599.91865 L 815.1038 648.31356 C 797.7583 638.721 779.3196 631.2297 760.2 625.9971 L 760.5962 557.1435 L 627.5011 557.1435 Z M 671.4465 600.97656 L 716.5111 600.97656 L 716.1638 661.2678 L 733.9636 664.7607 C 759.80785 669.8322 784.5787 679.8765 806.611 694.2367 L 821.5294 703.961 L 863.6197 661.72764 L 895.3155 692.9501 L 853.1665 735.2067 L 863.3078 750.1765 C 878.1889 772.6396 888.0599 796.9212 893.6326 821.925 L 897.2992 839.4655 L 958.2154 839.0949 L 958.2154 883.2973 L 897.6392 883.6704 L 894.1597 901.2109 C 889.0501 926.9664 879.0153 951.49 864.5418 973.4718 L 854.6463 988.504 L 899.267 1032.4764 L 867.9039 1063.9606 L 823.2784 1019.9613 L 808.4443 1029.8164 C 785.7293 1044.661 761.0892 1054.9407 736.2299 1060.0054 L 718.6062 1063.5252 L 718.6062 1127.5308 C 706.5577 1127.5602 693.4141 1127.5415 673.91575 1127.5139 L 673.8876 1063.9878 L 656.18435 1060.5303 C 630.304 1055.4765 605.57396 1045.4784 583.5798 1031.058 L 568.7054 1021.3056 L 523.9074 1065.8969 L 492.2067 1034.7393 L 537.0671 990.0538 L 526.8304 975.0229 C 511.9354 952.609 502.0817 928.3017 496.4995 903.327 L 492.83657 885.8402 L 430.49067 886.0628 L 430.49067 841.8164 L 492.5259 841.7027 L 496.00786 824.0643 C 501.08597 798.33745 511.1429 773.8116 525.5915 751.86815 L 535.47595 736.8556 L 491.88995 693.7979 L 523.258 662.2477 L 566.92346 705.3873 L 581.78316 695.47224 C 604.5199 680.588 628.6475 670.712 654.09545 665.2184 L 671.6042 661.5836 L 671.44645 600.9768 Z M 694.71935 762.03365 C 640.46225 762.03365 596.0082 806.4889 596.0082 860.7461 C 596.0082 915.0032 640.46225 959.456 694.71935 959.456 C 748.9765 959.456 793.4306 915.0032 793.4306 860.7461 C 793.4306 806.4889 748.9765 762.03365 694.71935 762.03365 Z M 694.71935 805.8667 C 725.2874 805.8667 749.5975 830.1781 749.5975 860.7461 C 749.5975 891.314 725.2874 915.623 694.71935 915.623 C 664.1513 915.623 639.84245 891.314 639.84245 860.7461 C 639.84245 830.1781 664.1513 805.8667 694.71935 805.8667 Z" fill="black"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </g>
29
+ </g>
30
+ </svg>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="40.000004 210.00002 1920 1580" width="1920" height="1580">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:42:27 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Group_2">
11
+ <title>layer1</title>
12
+ <g id="Graphic_5">
13
+ <title>rect4187</title>
14
+ <path d="M 429.65115 270.00002 L 1570.3488 270.00002 C 1752.4102 270.00002 1900 417.58987 1900 599.6512 L 1900 1400.3489 C 1900 1582.4102 1752.4102 1730 1570.3488 1730 L 429.65115 1730 C 247.58985 1730 100 1582.4102 100 1400.3489 L 100 599.6512 C 100 417.58987 247.58985 270.00002 429.65115 270.00002 Z" fill="white"/>
15
+ <path d="M 429.65115 270.00002 L 1570.3488 270.00002 C 1752.4102 270.00002 1900 417.58987 1900 599.6512 L 1900 1400.3489 C 1900 1582.4102 1752.4102 1730 1570.3488 1730 L 429.65115 1730 C 247.58985 1730 100 1582.4102 100 1400.3489 L 100 599.6512 C 100 417.58987 247.58985 270.00002 429.65115 270.00002 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="119.99999"/>
16
+ </g>
17
+ <g id="Group_3">
18
+ <title>layer9</title>
19
+ <g id="Graphic_4">
20
+ <title>path8979-3</title>
21
+ <path d="M 655.76524 478.0921 C 553.92 478.0921 481.0623 556.3849 480.85795 645.5657 L 480.85795 645.5915 L 480.85795 645.6162 C 480.8644 672.5859 488.16213 701.0493 499.56387 726.7223 C 507.79655 745.2597 518.0322 762.3018 530.5048 775.954 C 456.3781 801.3142 369.53506 843.0525 325.64062 925.3546 L 323.2753 929.7901 L 323.2753 1196.2129 L 988.2552 1196.2129 L 988.2552 929.7901 L 985.8899 925.3546 C 942.6268 844.2363 857.6629 802.556 784.2527 777.09065 C 820.0895 740.6488 830.661 693.613 830.6725 645.6162 L 830.6725 645.5915 L 830.6725 645.5657 C 830.4682 556.3849 757.6105 478.0921 655.76524 478.0921 Z M 586.2276 573.0557 C 590.93526 573.06754 596.10385 573.2248 601.8018 573.5606 C 647.2003 576.2365 662.47956 584.4084 674.2243 592.15884 C 685.96906 599.9093 694.2486 607.28716 725.2872 608.192 L 725.2964 608.192 L 725.3067 608.192 C 749.494 607.2873 761.1261 602.97495 769.4678 598.0901 C 772.8479 596.1107 775.6862 594.05296 778.5946 592.08815 C 786.2822 608.566 790.4104 626.7814 790.4571 645.633 C 790.441 699.314 781.2124 736.9071 731.992 767.6698 L 736.8068 803.9607 C 747.0516 807.0718 757.6414 810.4855 768.3895 814.2287 C 769.89055 820.4908 771.6248 828.7039 772.7914 837.4352 C 774.0134 846.5826 774.494 856.1 773.7406 863.2461 C 772.9872 870.3922 770.7685 874.2499 770.3789 874.6395 C 745.3614 899.657 700.9531 914.2472 655.9093 914.2472 C 610.8656 914.2472 566.4573 899.657 541.43975 874.6395 C 541.0502 874.2499 538.83144 870.3922 538.07804 863.2461 C 537.32465 856.1 537.80527 846.5826 539.0273 837.4352 C 540.2002 828.6557 541.9483 820.3942 543.455 814.1199 C 554.0958 810.4195 564.5791 807.0417 574.72465 803.9607 L 577.5949 765.0745 C 575.25783 762.0773 572.87656 760.0917 570.0344 757.9595 C 559.0493 749.7181 545.7275 731.5879 536.3175 710.3997 C 526.9109 689.219 521.0831 665.009 521.0743 645.62855 C 521.13274 622.3934 527.3856 600.1221 538.8702 580.88434 C 540.92513 580.11946 543.092 579.3111 545.5274 578.51006 C 554.0919 575.69316 565.82816 573.0044 586.22804 573.0557 Z M 499.27887 831.3245 C 499.24273 831.5881 499.202 831.8453 499.16666 832.1099 C 497.6805 843.2342 496.8072 855.3429 498.085 867.4628 C 499.36275 879.5827 502.5607 892.6316 513.00395 903.0748 C 548.65016 938.7211 602.5972 954.462 655.9089 954.462 C 709.2205 954.462 763.1676 938.7211 798.8138 903.0748 C 809.257 892.6316 812.455 879.5827 813.7327 867.4628 C 815.0105 855.3428 814.1372 843.2342 812.6511 832.1099 C 812.6218 831.8907 812.5878 831.6777 812.558 831.4591 C 866.7524 855.2255 919.1356 889.2624 948.0404 940.0817 L 948.0404 1155.9981 L 851.8122 1155.9981 L 851.8122 1003.7565 L 811.5975 1003.7565 L 811.5975 1155.9981 L 499.0713 1155.9981 L 499.0713 1003.7565 L 458.8565 1003.7565 L 458.8565 1155.9981 L 363.49008 1155.9981 L 363.49008 940.0817 C 392.44937 889.1665 444.9755 855.0968 499.27887 831.3245 Z" fill="black"/>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="98.41749 98.97955 1851.7283 1849.2777" width="1851.7283" height="1849.2777">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-24 03:20:14 +0000</metadata>
6
+ <g id="Canvas_1" fill="none" stroke-opacity="1" stroke-dasharray="none" fill-opacity="1" stroke="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Group_6">
11
+ <title>Group_3</title>
12
+ <g id="Group_7">
13
+ <title>Graphic_4</title>
14
+ <g id="Graphic_8">
15
+ <path d="M 1015.0432 99.00216 C 599.2095 95.90607 209.09827 411.14635 121.60561 817.2473 C 37.220146 1173.9655 188.3103 1571.8715 490.9178 1779.8322 C 784.6393 1990.202 1203.2472 2006.6887 1508.7831 1811.306 C 1816.007 1623.1699 1996.9227 1247.4784 1939.5968 889.9861 C 1887.1027 519.4032 1591.0739 197.09992 1223.4673 120.92637 C 1155.1216 105.67811 1085.0524 98.53775 1015.0432 99.00216 Z M 1037.1232 388.8835 C 1342.6822 387.916 1623.3623 640.799 1654.5065 944.9998 C 1694.2614 1235.7616 1506.8039 1539.914 1224.9695 1627.3302 C 949.893 1720.9387 618.1968 1601.4779 474.8942 1346.3211 C 316.32957 1081.5955 383.79476 704.356 635.0591 520.5642 C 749.0056 432.64484 893.261 385.57456 1037.1232 388.8835 Z" fill="black"/>
16
+ </g>
17
+ <g id="Graphic_5">
18
+ <path d="M 720 646 L 720 671.90354 L 720 1450.1782 L 819.6642 1450.1782 L 1216.8718 1450.1782 L 1316.7184 1450.1782 L 1316.7184 646 Z M 768.0126 697.61776 L 1268.5216 697.61776 L 1268.5216 1398.5504 L 1216.8718 1398.5504 L 819.6642 1398.5504 L 768.0126 1398.5504 Z M 819.6642 776.5243 L 819.6642 827.9506 L 1216.8718 827.9506 L 1216.8718 776.5243 Z M 819.6642 931.7841 L 819.6642 983.4099 L 1216.8718 983.4099 L 1216.8718 931.7841 Z M 819.6642 1111.2018 L 819.6642 1162.6383 L 1216.8718 1162.6383 L 1216.8718 1111.2018 Z M 819.6642 1273.2834 L 819.6642 1324.7218 L 1216.8718 1324.7218 L 1216.8718 1273.2834 Z" fill="black"/>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="98.41749 98.97955 1851.7283 1849.2777" width="1851.7283" height="1849.2777">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:36:12 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Group_2">
11
+ <title>layer1</title>
12
+ <g id="Group_3">
13
+ <title>layer1-6</title>
14
+ <g id="Graphic_4">
15
+ <title>path4481</title>
16
+ <path d="M 1015.0432 99.00216 C 599.2095 95.90607 209.09827 411.14635 121.60561 817.2473 C 37.220146 1173.9655 188.3103 1571.8715 490.9178 1779.8322 C 784.6393 1990.202 1203.2472 2006.6887 1508.7831 1811.3059 C 1816.007 1623.1699 1996.9227 1247.4784 1939.5968 889.9861 C 1887.1027 519.40317 1591.0739 197.09992 1223.4673 120.92637 C 1155.1216 105.67811 1085.0524 98.53775 1015.0432 99.00216 Z M 1037.1232 388.8835 C 1342.6822 387.916 1623.3623 640.799 1654.5065 944.9998 C 1694.2614 1235.7616 1506.8039 1539.914 1224.9695 1627.3302 C 949.893 1720.9387 618.1968 1601.4779 474.8942 1346.3211 C 316.32957 1081.5955 383.79476 704.356 635.0591 520.5642 C 749.0056 432.64484 893.261 385.57456 1037.1232 388.8835 Z" fill="black"/>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-width="4"><path stroke-linejoin="round" d="M22.799 4.201L4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z"/><path stroke-linecap="round" d="m18.043 29.987l12-11.962m-11.991-.01l11.982 11.981"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="4"><path d="M22.799 4.201L4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z"/><path d="M24 32a8 8 0 1 0 0-16a8 8 0 0 0 0 16Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-width="4"><path stroke-linejoin="round" d="M22.799 4.201L4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z"/><path stroke-linecap="round" d="M24.043 15.534v16.944m-8.472-8.472h16.944"/></g></svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="71.5 95.5 1850 1849.998" width="1850" height="1849.998">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:43:37 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Graphic_2">
11
+ <title>path4481</title>
12
+ <path d="M 996.5 95.5 C 486.22933 95.5 71.5 510.22064 71.5 1020.4941 C 71.5 1530.7677 486.22866 1945.498 996.5 1945.498 C 1506.7712 1945.498 1921.5 1530.7677 1921.5 1020.4941 C 1921.5 510.22065 1506.7706 95.5 996.5 95.5 Z M 996.5 195.5 C 1452.7276 195.5 1821.5 564.2644 1821.5 1020.4941 C 1821.5 1476.724 1452.727 1845.498 996.5 1845.498 C 540.2729 1845.498 171.5 1476.724 171.5 1020.4941 C 171.5 564.2644 540.2722 195.5 996.5 195.5 Z M 686.4941 630.4609 L 686.4941 655.5879 L 686.4941 1410.5313 L 790.0488 1410.5313 L 1202.7617 1410.5313 L 1306.5059 1410.5313 L 1306.5059 630.4609 Z M 736.3809 680.53125 L 1256.4277 680.53125 L 1256.4277 1360.4512 L 1202.7617 1360.4512 L 790.0488 1360.4512 L 736.3809 1360.4512 Z M 790.0488 757.0723 L 790.0488 806.957 L 1202.7617 806.957 L 1202.7617 757.0723 Z M 790.0488 907.6777 L 790.0488 957.7559 L 1202.7617 957.7559 L 1202.7617 907.6777 Z M 790.0488 1081.7168 L 790.0488 1131.6113 L 1202.7617 1131.6113 L 1202.7617 1081.7168 Z M 790.0488 1238.9395 L 790.0488 1288.8359 L 1202.7617 1288.8359 L 1202.7617 1238.9395 Z" fill="black"/>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="99.08133 98.92314 1850.4658 1850.2586" width="1850.4658" height="1850.2586">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:38:50 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Graphic_2">
11
+ <title>path4481</title>
12
+ <path d="M 1015.4766 98.92773 C 654.77914 97.73011 308.6741 330.79447 171.7754 664.1914 C 27.65656 994.3438 102.53842 1404.4752 354.6367 1661.9629 C 597.1004 1922.9548 996.5859 2018.7494 1331.1562 1896.6348 C 1677.896 1778.5613 1933.8798 1438.0411 1947.795 1071.543 C 1971.1343 711.4123 1759.2596 352.12165 1434.8418 195.25 C 1307.8073 131.85595 1165.9493 98.79702 1024 99 C 1021.1581 98.96146 1018.3167 98.93716 1015.4766 98.92773 Z M 1040.8281 198.9004 C 1393.9006 200.83863 1726.4328 456.25906 1817.746 797.9297 C 1914.7762 1124.8373 1783.5324 1503.3352 1501.8398 1696.955 C 1209.2273 1912.0295 775.2993 1896.469 498.97656 1660.7988 C 220.5625 1438.8189 120.90473 1028.2233 263.75 702.6172 C 387.55746 401.60486 698.3378 195.17882 1024 199 C 1029.6138 198.90237 1035.2238 198.86962 1040.8281 198.9004 Z" fill="black"/>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="51.5 80 1850 1849.998" width="1850" height="1849.998">
4
+ <defs/>
5
+ <metadata> Produced by OmniGraffle 7.18.5\n2021-04-09 07:39:42 +0000</metadata>
6
+ <g id="Canvas_1" stroke-opacity="1" fill="none" fill-opacity="1" stroke="none" stroke-dasharray="none">
7
+ <title>Canvas 1</title>
8
+ <g id="Canvas_1_Layer_1">
9
+ <title>Layer 1</title>
10
+ <g id="Graphic_2">
11
+ <title>path4481</title>
12
+ <path d="M 976.5 80 C 466.22933 80 51.5 494.72064 51.5 1004.9941 C 51.5 1515.2677 466.22866 1929.998 976.5 1929.998 C 1486.7712 1929.998 1901.5 1515.2677 1901.5 1004.9941 C 1901.5 494.72065 1486.7706 80 976.5 80 Z M 976.5 180 C 1432.7276 180 1801.5 548.7644 1801.5 1004.9941 C 1801.5 1461.224 1432.727 1829.998 976.5 1829.998 C 520.2729 1829.998 151.5 1461.224 151.5 1004.9941 C 151.5 548.7644 520.2722 180 976.5 180 Z M 968.2109 565.9453 C 796.6824 567.15733 633.1106 679.8299 569.8926 839.2305 C 504.1024 995.0313 540.4735 1186.8001 658.77734 1307.6719 C 773.8036 1431.5016 963.3318 1477.136 1122.084 1419.0996 C 1288.4435 1362.4249 1410.6568 1197.8689 1415.0605 1021.9102 C 1423.923 850.965 1321.1862 681.941 1166.502 609.34375 C 1107.4754 580.76485 1041.9568 565.88615 976.3848 565.97265 C 973.6584 565.9355 970.9336 565.9261 968.2109 565.9453 Z M 983.8535 645.918 C 1140.5597 646.619 1287.5681 762.4377 1324.1113 915.0938 C 1364.8101 1064.1123 1296.2408 1234.0297 1162.75 1312.1094 C 1026.4496 1397.6527 834.2796 1374.8541 722.3555 1259 C 604.2415 1145.0565 583.2081 947.9146 673.8242 811.2656 C 738.0027 709.3191 855.8746 644.79905 976.3848 645.97265 C 978.8766 645.9255 981.3661 645.90684 983.8535 645.918 Z M 1089.8047 747.9902 C 1049.8373 820.4993 1009.8697 893.0085 969.9023 965.5176 C 932.8699 969.4554 924.0723 1025.6387 958.2402 1040.6231 C 980.8101 1056.2894 998.4874 1030.2309 1019.0332 1031.1289 L 1202.3262 1031.1289 L 1202.3262 981.1289 L 1018.3887 981.1289 C 1056.7904 911.4609 1095.1921 841.793 1133.5938 772.125 C 1118.9974 764.0801 1104.4011 756.0351 1089.8047 747.9902 Z" fill="black"/>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill="currentColor" d="M3.714 5.258C3.523 4 4.41 2.87 5.765 2.456a.988.988 0 0 1 1.214.598l.435 1.16a1 1 0 0 1-.26 1.088L5.86 6.487a.501.501 0 0 0-.152.47l.012.052l.031.13a7.265 7.265 0 0 0 .729 1.805a7.264 7.264 0 0 0 1.296 1.627l.04.036a.5.5 0 0 0 .482.103l1.673-.527a1 1 0 0 1 1.072.319l.792.961c.33.4.29.988-.089 1.341c-1.037.967-2.463 1.165-3.455.368a12.732 12.732 0 0 1-3.024-3.529a12.432 12.432 0 0 1-1.554-4.385Zm3.043 1.765l1.072-.984a2 2 0 0 0 .521-2.176l-.434-1.16A1.988 1.988 0 0 0 5.473 1.5c-1.683.515-3.034 2.024-2.748 3.909c.2 1.316.661 2.99 1.678 4.738a13.732 13.732 0 0 0 3.262 3.805c1.488 1.195 3.474.787 4.764-.415a1.98 1.98 0 0 0 .179-2.708l-.792-.962a2 2 0 0 0-2.144-.636l-1.389.437a6.604 6.604 0 0 1-.936-1.223a6.268 6.268 0 0 1-.59-1.421Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path fill="currentColor" d="M12.452 4.516c.446.436.481 1.043 0 1.576L8.705 10l3.747 3.908c.481.533.446 1.141 0 1.574c-.445.436-1.197.408-1.615 0c-.418-.406-4.502-4.695-4.502-4.695a1.095 1.095 0 0 1 0-1.576s4.084-4.287 4.502-4.695c.418-.409 1.17-.436 1.615 0z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m9 16.2l-3.5-3.5a.984.984 0 0 0-1.4 0a.984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4a.984.984 0 0 0-1.4 0L9 16.2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"/><path fill="currentColor" d="M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M24 24c4.42 0 8-3.58 8-8s-3.58-8-8-8s-8 3.58-8 8s3.58 8 8 8Zm10-8c0 5.525-4.475 10-10 10s-10-4.475-10-10S18.475 6 24 6s10 4.475 10 10ZM9.223 34.212C8.22 35.022 8 35.629 8 36v4h32v-4c0-.37-.22-.979-1.224-1.788c-.98-.791-2.442-1.545-4.214-2.197C31.02 30.712 26.753 30 24 30c-2.753 0-7.02.712-10.562 2.015c-1.772.652-3.234 1.406-4.215 2.197ZM24 28c-6.008 0-18 3.035-18 8v6h36v-6c0-4.965-11.992-8-18-8Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--fluent" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 1.996a7.49 7.49 0 0 1 7.496 7.25l.004.25v4.097l1.38 3.156a1.249 1.249 0 0 1-1.145 1.75L15 18.502a3 3 0 0 1-5.995.177L9 18.499H4.275a1.251 1.251 0 0 1-1.147-1.747L4.5 13.594V9.496c0-4.155 3.352-7.5 7.5-7.5ZM13.5 18.5l-3 .002a1.5 1.5 0 0 0 2.993.145l.007-.147ZM12 3.496c-3.32 0-6 2.674-6 6v4.41L4.656 17h14.697L18 13.907V9.509l-.003-.225A5.988 5.988 0 0 0 12 3.496Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ant-design" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M15 12.06c-.21.29-.36.61-.5.94H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v.56M21 9H3V3h18v6m-2-4H5v2h14V5m-6 14H6v-9H4v11h9.03c-.03-.1-.03-.2-.03-.3V19m10-1.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3v-1.5Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m21.706 5.291l-2.999-2.998A.996.996 0 0 0 18 2H6a.996.996 0 0 0-.707.293L2.294 5.291A.994.994 0 0 0 2 5.999V19c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5.999a.994.994 0 0 0-.294-.708zM6.414 4h11.172l.999.999H5.415L6.414 4zM4 19V6.999h16L20.002 19H4z"/><path fill="currentColor" d="M15 12H9v-2H7v4h10v-4h-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ri" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 22H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1zm-1-2V4H5v16h14zM7 6h4v4H7V6zm0 6h10v2H7v-2zm0 4h10v2H7v-2zm6-9h4v2h-4V7z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41L17.59 17L19 15.59L15.41 12L19 8.41L17.59 7L14 10.59L10.41 7L9 8.41L12.59 12L9 15.59z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8z"/><path fill="currentColor" fill-rule="evenodd" d="M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.468 3.468 0 0 0-4.1-.59l2.35 2.35l-1.41 1.41l-2.35-2.35c-.71 1.32-.52 2.99.59 4.1c.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ic" width="32" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z"></path></svg>