@tuki-io/tuki-widgets 0.0.134 → 0.0.136
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/README.md +9 -10
- package/contact-center/cc-readiness/cc-readiness.module.d.ts +19 -0
- package/contact-center/cc-readiness/cc-readiness.service.d.ts +12 -0
- package/contact-center/cc-readiness/components/card/card.component.d.ts +6 -0
- package/contact-center/cc-readiness/types/cc-readiness.d.ts +20 -0
- package/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.d.ts +52 -0
- package/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.d.ts +26 -0
- package/contact-center/index.d.ts +5 -0
- package/contact-center/public-api.d.ts +3 -0
- package/contact-center/shared/api.endpoints.d.ts +6 -0
- package/contact-center/shared/api.service.d.ts +20 -0
- package/contact-center/shared/material.module.d.ts +15 -0
- package/contact-center/shared/shared.module.d.ts +10 -0
- package/di2mt/api/api.endpoints.d.ts +31 -0
- package/di2mt/index.d.ts +5 -0
- package/di2mt/public-api.d.ts +13 -0
- package/di2mt/shared/components/card/card.component.d.ts +6 -0
- package/di2mt/shared/components/chart-card/chart-card.component.d.ts +23 -0
- package/di2mt/shared/components/stat-card/stat-card.component.d.ts +14 -0
- package/di2mt/shared/components/status-list-card/status-list-card.component.d.ts +15 -0
- package/di2mt/shared/components/summary-card/summary-card.component.d.ts +9 -0
- package/di2mt/shared/components/table-filters/table-filters.component.d.ts +14 -0
- package/di2mt/shared/constants/app.constants.d.ts +74 -0
- package/di2mt/shared/material.module.d.ts +15 -0
- package/di2mt/shared/services/api.service.d.ts +20 -0
- package/di2mt/shared/shared.module.d.ts +16 -0
- package/di2mt/shared/types/constants.d.ts +15 -0
- package/di2mt/shared/types/data-table.d.ts +5 -0
- package/di2mt/shared/types/table/filter.d.ts +16 -0
- package/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.d.ts +11 -0
- package/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +69 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +15 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +84 -0
- package/di2mt/widgets/site-upgrade/types/user-upgrade.d.ts +26 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts +56 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.service.d.ts +17 -0
- package/di2mt/widgets/user-upgrade/types/user-upgrade.d.ts +32 -0
- package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +79 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +16 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +41 -0
- package/esm2020/contact-center/cc-readiness/cc-readiness.module.mjs +71 -0
- package/esm2020/contact-center/cc-readiness/cc-readiness.service.mjs +35 -0
- package/esm2020/contact-center/cc-readiness/components/card/card.component.mjs +13 -0
- package/esm2020/contact-center/cc-readiness/types/cc-readiness.mjs +5 -0
- package/esm2020/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.mjs +187 -0
- package/esm2020/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.mjs +47 -0
- package/esm2020/contact-center/public-api.mjs +4 -0
- package/esm2020/contact-center/shared/api.endpoints.mjs +7 -0
- package/esm2020/contact-center/shared/api.service.mjs +86 -0
- package/esm2020/contact-center/shared/material.module.mjs +76 -0
- package/esm2020/contact-center/shared/shared.module.mjs +33 -0
- package/esm2020/contact-center/tuki-io-tuki-widgets-contact-center.mjs +5 -0
- package/esm2020/di2mt/api/api.endpoints.mjs +32 -0
- package/esm2020/di2mt/public-api.mjs +24 -0
- package/esm2020/di2mt/shared/components/card/card.component.mjs +13 -0
- package/esm2020/di2mt/shared/components/chart-card/chart-card.component.mjs +66 -0
- package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +47 -0
- package/esm2020/di2mt/shared/components/status-list-card/status-list-card.component.mjs +43 -0
- package/esm2020/di2mt/shared/components/summary-card/summary-card.component.mjs +36 -0
- package/esm2020/di2mt/shared/components/table-filters/table-filters.component.mjs +37 -0
- package/esm2020/di2mt/shared/constants/app.constants.mjs +95 -0
- package/esm2020/di2mt/shared/material.module.mjs +76 -0
- package/esm2020/di2mt/shared/services/api.service.mjs +86 -0
- package/esm2020/di2mt/shared/shared.module.mjs +63 -0
- package/esm2020/di2mt/shared/types/constants.mjs +20 -0
- package/esm2020/di2mt/shared/types/data-table.mjs +2 -0
- package/esm2020/di2mt/shared/types/table/filter.mjs +2 -0
- package/esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs +5 -0
- package/esm2020/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.mjs +38 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +433 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +53 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +92 -0
- package/esm2020/di2mt/widgets/site-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.mjs +83 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.mjs +86 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.mjs +74 -0
- package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +2 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +59 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.service.mjs +82 -0
- package/esm2020/di2mt/widgets/user-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.mjs +376 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +59 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +80 -0
- package/esm2020/lib/widgets.component.mjs +22 -0
- package/esm2020/lib/widgets.module.mjs +21 -0
- package/esm2020/lib/widgets.service.mjs +14 -0
- package/esm2020/public-api.mjs +7 -0
- package/esm2020/tuki-io-tuki-widgets.mjs +5 -0
- package/esm2020/user-device-manage/public-api.mjs +9 -0
- package/esm2020/user-device-manage/src/app.constants.mjs +97 -0
- package/esm2020/user-device-manage/src/classes/device.mjs +85 -0
- package/esm2020/user-device-manage/src/classes/deviceProfile.mjs +34 -0
- package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-device-manage/src/classes/line-association.mjs +121 -0
- package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-device-manage/src/classes/line-directory.mjs +27 -0
- package/esm2020/user-device-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-device-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +111 -0
- package/esm2020/user-device-manage/src/classes/site-defaults.mjs +21 -0
- package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/types.mjs +24 -0
- package/esm2020/user-device-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +34 -0
- package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +31 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +16 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +64 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +179 -0
- package/esm2020/user-device-manage/src/device-info/device-info.component.mjs +43 -0
- package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +24 -0
- package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +141 -0
- package/esm2020/user-device-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -0
- package/esm2020/user-device-manage/src/material.module.mjs +192 -0
- package/esm2020/user-device-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-device-manage/src/pipes/mac-address.pipe.mjs +26 -0
- package/esm2020/user-device-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-device-manage/src/services/device.service.mjs +83 -0
- package/esm2020/user-device-manage/src/services/dns.service.mjs +104 -0
- package/esm2020/user-device-manage/src/services/line.service.mjs +76 -0
- package/esm2020/user-device-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-device-manage/src/services/site-settings.service.mjs +70 -0
- package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-device-manage/src/services/user.service.mjs +311 -0
- package/esm2020/user-device-manage/src/services/utils.service.mjs +87 -0
- package/esm2020/user-device-manage/src/services/validation.service.mjs +760 -0
- package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +13 -0
- package/esm2020/user-device-manage/src/user-device-manage.module.mjs +116 -0
- package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +5 -0
- package/esm2020/user-manage/public-api.mjs +7 -0
- package/esm2020/user-manage/src/app.constants.mjs +54 -0
- package/esm2020/user-manage/src/classes/device.mjs +37 -0
- package/esm2020/user-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-manage/src/classes/line-association.mjs +110 -0
- package/esm2020/user-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-manage/src/classes/line-directory.mjs +28 -0
- package/esm2020/user-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-manage/src/classes/pagination.mjs +8 -0
- package/esm2020/user-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-manage/src/classes/simplified-user.mjs +109 -0
- package/esm2020/user-manage/src/classes/table-data.mjs +2 -0
- package/esm2020/user-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-manage/src/classes/user-list.mjs +10 -0
- package/esm2020/user-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-manage/src/device-list/device-list.component.mjs +26 -0
- package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +33 -0
- package/esm2020/user-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +81 -0
- package/esm2020/user-manage/src/material.module.mjs +188 -0
- package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-manage/src/services/dns.service.mjs +110 -0
- package/esm2020/user-manage/src/services/line.service.mjs +34 -0
- package/esm2020/user-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -0
- package/esm2020/user-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-manage/src/services/user.service.mjs +249 -0
- package/esm2020/user-manage/src/services/users-search.service.mjs +50 -0
- package/esm2020/user-manage/src/services/utils.service.mjs +73 -0
- package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +65 -0
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +75 -0
- package/esm2020/user-manage/src/user-info/user-info.component.mjs +23 -0
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +219 -0
- package/esm2020/user-manage/src/user-manage.module.mjs +102 -0
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +5 -0
- package/esm2020/users-list/public-api.mjs +9 -0
- package/esm2020/users-list/src/app.constants.mjs +54 -0
- package/esm2020/users-list/src/classes/app-location.mjs +32 -0
- package/esm2020/users-list/src/classes/device.mjs +7 -0
- package/esm2020/users-list/src/classes/line.mjs +18 -0
- package/esm2020/users-list/src/classes/move-user.mjs +178 -0
- package/esm2020/users-list/src/classes/notification.mjs +31 -0
- package/esm2020/users-list/src/classes/pagination.mjs +8 -0
- package/esm2020/users-list/src/classes/simlified-user.mjs +50 -0
- package/esm2020/users-list/src/classes/table-data.mjs +2 -0
- package/esm2020/users-list/src/classes/user-list.mjs +14 -0
- package/esm2020/users-list/src/components/table-toolbar/table-toolbar.component.mjs +25 -0
- package/esm2020/users-list/src/material.module.mjs +216 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +23 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +189 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/services/api-webex.service.mjs +18 -0
- package/esm2020/users-list/src/services/api.service.mjs +78 -0
- package/esm2020/users-list/src/services/dns.service.mjs +120 -0
- package/esm2020/users-list/src/services/events-communication.service.mjs +14 -0
- package/esm2020/users-list/src/services/move-user.service.mjs +53 -0
- package/esm2020/users-list/src/services/notification.service.mjs +62 -0
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/users-list/src/services/site-settings.service.mjs +27 -0
- package/esm2020/users-list/src/services/user.service.mjs +142 -0
- package/esm2020/users-list/src/services/users-search.service.mjs +141 -0
- package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +34 -0
- package/esm2020/users-list/src/users-list.component.mjs +339 -0
- package/esm2020/users-list/src/users-list.module.mjs +95 -0
- package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/users-list/src/utils/common-functions.mjs +32 -0
- package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/users-list/src/utils/utils.service.mjs +73 -0
- package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +5 -0
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +433 -0
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +2220 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +3378 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +2222 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2098 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +430 -0
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +2204 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +3357 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +2208 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2074 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/widgets.component.d.ts +8 -0
- package/lib/widgets.module.d.ts +7 -0
- package/lib/widgets.service.d.ts +6 -0
- package/package.json +73 -49
- package/public-api.d.ts +3 -0
- package/user-device-manage/index.d.ts +5 -0
- package/user-device-manage/src/app.constants.d.ts +76 -0
- package/user-device-manage/src/classes/device.d.ts +233 -0
- package/user-device-manage/src/classes/deviceProfile.d.ts +24 -0
- package/user-device-manage/src/classes/line-association-interface.d.ts +45 -0
- package/user-device-manage/src/classes/line-association.d.ts +62 -0
- package/user-device-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-device-manage/src/classes/line-directory.d.ts +15 -0
- package/user-device-manage/src/classes/line.d.ts +140 -0
- package/user-device-manage/src/classes/notification.d.ts +18 -0
- package/user-device-manage/src/classes/recording-options.d.ts +5 -0
- package/user-device-manage/src/classes/simplified-user.d.ts +52 -0
- package/user-device-manage/src/classes/site-defaults.d.ts +146 -0
- package/user-device-manage/src/classes/translation-pattern.d.ts +19 -0
- package/user-device-manage/src/classes/types.d.ts +19 -0
- package/user-device-manage/src/common-functions.d.ts +1 -0
- package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +20 -0
- package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +15 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +7 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +24 -0
- package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +89 -0
- package/user-device-manage/src/device-info/device-info.component.d.ts +15 -0
- package/user-device-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-device-manage/src/device-manage-widget.component.d.ts +54 -0
- package/user-device-manage/src/environments/environment.d.ts +9 -0
- package/user-device-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -0
- package/user-device-manage/src/material.module.d.ts +29 -0
- package/user-device-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-device-manage/src/pipes/mac-address.pipe.d.ts +7 -0
- package/user-device-manage/src/services/api.service.d.ts +20 -0
- package/user-device-manage/src/services/device.service.d.ts +21 -0
- package/user-device-manage/src/services/dns.service.d.ts +14 -0
- package/user-device-manage/src/services/line.service.d.ts +33 -0
- package/user-device-manage/src/services/notification.service.d.ts +18 -0
- package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-device-manage/src/services/site-settings.service.d.ts +25 -0
- package/user-device-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-device-manage/src/services/user.service.d.ts +61 -0
- package/user-device-manage/src/services/utils.service.d.ts +10 -0
- package/user-device-manage/src/services/validation.service.d.ts +165 -0
- package/user-device-manage/src/shared/tk-page-section/page-section.component.d.ts +6 -0
- package/user-device-manage/src/user-device-manage.module.d.ts +25 -0
- package/user-device-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/index.d.ts +5 -0
- package/user-manage/src/app.constants.d.ts +33 -0
- package/user-manage/src/classes/device.d.ts +203 -0
- package/user-manage/src/classes/line-association-interface.d.ts +41 -0
- package/user-manage/src/classes/line-association.d.ts +55 -0
- package/user-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-manage/src/classes/line-directory.d.ts +17 -0
- package/user-manage/src/classes/line.d.ts +141 -0
- package/user-manage/src/classes/notification.d.ts +18 -0
- package/user-manage/src/classes/pagination.d.ts +13 -0
- package/user-manage/src/classes/recording-options.d.ts +5 -0
- package/user-manage/src/classes/simplified-user.d.ts +50 -0
- package/user-manage/src/classes/table-data.d.ts +5 -0
- package/user-manage/src/classes/translation-pattern.d.ts +18 -0
- package/user-manage/src/classes/user-list.d.ts +34 -0
- package/user-manage/src/common-functions.d.ts +1 -0
- package/user-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-manage/src/device-list/device-row/device-row.component.d.ts +12 -0
- package/user-manage/src/environments/environment.d.ts +9 -0
- package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +37 -0
- package/user-manage/src/material.module.d.ts +28 -0
- package/user-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-manage/src/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/api.service.d.ts +21 -0
- package/user-manage/src/services/dns.service.d.ts +14 -0
- package/user-manage/src/services/line.service.d.ts +17 -0
- package/user-manage/src/services/notification.service.d.ts +18 -0
- package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/site-settings.service.d.ts +9 -0
- package/user-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-manage/src/services/user.service.d.ts +45 -0
- package/user-manage/src/services/users-search.service.d.ts +25 -0
- package/user-manage/src/services/utils.service.d.ts +9 -0
- package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +24 -0
- package/user-manage/src/user-calling/user-calling.component.d.ts +30 -0
- package/user-manage/src/user-info/user-info.component.d.ts +10 -0
- package/user-manage/src/user-manage-widget.component.d.ts +45 -0
- package/user-manage/src/user-manage.module.d.ts +22 -0
- package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/index.d.ts +5 -0
- package/users-list/src/app.constants.d.ts +36 -0
- package/users-list/src/classes/app-location.d.ts +17 -0
- package/users-list/src/classes/device.d.ts +224 -0
- package/users-list/src/classes/line.d.ts +140 -0
- package/users-list/src/classes/move-user.d.ts +85 -0
- package/users-list/src/classes/notification.d.ts +18 -0
- package/users-list/src/classes/pagination.d.ts +13 -0
- package/users-list/src/classes/simlified-user.d.ts +25 -0
- package/users-list/src/classes/table-data.d.ts +5 -0
- package/users-list/src/classes/user-list.d.ts +36 -0
- package/users-list/src/components/table-toolbar/table-toolbar.component.d.ts +10 -0
- package/users-list/src/material.module.d.ts +32 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.d.ts +21 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.d.ts +12 -0
- package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +55 -0
- package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +17 -0
- package/users-list/src/services/api-webex.service.d.ts +8 -0
- package/users-list/src/services/api.service.d.ts +21 -0
- package/users-list/src/services/dns.service.d.ts +18 -0
- package/users-list/src/services/events-communication.service.d.ts +8 -0
- package/users-list/src/services/move-user.service.d.ts +17 -0
- package/users-list/src/services/notification.service.d.ts +18 -0
- package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/users-list/src/services/site-settings.service.d.ts +11 -0
- package/users-list/src/services/user.service.d.ts +35 -0
- package/users-list/src/services/users-search.service.d.ts +37 -0
- package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +20 -0
- package/users-list/src/users-list.component.d.ts +62 -0
- package/users-list/src/users-list.module.d.ts +19 -0
- package/users-list/src/utils/app-loader/app-loader.d.ts +6 -0
- package/users-list/src/utils/common-functions.d.ts +2 -0
- package/users-list/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/src/utils/utils.service.d.ts +9 -0
- package/.editorconfig +0 -16
- package/.hintrc +0 -14
- package/.vscode/extensions.json +0 -4
- package/.vscode/launch.json +0 -20
- package/.vscode/tasks.json +0 -42
- package/angular.json +0 -141
- package/projects/tuki/widgets/README.md +0 -24
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.module.ts +0 -44
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.service.spec.ts +0 -16
- package/projects/tuki/widgets/contact-center/cc-readiness/cc-readiness.service.ts +0 -33
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.html +0 -11
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.scss +0 -48
- package/projects/tuki/widgets/contact-center/cc-readiness/components/card/card.component.ts +0 -10
- package/projects/tuki/widgets/contact-center/cc-readiness/types/cc-readiness.ts +0 -34
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.html +0 -74
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.scss +0 -177
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.spec.ts +0 -35
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/licences-requirement/licences-requirement.component.ts +0 -237
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.html +0 -19
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.scss +0 -38
- package/projects/tuki/widgets/contact-center/cc-readiness/widgets/summary-grid/summary-grid.component.ts +0 -57
- package/projects/tuki/widgets/contact-center/ng-package.json +0 -7
- package/projects/tuki/widgets/contact-center/public-api.ts +0 -6
- package/projects/tuki/widgets/contact-center/shared/api.endpoints.ts +0 -6
- package/projects/tuki/widgets/contact-center/shared/api.service.ts +0 -91
- package/projects/tuki/widgets/contact-center/shared/assets/icons/applications.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/audioPrompts.svg +0 -4
- package/projects/tuki/widgets/contact-center/shared/assets/icons/contactServiceQueues.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/phonebooks.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/resourceGroups.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/assets/icons/resources.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/scripts.svg +0 -12
- package/projects/tuki/widgets/contact-center/shared/assets/icons/skills.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/teams.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/triggers.svg +0 -4
- package/projects/tuki/widgets/contact-center/shared/assets/icons/wrapUpCodes.svg +0 -3
- package/projects/tuki/widgets/contact-center/shared/assets/icons/xml.svg +0 -6
- package/projects/tuki/widgets/contact-center/shared/material.module.ts +0 -36
- package/projects/tuki/widgets/contact-center/shared/shared.module.ts +0 -20
- package/projects/tuki/widgets/contact-center/shared/styles/tuki-widgets-theme.scss +0 -13
- package/projects/tuki/widgets/contact-center/shared/styles/variables.scss +0 -94
- package/projects/tuki/widgets/di2mt/api/api.endpoints.ts +0 -31
- package/projects/tuki/widgets/di2mt/assets/icons/already_upgraded.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/check2_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/check_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/details_d_icon.svg +0 -3
- package/projects/tuki/widgets/di2mt/assets/icons/expand_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/icon_play.svg +0 -3
- package/projects/tuki/widgets/di2mt/assets/icons/issue_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/menu_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/ready_to_upgrade.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/search_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/site.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/user.png +0 -0
- package/projects/tuki/widgets/di2mt/assets/icons/warning_icon.png +0 -0
- package/projects/tuki/widgets/di2mt/ng-package.json +0 -7
- package/projects/tuki/widgets/di2mt/public-api.ts +0 -27
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.html +0 -11
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.scss +0 -48
- package/projects/tuki/widgets/di2mt/shared/components/card/card.component.ts +0 -10
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.html +0 -15
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.scss +0 -38
- package/projects/tuki/widgets/di2mt/shared/components/chart-card/chart-card.component.ts +0 -76
- package/projects/tuki/widgets/di2mt/shared/components/index.ts +0 -6
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.html +0 -43
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.scss +0 -74
- package/projects/tuki/widgets/di2mt/shared/components/stat-card/stat-card.component.ts +0 -44
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.html +0 -57
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.scss +0 -187
- package/projects/tuki/widgets/di2mt/shared/components/status-list-card/status-list-card.component.ts +0 -41
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.html +0 -12
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.scss +0 -78
- package/projects/tuki/widgets/di2mt/shared/components/summary-card/summary-card.component.ts +0 -27
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.html +0 -28
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.scss +0 -245
- package/projects/tuki/widgets/di2mt/shared/components/table-filters/table-filters.component.ts +0 -28
- package/projects/tuki/widgets/di2mt/shared/constants/app.constants.ts +0 -96
- package/projects/tuki/widgets/di2mt/shared/material.module.ts +0 -36
- package/projects/tuki/widgets/di2mt/shared/services/api.service.ts +0 -91
- package/projects/tuki/widgets/di2mt/shared/shared.module.ts +0 -39
- package/projects/tuki/widgets/di2mt/shared/types/constants.ts +0 -22
- package/projects/tuki/widgets/di2mt/shared/types/data-table.ts +0 -5
- package/projects/tuki/widgets/di2mt/shared/types/table/filter.ts +0 -14
- package/projects/tuki/widgets/di2mt/styles/tuki-widgets-theme.scss +0 -13
- package/projects/tuki/widgets/di2mt/styles/variables.scss +0 -94
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.html +0 -6
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.scss +0 -45
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.ts +0 -27
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.html +0 -160
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.scss +0 -460
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.ts +0 -506
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.module.ts +0 -33
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/site-upgrade.service.ts +0 -172
- package/projects/tuki/widgets/di2mt/widgets/site-upgrade/types/user-upgrade.ts +0 -27
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.ts +0 -52
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.ts +0 -53
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.ts +0 -82
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.html +0 -7
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.scss +0 -0
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.ts +0 -45
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.html +0 -7
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.scss +0 -0
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.ts +0 -45
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.ts +0 -81
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.ts +0 -70
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/types/upgrade-overview.ts +0 -58
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.module.ts +0 -42
- package/projects/tuki/widgets/di2mt/widgets/upgrade-overview/upgrade-overview.service.ts +0 -95
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/types/user-upgrade.ts +0 -35
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.html +0 -204
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.scss +0 -462
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.ts +0 -438
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.module.ts +0 -34
- package/projects/tuki/widgets/di2mt/widgets/user-upgrade/user-upgrade.service.ts +0 -137
- package/projects/tuki/widgets/karma.conf.js +0 -44
- package/projects/tuki/widgets/ng-package.json +0 -10
- package/projects/tuki/widgets/package.json +0 -13
- package/projects/tuki/widgets/src/lib/widgets.component.spec.ts +0 -23
- package/projects/tuki/widgets/src/lib/widgets.component.ts +0 -20
- package/projects/tuki/widgets/src/lib/widgets.module.ts +0 -16
- package/projects/tuki/widgets/src/lib/widgets.service.spec.ts +0 -16
- package/projects/tuki/widgets/src/lib/widgets.service.ts +0 -9
- package/projects/tuki/widgets/src/public-api.ts +0 -7
- package/projects/tuki/widgets/src/test.ts +0 -27
- package/projects/tuki/widgets/styles.scss +0 -558
- package/projects/tuki/widgets/tsconfig.lib.json +0 -37
- package/projects/tuki/widgets/tsconfig.lib.prod.json +0 -10
- package/projects/tuki/widgets/tsconfig.spec.json +0 -17
- package/projects/tuki/widgets/user-device-manage/ng-package.json +0 -7
- package/projects/tuki/widgets/user-device-manage/src/app.constants.ts +0 -98
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-left.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/arrow-right.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cancel-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/check-circle-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco.svg +0 -8
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_7841.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_8841.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_8851.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/cisco_9861.png +0 -0
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/close_icon_x.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/delete_icon.svg +0 -5
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/dragger-vertical-icon.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/people-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/plus-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/settings-light.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/settings-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/vartical_divider_icon.svg +0 -3
- package/projects/tuki/widgets/user-device-manage/src/assets/icons/warning-regular.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/assets/info-circle-bold.svg +0 -1
- package/projects/tuki/widgets/user-device-manage/src/classes/device.ts +0 -292
- package/projects/tuki/widgets/user-device-manage/src/classes/deviceProfile.ts +0 -60
- package/projects/tuki/widgets/user-device-manage/src/classes/line-association-interface.ts +0 -50
- package/projects/tuki/widgets/user-device-manage/src/classes/line-association.ts +0 -177
- package/projects/tuki/widgets/user-device-manage/src/classes/line-call-info-display.ts +0 -21
- package/projects/tuki/widgets/user-device-manage/src/classes/line-directory.ts +0 -41
- package/projects/tuki/widgets/user-device-manage/src/classes/line.ts +0 -144
- package/projects/tuki/widgets/user-device-manage/src/classes/notification.ts +0 -40
- package/projects/tuki/widgets/user-device-manage/src/classes/recording-options.ts +0 -6
- package/projects/tuki/widgets/user-device-manage/src/classes/simplified-user.ts +0 -169
- package/projects/tuki/widgets/user-device-manage/src/classes/site-defaults.ts +0 -167
- package/projects/tuki/widgets/user-device-manage/src/classes/translation-pattern.ts +0 -50
- package/projects/tuki/widgets/user-device-manage/src/classes/types.ts +0 -19
- package/projects/tuki/widgets/user-device-manage/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/user-device-manage/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/user-device-manage/src/common-functions.ts +0 -16
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.html +0 -14
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.scss +0 -80
- package/projects/tuki/widgets/user-device-manage/src/confirm-dialog/info-dialog.component.ts +0 -35
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.html +0 -21
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.scss +0 -97
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.ts +0 -28
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.html +0 -6
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.scss +0 -20
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.ts +0 -13
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.html +0 -6
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.scss +0 -4
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.ts +0 -63
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.html +0 -241
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.scss +0 -500
- package/projects/tuki/widgets/user-device-manage/src/device-associated-line/device-associated-line.component.ts +0 -194
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.html +0 -52
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.scss +0 -219
- package/projects/tuki/widgets/user-device-manage/src/device-info/device-info.component.ts +0 -38
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.html +0 -27
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.scss +0 -131
- package/projects/tuki/widgets/user-device-manage/src/device-list/device-list.component.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.html +0 -281
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.scss +0 -766
- package/projects/tuki/widgets/user-device-manage/src/device-manage-widget.component.ts +0 -142
- package/projects/tuki/widgets/user-device-manage/src/environments/environment.prod.ts +0 -9
- package/projects/tuki/widgets/user-device-manage/src/environments/environment.ts +0 -10
- package/projects/tuki/widgets/user-device-manage/src/interseptors/auth.interceptor.ts +0 -35
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.html +0 -67
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.scss +0 -98
- package/projects/tuki/widgets/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.ts +0 -81
- package/projects/tuki/widgets/user-device-manage/src/material.module.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/user-device-manage/src/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/user-device-manage/src/pipes/mac-address.pipe.ts +0 -24
- package/projects/tuki/widgets/user-device-manage/src/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/services/api.service.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/services/common-functions.ts +0 -17
- package/projects/tuki/widgets/user-device-manage/src/services/device.service.ts +0 -95
- package/projects/tuki/widgets/user-device-manage/src/services/dns.service.ts +0 -111
- package/projects/tuki/widgets/user-device-manage/src/services/line.service.ts +0 -89
- package/projects/tuki/widgets/user-device-manage/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-device-manage/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-device-manage/src/services/site-settings.service.ts +0 -82
- package/projects/tuki/widgets/user-device-manage/src/services/sorting-utils.service.ts +0 -203
- package/projects/tuki/widgets/user-device-manage/src/services/user.service.ts +0 -360
- package/projects/tuki/widgets/user-device-manage/src/services/utils.service.ts +0 -87
- package/projects/tuki/widgets/user-device-manage/src/services/validation.service.ts +0 -829
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.html +0 -13
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.scss +0 -48
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.spec.ts +0 -23
- package/projects/tuki/widgets/user-device-manage/src/shared/tk-page-section/page-section.component.ts +0 -10
- package/projects/tuki/widgets/user-device-manage/src/styles/_variables.scss +0 -90
- package/projects/tuki/widgets/user-device-manage/src/styles/form.scss +0 -284
- package/projects/tuki/widgets/user-device-manage/src/styles/icons.scss +0 -33
- package/projects/tuki/widgets/user-device-manage/src/styles/styles.scss +0 -127
- package/projects/tuki/widgets/user-device-manage/src/styles/tables.scss +0 -30
- package/projects/tuki/widgets/user-device-manage/src/user-device-manage.module.ts +0 -79
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.component.scss +0 -11
- package/projects/tuki/widgets/user-device-manage/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/user-manage/ng-package.json +0 -7
- package/projects/tuki/widgets/user-manage/src/app.constants.ts +0 -54
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-left.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/arrow-right.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_7841.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_8841.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_8851.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/cisco_9861.png +0 -0
- package/projects/tuki/widgets/user-manage/src/assets/icons/delete_icon.svg +0 -5
- package/projects/tuki/widgets/user-manage/src/assets/icons/dragger-vertical-icon.svg +0 -3
- package/projects/tuki/widgets/user-manage/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/info-circle-bold.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/people-regular.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/settings-light.svg +0 -1
- package/projects/tuki/widgets/user-manage/src/assets/icons/vartical_divider_icon.svg +0 -3
- package/projects/tuki/widgets/user-manage/src/classes/device.ts +0 -232
- package/projects/tuki/widgets/user-manage/src/classes/line-association-interface.ts +0 -44
- package/projects/tuki/widgets/user-manage/src/classes/line-association.ts +0 -161
- package/projects/tuki/widgets/user-manage/src/classes/line-call-info-display.ts +0 -21
- package/projects/tuki/widgets/user-manage/src/classes/line-directory.ts +0 -44
- package/projects/tuki/widgets/user-manage/src/classes/line.ts +0 -145
- package/projects/tuki/widgets/user-manage/src/classes/notification.ts +0 -39
- package/projects/tuki/widgets/user-manage/src/classes/pagination.ts +0 -18
- package/projects/tuki/widgets/user-manage/src/classes/recording-options.ts +0 -6
- package/projects/tuki/widgets/user-manage/src/classes/simplified-user.ts +0 -165
- package/projects/tuki/widgets/user-manage/src/classes/table-data.ts +0 -6
- package/projects/tuki/widgets/user-manage/src/classes/translation-pattern.ts +0 -49
- package/projects/tuki/widgets/user-manage/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/user-manage/src/classes/user-list.ts +0 -42
- package/projects/tuki/widgets/user-manage/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/user-manage/src/common-functions.ts +0 -16
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.html +0 -32
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.scss +0 -305
- package/projects/tuki/widgets/user-manage/src/device-list/device-list.component.ts +0 -26
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.html +0 -13
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.scss +0 -154
- package/projects/tuki/widgets/user-manage/src/device-list/device-row/device-row.component.ts +0 -34
- package/projects/tuki/widgets/user-manage/src/environments/environment.prod.ts +0 -9
- package/projects/tuki/widgets/user-manage/src/environments/environment.ts +0 -10
- package/projects/tuki/widgets/user-manage/src/interseptors/auth.interceptor.ts +0 -35
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +0 -68
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +0 -125
- package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +0 -93
- package/projects/tuki/widgets/user-manage/src/material.module.ts +0 -85
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/user-manage/src/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/user-manage/src/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-manage/src/services/api.service.ts +0 -90
- package/projects/tuki/widgets/user-manage/src/services/dns.service.ts +0 -116
- package/projects/tuki/widgets/user-manage/src/services/line.service.ts +0 -31
- package/projects/tuki/widgets/user-manage/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-manage/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/user-manage/src/services/site-settings.service.ts +0 -35
- package/projects/tuki/widgets/user-manage/src/services/sorting-utils.service.ts +0 -203
- package/projects/tuki/widgets/user-manage/src/services/user.service.ts +0 -288
- package/projects/tuki/widgets/user-manage/src/services/users-search.service.ts +0 -59
- package/projects/tuki/widgets/user-manage/src/services/utils.service.ts +0 -71
- package/projects/tuki/widgets/user-manage/src/styles/_variables.scss +0 -93
- package/projects/tuki/widgets/user-manage/src/styles/form.scss +0 -231
- package/projects/tuki/widgets/user-manage/src/styles/icons.scss +0 -41
- package/projects/tuki/widgets/user-manage/src/styles/styles.scss +0 -128
- package/projects/tuki/widgets/user-manage/src/styles/tables.scss +0 -30
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.html +0 -10
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.scss +0 -444
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.ts +0 -63
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.html +0 -97
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.scss +0 -444
- package/projects/tuki/widgets/user-manage/src/user-calling/user-calling.component.ts +0 -89
- package/projects/tuki/widgets/user-manage/src/user-details/notification.service.ts +0 -68
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.html +0 -37
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.scss +0 -121
- package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.ts +0 -19
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.html +0 -313
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.scss +0 -638
- package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.ts +0 -222
- package/projects/tuki/widgets/user-manage/src/user-manage.module.ts +0 -65
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.html +0 -64
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.scss +0 -17
- package/projects/tuki/widgets/user-manage/src/user-summary/user-summary.component.ts +0 -8
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.scss +0 -11
- package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.html +0 -26
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.scss +0 -41
- package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.ts +0 -41
- package/projects/tuki/widgets/users-list/ng-package.json +0 -7
- package/projects/tuki/widgets/users-list/src/app.constants.ts +0 -54
- package/projects/tuki/widgets/users-list/src/assets/icons/close_icon_modal.svg +0 -3
- package/projects/tuki/widgets/users-list/src/assets/icons/cogs.svg +0 -8
- package/projects/tuki/widgets/users-list/src/assets/icons/copy-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/icon_user.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/info.svg +0 -5
- package/projects/tuki/widgets/users-list/src/assets/icons/move_user_to_another_location.svg +0 -14
- package/projects/tuki/widgets/users-list/src/assets/icons/mt.svg +0 -3
- package/projects/tuki/widgets/users-list/src/assets/icons/settings-regular.svg +0 -1
- package/projects/tuki/widgets/users-list/src/assets/icons/webex.svg +0 -7
- package/projects/tuki/widgets/users-list/src/assets/icons/webex_logo_icon.svg +0 -305
- package/projects/tuki/widgets/users-list/src/assets/icons/white-close-icon.svg +0 -3
- package/projects/tuki/widgets/users-list/src/classes/app-location.ts +0 -36
- package/projects/tuki/widgets/users-list/src/classes/device.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/line.ts +0 -144
- package/projects/tuki/widgets/users-list/src/classes/move-user.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/notification.ts +0 -38
- package/projects/tuki/widgets/users-list/src/classes/pagination.ts +0 -18
- package/projects/tuki/widgets/users-list/src/classes/simlified-user.ts +0 -74
- package/projects/tuki/widgets/users-list/src/classes/table-data.ts +0 -6
- package/projects/tuki/widgets/users-list/src/classes/user-interface.ts +0 -225
- package/projects/tuki/widgets/users-list/src/classes/user-list.ts +0 -47
- package/projects/tuki/widgets/users-list/src/classes/user.ts +0 -8
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.html +0 -39
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/components/table-toolbar/table-toolbar.component.ts +0 -21
- package/projects/tuki/widgets/users-list/src/material.module.ts +0 -97
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.html +0 -37
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.scss +0 -129
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.ts +0 -46
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.html +0 -31
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.scss +0 -20
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.ts +0 -26
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.html +0 -222
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.scss +0 -249
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.ts +0 -206
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.html +0 -12
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/move-user-wizard/move-user-wizard.component.ts +0 -36
- package/projects/tuki/widgets/users-list/src/services/api-webex.service.ts +0 -14
- package/projects/tuki/widgets/users-list/src/services/api.service.ts +0 -90
- package/projects/tuki/widgets/users-list/src/services/dns.service.ts +0 -128
- package/projects/tuki/widgets/users-list/src/services/events-communication.service.ts +0 -11
- package/projects/tuki/widgets/users-list/src/services/move-user.service.ts +0 -59
- package/projects/tuki/widgets/users-list/src/services/notification.service.ts +0 -68
- package/projects/tuki/widgets/users-list/src/services/removeKynFromIBM.service.ts +0 -25
- package/projects/tuki/widgets/users-list/src/services/site-settings.service.ts +0 -26
- package/projects/tuki/widgets/users-list/src/services/user.service.ts +0 -159
- package/projects/tuki/widgets/users-list/src/services/users-search.service.ts +0 -160
- package/projects/tuki/widgets/users-list/src/styles/styles.scss +0 -639
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.html +0 -15
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.scss +0 -103
- package/projects/tuki/widgets/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.ts +0 -35
- package/projects/tuki/widgets/users-list/src/users-list.component.css +0 -4
- package/projects/tuki/widgets/users-list/src/users-list.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/users-list.component.html +0 -261
- package/projects/tuki/widgets/users-list/src/users-list.component.scss +0 -629
- package/projects/tuki/widgets/users-list/src/users-list.component.ts +0 -410
- package/projects/tuki/widgets/users-list/src/users-list.module.ts +0 -65
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css +0 -11
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.html +0 -7
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.scss +0 -17
- package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.ts +0 -13
- package/projects/tuki/widgets/users-list/src/utils/common-functions.ts +0 -32
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.html +0 -33
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.scss +0 -84
- package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.ts +0 -46
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css +0 -45
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css.map +0 -1
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.html +0 -26
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.scss +0 -41
- package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.ts +0 -41
- package/projects/tuki/widgets/users-list/src/utils/utils.service.ts +0 -71
- package/projects/widgets-playground/src/app/app.component.html +0 -130
- package/projects/widgets-playground/src/app/app.component.scss +0 -16
- package/projects/widgets-playground/src/app/app.component.spec.ts +0 -31
- package/projects/widgets-playground/src/app/app.component.ts +0 -31
- package/projects/widgets-playground/src/app/app.module.ts +0 -45
- package/projects/widgets-playground/src/assets/.gitkeep +0 -0
- package/projects/widgets-playground/src/assets/icons/already_upgraded.png +0 -0
- package/projects/widgets-playground/src/assets/icons/applications copy.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/applications.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/arrow-down-bold.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/audio-prompts.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/audioPrompts.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/check2_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/check_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/contactServiceQueues.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/copy-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/csqs.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/expand_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/info-circle-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/issue_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/menu_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/mt.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/phone-books.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/phonebooks.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/ready_to_upgrade.png +0 -0
- package/projects/widgets-playground/src/assets/icons/resource-group.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/resource.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/resourceGroups.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/resources.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/scripts copy.svg +0 -12
- package/projects/widgets-playground/src/assets/icons/scripts.svg +0 -12
- package/projects/widgets-playground/src/assets/icons/search_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/settings-regular.svg +0 -1
- package/projects/widgets-playground/src/assets/icons/site.png +0 -0
- package/projects/widgets-playground/src/assets/icons/skills copy.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/skills.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/teams copy.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/teams.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/triggers copy.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/triggers.svg +0 -4
- package/projects/widgets-playground/src/assets/icons/user.png +0 -0
- package/projects/widgets-playground/src/assets/icons/warning_icon.png +0 -0
- package/projects/widgets-playground/src/assets/icons/webex.svg +0 -7
- package/projects/widgets-playground/src/assets/icons/webex_logo_icon.svg +0 -305
- package/projects/widgets-playground/src/assets/icons/wrapUpCodes.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/wrapup-codes.svg +0 -3
- package/projects/widgets-playground/src/assets/icons/xml copy.svg +0 -6
- package/projects/widgets-playground/src/assets/icons/xml.svg +0 -6
- package/projects/widgets-playground/src/favicon.ico +0 -0
- package/projects/widgets-playground/src/index.html +0 -13
- package/projects/widgets-playground/src/main.ts +0 -7
- package/projects/widgets-playground/src/styles.scss +0 -24
- package/projects/widgets-playground/tsconfig.app.json +0 -14
- package/projects/widgets-playground/tsconfig.spec.json +0 -14
- package/proxy.conf.js +0 -23
- package/tsconfig.json +0 -46
- /package/{projects/tuki/widgets/di2mt → di2mt}/README.md +0 -0
- /package/{projects/tuki/widgets/user-device-manage/public-api.ts → user-device-manage/public-api.d.ts} +0 -0
- /package/{projects/tuki/widgets/user-manage/public-api.ts → user-manage/public-api.d.ts} +0 -0
- /package/{projects/tuki/widgets/users-list/public-api.ts → users-list/public-api.d.ts} +0 -0
|
Binary file
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 0H2.625C1.92904 0.000759671 1.2618 0.277565 0.769684 0.769684C0.277565 1.2618 0.000759671 1.92904 0 2.625V7.875C0.000759671 8.57096 0.277565 9.2382 0.769684 9.73032C1.2618 10.2224 1.92904 10.4992 2.625 10.5H7.875C8.57096 10.4992 9.2382 10.2224 9.73032 9.73032C10.2224 9.2382 10.4992 8.57096 10.5 7.875V2.625C10.4992 1.92904 10.2224 1.2618 9.73032 0.769684C9.2382 0.277565 8.57096 0.000759671 7.875 0ZM8.75 7.875C8.74984 8.10702 8.65761 8.32949 8.49355 8.49355C8.32949 8.65761 8.10702 8.74984 7.875 8.75H2.625C2.39298 8.74984 2.17051 8.65761 2.00645 8.49355C1.84239 8.32949 1.75016 8.10702 1.75 7.875V2.625C1.75016 2.39298 1.84239 2.17051 2.00645 2.00645C2.17051 1.84239 2.39298 1.75016 2.625 1.75H7.875C8.10702 1.75016 8.32949 1.84239 8.49355 2.00645C8.65761 2.17051 8.74984 2.39298 8.75 2.625V7.875Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M20.125 0H14.875C14.179 0.000759671 13.5118 0.277565 13.0197 0.769684C12.5276 1.2618 12.2508 1.92904 12.25 2.625V7.875C12.2508 8.57096 12.5276 9.2382 13.0197 9.73032C13.5118 10.2224 14.179 10.4992 14.875 10.5H20.125C20.821 10.4992 21.4882 10.2224 21.9803 9.73032C22.4724 9.2382 22.7492 8.57096 22.75 7.875V2.625C22.7492 1.92904 22.4724 1.2618 21.9803 0.769684C21.4882 0.277565 20.821 0.000759671 20.125 0ZM21 7.875C20.9998 8.10702 20.9076 8.32949 20.7435 8.49355C20.5795 8.65761 20.357 8.74984 20.125 8.75H14.875C14.643 8.74984 14.4205 8.65761 14.2565 8.49355C14.0924 8.32949 14.0002 8.10702 14 7.875V2.625C14.0002 2.39298 14.0924 2.17051 14.2565 2.00645C14.4205 1.84239 14.643 1.75016 14.875 1.75H20.125C20.357 1.75016 20.5795 1.84239 20.7435 2.00645C20.9076 2.17051 20.9998 2.39298 21 2.625V7.875Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M20.125 12.25H14.875C14.179 12.2508 13.5118 12.5276 13.0197 13.0197C12.5276 13.5118 12.2508 14.179 12.25 14.875V20.125C12.2508 20.821 12.5276 21.4882 13.0197 21.9803C13.5118 22.4724 14.179 22.7492 14.875 22.75H20.125C20.821 22.7492 21.4882 22.4724 21.9803 21.9803C22.4724 21.4882 22.7492 20.821 22.75 20.125V14.875C22.7492 14.179 22.4724 13.5118 21.9803 13.0197C21.4882 12.5276 20.821 12.2508 20.125 12.25ZM21 20.125C20.9998 20.357 20.9076 20.5795 20.7435 20.7435C20.5795 20.9076 20.357 20.9998 20.125 21H14.875C14.643 20.9998 14.4205 20.9076 14.2565 20.7435C14.0924 20.5795 14.0002 20.357 14 20.125V14.875C14.0002 14.643 14.0924 14.4205 14.2565 14.2565C14.4205 14.0924 14.643 14.0002 14.875 14H20.125C20.357 14.0002 20.5795 14.0924 20.7435 14.2565C20.9076 14.4205 20.9998 14.643 21 14.875V20.125Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M7.875 12.25H2.625C1.92904 12.2508 1.2618 12.5276 0.769684 13.0197C0.277565 13.5118 0.000759671 14.179 0 14.875V20.125C0.000759671 20.821 0.277565 21.4882 0.769684 21.9803C1.2618 22.4724 1.92904 22.7492 2.625 22.75H7.875C8.57096 22.7492 9.2382 22.4724 9.73032 21.9803C10.2224 21.4882 10.4992 20.821 10.5 20.125V14.875C10.4992 14.179 10.2224 13.5118 9.73032 13.0197C9.2382 12.5276 8.57096 12.2508 7.875 12.25ZM8.75 20.125C8.74984 20.357 8.65761 20.5795 8.49355 20.7435C8.32949 20.9076 8.10702 20.9998 7.875 21H2.625C2.39298 20.9998 2.17051 20.9076 2.00645 20.7435C1.84239 20.5795 1.75016 20.357 1.75 20.125V14.875C1.75016 14.643 1.84239 14.4205 2.00645 14.2565C2.17051 14.0924 2.39298 14.0002 2.625 14H7.875C8.10702 14.0002 8.32949 14.0924 8.49355 14.2565C8.65761 14.4205 8.74984 14.643 8.75 14.875V20.125Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 4.375C7.875 1.95875 9.83375 0 12.25 0C14.6662 0 16.625 1.95875 16.625 4.375C16.625 6.49159 15.122 8.25712 13.125 8.66248V13.5721L17.2785 16.8025C18.0436 16.1464 19.038 15.75 20.125 15.75C22.5412 15.75 24.5 17.7088 24.5 20.125C24.5 22.5412 22.5412 24.5 20.125 24.5C17.7088 24.5 15.75 22.5412 15.75 20.125C15.75 19.4276 15.9132 18.7684 16.2034 18.1834L12.25 15.1085L8.29662 18.1833C8.58684 18.7684 8.75 19.4276 8.75 20.125C8.75 22.5412 6.79125 24.5 4.375 24.5C1.95875 24.5 0 22.5412 0 20.125C0 17.7088 1.95875 15.75 4.375 15.75C5.46198 15.75 6.45637 16.1464 7.2215 16.8025L11.375 13.572V8.66248C9.37804 8.25712 7.875 6.49159 7.875 4.375ZM12.25 1.75C10.8003 1.75 9.625 2.92525 9.625 4.375C9.625 5.82475 10.8003 7 12.25 7C13.6997 7 14.875 5.82475 14.875 4.375C14.875 2.92525 13.6997 1.75 12.25 1.75ZM4.375 17.5C2.92525 17.5 1.75 18.6753 1.75 20.125C1.75 21.5747 2.92525 22.75 4.375 22.75C5.82475 22.75 7 21.5747 7 20.125C7 18.6753 5.82475 17.5 4.375 17.5ZM20.125 17.5C18.6753 17.5 17.5 18.6753 17.5 20.125C17.5 21.5747 18.6753 22.75 20.125 22.75C21.5747 22.75 22.75 21.5747 22.75 20.125C22.75 18.6753 21.5747 17.5 20.125 17.5Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 0H2.625C1.92904 0.000759671 1.2618 0.277565 0.769684 0.769684C0.277565 1.2618 0.000759671 1.92904 0 2.625V7.875C0.000759671 8.57096 0.277565 9.2382 0.769684 9.73032C1.2618 10.2224 1.92904 10.4992 2.625 10.5H7.875C8.57096 10.4992 9.2382 10.2224 9.73032 9.73032C10.2224 9.2382 10.4992 8.57096 10.5 7.875V2.625C10.4992 1.92904 10.2224 1.2618 9.73032 0.769684C9.2382 0.277565 8.57096 0.000759671 7.875 0ZM8.75 7.875C8.74984 8.10702 8.65761 8.32949 8.49355 8.49355C8.32949 8.65761 8.10702 8.74984 7.875 8.75H2.625C2.39298 8.74984 2.17051 8.65761 2.00645 8.49355C1.84239 8.32949 1.75016 8.10702 1.75 7.875V2.625C1.75016 2.39298 1.84239 2.17051 2.00645 2.00645C2.17051 1.84239 2.39298 1.75016 2.625 1.75H7.875C8.10702 1.75016 8.32949 1.84239 8.49355 2.00645C8.65761 2.17051 8.74984 2.39298 8.75 2.625V7.875Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M20.125 0H14.875C14.179 0.000759671 13.5118 0.277565 13.0197 0.769684C12.5276 1.2618 12.2508 1.92904 12.25 2.625V7.875C12.2508 8.57096 12.5276 9.2382 13.0197 9.73032C13.5118 10.2224 14.179 10.4992 14.875 10.5H20.125C20.821 10.4992 21.4882 10.2224 21.9803 9.73032C22.4724 9.2382 22.7492 8.57096 22.75 7.875V2.625C22.7492 1.92904 22.4724 1.2618 21.9803 0.769684C21.4882 0.277565 20.821 0.000759671 20.125 0ZM21 7.875C20.9998 8.10702 20.9076 8.32949 20.7435 8.49355C20.5795 8.65761 20.357 8.74984 20.125 8.75H14.875C14.643 8.74984 14.4205 8.65761 14.2565 8.49355C14.0924 8.32949 14.0002 8.10702 14 7.875V2.625C14.0002 2.39298 14.0924 2.17051 14.2565 2.00645C14.4205 1.84239 14.643 1.75016 14.875 1.75H20.125C20.357 1.75016 20.5795 1.84239 20.7435 2.00645C20.9076 2.17051 20.9998 2.39298 21 2.625V7.875Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M20.125 12.25H14.875C14.179 12.2508 13.5118 12.5276 13.0197 13.0197C12.5276 13.5118 12.2508 14.179 12.25 14.875V20.125C12.2508 20.821 12.5276 21.4882 13.0197 21.9803C13.5118 22.4724 14.179 22.7492 14.875 22.75H20.125C20.821 22.7492 21.4882 22.4724 21.9803 21.9803C22.4724 21.4882 22.7492 20.821 22.75 20.125V14.875C22.7492 14.179 22.4724 13.5118 21.9803 13.0197C21.4882 12.5276 20.821 12.2508 20.125 12.25ZM21 20.125C20.9998 20.357 20.9076 20.5795 20.7435 20.7435C20.5795 20.9076 20.357 20.9998 20.125 21H14.875C14.643 20.9998 14.4205 20.9076 14.2565 20.7435C14.0924 20.5795 14.0002 20.357 14 20.125V14.875C14.0002 14.643 14.0924 14.4205 14.2565 14.2565C14.4205 14.0924 14.643 14.0002 14.875 14H20.125C20.357 14.0002 20.5795 14.0924 20.7435 14.2565C20.9076 14.4205 20.9998 14.643 21 14.875V20.125Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M7.875 12.25H2.625C1.92904 12.2508 1.2618 12.5276 0.769684 13.0197C0.277565 13.5118 0.000759671 14.179 0 14.875V20.125C0.000759671 20.821 0.277565 21.4882 0.769684 21.9803C1.2618 22.4724 1.92904 22.7492 2.625 22.75H7.875C8.57096 22.7492 9.2382 22.4724 9.73032 21.9803C10.2224 21.4882 10.4992 20.821 10.5 20.125V14.875C10.4992 14.179 10.2224 13.5118 9.73032 13.0197C9.2382 12.5276 8.57096 12.2508 7.875 12.25ZM8.75 20.125C8.74984 20.357 8.65761 20.5795 8.49355 20.7435C8.32949 20.9076 8.10702 20.9998 7.875 21H2.625C2.39298 20.9998 2.17051 20.9076 2.00645 20.7435C1.84239 20.5795 1.75016 20.357 1.75 20.125V14.875C1.75016 14.643 1.84239 14.4205 2.00645 14.2565C2.17051 14.0924 2.39298 14.0002 2.625 14H7.875C8.10702 14.0002 8.32949 14.0924 8.49355 14.2565C8.65761 14.4205 8.74984 14.643 8.75 14.875V20.125Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M7.875 4.375C7.875 1.95875 9.83375 0 12.25 0C14.6662 0 16.625 1.95875 16.625 4.375C16.625 6.49159 15.122 8.25712 13.125 8.66248V13.5721L17.2785 16.8025C18.0436 16.1464 19.038 15.75 20.125 15.75C22.5412 15.75 24.5 17.7088 24.5 20.125C24.5 22.5412 22.5412 24.5 20.125 24.5C17.7088 24.5 15.75 22.5412 15.75 20.125C15.75 19.4276 15.9132 18.7684 16.2034 18.1834L12.25 15.1085L8.29662 18.1833C8.58684 18.7684 8.75 19.4276 8.75 20.125C8.75 22.5412 6.79125 24.5 4.375 24.5C1.95875 24.5 0 22.5412 0 20.125C0 17.7088 1.95875 15.75 4.375 15.75C5.46198 15.75 6.45637 16.1464 7.2215 16.8025L11.375 13.572V8.66248C9.37804 8.25712 7.875 6.49159 7.875 4.375ZM12.25 1.75C10.8003 1.75 9.625 2.92525 9.625 4.375C9.625 5.82475 10.8003 7 12.25 7C13.6997 7 14.875 5.82475 14.875 4.375C14.875 2.92525 13.6997 1.75 12.25 1.75ZM4.375 17.5C2.92525 17.5 1.75 18.6753 1.75 20.125C1.75 21.5747 2.92525 22.75 4.375 22.75C5.82475 22.75 7 21.5747 7 20.125C7 18.6753 5.82475 17.5 4.375 17.5ZM20.125 17.5C18.6753 17.5 17.5 18.6753 17.5 20.125C17.5 21.5747 18.6753 22.75 20.125 22.75C21.5747 22.75 22.75 21.5747 22.75 20.125C22.75 18.6753 21.5747 17.5 20.125 17.5Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2923_17554)">
|
|
3
|
-
<path d="M8.16667 9.33325L3.5 13.9999L8.16667 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M19.8333 9.33325L24.4999 13.9999L19.8333 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M16.3334 4.66675L11.6667 23.3334" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2923_17554">
|
|
9
|
-
<rect width="28" height="28" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2923_17554)">
|
|
3
|
-
<path d="M8.16667 9.33325L3.5 13.9999L8.16667 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M19.8333 9.33325L24.4999 13.9999L19.8333 18.6666" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M16.3334 4.66675L11.6667 23.3334" stroke="#0F0F0F" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2923_17554">
|
|
9
|
-
<rect width="28" height="28" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 10.25A5.75 5.75 0 1 0 21.75 16 5.756 5.756 0 0 0 16 10.25m0 10a4.25 4.25 0 1 1 0-8.5 4.25 4.25 0 0 1 0 8.5M28 13.25H25.67a.25.25 0 0 1-.231-.155l-.667-1.633a.25.25 0 0 1 .057-.273l1.66-1.631a1.75 1.75 0 0 0 .024-2.475l-1.4-1.427a1.753 1.753 0 0 0-2.476-.024l-1.665 1.635a.25.25 0 0 1-.273.053l-1.796-.754a.25.25 0 0 1-.154-.23V4A1.75 1.75 0 0 0 17 2.25h-2A1.75 1.75 0 0 0 13.25 4v2.331a.25.25 0 0 1-.155.232l-1.714.71a.25.25 0 0 1-.273-.054L9.459 5.571a1.75 1.75 0 0 0-2.475 0L5.57 6.985a1.75 1.75 0 0 0 0 2.474l1.65 1.649a.25.25 0 0 1 .054.272l-.712 1.716a.25.25 0 0 1-.23.154H4A1.75 1.75 0 0 0 2.25 15v2A1.75 1.75 0 0 0 4 18.75h2.332a.25.25 0 0 1 .23.155l.71 1.713a.25.25 0 0 1-.053.274L5.57 22.54a1.75 1.75 0 0 0 0 2.476l1.415 1.414a1.75 1.75 0 0 0 2.476 0l1.648-1.65a.25.25 0 0 1 .272-.054l1.716.712a.25.25 0 0 1 .153.23V28A1.75 1.75 0 0 0 15 29.75h2A1.75 1.75 0 0 0 18.75 28v-2.332a.25.25 0 0 1 .156-.231l1.715-.71a.25.25 0 0 1 .272.054l1.649 1.649a1.753 1.753 0 0 0 2.474 0l1.416-1.415a1.753 1.753 0 0 0-.002-2.475l-1.648-1.648a.25.25 0 0 1-.055-.273l.712-1.715a.25.25 0 0 1 .23-.154H28A1.75 1.75 0 0 0 29.75 17v-2A1.75 1.75 0 0 0 28 13.25m.25 3.75a.25.25 0 0 1-.25.25h-2.331a1.74 1.74 0 0 0-1.617 1.08l-.712 1.716a1.75 1.75 0 0 0 .38 1.907L25.37 23.6a.25.25 0 0 1 0 .355l-1.414 1.414a.25.25 0 0 1-.273.054.3.3 0 0 1-.08-.054l-1.65-1.65a1.74 1.74 0 0 0-1.907-.379l-1.713.71a1.74 1.74 0 0 0-1.082 1.617V28a.25.25 0 0 1-.25.25h-2a.25.25 0 0 1-.25-.25v-2.332a1.74 1.74 0 0 0-1.08-1.616l-1.716-.712a1.74 1.74 0 0 0-1.907.38L8.4 25.37a.25.25 0 0 1-.355 0L6.63 23.955a.25.25 0 0 1 0-.354l1.65-1.648a1.745 1.745 0 0 0 .379-1.908l-.71-1.714a1.74 1.74 0 0 0-1.617-1.08H4a.25.25 0 0 1-.25-.25v-2a.25.25 0 0 1 .25-.25h2.332a1.74 1.74 0 0 0 1.616-1.082l.712-1.715a1.75 1.75 0 0 0-.38-1.907L6.63 8.4a.25.25 0 0 1 0-.354l1.414-1.414a.25.25 0 0 1 .355 0l1.648 1.649a1.74 1.74 0 0 0 1.908.379l1.713-.71A1.74 1.74 0 0 0 14.75 6.33v-2.33a.25.25 0 0 1 .25-.25h2a.25.25 0 0 1 .25.25v2.334a1.75 1.75 0 0 0 1.073 1.614l1.796.754a1.75 1.75 0 0 0 1.903-.364h.001l1.666-1.636a.255.255 0 0 1 .355.003l1.4 1.428a.25.25 0 0 1-.004.354l-1.66 1.63a1.745 1.745 0 0 0-.396 1.91l.668 1.636a1.74 1.74 0 0 0 1.62 1.086H28a.25.25 0 0 1 .25.25z"/></svg>
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="14" height="25" viewBox="0 0 14 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.1703 2.23457C11.5117 1.51633 10.7083 0.945892 9.81303 0.560874C8.9178 0.175857 7.95112 -0.014991 6.97674 0.000918917C6.01148 -0.00931607 5.05492 0.184356 4.16966 0.569266C3.2844 0.954176 2.49037 1.52165 1.83953 2.23457C1.17158 2.98144 0.666282 3.85909 0.355743 4.81174C0.0452052 5.76439 -0.0637838 6.77122 0.0357002 7.76826C0.1003 8.48937 0.276127 9.19615 0.556937 9.86347L2.62994 14.1795V20.0849C2.62088 20.6639 2.72754 21.2389 2.94367 21.7762C3.15979 22.3135 3.48102 22.8022 3.88852 23.2137C4.29602 23.6252 4.78158 23.9511 5.31673 24.1725C5.85188 24.3938 6.42583 24.506 7.00493 24.5026C7.11771 24.5026 7.22881 24.4983 7.33904 24.4906C8.44822 24.412 9.48518 23.9117 10.2369 23.0923C10.9886 22.2729 11.3979 21.1967 11.3808 20.0849L11.3774 14.2154L13.4709 9.82334C13.7422 9.16731 13.9119 8.47375 13.9742 7.76657C14.0734 6.7698 13.9643 5.76328 13.6538 4.81093C13.3433 3.85858 12.8381 2.98122 12.1703 2.23457ZM9.62966 17.5009L9.6304 19.2527H4.37981L4.37955 17.5009H9.62966ZM7.00492 22.7527C6.46101 22.7617 5.92841 22.5969 5.48475 22.2821C5.04109 21.9673 4.70957 21.5191 4.53849 21.0027H9.47224C9.30105 21.5192 8.96937 21.9675 8.52554 22.2822C8.08172 22.597 7.54896 22.7619 7.00492 22.7527ZM12.231 7.60594C12.1872 8.12218 12.0668 8.62902 11.8738 9.10984L9.79911 13.4601C9.69221 13.6855 9.63398 13.931 9.62821 14.1804L9.6289 15.751H7.87992V10.501C7.87992 10.2689 7.78773 10.0463 7.62363 9.88224C7.45954 9.71814 7.23698 9.62595 7.00492 9.62595C6.77285 9.62595 6.55029 9.71814 6.3862 9.88224C6.22211 10.0463 6.12992 10.2689 6.12992 10.501V15.751H4.37928L4.37907 14.142C4.36962 13.9061 4.31204 13.6746 4.20988 13.4618L2.15397 9.15001C1.9514 8.6579 1.82491 8.13782 1.77885 7.60764C1.69664 6.85271 1.77471 6.08892 2.00795 5.36623C2.24119 4.64354 2.62434 3.97822 3.13236 3.41377C3.62766 2.87633 4.23142 2.45019 4.90372 2.16353C5.57602 1.87688 6.30152 1.73624 7.03223 1.75093C7.75408 1.74203 8.46968 1.88553 9.13228 2.17207C9.79488 2.4586 10.3896 2.88171 10.8775 3.41376C11.3851 3.9781 11.7681 4.64314 12.0013 5.36549C12.2345 6.08784 12.3128 6.85129 12.231 7.60594Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="14" height="25" viewBox="0 0 14 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.1703 2.23457C11.5117 1.51633 10.7083 0.945892 9.81303 0.560874C8.9178 0.175857 7.95112 -0.014991 6.97674 0.000918917C6.01148 -0.00931607 5.05492 0.184356 4.16966 0.569266C3.2844 0.954176 2.49037 1.52165 1.83953 2.23457C1.17158 2.98144 0.666282 3.85909 0.355743 4.81174C0.0452052 5.76439 -0.0637838 6.77122 0.0357002 7.76826C0.1003 8.48937 0.276127 9.19615 0.556937 9.86347L2.62994 14.1795V20.0849C2.62088 20.6639 2.72754 21.2389 2.94367 21.7762C3.15979 22.3135 3.48102 22.8022 3.88852 23.2137C4.29602 23.6252 4.78158 23.9511 5.31673 24.1725C5.85188 24.3938 6.42583 24.506 7.00493 24.5026C7.11771 24.5026 7.22881 24.4983 7.33904 24.4906C8.44822 24.412 9.48518 23.9117 10.2369 23.0923C10.9886 22.2729 11.3979 21.1967 11.3808 20.0849L11.3774 14.2154L13.4709 9.82334C13.7422 9.16731 13.9119 8.47375 13.9742 7.76657C14.0734 6.7698 13.9643 5.76328 13.6538 4.81093C13.3433 3.85858 12.8381 2.98122 12.1703 2.23457ZM9.62966 17.5009L9.6304 19.2527H4.37981L4.37955 17.5009H9.62966ZM7.00492 22.7527C6.46101 22.7617 5.92841 22.5969 5.48475 22.2821C5.04109 21.9673 4.70957 21.5191 4.53849 21.0027H9.47224C9.30105 21.5192 8.96937 21.9675 8.52554 22.2822C8.08172 22.597 7.54896 22.7619 7.00492 22.7527ZM12.231 7.60594C12.1872 8.12218 12.0668 8.62902 11.8738 9.10984L9.79911 13.4601C9.69221 13.6855 9.63398 13.931 9.62821 14.1804L9.6289 15.751H7.87992V10.501C7.87992 10.2689 7.78773 10.0463 7.62363 9.88224C7.45954 9.71814 7.23698 9.62595 7.00492 9.62595C6.77285 9.62595 6.55029 9.71814 6.3862 9.88224C6.22211 10.0463 6.12992 10.2689 6.12992 10.501V15.751H4.37928L4.37907 14.142C4.36962 13.9061 4.31204 13.6746 4.20988 13.4618L2.15397 9.15001C1.9514 8.6579 1.82491 8.13782 1.77885 7.60764C1.69664 6.85271 1.77471 6.08892 2.00795 5.36623C2.24119 4.64354 2.62434 3.97822 3.13236 3.41377C3.62766 2.87633 4.23142 2.45019 4.90372 2.16353C5.57602 1.87688 6.30152 1.73624 7.03223 1.75093C7.75408 1.74203 8.46968 1.88553 9.13228 2.17207C9.79488 2.4586 10.3896 2.88171 10.8775 3.41376C11.3851 3.9781 11.7681 4.64314 12.0013 5.36549C12.2345 6.08784 12.3128 6.85129 12.231 7.60594Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="18" viewBox="0 0 25 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M24.5248 11.2308C24.5005 10.4447 24.2545 9.6814 23.8151 9.02907C23.3757 8.37674 22.7608 7.86193 22.0414 7.54404C22.3399 7.11791 22.5158 6.61805 22.5499 6.09889C22.584 5.57972 22.475 5.06114 22.2348 4.59962C21.9947 4.1381 21.6324 3.75131 21.1877 3.48138C20.7429 3.21145 20.2326 3.06871 19.7123 3.06871C19.192 3.06871 18.6817 3.21145 18.2369 3.48138C17.7921 3.75131 17.4299 4.1381 17.1897 4.59962C16.9495 5.06114 16.8405 5.57972 16.8746 6.09889C16.9087 6.61805 17.0846 7.11791 17.3831 7.54404C17.0628 7.70184 16.7608 7.89441 16.4826 8.11826C16.0984 7.89782 15.697 7.70884 15.2823 7.55317C15.9184 6.95141 16.3592 6.17263 16.5479 5.31756C16.7365 4.4625 16.6643 3.5705 16.3404 2.75696C16.0166 1.94341 15.4561 1.24576 14.7314 0.754257C14.0067 0.262749 13.1513 0 12.2756 0C11.4 0 10.5445 0.262749 9.81986 0.754257C9.09519 1.24576 8.53468 1.94341 8.21084 2.75696C7.887 3.5705 7.81473 4.4625 8.00337 5.31756C8.19202 6.17263 8.63291 6.95141 9.269 7.55317C8.84809 7.71097 8.44087 7.90311 8.05145 8.12766C7.77067 7.90083 7.46552 7.70595 7.14163 7.54661C7.44014 7.12048 7.61602 6.62062 7.65013 6.10145C7.68424 5.58228 7.57526 5.06371 7.33507 4.60218C7.09487 4.14066 6.73267 3.75388 6.28788 3.48395C5.8431 3.21401 5.33278 3.07128 4.8125 3.07128C4.29221 3.07128 3.7819 3.21401 3.33711 3.48395C2.89233 3.75388 2.53012 4.14066 2.28993 4.60218C2.04973 5.06371 1.94076 5.58228 1.97486 6.10145C2.00897 6.62062 2.18485 7.12048 2.48336 7.54661C1.76395 7.8645 1.14908 8.3793 0.709675 9.03163C0.270274 9.68395 0.0242538 10.4472 0 11.2334C0 11.8247 0.320005 12.6305 1.84442 13.1064C2.68744 13.345 3.55834 13.471 4.43442 13.481C4.41589 13.6783 4.40066 13.8765 4.40066 14.078C4.40066 14.9196 4.88516 16.0809 7.19229 16.832C8.84276 17.314 10.5565 17.5445 12.2757 17.5156C15.9085 17.5156 20.1507 16.6158 20.1507 14.078C20.1507 13.8768 20.1354 13.679 20.117 13.482C21.5325 13.438 24.5248 13.1217 24.5248 11.2308ZM19.7123 4.82724C19.9286 4.82724 20.1401 4.89139 20.3199 5.01157C20.4998 5.13175 20.64 5.30257 20.7228 5.50243C20.8056 5.70229 20.8272 5.9222 20.785 6.13437C20.7428 6.34654 20.6386 6.54142 20.4857 6.69439C20.3327 6.84735 20.1378 6.95152 19.9257 6.99372C19.7135 7.03593 19.4936 7.01427 19.2937 6.93148C19.0939 6.8487 18.923 6.70851 18.8029 6.52864C18.6827 6.34878 18.6185 6.13731 18.6185 5.92099C18.6188 5.63099 18.7341 5.35295 18.9392 5.14789C19.1442 4.94283 19.4223 4.82751 19.7123 4.82724ZM9.65065 4.39061C9.65065 3.87144 9.80461 3.36392 10.093 2.93224C10.3815 2.50056 10.7915 2.16411 11.2711 1.96543C11.7508 1.76675 12.2786 1.71477 12.7878 1.81605C13.297 1.91734 13.7647 2.16735 14.1318 2.53446C14.4989 2.90157 14.7489 3.3693 14.8502 3.8785C14.9515 4.3877 14.8995 4.9155 14.7008 5.39516C14.5022 5.87481 14.1657 6.28478 13.734 6.57322C13.3023 6.86166 12.7948 7.01561 12.2757 7.01561C11.5797 7.01486 10.9124 6.73805 10.4203 6.24593C9.92819 5.7538 9.65141 5.08658 9.65065 4.39061ZM4.81253 4.82986C5.02885 4.82986 5.24032 4.89401 5.42018 5.01419C5.60005 5.13438 5.74024 5.3052 5.82302 5.50505C5.9058 5.70491 5.92746 5.92483 5.88526 6.13699C5.84306 6.34916 5.73889 6.54405 5.58592 6.69701C5.43296 6.84998 5.23807 6.95414 5.02591 6.99635C4.81374 7.03855 4.59382 7.01689 4.39397 6.93411C4.19411 6.85132 4.02329 6.71114 3.90311 6.53127C3.78292 6.3514 3.71878 6.13994 3.71878 5.92361C3.71903 5.63361 3.83434 5.35555 4.03939 5.15048C4.24445 4.94541 4.52252 4.83014 4.81253 4.82986ZM4.85278 11.742L4.8125 11.7426C3.7573 11.8323 2.69788 11.6279 1.75175 11.1522C1.80473 9.83025 3.15739 8.76727 4.81254 8.76727C5.42842 8.76434 6.03449 8.92143 6.57141 9.22314C5.81995 9.9259 5.23312 10.786 4.85278 11.742ZM12.2756 15.7656C8.48084 15.7656 6.15064 14.783 6.15064 14.078C6.15064 11.1488 8.89826 8.76565 12.2756 8.76565C15.653 8.76565 18.4006 11.1488 18.4006 14.078C18.4006 14.7829 16.0704 15.7656 12.2756 15.7656ZM19.7123 11.7393L19.6973 11.7389C19.3148 10.7788 18.724 9.91545 17.9677 9.21116C18.5013 8.91543 19.1021 8.76176 19.7123 8.7648C21.3674 8.7648 22.7196 9.82694 22.773 11.1497C21.8267 11.6249 20.7674 11.829 19.7123 11.7393Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="18" viewBox="0 0 25 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M24.5248 11.2308C24.5005 10.4447 24.2545 9.6814 23.8151 9.02907C23.3757 8.37674 22.7608 7.86193 22.0414 7.54404C22.3399 7.11791 22.5158 6.61805 22.5499 6.09889C22.584 5.57972 22.475 5.06114 22.2348 4.59962C21.9947 4.1381 21.6324 3.75131 21.1877 3.48138C20.7429 3.21145 20.2326 3.06871 19.7123 3.06871C19.192 3.06871 18.6817 3.21145 18.2369 3.48138C17.7921 3.75131 17.4299 4.1381 17.1897 4.59962C16.9495 5.06114 16.8405 5.57972 16.8746 6.09889C16.9087 6.61805 17.0846 7.11791 17.3831 7.54404C17.0628 7.70184 16.7608 7.89441 16.4826 8.11826C16.0984 7.89782 15.697 7.70884 15.2823 7.55317C15.9184 6.95141 16.3592 6.17263 16.5479 5.31756C16.7365 4.4625 16.6643 3.5705 16.3404 2.75696C16.0166 1.94341 15.4561 1.24576 14.7314 0.754257C14.0067 0.262749 13.1513 0 12.2756 0C11.4 0 10.5445 0.262749 9.81986 0.754257C9.09519 1.24576 8.53468 1.94341 8.21084 2.75696C7.887 3.5705 7.81473 4.4625 8.00337 5.31756C8.19202 6.17263 8.63291 6.95141 9.269 7.55317C8.84809 7.71097 8.44087 7.90311 8.05145 8.12766C7.77067 7.90083 7.46552 7.70595 7.14163 7.54661C7.44014 7.12048 7.61602 6.62062 7.65013 6.10145C7.68424 5.58228 7.57526 5.06371 7.33507 4.60218C7.09487 4.14066 6.73267 3.75388 6.28788 3.48395C5.8431 3.21401 5.33278 3.07128 4.8125 3.07128C4.29221 3.07128 3.7819 3.21401 3.33711 3.48395C2.89233 3.75388 2.53012 4.14066 2.28993 4.60218C2.04973 5.06371 1.94076 5.58228 1.97486 6.10145C2.00897 6.62062 2.18485 7.12048 2.48336 7.54661C1.76395 7.8645 1.14908 8.3793 0.709675 9.03163C0.270274 9.68395 0.0242538 10.4472 0 11.2334C0 11.8247 0.320005 12.6305 1.84442 13.1064C2.68744 13.345 3.55834 13.471 4.43442 13.481C4.41589 13.6783 4.40066 13.8765 4.40066 14.078C4.40066 14.9196 4.88516 16.0809 7.19229 16.832C8.84276 17.314 10.5565 17.5445 12.2757 17.5156C15.9085 17.5156 20.1507 16.6158 20.1507 14.078C20.1507 13.8768 20.1354 13.679 20.117 13.482C21.5325 13.438 24.5248 13.1217 24.5248 11.2308ZM19.7123 4.82724C19.9286 4.82724 20.1401 4.89139 20.3199 5.01157C20.4998 5.13175 20.64 5.30257 20.7228 5.50243C20.8056 5.70229 20.8272 5.9222 20.785 6.13437C20.7428 6.34654 20.6386 6.54142 20.4857 6.69439C20.3327 6.84735 20.1378 6.95152 19.9257 6.99372C19.7135 7.03593 19.4936 7.01427 19.2937 6.93148C19.0939 6.8487 18.923 6.70851 18.8029 6.52864C18.6827 6.34878 18.6185 6.13731 18.6185 5.92099C18.6188 5.63099 18.7341 5.35295 18.9392 5.14789C19.1442 4.94283 19.4223 4.82751 19.7123 4.82724ZM9.65065 4.39061C9.65065 3.87144 9.80461 3.36392 10.093 2.93224C10.3815 2.50056 10.7915 2.16411 11.2711 1.96543C11.7508 1.76675 12.2786 1.71477 12.7878 1.81605C13.297 1.91734 13.7647 2.16735 14.1318 2.53446C14.4989 2.90157 14.7489 3.3693 14.8502 3.8785C14.9515 4.3877 14.8995 4.9155 14.7008 5.39516C14.5022 5.87481 14.1657 6.28478 13.734 6.57322C13.3023 6.86166 12.7948 7.01561 12.2757 7.01561C11.5797 7.01486 10.9124 6.73805 10.4203 6.24593C9.92819 5.7538 9.65141 5.08658 9.65065 4.39061ZM4.81253 4.82986C5.02885 4.82986 5.24032 4.89401 5.42018 5.01419C5.60005 5.13438 5.74024 5.3052 5.82302 5.50505C5.9058 5.70491 5.92746 5.92483 5.88526 6.13699C5.84306 6.34916 5.73889 6.54405 5.58592 6.69701C5.43296 6.84998 5.23807 6.95414 5.02591 6.99635C4.81374 7.03855 4.59382 7.01689 4.39397 6.93411C4.19411 6.85132 4.02329 6.71114 3.90311 6.53127C3.78292 6.3514 3.71878 6.13994 3.71878 5.92361C3.71903 5.63361 3.83434 5.35555 4.03939 5.15048C4.24445 4.94541 4.52252 4.83014 4.81253 4.82986ZM4.85278 11.742L4.8125 11.7426C3.7573 11.8323 2.69788 11.6279 1.75175 11.1522C1.80473 9.83025 3.15739 8.76727 4.81254 8.76727C5.42842 8.76434 6.03449 8.92143 6.57141 9.22314C5.81995 9.9259 5.23312 10.786 4.85278 11.742ZM12.2756 15.7656C8.48084 15.7656 6.15064 14.783 6.15064 14.078C6.15064 11.1488 8.89826 8.76565 12.2756 8.76565C15.653 8.76565 18.4006 11.1488 18.4006 14.078C18.4006 14.7829 16.0704 15.7656 12.2756 15.7656ZM19.7123 11.7393L19.6973 11.7389C19.3148 10.7788 18.724 9.91545 17.9677 9.21116C18.5013 8.91543 19.1021 8.76176 19.7123 8.7648C21.3674 8.7648 22.7196 9.82694 22.773 11.1497C21.8267 11.6249 20.7674 11.829 19.7123 11.7393Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M22.5451 4.48254e-08H15.5451C15.313 4.48254e-08 15.0905 0.0921873 14.9264 0.256282C14.7623 0.420376 14.6701 0.642936 14.6701 0.875C14.6701 1.10706 14.7623 1.32962 14.9264 1.49372C15.0905 1.65781 15.313 1.75 15.5451 1.75H20.4306L13.1764 9.00638C13.0952 9.08762 13.0308 9.18407 12.9868 9.29022C12.9428 9.39637 12.9202 9.51014 12.9202 9.62503C12.9202 9.73993 12.9428 9.85369 12.9868 9.95984C13.0308 10.066 13.0952 10.1624 13.1765 10.2437C13.2577 10.3249 13.3542 10.3894 13.4603 10.4333C13.5665 10.4773 13.6802 10.4999 13.7951 10.4999C13.91 10.4999 14.0238 10.4773 14.1299 10.4333C14.2361 10.3893 14.3325 10.3249 14.4138 10.2437L21.6701 2.98517V7.875C21.6701 8.10706 21.7623 8.32962 21.9264 8.49372C22.0905 8.65781 22.3131 8.75 22.5451 8.75C22.7772 8.75 22.9998 8.65781 23.1639 8.49372C23.328 8.32962 23.4201 8.10706 23.4201 7.875V0.875C23.4202 0.760081 23.3976 0.646281 23.3536 0.540104C23.3096 0.433928 23.2452 0.337454 23.1639 0.256196C23.0827 0.174938 22.9862 0.110489 22.88 0.0665294C22.7738 0.0225702 22.66 -3.67429e-05 22.5451 4.48254e-08Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M5.13907 18.237C11.2604 24.3583 16.7449 23.9553 18.3207 22.3795L19.2282 21.472C19.7572 20.9418 20.0543 20.2234 20.0543 19.4744C20.0543 18.7254 19.7572 18.0071 19.2282 17.4769L17.0198 15.2685C16.4912 14.7438 15.7761 14.4503 15.0313 14.4522C14.2866 14.4542 13.573 14.7514 13.0471 15.2787L12.0344 16.2914C10.8187 16.039 9.70861 15.4228 8.85136 14.5247C7.95363 13.6679 7.33661 12.5592 7.08161 11.3447L8.10335 10.3242C8.62052 9.77261 8.90202 9.04099 8.88792 8.28502C8.87382 7.52905 8.56524 6.80842 8.02787 6.27652L5.89921 4.14787C5.36902 3.61885 4.65064 3.32175 3.90167 3.32175C3.1527 3.32175 2.43431 3.61885 1.90412 4.14787L0.996566 5.05542C-0.579266 6.63119 -0.982263 12.1156 5.13907 18.237ZM3.14153 5.38527C3.34323 5.18389 3.61661 5.07078 3.90163 5.07078C4.18666 5.07078 4.46004 5.18389 4.66174 5.38527L6.7904 7.51393C7.00165 7.71659 7.12726 7.99246 7.14141 8.28486C7.15557 8.57726 7.05719 8.86398 6.8665 9.08609L5.65685 10.2945C4.71125 11.2401 5.94264 14.0908 7.61391 15.7621C9.45254 17.6007 12.2138 18.5868 13.0851 17.7155L14.2845 16.5161C14.4819 16.3164 14.7505 16.2032 15.0313 16.2013C15.3121 16.1994 15.5822 16.3089 15.7824 16.5059L17.9908 18.7143C18.1922 18.916 18.3053 19.1894 18.3053 19.4744C18.3053 19.7594 18.1922 20.0328 17.9908 20.2345L17.0832 21.1421C16.1491 22.0762 11.5927 22.2158 6.37648 16.9996C1.16027 11.7833 1.29985 7.22695 2.23397 6.29283L3.14153 5.38527Z" fill="#0F0F0F"/>
|
|
4
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M22.5451 4.48254e-08H15.5451C15.313 4.48254e-08 15.0905 0.0921873 14.9264 0.256282C14.7623 0.420376 14.6701 0.642936 14.6701 0.875C14.6701 1.10706 14.7623 1.32962 14.9264 1.49372C15.0905 1.65781 15.313 1.75 15.5451 1.75H20.4306L13.1764 9.00638C13.0952 9.08762 13.0308 9.18407 12.9868 9.29022C12.9428 9.39637 12.9202 9.51014 12.9202 9.62503C12.9202 9.73993 12.9428 9.85369 12.9868 9.95984C13.0308 10.066 13.0952 10.1624 13.1765 10.2437C13.2577 10.3249 13.3542 10.3894 13.4603 10.4333C13.5665 10.4773 13.6802 10.4999 13.7951 10.4999C13.91 10.4999 14.0238 10.4773 14.1299 10.4333C14.2361 10.3893 14.3325 10.3249 14.4138 10.2437L21.6701 2.98517V7.875C21.6701 8.10706 21.7623 8.32962 21.9264 8.49372C22.0905 8.65781 22.3131 8.75 22.5451 8.75C22.7772 8.75 22.9998 8.65781 23.1639 8.49372C23.328 8.32962 23.4201 8.10706 23.4201 7.875V0.875C23.4202 0.760081 23.3976 0.646281 23.3536 0.540104C23.3096 0.433928 23.2452 0.337454 23.1639 0.256196C23.0827 0.174938 22.9862 0.110489 22.88 0.0665294C22.7738 0.0225702 22.66 -3.67429e-05 22.5451 4.48254e-08Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M5.13907 18.237C11.2604 24.3583 16.7449 23.9553 18.3207 22.3795L19.2282 21.472C19.7572 20.9418 20.0543 20.2234 20.0543 19.4744C20.0543 18.7254 19.7572 18.0071 19.2282 17.4769L17.0198 15.2685C16.4912 14.7438 15.7761 14.4503 15.0313 14.4522C14.2866 14.4542 13.573 14.7514 13.0471 15.2787L12.0344 16.2914C10.8187 16.039 9.70861 15.4228 8.85136 14.5247C7.95363 13.6679 7.33661 12.5592 7.08161 11.3447L8.10335 10.3242C8.62052 9.77261 8.90202 9.04099 8.88792 8.28502C8.87382 7.52905 8.56524 6.80842 8.02787 6.27652L5.89921 4.14787C5.36902 3.61885 4.65064 3.32175 3.90167 3.32175C3.1527 3.32175 2.43431 3.61885 1.90412 4.14787L0.996566 5.05542C-0.579266 6.63119 -0.982263 12.1156 5.13907 18.237ZM3.14153 5.38527C3.34323 5.18389 3.61661 5.07078 3.90163 5.07078C4.18666 5.07078 4.46004 5.18389 4.66174 5.38527L6.7904 7.51393C7.00165 7.71659 7.12726 7.99246 7.14141 8.28486C7.15557 8.57726 7.05719 8.86398 6.8665 9.08609L5.65685 10.2945C4.71125 11.2401 5.94264 14.0908 7.61391 15.7621C9.45254 17.6007 12.2138 18.5868 13.0851 17.7155L14.2845 16.5161C14.4819 16.3164 14.7505 16.2032 15.0313 16.2013C15.3121 16.1994 15.5822 16.3089 15.7824 16.5059L17.9908 18.7143C18.1922 18.916 18.3053 19.1894 18.3053 19.4744C18.3053 19.7594 18.1922 20.0328 17.9908 20.2345L17.0832 21.1421C16.1491 22.0762 11.5927 22.2158 6.37648 16.9996C1.16027 11.7833 1.29985 7.22695 2.23397 6.29283L3.14153 5.38527Z" fill="#0F0F0F"/>
|
|
4
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 500 350.87">
|
|
3
|
-
<!-- Generator: Adobe Illustrator 30.2.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 1) -->
|
|
4
|
-
<path d="M231.35,301.51c-.14-.28-.29-.56-.44-.84-12.74-23.41-22.64-48.36-29.39-74.14-4.14,10.49-8.41,21.2-15.77,29.74-7.36,8.55-18.52,14.68-29.68,13.04-12.07-1.77-21.14-11.85-27.65-22.16-9.72-15.39-16.21-32.61-21.3-50.08-6.84-23.46-11.28-47.54-15.02-71.69-1.65-10.61-3.19-21.35-7.07-31.35s-10.42-19.38-19.84-24.53c-27.63-15.11-46.91,14.05-47.83,38.48-.54,14.22,2.91,28.26,6.24,42.09,7.74,32.15,15.06,64.59,27.63,95.17,9.71,23.63,22.75,46.29,41.23,63.93s42.84,29.94,68.37,30.62c26.72.71,53.47-11.92,69.9-33.01.54-.69,1.08-1.43,1.25-2.29.2-1.02-.15-2.04-.62-2.99Z"/>
|
|
5
|
-
<path d="M268.8,53.23c.07.12.13.24.2.36,13.19,23.88,23.09,49.56,29.35,76.11,4.51-8.13,7.48-17.04,11.86-25.24s10.6-15.96,19.24-19.41c15.08-6.02,32.87,3.53,41.17,17.49,6.51,10.94,8.7,24.2,16.25,34.46,10.56,14.36,33.01,19.58,47.22,8.83,9.7-7.33,14-20.27,13.3-32.42-.7-12.14-5.75-23.63-11.81-34.17-15.7-27.31-39.79-50.85-69.76-60.53-37.13-11.99-70.33,1.58-96.1,28.56-.77.81-1.58,1.69-1.76,2.8-.18,1.1.3,2.16.84,3.16Z"/>
|
|
6
|
-
<path d="M482.92,103.17c-2.18-14.54-9.25-28.59-21.75-35.99,14.4,23.6,18.92,54.4,6.67,79.19s-43.32,40.31-69.19,30.55c-6.9,26.8-14.17,54.41-30.98,76.39-6.3,8.24-14.77,15.96-25.11,16.71-14.05,1.02-25.53-10.94-33.01-22.88-16.86-26.92-24.79-58.34-32.3-89.21-7.51-30.87-15.06-62.32-31.32-89.61-16.25-27.3-42.91-50.3-74.47-53.98-15.93-1.86-32.09,1.42-46.63,7.96-3.37,1.51-40.35,25.31-37.87,27.66,20.66,19.54,32.77,47.83,32.66,76.27,3.93-11.14,8.3-22.48,16.25-31.22,7.95-8.74,20.32-14.43,31.71-11.31,11.04,3.02,18.46,13.21,24,23.22,27.74,50.2,30.1,110.85,54.41,162.8,14.53,31.05,39.22,59.95,72.56,67.91,28.42,6.79,59.14-3.06,81.9-21.38,22.76-18.32,38.34-44.26,49.19-71.39,10.85-27.13,17.38-55.75,25.09-83.94,4.5-16.45,9.46-33.12,8.89-50.17-.08-2.52-.32-5.07-.69-7.6Z"/>
|
|
7
|
-
</svg>
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
<svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="32.6846" height="32.6846" rx="16.3423" fill="white"/>
|
|
3
|
-
<g clip-path="url(#clip0_3331_38283)">
|
|
4
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint0_linear_3331_38283)"/>
|
|
5
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint1_radial_3331_38283)"/>
|
|
6
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint2_radial_3331_38283)"/>
|
|
7
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint3_radial_3331_38283)"/>
|
|
8
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint4_radial_3331_38283)"/>
|
|
9
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint5_radial_3331_38283)"/>
|
|
10
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint6_radial_3331_38283)"/>
|
|
11
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint7_radial_3331_38283)"/>
|
|
12
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint8_radial_3331_38283)"/>
|
|
13
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint9_radial_3331_38283)"/>
|
|
14
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint10_radial_3331_38283)"/>
|
|
15
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint11_radial_3331_38283)"/>
|
|
16
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint12_radial_3331_38283)"/>
|
|
17
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint13_radial_3331_38283)"/>
|
|
18
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint14_radial_3331_38283)"/>
|
|
19
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint15_radial_3331_38283)"/>
|
|
20
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint16_linear_3331_38283)"/>
|
|
21
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint17_linear_3331_38283)"/>
|
|
22
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint18_linear_3331_38283)"/>
|
|
23
|
-
<path d="M10.3755 16.5032C11.3827 19.859 12.8435 21.9384 13.9717 17.1384C13.8628 17.1233 16.2644 10.7701 16.3657 10.5251C17.2912 9.29256 18.7824 8.53339 20.331 8.54851C23.3888 8.31259 26.5616 12.5546 25.7299 14.6068C25.1613 16.0919 23.0244 16.408 22.0414 15.1618C21.6996 14.7369 21.5635 14.1985 21.2671 13.7282C20.6954 12.6635 19.9393 12.5576 19.4523 13.7508C19.0455 14.6401 18.8262 15.5641 18.6084 16.5017L17.6829 19.5082L16.3884 22.3634C15.4613 23.5732 13.9884 24.2931 12.4685 24.3052C6.39508 24.0058 5.86728 15.9104 5.38032 13.4741C5.31227 12.8026 5.3773 12.4865 5.65859 11.9588C6.40415 10.6446 8.46542 10.572 9.31231 11.8196C9.61326 12.2355 9.67073 12.7678 9.7282 13.2654C9.85523 14.3527 10.0745 15.4386 10.3755 16.5032Z" fill="url(#paint19_linear_3331_38283)"/>
|
|
24
|
-
<path d="M14.9414 14.2967L16.363 10.5159C17.9358 8.33668 21.3006 7.86636 23.3816 9.59038C24.8379 10.6883 25.706 12.863 25.706 12.863C26.075 13.657 25.8875 14.6944 25.2553 15.3024C24.3903 16.2022 22.822 16.122 22.0417 15.1526C21.5245 14.5795 21.0708 12.4335 19.9955 12.9674C19.1925 13.7628 19.0171 15.0044 18.7116 16.0434C18.7086 16.2445 17.7634 19.2162 17.6832 19.5005L14.9429 14.2982L14.9414 14.2967Z" fill="url(#paint20_linear_3331_38283)"/>
|
|
25
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8098 12.7337 25.8355 13.7636C25.8899 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.67045 12.3042 9.72792 13.2781C9.79144 14.37 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint21_linear_3331_38283)"/>
|
|
26
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint22_radial_3331_38283)"/>
|
|
27
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint23_radial_3331_38283)"/>
|
|
28
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint24_radial_3331_38283)"/>
|
|
29
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint25_radial_3331_38283)"/>
|
|
30
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint26_radial_3331_38283)"/>
|
|
31
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint27_radial_3331_38283)"/>
|
|
32
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint28_radial_3331_38283)"/>
|
|
33
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint29_radial_3331_38283)"/>
|
|
34
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint30_radial_3331_38283)"/>
|
|
35
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint31_radial_3331_38283)"/>
|
|
36
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint32_radial_3331_38283)"/>
|
|
37
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8657 12.7337 25.8914 13.7636C25.9459 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint33_radial_3331_38283)"/>
|
|
38
|
-
<path d="M25.22 10.931C25.0355 10.931 24.8494 10.9537 24.677 11.0006C25.1988 11.8566 25.8098 12.7337 25.8355 13.7636C25.8899 15.3908 23.9965 16.5069 22.6188 15.6373C22.1288 17.7046 20.553 22.1916 19.266 18.7133C18.6399 16.8623 18.4418 15.5768 17.9367 13.8573C16.5242 7.81568 10.7956 7.0187 8.09766 11.0006C9.15022 11.2456 9.70977 12.2543 9.72792 13.2781C9.85495 14.3655 10.0637 15.4286 10.3646 16.4812C12.1022 11.1397 13.1321 12.5038 13.9488 15.8339C14.7352 19.1973 15.6335 22.6862 17.8792 23.707C20.8358 25.2964 24.0797 23.6495 25.3243 20.8275C26.2786 18.9462 26.8442 16.9152 27.1739 14.8388C27.2706 14.0101 27.5368 13.1329 27.2555 12.3178C26.9394 11.4997 26.091 10.925 25.22 10.931Z" fill="url(#paint34_linear_3331_38283)"/>
|
|
39
|
-
</g>
|
|
40
|
-
<defs>
|
|
41
|
-
<linearGradient id="paint0_linear_3331_38283" x1="6.27712" y1="19.2178" x2="23.4856" y2="12.2612" gradientUnits="userSpaceOnUse">
|
|
42
|
-
<stop offset="0.13" stop-color="#1CBBF3"/>
|
|
43
|
-
<stop offset="0.34" stop-color="#1F99A5"/>
|
|
44
|
-
<stop offset="0.45" stop-color="#209CA6"/>
|
|
45
|
-
<stop offset="0.51" stop-color="#24A4AA"/>
|
|
46
|
-
<stop offset="0.57" stop-color="#2BB3B0"/>
|
|
47
|
-
<stop offset="0.6" stop-color="#30BDB4"/>
|
|
48
|
-
<stop offset="0.79" stop-color="#38BA90"/>
|
|
49
|
-
<stop offset="1" stop-color="#60F05A"/>
|
|
50
|
-
</linearGradient>
|
|
51
|
-
<radialGradient id="paint1_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.6924 15.1699) rotate(74.32) scale(8.14315 6.18925)">
|
|
52
|
-
<stop stop-color="#227B60"/>
|
|
53
|
-
<stop offset="0.14" stop-color="#227B60" stop-opacity="0.81"/>
|
|
54
|
-
<stop offset="0.58" stop-color="#227B60" stop-opacity="0.23"/>
|
|
55
|
-
<stop offset="0.78" stop-color="#227B60" stop-opacity="0"/>
|
|
56
|
-
</radialGradient>
|
|
57
|
-
<radialGradient id="paint2_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.3479 14.6683) rotate(91.15) scale(5.50654 4.18479)">
|
|
58
|
-
<stop stop-color="#227B60"/>
|
|
59
|
-
<stop offset="0.25" stop-color="#227B60" stop-opacity="0.7"/>
|
|
60
|
-
<stop offset="0.71" stop-color="#227B60" stop-opacity="0.2"/>
|
|
61
|
-
<stop offset="0.92" stop-color="#227B60" stop-opacity="0"/>
|
|
62
|
-
</radialGradient>
|
|
63
|
-
<radialGradient id="paint3_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.823 14.7688) rotate(88.6) scale(5.133 3.64459)">
|
|
64
|
-
<stop stop-color="#227B60"/>
|
|
65
|
-
<stop offset="0.07" stop-color="#227B60" stop-opacity="0.9"/>
|
|
66
|
-
<stop offset="0.34" stop-color="#227B60" stop-opacity="0.51"/>
|
|
67
|
-
<stop offset="0.59" stop-color="#227B60" stop-opacity="0.23"/>
|
|
68
|
-
<stop offset="0.79" stop-color="#227B60" stop-opacity="0.06"/>
|
|
69
|
-
<stop offset="0.92" stop-color="#227B60" stop-opacity="0"/>
|
|
70
|
-
</radialGradient>
|
|
71
|
-
<radialGradient id="paint4_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.1049 14.4816) rotate(88.6) scale(4.14456 2.94234)">
|
|
72
|
-
<stop stop-color="#227B60"/>
|
|
73
|
-
<stop offset="0.36" stop-color="#227B60" stop-opacity="0.63"/>
|
|
74
|
-
<stop offset="0.92" stop-color="#227B60" stop-opacity="0"/>
|
|
75
|
-
</radialGradient>
|
|
76
|
-
<radialGradient id="paint5_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.925 14.7529) rotate(88.6) scale(3.30553 2.11595)">
|
|
77
|
-
<stop stop-color="#20735A"/>
|
|
78
|
-
<stop offset="0.15" stop-color="#20745A" stop-opacity="0.93"/>
|
|
79
|
-
<stop offset="0.38" stop-color="#21755C" stop-opacity="0.74"/>
|
|
80
|
-
<stop offset="0.67" stop-color="#21785D" stop-opacity="0.43"/>
|
|
81
|
-
<stop offset="1" stop-color="#227B60" stop-opacity="0"/>
|
|
82
|
-
</radialGradient>
|
|
83
|
-
<radialGradient id="paint6_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.545 15.1274) rotate(23.8) scale(5.3192 3.9894)">
|
|
84
|
-
<stop stop-color="#227A61"/>
|
|
85
|
-
<stop offset="0.36" stop-color="#227A61" stop-opacity="0.56"/>
|
|
86
|
-
<stop offset="0.72" stop-color="#227A61" stop-opacity="0.16"/>
|
|
87
|
-
<stop offset="0.9" stop-color="#227A61" stop-opacity="0"/>
|
|
88
|
-
</radialGradient>
|
|
89
|
-
<radialGradient id="paint7_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.64 7.08748) rotate(35.27) scale(7.09379 6.48579)">
|
|
90
|
-
<stop stop-color="#3CD9C3"/>
|
|
91
|
-
<stop offset="0.07" stop-color="#3BD7C1" stop-opacity="0.9"/>
|
|
92
|
-
<stop offset="0.41" stop-color="#38CEB9" stop-opacity="0.42"/>
|
|
93
|
-
<stop offset="0.65" stop-color="#36C8B4" stop-opacity="0.12"/>
|
|
94
|
-
<stop offset="0.76" stop-color="#35C6B2" stop-opacity="0"/>
|
|
95
|
-
</radialGradient>
|
|
96
|
-
<radialGradient id="paint8_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-8975.65 -5467.87) rotate(35.27) scale(1260.07 884.012)">
|
|
97
|
-
<stop stop-color="#3CD9C3"/>
|
|
98
|
-
<stop offset="0.07" stop-color="#3BD7C1" stop-opacity="0.9"/>
|
|
99
|
-
<stop offset="0.41" stop-color="#38CEB9" stop-opacity="0.42"/>
|
|
100
|
-
<stop offset="0.65" stop-color="#36C8B4" stop-opacity="0.12"/>
|
|
101
|
-
<stop offset="0.76" stop-color="#35C6B2" stop-opacity="0"/>
|
|
102
|
-
</radialGradient>
|
|
103
|
-
<radialGradient id="paint9_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.0878 16.9498) rotate(100.97) scale(6.25592 7.73168)">
|
|
104
|
-
<stop stop-color="#237F66" stop-opacity="0.8"/>
|
|
105
|
-
<stop offset="0.06" stop-color="#2C8C70" stop-opacity="0.65"/>
|
|
106
|
-
<stop offset="0.21" stop-color="#3DA785" stop-opacity="0.37"/>
|
|
107
|
-
<stop offset="0.35" stop-color="#4ABA93" stop-opacity="0.17"/>
|
|
108
|
-
<stop offset="0.47" stop-color="#51C59C" stop-opacity="0.04"/>
|
|
109
|
-
<stop offset="0.56" stop-color="#54C99F" stop-opacity="0"/>
|
|
110
|
-
</radialGradient>
|
|
111
|
-
<radialGradient id="paint10_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.0212 17.0229) rotate(-50.82) scale(8.17533 8.82931)">
|
|
112
|
-
<stop stop-color="#167C8A"/>
|
|
113
|
-
<stop offset="0.04" stop-color="#167C8A" stop-opacity="0.93"/>
|
|
114
|
-
<stop offset="0.33" stop-color="#177F8D" stop-opacity="0.43"/>
|
|
115
|
-
<stop offset="0.54" stop-color="#17818F" stop-opacity="0.12"/>
|
|
116
|
-
<stop offset="0.65" stop-color="#178290" stop-opacity="0"/>
|
|
117
|
-
</radialGradient>
|
|
118
|
-
<radialGradient id="paint11_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.3995 17.7486) rotate(-31.66) scale(8.08028 6.38365)">
|
|
119
|
-
<stop offset="0.05" stop-color="#177D87"/>
|
|
120
|
-
<stop offset="0.11" stop-color="#177E89" stop-opacity="0.8"/>
|
|
121
|
-
<stop offset="0.21" stop-color="#177F8B" stop-opacity="0.52"/>
|
|
122
|
-
<stop offset="0.32" stop-color="#17818D" stop-opacity="0.29"/>
|
|
123
|
-
<stop offset="0.42" stop-color="#17818F" stop-opacity="0.13"/>
|
|
124
|
-
<stop offset="0.51" stop-color="#178290" stop-opacity="0.03"/>
|
|
125
|
-
<stop offset="0.6" stop-color="#178290" stop-opacity="0"/>
|
|
126
|
-
</radialGradient>
|
|
127
|
-
<radialGradient id="paint12_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.4151 17.6572) rotate(-130.54) scale(4.75142 3.74114)">
|
|
128
|
-
<stop offset="0.26" stop-color="#177F8A"/>
|
|
129
|
-
<stop offset="0.27" stop-color="#177F8A" stop-opacity="0.98"/>
|
|
130
|
-
<stop offset="0.38" stop-color="#17808C" stop-opacity="0.68"/>
|
|
131
|
-
<stop offset="0.5" stop-color="#17818D" stop-opacity="0.43"/>
|
|
132
|
-
<stop offset="0.62" stop-color="#17818F" stop-opacity="0.24"/>
|
|
133
|
-
<stop offset="0.74" stop-color="#17828F" stop-opacity="0.11"/>
|
|
134
|
-
<stop offset="0.86" stop-color="#178290" stop-opacity="0.03"/>
|
|
135
|
-
<stop offset="1" stop-color="#178290" stop-opacity="0"/>
|
|
136
|
-
</radialGradient>
|
|
137
|
-
<radialGradient id="paint13_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.5889 19.3253) rotate(-173.11) scale(4.45718)">
|
|
138
|
-
<stop stop-color="#13656E"/>
|
|
139
|
-
<stop offset="0.11" stop-color="#13646E" stop-opacity="0.73"/>
|
|
140
|
-
<stop offset="0.27" stop-color="#12646E" stop-opacity="0.41"/>
|
|
141
|
-
<stop offset="0.42" stop-color="#12636E" stop-opacity="0.18"/>
|
|
142
|
-
<stop offset="0.55" stop-color="#12636E" stop-opacity="0.05"/>
|
|
143
|
-
<stop offset="0.66" stop-color="#12636E" stop-opacity="0"/>
|
|
144
|
-
</radialGradient>
|
|
145
|
-
<radialGradient id="paint14_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.5499 19.7672) rotate(-119.32) scale(3.15805 2.65267)">
|
|
146
|
-
<stop offset="0.13" stop-color="#146A73"/>
|
|
147
|
-
<stop offset="0.24" stop-color="#156F79" stop-opacity="0.79"/>
|
|
148
|
-
<stop offset="0.45" stop-color="#167783" stop-opacity="0.45"/>
|
|
149
|
-
<stop offset="0.65" stop-color="#167D8A" stop-opacity="0.2"/>
|
|
150
|
-
<stop offset="0.82" stop-color="#17818E" stop-opacity="0.05"/>
|
|
151
|
-
<stop offset="0.95" stop-color="#178290" stop-opacity="0"/>
|
|
152
|
-
</radialGradient>
|
|
153
|
-
<radialGradient id="paint15_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.2175 18.2383) rotate(-55.99) scale(2.93199 2.32284)">
|
|
154
|
-
<stop stop-color="#198E9C"/>
|
|
155
|
-
<stop offset="0.1" stop-color="#198E9C" stop-opacity="0.87"/>
|
|
156
|
-
<stop offset="0.41" stop-color="#198E9C" stop-opacity="0.5"/>
|
|
157
|
-
<stop offset="0.67" stop-color="#198E9C" stop-opacity="0.23"/>
|
|
158
|
-
<stop offset="0.88" stop-color="#198E9C" stop-opacity="0.06"/>
|
|
159
|
-
<stop offset="1" stop-color="#198E9C" stop-opacity="0"/>
|
|
160
|
-
</radialGradient>
|
|
161
|
-
<linearGradient id="paint16_linear_3331_38283" x1="7.43706" y1="8.17951" x2="15.0031" y2="15.1815" gradientUnits="userSpaceOnUse">
|
|
162
|
-
<stop offset="0.13" stop-color="#2BF9FF"/>
|
|
163
|
-
<stop offset="0.27" stop-color="#29F9FF" stop-opacity="0.64"/>
|
|
164
|
-
<stop offset="0.4" stop-color="#27FAFF" stop-opacity="0.3"/>
|
|
165
|
-
<stop offset="0.49" stop-color="#26FAFF" stop-opacity="0.08"/>
|
|
166
|
-
<stop offset="0.54" stop-color="#26FAFF" stop-opacity="0"/>
|
|
167
|
-
</linearGradient>
|
|
168
|
-
<linearGradient id="paint17_linear_3331_38283" x1="3.13758" y1="19.6095" x2="11.9709" y2="17.1036" gradientUnits="userSpaceOnUse">
|
|
169
|
-
<stop stop-color="#26FAFF"/>
|
|
170
|
-
<stop offset="0.06" stop-color="#26FAFF" stop-opacity="0.88"/>
|
|
171
|
-
<stop offset="0.24" stop-color="#26FAFF" stop-opacity="0.51"/>
|
|
172
|
-
<stop offset="0.39" stop-color="#26FAFF" stop-opacity="0.23"/>
|
|
173
|
-
<stop offset="0.5" stop-color="#26FAFF" stop-opacity="0.06"/>
|
|
174
|
-
<stop offset="0.55" stop-color="#26FAFF" stop-opacity="0"/>
|
|
175
|
-
</linearGradient>
|
|
176
|
-
<linearGradient id="paint18_linear_3331_38283" x1="5.44686" y1="19.3131" x2="15.4281" y2="15.7561" gradientUnits="userSpaceOnUse">
|
|
177
|
-
<stop stop-color="#21DEFF"/>
|
|
178
|
-
<stop offset="0.04" stop-color="#21DEFF" stop-opacity="0.88"/>
|
|
179
|
-
<stop offset="0.17" stop-color="#21DEFF" stop-opacity="0.51"/>
|
|
180
|
-
<stop offset="0.27" stop-color="#21DEFF" stop-opacity="0.23"/>
|
|
181
|
-
<stop offset="0.34" stop-color="#21DEFF" stop-opacity="0.06"/>
|
|
182
|
-
<stop offset="0.38" stop-color="#21DEFF" stop-opacity="0"/>
|
|
183
|
-
</linearGradient>
|
|
184
|
-
<linearGradient id="paint19_linear_3331_38283" x1="14.9638" y1="14.1516" x2="20.5336" y2="23.236" gradientUnits="userSpaceOnUse">
|
|
185
|
-
<stop offset="0.62" stop-color="#21DEFF" stop-opacity="0"/>
|
|
186
|
-
<stop offset="0.66" stop-color="#21DEFF" stop-opacity="0.06"/>
|
|
187
|
-
<stop offset="0.73" stop-color="#21DEFF" stop-opacity="0.23"/>
|
|
188
|
-
<stop offset="0.83" stop-color="#21DEFF" stop-opacity="0.51"/>
|
|
189
|
-
<stop offset="0.96" stop-color="#21DEFF" stop-opacity="0.88"/>
|
|
190
|
-
<stop offset="1" stop-color="#21DEFF"/>
|
|
191
|
-
</linearGradient>
|
|
192
|
-
<linearGradient id="paint20_linear_3331_38283" x1="21.1645" y1="17.5496" x2="20.2904" y2="13.2819" gradientUnits="userSpaceOnUse">
|
|
193
|
-
<stop stop-color="#44B044"/>
|
|
194
|
-
<stop offset="0.11" stop-color="#44B044" stop-opacity="0.8"/>
|
|
195
|
-
<stop offset="0.27" stop-color="#44B044" stop-opacity="0.52"/>
|
|
196
|
-
<stop offset="0.43" stop-color="#44B044" stop-opacity="0.29"/>
|
|
197
|
-
<stop offset="0.58" stop-color="#44B044" stop-opacity="0.13"/>
|
|
198
|
-
<stop offset="0.7" stop-color="#44B044" stop-opacity="0.03"/>
|
|
199
|
-
<stop offset="0.8" stop-color="#44B044" stop-opacity="0"/>
|
|
200
|
-
</linearGradient>
|
|
201
|
-
<linearGradient id="paint21_linear_3331_38283" x1="8.93698" y1="13.1299" x2="27.3659" y2="19.2321" gradientUnits="userSpaceOnUse">
|
|
202
|
-
<stop stop-color="#3066FB"/>
|
|
203
|
-
<stop offset="0.38" stop-color="#2F64F7"/>
|
|
204
|
-
<stop offset="0.74" stop-color="#2857D9"/>
|
|
205
|
-
<stop offset="1" stop-color="#3C7EFF"/>
|
|
206
|
-
</linearGradient>
|
|
207
|
-
<radialGradient id="paint22_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.9443 15.8509) rotate(98.69) scale(9.79936 6.4674)">
|
|
208
|
-
<stop stop-color="#1A3D9C"/>
|
|
209
|
-
<stop offset="0.4" stop-color="#1A3D9C" stop-opacity="0.42"/>
|
|
210
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
211
|
-
</radialGradient>
|
|
212
|
-
<radialGradient id="paint23_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-51.9067 -8619.89) rotate(98.69) scale(1205.75 649.904)">
|
|
213
|
-
<stop stop-color="#1A3D9C"/>
|
|
214
|
-
<stop offset="0.4" stop-color="#1A3D9C" stop-opacity="0.42"/>
|
|
215
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
216
|
-
</radialGradient>
|
|
217
|
-
<radialGradient id="paint24_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(467.598 -8690.92) rotate(98.62) scale(1435.99 593.031)">
|
|
218
|
-
<stop stop-color="#1A3D9C"/>
|
|
219
|
-
<stop offset="0.4" stop-color="#1A3D9C" stop-opacity="0.42"/>
|
|
220
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
221
|
-
</radialGradient>
|
|
222
|
-
<radialGradient id="paint25_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.8886 15.9938) rotate(83.09) scale(8.56496 5.97662)">
|
|
223
|
-
<stop stop-color="#1A3D9C"/>
|
|
224
|
-
<stop offset="0.16" stop-color="#1A3D9C" stop-opacity="0.69"/>
|
|
225
|
-
<stop offset="0.33" stop-color="#1A3D9C" stop-opacity="0.4"/>
|
|
226
|
-
<stop offset="0.49" stop-color="#1A3D9C" stop-opacity="0.18"/>
|
|
227
|
-
<stop offset="0.61" stop-color="#1A3D9C" stop-opacity="0.05"/>
|
|
228
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
229
|
-
</radialGradient>
|
|
230
|
-
<radialGradient id="paint26_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.2679 16.8649) rotate(74.64) scale(8.23165 5.59734)">
|
|
231
|
-
<stop stop-color="#18388F"/>
|
|
232
|
-
<stop offset="0.37" stop-color="#193B96" stop-opacity="0.45"/>
|
|
233
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
234
|
-
</radialGradient>
|
|
235
|
-
<radialGradient id="paint27_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.6125 18.9908) rotate(74.64) scale(3.82734 3.6354)">
|
|
236
|
-
<stop stop-color="#18388F"/>
|
|
237
|
-
<stop offset="0.09" stop-color="#183992" stop-opacity="0.78"/>
|
|
238
|
-
<stop offset="0.22" stop-color="#193B96" stop-opacity="0.5"/>
|
|
239
|
-
<stop offset="0.35" stop-color="#193C98" stop-opacity="0.28"/>
|
|
240
|
-
<stop offset="0.47" stop-color="#1A3C9A" stop-opacity="0.13"/>
|
|
241
|
-
<stop offset="0.59" stop-color="#1A3D9C" stop-opacity="0.03"/>
|
|
242
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
243
|
-
</radialGradient>
|
|
244
|
-
<radialGradient id="paint28_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.6801 19.657) rotate(74.64) scale(3.82734 3.6354)">
|
|
245
|
-
<stop stop-color="#1A3D9C" stop-opacity="0.78"/>
|
|
246
|
-
<stop offset="0.24" stop-color="#1A3D9C" stop-opacity="0.45"/>
|
|
247
|
-
<stop offset="0.44" stop-color="#1A3D9C" stop-opacity="0.2"/>
|
|
248
|
-
<stop offset="0.6" stop-color="#1A3D9C" stop-opacity="0.05"/>
|
|
249
|
-
<stop offset="0.7" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
250
|
-
</radialGradient>
|
|
251
|
-
<radialGradient id="paint29_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.7948 17.3) rotate(67.03) scale(9.13389 6.06168)">
|
|
252
|
-
<stop stop-color="#1A3D9C"/>
|
|
253
|
-
<stop offset="0.4" stop-color="#1A3D9C" stop-opacity="0.56"/>
|
|
254
|
-
<stop offset="0.48" stop-color="#1A3D9C" stop-opacity="0.43"/>
|
|
255
|
-
<stop offset="0.69" stop-color="#1A3D9C" stop-opacity="0.12"/>
|
|
256
|
-
<stop offset="0.79" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
257
|
-
</radialGradient>
|
|
258
|
-
<radialGradient id="paint30_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.6432 15.0543) rotate(76.1) scale(6.77542 4.47327)">
|
|
259
|
-
<stop stop-color="#1A3D9C"/>
|
|
260
|
-
<stop offset="0.06" stop-color="#1A3D9C" stop-opacity="0.88"/>
|
|
261
|
-
<stop offset="0.21" stop-color="#1A3D9C" stop-opacity="0.61"/>
|
|
262
|
-
<stop offset="0.36" stop-color="#1A3D9C" stop-opacity="0.39"/>
|
|
263
|
-
<stop offset="0.51" stop-color="#1A3D9C" stop-opacity="0.22"/>
|
|
264
|
-
<stop offset="0.67" stop-color="#1A3D9C" stop-opacity="0.1"/>
|
|
265
|
-
<stop offset="0.83" stop-color="#1A3D9C" stop-opacity="0.02"/>
|
|
266
|
-
<stop offset="1" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
267
|
-
</radialGradient>
|
|
268
|
-
<radialGradient id="paint31_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.6432 15.0543) rotate(76.1) scale(6.77542 4.47327)">
|
|
269
|
-
<stop stop-color="#1B3E9E"/>
|
|
270
|
-
<stop offset="0.06" stop-color="#1B3E9E" stop-opacity="0.87"/>
|
|
271
|
-
<stop offset="0.21" stop-color="#1B3E9D" stop-opacity="0.61"/>
|
|
272
|
-
<stop offset="0.36" stop-color="#1A3D9D" stop-opacity="0.39"/>
|
|
273
|
-
<stop offset="0.52" stop-color="#1A3D9C" stop-opacity="0.22"/>
|
|
274
|
-
<stop offset="0.67" stop-color="#1A3D9C" stop-opacity="0.1"/>
|
|
275
|
-
<stop offset="0.83" stop-color="#1A3D9C" stop-opacity="0.02"/>
|
|
276
|
-
<stop offset="1" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
277
|
-
</radialGradient>
|
|
278
|
-
<radialGradient id="paint32_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.2249 14.2934) rotate(76.1) scale(5.18357 3.42162)">
|
|
279
|
-
<stop stop-color="#183991"/>
|
|
280
|
-
<stop offset="0.03" stop-color="#183992" stop-opacity="0.95"/>
|
|
281
|
-
<stop offset="0.18" stop-color="#193A95" stop-opacity="0.66"/>
|
|
282
|
-
<stop offset="0.34" stop-color="#193B97" stop-opacity="0.42"/>
|
|
283
|
-
<stop offset="0.5" stop-color="#1A3C99" stop-opacity="0.24"/>
|
|
284
|
-
<stop offset="0.66" stop-color="#1A3D9B" stop-opacity="0.1"/>
|
|
285
|
-
<stop offset="0.82" stop-color="#1A3D9C" stop-opacity="0.03"/>
|
|
286
|
-
<stop offset="1" stop-color="#1A3D9C" stop-opacity="0"/>
|
|
287
|
-
</radialGradient>
|
|
288
|
-
<radialGradient id="paint33_radial_3331_38283" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.838 15.8051) rotate(87.14) scale(4.09514 3.60551)">
|
|
289
|
-
<stop offset="0.04" stop-color="#2453D6" stop-opacity="0.6"/>
|
|
290
|
-
<stop offset="0.2" stop-color="#2453D6" stop-opacity="0.49"/>
|
|
291
|
-
<stop offset="0.52" stop-color="#2453D6" stop-opacity="0.2"/>
|
|
292
|
-
<stop offset="0.73" stop-color="#2453D6" stop-opacity="0"/>
|
|
293
|
-
</radialGradient>
|
|
294
|
-
<linearGradient id="paint34_linear_3331_38283" x1="20.9175" y1="5.59562" x2="16.2596" y2="17.1073" gradientUnits="userSpaceOnUse">
|
|
295
|
-
<stop stop-color="#3774FF"/>
|
|
296
|
-
<stop offset="0.05" stop-color="#3774FF" stop-opacity="0.91"/>
|
|
297
|
-
<stop offset="0.16" stop-color="#3774FF" stop-opacity="0.66"/>
|
|
298
|
-
<stop offset="0.32" stop-color="#3774FF" stop-opacity="0.28"/>
|
|
299
|
-
<stop offset="0.43" stop-color="#3774FF" stop-opacity="0"/>
|
|
300
|
-
</linearGradient>
|
|
301
|
-
<clipPath id="clip0_3331_38283">
|
|
302
|
-
<rect width="22.6846" height="22.6846" fill="white" transform="translate(5 5)"/>
|
|
303
|
-
</clipPath>
|
|
304
|
-
</defs>
|
|
305
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M1.75 5.25C1.75 5.904 2.37315 6.78201 4.05618 7.54702C5.66022 8.27613 7.93763 8.75 10.5 8.75C13.0624 8.75 15.3398 8.27613 16.9438 7.54702C18.6269 6.78201 19.25 5.904 19.25 5.25C19.25 4.596 18.6269 3.71799 16.9438 2.95298C15.3398 2.22387 13.0624 1.75 10.5 1.75C7.93763 1.75 5.66022 2.22387 4.05618 2.95298C2.37315 3.71799 1.75 4.596 1.75 5.25ZM0 5.25C0 3.48776 1.53148 2.17826 3.33202 1.35984C5.21154 0.505509 7.74663 0 10.5 0C13.2534 0 15.7885 0.505509 17.668 1.35984C19.4685 2.17826 21 3.48776 21 5.25V17.5C21 19.2622 19.4685 20.5717 17.668 21.3902C15.7885 22.2445 13.2534 22.75 10.5 22.75C7.74663 22.75 5.21154 22.2445 3.33202 21.3902C1.53148 20.5717 0 19.2622 0 17.5V5.25ZM1.75 14.3467V17.5C1.75 18.154 2.37315 19.032 4.05617 19.797C5.66022 20.5261 7.93763 21 10.5 21C13.0624 21 15.3398 20.5261 16.9438 19.797C18.6269 19.032 19.25 18.154 19.25 17.5V14.3467C18.7757 14.7008 18.2352 15.0073 17.668 15.2652C15.7885 16.1195 13.2534 16.625 10.5 16.625C7.74663 16.625 5.21154 16.1195 3.33202 15.2652C2.76483 15.0073 2.22433 14.7008 1.75 14.3467ZM19.25 11.375V8.22172C18.7757 8.5758 18.2352 8.88235 17.668 9.14016C15.7885 9.99449 13.2534 10.5 10.5 10.5C7.74663 10.5 5.21154 9.99449 3.33202 9.14016C2.76483 8.88235 2.22433 8.5758 1.75 8.22172V11.375C1.75 12.029 2.37315 12.907 4.05617 13.672C5.66022 14.4011 7.93763 14.875 10.5 14.875C13.0624 14.875 15.3398 14.4011 16.9438 13.672C18.6269 12.907 19.25 12.029 19.25 11.375Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M1.75 5.25C1.75 5.904 2.37315 6.78201 4.05618 7.54702C5.66022 8.27613 7.93763 8.75 10.5 8.75C13.0624 8.75 15.3398 8.27613 16.9438 7.54702C18.6269 6.78201 19.25 5.904 19.25 5.25C19.25 4.596 18.6269 3.71799 16.9438 2.95298C15.3398 2.22387 13.0624 1.75 10.5 1.75C7.93763 1.75 5.66022 2.22387 4.05618 2.95298C2.37315 3.71799 1.75 4.596 1.75 5.25ZM0 5.25C0 3.48776 1.53148 2.17826 3.33202 1.35984C5.21154 0.505509 7.74663 0 10.5 0C13.2534 0 15.7885 0.505509 17.668 1.35984C19.4685 2.17826 21 3.48776 21 5.25V17.5C21 19.2622 19.4685 20.5717 17.668 21.3902C15.7885 22.2445 13.2534 22.75 10.5 22.75C7.74663 22.75 5.21154 22.2445 3.33202 21.3902C1.53148 20.5717 0 19.2622 0 17.5V5.25ZM1.75 14.3467V17.5C1.75 18.154 2.37315 19.032 4.05617 19.797C5.66022 20.5261 7.93763 21 10.5 21C13.0624 21 15.3398 20.5261 16.9438 19.797C18.6269 19.032 19.25 18.154 19.25 17.5V14.3467C18.7757 14.7008 18.2352 15.0073 17.668 15.2652C15.7885 16.1195 13.2534 16.625 10.5 16.625C7.74663 16.625 5.21154 16.1195 3.33202 15.2652C2.76483 15.0073 2.22433 14.7008 1.75 14.3467ZM19.25 11.375V8.22172C18.7757 8.5758 18.2352 8.88235 17.668 9.14016C15.7885 9.99449 13.2534 10.5 10.5 10.5C7.74663 10.5 5.21154 9.99449 3.33202 9.14016C2.76483 8.88235 2.22433 8.5758 1.75 8.22172V11.375C1.75 12.029 2.37315 12.907 4.05617 13.672C5.66022 14.4011 7.93763 14.875 10.5 14.875C13.0624 14.875 15.3398 14.4011 16.9438 13.672C18.6269 12.907 19.25 12.029 19.25 11.375Z" fill="#0F0F0F"/>
|
|
3
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.1408 14.1591H14.7587V19.25H18.199V18.1364H16.1408V14.1591Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M8.23721 14.1591H9.95738L11.1406 17.0426H11.2003L12.3835 14.1591H14.1037V19.25H12.7514V16.3068H12.7116L11.5781 19.2102H10.7628L9.62925 16.2869H9.58948V19.25H8.23721V14.1591Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M5.2151 15.6406L4.37987 14.1591H2.82874L4.3401 16.7046L2.77902 19.25H4.35005L5.2151 17.7386H5.25487L6.11993 19.25H7.7009L6.11993 16.7046L7.64124 14.1591H6.10004L5.25487 15.6406H5.2151Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M4.375 0C1.95875 0 0 1.95875 0 4.375V20.125C0 22.5412 1.95875 24.5 4.375 24.5H16.625C19.0412 24.5 21 22.5412 21 20.125V4.375C21 1.95875 19.0412 0 16.625 0H4.375ZM1.75 4.375C1.75 2.92525 2.92525 1.75 4.375 1.75H16.625C18.0747 1.75 19.25 2.92525 19.25 4.375V20.125C19.25 21.5747 18.0747 22.75 16.625 22.75H4.375C2.92525 22.75 1.75 21.5747 1.75 20.125V4.375Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.1408 14.1591H14.7587V19.25H18.199V18.1364H16.1408V14.1591Z" fill="#0F0F0F"/>
|
|
3
|
-
<path d="M8.23721 14.1591H9.95738L11.1406 17.0426H11.2003L12.3835 14.1591H14.1037V19.25H12.7514V16.3068H12.7116L11.5781 19.2102H10.7628L9.62925 16.2869H9.58948V19.25H8.23721V14.1591Z" fill="#0F0F0F"/>
|
|
4
|
-
<path d="M5.2151 15.6406L4.37987 14.1591H2.82874L4.3401 16.7046L2.77902 19.25H4.35005L5.2151 17.7386H5.25487L6.11993 19.25H7.7009L6.11993 16.7046L7.64124 14.1591H6.10004L5.25487 15.6406H5.2151Z" fill="#0F0F0F"/>
|
|
5
|
-
<path d="M4.375 0C1.95875 0 0 1.95875 0 4.375V20.125C0 22.5412 1.95875 24.5 4.375 24.5H16.625C19.0412 24.5 21 22.5412 21 20.125V4.375C21 1.95875 19.0412 0 16.625 0H4.375ZM1.75 4.375C1.75 2.92525 2.92525 1.75 4.375 1.75H16.625C18.0747 1.75 19.25 2.92525 19.25 4.375V20.125C19.25 21.5747 18.0747 22.75 16.625 22.75H4.375C2.92525 22.75 1.75 21.5747 1.75 20.125V4.375Z" fill="#0F0F0F"/>
|
|
6
|
-
</svg>
|
|
Binary file
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>WidgetsPlayground</title>
|
|
6
|
-
<base href="/">
|
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
-
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<app-root></app-root>
|
|
12
|
-
</body>
|
|
13
|
-
</html>
|