cc-core-cli 1.0.130 → 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.
- package/bin/index.js +6 -6
- package/package.json +1 -1
- package/template/admin/Dockerfile +7 -4
- package/template/admin/next-env.d.ts +5 -0
- package/template/admin/package.json +23 -10
- package/template/admin/postcss.config.js +6 -0
- package/template/admin/public/images/component/barchart.svg +20 -0
- package/template/admin/public/images/component/bubble_chart.svg +17 -0
- package/template/admin/public/images/component/button.svg +17 -0
- package/template/admin/public/images/component/calendar.svg +63 -0
- package/template/admin/public/images/component/checkbox.svg +25 -0
- package/template/admin/public/images/component/color_picker.svg +25 -0
- package/template/admin/public/images/component/cron_tab.svg +33 -0
- package/template/admin/public/images/component/currency.svg +34 -0
- package/template/admin/public/images/component/custom_fields.svg +34 -0
- package/template/admin/public/images/component/data_table.svg +101 -0
- package/template/admin/public/images/component/date_picker.svg +47 -0
- package/template/admin/public/images/component/donut.svg +23 -0
- package/template/admin/public/images/component/edit_table.svg +96 -0
- package/template/admin/public/images/component/entity_field.svg +36 -0
- package/template/admin/public/images/component/entity_layout.svg +40 -0
- package/template/admin/public/images/component/entity_list.svg +88 -0
- package/template/admin/public/images/component/file.svg +36 -0
- package/template/admin/public/images/component/hidden_field.svg +34 -0
- package/template/admin/public/images/component/image.svg +38 -0
- package/template/admin/public/images/component/input.svg +34 -0
- package/template/admin/public/images/component/input_icon.svg +13 -0
- package/template/admin/public/images/component/input_number.svg +34 -0
- package/template/admin/public/images/component/input_translate.svg +47 -0
- package/template/admin/public/images/component/json.svg +31 -0
- package/template/admin/public/images/component/label.svg +11 -0
- package/template/admin/public/images/component/line_chart.svg +19 -0
- package/template/admin/public/images/component/matrix_table.svg +34 -0
- package/template/admin/public/images/component/mixed_chart.svg +25 -0
- package/template/admin/public/images/component/polar_chart.svg +33 -0
- package/template/admin/public/images/component/radio.svg +24 -0
- package/template/admin/public/images/component/redar_chart.svg +17 -0
- package/template/admin/public/images/component/scatter_chart.svg +25 -0
- package/template/admin/public/images/component/select.svg +34 -0
- package/template/admin/public/images/component/summary_box.svg +31 -0
- package/template/admin/public/images/component/switch.svg +12 -0
- package/template/admin/public/images/component/translate.svg +35 -0
- package/template/admin/public/images/component/tree.svg +78 -0
- package/template/admin/public/images/default-profile.png +0 -0
- package/template/admin/public/images/empty-data.png +0 -0
- package/template/admin/public/images/file.png +0 -0
- package/template/admin/public/images/forgot-step-1.png +0 -0
- package/template/admin/public/images/forgot-step-2.png +0 -0
- package/template/admin/public/images/forgot-step-3.png +0 -0
- package/template/admin/public/images/form.png +0 -0
- package/template/admin/public/images/info-panel.png +0 -0
- package/template/admin/public/images/panel.png +0 -0
- package/template/admin/public/images/stack.png +0 -0
- package/template/admin/public/images/type-all.png +0 -0
- package/template/admin/public/images/type-boolean.png +0 -0
- package/template/admin/public/images/type-date.png +0 -0
- package/template/admin/public/images/type-file.png +0 -0
- package/template/admin/public/images/type-image.png +0 -0
- package/template/admin/public/images/type-json.png +0 -0
- package/template/admin/public/images/type-number.png +0 -0
- package/template/admin/public/images/type-options.png +0 -0
- package/template/admin/public/images/type-password.png +0 -0
- package/template/admin/public/images/type-related.png +0 -0
- package/template/admin/public/images/type-string.png +0 -0
- package/template/admin/public/images/type-trash.png +0 -0
- package/template/admin/public/images/type-unknown.png +0 -0
- package/template/admin/public/images/upload.png +0 -0
- package/template/admin/public/private-image-worker.js +10 -7
- package/template/admin/src/pages/[...url_key].tsx +9 -0
- package/template/admin/src/pages/_app.tsx +22 -0
- package/template/admin/src/pages/activate.tsx +9 -0
- package/template/admin/src/pages/api/auth/activate_account/confirm.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/index.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/set_password.ts +17 -0
- package/template/admin/src/pages/api/auth/authen/confirm.ts +24 -0
- package/template/admin/src/pages/api/auth/authen/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/callback/index.ts +24 -0
- package/template/admin/src/pages/api/auth/forgot_password/confirm.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/index.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/reset.ts +17 -0
- package/template/admin/src/pages/api/auth/login.ts +24 -0
- package/template/admin/src/pages/api/auth/logout.ts +30 -0
- package/template/admin/src/pages/api/custom/[...path].ts +16 -0
- package/template/admin/src/pages/api/download.ts +79 -0
- package/template/admin/src/pages/api/entity/[entity]/[id].ts +46 -0
- package/template/admin/src/pages/api/entity/[entity]/delete.ts +18 -0
- package/template/admin/src/pages/api/entity/[entity]/find.ts +17 -0
- package/template/admin/src/pages/api/entity/[entity]/index.ts +30 -0
- package/template/admin/src/pages/api/entity/[entity]/update.ts +18 -0
- package/template/admin/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
- package/template/admin/src/pages/api/entity/schema/[entity]/index.ts +27 -0
- package/template/admin/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
- package/template/admin/src/pages/api/entity/schema/index.ts +27 -0
- package/template/admin/src/pages/api/import_export/example/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/execute/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/export/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/import/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/progresses/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/verify_progress/index.ts +13 -0
- package/template/admin/src/pages/api/language/set.ts +15 -0
- package/template/admin/src/pages/api/media/private.ts +49 -0
- package/template/admin/src/pages/api/queue/[queue]/count.ts +17 -0
- package/template/admin/src/pages/api/queue/[queue]/flush.ts +17 -0
- package/template/admin/src/pages/api/queue/[queue]/flushall.ts +16 -0
- package/template/admin/src/pages/api/queue/[queue]/index.ts +20 -0
- package/template/admin/src/pages/api/queue/index.ts +13 -0
- package/template/admin/src/pages/api/redis/index.ts +0 -0
- package/template/admin/src/pages/api/setting/[code].ts +21 -0
- package/template/admin/src/pages/api/system/config.ts +13 -0
- package/template/admin/src/pages/api/system/data_source/[code].ts +17 -0
- package/template/admin/src/pages/api/system/endpoint/[method].ts +17 -0
- package/template/admin/src/pages/api/system/queue.ts +13 -0
- package/template/admin/src/pages/api/system/role.ts +13 -0
- package/template/admin/src/pages/api/user/change_password.ts +13 -0
- package/template/admin/src/pages/api/user/filter/index.ts +13 -0
- package/template/admin/src/pages/api/user/me.ts +24 -0
- package/template/admin/src/pages/api/user/register.ts +13 -0
- package/template/admin/src/pages/callback/[channel].tsx +9 -0
- package/template/admin/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
- package/template/admin/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
- package/template/admin/src/pages/forgot_password.tsx +9 -0
- package/template/admin/src/pages/index.tsx +7 -0
- package/template/admin/src/pages/login.tsx +9 -0
- package/template/admin/src/pages/profile.tsx +9 -0
- package/template/admin/src/pages/register.tsx +9 -0
- package/template/admin/src/pages/setting/entities/[key].tsx +10 -0
- package/template/admin/src/pages/setting/entities/index.tsx +10 -0
- package/template/admin/src/pages/setting/module/[module]/[layout].tsx +16 -0
- package/template/admin/src/pages/setting/modules.tsx +10 -0
- package/template/admin/src/styles/global.css +101 -0
- package/template/admin/src/styles/workflow.css +40 -0
- package/template/admin/src/utils/color.ts +88 -0
- package/template/admin/tailwind.config.js +57 -0
- package/template/admin/tsconfig.json +36 -0
- package/template/admin_v3/Dockerfile +15 -0
- package/template/admin_v3/README.md +1 -0
- package/template/admin_v3/_env +10 -0
- package/template/admin_v3/_gitignore +5 -0
- package/template/admin_v3/_npmrc +1 -0
- package/template/admin_v3/docker-compose.yml +11 -0
- package/template/admin_v3/next-env.d.ts +5 -0
- package/template/admin_v3/package.json +37 -0
- package/template/admin_v3/postcss.config.js +6 -0
- package/template/admin_v3/public/images/component/barchart.svg +20 -0
- package/template/admin_v3/public/images/component/bubble_chart.svg +17 -0
- package/template/admin_v3/public/images/component/button.svg +17 -0
- package/template/admin_v3/public/images/component/calendar.svg +63 -0
- package/template/admin_v3/public/images/component/checkbox.svg +25 -0
- package/template/admin_v3/public/images/component/color_picker.svg +25 -0
- package/template/admin_v3/public/images/component/cron_tab.svg +33 -0
- package/template/admin_v3/public/images/component/currency.svg +34 -0
- package/template/admin_v3/public/images/component/custom_fields.svg +34 -0
- package/template/admin_v3/public/images/component/data_table.svg +101 -0
- package/template/admin_v3/public/images/component/date_picker.svg +47 -0
- package/template/admin_v3/public/images/component/donut.svg +23 -0
- package/template/admin_v3/public/images/component/edit_table.svg +96 -0
- package/template/admin_v3/public/images/component/entity_field.svg +36 -0
- package/template/admin_v3/public/images/component/entity_layout.svg +40 -0
- package/template/admin_v3/public/images/component/entity_list.svg +88 -0
- package/template/admin_v3/public/images/component/file.svg +36 -0
- package/template/admin_v3/public/images/component/hidden_field.svg +34 -0
- package/template/admin_v3/public/images/component/image.svg +38 -0
- package/template/admin_v3/public/images/component/input.svg +34 -0
- package/template/admin_v3/public/images/component/input_icon.svg +13 -0
- package/template/admin_v3/public/images/component/input_number.svg +34 -0
- package/template/admin_v3/public/images/component/input_translate.svg +47 -0
- package/template/admin_v3/public/images/component/json.svg +31 -0
- package/template/admin_v3/public/images/component/label.svg +11 -0
- package/template/admin_v3/public/images/component/line_chart.svg +19 -0
- package/template/admin_v3/public/images/component/matrix_table.svg +34 -0
- package/template/admin_v3/public/images/component/mixed_chart.svg +25 -0
- package/template/admin_v3/public/images/component/polar_chart.svg +33 -0
- package/template/admin_v3/public/images/component/radio.svg +24 -0
- package/template/admin_v3/public/images/component/redar_chart.svg +17 -0
- package/template/admin_v3/public/images/component/scatter_chart.svg +25 -0
- package/template/admin_v3/public/images/component/select.svg +34 -0
- package/template/admin_v3/public/images/component/summary_box.svg +31 -0
- package/template/admin_v3/public/images/component/switch.svg +12 -0
- package/template/admin_v3/public/images/component/translate.svg +35 -0
- package/template/admin_v3/public/images/component/tree.svg +78 -0
- package/template/admin_v3/public/images/default-profile.png +0 -0
- package/template/admin_v3/public/images/empty-data.png +0 -0
- package/template/admin_v3/public/images/file.png +0 -0
- package/template/admin_v3/public/images/forgot-step-1.png +0 -0
- package/template/admin_v3/public/images/forgot-step-2.png +0 -0
- package/template/admin_v3/public/images/forgot-step-3.png +0 -0
- package/template/admin_v3/public/images/form.png +0 -0
- package/template/admin_v3/public/images/info-panel.png +0 -0
- package/template/admin_v3/public/images/panel.png +0 -0
- package/template/admin_v3/public/images/split.svg +1 -0
- package/template/admin_v3/public/images/stack.png +0 -0
- package/template/admin_v3/public/images/type-all.png +0 -0
- package/template/admin_v3/public/images/type-boolean.png +0 -0
- package/template/admin_v3/public/images/type-date.png +0 -0
- package/template/admin_v3/public/images/type-file.png +0 -0
- package/template/admin_v3/public/images/type-image.png +0 -0
- package/template/admin_v3/public/images/type-json.png +0 -0
- package/template/admin_v3/public/images/type-number.png +0 -0
- package/template/admin_v3/public/images/type-options.png +0 -0
- package/template/admin_v3/public/images/type-password.png +0 -0
- package/template/admin_v3/public/images/type-related.png +0 -0
- package/template/admin_v3/public/images/type-string.png +0 -0
- package/template/admin_v3/public/images/type-trash.png +0 -0
- package/template/admin_v3/public/images/type-unknown.png +0 -0
- package/template/admin_v3/public/images/upload.png +0 -0
- package/template/admin_v3/public/private-image-worker.js +24 -0
- package/template/admin_v3/src/pages/[...url_key].tsx +9 -0
- package/template/admin_v3/src/pages/_app.tsx +22 -0
- package/template/admin_v3/src/pages/activate.tsx +9 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/confirm.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/index.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/set_password.ts +17 -0
- package/template/admin_v3/src/pages/api/auth/authen/confirm.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/authen/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/callback/index.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/confirm.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/index.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/reset.ts +17 -0
- package/template/admin_v3/src/pages/api/auth/login.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/logout.ts +30 -0
- package/template/admin_v3/src/pages/api/custom/[...path].ts +16 -0
- package/template/admin_v3/src/pages/api/download.ts +79 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/[id].ts +46 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/delete.ts +18 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/find.ts +17 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/index.ts +30 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/update.ts +18 -0
- package/template/admin_v3/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
- package/template/admin_v3/src/pages/api/entity/schema/[entity]/index.ts +27 -0
- package/template/admin_v3/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
- package/template/admin_v3/src/pages/api/entity/schema/index.ts +27 -0
- package/template/admin_v3/src/pages/api/import_export/example/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/execute/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/export/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/import/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/progresses/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/verify_progress/index.ts +13 -0
- package/template/admin_v3/src/pages/api/language/set.ts +15 -0
- package/template/admin_v3/src/pages/api/media/private.ts +49 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/count.ts +17 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/flush.ts +17 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/flushall.ts +16 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/index.ts +20 -0
- package/template/admin_v3/src/pages/api/queue/index.ts +13 -0
- package/template/admin_v3/src/pages/api/redis/[connect]/index.ts +0 -0
- package/template/admin_v3/src/pages/api/redis/index.ts +0 -0
- package/template/admin_v3/src/pages/api/setting/[code].ts +21 -0
- package/template/admin_v3/src/pages/api/system/config.ts +13 -0
- package/template/admin_v3/src/pages/api/system/data_source/[code].ts +17 -0
- package/template/admin_v3/src/pages/api/system/endpoint/[method].ts +17 -0
- package/template/admin_v3/src/pages/api/system/queue.ts +13 -0
- package/template/admin_v3/src/pages/api/system/role.ts +13 -0
- package/template/admin_v3/src/pages/api/user/change_password.ts +13 -0
- package/template/admin_v3/src/pages/api/user/filter/index.ts +13 -0
- package/template/admin_v3/src/pages/api/user/me.ts +24 -0
- package/template/admin_v3/src/pages/api/user/register.ts +13 -0
- package/template/admin_v3/src/pages/callback/[channel].tsx +9 -0
- package/template/admin_v3/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
- package/template/admin_v3/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
- package/template/admin_v3/src/pages/forgot_password.tsx +9 -0
- package/template/admin_v3/src/pages/index.tsx +7 -0
- package/template/admin_v3/src/pages/login.tsx +9 -0
- package/template/admin_v3/src/pages/profile.tsx +9 -0
- package/template/admin_v3/src/pages/register.tsx +9 -0
- package/template/admin_v3/src/pages/setting/entities/[key].tsx +10 -0
- package/template/admin_v3/src/pages/setting/entities/index.tsx +10 -0
- package/template/admin_v3/src/pages/setting/module/[module]/[layout].tsx +16 -0
- package/template/admin_v3/src/pages/setting/modules.tsx +10 -0
- package/template/admin_v3/src/styles/global.css +101 -0
- package/template/admin_v3/src/styles/workflow.css +40 -0
- package/template/admin_v3/src/utils/color.ts +88 -0
- package/template/admin_v3/tailwind.config.js +57 -0
- package/template/admin_v3/tsconfig.json +36 -0
- package/template/core/_gitignore +4 -0
- package/template/core/buildspec.yml +29 -0
- package/template/core/jest.config.js +43 -0
- package/template/core/package.json +14 -2
- package/template/core/sonar-project.properties +27 -0
- package/template/core/test/__mocks__/cc-core-lib.d.ts +161 -0
- package/template/core/test/__mocks__/cc-core-lib.js +311 -0
- package/template/core/test/__mocks__/pdf-img-convert.js +5 -0
- package/template/core/test/jest.setup.ts +25 -0
- package/template/core/tsconfig.json +13 -13
- package/template/core/tsconfig.test.json +17 -0
- package/template/admin/config/service-account.json +0 -1
- package/template/admin/index.js +0 -67
- package/template/admin/next.config.js +0 -66
- package/template/admin/pages/404.js +0 -13
- package/template/admin/pages/[...url_key].js +0 -21
- package/template/admin/pages/_app.js +0 -16
- package/template/admin/pages/_document.js +0 -43
- package/template/admin/pages/callback/[channel].js +0 -13
- package/template/admin/pages/callback.js +0 -13
- package/template/admin/pages/change_password_expired.js +0 -13
- package/template/admin/pages/check_session.js +0 -13
- package/template/admin/pages/cognito.js +0 -13
- package/template/admin/pages/confirmpassword.js +0 -12
- package/template/admin/pages/forgotpassword.js +0 -12
- package/template/admin/pages/index.js +0 -13
- package/template/admin/pages/login.js +0 -13
- package/template/admin/pages/maintenance.js +0 -12
- package/template/admin/pages/password_expired.js +0 -13
- package/template/admin/pages/permission_denied.js +0 -13
- package/template/admin/pages/profile.js +0 -14
- package/template/admin/pages/register.js +0 -13
- package/template/admin/pages/setting/[...setting_url_key].js +0 -13
- package/template/admin/pages/setting/entities/[subList]/detail.js +0 -14
- package/template/admin/pages/setting/entities/[subList]/detail_compare.js +0 -8
- package/template/admin/pages/setting/entities/[subList]/index.js +0 -7
- package/template/admin/pages/setting/entities/detail/index.js +0 -14
- package/template/admin/pages/setting/entities/index.js +0 -14
- package/template/admin/pages/social.js +0 -13
- package/template/admin/pages/token_expired.js +0 -12
- package/template/admin/public/icon-192x192.png +0 -0
- package/template/admin/public/icon-256x256.png +0 -0
- package/template/admin/public/icon-384x384.png +0 -0
- package/template/admin/public/icon-512x512.png +0 -0
- package/template/admin/public/manifest.json +0 -32
- package/template/admin/public/static/images/adv_settings.svg +0 -130
- package/template/admin/public/static/images/aws-cognito.png +0 -0
- package/template/admin/public/static/images/azure-ad.svg +0 -1
- package/template/admin/public/static/images/bin_icon.svg +0 -1
- package/template/admin/public/static/images/color-picker.png +0 -0
- package/template/admin/public/static/images/csv_icon.svg +0 -1
- package/template/admin/public/static/images/default-file.png +0 -0
- package/template/admin/public/static/images/default-img.png +0 -0
- package/template/admin/public/static/images/default-map.png +0 -0
- package/template/admin/public/static/images/default-profile.png +0 -0
- package/template/admin/public/static/images/doc_icon.svg +0 -1
- package/template/admin/public/static/images/exe_icon.svg +0 -1
- package/template/admin/public/static/images/gif_icon.svg +0 -1
- package/template/admin/public/static/images/google.png +0 -0
- package/template/admin/public/static/images/icon-youtub.webp +0 -0
- package/template/admin/public/static/images/id-connect.png +0 -0
- package/template/admin/public/static/images/iso_icon.svg +0 -1
- package/template/admin/public/static/images/json_icon.png +0 -0
- package/template/admin/public/static/images/lang/af-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/ar-AE.svg +0 -38
- package/template/admin/public/static/images/lang/ar-BH.svg +0 -36
- package/template/admin/public/static/images/lang/ar-DZ.svg +0 -40
- package/template/admin/public/static/images/lang/ar-EG.svg +0 -38
- package/template/admin/public/static/images/lang/ar-IQ.svg +0 -46
- package/template/admin/public/static/images/lang/ar-JO.svg +0 -39
- package/template/admin/public/static/images/lang/ar-KW.svg +0 -38
- package/template/admin/public/static/images/lang/ar-LB.svg +0 -40
- package/template/admin/public/static/images/lang/ar-LY.svg +0 -41
- package/template/admin/public/static/images/lang/ar-MA.svg +0 -36
- package/template/admin/public/static/images/lang/ar-OM.svg +0 -70
- package/template/admin/public/static/images/lang/ar-QA.svg +0 -36
- package/template/admin/public/static/images/lang/ar-SA.svg +0 -62
- package/template/admin/public/static/images/lang/ar-TN.svg +0 -40
- package/template/admin/public/static/images/lang/ar-YE.svg +0 -37
- package/template/admin/public/static/images/lang/az-AZ.svg +0 -41
- package/template/admin/public/static/images/lang/be-BY.svg +0 -38
- package/template/admin/public/static/images/lang/bg-BG.svg +0 -37
- package/template/admin/public/static/images/lang/bs-BA.svg +0 -48
- package/template/admin/public/static/images/lang/ca-ES.svg +0 -89
- package/template/admin/public/static/images/lang/cs-CZ.svg +0 -37
- package/template/admin/public/static/images/lang/cy-GB.svg +0 -43
- package/template/admin/public/static/images/lang/da-DK.svg +0 -36
- package/template/admin/public/static/images/lang/de-AT.svg +0 -39
- package/template/admin/public/static/images/lang/de-CH.svg +0 -36
- package/template/admin/public/static/images/lang/de-DE.svg +0 -37
- package/template/admin/public/static/images/lang/de-LI.svg +0 -45
- package/template/admin/public/static/images/lang/de-LU.svg +0 -37
- package/template/admin/public/static/images/lang/dv-MV.svg +0 -37
- package/template/admin/public/static/images/lang/el-GR.svg +0 -46
- package/template/admin/public/static/images/lang/en-AU.svg +0 -51
- package/template/admin/public/static/images/lang/en-BZ.svg +0 -196
- package/template/admin/public/static/images/lang/en-CA.svg +0 -43
- package/template/admin/public/static/images/lang/en-GB.svg +0 -43
- package/template/admin/public/static/images/lang/en-IE.svg +0 -37
- package/template/admin/public/static/images/lang/en-JM.svg +0 -40
- package/template/admin/public/static/images/lang/en-NZ.svg +0 -51
- package/template/admin/public/static/images/lang/en-PH.svg +0 -51
- package/template/admin/public/static/images/lang/en-SG.svg +0 -44
- package/template/admin/public/static/images/lang/en-TT.svg +0 -40
- package/template/admin/public/static/images/lang/en-US.svg +0 -88
- package/template/admin/public/static/images/lang/en-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/en-ZW.svg +0 -50
- package/template/admin/public/static/images/lang/es-AR.svg +0 -41
- package/template/admin/public/static/images/lang/es-BO.svg +0 -101
- package/template/admin/public/static/images/lang/es-CL.svg +0 -38
- package/template/admin/public/static/images/lang/es-CO.svg +0 -37
- package/template/admin/public/static/images/lang/es-CR.svg +0 -111
- package/template/admin/public/static/images/lang/es-DO.svg +0 -103
- package/template/admin/public/static/images/lang/es-EC.svg +0 -87
- package/template/admin/public/static/images/lang/es-ES.svg +0 -89
- package/template/admin/public/static/images/lang/es-GT.svg +0 -109
- package/template/admin/public/static/images/lang/es-HN.svg +0 -46
- package/template/admin/public/static/images/lang/es-MX.svg +0 -60
- package/template/admin/public/static/images/lang/es-NI.svg +0 -82
- package/template/admin/public/static/images/lang/es-PA.svg +0 -41
- package/template/admin/public/static/images/lang/es-PE.svg +0 -37
- package/template/admin/public/static/images/lang/es-PR.svg +0 -43
- package/template/admin/public/static/images/lang/es-PY.svg +0 -41
- package/template/admin/public/static/images/lang/es-SV.svg +0 -115
- package/template/admin/public/static/images/lang/es-UY.svg +0 -75
- package/template/admin/public/static/images/lang/es-VE.svg +0 -49
- package/template/admin/public/static/images/lang/et-EE.svg +0 -37
- package/template/admin/public/static/images/lang/eu-ES.svg +0 -89
- package/template/admin/public/static/images/lang/fa-IR.svg +0 -81
- package/template/admin/public/static/images/lang/fi-FI.svg +0 -36
- package/template/admin/public/static/images/lang/fr-BE.svg +0 -37
- package/template/admin/public/static/images/lang/fr-CA.svg +0 -43
- package/template/admin/public/static/images/lang/fr-CH.svg +0 -36
- package/template/admin/public/static/images/lang/fr-FR.svg +0 -37
- package/template/admin/public/static/images/lang/fr-LU.svg +0 -37
- package/template/admin/public/static/images/lang/fr-MC.svg +0 -36
- package/template/admin/public/static/images/lang/gl-ES.svg +0 -89
- package/template/admin/public/static/images/lang/gu-IN.svg +0 -59
- package/template/admin/public/static/images/lang/he-IL.svg +0 -37
- package/template/admin/public/static/images/lang/hi-IN.svg +0 -59
- package/template/admin/public/static/images/lang/hr-BA.svg +0 -48
- package/template/admin/public/static/images/lang/hr-HR.svg +0 -101
- package/template/admin/public/static/images/lang/hu-HU.svg +0 -37
- package/template/admin/public/static/images/lang/hy-AM.svg +0 -37
- package/template/admin/public/static/images/lang/id-ID.svg +0 -36
- package/template/admin/public/static/images/lang/is-IS.svg +0 -37
- package/template/admin/public/static/images/lang/it-CH.svg +0 -36
- package/template/admin/public/static/images/lang/it-IT.svg +0 -37
- package/template/admin/public/static/images/lang/ja-JP.svg +0 -36
- package/template/admin/public/static/images/lang/ka-GE.svg +0 -42
- package/template/admin/public/static/images/lang/kk-KZ.svg +0 -72
- package/template/admin/public/static/images/lang/kn-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ko-KR.svg +0 -57
- package/template/admin/public/static/images/lang/kok-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ky-KG.svg +0 -54
- package/template/admin/public/static/images/lang/lt-LT.svg +0 -37
- package/template/admin/public/static/images/lang/lv-LV.svg +0 -36
- package/template/admin/public/static/images/lang/mi-NZ.svg +0 -51
- package/template/admin/public/static/images/lang/mk-MK.svg +0 -46
- package/template/admin/public/static/images/lang/mn-MN.svg +0 -50
- package/template/admin/public/static/images/lang/mr-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ms-BN.svg +0 -47
- package/template/admin/public/static/images/lang/ms-MY.svg +0 -53
- package/template/admin/public/static/images/lang/mt-MT.svg +0 -50
- package/template/admin/public/static/images/lang/nb-NO.svg +0 -37
- package/template/admin/public/static/images/lang/nl-BE.svg +0 -37
- package/template/admin/public/static/images/lang/nl-NL.svg +0 -37
- package/template/admin/public/static/images/lang/nn-NO.svg +0 -37
- package/template/admin/public/static/images/lang/ns-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/pa-IN.svg +0 -59
- package/template/admin/public/static/images/lang/pl-PL.svg +0 -36
- package/template/admin/public/static/images/lang/ps-AR.svg +0 -68
- package/template/admin/public/static/images/lang/pt-BR.svg +0 -51
- package/template/admin/public/static/images/lang/pt-PT.svg +0 -55
- package/template/admin/public/static/images/lang/qu-BO.svg +0 -101
- package/template/admin/public/static/images/lang/qu-EC.svg +0 -87
- package/template/admin/public/static/images/lang/qu-PE.svg +0 -37
- package/template/admin/public/static/images/lang/ro-RO.svg +0 -37
- package/template/admin/public/static/images/lang/ru-RU.svg +0 -37
- package/template/admin/public/static/images/lang/sa-IN.svg +0 -59
- package/template/admin/public/static/images/lang/se-FI.svg +0 -36
- package/template/admin/public/static/images/lang/se-NO.svg +0 -37
- package/template/admin/public/static/images/lang/se-SE.svg +0 -36
- package/template/admin/public/static/images/lang/sk-SK.svg +0 -41
- package/template/admin/public/static/images/lang/sl-SI.svg +0 -51
- package/template/admin/public/static/images/lang/sq-AL.svg +0 -36
- package/template/admin/public/static/images/lang/sr-BA.svg +0 -48
- package/template/admin/public/static/images/lang/sr-SP.svg +0 -79
- package/template/admin/public/static/images/lang/sv-FI.svg +0 -36
- package/template/admin/public/static/images/lang/sv-SE.svg +0 -36
- package/template/admin/public/static/images/lang/sw-KE.svg +0 -55
- package/template/admin/public/static/images/lang/syr-SY.svg +0 -41
- package/template/admin/public/static/images/lang/ta-IN.svg +0 -59
- package/template/admin/public/static/images/lang/te-IN.svg +0 -59
- package/template/admin/public/static/images/lang/th-TH.svg +0 -40
- package/template/admin/public/static/images/lang/tl-PH.svg +0 -51
- package/template/admin/public/static/images/lang/tn-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/tr-TR.svg +0 -39
- package/template/admin/public/static/images/lang/tt-RU.svg +0 -37
- package/template/admin/public/static/images/lang/uk-UA.svg +0 -36
- package/template/admin/public/static/images/lang/ur-PK.svg +0 -40
- package/template/admin/public/static/images/lang/vi-VN.svg +0 -36
- package/template/admin/public/static/images/lang/xh-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/zh-CN.svg +0 -42
- package/template/admin/public/static/images/lang/zh-HK.svg +0 -42
- package/template/admin/public/static/images/lang/zh-SG.svg +0 -44
- package/template/admin/public/static/images/lang/zh-TW.svg +0 -43
- package/template/admin/public/static/images/lang/zu-ZA.svg +0 -41
- package/template/admin/public/static/images/logo-company-default.svg +0 -1
- package/template/admin/public/static/images/logo.png +0 -0
- package/template/admin/public/static/images/m_logo.png +0 -0
- package/template/admin/public/static/images/maintenance-icon.png +0 -0
- package/template/admin/public/static/images/member_logo.png +0 -0
- package/template/admin/public/static/images/pdf_icon.svg +0 -1
- package/template/admin/public/static/images/png_icon.svg +0 -1
- package/template/admin/public/static/images/security.png +0 -0
- package/template/admin/public/static/images/template-bar.svg +0 -820
- package/template/admin/public/static/images/template-bubble.png +0 -0
- package/template/admin/public/static/images/template-line.png +0 -0
- package/template/admin/public/static/images/template-mixed.jpeg +0 -0
- package/template/admin/public/static/images/template-pie.png +0 -0
- package/template/admin/public/static/images/template-polar-area.png +0 -0
- package/template/admin/public/static/images/template-radar.jpg +0 -0
- package/template/admin/public/static/images/template-radar.png +0 -0
- package/template/admin/public/static/images/template-scatter.png +0 -0
- package/template/admin/public/static/images/translation.svg +0 -82
- package/template/admin/public/static/images/txt_icon.svg +0 -1
- package/template/admin/public/static/images/widget-bubble.png +0 -0
- package/template/admin/public/static/images/widget-column.png +0 -0
- package/template/admin/public/static/images/widget-combo.png +0 -0
- package/template/admin/public/static/images/widget-doughnut.png +0 -0
- package/template/admin/public/static/images/widget-line.png +0 -0
- package/template/admin/public/static/images/widget-pie.png +0 -0
- package/template/admin/public/static/images/widget-scatter.png +0 -0
- package/template/admin/public/static/images/widget-summary_box.png +0 -0
- package/template/admin/public/static/images/widget-treemap.png +0 -0
- package/template/admin/public/static/images/xls_icon.svg +0 -1
- package/template/admin/public/static/images/xml_icon.svg +0 -1
- package/template/admin/public/static/images/zip_icon.svg +0 -1
- package/template/admin/public/static/styles/activity_log.less +0 -157
- package/template/admin/public/static/styles/calendar.less +0 -145
- package/template/admin/public/static/styles/collections.less +0 -123
- package/template/admin/public/static/styles/compute_field.less +0 -250
- package/template/admin/public/static/styles/custom-antd.less +0 -80
- package/template/admin/public/static/styles/custom_icon.less +0 -556
- package/template/admin/public/static/styles/date_search.less +0 -63
- package/template/admin/public/static/styles/datepicker.less +0 -323
- package/template/admin/public/static/styles/detail.less +0 -2690
- package/template/admin/public/static/styles/editTable.less +0 -23
- package/template/admin/public/static/styles/entities.less +0 -897
- package/template/admin/public/static/styles/filter.less +0 -24
- package/template/admin/public/static/styles/filter_new.less +0 -154
- package/template/admin/public/static/styles/hook.less +0 -142
- package/template/admin/public/static/styles/import_export.less +0 -62
- package/template/admin/public/static/styles/input.less +0 -386
- package/template/admin/public/static/styles/layout.less +0 -1455
- package/template/admin/public/static/styles/login.less +0 -263
- package/template/admin/public/static/styles/mainheader.less +0 -32
- package/template/admin/public/static/styles/matrix.less +0 -105
- package/template/admin/public/static/styles/permission_denied.less +0 -13
- package/template/admin/public/static/styles/pipeline.less +0 -84
- package/template/admin/public/static/styles/print_template.less +0 -730
- package/template/admin/public/static/styles/rabbitmq.less +0 -3
- package/template/admin/public/static/styles/restful.less +0 -22
- package/template/admin/public/static/styles/setting.less +0 -534
- package/template/admin/public/static/styles/style.less +0 -1957
- package/template/admin/public/static/styles/system.less +0 -11
- package/template/admin/public/static/styles/tree_theme_minimal.less +0 -321
- package/template/admin/public/static/styles/versioning_control.less +0 -24
- package/template/admin/public/static/styles/wysiwyg.less +0 -8
- package/template/admin/theme/main.less +0 -1
- package/template/admin/theme/vars.less +0 -41
- /package/template/admin/public/{static/images → images}/split.svg +0 -0
- /package/template/admin/{public/static/styles/custom.less → src/pages/api/redis/[connect]/index.ts} +0 -0
|
@@ -0,0 +1,88 @@
|
|
|
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_28576)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<g filter="url(#filter0_d_3669_28576)">
|
|
5
|
+
<path d="M0 10H62C63.1046 10 64 10.8954 64 12V19H0V10Z" fill="url(#paint0_linear_3669_28576)"/>
|
|
6
|
+
</g>
|
|
7
|
+
<rect x="21" y="13" width="20" height="2" fill="url(#paint1_linear_3669_28576)"/>
|
|
8
|
+
<g filter="url(#filter1_d_3669_28576)">
|
|
9
|
+
<rect x="1" y="19" width="63" height="15" fill="url(#paint2_linear_3669_28576)"/>
|
|
10
|
+
<rect x="1" y="19" width="63" height="15" stroke="url(#paint3_linear_3669_28576)" stroke-width="0.5"/>
|
|
11
|
+
</g>
|
|
12
|
+
<rect x="15" y="25" width="32" height="3" fill="url(#paint4_linear_3669_28576)"/>
|
|
13
|
+
<g filter="url(#filter2_d_3669_28576)">
|
|
14
|
+
<path d="M1 34H64V48H5C2.79086 48 1 46.2091 1 44V34Z" fill="url(#paint5_linear_3669_28576)"/>
|
|
15
|
+
<path d="M1 34H64V48H5C2.79086 48 1 46.2091 1 44V34Z" stroke="url(#paint6_linear_3669_28576)" stroke-width="0.5"/>
|
|
16
|
+
</g>
|
|
17
|
+
<rect x="15" y="40" width="32" height="3" fill="url(#paint7_linear_3669_28576)"/>
|
|
18
|
+
<circle cx="60" cy="12" r="8.5" fill="#E9F1FF" stroke="white"/>
|
|
19
|
+
<path d="M64.8239 14.0625C64.8734 14.1484 64.8869 14.2505 64.8613 14.3463C64.8358 14.4422 64.7733 14.524 64.6875 14.5739L60.1875 17.1989C60.1302 17.2323 60.065 17.2499 59.9986 17.2499C59.9322 17.2499 59.867 17.2323 59.8097 17.1989L55.3097 14.5739C55.2252 14.5231 55.1641 14.441 55.1396 14.3455C55.1151 14.25 55.1292 14.1487 55.1789 14.0635C55.2286 13.9783 55.3098 13.9162 55.405 13.8904C55.5002 13.8647 55.6017 13.8775 55.6875 13.9261L60 16.4409L64.3125 13.9261C64.3985 13.8765 64.5005 13.8631 64.5964 13.8886C64.6922 13.9142 64.774 13.9767 64.8239 14.0625ZM64.3125 11.6761L60 14.1909L55.6875 11.6761C55.6021 11.6335 55.5037 11.6252 55.4124 11.6526C55.321 11.6801 55.2436 11.7413 55.1958 11.8239C55.148 11.9064 55.1335 12.0041 55.1552 12.097C55.1769 12.1899 55.2331 12.271 55.3125 12.3239L59.8125 14.9489C59.8698 14.9823 59.935 14.9999 60.0014 14.9999C60.0678 14.9999 60.133 14.9823 60.1903 14.9489L64.6903 12.3239C64.7335 12.2994 64.7715 12.2666 64.8019 12.2274C64.8324 12.1882 64.8547 12.1433 64.8677 12.0953C64.8806 12.0474 64.8839 11.9974 64.8774 11.9481C64.8709 11.8989 64.8546 11.8515 64.8296 11.8086C64.8046 11.7657 64.7713 11.7282 64.7317 11.6982C64.692 11.6683 64.6468 11.6466 64.5987 11.6342C64.5506 11.6219 64.5006 11.6192 64.4514 11.6264C64.4023 11.6336 64.3551 11.6505 64.3125 11.6761ZM55.125 9.74996C55.1251 9.68428 55.1425 9.61979 55.1755 9.56295C55.2084 9.5061 55.2556 9.4589 55.3125 9.42606L59.8125 6.80106C59.8698 6.76762 59.935 6.75 60.0014 6.75C60.0678 6.75 60.133 6.76762 60.1903 6.80106L64.6903 9.42606C64.7469 9.45908 64.7939 9.50637 64.8265 9.5632C64.8592 9.62003 64.8763 9.68442 64.8763 9.74996C64.8763 9.8155 64.8592 9.87989 64.8265 9.93673C64.7939 9.99356 64.7469 10.0408 64.6903 10.0739L60.1903 12.6989C60.133 12.7323 60.0678 12.7499 60.0014 12.7499C59.935 12.7499 59.8698 12.7323 59.8125 12.6989L55.3125 10.0739C55.2556 10.041 55.2084 9.99382 55.1755 9.93698C55.1425 9.88013 55.1251 9.81564 55.125 9.74996ZM56.2444 9.74996L60 11.9409L63.7556 9.74996L60 7.55903L56.2444 9.74996Z" fill="#4B91FE"/>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<filter id="filter0_d_3669_28576" x="-4" y="10" width="72" height="17" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
23
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
24
|
+
<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"/>
|
|
25
|
+
<feOffset dy="4"/>
|
|
26
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
27
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
28
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
29
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28576"/>
|
|
30
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28576" result="shape"/>
|
|
31
|
+
</filter>
|
|
32
|
+
<filter id="filter1_d_3669_28576" x="-3.25" y="18.75" width="71.5" height="23.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
33
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
34
|
+
<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"/>
|
|
35
|
+
<feOffset dy="4"/>
|
|
36
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
37
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
38
|
+
<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"/>
|
|
39
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28576"/>
|
|
40
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28576" result="shape"/>
|
|
41
|
+
</filter>
|
|
42
|
+
<filter id="filter2_d_3669_28576" x="-3.25" y="33.75" width="71.5" height="22.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
43
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
44
|
+
<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"/>
|
|
45
|
+
<feOffset dy="4"/>
|
|
46
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
47
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
48
|
+
<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"/>
|
|
49
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28576"/>
|
|
50
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28576" result="shape"/>
|
|
51
|
+
</filter>
|
|
52
|
+
<linearGradient id="paint0_linear_3669_28576" x1="64" y1="14.5" x2="0" y2="14.5" gradientUnits="userSpaceOnUse">
|
|
53
|
+
<stop offset="0.620192" stop-color="#6B6B6B"/>
|
|
54
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
55
|
+
</linearGradient>
|
|
56
|
+
<linearGradient id="paint1_linear_3669_28576" x1="21" y1="14" x2="41" y2="14" gradientUnits="userSpaceOnUse">
|
|
57
|
+
<stop stop-color="#9C9C9D"/>
|
|
58
|
+
<stop offset="1" stop-color="#979797"/>
|
|
59
|
+
</linearGradient>
|
|
60
|
+
<linearGradient id="paint2_linear_3669_28576" x1="64" y1="26.5" x2="1" y2="26.5" gradientUnits="userSpaceOnUse">
|
|
61
|
+
<stop offset="0.620192" stop-color="white"/>
|
|
62
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
63
|
+
</linearGradient>
|
|
64
|
+
<linearGradient id="paint3_linear_3669_28576" x1="64" y1="26.5" x2="1" y2="26.5" gradientUnits="userSpaceOnUse">
|
|
65
|
+
<stop stop-color="#DAE1EB"/>
|
|
66
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
67
|
+
</linearGradient>
|
|
68
|
+
<linearGradient id="paint4_linear_3669_28576" x1="15" y1="26.5" x2="47" y2="26.5" gradientUnits="userSpaceOnUse">
|
|
69
|
+
<stop stop-color="white"/>
|
|
70
|
+
<stop offset="1" stop-color="#E9F1FF"/>
|
|
71
|
+
</linearGradient>
|
|
72
|
+
<linearGradient id="paint5_linear_3669_28576" x1="64" y1="41" x2="1" y2="41" gradientUnits="userSpaceOnUse">
|
|
73
|
+
<stop offset="0.620192" stop-color="white"/>
|
|
74
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
75
|
+
</linearGradient>
|
|
76
|
+
<linearGradient id="paint6_linear_3669_28576" x1="64" y1="41" x2="1" y2="41" gradientUnits="userSpaceOnUse">
|
|
77
|
+
<stop stop-color="#DAE1EB"/>
|
|
78
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
79
|
+
</linearGradient>
|
|
80
|
+
<linearGradient id="paint7_linear_3669_28576" x1="15" y1="41.5" x2="47" y2="41.5" gradientUnits="userSpaceOnUse">
|
|
81
|
+
<stop stop-color="white"/>
|
|
82
|
+
<stop offset="1" stop-color="#E9F1FF"/>
|
|
83
|
+
</linearGradient>
|
|
84
|
+
<clipPath id="clip0_3669_28576">
|
|
85
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
86
|
+
</clipPath>
|
|
87
|
+
</defs>
|
|
88
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
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_28564)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<g filter="url(#filter0_d_3669_28564)">
|
|
5
|
+
<path d="M0 10H49C57.2843 10 64 16.7157 64 25C64 33.2843 57.2843 40 49 40H0V10Z" fill="url(#paint0_linear_3669_28564)"/>
|
|
6
|
+
<path d="M49 10.25C57.1462 10.25 63.75 16.8538 63.75 25C63.75 33.1462 57.1462 39.75 49 39.75H0.25V10.25H49Z" stroke="url(#paint1_linear_3669_28564)" stroke-width="0.5"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M8.032 20.6H12.94V21.344H8.92V24.548H12.676V25.292H8.92V29H8.032V20.6ZM15.1888 21.836C14.9968 21.836 14.8408 21.78 14.7208 21.668C14.6088 21.556 14.5528 21.408 14.5528 21.224C14.5528 21.032 14.6088 20.88 14.7208 20.768C14.8408 20.656 14.9968 20.6 15.1888 20.6C15.3808 20.6 15.5328 20.656 15.6448 20.768C15.7648 20.88 15.8248 21.032 15.8248 21.224C15.8248 21.408 15.7648 21.556 15.6448 21.668C15.5328 21.78 15.3808 21.836 15.1888 21.836ZM14.7688 23H15.6088V29H14.7688V23ZM18.9778 29.12C18.1698 29.12 17.7658 28.62 17.7658 27.62V20.096H18.6058V27.608C18.6058 27.928 18.6498 28.152 18.7378 28.28C18.8338 28.408 18.9978 28.472 19.2298 28.472C19.3898 28.472 19.5818 28.428 19.8058 28.34L19.9498 28.856C19.6618 29.032 19.3378 29.12 18.9778 29.12ZM25.8925 26.336H21.5245C21.5725 27 21.7605 27.512 22.0885 27.872C22.4245 28.232 22.8765 28.412 23.4445 28.412C23.8045 28.412 24.1325 28.336 24.4285 28.184C24.7245 28.024 24.9685 27.804 25.1605 27.524L25.6525 27.992C25.4205 28.352 25.1085 28.632 24.7165 28.832C24.3325 29.024 23.9005 29.12 23.4205 29.12C22.5645 29.12 21.8925 28.848 21.4045 28.304C20.9245 27.752 20.6845 26.988 20.6845 26.012C20.6845 25.036 20.9205 24.272 21.3925 23.72C21.8725 23.16 22.5325 22.88 23.3725 22.88C24.1645 22.88 24.7805 23.148 25.2205 23.684C25.6685 24.22 25.8925 24.968 25.8925 25.928V26.336ZM25.1245 25.592C25.1245 24.968 24.9645 24.476 24.6445 24.116C24.3245 23.748 23.8925 23.564 23.3485 23.564C22.8045 23.564 22.3725 23.748 22.0525 24.116C21.7405 24.484 21.5645 25.008 21.5245 25.688H25.1245V25.592ZM29.1892 29.12C28.7652 29.12 28.3772 29.032 28.0252 28.856C27.6812 28.68 27.4332 28.448 27.2812 28.16L27.8332 27.776C27.9772 28 28.1692 28.172 28.4092 28.292C28.6492 28.404 28.9212 28.46 29.2252 28.46C29.5852 28.46 29.8812 28.356 30.1132 28.148C30.3452 27.932 30.4612 27.66 30.4612 27.332C30.4612 27.068 30.3652 26.848 30.1732 26.672C29.9892 26.488 29.6652 26.308 29.2012 26.132C28.5372 25.884 28.0692 25.628 27.7972 25.364C27.5332 25.1 27.4012 24.772 27.4012 24.38C27.4012 23.932 27.5772 23.572 27.9292 23.3C28.2812 23.02 28.7492 22.88 29.3332 22.88C29.7092 22.88 30.0532 22.964 30.3652 23.132C30.6852 23.3 30.9212 23.528 31.0732 23.816L30.5452 24.2C30.2732 23.76 29.8652 23.54 29.3212 23.54C29.0012 23.54 28.7372 23.616 28.5292 23.768C28.3292 23.92 28.2292 24.116 28.2292 24.356C28.2292 24.588 28.3292 24.788 28.5292 24.956C28.7292 25.116 29.1012 25.296 29.6452 25.496C30.2372 25.728 30.6612 25.984 30.9172 26.264C31.1732 26.544 31.3012 26.892 31.3012 27.308C31.3012 27.852 31.1092 28.292 30.7252 28.628C30.3412 28.956 29.8292 29.12 29.1892 29.12Z" fill="#DAE1EB"/>
|
|
9
|
+
<path d="M7 30.2H31.7452V30.8H7V30.2Z" fill="#DAE1EB"/>
|
|
10
|
+
<path d="M37 25C37 18.3726 42.3726 13 49 13C55.6274 13 61 18.3726 61 25C61 31.6274 55.6274 37 49 37C42.3726 37 37 31.6274 37 25Z" fill="#E9F1FF"/>
|
|
11
|
+
<path d="M55.3213 26.125V30.625C55.3213 30.7741 55.262 30.9172 55.1565 31.0227C55.051 31.1282 54.908 31.1875 54.7588 31.1875H42.3838C42.2346 31.1875 42.0915 31.1282 41.986 31.0227C41.8806 30.9172 41.8213 30.7741 41.8213 30.625V26.125C41.8213 25.9758 41.8806 25.8327 41.986 25.7272C42.0915 25.6217 42.2346 25.5625 42.3838 25.5625C42.533 25.5625 42.676 25.6217 42.7815 25.7272C42.887 25.8327 42.9463 25.9758 42.9463 26.125V30.0625H54.1963V26.125C54.1963 25.9758 54.2556 25.8327 54.361 25.7272C54.4665 25.6217 54.6096 25.5625 54.7588 25.5625C54.908 25.5625 55.051 25.6217 55.1565 25.7272C55.262 25.8327 55.3213 25.9758 55.3213 26.125ZM46.1568 21.4604L48.0088 19.6077V26.125C48.0088 26.2741 48.0681 26.4172 48.1735 26.5227C48.279 26.6282 48.4221 26.6875 48.5713 26.6875C48.7205 26.6875 48.8635 26.6282 48.969 26.5227C49.0745 26.4172 49.1338 26.2741 49.1338 26.125V19.6077L50.9858 21.4604C51.0914 21.566 51.2345 21.6253 51.3838 21.6253C51.5331 21.6253 51.6762 21.566 51.7818 21.4604C51.8873 21.3549 51.9466 21.2117 51.9466 21.0625C51.9466 20.9132 51.8873 20.77 51.7818 20.6645L48.9693 17.852C48.917 17.7997 48.855 17.7582 48.7867 17.7299C48.7184 17.7016 48.6452 17.687 48.5713 17.687C48.4974 17.687 48.4242 17.7016 48.3559 17.7299C48.2876 17.7582 48.2256 17.7997 48.1733 17.852L45.3608 20.6645C45.2553 20.77 45.196 20.9132 45.196 21.0625C45.196 21.2117 45.2553 21.3549 45.3608 21.4604C45.4664 21.566 45.6095 21.6253 45.7588 21.6253C45.9081 21.6253 46.0512 21.566 46.1568 21.4604Z" fill="#4B91FE"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<filter id="filter0_d_3669_28564" x="-4" y="10" width="72" height="38" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
15
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
16
|
+
<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"/>
|
|
17
|
+
<feOffset dy="4"/>
|
|
18
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
19
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
20
|
+
<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"/>
|
|
21
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28564"/>
|
|
22
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28564" result="shape"/>
|
|
23
|
+
</filter>
|
|
24
|
+
<linearGradient id="paint0_linear_3669_28564" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
|
|
25
|
+
<stop offset="0.620192" stop-color="white"/>
|
|
26
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
<linearGradient id="paint1_linear_3669_28564" x1="64" y1="25" x2="0" y2="25" gradientUnits="userSpaceOnUse">
|
|
29
|
+
<stop stop-color="#DAE1EB"/>
|
|
30
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<clipPath id="clip0_3669_28564">
|
|
33
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
34
|
+
</clipPath>
|
|
35
|
+
</defs>
|
|
36
|
+
</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_28565)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<g filter="url(#filter0_d_3669_28565)">
|
|
5
|
+
<path d="M0 13H60C62.2091 13 64 14.7909 64 17V33C64 35.2091 62.2091 37 60 37H0V13Z" fill="url(#paint0_linear_3669_28565)"/>
|
|
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_28565)" stroke-width="0.5"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M58.0315 28.3045C57.9672 28.3412 57.8964 28.3648 57.823 28.374C57.7496 28.3832 57.6751 28.3779 57.6038 28.3583C57.5325 28.3387 57.4657 28.3052 57.4074 28.2598C57.349 28.2144 57.3002 28.1579 57.2636 28.0936L55.9277 25.7592C55.151 26.2844 54.2943 26.68 53.3908 26.9306L53.8036 29.407C53.8157 29.4799 53.8134 29.5545 53.7968 29.6265C53.7801 29.6985 53.7494 29.7665 53.7064 29.8267C53.6635 29.8868 53.6091 29.9379 53.5464 29.977C53.4836 30.0161 53.4138 30.0425 53.3409 30.0546C53.3109 30.0595 53.2806 30.0621 53.2502 30.0623C53.1171 30.0621 52.9884 30.0148 52.887 29.9286C52.7856 29.8425 52.7179 29.7232 52.6961 29.5919L52.2904 27.1605C51.4349 27.2796 50.5669 27.2796 49.7114 27.1605L49.3057 29.5919C49.2838 29.7235 49.216 29.8429 49.1143 29.9291C49.0125 30.0152 48.8835 30.0625 48.7502 30.0623C48.7191 30.0622 48.6881 30.0596 48.6574 30.0546C48.5845 30.0425 48.5147 30.0161 48.4519 29.977C48.3892 29.9379 48.3348 29.8868 48.2919 29.8267C48.2489 29.7665 48.2182 29.6985 48.2015 29.6265C48.1849 29.5545 48.1826 29.4799 48.1947 29.407L48.6096 26.9306C47.7065 26.6792 46.8502 26.2828 46.0741 25.7571L44.7424 28.0936C44.6678 28.2236 44.5446 28.3186 44.4 28.3577C44.2553 28.3969 44.101 28.377 43.9711 28.3024C43.8411 28.2278 43.7461 28.1046 43.7069 27.96C43.6677 27.8153 43.6876 27.6611 43.7622 27.5311L45.1685 25.0701C44.6745 24.6434 44.2203 24.1727 43.8115 23.6639C43.7605 23.607 43.7216 23.5402 43.6973 23.4678C43.6729 23.3953 43.6636 23.3187 43.6699 23.2425C43.6761 23.1663 43.6978 23.0922 43.7337 23.0247C43.7696 22.9572 43.8188 22.8978 43.8784 22.8499C43.938 22.8021 44.0067 22.7669 44.0804 22.7465C44.154 22.7261 44.2311 22.7209 44.3068 22.7313C44.3825 22.7417 44.4553 22.7674 44.5208 22.8068C44.5863 22.8463 44.643 22.8987 44.6876 22.9608C45.8547 24.405 47.8966 26.1248 51.0002 26.1248C54.1038 26.1248 56.1457 24.4029 57.3129 22.9608C57.3569 22.8974 57.4135 22.8438 57.4792 22.8032C57.5448 22.7626 57.6181 22.736 57.6945 22.725C57.7709 22.714 57.8487 22.7188 57.9232 22.7392C57.9976 22.7595 58.0671 22.795 58.1272 22.8433C58.1874 22.8917 58.2369 22.9519 58.2728 23.0202C58.3087 23.0885 58.3301 23.1635 58.3358 23.2405C58.3414 23.3175 58.3312 23.3948 58.3057 23.4676C58.2802 23.5404 58.24 23.6073 58.1876 23.6639C57.7787 24.1727 57.3245 24.6434 56.8305 25.0701L58.2368 27.5311C58.2745 27.5952 58.2992 27.6662 58.3093 27.74C58.3194 27.8137 58.3147 27.8887 58.2957 27.9607C58.2766 28.0326 58.2434 28.1001 58.198 28.1591C58.1527 28.2181 58.0961 28.2675 58.0315 28.3045Z" fill="#C3C3C3"/>
|
|
9
|
+
<path d="M6.93 25.06L7.87 23.84L6.37 23.94V23.31L7.87 23.41L6.93 22.19L7.56 21.83L8.24 23.17L8.93 21.83L9.55 22.19L8.62 23.41L10.12 23.31V23.94L8.62 23.84L9.55 25.06L8.93 25.43L8.24 24.09L7.56 25.43L6.93 25.06ZM11.6696 25.06L12.6096 23.84L11.1096 23.94V23.31L12.6096 23.41L11.6696 22.19L12.2996 21.83L12.9796 23.17L13.6696 21.83L14.2896 22.19L13.3596 23.41L14.8596 23.31V23.94L13.3596 23.84L14.2896 25.06L13.6696 25.43L12.9796 24.09L12.2996 25.43L11.6696 25.06ZM16.4091 25.06L17.3491 23.84L15.8491 23.94V23.31L17.3491 23.41L16.4091 22.19L17.0391 21.83L17.7191 23.17L18.4091 21.83L19.0291 22.19L18.0991 23.41L19.5991 23.31V23.94L18.0991 23.84L19.0291 25.06L18.4091 25.43L17.7191 24.09L17.0391 25.43L16.4091 25.06ZM21.1487 25.06L22.0887 23.84L20.5887 23.94V23.31L22.0887 23.41L21.1487 22.19L21.7787 21.83L22.4587 23.17L23.1487 21.83L23.7687 22.19L22.8387 23.41L24.3387 23.31V23.94L22.8387 23.84L23.7687 25.06L23.1487 25.43L22.4587 24.09L21.7787 25.43L21.1487 25.06Z" fill="#C3C3C3"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<filter id="filter0_d_3669_28565" 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_28565"/>
|
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28565" result="shape"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_3669_28565" 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_28565" 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_28565">
|
|
31
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,38 @@
|
|
|
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_28570)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<g filter="url(#filter0_d_3669_28570)">
|
|
5
|
+
<path d="M0 10H60C62.2091 10 64 11.7909 64 14V49H4C1.79086 49 0 47.2091 0 45V10Z" fill="url(#paint0_linear_3669_28570)"/>
|
|
6
|
+
<path d="M60 10.25C62.0711 10.25 63.75 11.9289 63.75 14V48.75H4C1.92893 48.75 0.25 47.0711 0.25 45V10.25H60Z" stroke="url(#paint1_linear_3669_28570)" stroke-width="0.5"/>
|
|
7
|
+
</g>
|
|
8
|
+
<rect x="8" y="14" width="50" height="31" rx="2" fill="#E9F1FF"/>
|
|
9
|
+
<rect x="45" y="32" width="11" height="11" rx="2" fill="white" fill-opacity="0.5" stroke="#4B91FE" stroke-width="0.5" stroke-dasharray="2 1"/>
|
|
10
|
+
<path d="M52.1988 37.5003C52.1988 37.5378 52.1839 37.5738 52.1574 37.6004C52.1308 37.6269 52.0948 37.6418 52.0573 37.6418H50.6418V39.0573C50.6418 39.0948 50.6269 39.1308 50.6004 39.1574C50.5738 39.1839 50.5378 39.1988 50.5003 39.1988C50.4627 39.1988 50.4267 39.1839 50.4002 39.1574C50.3737 39.1308 50.3587 39.0948 50.3587 39.0573V37.6418H48.9433C48.9058 37.6418 48.8698 37.6269 48.8432 37.6004C48.8167 37.5738 48.8018 37.5378 48.8018 37.5003C48.8018 37.4627 48.8167 37.4267 48.8432 37.4002C48.8698 37.3737 48.9058 37.3587 48.9433 37.3587H50.3587V35.9433C50.3587 35.9058 50.3737 35.8698 50.4002 35.8432C50.4267 35.8167 50.4627 35.8018 50.5003 35.8018C50.5378 35.8018 50.5738 35.8167 50.6004 35.8432C50.6269 35.8698 50.6418 35.9058 50.6418 35.9433V37.3587H52.0573C52.0948 37.3587 52.1308 37.3737 52.1574 37.4002C52.1839 37.4267 52.1988 37.4627 52.1988 37.5003Z" fill="#4B91FE"/>
|
|
11
|
+
<circle cx="27.5" cy="33.5" r="7.5" fill="#B9D5FF"/>
|
|
12
|
+
<foreignObject x="24" y="14" width="23" height="23"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(2px);clip-path:url(#bgblur_1_3669_28570_clip_path);height:100%;width:100%"></div></foreignObject><rect data-figma-bg-blur-radius="4" x="28" y="18" width="15" height="15" fill="#B9D5FF" fill-opacity="0.46"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<filter id="filter0_d_3669_28570" x="0" y="10" width="72" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
16
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
17
|
+
<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"/>
|
|
18
|
+
<feOffset dx="4" dy="4"/>
|
|
19
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
20
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
21
|
+
<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"/>
|
|
22
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3669_28570"/>
|
|
23
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28570" result="shape"/>
|
|
24
|
+
</filter>
|
|
25
|
+
<clipPath id="bgblur_1_3669_28570_clip_path" transform="translate(-24 -14)"><rect x="28" y="18" width="15" height="15"/>
|
|
26
|
+
</clipPath><linearGradient id="paint0_linear_3669_28570" x1="64" y1="29.5" x2="0" y2="29.5" gradientUnits="userSpaceOnUse">
|
|
27
|
+
<stop offset="0.620192" stop-color="white"/>
|
|
28
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
<linearGradient id="paint1_linear_3669_28570" x1="64" y1="29.5" x2="0" y2="29.5" gradientUnits="userSpaceOnUse">
|
|
31
|
+
<stop stop-color="#DAE1EB"/>
|
|
32
|
+
<stop offset="1" stop-color="#F5F5F7"/>
|
|
33
|
+
</linearGradient>
|
|
34
|
+
<clipPath id="clip0_3669_28570">
|
|
35
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
36
|
+
</clipPath>
|
|
37
|
+
</defs>
|
|
38
|
+
</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_28559)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<g filter="url(#filter0_d_3669_28559)">
|
|
5
|
+
<path d="M0 13H60C62.2091 13 64 14.7909 64 17V33C64 35.2091 62.2091 37 60 37H0V13Z" fill="url(#paint0_linear_3669_28559)"/>
|
|
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_28559)" 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="M9.37 22.6H7.18V22H12.28V22.6H10.11V29H9.37V22.6ZM16.6451 26.78H13.0051C13.0451 27.3333 13.2018 27.76 13.4751 28.06C13.7551 28.36 14.1318 28.51 14.6051 28.51C14.9051 28.51 15.1784 28.4467 15.4251 28.32C15.6718 28.1867 15.8751 28.0033 16.0351 27.77L16.4451 28.16C16.2518 28.46 15.9918 28.6933 15.6651 28.86C15.3451 29.02 14.9851 29.1 14.5851 29.1C13.8718 29.1 13.3118 28.8733 12.9051 28.42C12.5051 27.96 12.3051 27.3233 12.3051 26.51C12.3051 25.6967 12.5018 25.06 12.8951 24.6C13.2951 24.1333 13.8451 23.9 14.5451 23.9C15.2051 23.9 15.7184 24.1233 16.0851 24.57C16.4584 25.0167 16.6451 25.64 16.6451 26.44V26.78ZM16.0051 26.16C16.0051 25.64 15.8718 25.23 15.6051 24.93C15.3384 24.6233 14.9784 24.47 14.5251 24.47C14.0718 24.47 13.7118 24.6233 13.4451 24.93C13.1851 25.2367 13.0384 25.6733 13.0051 26.24H16.0051V26.16ZM19.1199 26.46L17.5199 24H18.2999L19.4799 25.96L20.6499 24H21.4499L19.8399 26.46L21.5699 29H20.7699L19.4799 26.9L18.1799 29H17.3899L19.1199 26.46ZM24.2814 29.1C23.8547 29.1 23.5247 28.9667 23.2914 28.7C23.058 28.4267 22.9414 28.0433 22.9414 27.55V24.55H22.0414V24H22.9414V22.65L23.5914 22.44H23.6314V24H25.0414V24.55H23.6314V27.46C23.6314 27.8333 23.6947 28.1067 23.8214 28.28C23.948 28.4467 24.148 28.53 24.4214 28.53C24.688 28.53 24.9114 28.49 25.0914 28.41L25.1514 28.94C24.9314 29.0467 24.6414 29.1 24.2814 29.1ZM27.0213 29.1C26.8546 29.1 26.718 29.0467 26.6113 28.94C26.5113 28.8267 26.4613 28.6833 26.4613 28.51C26.4613 28.3367 26.5113 28.1967 26.6113 28.09C26.718 27.9833 26.8546 27.93 27.0213 27.93C27.188 27.93 27.3213 27.9833 27.4213 28.09C27.5213 28.1967 27.5713 28.3367 27.5713 28.51C27.5713 28.6833 27.5213 28.8267 27.4213 28.94C27.3213 29.0467 27.188 29.1 27.0213 29.1ZM29.6515 29.1C29.4848 29.1 29.3482 29.0467 29.2415 28.94C29.1415 28.8267 29.0915 28.6833 29.0915 28.51C29.0915 28.3367 29.1415 28.1967 29.2415 28.09C29.3482 27.9833 29.4848 27.93 29.6515 27.93C29.8182 27.93 29.9515 27.9833 30.0515 28.09C30.1515 28.1967 30.2015 28.3367 30.2015 28.51C30.2015 28.6833 30.1515 28.8267 30.0515 28.94C29.9515 29.0467 29.8182 29.1 29.6515 29.1Z" fill="#C3C3C3"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<filter id="filter0_d_3669_28559" 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_28559"/>
|
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3669_28559" result="shape"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<linearGradient id="paint0_linear_3669_28559" 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_28559" 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_28559">
|
|
31
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
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_28571)">
|
|
3
|
+
<rect width="73" height="49" rx="4" fill="#F5F5F7"/>
|
|
4
|
+
<path d="M17 17.6875C13.2151 17.6875 10.25 19.4172 10.25 21.625V28.375C10.25 30.5828 13.2151 32.3125 17 32.3125C20.7849 32.3125 23.75 30.5828 23.75 28.375V21.625C23.75 19.4172 20.7849 17.6875 17 17.6875ZM22.625 25C22.625 25.6764 22.0709 26.3662 21.1055 26.8928C20.0185 27.4855 18.5602 27.8125 17 27.8125C15.4398 27.8125 13.9815 27.4855 12.8945 26.8928C11.9291 26.3662 11.375 25.6764 11.375 25V23.83C12.5745 24.8847 14.6255 25.5625 17 25.5625C19.3745 25.5625 21.4255 24.8819 22.625 23.83V25ZM12.8945 19.7322C13.9815 19.1395 15.4398 18.8125 17 18.8125C18.5602 18.8125 20.0185 19.1395 21.1055 19.7322C22.0709 20.2588 22.625 20.9486 22.625 21.625C22.625 22.3014 22.0709 22.9912 21.1055 23.5178C20.0185 24.1105 18.5602 24.4375 17 24.4375C15.4398 24.4375 13.9815 24.1105 12.8945 23.5178C11.9291 22.9912 11.375 22.3014 11.375 21.625C11.375 20.9486 11.9291 20.2588 12.8945 19.7322ZM21.1055 30.2678C20.0185 30.8605 18.5602 31.1875 17 31.1875C15.4398 31.1875 13.9815 30.8605 12.8945 30.2678C11.9291 29.7412 11.375 29.0514 11.375 28.375V27.205C12.5745 28.2597 14.6255 28.9375 17 28.9375C19.3745 28.9375 21.4255 28.2569 22.625 27.205V28.375C22.625 29.0514 22.0709 29.7412 21.1055 30.2678Z" fill="#C3C3C3"/>
|
|
5
|
+
<path d="M43.1875 18.25H34.1875C34.0383 18.25 33.8952 18.3093 33.7898 18.4148C33.6843 18.5202 33.625 18.6633 33.625 18.8125V21.625H30.8125C30.6633 21.625 30.5202 21.6843 30.4148 21.7898C30.3093 21.8952 30.25 22.0383 30.25 22.1875V31.1875C30.25 31.3367 30.3093 31.4798 30.4148 31.5852C30.5202 31.6907 30.6633 31.75 30.8125 31.75H39.8125C39.9617 31.75 40.1048 31.6907 40.2102 31.5852C40.3157 31.4798 40.375 31.3367 40.375 31.1875V28.375H43.1875C43.3367 28.375 43.4798 28.3157 43.5852 28.2102C43.6907 28.1048 43.75 27.9617 43.75 27.8125V18.8125C43.75 18.6633 43.6907 18.5202 43.5852 18.4148C43.4798 18.3093 43.3367 18.25 43.1875 18.25ZM39.25 30.625H31.375V22.75H39.25V30.625ZM42.625 27.25H40.375V22.1875C40.375 22.0383 40.3157 21.8952 40.2102 21.7898C40.1048 21.6843 39.9617 21.625 39.8125 21.625H34.75V19.375H42.625V27.25Z" fill="#C3C3C3"/>
|
|
6
|
+
<path d="M64.1479 31.3519L60.6273 27.8321C61.6477 26.6071 62.1566 25.0358 62.048 23.4451C61.9394 21.8545 61.2217 20.3669 60.0443 19.2919C58.8668 18.2169 57.3203 17.6373 55.7264 17.6735C54.1324 17.7097 52.6138 18.359 51.4864 19.4864C50.359 20.6138 49.7097 22.1324 49.6735 23.7264C49.6373 25.3203 50.2169 26.8668 51.2919 28.0443C52.3669 29.2217 53.8545 29.9394 55.4451 30.048C57.0358 30.1566 58.6071 29.6477 59.8321 28.6273L63.3519 32.1479C63.4042 32.2001 63.4663 32.2416 63.5345 32.2699C63.6028 32.2982 63.676 32.3127 63.7499 32.3127C63.8238 32.3127 63.897 32.2982 63.9653 32.2699C64.0336 32.2416 64.0956 32.2001 64.1479 32.1479C64.2001 32.0956 64.2416 32.0336 64.2699 31.9653C64.2982 31.897 64.3127 31.8238 64.3127 31.7499C64.3127 31.676 64.2982 31.6028 64.2699 31.5345C64.2416 31.4663 64.2001 31.4042 64.1479 31.3519ZM50.8124 23.8749C50.8124 22.8736 51.1093 21.8949 51.6656 21.0623C52.2219 20.2298 53.0125 19.5809 53.9376 19.1978C54.8626 18.8146 55.8805 18.7144 56.8626 18.9097C57.8446 19.105 58.7466 19.5872 59.4546 20.2952C60.1626 21.0032 60.6448 21.9052 60.8401 22.8873C61.0355 23.8693 60.9352 24.8872 60.5521 25.8123C60.1689 26.7373 59.52 27.528 58.6875 28.0842C57.855 28.6405 56.8762 28.9374 55.8749 28.9374C54.5327 28.9359 53.2459 28.4021 52.2968 27.453C51.3478 26.5039 50.8139 25.2171 50.8124 23.8749Z" fill="#C3C3C3"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_3669_28571">
|
|
10
|
+
<rect width="73" height="49" rx="4" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</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_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>
|