cc-core-cli 1.0.129 → 1.0.131

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 (551) hide show
  1. package/bin/index.js +6 -6
  2. package/package.json +1 -1
  3. package/template/admin/Dockerfile +7 -4
  4. package/template/admin/next-env.d.ts +5 -0
  5. package/template/admin/package.json +23 -10
  6. package/template/admin/postcss.config.js +6 -0
  7. package/template/admin/public/images/component/barchart.svg +20 -0
  8. package/template/admin/public/images/component/bubble_chart.svg +17 -0
  9. package/template/admin/public/images/component/button.svg +17 -0
  10. package/template/admin/public/images/component/calendar.svg +63 -0
  11. package/template/admin/public/images/component/checkbox.svg +25 -0
  12. package/template/admin/public/images/component/color_picker.svg +25 -0
  13. package/template/admin/public/images/component/cron_tab.svg +33 -0
  14. package/template/admin/public/images/component/currency.svg +34 -0
  15. package/template/admin/public/images/component/custom_fields.svg +34 -0
  16. package/template/admin/public/images/component/data_table.svg +101 -0
  17. package/template/admin/public/images/component/date_picker.svg +47 -0
  18. package/template/admin/public/images/component/donut.svg +23 -0
  19. package/template/admin/public/images/component/edit_table.svg +96 -0
  20. package/template/admin/public/images/component/entity_field.svg +36 -0
  21. package/template/admin/public/images/component/entity_layout.svg +40 -0
  22. package/template/admin/public/images/component/entity_list.svg +88 -0
  23. package/template/admin/public/images/component/file.svg +36 -0
  24. package/template/admin/public/images/component/hidden_field.svg +34 -0
  25. package/template/admin/public/images/component/image.svg +38 -0
  26. package/template/admin/public/images/component/input.svg +34 -0
  27. package/template/admin/public/images/component/input_icon.svg +13 -0
  28. package/template/admin/public/images/component/input_number.svg +34 -0
  29. package/template/admin/public/images/component/input_translate.svg +47 -0
  30. package/template/admin/public/images/component/json.svg +31 -0
  31. package/template/admin/public/images/component/label.svg +11 -0
  32. package/template/admin/public/images/component/line_chart.svg +19 -0
  33. package/template/admin/public/images/component/matrix_table.svg +34 -0
  34. package/template/admin/public/images/component/mixed_chart.svg +25 -0
  35. package/template/admin/public/images/component/polar_chart.svg +33 -0
  36. package/template/admin/public/images/component/radio.svg +24 -0
  37. package/template/admin/public/images/component/redar_chart.svg +17 -0
  38. package/template/admin/public/images/component/scatter_chart.svg +25 -0
  39. package/template/admin/public/images/component/select.svg +34 -0
  40. package/template/admin/public/images/component/summary_box.svg +31 -0
  41. package/template/admin/public/images/component/switch.svg +12 -0
  42. package/template/admin/public/images/component/translate.svg +35 -0
  43. package/template/admin/public/images/component/tree.svg +78 -0
  44. package/template/admin/public/images/default-profile.png +0 -0
  45. package/template/admin/public/images/empty-data.png +0 -0
  46. package/template/admin/public/images/file.png +0 -0
  47. package/template/admin/public/images/forgot-step-1.png +0 -0
  48. package/template/admin/public/images/forgot-step-2.png +0 -0
  49. package/template/admin/public/images/forgot-step-3.png +0 -0
  50. package/template/admin/public/images/form.png +0 -0
  51. package/template/admin/public/images/info-panel.png +0 -0
  52. package/template/admin/public/images/panel.png +0 -0
  53. package/template/admin/public/images/stack.png +0 -0
  54. package/template/admin/public/images/type-all.png +0 -0
  55. package/template/admin/public/images/type-boolean.png +0 -0
  56. package/template/admin/public/images/type-date.png +0 -0
  57. package/template/admin/public/images/type-file.png +0 -0
  58. package/template/admin/public/images/type-image.png +0 -0
  59. package/template/admin/public/images/type-json.png +0 -0
  60. package/template/admin/public/images/type-number.png +0 -0
  61. package/template/admin/public/images/type-options.png +0 -0
  62. package/template/admin/public/images/type-password.png +0 -0
  63. package/template/admin/public/images/type-related.png +0 -0
  64. package/template/admin/public/images/type-string.png +0 -0
  65. package/template/admin/public/images/type-trash.png +0 -0
  66. package/template/admin/public/images/type-unknown.png +0 -0
  67. package/template/admin/public/images/upload.png +0 -0
  68. package/template/admin/public/private-image-worker.js +10 -7
  69. package/template/admin/src/pages/[...url_key].tsx +9 -0
  70. package/template/admin/src/pages/_app.tsx +22 -0
  71. package/template/admin/src/pages/activate.tsx +9 -0
  72. package/template/admin/src/pages/api/auth/activate_account/confirm.ts +13 -0
  73. package/template/admin/src/pages/api/auth/activate_account/index.ts +13 -0
  74. package/template/admin/src/pages/api/auth/activate_account/resend.ts +13 -0
  75. package/template/admin/src/pages/api/auth/activate_account/set_password.ts +17 -0
  76. package/template/admin/src/pages/api/auth/authen/confirm.ts +24 -0
  77. package/template/admin/src/pages/api/auth/authen/resend.ts +13 -0
  78. package/template/admin/src/pages/api/auth/callback/index.ts +24 -0
  79. package/template/admin/src/pages/api/auth/forgot_password/confirm.ts +13 -0
  80. package/template/admin/src/pages/api/auth/forgot_password/index.ts +13 -0
  81. package/template/admin/src/pages/api/auth/forgot_password/resend.ts +13 -0
  82. package/template/admin/src/pages/api/auth/forgot_password/reset.ts +17 -0
  83. package/template/admin/src/pages/api/auth/login.ts +24 -0
  84. package/template/admin/src/pages/api/auth/logout.ts +30 -0
  85. package/template/admin/src/pages/api/custom/[...path].ts +16 -0
  86. package/template/admin/src/pages/api/download.ts +79 -0
  87. package/template/admin/src/pages/api/entity/[entity]/[id].ts +46 -0
  88. package/template/admin/src/pages/api/entity/[entity]/delete.ts +18 -0
  89. package/template/admin/src/pages/api/entity/[entity]/find.ts +17 -0
  90. package/template/admin/src/pages/api/entity/[entity]/index.ts +30 -0
  91. package/template/admin/src/pages/api/entity/[entity]/update.ts +18 -0
  92. package/template/admin/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
  93. package/template/admin/src/pages/api/entity/schema/[entity]/index.ts +27 -0
  94. package/template/admin/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
  95. package/template/admin/src/pages/api/entity/schema/index.ts +27 -0
  96. package/template/admin/src/pages/api/import_export/example/index.ts +13 -0
  97. package/template/admin/src/pages/api/import_export/execute/index.ts +13 -0
  98. package/template/admin/src/pages/api/import_export/export/index.ts +13 -0
  99. package/template/admin/src/pages/api/import_export/import/index.ts +13 -0
  100. package/template/admin/src/pages/api/import_export/progresses/index.ts +13 -0
  101. package/template/admin/src/pages/api/import_export/verify_progress/index.ts +13 -0
  102. package/template/admin/src/pages/api/language/set.ts +15 -0
  103. package/template/admin/src/pages/api/media/private.ts +49 -0
  104. package/template/admin/src/pages/api/queue/[queue]/count.ts +17 -0
  105. package/template/admin/src/pages/api/queue/[queue]/flush.ts +17 -0
  106. package/template/admin/src/pages/api/queue/[queue]/flushall.ts +16 -0
  107. package/template/admin/src/pages/api/queue/[queue]/index.ts +20 -0
  108. package/template/admin/src/pages/api/queue/index.ts +13 -0
  109. package/template/admin/src/pages/api/redis/index.ts +0 -0
  110. package/template/admin/src/pages/api/setting/[code].ts +21 -0
  111. package/template/admin/src/pages/api/system/config.ts +13 -0
  112. package/template/admin/src/pages/api/system/data_source/[code].ts +17 -0
  113. package/template/admin/src/pages/api/system/endpoint/[method].ts +17 -0
  114. package/template/admin/src/pages/api/system/queue.ts +13 -0
  115. package/template/admin/src/pages/api/system/role.ts +13 -0
  116. package/template/admin/src/pages/api/user/change_password.ts +13 -0
  117. package/template/admin/src/pages/api/user/filter/index.ts +13 -0
  118. package/template/admin/src/pages/api/user/me.ts +24 -0
  119. package/template/admin/src/pages/api/user/register.ts +13 -0
  120. package/template/admin/src/pages/callback/[channel].tsx +9 -0
  121. package/template/admin/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
  122. package/template/admin/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
  123. package/template/admin/src/pages/forgot_password.tsx +9 -0
  124. package/template/admin/src/pages/index.tsx +7 -0
  125. package/template/admin/src/pages/login.tsx +9 -0
  126. package/template/admin/src/pages/profile.tsx +9 -0
  127. package/template/admin/src/pages/register.tsx +9 -0
  128. package/template/admin/src/pages/setting/entities/[key].tsx +10 -0
  129. package/template/admin/src/pages/setting/entities/index.tsx +10 -0
  130. package/template/admin/src/pages/setting/module/[module]/[layout].tsx +16 -0
  131. package/template/admin/src/pages/setting/modules.tsx +10 -0
  132. package/template/admin/src/styles/global.css +101 -0
  133. package/template/admin/src/styles/workflow.css +40 -0
  134. package/template/admin/src/utils/color.ts +88 -0
  135. package/template/admin/tailwind.config.js +57 -0
  136. package/template/admin/tsconfig.json +36 -0
  137. package/template/admin_v3/Dockerfile +15 -0
  138. package/template/admin_v3/README.md +1 -0
  139. package/template/admin_v3/_env +10 -0
  140. package/template/admin_v3/_gitignore +5 -0
  141. package/template/admin_v3/_npmrc +1 -0
  142. package/template/admin_v3/docker-compose.yml +11 -0
  143. package/template/admin_v3/next-env.d.ts +5 -0
  144. package/template/admin_v3/package.json +37 -0
  145. package/template/admin_v3/postcss.config.js +6 -0
  146. package/template/admin_v3/public/images/component/barchart.svg +20 -0
  147. package/template/admin_v3/public/images/component/bubble_chart.svg +17 -0
  148. package/template/admin_v3/public/images/component/button.svg +17 -0
  149. package/template/admin_v3/public/images/component/calendar.svg +63 -0
  150. package/template/admin_v3/public/images/component/checkbox.svg +25 -0
  151. package/template/admin_v3/public/images/component/color_picker.svg +25 -0
  152. package/template/admin_v3/public/images/component/cron_tab.svg +33 -0
  153. package/template/admin_v3/public/images/component/currency.svg +34 -0
  154. package/template/admin_v3/public/images/component/custom_fields.svg +34 -0
  155. package/template/admin_v3/public/images/component/data_table.svg +101 -0
  156. package/template/admin_v3/public/images/component/date_picker.svg +47 -0
  157. package/template/admin_v3/public/images/component/donut.svg +23 -0
  158. package/template/admin_v3/public/images/component/edit_table.svg +96 -0
  159. package/template/admin_v3/public/images/component/entity_field.svg +36 -0
  160. package/template/admin_v3/public/images/component/entity_layout.svg +40 -0
  161. package/template/admin_v3/public/images/component/entity_list.svg +88 -0
  162. package/template/admin_v3/public/images/component/file.svg +36 -0
  163. package/template/admin_v3/public/images/component/hidden_field.svg +34 -0
  164. package/template/admin_v3/public/images/component/image.svg +38 -0
  165. package/template/admin_v3/public/images/component/input.svg +34 -0
  166. package/template/admin_v3/public/images/component/input_icon.svg +13 -0
  167. package/template/admin_v3/public/images/component/input_number.svg +34 -0
  168. package/template/admin_v3/public/images/component/input_translate.svg +47 -0
  169. package/template/admin_v3/public/images/component/json.svg +31 -0
  170. package/template/admin_v3/public/images/component/label.svg +11 -0
  171. package/template/admin_v3/public/images/component/line_chart.svg +19 -0
  172. package/template/admin_v3/public/images/component/matrix_table.svg +34 -0
  173. package/template/admin_v3/public/images/component/mixed_chart.svg +25 -0
  174. package/template/admin_v3/public/images/component/polar_chart.svg +33 -0
  175. package/template/admin_v3/public/images/component/radio.svg +24 -0
  176. package/template/admin_v3/public/images/component/redar_chart.svg +17 -0
  177. package/template/admin_v3/public/images/component/scatter_chart.svg +25 -0
  178. package/template/admin_v3/public/images/component/select.svg +34 -0
  179. package/template/admin_v3/public/images/component/summary_box.svg +31 -0
  180. package/template/admin_v3/public/images/component/switch.svg +12 -0
  181. package/template/admin_v3/public/images/component/translate.svg +35 -0
  182. package/template/admin_v3/public/images/component/tree.svg +78 -0
  183. package/template/admin_v3/public/images/default-profile.png +0 -0
  184. package/template/admin_v3/public/images/empty-data.png +0 -0
  185. package/template/admin_v3/public/images/file.png +0 -0
  186. package/template/admin_v3/public/images/forgot-step-1.png +0 -0
  187. package/template/admin_v3/public/images/forgot-step-2.png +0 -0
  188. package/template/admin_v3/public/images/forgot-step-3.png +0 -0
  189. package/template/admin_v3/public/images/form.png +0 -0
  190. package/template/admin_v3/public/images/info-panel.png +0 -0
  191. package/template/admin_v3/public/images/panel.png +0 -0
  192. package/template/admin_v3/public/images/split.svg +1 -0
  193. package/template/admin_v3/public/images/stack.png +0 -0
  194. package/template/admin_v3/public/images/type-all.png +0 -0
  195. package/template/admin_v3/public/images/type-boolean.png +0 -0
  196. package/template/admin_v3/public/images/type-date.png +0 -0
  197. package/template/admin_v3/public/images/type-file.png +0 -0
  198. package/template/admin_v3/public/images/type-image.png +0 -0
  199. package/template/admin_v3/public/images/type-json.png +0 -0
  200. package/template/admin_v3/public/images/type-number.png +0 -0
  201. package/template/admin_v3/public/images/type-options.png +0 -0
  202. package/template/admin_v3/public/images/type-password.png +0 -0
  203. package/template/admin_v3/public/images/type-related.png +0 -0
  204. package/template/admin_v3/public/images/type-string.png +0 -0
  205. package/template/admin_v3/public/images/type-trash.png +0 -0
  206. package/template/admin_v3/public/images/type-unknown.png +0 -0
  207. package/template/admin_v3/public/images/upload.png +0 -0
  208. package/template/admin_v3/public/private-image-worker.js +24 -0
  209. package/template/admin_v3/src/pages/[...url_key].tsx +9 -0
  210. package/template/admin_v3/src/pages/_app.tsx +22 -0
  211. package/template/admin_v3/src/pages/activate.tsx +9 -0
  212. package/template/admin_v3/src/pages/api/auth/activate_account/confirm.ts +13 -0
  213. package/template/admin_v3/src/pages/api/auth/activate_account/index.ts +13 -0
  214. package/template/admin_v3/src/pages/api/auth/activate_account/resend.ts +13 -0
  215. package/template/admin_v3/src/pages/api/auth/activate_account/set_password.ts +17 -0
  216. package/template/admin_v3/src/pages/api/auth/authen/confirm.ts +24 -0
  217. package/template/admin_v3/src/pages/api/auth/authen/resend.ts +13 -0
  218. package/template/admin_v3/src/pages/api/auth/callback/index.ts +24 -0
  219. package/template/admin_v3/src/pages/api/auth/forgot_password/confirm.ts +13 -0
  220. package/template/admin_v3/src/pages/api/auth/forgot_password/index.ts +13 -0
  221. package/template/admin_v3/src/pages/api/auth/forgot_password/resend.ts +13 -0
  222. package/template/admin_v3/src/pages/api/auth/forgot_password/reset.ts +17 -0
  223. package/template/admin_v3/src/pages/api/auth/login.ts +24 -0
  224. package/template/admin_v3/src/pages/api/auth/logout.ts +30 -0
  225. package/template/admin_v3/src/pages/api/custom/[...path].ts +16 -0
  226. package/template/admin_v3/src/pages/api/download.ts +79 -0
  227. package/template/admin_v3/src/pages/api/entity/[entity]/[id].ts +46 -0
  228. package/template/admin_v3/src/pages/api/entity/[entity]/delete.ts +18 -0
  229. package/template/admin_v3/src/pages/api/entity/[entity]/find.ts +17 -0
  230. package/template/admin_v3/src/pages/api/entity/[entity]/index.ts +30 -0
  231. package/template/admin_v3/src/pages/api/entity/[entity]/update.ts +18 -0
  232. package/template/admin_v3/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
  233. package/template/admin_v3/src/pages/api/entity/schema/[entity]/index.ts +27 -0
  234. package/template/admin_v3/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
  235. package/template/admin_v3/src/pages/api/entity/schema/index.ts +27 -0
  236. package/template/admin_v3/src/pages/api/import_export/example/index.ts +13 -0
  237. package/template/admin_v3/src/pages/api/import_export/execute/index.ts +13 -0
  238. package/template/admin_v3/src/pages/api/import_export/export/index.ts +13 -0
  239. package/template/admin_v3/src/pages/api/import_export/import/index.ts +13 -0
  240. package/template/admin_v3/src/pages/api/import_export/progresses/index.ts +13 -0
  241. package/template/admin_v3/src/pages/api/import_export/verify_progress/index.ts +13 -0
  242. package/template/admin_v3/src/pages/api/language/set.ts +15 -0
  243. package/template/admin_v3/src/pages/api/media/private.ts +49 -0
  244. package/template/admin_v3/src/pages/api/queue/[queue]/count.ts +17 -0
  245. package/template/admin_v3/src/pages/api/queue/[queue]/flush.ts +17 -0
  246. package/template/admin_v3/src/pages/api/queue/[queue]/flushall.ts +16 -0
  247. package/template/admin_v3/src/pages/api/queue/[queue]/index.ts +20 -0
  248. package/template/admin_v3/src/pages/api/queue/index.ts +13 -0
  249. package/template/admin_v3/src/pages/api/redis/[connect]/index.ts +0 -0
  250. package/template/admin_v3/src/pages/api/redis/index.ts +0 -0
  251. package/template/admin_v3/src/pages/api/setting/[code].ts +21 -0
  252. package/template/admin_v3/src/pages/api/system/config.ts +13 -0
  253. package/template/admin_v3/src/pages/api/system/data_source/[code].ts +17 -0
  254. package/template/admin_v3/src/pages/api/system/endpoint/[method].ts +17 -0
  255. package/template/admin_v3/src/pages/api/system/queue.ts +13 -0
  256. package/template/admin_v3/src/pages/api/system/role.ts +13 -0
  257. package/template/admin_v3/src/pages/api/user/change_password.ts +13 -0
  258. package/template/admin_v3/src/pages/api/user/filter/index.ts +13 -0
  259. package/template/admin_v3/src/pages/api/user/me.ts +24 -0
  260. package/template/admin_v3/src/pages/api/user/register.ts +13 -0
  261. package/template/admin_v3/src/pages/callback/[channel].tsx +9 -0
  262. package/template/admin_v3/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
  263. package/template/admin_v3/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
  264. package/template/admin_v3/src/pages/forgot_password.tsx +9 -0
  265. package/template/admin_v3/src/pages/index.tsx +7 -0
  266. package/template/admin_v3/src/pages/login.tsx +9 -0
  267. package/template/admin_v3/src/pages/profile.tsx +9 -0
  268. package/template/admin_v3/src/pages/register.tsx +9 -0
  269. package/template/admin_v3/src/pages/setting/entities/[key].tsx +10 -0
  270. package/template/admin_v3/src/pages/setting/entities/index.tsx +10 -0
  271. package/template/admin_v3/src/pages/setting/module/[module]/[layout].tsx +16 -0
  272. package/template/admin_v3/src/pages/setting/modules.tsx +10 -0
  273. package/template/admin_v3/src/styles/global.css +101 -0
  274. package/template/admin_v3/src/styles/workflow.css +40 -0
  275. package/template/admin_v3/src/utils/color.ts +88 -0
  276. package/template/admin_v3/tailwind.config.js +57 -0
  277. package/template/admin_v3/tsconfig.json +36 -0
  278. package/template/core/_gitignore +4 -0
  279. package/template/core/buildspec.yml +29 -0
  280. package/template/core/jest.config.js +43 -0
  281. package/template/core/package.json +18 -3
  282. package/template/core/sonar-project.properties +27 -0
  283. package/template/core/test/__mocks__/cc-core-lib.d.ts +161 -0
  284. package/template/core/test/__mocks__/cc-core-lib.js +311 -0
  285. package/template/core/test/__mocks__/pdf-img-convert.js +5 -0
  286. package/template/core/test/jest.setup.ts +25 -0
  287. package/template/core/tsconfig.json +13 -13
  288. package/template/core/tsconfig.test.json +17 -0
  289. package/template/admin/config/service-account.json +0 -1
  290. package/template/admin/index.js +0 -67
  291. package/template/admin/next.config.js +0 -66
  292. package/template/admin/pages/404.js +0 -13
  293. package/template/admin/pages/[...url_key].js +0 -21
  294. package/template/admin/pages/_app.js +0 -16
  295. package/template/admin/pages/_document.js +0 -43
  296. package/template/admin/pages/callback/[channel].js +0 -13
  297. package/template/admin/pages/callback.js +0 -13
  298. package/template/admin/pages/change_password_expired.js +0 -13
  299. package/template/admin/pages/check_session.js +0 -13
  300. package/template/admin/pages/cognito.js +0 -13
  301. package/template/admin/pages/confirmpassword.js +0 -12
  302. package/template/admin/pages/forgotpassword.js +0 -12
  303. package/template/admin/pages/index.js +0 -13
  304. package/template/admin/pages/login.js +0 -13
  305. package/template/admin/pages/maintenance.js +0 -12
  306. package/template/admin/pages/password_expired.js +0 -13
  307. package/template/admin/pages/permission_denied.js +0 -13
  308. package/template/admin/pages/profile.js +0 -14
  309. package/template/admin/pages/register.js +0 -13
  310. package/template/admin/pages/setting/[...setting_url_key].js +0 -13
  311. package/template/admin/pages/setting/entities/[subList]/detail.js +0 -14
  312. package/template/admin/pages/setting/entities/[subList]/detail_compare.js +0 -8
  313. package/template/admin/pages/setting/entities/[subList]/index.js +0 -7
  314. package/template/admin/pages/setting/entities/detail/index.js +0 -14
  315. package/template/admin/pages/setting/entities/index.js +0 -14
  316. package/template/admin/pages/social.js +0 -13
  317. package/template/admin/pages/token_expired.js +0 -12
  318. package/template/admin/public/icon-192x192.png +0 -0
  319. package/template/admin/public/icon-256x256.png +0 -0
  320. package/template/admin/public/icon-384x384.png +0 -0
  321. package/template/admin/public/icon-512x512.png +0 -0
  322. package/template/admin/public/manifest.json +0 -32
  323. package/template/admin/public/static/images/adv_settings.svg +0 -130
  324. package/template/admin/public/static/images/aws-cognito.png +0 -0
  325. package/template/admin/public/static/images/azure-ad.svg +0 -1
  326. package/template/admin/public/static/images/bin_icon.svg +0 -1
  327. package/template/admin/public/static/images/color-picker.png +0 -0
  328. package/template/admin/public/static/images/csv_icon.svg +0 -1
  329. package/template/admin/public/static/images/default-file.png +0 -0
  330. package/template/admin/public/static/images/default-img.png +0 -0
  331. package/template/admin/public/static/images/default-map.png +0 -0
  332. package/template/admin/public/static/images/default-profile.png +0 -0
  333. package/template/admin/public/static/images/doc_icon.svg +0 -1
  334. package/template/admin/public/static/images/exe_icon.svg +0 -1
  335. package/template/admin/public/static/images/gif_icon.svg +0 -1
  336. package/template/admin/public/static/images/google.png +0 -0
  337. package/template/admin/public/static/images/icon-youtub.webp +0 -0
  338. package/template/admin/public/static/images/id-connect.png +0 -0
  339. package/template/admin/public/static/images/iso_icon.svg +0 -1
  340. package/template/admin/public/static/images/json_icon.png +0 -0
  341. package/template/admin/public/static/images/lang/af-ZA.svg +0 -41
  342. package/template/admin/public/static/images/lang/ar-AE.svg +0 -38
  343. package/template/admin/public/static/images/lang/ar-BH.svg +0 -36
  344. package/template/admin/public/static/images/lang/ar-DZ.svg +0 -40
  345. package/template/admin/public/static/images/lang/ar-EG.svg +0 -38
  346. package/template/admin/public/static/images/lang/ar-IQ.svg +0 -46
  347. package/template/admin/public/static/images/lang/ar-JO.svg +0 -39
  348. package/template/admin/public/static/images/lang/ar-KW.svg +0 -38
  349. package/template/admin/public/static/images/lang/ar-LB.svg +0 -40
  350. package/template/admin/public/static/images/lang/ar-LY.svg +0 -41
  351. package/template/admin/public/static/images/lang/ar-MA.svg +0 -36
  352. package/template/admin/public/static/images/lang/ar-OM.svg +0 -70
  353. package/template/admin/public/static/images/lang/ar-QA.svg +0 -36
  354. package/template/admin/public/static/images/lang/ar-SA.svg +0 -62
  355. package/template/admin/public/static/images/lang/ar-TN.svg +0 -40
  356. package/template/admin/public/static/images/lang/ar-YE.svg +0 -37
  357. package/template/admin/public/static/images/lang/az-AZ.svg +0 -41
  358. package/template/admin/public/static/images/lang/be-BY.svg +0 -38
  359. package/template/admin/public/static/images/lang/bg-BG.svg +0 -37
  360. package/template/admin/public/static/images/lang/bs-BA.svg +0 -48
  361. package/template/admin/public/static/images/lang/ca-ES.svg +0 -89
  362. package/template/admin/public/static/images/lang/cs-CZ.svg +0 -37
  363. package/template/admin/public/static/images/lang/cy-GB.svg +0 -43
  364. package/template/admin/public/static/images/lang/da-DK.svg +0 -36
  365. package/template/admin/public/static/images/lang/de-AT.svg +0 -39
  366. package/template/admin/public/static/images/lang/de-CH.svg +0 -36
  367. package/template/admin/public/static/images/lang/de-DE.svg +0 -37
  368. package/template/admin/public/static/images/lang/de-LI.svg +0 -45
  369. package/template/admin/public/static/images/lang/de-LU.svg +0 -37
  370. package/template/admin/public/static/images/lang/dv-MV.svg +0 -37
  371. package/template/admin/public/static/images/lang/el-GR.svg +0 -46
  372. package/template/admin/public/static/images/lang/en-AU.svg +0 -51
  373. package/template/admin/public/static/images/lang/en-BZ.svg +0 -196
  374. package/template/admin/public/static/images/lang/en-CA.svg +0 -43
  375. package/template/admin/public/static/images/lang/en-GB.svg +0 -43
  376. package/template/admin/public/static/images/lang/en-IE.svg +0 -37
  377. package/template/admin/public/static/images/lang/en-JM.svg +0 -40
  378. package/template/admin/public/static/images/lang/en-NZ.svg +0 -51
  379. package/template/admin/public/static/images/lang/en-PH.svg +0 -51
  380. package/template/admin/public/static/images/lang/en-SG.svg +0 -44
  381. package/template/admin/public/static/images/lang/en-TT.svg +0 -40
  382. package/template/admin/public/static/images/lang/en-US.svg +0 -88
  383. package/template/admin/public/static/images/lang/en-ZA.svg +0 -41
  384. package/template/admin/public/static/images/lang/en-ZW.svg +0 -50
  385. package/template/admin/public/static/images/lang/es-AR.svg +0 -41
  386. package/template/admin/public/static/images/lang/es-BO.svg +0 -101
  387. package/template/admin/public/static/images/lang/es-CL.svg +0 -38
  388. package/template/admin/public/static/images/lang/es-CO.svg +0 -37
  389. package/template/admin/public/static/images/lang/es-CR.svg +0 -111
  390. package/template/admin/public/static/images/lang/es-DO.svg +0 -103
  391. package/template/admin/public/static/images/lang/es-EC.svg +0 -87
  392. package/template/admin/public/static/images/lang/es-ES.svg +0 -89
  393. package/template/admin/public/static/images/lang/es-GT.svg +0 -109
  394. package/template/admin/public/static/images/lang/es-HN.svg +0 -46
  395. package/template/admin/public/static/images/lang/es-MX.svg +0 -60
  396. package/template/admin/public/static/images/lang/es-NI.svg +0 -82
  397. package/template/admin/public/static/images/lang/es-PA.svg +0 -41
  398. package/template/admin/public/static/images/lang/es-PE.svg +0 -37
  399. package/template/admin/public/static/images/lang/es-PR.svg +0 -43
  400. package/template/admin/public/static/images/lang/es-PY.svg +0 -41
  401. package/template/admin/public/static/images/lang/es-SV.svg +0 -115
  402. package/template/admin/public/static/images/lang/es-UY.svg +0 -75
  403. package/template/admin/public/static/images/lang/es-VE.svg +0 -49
  404. package/template/admin/public/static/images/lang/et-EE.svg +0 -37
  405. package/template/admin/public/static/images/lang/eu-ES.svg +0 -89
  406. package/template/admin/public/static/images/lang/fa-IR.svg +0 -81
  407. package/template/admin/public/static/images/lang/fi-FI.svg +0 -36
  408. package/template/admin/public/static/images/lang/fr-BE.svg +0 -37
  409. package/template/admin/public/static/images/lang/fr-CA.svg +0 -43
  410. package/template/admin/public/static/images/lang/fr-CH.svg +0 -36
  411. package/template/admin/public/static/images/lang/fr-FR.svg +0 -37
  412. package/template/admin/public/static/images/lang/fr-LU.svg +0 -37
  413. package/template/admin/public/static/images/lang/fr-MC.svg +0 -36
  414. package/template/admin/public/static/images/lang/gl-ES.svg +0 -89
  415. package/template/admin/public/static/images/lang/gu-IN.svg +0 -59
  416. package/template/admin/public/static/images/lang/he-IL.svg +0 -37
  417. package/template/admin/public/static/images/lang/hi-IN.svg +0 -59
  418. package/template/admin/public/static/images/lang/hr-BA.svg +0 -48
  419. package/template/admin/public/static/images/lang/hr-HR.svg +0 -101
  420. package/template/admin/public/static/images/lang/hu-HU.svg +0 -37
  421. package/template/admin/public/static/images/lang/hy-AM.svg +0 -37
  422. package/template/admin/public/static/images/lang/id-ID.svg +0 -36
  423. package/template/admin/public/static/images/lang/is-IS.svg +0 -37
  424. package/template/admin/public/static/images/lang/it-CH.svg +0 -36
  425. package/template/admin/public/static/images/lang/it-IT.svg +0 -37
  426. package/template/admin/public/static/images/lang/ja-JP.svg +0 -36
  427. package/template/admin/public/static/images/lang/ka-GE.svg +0 -42
  428. package/template/admin/public/static/images/lang/kk-KZ.svg +0 -72
  429. package/template/admin/public/static/images/lang/kn-IN.svg +0 -59
  430. package/template/admin/public/static/images/lang/ko-KR.svg +0 -57
  431. package/template/admin/public/static/images/lang/kok-IN.svg +0 -59
  432. package/template/admin/public/static/images/lang/ky-KG.svg +0 -54
  433. package/template/admin/public/static/images/lang/lt-LT.svg +0 -37
  434. package/template/admin/public/static/images/lang/lv-LV.svg +0 -36
  435. package/template/admin/public/static/images/lang/mi-NZ.svg +0 -51
  436. package/template/admin/public/static/images/lang/mk-MK.svg +0 -46
  437. package/template/admin/public/static/images/lang/mn-MN.svg +0 -50
  438. package/template/admin/public/static/images/lang/mr-IN.svg +0 -59
  439. package/template/admin/public/static/images/lang/ms-BN.svg +0 -47
  440. package/template/admin/public/static/images/lang/ms-MY.svg +0 -53
  441. package/template/admin/public/static/images/lang/mt-MT.svg +0 -50
  442. package/template/admin/public/static/images/lang/nb-NO.svg +0 -37
  443. package/template/admin/public/static/images/lang/nl-BE.svg +0 -37
  444. package/template/admin/public/static/images/lang/nl-NL.svg +0 -37
  445. package/template/admin/public/static/images/lang/nn-NO.svg +0 -37
  446. package/template/admin/public/static/images/lang/ns-ZA.svg +0 -41
  447. package/template/admin/public/static/images/lang/pa-IN.svg +0 -59
  448. package/template/admin/public/static/images/lang/pl-PL.svg +0 -36
  449. package/template/admin/public/static/images/lang/ps-AR.svg +0 -68
  450. package/template/admin/public/static/images/lang/pt-BR.svg +0 -51
  451. package/template/admin/public/static/images/lang/pt-PT.svg +0 -55
  452. package/template/admin/public/static/images/lang/qu-BO.svg +0 -101
  453. package/template/admin/public/static/images/lang/qu-EC.svg +0 -87
  454. package/template/admin/public/static/images/lang/qu-PE.svg +0 -37
  455. package/template/admin/public/static/images/lang/ro-RO.svg +0 -37
  456. package/template/admin/public/static/images/lang/ru-RU.svg +0 -37
  457. package/template/admin/public/static/images/lang/sa-IN.svg +0 -59
  458. package/template/admin/public/static/images/lang/se-FI.svg +0 -36
  459. package/template/admin/public/static/images/lang/se-NO.svg +0 -37
  460. package/template/admin/public/static/images/lang/se-SE.svg +0 -36
  461. package/template/admin/public/static/images/lang/sk-SK.svg +0 -41
  462. package/template/admin/public/static/images/lang/sl-SI.svg +0 -51
  463. package/template/admin/public/static/images/lang/sq-AL.svg +0 -36
  464. package/template/admin/public/static/images/lang/sr-BA.svg +0 -48
  465. package/template/admin/public/static/images/lang/sr-SP.svg +0 -79
  466. package/template/admin/public/static/images/lang/sv-FI.svg +0 -36
  467. package/template/admin/public/static/images/lang/sv-SE.svg +0 -36
  468. package/template/admin/public/static/images/lang/sw-KE.svg +0 -55
  469. package/template/admin/public/static/images/lang/syr-SY.svg +0 -41
  470. package/template/admin/public/static/images/lang/ta-IN.svg +0 -59
  471. package/template/admin/public/static/images/lang/te-IN.svg +0 -59
  472. package/template/admin/public/static/images/lang/th-TH.svg +0 -40
  473. package/template/admin/public/static/images/lang/tl-PH.svg +0 -51
  474. package/template/admin/public/static/images/lang/tn-ZA.svg +0 -41
  475. package/template/admin/public/static/images/lang/tr-TR.svg +0 -39
  476. package/template/admin/public/static/images/lang/tt-RU.svg +0 -37
  477. package/template/admin/public/static/images/lang/uk-UA.svg +0 -36
  478. package/template/admin/public/static/images/lang/ur-PK.svg +0 -40
  479. package/template/admin/public/static/images/lang/vi-VN.svg +0 -36
  480. package/template/admin/public/static/images/lang/xh-ZA.svg +0 -41
  481. package/template/admin/public/static/images/lang/zh-CN.svg +0 -42
  482. package/template/admin/public/static/images/lang/zh-HK.svg +0 -42
  483. package/template/admin/public/static/images/lang/zh-SG.svg +0 -44
  484. package/template/admin/public/static/images/lang/zh-TW.svg +0 -43
  485. package/template/admin/public/static/images/lang/zu-ZA.svg +0 -41
  486. package/template/admin/public/static/images/logo-company-default.svg +0 -1
  487. package/template/admin/public/static/images/logo.png +0 -0
  488. package/template/admin/public/static/images/m_logo.png +0 -0
  489. package/template/admin/public/static/images/maintenance-icon.png +0 -0
  490. package/template/admin/public/static/images/member_logo.png +0 -0
  491. package/template/admin/public/static/images/pdf_icon.svg +0 -1
  492. package/template/admin/public/static/images/png_icon.svg +0 -1
  493. package/template/admin/public/static/images/security.png +0 -0
  494. package/template/admin/public/static/images/template-bar.svg +0 -820
  495. package/template/admin/public/static/images/template-bubble.png +0 -0
  496. package/template/admin/public/static/images/template-line.png +0 -0
  497. package/template/admin/public/static/images/template-mixed.jpeg +0 -0
  498. package/template/admin/public/static/images/template-pie.png +0 -0
  499. package/template/admin/public/static/images/template-polar-area.png +0 -0
  500. package/template/admin/public/static/images/template-radar.jpg +0 -0
  501. package/template/admin/public/static/images/template-radar.png +0 -0
  502. package/template/admin/public/static/images/template-scatter.png +0 -0
  503. package/template/admin/public/static/images/translation.svg +0 -82
  504. package/template/admin/public/static/images/txt_icon.svg +0 -1
  505. package/template/admin/public/static/images/widget-bubble.png +0 -0
  506. package/template/admin/public/static/images/widget-column.png +0 -0
  507. package/template/admin/public/static/images/widget-combo.png +0 -0
  508. package/template/admin/public/static/images/widget-doughnut.png +0 -0
  509. package/template/admin/public/static/images/widget-line.png +0 -0
  510. package/template/admin/public/static/images/widget-pie.png +0 -0
  511. package/template/admin/public/static/images/widget-scatter.png +0 -0
  512. package/template/admin/public/static/images/widget-summary_box.png +0 -0
  513. package/template/admin/public/static/images/widget-treemap.png +0 -0
  514. package/template/admin/public/static/images/xls_icon.svg +0 -1
  515. package/template/admin/public/static/images/xml_icon.svg +0 -1
  516. package/template/admin/public/static/images/zip_icon.svg +0 -1
  517. package/template/admin/public/static/styles/activity_log.less +0 -157
  518. package/template/admin/public/static/styles/calendar.less +0 -145
  519. package/template/admin/public/static/styles/collections.less +0 -123
  520. package/template/admin/public/static/styles/compute_field.less +0 -250
  521. package/template/admin/public/static/styles/custom-antd.less +0 -80
  522. package/template/admin/public/static/styles/custom_icon.less +0 -556
  523. package/template/admin/public/static/styles/date_search.less +0 -63
  524. package/template/admin/public/static/styles/datepicker.less +0 -323
  525. package/template/admin/public/static/styles/detail.less +0 -2690
  526. package/template/admin/public/static/styles/editTable.less +0 -23
  527. package/template/admin/public/static/styles/entities.less +0 -897
  528. package/template/admin/public/static/styles/filter.less +0 -24
  529. package/template/admin/public/static/styles/filter_new.less +0 -154
  530. package/template/admin/public/static/styles/hook.less +0 -142
  531. package/template/admin/public/static/styles/import_export.less +0 -62
  532. package/template/admin/public/static/styles/input.less +0 -386
  533. package/template/admin/public/static/styles/layout.less +0 -1455
  534. package/template/admin/public/static/styles/login.less +0 -263
  535. package/template/admin/public/static/styles/mainheader.less +0 -32
  536. package/template/admin/public/static/styles/matrix.less +0 -105
  537. package/template/admin/public/static/styles/permission_denied.less +0 -13
  538. package/template/admin/public/static/styles/pipeline.less +0 -84
  539. package/template/admin/public/static/styles/print_template.less +0 -730
  540. package/template/admin/public/static/styles/rabbitmq.less +0 -3
  541. package/template/admin/public/static/styles/restful.less +0 -22
  542. package/template/admin/public/static/styles/setting.less +0 -534
  543. package/template/admin/public/static/styles/style.less +0 -1957
  544. package/template/admin/public/static/styles/system.less +0 -11
  545. package/template/admin/public/static/styles/tree_theme_minimal.less +0 -321
  546. package/template/admin/public/static/styles/versioning_control.less +0 -24
  547. package/template/admin/public/static/styles/wysiwyg.less +0 -8
  548. package/template/admin/theme/main.less +0 -1
  549. package/template/admin/theme/vars.less +0 -41
  550. /package/template/admin/public/{static/images → images}/split.svg +0 -0
  551. /package/template/admin/{public/static/styles/custom.less → src/pages/api/redis/[connect]/index.ts} +0 -0
@@ -0,0 +1,34 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28556)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <g filter="url(#filter0_d_3669_28556)">
5
+ <path d="M0 13H60C62.2091 13 64 14.7909 64 17V33C64 35.2091 62.2091 37 60 37H0V13Z" fill="url(#paint0_linear_3669_28556)"/>
6
+ <path d="M60 13.25C62.0711 13.25 63.75 14.9289 63.75 17V33C63.75 35.0711 62.0711 36.75 60 36.75H0.25V13.25H60Z" stroke="url(#paint1_linear_3669_28556)" stroke-width="0.5"/>
7
+ </g>
8
+ <line x1="39.25" y1="18" x2="39.25" y2="32" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <path d="M8.65 29.1C8.17 29.1 7.74 29.01 7.36 28.83C6.98 28.65 6.69667 28.4033 6.51 28.09L6.89 27.64C7.05667 27.9 7.29667 28.1067 7.61 28.26C7.93 28.4067 8.27 28.48 8.63 28.48C9.10333 28.48 9.48333 28.3533 9.77 28.1C10.0567 27.84 10.2 27.5067 10.2 27.1C10.2 26.6467 10.02 26.2933 9.66 26.04C9.3 25.78 8.81 25.65 8.19 25.65H7.91V25.02H8.18C8.71333 25.02 9.14 24.8867 9.46 24.62C9.78667 24.3533 9.95 24.0133 9.95 23.6C9.95 23.26 9.83667 22.9967 9.61 22.81C9.39 22.6167 9.08333 22.52 8.69 22.52C8.33 22.52 7.99667 22.5967 7.69 22.75C7.39 22.8967 7.15333 23.1 6.98 23.36L6.6 22.91C6.8 22.5967 7.09 22.35 7.47 22.17C7.85 21.99 8.27 21.9 8.73 21.9C9.32333 21.9 9.79667 22.05 10.15 22.35C10.51 22.6433 10.69 23.0333 10.69 23.52C10.69 23.9333 10.56 24.3033 10.3 24.63C10.0467 24.95 9.70333 25.1767 9.27 25.31C9.80333 25.41 10.2167 25.6167 10.51 25.93C10.8033 26.2433 10.95 26.64 10.95 27.12C10.95 27.5067 10.8533 27.85 10.66 28.15C10.4733 28.45 10.2067 28.6833 9.86 28.85C9.51333 29.0167 9.11 29.1 8.65 29.1ZM14.3564 29.1C13.8764 29.1 13.4464 29.01 13.0664 28.83C12.6864 28.65 12.403 28.4033 12.2164 28.09L12.5964 27.64C12.763 27.9 13.003 28.1067 13.3164 28.26C13.6364 28.4067 13.9764 28.48 14.3364 28.48C14.8097 28.48 15.1897 28.3533 15.4764 28.1C15.763 27.84 15.9064 27.5067 15.9064 27.1C15.9064 26.6467 15.7264 26.2933 15.3664 26.04C15.0064 25.78 14.5164 25.65 13.8964 25.65H13.6164V25.02H13.8864C14.4197 25.02 14.8464 24.8867 15.1664 24.62C15.493 24.3533 15.6564 24.0133 15.6564 23.6C15.6564 23.26 15.543 22.9967 15.3164 22.81C15.0964 22.6167 14.7897 22.52 14.3964 22.52C14.0364 22.52 13.703 22.5967 13.3964 22.75C13.0964 22.8967 12.8597 23.1 12.6864 23.36L12.3064 22.91C12.5064 22.5967 12.7964 22.35 13.1764 22.17C13.5564 21.99 13.9764 21.9 14.4364 21.9C15.0297 21.9 15.503 22.05 15.8564 22.35C16.2164 22.6433 16.3964 23.0333 16.3964 23.52C16.3964 23.9333 16.2664 24.3033 16.0064 24.63C15.753 24.95 15.4097 25.1767 14.9764 25.31C15.5097 25.41 15.923 25.6167 16.2164 25.93C16.5097 26.2433 16.6564 26.64 16.6564 27.12C16.6564 27.5067 16.5597 27.85 16.3664 28.15C16.1797 28.45 15.913 28.6833 15.5664 28.85C15.2197 29.0167 14.8164 29.1 14.3564 29.1ZM18.0827 28.31C18.5694 27.95 19.0561 27.52 19.5427 27.02C20.0361 26.52 20.4494 25.99 20.7827 25.43C21.1161 24.87 21.2827 24.34 21.2827 23.84C21.2827 23.44 21.1661 23.12 20.9327 22.88C20.6994 22.64 20.3827 22.52 19.9827 22.52C19.6427 22.52 19.3194 22.6033 19.0127 22.77C18.7061 22.93 18.4694 23.1367 18.3027 23.39L17.9027 22.94C18.1094 22.6133 18.3961 22.36 18.7627 22.18C19.1361 21.9933 19.5461 21.9 19.9927 21.9C20.6194 21.9 21.1161 22.0733 21.4827 22.42C21.8494 22.7667 22.0327 23.23 22.0327 23.81C22.0327 24.5633 21.7361 25.34 21.1427 26.14C20.5561 26.94 19.8561 27.69 19.0427 28.39H22.3727V29H18.0827V28.31ZM23.7891 28.31C24.2758 27.95 24.7624 27.52 25.2491 27.02C25.7424 26.52 26.1558 25.99 26.4891 25.43C26.8224 24.87 26.9891 24.34 26.9891 23.84C26.9891 23.44 26.8724 23.12 26.6391 22.88C26.4058 22.64 26.0891 22.52 25.6891 22.52C25.3491 22.52 25.0258 22.6033 24.7191 22.77C24.4124 22.93 24.1758 23.1367 24.0091 23.39L23.6091 22.94C23.8158 22.6133 24.1024 22.36 24.4691 22.18C24.8424 21.9933 25.2524 21.9 25.6991 21.9C26.3258 21.9 26.8224 22.0733 27.1891 22.42C27.5558 22.7667 27.7391 23.23 27.7391 23.81C27.7391 24.5633 27.4424 25.34 26.8491 26.14C26.2624 26.94 25.5624 27.69 24.7491 28.39H28.0791V29H23.7891V28.31ZM30.0154 29.1C29.8488 29.1 29.7121 29.0467 29.6054 28.94C29.5054 28.8267 29.4554 28.6833 29.4554 28.51C29.4554 28.3367 29.5054 28.1967 29.6054 28.09C29.7121 27.9833 29.8488 27.93 30.0154 27.93C30.1821 27.93 30.3154 27.9833 30.4154 28.09C30.5154 28.1967 30.5654 28.3367 30.5654 28.51C30.5654 28.6833 30.5154 28.8267 30.4154 28.94C30.3154 29.0467 30.1821 29.1 30.0154 29.1ZM34.1056 29.1C33.6256 29.1 33.1956 29.01 32.8156 28.83C32.4356 28.65 32.1523 28.4033 31.9656 28.09L32.3456 27.64C32.5123 27.9 32.7523 28.1067 33.0656 28.26C33.3856 28.4067 33.7256 28.48 34.0856 28.48C34.559 28.48 34.939 28.3533 35.2256 28.1C35.5123 27.84 35.6556 27.5067 35.6556 27.1C35.6556 26.6467 35.4756 26.2933 35.1156 26.04C34.7556 25.78 34.2656 25.65 33.6456 25.65H33.3656V25.02H33.6356C34.169 25.02 34.5956 24.8867 34.9156 24.62C35.2423 24.3533 35.4056 24.0133 35.4056 23.6C35.4056 23.26 35.2923 22.9967 35.0656 22.81C34.8456 22.6167 34.539 22.52 34.1456 22.52C33.7856 22.52 33.4523 22.5967 33.1456 22.75C32.8456 22.8967 32.609 23.1 32.4356 23.36L32.0556 22.91C32.2556 22.5967 32.5456 22.35 32.9256 22.17C33.3056 21.99 33.7256 21.9 34.1856 21.9C34.779 21.9 35.2523 22.05 35.6056 22.35C35.9656 22.6433 36.1456 23.0333 36.1456 23.52C36.1456 23.9333 36.0156 24.3033 35.7556 24.63C35.5023 24.95 35.159 25.1767 34.7256 25.31C35.259 25.41 35.6723 25.6167 35.9656 25.93C36.259 26.2433 36.4056 26.64 36.4056 27.12C36.4056 27.5067 36.309 27.85 36.1156 28.15C35.929 28.45 35.6623 28.6833 35.3156 28.85C34.969 29.0167 34.5656 29.1 34.1056 29.1Z" fill="#C3C3C3"/>
10
+ </g>
11
+ <defs>
12
+ <filter id="filter0_d_3669_28556" x="-4" y="13" width="72" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
13
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
14
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
15
+ <feOffset dy="4"/>
16
+ <feGaussianBlur stdDeviation="2"/>
17
+ <feComposite in2="hardAlpha" operator="out"/>
18
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
19
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28556"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28556" result="shape"/>
21
+ </filter>
22
+ <linearGradient id="paint0_linear_3669_28556" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
23
+ <stop offset="0.620192" stop-color="white"/>
24
+ <stop offset="1" stop-color="#F5F5F7"/>
25
+ </linearGradient>
26
+ <linearGradient id="paint1_linear_3669_28556" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#DAE1EB"/>
28
+ <stop offset="1" stop-color="#F5F5F7"/>
29
+ </linearGradient>
30
+ <clipPath id="clip0_3669_28556">
31
+ <rect width="73" height="49" rx="4" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,47 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28555)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <g filter="url(#filter0_d_3669_28555)">
5
+ <path d="M0 13H60C62.2091 13 64 14.7909 64 17V33C64 35.2091 62.2091 37 60 37H0V13Z" fill="url(#paint0_linear_3669_28555)"/>
6
+ <path d="M60 13.25C62.0711 13.25 63.75 14.9289 63.75 17V33C63.75 35.0711 62.0711 36.75 60 36.75H0.25V13.25H60Z" stroke="url(#paint1_linear_3669_28555)" stroke-width="0.5"/>
7
+ </g>
8
+ <path d="M7.85 22H8.59V25.16H12.15V22H12.89V29H12.15V25.78H8.59V29H7.85V22ZM16.7454 29.1C16.2654 29.1 15.8454 28.9933 15.4854 28.78C15.1321 28.5667 14.8588 28.2633 14.6654 27.87C14.4721 27.4767 14.3754 27.02 14.3754 26.5C14.3754 25.98 14.4721 25.5233 14.6654 25.13C14.8588 24.7367 15.1321 24.4333 15.4854 24.22C15.8454 24.0067 16.2654 23.9 16.7454 23.9C17.2254 23.9 17.6421 24.0067 17.9954 24.22C18.3554 24.4333 18.6321 24.7367 18.8254 25.13C19.0188 25.5233 19.1154 25.98 19.1154 26.5C19.1154 27.02 19.0188 27.4767 18.8254 27.87C18.6321 28.2633 18.3554 28.5667 17.9954 28.78C17.6421 28.9933 17.2254 29.1 16.7454 29.1ZM16.7454 28.55C17.2588 28.55 17.6654 28.3667 17.9654 28C18.2721 27.6267 18.4254 27.1267 18.4254 26.5C18.4254 25.8733 18.2721 25.3767 17.9654 25.01C17.6654 24.6367 17.2588 24.45 16.7454 24.45C16.2321 24.45 15.8221 24.6367 15.5154 25.01C15.2154 25.3767 15.0654 25.8733 15.0654 26.5C15.0654 27.1267 15.2154 27.6267 15.5154 28C15.8221 28.3667 16.2321 28.55 16.7454 28.55ZM21.5106 29.1C20.8373 29.1 20.5006 28.6833 20.5006 27.85V21.58H21.2006V27.84C21.2006 28.1067 21.2373 28.2933 21.3106 28.4C21.3906 28.5067 21.5273 28.56 21.7206 28.56C21.8539 28.56 22.0139 28.5233 22.2006 28.45L22.3206 28.88C22.0806 29.0267 21.8106 29.1 21.5106 29.1ZM25.0084 29.1C24.5217 29.1 24.1217 28.96 23.8084 28.68C23.495 28.3933 23.3384 28.0267 23.3384 27.58C23.3384 27.0867 23.5217 26.7033 23.8884 26.43C24.2617 26.15 24.7817 26.01 25.4484 26.01H26.5684V25.74C26.5684 25.3267 26.4617 25.0133 26.2484 24.8C26.0417 24.58 25.735 24.47 25.3284 24.47C25.0284 24.47 24.7517 24.5367 24.4984 24.67C24.2517 24.7967 24.0517 24.9833 23.8984 25.23L23.5184 24.79C23.7317 24.5033 23.995 24.2833 24.3084 24.13C24.6217 23.9767 24.975 23.9 25.3684 23.9C25.975 23.9 26.4417 24.0533 26.7684 24.36C27.1017 24.6667 27.2684 25.1 27.2684 25.66V28.06C27.2684 28.3067 27.305 28.62 27.3784 29H26.7784C26.7317 28.8533 26.6884 28.6067 26.6484 28.26H26.6284C26.4417 28.5267 26.2084 28.7333 25.9284 28.88C25.6484 29.0267 25.3417 29.1 25.0084 29.1ZM25.0784 28.54C25.345 28.54 25.5917 28.4867 25.8184 28.38C26.045 28.2733 26.225 28.13 26.3584 27.95C26.4984 27.7633 26.5684 27.5667 26.5684 27.36V26.54H25.4184C24.9717 26.54 24.625 26.63 24.3784 26.81C24.1384 26.99 24.0184 27.2467 24.0184 27.58C24.0184 27.8667 24.115 28.1 24.3084 28.28C24.5017 28.4533 24.7584 28.54 25.0784 28.54ZM29.4432 29.1C29.2765 29.1 29.1398 29.0467 29.0332 28.94C28.9332 28.8267 28.8832 28.6833 28.8832 28.51C28.8832 28.3367 28.9332 28.1967 29.0332 28.09C29.1398 27.9833 29.2765 27.93 29.4432 27.93C29.6098 27.93 29.7432 27.9833 29.8432 28.09C29.9432 28.1967 29.9932 28.3367 29.9932 28.51C29.9932 28.6833 29.9432 28.8267 29.8432 28.94C29.7432 29.0467 29.6098 29.1 29.4432 29.1ZM32.0734 29.1C31.9067 29.1 31.77 29.0467 31.6634 28.94C31.5634 28.8267 31.5134 28.6833 31.5134 28.51C31.5134 28.3367 31.5634 28.1967 31.6634 28.09C31.77 27.9833 31.9067 27.93 32.0734 27.93C32.24 27.93 32.3734 27.9833 32.4734 28.09C32.5734 28.1967 32.6234 28.3367 32.6234 28.51C32.6234 28.6833 32.5734 28.8267 32.4734 28.94C32.3734 29.0467 32.24 29.1 32.0734 29.1Z" fill="#C3C3C3"/>
9
+ <g filter="url(#filter1_d_3669_28555)">
10
+ <rect x="42" y="15" width="20" height="20" rx="2" fill="white"/>
11
+ <rect x="42" y="15" width="20" height="20" rx="2" stroke="#DAE1EB" stroke-width="0.5"/>
12
+ </g>
13
+ <path d="M60.3777 30.9358L56.4402 23.0608C56.3935 22.9674 56.3217 22.8888 56.2328 22.8339C56.144 22.779 56.0416 22.7499 55.9371 22.7499C55.8327 22.7499 55.7303 22.779 55.6415 22.8339C55.5526 22.8888 55.4808 22.9674 55.4341 23.0608L53.9076 26.1145C52.7111 26.0472 51.5598 25.6339 50.5937 24.9248C51.7272 23.7143 52.414 22.1535 52.5407 20.5H54.25C54.3992 20.5 54.5423 20.4407 54.6477 20.3352C54.7532 20.2298 54.8125 20.0867 54.8125 19.9375C54.8125 19.7883 54.7532 19.6452 54.6477 19.5398C54.5423 19.4343 54.3992 19.375 54.25 19.375H50.3125V18.25C50.3125 18.1008 50.2532 17.9577 50.1477 17.8523C50.0423 17.7468 49.8992 17.6875 49.75 17.6875C49.6008 17.6875 49.4577 17.7468 49.3523 17.8523C49.2468 17.9577 49.1875 18.1008 49.1875 18.25V19.375H45.25C45.1008 19.375 44.9577 19.4343 44.8523 19.5398C44.7468 19.6452 44.6875 19.7883 44.6875 19.9375C44.6875 20.0867 44.7468 20.2298 44.8523 20.3352C44.9577 20.4407 45.1008 20.5 45.25 20.5H51.4115C51.2862 21.8786 50.701 23.175 49.75 24.1809C49.1574 23.5555 48.7023 22.813 48.4141 22.0012C48.3904 21.9303 48.3528 21.8649 48.3035 21.8088C48.2543 21.7526 48.1944 21.7068 48.1272 21.6741C48.0601 21.6413 47.9871 21.6223 47.9125 21.6181C47.8379 21.6138 47.7633 21.6245 47.6929 21.6494C47.6225 21.6743 47.5577 21.7131 47.5024 21.7633C47.4471 21.8135 47.4024 21.8742 47.3708 21.9419C47.3393 22.0096 47.3215 22.0829 47.3186 22.1576C47.3156 22.2322 47.3276 22.3067 47.3537 22.3766C47.6893 23.3258 48.2179 24.1951 48.9062 24.9297C47.8465 25.7085 46.5651 26.1274 45.25 26.125C45.1008 26.125 44.9577 26.1843 44.8523 26.2898C44.7468 26.3952 44.6875 26.5383 44.6875 26.6875C44.6875 26.8367 44.7468 26.9798 44.8523 27.0852C44.9577 27.1907 45.1008 27.25 45.25 27.25C46.8817 27.2518 48.4666 26.705 49.75 25.6975C50.7974 26.5158 52.0476 27.0338 53.3669 27.1959L51.4966 30.9358C51.4635 31.0018 51.4438 31.0738 51.4385 31.1475C51.4333 31.2212 51.4426 31.2952 51.4659 31.3652C51.5131 31.5068 51.6145 31.6238 51.7479 31.6906C51.8814 31.7573 52.0358 31.7684 52.1774 31.7212C52.3189 31.6741 52.436 31.5726 52.5027 31.4392L53.4723 29.5H58.402L59.3716 31.4392C59.4183 31.5327 59.4902 31.6113 59.5791 31.6661C59.668 31.721 59.7705 31.7501 59.875 31.75C59.9709 31.7499 60.0651 31.7254 60.1489 31.6787C60.2326 31.6319 60.3029 31.5646 60.3533 31.483C60.4037 31.4014 60.4324 31.3083 60.4366 31.2126C60.4409 31.1168 60.4206 31.0215 60.3777 30.9358ZM54.0348 28.375L55.9375 24.5704L57.8395 28.375H54.0348Z" fill="#C3C3C3"/>
14
+ </g>
15
+ <defs>
16
+ <filter id="filter0_d_3669_28555" x="-4" y="13" width="72" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset dy="4"/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28555"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28555" result="shape"/>
25
+ </filter>
26
+ <filter id="filter1_d_3669_28555" x="31.75" y="12.75" width="40.5" height="40.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
27
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
28
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
29
+ <feOffset dy="8"/>
30
+ <feGaussianBlur stdDeviation="5"/>
31
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
32
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28555"/>
33
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28555" result="shape"/>
34
+ </filter>
35
+ <linearGradient id="paint0_linear_3669_28555" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
36
+ <stop offset="0.620192" stop-color="white"/>
37
+ <stop offset="1" stop-color="#F5F5F7"/>
38
+ </linearGradient>
39
+ <linearGradient id="paint1_linear_3669_28555" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
40
+ <stop stop-color="#DAE1EB"/>
41
+ <stop offset="1" stop-color="#F5F5F7"/>
42
+ </linearGradient>
43
+ <clipPath id="clip0_3669_28555">
44
+ <rect width="73" height="49" rx="4" fill="white"/>
45
+ </clipPath>
46
+ </defs>
47
+ </svg>
@@ -0,0 +1,31 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28562)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <g filter="url(#filter0_d_3669_28562)">
5
+ <path d="M0 10H62C63.1046 10 64 10.8954 64 12V49H0V10Z" fill="url(#paint0_linear_3669_28562)" shape-rendering="crispEdges"/>
6
+ </g>
7
+ <rect x="39" y="14" width="21" height="12" rx="6" fill="#575757"/>
8
+ <line x1="9.25" y1="34" x2="9.25" y2="49" stroke="#B9D5FF" stroke-width="0.5"/>
9
+ <path d="M9.47 30.14C8.97667 30.14 8.62 30.0233 8.4 29.79C8.18 29.5633 8.07 29.2033 8.07 28.71V27C8.07 26.5333 7.84333 26.2867 7.39 26.26V25.77C7.84333 25.75 8.07 25.5067 8.07 25.04V23.33C8.07 22.8367 8.18 22.4767 8.4 22.25C8.62 22.0167 8.97667 21.9 9.47 21.9H9.71V22.45H9.43C9.17 22.45 8.98667 22.52 8.88 22.66C8.78 22.7933 8.73 23.02 8.73 23.34V25.01C8.73 25.27 8.68667 25.4767 8.6 25.63C8.52 25.7833 8.37 25.9133 8.15 26.02C8.55 26.2 8.75 26.5367 8.75 27.03V28.7C8.75 29.02 8.8 29.2467 8.9 29.38C9 29.52 9.17667 29.59 9.43 29.59H9.71V30.14H9.47ZM14.7757 34.9C14.609 35.08 14.469 35.28 14.3557 35.5C14.2424 35.72 14.1657 35.95 14.1257 36.19C14.1524 36.1833 14.199 36.18 14.2657 36.18C14.4057 36.18 14.5224 36.2333 14.6157 36.34C14.7157 36.4467 14.7657 36.5833 14.7657 36.75C14.7657 36.9367 14.709 37.09 14.5957 37.21C14.4824 37.3233 14.3357 37.38 14.1557 37.38C13.969 37.38 13.819 37.31 13.7057 37.17C13.5924 37.0233 13.5357 36.8233 13.5357 36.57C13.5357 36.23 13.6224 35.8767 13.7957 35.51C13.969 35.1367 14.199 34.8233 14.4857 34.57L14.7757 34.9ZM16.0857 36.18C16.2257 36.18 16.3424 36.2333 16.4357 36.34C16.5357 36.4467 16.5857 36.5833 16.5857 36.75C16.5857 36.9367 16.529 37.09 16.4157 37.21C16.309 37.3233 16.1657 37.38 15.9857 37.38C15.799 37.38 15.6457 37.31 15.5257 37.17C15.4124 37.0233 15.3557 36.8233 15.3557 36.57C15.3557 36.2367 15.4424 35.8867 15.6157 35.52C15.789 35.1467 16.019 34.83 16.3057 34.57L16.5957 34.9C16.429 35.08 16.289 35.2833 16.1757 35.51C16.0624 35.73 15.989 35.9567 15.9557 36.19C15.9824 36.1833 16.0257 36.18 16.0857 36.18ZM19.1274 42.1C18.9608 42.1 18.8241 42.0467 18.7174 41.94C18.6174 41.8267 18.5674 41.6833 18.5674 41.51C18.5674 41.3367 18.6174 41.1967 18.7174 41.09C18.8241 40.9833 18.9608 40.93 19.1274 40.93C19.2941 40.93 19.4274 40.9833 19.5274 41.09C19.6274 41.1967 19.6774 41.3367 19.6774 41.51C19.6774 41.6833 19.6274 41.8267 19.5274 41.94C19.4274 42.0467 19.2941 42.1 19.1274 42.1ZM21.7576 42.1C21.591 42.1 21.4543 42.0467 21.3476 41.94C21.2476 41.8267 21.1976 41.6833 21.1976 41.51C21.1976 41.3367 21.2476 41.1967 21.3476 41.09C21.4543 40.9833 21.591 40.93 21.7576 40.93C21.9243 40.93 22.0576 40.9833 22.1576 41.09C22.2576 41.1967 22.3076 41.3367 22.3076 41.51C22.3076 41.6833 22.2576 41.8267 22.1576 41.94C22.0576 42.0467 21.9243 42.1 21.7576 42.1ZM24.3878 42.1C24.2212 42.1 24.0845 42.0467 23.9778 41.94C23.8778 41.8267 23.8278 41.6833 23.8278 41.51C23.8278 41.3367 23.8778 41.1967 23.9778 41.09C24.0845 40.9833 24.2212 40.93 24.3878 40.93C24.5545 40.93 24.6878 40.9833 24.7878 41.09C24.8878 41.1967 24.9378 41.3367 24.9378 41.51C24.9378 41.6833 24.8878 41.8267 24.7878 41.94C24.6878 42.0467 24.5545 42.1 24.3878 42.1ZM27.018 42.1C26.8513 42.1 26.7147 42.0467 26.608 41.94C26.508 41.8267 26.458 41.6833 26.458 41.51C26.458 41.3367 26.508 41.1967 26.608 41.09C26.7147 40.9833 26.8513 40.93 27.018 40.93C27.1847 40.93 27.318 40.9833 27.418 41.09C27.518 41.1967 27.568 41.3367 27.568 41.51C27.568 41.6833 27.518 41.8267 27.418 41.94C27.318 42.0467 27.1847 42.1 27.018 42.1ZM30.1582 34.7C30.3449 34.7 30.4949 34.7733 30.6082 34.92C30.7215 35.06 30.7782 35.2567 30.7782 35.51C30.7782 35.8433 30.6915 36.1967 30.5182 36.57C30.3515 36.9433 30.1215 37.26 29.8282 37.52L29.5382 37.19C29.7049 37.01 29.8449 36.81 29.9582 36.59C30.0715 36.3633 30.1449 36.13 30.1782 35.89C30.1582 35.8967 30.1149 35.9 30.0482 35.9C29.9082 35.9 29.7882 35.8467 29.6882 35.74C29.5949 35.6333 29.5482 35.4967 29.5482 35.33C29.5482 35.1433 29.6015 34.9933 29.7082 34.88C29.8215 34.76 29.9715 34.7 30.1582 34.7ZM31.9782 34.7C32.1649 34.7 32.3149 34.7733 32.4282 34.92C32.5415 35.06 32.5982 35.2567 32.5982 35.51C32.5982 35.8433 32.5115 36.1967 32.3382 36.57C32.1715 36.9433 31.9415 37.26 31.6482 37.52L31.3582 37.19C31.5249 37.01 31.6649 36.8067 31.7782 36.58C31.8915 36.3533 31.9682 36.1233 32.0082 35.89C31.9815 35.8967 31.9349 35.9 31.8682 35.9C31.7282 35.9 31.6115 35.8467 31.5182 35.74C31.4249 35.6333 31.3782 35.4967 31.3782 35.33C31.3782 35.1433 31.4315 34.9933 31.5382 34.88C31.6515 34.76 31.7982 34.7 31.9782 34.7ZM35.13 38.45C34.9633 38.45 34.8266 38.3967 34.72 38.29C34.62 38.1833 34.57 38.0433 34.57 37.87C34.57 37.6967 34.62 37.5567 34.72 37.45C34.8266 37.3433 34.9633 37.29 35.13 37.29C35.29 37.29 35.42 37.3467 35.52 37.46C35.6266 37.5667 35.68 37.7033 35.68 37.87C35.68 38.0367 35.6266 38.1767 35.52 38.29C35.42 38.3967 35.29 38.45 35.13 38.45ZM35.13 42.12C34.9633 42.12 34.8266 42.0667 34.72 41.96C34.62 41.8467 34.57 41.7033 34.57 41.53C34.57 41.3633 34.62 41.2267 34.72 41.12C34.8266 41.0067 34.9633 40.95 35.13 40.95C35.29 40.95 35.42 41.0067 35.52 41.12C35.6266 41.2267 35.68 41.3633 35.68 41.53C35.68 41.7033 35.6266 41.8467 35.52 41.96C35.42 42.0667 35.29 42.12 35.13 42.12ZM41.138 39.46L39.538 37H40.318L41.498 38.96L42.668 37H43.468L41.858 39.46L43.588 42H42.788L41.498 39.9L40.198 42H39.408L41.138 39.46ZM45.7994 39.46L44.1994 37H44.9794L46.1594 38.96L47.3294 37H48.1294L46.5194 39.46L48.2494 42H47.4494L46.1594 39.9L44.8594 42H44.0694L45.7994 39.46ZM54.8987 34.75H55.5587L51.7587 42.43H51.0987L54.8987 34.75ZM55.9507 42.59H56.2307C56.4907 42.59 56.6707 42.52 56.7707 42.38C56.8707 42.2467 56.9207 42.02 56.9207 41.7V40.03C56.9207 39.79 56.9674 39.5867 57.0607 39.42C57.154 39.2533 57.3074 39.12 57.5207 39.02C57.294 38.9067 57.1374 38.7767 57.0507 38.63C56.9707 38.4767 56.9307 38.27 56.9307 38.01V36.34C56.9307 36.02 56.8774 35.7933 56.7707 35.66C56.6707 35.52 56.4907 35.45 56.2307 35.45H55.9507V34.9H56.2007C56.694 34.9 57.0507 35.0167 57.2707 35.25C57.4974 35.4767 57.6107 35.8367 57.6107 36.33V38.04C57.6107 38.28 57.664 38.46 57.7707 38.58C57.8774 38.7 58.0474 38.7633 58.2807 38.77V39.26C58.0474 39.2733 57.874 39.3433 57.7607 39.47C57.6474 39.59 57.5907 39.7667 57.5907 40V41.71C57.5907 42.2033 57.4807 42.5633 57.2607 42.79C57.0407 43.0233 56.6874 43.14 56.2007 43.14H55.9507V42.59Z" fill="#B9D5FF"/>
10
+ <path d="M46.2399 18.4133L44.3358 20L46.2399 21.5867C46.2788 21.6179 46.3111 21.6565 46.335 21.7003C46.3588 21.7441 46.3736 21.7922 46.3786 21.8418C46.3836 21.8915 46.3787 21.9416 46.3641 21.9892C46.3495 22.0369 46.3256 22.0812 46.2936 22.1195C46.2617 22.1578 46.2225 22.1894 46.1782 22.2124C46.134 22.2353 46.0856 22.2492 46.0359 22.2533C45.9862 22.2573 45.9361 22.2514 45.8888 22.2358C45.8414 22.2203 45.7976 22.1955 45.7599 22.1628L43.5099 20.2878C43.4677 20.2526 43.4337 20.2086 43.4104 20.1588C43.3871 20.109 43.375 20.0547 43.375 19.9998C43.375 19.9448 43.3871 19.8905 43.4104 19.8407C43.4337 19.791 43.4677 19.7469 43.5099 19.7117L45.7599 17.8367C45.8363 17.7731 45.935 17.7424 46.034 17.7515C46.1331 17.7605 46.2245 17.8086 46.2882 17.885C46.3518 17.9615 46.3825 18.0601 46.3734 18.1592C46.3644 18.2582 46.3163 18.3496 46.2399 18.4133ZM54.4899 19.7117L52.2399 17.8367C52.202 17.8052 52.1583 17.7815 52.1113 17.7668C52.0643 17.7522 52.0148 17.747 51.9657 17.7515C51.9167 17.7559 51.869 17.77 51.8254 17.793C51.7818 17.8159 51.7431 17.8472 51.7116 17.885C51.648 17.9615 51.6173 18.0601 51.6263 18.1592C51.6354 18.2582 51.6834 18.3496 51.7599 18.4133L53.6639 20L51.7599 21.5867C51.721 21.6179 51.6886 21.6565 51.6648 21.7003C51.641 21.7441 51.6261 21.7922 51.6211 21.8418C51.6161 21.8915 51.6211 21.9416 51.6357 21.9892C51.6503 22.0369 51.6742 22.0812 51.7061 22.1195C51.7381 22.1578 51.7773 22.1894 51.8216 22.2124C51.8658 22.2353 51.9142 22.2492 51.9639 22.2533C52.0136 22.2573 52.0636 22.2514 52.111 22.2358C52.1584 22.2203 52.2022 22.1955 52.2399 22.1628L54.4899 20.2878C54.5321 20.2526 54.5661 20.2086 54.5894 20.1588C54.6127 20.109 54.6248 20.0547 54.6248 19.9998C54.6248 19.9448 54.6127 19.8905 54.5894 19.8407C54.5661 19.791 54.5321 19.7469 54.4899 19.7117ZM50.6279 15.5225C50.5816 15.5057 50.5324 15.4982 50.4832 15.5004C50.434 15.5026 50.3857 15.5144 50.3411 15.5353C50.2965 15.5561 50.2564 15.5855 50.2232 15.6219C50.1899 15.6582 50.1642 15.7008 50.1474 15.747L47.1474 23.997C47.1305 24.0434 47.1229 24.0926 47.1251 24.1418C47.1272 24.1911 47.1391 24.2394 47.1599 24.2841C47.1808 24.3287 47.2102 24.3689 47.2466 24.4021C47.283 24.4354 47.3256 24.4612 47.3719 24.478C47.413 24.4926 47.4563 24.5 47.4999 24.5C47.5769 24.5 47.652 24.4763 47.7151 24.4321C47.7782 24.3879 47.8261 24.3254 47.8524 24.253L50.8524 16.003C50.8692 15.9567 50.8767 15.9075 50.8745 15.8583C50.8723 15.8091 50.8605 15.7609 50.8396 15.7162C50.8188 15.6716 50.7894 15.6316 50.753 15.5983C50.7167 15.5651 50.6741 15.5393 50.6279 15.5225Z" fill="#B9D5FF"/>
11
+ </g>
12
+ <defs>
13
+ <filter id="filter0_d_3669_28562" x="0" y="10" width="72" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
14
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
15
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
16
+ <feOffset dx="4" dy="4"/>
17
+ <feGaussianBlur stdDeviation="2"/>
18
+ <feComposite in2="hardAlpha" operator="out"/>
19
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
20
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28562"/>
21
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28562" result="shape"/>
22
+ </filter>
23
+ <linearGradient id="paint0_linear_3669_28562" x1="49" y1="40.5" x2="3.27424e-06" y2="19" gradientUnits="userSpaceOnUse">
24
+ <stop stop-color="#6B6B6B"/>
25
+ <stop offset="1" stop-color="#464646" stop-opacity="0"/>
26
+ </linearGradient>
27
+ <clipPath id="clip0_3669_28562">
28
+ <rect width="73" height="49" rx="4" fill="white"/>
29
+ </clipPath>
30
+ </defs>
31
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28578)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <path d="M22.804 17.321H24.862L30.721 32H28.537L27.067 28.346H20.578L19.15 32H16.945L22.804 17.321ZM26.479 26.561L23.833 19.694L21.187 26.561H26.479ZM37.317 32.21C36.813 32.21 36.372 32.119 35.994 31.937C35.616 31.755 35.301 31.517 35.049 31.223C34.797 30.929 34.594 30.614 34.44 30.278H34.335L33.642 32H32.256L35.637 16.04H37.485L36.687 19.82C36.589 20.296 36.477 20.765 36.351 21.227C36.239 21.675 36.141 22.053 36.057 22.361C35.973 22.655 35.924 22.816 35.91 22.844H35.994C36.33 22.424 36.68 22.046 37.044 21.71C37.422 21.36 37.828 21.08 38.262 20.87C38.71 20.66 39.193 20.555 39.711 20.555C40.327 20.555 40.866 20.702 41.328 20.996C41.79 21.276 42.147 21.703 42.399 22.277C42.665 22.837 42.798 23.537 42.798 24.377C42.798 25.189 42.714 25.98 42.546 26.75C42.392 27.52 42.161 28.241 41.853 28.913C41.545 29.571 41.167 30.145 40.719 30.635C40.271 31.125 39.76 31.51 39.186 31.79C38.626 32.07 38.003 32.21 37.317 32.21ZM37.17 30.677C37.618 30.677 38.031 30.565 38.409 30.341C38.801 30.103 39.151 29.781 39.459 29.375C39.767 28.955 40.026 28.479 40.236 27.947C40.46 27.401 40.628 26.827 40.74 26.225C40.852 25.609 40.908 24.986 40.908 24.356C40.908 23.6 40.754 23.033 40.446 22.655C40.152 22.277 39.711 22.088 39.123 22.088C38.815 22.088 38.5 22.165 38.178 22.319C37.856 22.473 37.541 22.697 37.233 22.991C36.925 23.271 36.638 23.607 36.372 23.999C36.106 24.391 35.868 24.825 35.658 25.301C35.462 25.763 35.308 26.26 35.196 26.792C35.084 27.31 35.028 27.849 35.028 28.409C35.028 29.081 35.203 29.627 35.553 30.047C35.903 30.467 36.442 30.677 37.17 30.677ZM50.5071 32.315C49.3871 32.315 48.3931 32.105 47.5251 31.685C46.6571 31.265 45.9781 30.656 45.4881 29.858C45.0121 29.046 44.7741 28.087 44.7741 26.981C44.7741 25.875 45.0121 24.923 45.4881 24.125C45.9781 23.313 46.6571 22.69 47.5251 22.256C48.4071 21.822 49.4151 21.605 50.5491 21.605C52.0891 21.605 53.3211 21.906 54.2451 22.508V24.251C53.3351 23.621 52.1731 23.306 50.7591 23.306C49.6111 23.306 48.6801 23.621 47.9661 24.251C47.2661 24.867 46.9161 25.777 46.9161 26.981C46.9161 28.185 47.2661 29.095 47.9661 29.711C48.6661 30.327 49.5831 30.635 50.7171 30.635C52.1311 30.635 53.3491 30.299 54.3711 29.627V31.349C53.8811 31.685 53.3211 31.93 52.6911 32.084C52.0751 32.238 51.3471 32.315 50.5071 32.315Z" fill="black"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_3669_28578">
8
+ <rect width="73" height="49" rx="4" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28587)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <line x1="10.25" y1="7" x2="10.25" y2="49" stroke="#DAE1EB" stroke-width="0.5"/>
5
+ <line x1="28.25" y1="7" x2="28.25" y2="49" stroke="#DAE1EB" stroke-width="0.5"/>
6
+ <line x1="46.25" y1="7" x2="46.25" y2="49" stroke="#DAE1EB" stroke-width="0.5"/>
7
+ <line x1="64.25" y1="7" x2="64.25" y2="49" stroke="#DAE1EB" stroke-width="0.5"/>
8
+ <path d="M10 24C17.6485 24 20.567 33.5 28 33.5C39.5 33.5 49 16 64.5 16" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 44 26)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
10
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 62 18)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
11
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 26 36)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
12
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 8 27)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
13
+ </g>
14
+ <defs>
15
+ <clipPath id="clip0_3669_28587">
16
+ <rect width="73" height="49" rx="4" fill="white"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28588)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <path d="M60.0015 10.2461C62.0725 10.2461 63.7515 11.925 63.7515 13.9961V48.7461H4.00146C1.9304 48.7461 0.251465 47.0672 0.251465 44.9961V10.2461H60.0015Z" fill="url(#paint0_linear_3669_28588)" stroke="url(#paint1_linear_3669_28588)" stroke-width="0.5"/>
5
+ <path d="M0.00146484 9.99609H62.0015C63.106 9.99609 64.0015 10.8915 64.0015 11.9961V18.9961H0.00146484V9.99609Z" fill="url(#paint2_linear_3669_28588)"/>
6
+ <rect x="6.00146" y="29.9961" width="14" height="4" rx="2" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
7
+ <rect x="6.00146" y="41.9961" width="14" height="4" rx="2" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
8
+ <line x1="20.0015" y1="31.7461" x2="64.0015" y2="31.7461" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <line x1="20.0015" y1="43.7461" x2="64.0015" y2="43.7461" stroke="#DAE1EB" stroke-width="0.5"/>
10
+ <line x1="31.2515" y1="18.9961" x2="31.2515" y2="48.9961" stroke="#DAE1EB" stroke-width="0.5"/>
11
+ <line x1="42.2515" y1="18.9961" x2="42.2515" y2="48.9961" stroke="#DAE1EB" stroke-width="0.5"/>
12
+ <line x1="53.2515" y1="18.9961" x2="53.2515" y2="48.9961" stroke="#DAE1EB" stroke-width="0.5"/>
13
+ <circle cx="2" cy="2" r="2" transform="matrix(1 0 0 -1 29.0015 33.9961)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
14
+ <circle cx="2" cy="2" r="2" transform="matrix(1 0 0 -1 40.0015 45.9961)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
15
+ <circle cx="2" cy="2" r="2" transform="matrix(1 0 0 -1 51.0015 45.9961)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
16
+ </g>
17
+ <defs>
18
+ <linearGradient id="paint0_linear_3669_28588" x1="64.0015" y1="29.4961" x2="0.00146484" y2="29.4961" gradientUnits="userSpaceOnUse">
19
+ <stop offset="0.620192" stop-color="white"/>
20
+ <stop offset="1" stop-color="#F5F5F7"/>
21
+ </linearGradient>
22
+ <linearGradient id="paint1_linear_3669_28588" x1="64.0015" y1="29.4961" x2="0.00146484" y2="29.4961" gradientUnits="userSpaceOnUse">
23
+ <stop stop-color="#DAE1EB"/>
24
+ <stop offset="1" stop-color="#F5F5F7"/>
25
+ </linearGradient>
26
+ <linearGradient id="paint2_linear_3669_28588" x1="64.0015" y1="14.4961" x2="0.00146484" y2="14.4961" gradientUnits="userSpaceOnUse">
27
+ <stop offset="0.620192" stop-color="#6B6B6B"/>
28
+ <stop offset="1" stop-color="#F5F5F7"/>
29
+ </linearGradient>
30
+ <clipPath id="clip0_3669_28588">
31
+ <rect width="73" height="49" rx="4" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28585)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <circle cx="6.5" cy="11.5" r="1.5" fill="#DAE1EB"/>
5
+ <circle cx="6.5" cy="24.5" r="1.5" fill="#DAE1EB"/>
6
+ <circle cx="6.5" cy="36.5" r="1.5" fill="#DAE1EB"/>
7
+ <line x1="10" y1="11.75" x2="68" y2="11.75" stroke="#DAE1EB" stroke-width="0.5"/>
8
+ <line x1="10" y1="24.75" x2="68" y2="24.75" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <line x1="10" y1="36.75" x2="68" y2="36.75" stroke="#DAE1EB" stroke-width="0.5"/>
10
+ <path d="M16 19C16 17.8954 16.8954 17 18 17H21C22.1046 17 23 17.8954 23 19V48H16V19Z" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
11
+ <path d="M19 21.9429C25.175 21.9429 27.5311 29 33.5321 29C42.8165 29 50.4862 16 63 16" stroke="#DAE1EB" stroke-width="0.5"/>
12
+ <path d="M30 36C30 34.8954 30.8954 34 32 34H35C36.1046 34 37 34.8954 37 36V48H30V36Z" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
13
+ <path d="M44 11C44 9.89543 44.8954 9 46 9H49C50.1046 9 51 9.89543 51 11V48H44V11Z" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
14
+ <path d="M58 30C58 28.8954 58.8954 28 60 28H63C64.1046 28 65 28.8954 65 30V48H58V30Z" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
15
+ <circle cx="19.5" cy="21.5" r="1.25" fill="white" stroke="#DAE1EB" stroke-width="0.5"/>
16
+ <circle cx="33.5" cy="29.5" r="1.25" fill="white" stroke="#DAE1EB" stroke-width="0.5"/>
17
+ <circle cx="47.5" cy="21.5" r="1.25" fill="white" stroke="#DAE1EB" stroke-width="0.5"/>
18
+ <circle cx="61.5" cy="16.5" r="1.25" fill="white" stroke="#DAE1EB" stroke-width="0.5"/>
19
+ </g>
20
+ <defs>
21
+ <clipPath id="clip0_3669_28585">
22
+ <rect width="73" height="49" rx="4" fill="white"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,33 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28589)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <circle cx="37" cy="25" r="19" stroke="#DAE1EB" stroke-width="0.5"/>
5
+ <circle cx="37" cy="25" r="14" stroke="#DAE1EB" stroke-width="0.5"/>
6
+ <circle cx="37" cy="25" r="9" stroke="#DAE1EB" stroke-width="0.5"/>
7
+ <mask id="path-6-inside-1_3669_28589" fill="white">
8
+ <path d="M37.25 6C47.7434 6 56.25 14.5066 56.25 25C56.25 25.0835 56.2481 25.1668 56.2471 25.25H37V6.00293C37.0832 6.00186 37.1665 6 37.25 6Z"/>
9
+ </mask>
10
+ <path d="M37.25 6C47.7434 6 56.25 14.5066 56.25 25C56.25 25.0835 56.2481 25.1668 56.2471 25.25H37V6.00293C37.0832 6.00186 37.1665 6 37.25 6Z" fill="#79AAFF" fill-opacity="0.6"/>
11
+ <path d="M56.2471 25.25V25.75H56.7407L56.747 25.2564L56.2471 25.25ZM37 25.25H36.5V25.75H37V25.25ZM37 6.00293L36.9936 5.50297L36.5 5.50934V6.00293H37ZM37.25 6V6.5C47.4673 6.5 55.75 14.7827 55.75 25H56.25H56.75C56.75 14.2304 48.0196 5.5 37.25 5.5V6ZM56.25 25H55.75C55.75 25.0793 55.7483 25.154 55.7471 25.2436L56.2471 25.25L56.747 25.2564C56.748 25.1796 56.75 25.0877 56.75 25H56.25ZM56.2471 25.25V24.75H37V25.25V25.75H56.2471V25.25ZM37 25.25H37.5V6.00293H37H36.5V25.25H37ZM37 6.00293L37.0064 6.50289C37.096 6.50173 37.1707 6.5 37.25 6.5V6V5.5C37.1623 5.5 37.0704 5.50198 36.9936 5.50297L37 6.00293Z" fill="#DAE1EB" mask="url(#path-6-inside-1_3669_28589)"/>
12
+ <mask id="path-8-inside-2_3669_28589" fill="white">
13
+ <path d="M36.2295 39.2275C29.1042 38.841 23.3968 33.1281 23.0205 26H36.2295V39.2275Z"/>
14
+ </mask>
15
+ <path d="M36.2295 39.2275C29.1042 38.841 23.3968 33.1281 23.0205 26H36.2295V39.2275Z" fill="#79AAFF" fill-opacity="0.6"/>
16
+ <path d="M36.2295 39.2275L36.2024 39.7268L36.7295 39.7554V39.2275H36.2295ZM23.0205 26V25.5H22.4934L22.5212 26.0264L23.0205 26ZM36.2295 26H36.7295V25.5H36.2295V26ZM36.2295 39.2275L36.2566 38.7283C29.3863 38.3556 23.8826 32.8465 23.5198 25.9736L23.0205 26L22.5212 26.0264C22.911 33.4096 28.822 39.3264 36.2024 39.7268L36.2295 39.2275ZM23.0205 26V26.5H36.2295V26V25.5H23.0205V26ZM36.2295 26H35.7295V39.2275H36.2295H36.7295V26H36.2295Z" fill="#DAE1EB" mask="url(#path-8-inside-2_3669_28589)"/>
17
+ <mask id="path-10-inside-3_3669_28589" fill="white">
18
+ <path d="M36.25 25.25H26.0068C26.005 25.1669 26 25.0836 26 25C26 19.177 30.5248 14.4139 36.25 14.0283V25.25Z"/>
19
+ </mask>
20
+ <path d="M36.25 25.25H26.0068C26.005 25.1669 26 25.0836 26 25C26 19.177 30.5248 14.4139 36.25 14.0283V25.25Z" fill="#C4D9FF" fill-opacity="0.6"/>
21
+ <path d="M36.25 25.25V25.75H36.75V25.25H36.25ZM26.0068 25.25L25.507 25.2612L25.5179 25.75H26.0068V25.25ZM36.25 14.0283H36.75V13.4935L36.2164 13.5295L36.25 14.0283ZM36.25 25.25V24.75H26.0068V25.25V25.75H36.25V25.25ZM26.0068 25.25L26.5067 25.2388C26.5042 25.1256 26.5 25.0813 26.5 25H26H25.5C25.5 25.0859 25.5058 25.2081 25.507 25.2612L26.0068 25.25ZM26 25H26.5C26.5 19.4421 30.8189 14.8952 36.2836 14.5272L36.25 14.0283L36.2164 13.5295C30.2306 13.9326 25.5 18.9119 25.5 25H26ZM36.25 14.0283H35.75V25.25H36.25H36.75V14.0283H36.25Z" fill="#DAE1EB" mask="url(#path-10-inside-3_3669_28589)"/>
22
+ <mask id="path-12-inside-4_3669_28589" fill="white">
23
+ <path d="M45.9434 26C45.4458 30.4999 41.6325 34 37 34V26H45.9434Z"/>
24
+ </mask>
25
+ <path d="M45.9434 26C45.4458 30.4999 41.6325 34 37 34V26H45.9434Z" fill="#C4D9FF" fill-opacity="0.6"/>
26
+ <path d="M45.9434 26L46.4403 26.0549L46.5017 25.5H45.9434V26ZM37 34H36.5V34.5H37V34ZM37 26V25.5H36.5V26H37ZM45.9434 26L45.4464 25.9451C44.9765 30.1945 41.3747 33.5 37 33.5V34V34.5C41.8903 34.5 45.9151 30.8052 46.4403 26.0549L45.9434 26ZM37 34H37.5V26H37H36.5V34H37ZM37 26V26.5H45.9434V26V25.5H37V26Z" fill="#DAE1EB" mask="url(#path-12-inside-4_3669_28589)"/>
27
+ </g>
28
+ <defs>
29
+ <clipPath id="clip0_3669_28589">
30
+ <rect width="73" height="49" rx="4" fill="white"/>
31
+ </clipPath>
32
+ </defs>
33
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28558)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <rect x="41" y="16" width="18" height="18" rx="9" fill="#1B6BE7" stroke="#DAE1EB"/>
5
+ <g filter="url(#filter0_d_3669_28558)">
6
+ <rect x="46" y="21" width="8" height="8" rx="4" fill="white"/>
7
+ </g>
8
+ <path d="M18 25C18 20.5817 21.5817 17 26 17C30.4183 17 34 20.5817 34 25C34 29.4183 30.4183 33 26 33C21.5817 33 18 29.4183 18 25Z" fill="white" stroke="#DAE1EB"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_3669_28558" x="41" y="16" width="18" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset/>
15
+ <feGaussianBlur stdDeviation="2.5"/>
16
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
17
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28558"/>
18
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28558" result="shape"/>
19
+ </filter>
20
+ <clipPath id="clip0_3669_28558">
21
+ <rect width="73" height="49" rx="4" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3671_11209)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <line x1="36.25" y1="23" x2="36.25" y2="27" stroke="#DAE1EB" stroke-width="0.5"/>
5
+ <line x1="34" y1="24.75" x2="38" y2="24.75" stroke="#DAE1EB" stroke-width="0.5"/>
6
+ <path d="M36 6L52.4545 15.5V34.5L36 44L19.5455 34.5V15.5L36 6Z" stroke="#DAE1EB" stroke-width="0.5"/>
7
+ <path d="M36 12L47.2583 18.5V31.5L36 38L24.7417 31.5V18.5L36 12Z" stroke="#DAE1EB" stroke-width="0.5"/>
8
+ <path d="M36 18L42.0622 21.5V28.5L36 32L29.9378 28.5V21.5L36 18Z" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <path d="M36 38L44.5 30L50.5 16.5L25 18.5L26.5 30L36 38Z" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
10
+ <path d="M29 20.5L35.0041 8.49175C35.39 7.71999 36.5066 7.76644 36.827 8.56757L41.956 21.39C41.9852 21.4631 42.023 21.5324 42.0685 21.5967L49.2253 31.7004C49.722 32.4017 49.1612 33.3615 48.3063 33.2731L36.1029 32.0106C36.0345 32.0036 35.9655 32.0036 35.8971 32.0106L23.4475 33.2985C22.6356 33.3825 22.0705 32.5111 22.4784 31.8041L29 20.5Z" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_3671_11209">
14
+ <rect width="73" height="49" rx="4" fill="white"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3671_11210)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <line x1="10" y1="11.75" x2="68" y2="11.75" stroke="#DAE1EB" stroke-width="0.5"/>
5
+ <line x1="10" y1="24.75" x2="68" y2="24.75" stroke="#DAE1EB" stroke-width="0.5"/>
6
+ <line x1="10" y1="36.75" x2="68" y2="36.75" stroke="#DAE1EB" stroke-width="0.5"/>
7
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 12 44)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
8
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 20 34)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
9
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 28 34)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
10
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 43 38)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
11
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 58 17)" fill="#79AAFF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
12
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 17 37)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
13
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 32 32)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
14
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 42 11)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
15
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 58 21)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
16
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 43 25)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
17
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 29 43)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
18
+ <circle cx="2.5" cy="2.5" r="2.5" transform="matrix(1 0 0 -1 26 24)" fill="#C4D9FF" fill-opacity="0.6" stroke="#DAE1EB" stroke-width="0.5"/>
19
+ </g>
20
+ <defs>
21
+ <clipPath id="clip0_3671_11210">
22
+ <rect width="73" height="49" rx="4" fill="white"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28561)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <g filter="url(#filter0_d_3669_28561)">
5
+ <path d="M0 13H60C62.2091 13 64 14.7909 64 17V33C64 35.2091 62.2091 37 60 37H0V13Z" fill="url(#paint0_linear_3669_28561)"/>
6
+ <path d="M60 13.25C62.0711 13.25 63.75 14.9289 63.75 17V33C63.75 35.0711 62.0711 36.75 60 36.75H0.25V13.25H60Z" stroke="url(#paint1_linear_3669_28561)" stroke-width="0.5"/>
7
+ </g>
8
+ <path d="M54.5028 23.1484L51.08 26.5712C51.0323 26.6191 50.9757 26.657 50.9133 26.6829C50.8508 26.7089 50.7839 26.7222 50.7164 26.7222C50.6488 26.7222 50.5819 26.7089 50.5195 26.6829C50.4571 26.657 50.4004 26.6191 50.3527 26.5712L46.9299 23.1484C46.8335 23.052 46.7793 22.9212 46.7793 22.7848C46.7793 22.6484 46.8335 22.5175 46.9299 22.4211C47.0264 22.3246 47.1572 22.2704 47.2936 22.2704C47.43 22.2704 47.5608 22.3246 47.6573 22.4211L50.7168 25.4806L53.7763 22.4207C53.8728 22.3242 54.0036 22.27 54.14 22.27C54.2764 22.27 54.4072 22.3242 54.5037 22.4207C54.6001 22.5171 54.6543 22.6479 54.6543 22.7843C54.6543 22.9207 54.6001 23.0515 54.5037 23.148L54.5028 23.1484Z" fill="#C3C3C3"/>
9
+ <path d="M6.85 22H7.59V28.38H11V29H6.85V22ZM14.1829 29.1C13.7029 29.1 13.2829 28.9933 12.9229 28.78C12.5696 28.5667 12.2963 28.2633 12.1029 27.87C11.9096 27.4767 11.8129 27.02 11.8129 26.5C11.8129 25.98 11.9096 25.5233 12.1029 25.13C12.2963 24.7367 12.5696 24.4333 12.9229 24.22C13.2829 24.0067 13.7029 23.9 14.1829 23.9C14.6629 23.9 15.0796 24.0067 15.4329 24.22C15.7929 24.4333 16.0696 24.7367 16.2629 25.13C16.4563 25.5233 16.5529 25.98 16.5529 26.5C16.5529 27.02 16.4563 27.4767 16.2629 27.87C16.0696 28.2633 15.7929 28.5667 15.4329 28.78C15.0796 28.9933 14.6629 29.1 14.1829 29.1ZM14.1829 28.55C14.6963 28.55 15.1029 28.3667 15.4029 28C15.7096 27.6267 15.8629 27.1267 15.8629 26.5C15.8629 25.8733 15.7096 25.3767 15.4029 25.01C15.1029 24.6367 14.6963 24.45 14.1829 24.45C13.6696 24.45 13.2596 24.6367 12.9529 25.01C12.6529 25.3767 12.5029 25.8733 12.5029 26.5C12.5029 27.1267 12.6529 27.6267 12.9529 28C13.2596 28.3667 13.6696 28.55 14.1829 28.55ZM17.9081 25.22C17.9081 24.6533 17.8981 24.2467 17.8781 24H18.5181C18.5448 24.26 18.5581 24.5533 18.5581 24.88V25H18.5781C18.7048 24.6467 18.9014 24.3767 19.1681 24.19C19.4414 23.9967 19.7581 23.9 20.1181 23.9C20.2381 23.9 20.3348 23.91 20.4081 23.93V24.51C20.3014 24.4967 20.1914 24.49 20.0781 24.49C19.8048 24.49 19.5548 24.5733 19.3281 24.74C19.1014 24.9067 18.9214 25.1367 18.7881 25.43C18.6614 25.7233 18.5981 26.0467 18.5981 26.4V29H17.9081V25.22ZM25.5051 26.78H21.8651C21.9051 27.3333 22.0618 27.76 22.3351 28.06C22.6151 28.36 22.9918 28.51 23.4651 28.51C23.7651 28.51 24.0384 28.4467 24.2851 28.32C24.5318 28.1867 24.7351 28.0033 24.8951 27.77L25.3051 28.16C25.1118 28.46 24.8518 28.6933 24.5251 28.86C24.2051 29.02 23.8451 29.1 23.4451 29.1C22.7318 29.1 22.1718 28.8733 21.7651 28.42C21.3651 27.96 21.1651 27.3233 21.1651 26.51C21.1651 25.6967 21.3618 25.06 21.7551 24.6C22.1551 24.1333 22.7051 23.9 23.4051 23.9C24.0651 23.9 24.5784 24.1233 24.9451 24.57C25.3184 25.0167 25.5051 25.64 25.5051 26.44V26.78ZM24.8651 26.16C24.8651 25.64 24.7318 25.23 24.4651 24.93C24.1984 24.6233 23.8384 24.47 23.3851 24.47C22.9318 24.47 22.5718 24.6233 22.3051 24.93C22.0451 25.2367 21.8984 25.6733 21.8651 26.24H24.8651V26.16ZM26.7999 25.24C26.7999 24.7867 26.7866 24.3733 26.7599 24H27.3799C27.3999 24.1867 27.4099 24.4833 27.4099 24.89H27.4399C27.5866 24.5833 27.7999 24.3433 28.0799 24.17C28.3666 23.99 28.6832 23.9 29.0299 23.9C29.3899 23.9 29.6966 23.9967 29.9499 24.19C30.2099 24.3767 30.3832 24.6367 30.4699 24.97C30.6032 24.6433 30.8166 24.3833 31.1099 24.19C31.4099 23.9967 31.7432 23.9 32.1099 23.9C32.6566 23.9 33.0832 24.08 33.3899 24.44C33.6966 24.7933 33.8499 25.2833 33.8499 25.91V29H33.1599V25.95C33.1599 25.47 33.0566 25.1033 32.8499 24.85C32.6432 24.5967 32.3466 24.47 31.9599 24.47C31.5866 24.47 31.2766 24.6133 31.0299 24.9C30.7832 25.18 30.6599 25.5333 30.6599 25.96V29H29.9799V26.01C29.9799 24.9833 29.6032 24.47 28.8499 24.47C28.6099 24.47 28.3832 24.54 28.1699 24.68C27.9632 24.82 27.7966 25.01 27.6699 25.25C27.5499 25.4833 27.4899 25.73 27.4899 25.99V29H26.7999V25.24Z" fill="#C3C3C3"/>
10
+ </g>
11
+ <defs>
12
+ <filter id="filter0_d_3669_28561" x="-4" y="13" width="72" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
13
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
14
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
15
+ <feOffset dy="4"/>
16
+ <feGaussianBlur stdDeviation="2"/>
17
+ <feComposite in2="hardAlpha" operator="out"/>
18
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/>
19
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28561"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28561" result="shape"/>
21
+ </filter>
22
+ <linearGradient id="paint0_linear_3669_28561" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
23
+ <stop offset="0.620192" stop-color="white"/>
24
+ <stop offset="1" stop-color="#F5F5F7"/>
25
+ </linearGradient>
26
+ <linearGradient id="paint1_linear_3669_28561" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#DAE1EB"/>
28
+ <stop offset="1" stop-color="#F5F5F7"/>
29
+ </linearGradient>
30
+ <clipPath id="clip0_3669_28561">
31
+ <rect width="73" height="49" rx="4" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,31 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3671_11375)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <path d="M60 8.25C62.0711 8.25 63.75 9.92893 63.75 12V37C63.75 39.0711 62.0711 40.75 60 40.75H0.25V8.25H60Z" fill="url(#paint0_linear_3671_11375)" stroke="url(#paint1_linear_3671_11375)" stroke-width="0.5"/>
5
+ <circle cx="8.5" cy="8.5" r="8.5" transform="matrix(1 0 0 -1 6 33)" fill="url(#paint2_linear_3671_11375)"/>
6
+ <path d="M17.9898 22.2996C17.9605 22.2645 17.9238 22.2363 17.8824 22.2169C17.8409 22.1975 17.7957 22.1875 17.75 22.1875H11.4484L11.2109 20.8816C11.1979 20.8096 11.1599 20.7445 11.1037 20.6976C11.0476 20.6507 10.9767 20.625 10.9035 20.625H9.9375C9.85462 20.625 9.77513 20.6579 9.71653 20.7165C9.65792 20.7751 9.625 20.8546 9.625 20.9375C9.625 21.0204 9.65792 21.0999 9.71653 21.1585C9.77513 21.2171 9.85462 21.25 9.9375 21.25H10.6406L11.6391 26.7301C11.6685 26.8926 11.7403 27.0445 11.8473 27.1703C11.6996 27.3082 11.5931 27.4843 11.5394 27.6791C11.4857 27.8738 11.487 28.0796 11.5432 28.2737C11.5994 28.4678 11.7082 28.6425 11.8576 28.7785C12.007 28.9145 12.1911 29.0064 12.3896 29.0441C12.5881 29.0819 12.7931 29.0639 12.982 28.9922C13.1708 28.9205 13.3362 28.7979 13.4596 28.638C13.5831 28.4781 13.6598 28.2871 13.6814 28.0862C13.7029 27.8854 13.6684 27.6825 13.5816 27.5H15.3559C15.2859 27.6464 15.2498 27.8065 15.25 27.9688C15.25 28.1851 15.3141 28.3965 15.4343 28.5764C15.5545 28.7563 15.7253 28.8965 15.9252 28.9792C16.125 29.062 16.345 29.0837 16.5571 29.0415C16.7693 28.9993 16.9642 28.8951 17.1171 28.7421C17.2701 28.5892 17.3743 28.3943 17.4165 28.1821C17.4587 27.97 17.437 27.75 17.3542 27.5502C17.2715 27.3503 17.1313 27.1795 16.9514 27.0593C16.7715 26.9391 16.5601 26.875 16.3437 26.875H12.5613C12.4881 26.875 12.4173 26.8493 12.3611 26.8024C12.3049 26.7555 12.267 26.6904 12.2539 26.6184L12.1301 25.9375H16.6613C16.8809 25.9375 17.0935 25.8604 17.262 25.7197C17.4305 25.579 17.5443 25.3836 17.5836 25.1676L18.0586 22.5559C18.0666 22.5107 18.0646 22.4644 18.0528 22.4201C18.0409 22.3758 18.0194 22.3347 17.9898 22.2996ZM13.0625 27.9688C13.0625 28.0615 13.035 28.1521 12.9835 28.2292C12.932 28.3063 12.8588 28.3663 12.7731 28.4018C12.6875 28.4373 12.5932 28.4466 12.5023 28.4285C12.4114 28.4104 12.3278 28.3658 12.2623 28.3002C12.1967 28.2347 12.1521 28.1511 12.134 28.0602C12.1159 27.9693 12.1252 27.875 12.1607 27.7894C12.1962 27.7037 12.2562 27.6305 12.3333 27.579C12.4104 27.5275 12.501 27.5 12.5937 27.5C12.7181 27.5 12.8373 27.5494 12.9252 27.6373C13.0131 27.7252 13.0625 27.8444 13.0625 27.9688ZM16.8125 27.9688C16.8125 28.0615 16.785 28.1521 16.7335 28.2292C16.682 28.3063 16.6088 28.3663 16.5231 28.4018C16.4375 28.4373 16.3432 28.4466 16.2523 28.4285C16.1614 28.4104 16.0778 28.3658 16.0123 28.3002C15.9467 28.2347 15.9021 28.1511 15.884 28.0602C15.8659 27.9693 15.8752 27.875 15.9107 27.7894C15.9462 27.7037 16.0062 27.6305 16.0833 27.579C16.1604 27.5275 16.251 27.5 16.3437 27.5C16.4681 27.5 16.5873 27.5494 16.6752 27.6373C16.7631 27.7252 16.8125 27.8444 16.8125 27.9688ZM16.9687 25.0559C16.9556 25.1281 16.9175 25.1933 16.8611 25.2403C16.8047 25.2872 16.7335 25.3128 16.6602 25.3125H12.0164L11.5621 22.8125H17.3754L16.9687 25.0559Z" fill="#4B91FE" fill-opacity="0.5"/>
7
+ <path d="M30.87 27.225C30.26 27.225 29.675 27.175 29.115 27.075C28.565 26.985 28.085 26.845 27.675 26.655V25.395C28.605 25.815 29.605 26.025 30.675 26.025C31.595 26.025 32.275 25.86 32.715 25.53C33.165 25.19 33.39 24.71 33.39 24.09C33.39 23.45 33.16 22.995 32.7 22.725C32.24 22.445 31.54 22.305 30.6 22.305H29.37V21.075H30.57C31.32 21.075 31.925 20.925 32.385 20.625C32.845 20.315 33.075 19.865 33.075 19.275C33.075 18.695 32.885 18.255 32.505 17.955C32.125 17.655 31.575 17.505 30.855 17.505C30.295 17.505 29.79 17.57 29.34 17.7C28.89 17.83 28.425 18.045 27.945 18.345V17.085C28.825 16.555 29.855 16.29 31.035 16.29C32.205 16.29 33.095 16.55 33.705 17.07C34.315 17.59 34.62 18.31 34.62 19.23C34.62 19.79 34.47 20.28 34.17 20.7C33.87 21.12 33.42 21.445 32.82 21.675C33.5 21.835 34.02 22.125 34.38 22.545C34.75 22.965 34.935 23.495 34.935 24.135C34.935 25.085 34.61 25.84 33.96 26.4C33.31 26.95 32.28 27.225 30.87 27.225ZM39.2133 27.225C38.6633 27.225 38.1283 27.165 37.6083 27.045C37.0883 26.935 36.6483 26.78 36.2883 26.58V25.215C36.6983 25.465 37.1633 25.66 37.6833 25.8C38.2033 25.93 38.6983 25.995 39.1683 25.995C40.0783 25.995 40.7683 25.805 41.2383 25.425C41.7083 25.035 41.9433 24.465 41.9433 23.715C41.9433 23.005 41.7233 22.465 41.2833 22.095C40.8533 21.715 40.2083 21.525 39.3483 21.525C38.9883 21.525 38.6083 21.56 38.2083 21.63C37.8183 21.7 37.4683 21.795 37.1583 21.915L36.4833 21.525L36.8733 16.515H42.7383V17.805H38.2683L38.0433 20.505C38.6633 20.375 39.2933 20.31 39.9333 20.31C41.0433 20.31 41.9133 20.62 42.5433 21.24C43.1733 21.86 43.4883 22.685 43.4883 23.715C43.4883 24.845 43.1333 25.715 42.4233 26.325C41.7133 26.925 40.6433 27.225 39.2133 27.225ZM49.208 27.225C48.308 27.225 47.528 27.005 46.868 26.565C46.218 26.125 45.718 25.495 45.368 24.675C45.018 23.855 44.843 22.885 44.843 21.765C44.843 20.645 45.013 19.675 45.353 18.855C45.703 18.025 46.203 17.39 46.853 16.95C47.513 16.51 48.298 16.29 49.208 16.29C50.118 16.29 50.898 16.51 51.548 16.95C52.208 17.39 52.708 18.025 53.048 18.855C53.398 19.675 53.573 20.645 53.573 21.765C53.573 22.885 53.398 23.855 53.048 24.675C52.698 25.495 52.193 26.125 51.533 26.565C50.883 27.005 50.108 27.225 49.208 27.225ZM49.208 25.875C50.098 25.875 50.793 25.51 51.293 24.78C51.803 24.04 52.058 23.04 52.058 21.78C52.058 20.52 51.808 19.52 51.308 18.78C50.808 18.04 50.108 17.67 49.208 17.67C48.308 17.67 47.608 18.04 47.108 18.78C46.608 19.52 46.358 20.52 46.358 21.78C46.358 23.04 46.608 24.04 47.108 24.78C47.618 25.51 48.318 25.875 49.208 25.875Z" fill="#9DC3FE"/>
8
+ <rect x="28" y="30" width="16" height="3" fill="url(#paint3_linear_3671_11375)"/>
9
+ </g>
10
+ <defs>
11
+ <linearGradient id="paint0_linear_3671_11375" x1="64" y1="24.5" x2="0" y2="24.5" gradientUnits="userSpaceOnUse">
12
+ <stop offset="0.620192" stop-color="white"/>
13
+ <stop offset="1" stop-color="#F5F5F7"/>
14
+ </linearGradient>
15
+ <linearGradient id="paint1_linear_3671_11375" x1="64" y1="24.5" x2="0" y2="24.5" gradientUnits="userSpaceOnUse">
16
+ <stop stop-color="#DAE1EB"/>
17
+ <stop offset="1" stop-color="#F5F5F7"/>
18
+ </linearGradient>
19
+ <linearGradient id="paint2_linear_3671_11375" x1="0" y1="8.5" x2="17" y2="8.5" gradientUnits="userSpaceOnUse">
20
+ <stop stop-color="#E9F1FF" stop-opacity="0"/>
21
+ <stop offset="1" stop-color="#E9F1FF"/>
22
+ </linearGradient>
23
+ <linearGradient id="paint3_linear_3671_11375" x1="28" y1="31.5" x2="44" y2="31.5" gradientUnits="userSpaceOnUse">
24
+ <stop stop-color="#E9F1FF"/>
25
+ <stop offset="1" stop-color="white"/>
26
+ </linearGradient>
27
+ <clipPath id="clip0_3671_11375">
28
+ <rect width="73" height="49" rx="4" fill="white"/>
29
+ </clipPath>
30
+ </defs>
31
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28566)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <rect x="16.5" y="15.5" width="39" height="19" rx="9.5" fill="#DAE1EB" stroke="#DAE1EB"/>
5
+ <ellipse cx="26.8335" cy="25" rx="7.5" ry="7.5" fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_3669_28566">
9
+ <rect width="73" height="49" rx="4" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,35 @@
1
+ <svg width="73" height="49" viewBox="0 0 73 49" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3669_28563)">
3
+ <rect width="73" height="49" rx="4" fill="#F5F5F7"/>
4
+ <path d="M29 15C29 17.675 31.2506 19.8591 34.0811 19.9932L34.3574 20V30C31.3988 30 29 32.2386 29 35V15Z" fill="#DAE1EB"/>
5
+ <rect x="29" y="20" width="7.5" height="10" fill="#DAE1EB"/>
6
+ <path d="M44 15C44 17.675 41.7494 19.8591 38.9189 19.9932L38.6426 20V30C41.6012 30 44 32.2386 44 35V15Z" fill="#DAE1EB"/>
7
+ <rect width="7.5" height="10" transform="matrix(-1 0 0 1 44 20)" fill="#DAE1EB"/>
8
+ <path d="M39.3459 27.0963L38.0959 28.3463C38.0372 28.4049 37.9577 28.4378 37.8748 28.4378C37.7918 28.4378 37.7123 28.4049 37.6537 28.3463C37.595 28.2876 37.5621 28.2081 37.5621 28.1252C37.5621 28.0422 37.595 27.9627 37.6537 27.9041L38.3705 27.1877H32.8748C32.7919 27.1877 32.7124 27.1548 32.6538 27.0961C32.5952 27.0375 32.5623 26.9581 32.5623 26.8752C32.5623 26.7923 32.5952 26.7128 32.6538 26.6542C32.7124 26.5956 32.7919 26.5627 32.8748 26.5627H38.3705L37.6537 25.8463C37.595 25.7876 37.5621 25.7081 37.5621 25.6252C37.5621 25.5422 37.595 25.4627 37.6537 25.4041C37.7123 25.3454 37.7918 25.3125 37.8748 25.3125C37.9577 25.3125 38.0372 25.3454 38.0959 25.4041L39.3459 26.6541C39.3749 26.6831 39.398 26.7176 39.4137 26.7555C39.4294 26.7934 39.4375 26.8341 39.4375 26.8752C39.4375 26.9162 39.4294 26.9569 39.4137 26.9948C39.398 27.0328 39.3749 27.0672 39.3459 27.0963ZM33.9037 24.5963C33.9623 24.6549 34.0418 24.6878 34.1248 24.6878C34.2077 24.6878 34.2872 24.6549 34.3459 24.5963C34.4045 24.5376 34.4374 24.4581 34.4374 24.3752C34.4374 24.2922 34.4045 24.2127 34.3459 24.1541L33.6291 23.4377H39.1248C39.2076 23.4377 39.2871 23.4047 39.3457 23.3461C39.4043 23.2875 39.4373 23.2081 39.4373 23.1252C39.4373 23.0423 39.4043 22.9628 39.3457 22.9042C39.2871 22.8456 39.2076 22.8127 39.1248 22.8127H33.6291L34.3459 22.0963C34.4045 22.0376 34.4374 21.9581 34.4374 21.8752C34.4374 21.7922 34.4045 21.7127 34.3459 21.6541C34.2872 21.5954 34.2077 21.5625 34.1248 21.5625C34.0418 21.5625 33.9623 21.5954 33.9037 21.6541L32.6537 22.9041C32.6246 22.9331 32.6016 22.9676 32.5858 23.0055C32.5701 23.0434 32.562 23.0841 32.562 23.1252C32.562 23.1662 32.5701 23.2069 32.5858 23.2448C32.6016 23.2828 32.6246 23.3172 32.6537 23.3463L33.9037 24.5963Z" fill="#606060" fill-opacity="0.5"/>
9
+ <path d="M1 13H25C27.2091 13 29 14.7909 29 17V33C29 35.2091 27.2091 37 25 37H1V13Z" fill="url(#paint0_linear_3669_28563)" stroke="url(#paint1_linear_3669_28563)" stroke-width="0.5"/>
10
+ <path d="M72 37L48 37C45.7909 37 44 35.2091 44 33L44 17C44 14.7909 45.7909 13 48 13L72 13L72 37Z" fill="url(#paint2_linear_3669_28563)" stroke="url(#paint3_linear_3669_28563)" stroke-width="0.5"/>
11
+ <path d="M10.31 27.36H7.5L6.98 29H6.18L8.55 22H9.26L11.63 29H10.83L10.31 27.36ZM10.12 26.75L8.91 22.9L7.69 26.75H10.12ZM12.9277 22H14.7477C15.5277 22 16.111 22.1367 16.4977 22.41C16.8844 22.6833 17.0777 23.1 17.0777 23.66C17.0777 24.48 16.7044 25.01 15.9577 25.25V25.27C16.4444 25.39 16.7977 25.59 17.0177 25.87C17.2444 26.1433 17.3577 26.5267 17.3577 27.02C17.3577 27.6933 17.1644 28.1933 16.7777 28.52C16.3977 28.84 15.8077 29 15.0077 29H12.9277V22ZM14.8977 25.01C15.8577 25.01 16.3377 24.5733 16.3377 23.7C16.3377 23.3267 16.2077 23.0533 15.9477 22.88C15.6944 22.7 15.2977 22.61 14.7577 22.61H13.6677V25.01H14.8977ZM15.0877 28.39C15.6144 28.39 16.0044 28.28 16.2577 28.06C16.511 27.8333 16.6377 27.4867 16.6377 27.02C16.6377 26.5133 16.481 26.15 16.1677 25.93C15.8544 25.7033 15.3444 25.59 14.6377 25.59H13.6677V28.39H15.0877ZM21.4847 29.1C20.8847 29.1 20.3613 28.9567 19.9147 28.67C19.4747 28.3767 19.1347 27.96 18.8947 27.42C18.6547 26.88 18.5347 26.24 18.5347 25.5C18.5347 24.7667 18.6547 24.13 18.8947 23.59C19.1413 23.05 19.4913 22.6333 19.9447 22.34C20.398 22.0467 20.928 21.9 21.5347 21.9C21.9947 21.9 22.4113 21.9933 22.7847 22.18C23.158 22.36 23.4413 22.6133 23.6347 22.94L23.2247 23.38C22.8513 22.8067 22.2947 22.52 21.5547 22.52C20.8347 22.52 20.2747 22.78 19.8747 23.3C19.4813 23.82 19.2847 24.5533 19.2847 25.5C19.2847 26.4333 19.478 27.1633 19.8647 27.69C20.258 28.2167 20.8013 28.48 21.4947 28.48C22.2947 28.48 22.8713 28.1933 23.2247 27.62L23.6347 28.06C23.448 28.3867 23.1647 28.6433 22.7847 28.83C22.4047 29.01 21.9713 29.1 21.4847 29.1Z" fill="#C3C3C3"/>
12
+ <path d="M48.81 26.41C48.81 26.1633 48.8767 25.9367 49.01 25.73C49.1433 25.5233 49.3233 25.3733 49.55 25.28C49.2833 25.18 48.9233 25.1233 48.47 25.11C48.5233 24.51 48.76 24.0333 49.18 23.68C49.6 23.32 50.14 23.14 50.8 23.14C51.44 23.14 51.95 23.3233 52.33 23.69C52.7167 24.05 52.91 24.5333 52.91 25.14V29H52.22V25.21C52.22 24.75 52.0867 24.3867 51.82 24.12C51.5533 23.8467 51.19 23.71 50.73 23.71C50.3633 23.71 50.0367 23.8 49.75 23.98C49.47 24.16 49.2767 24.4033 49.17 24.71C49.4233 24.7367 49.6567 24.7967 49.87 24.89C50.0833 24.9833 50.2433 25.09 50.35 25.21V25.35C50.09 25.4167 49.8833 25.5433 49.73 25.73C49.5833 25.9167 49.51 26.1367 49.51 26.39V29H48.81V26.41ZM58.9707 23.24V27.73C58.9707 28.17 58.8374 28.51 58.5707 28.75C58.3107 28.9833 57.9374 29.1 57.4507 29.1C56.9641 29.1 56.5907 28.9833 56.3307 28.75C56.0774 28.51 55.9507 28.17 55.9507 27.73V26.48C55.9507 26.3067 55.9807 26.15 56.0407 26.01C56.1074 25.8633 56.2007 25.6933 56.3207 25.5C56.4474 25.3 56.5407 25.1233 56.6007 24.97C56.6674 24.8167 56.7007 24.65 56.7007 24.47C56.7007 24.1967 56.6107 23.9933 56.4307 23.86C56.2574 23.7267 56.0341 23.66 55.7607 23.66C55.3874 23.66 55.1041 23.7667 54.9107 23.98C54.9841 23.96 55.0607 23.95 55.1407 23.95C55.3874 23.95 55.5907 24.03 55.7507 24.19C55.9174 24.35 56.0007 24.5633 56.0007 24.83C56.0007 25.0833 55.9174 25.2967 55.7507 25.47C55.5907 25.6367 55.3707 25.72 55.0907 25.72C54.7974 25.72 54.5641 25.6233 54.3907 25.43C54.2174 25.23 54.1307 24.97 54.1307 24.65C54.1307 24.2233 54.2741 23.8667 54.5607 23.58C54.8541 23.2867 55.2607 23.14 55.7807 23.14C56.2341 23.14 56.6074 23.25 56.9007 23.47C57.2007 23.6833 57.3507 24.0033 57.3507 24.43C57.3507 24.6433 57.3174 24.83 57.2507 24.99C57.1907 25.15 57.1007 25.34 56.9807 25.56C56.8674 25.7533 56.7807 25.92 56.7207 26.06C56.6674 26.2 56.6407 26.3567 56.6407 26.53V27.78C56.6407 28.02 56.7107 28.2067 56.8507 28.34C56.9907 28.4667 57.1941 28.53 57.4607 28.53C57.7274 28.53 57.9307 28.4667 58.0707 28.34C58.2107 28.2067 58.2807 28.02 58.2807 27.78V23.24H58.9707ZM55.5507 24.83C55.5507 24.6967 55.5074 24.59 55.4207 24.51C55.3407 24.4233 55.2341 24.38 55.1007 24.38C54.9674 24.38 54.8574 24.4233 54.7707 24.51C54.6841 24.59 54.6407 24.6967 54.6407 24.83C54.6407 24.9633 54.6841 25.0733 54.7707 25.16C54.8574 25.24 54.9674 25.28 55.1007 25.28C55.2341 25.28 55.3407 25.24 55.4207 25.16C55.5074 25.0733 55.5507 24.9633 55.5507 24.83ZM62.8787 23.14C63.5787 23.14 64.1353 23.31 64.5487 23.65C64.9687 23.99 65.1787 24.45 65.1787 25.03V29H64.4887V25.1C64.4887 24.68 64.3453 24.3433 64.0587 24.09C63.772 23.8367 63.3787 23.71 62.8787 23.71C62.3387 23.71 61.9153 23.8467 61.6087 24.12C61.302 24.3933 61.1487 24.77 61.1487 25.25C61.1487 25.45 61.202 25.81 61.3087 26.33C61.3487 26.5033 61.3753 26.63 61.3887 26.71C61.4953 26.1767 61.6787 25.7467 61.9387 25.42C62.1987 25.0867 62.5087 24.92 62.8687 24.92C63.142 24.92 63.362 24.9967 63.5287 25.15C63.702 25.3033 63.7887 25.51 63.7887 25.77C63.7887 26.03 63.7087 26.24 63.5487 26.4C63.3887 26.56 63.182 26.64 62.9287 26.64C62.7553 26.64 62.5953 26.6 62.4487 26.52C62.302 26.4333 62.1987 26.3133 62.1387 26.16C61.992 26.38 61.8653 26.67 61.7587 27.03C61.6587 27.3833 61.6087 27.7033 61.6087 27.99V29H60.9187V27.59C60.9187 27.4433 60.8887 27.25 60.8287 27.01C60.7687 26.7633 60.732 26.62 60.7187 26.58C60.5453 25.9533 60.4587 25.4933 60.4587 25.2C60.4587 24.5733 60.6753 24.0733 61.1087 23.7C61.5487 23.3267 62.1387 23.14 62.8787 23.14ZM62.9087 25.35C62.782 25.35 62.6787 25.39 62.5987 25.47C62.5187 25.5433 62.4787 25.6433 62.4787 25.77C62.4787 25.9033 62.5187 26.01 62.5987 26.09C62.6787 26.17 62.782 26.21 62.9087 26.21C63.0353 26.21 63.1353 26.17 63.2087 26.09C63.2887 26.01 63.3287 25.9033 63.3287 25.77C63.3287 25.6433 63.2887 25.5433 63.2087 25.47C63.1353 25.39 63.0353 25.35 62.9087 25.35Z" fill="#C3C3C3"/>
13
+ </g>
14
+ <defs>
15
+ <linearGradient id="paint0_linear_3669_28563" x1="29" y1="25" x2="1" y2="25" gradientUnits="userSpaceOnUse">
16
+ <stop offset="0.620192" stop-color="white"/>
17
+ <stop offset="1" stop-color="#F5F5F7"/>
18
+ </linearGradient>
19
+ <linearGradient id="paint1_linear_3669_28563" x1="29" y1="25" x2="1" y2="25" gradientUnits="userSpaceOnUse">
20
+ <stop stop-color="#DAE1EB"/>
21
+ <stop offset="1" stop-color="#F5F5F7"/>
22
+ </linearGradient>
23
+ <linearGradient id="paint2_linear_3669_28563" x1="44" y1="25" x2="72" y2="25" gradientUnits="userSpaceOnUse">
24
+ <stop offset="0.620192" stop-color="white"/>
25
+ <stop offset="1" stop-color="#F5F5F7"/>
26
+ </linearGradient>
27
+ <linearGradient id="paint3_linear_3669_28563" x1="44" y1="25" x2="72" y2="25" gradientUnits="userSpaceOnUse">
28
+ <stop stop-color="#DAE1EB"/>
29
+ <stop offset="1" stop-color="#F5F5F7"/>
30
+ </linearGradient>
31
+ <clipPath id="clip0_3669_28563">
32
+ <rect width="73" height="49" rx="4" fill="white"/>
33
+ </clipPath>
34
+ </defs>
35
+ </svg>