@verisoft/ui-govcz 18.5.0 → 18.6.1
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/esm2022/index.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/button/button.component.mjs +87 -0
- package/esm2022/lib/components/button/index.mjs +2 -0
- package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
- package/esm2022/lib/components/calendar/index.mjs +2 -0
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
- package/esm2022/lib/components/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
- package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
- package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
- package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
- package/esm2022/lib/components/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/errors/error.component.mjs +34 -0
- package/esm2022/lib/components/errors/index.mjs +2 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
- package/esm2022/lib/components/form-field/index.mjs +2 -0
- package/esm2022/lib/components/header/header.component.mjs +85 -0
- package/esm2022/lib/components/header/index.mjs +2 -0
- package/esm2022/lib/components/index.mjs +34 -0
- package/esm2022/lib/components/input-group/index.mjs +2 -0
- package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
- package/esm2022/lib/components/loader/index.mjs +2 -0
- package/esm2022/lib/components/loader/loader.component.mjs +34 -0
- package/esm2022/lib/components/multiselect/index.mjs +2 -0
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
- package/esm2022/lib/components/number-input/index.mjs +2 -0
- package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
- package/esm2022/lib/components/page-header/index.mjs +2 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
- package/esm2022/lib/components/password/index.mjs +2 -0
- package/esm2022/lib/components/password/password.component.mjs +94 -0
- package/esm2022/lib/components/radiobutton/index.mjs +2 -0
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
- package/esm2022/lib/components/search/index.mjs +2 -0
- package/esm2022/lib/components/search/search.component.mjs +40 -0
- package/esm2022/lib/components/section/index.mjs +2 -0
- package/esm2022/lib/components/section/section.component.mjs +70 -0
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/index.mjs +7 -0
- package/esm2022/lib/components/side-menu/index.mjs +3 -0
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
- package/esm2022/lib/components/snackbar/index.mjs +3 -0
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
- package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
- package/esm2022/lib/components/stepper/index.mjs +2 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
- package/esm2022/lib/components/switch/index.mjs +2 -0
- package/esm2022/lib/components/switch/switch.component.mjs +45 -0
- package/esm2022/lib/components/tab-view/index.mjs +4 -0
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
- package/esm2022/lib/components/table/table.component.mjs +359 -0
- package/esm2022/lib/components/table/table.model.mjs +14 -0
- package/esm2022/lib/components/textarea/index.mjs +2 -0
- package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
- package/esm2022/lib/components/textfield/index.mjs +2 -0
- package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
- package/esm2022/lib/components/tooltip/index.mjs +2 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
- package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
- package/esm2022/lib/icons.mjs +35 -0
- package/esm2022/lib/index.mjs +6 -0
- package/esm2022/lib/init.service.mjs +17 -0
- package/esm2022/lib/pages/index.mjs +4 -0
- package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
- package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
- package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
- package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
- package/esm2022/lib/pages/not-found/index.mjs +2 -0
- package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/index.mjs +4 -0
- package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
- package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
- package/esm2022/verisoft-ui-govcz.mjs +5 -0
- package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
- package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
- package/{src/index.ts → index.d.ts} +1 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
- package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
- package/lib/components/button/button.component.d.ts +26 -0
- package/lib/components/button/index.d.ts +1 -0
- package/lib/components/calendar/calendar.component.d.ts +23 -0
- package/lib/components/calendar/index.d.ts +1 -0
- package/lib/components/checkbox/checkbox.component.d.ts +15 -0
- package/lib/components/checkbox/index.d.ts +1 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
- package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
- package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
- package/lib/components/dropdown/dropdown.component.d.ts +65 -0
- package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
- package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
- package/lib/components/errors/error.component.d.ts +14 -0
- package/lib/components/errors/index.d.ts +1 -0
- package/lib/components/form-field/form-field.component.d.ts +25 -0
- package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
- package/lib/components/header/header.component.d.ts +25 -0
- package/lib/components/header/index.d.ts +1 -0
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
- package/lib/components/input-group/index.d.ts +1 -0
- package/lib/components/input-group/input-group.component.d.ts +24 -0
- package/lib/components/loader/index.d.ts +1 -0
- package/lib/components/loader/loader.component.d.ts +8 -0
- package/lib/components/multiselect/index.d.ts +1 -0
- package/lib/components/multiselect/multiselect.component.d.ts +35 -0
- package/lib/components/number-input/index.d.ts +1 -0
- package/lib/components/number-input/number-input.component.d.ts +29 -0
- package/lib/components/page-header/index.d.ts +1 -0
- package/lib/components/page-header/page-header.component.d.ts +9 -0
- package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
- package/lib/components/password/password.component.d.ts +23 -0
- package/lib/components/radiobutton/index.d.ts +1 -0
- package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
- package/lib/components/search/index.d.ts +1 -0
- package/lib/components/search/search.component.d.ts +14 -0
- package/lib/components/section/index.d.ts +1 -0
- package/lib/components/section/section.component.d.ts +18 -0
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
- package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
- package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
- package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
- package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
- package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
- package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
- package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
- package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
- package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
- package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
- package/lib/components/side-menu/side-menu.component.d.ts +15 -0
- package/lib/components/side-menu/side-menu.module.d.ts +12 -0
- package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
- package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
- package/lib/components/snackbar/snackbar.component.d.ts +18 -0
- package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
- package/lib/components/stepper/index.d.ts +1 -0
- package/lib/components/stepper/stepper.component.d.ts +20 -0
- package/lib/components/switch/index.d.ts +1 -0
- package/lib/components/switch/switch.component.d.ts +12 -0
- package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
- package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
- package/lib/components/tab-view/tab-view.component.d.ts +19 -0
- package/lib/components/tab-view/tab-view.module.d.ts +12 -0
- package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
- package/lib/components/table/table-pagination-info.component.d.ts +12 -0
- package/lib/components/table/table.component.d.ts +91 -0
- package/lib/components/table/table.model.d.ts +3 -0
- package/lib/components/textarea/index.d.ts +1 -0
- package/lib/components/textarea/textarea.component.d.ts +25 -0
- package/lib/components/textfield/index.d.ts +1 -0
- package/lib/components/textfield/textfield.component.d.ts +28 -0
- package/lib/components/tooltip/index.d.ts +1 -0
- package/lib/components/tooltip/tooltip.component.d.ts +18 -0
- package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
- package/lib/icons.d.ts +2 -0
- package/{src/lib/index.ts → lib/index.d.ts} +5 -5
- package/lib/init.service.d.ts +6 -0
- package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
- package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
- package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
- package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
- package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
- package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
- package/lib/pages/not-found/not-found.component.d.ts +6 -0
- package/lib/pipes/color/color.pipe.d.ts +8 -0
- package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
- package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
- package/lib/pipes/size/size.pipe.d.ts +8 -0
- package/package.json +39 -21
- package/.eslintrc.json +0 -48
- package/assets/i18n/cs.json +0 -9
- package/assets/i18n/en.json +0 -9
- package/assets/icons/components/24-7.svg +0 -12
- package/assets/icons/components/NO-ICON.svg +0 -2
- package/assets/icons/components/add.svg +0 -6
- package/assets/icons/components/all.svg +0 -3
- package/assets/icons/components/arrival.svg +0 -12
- package/assets/icons/components/arrow-left.svg +0 -3
- package/assets/icons/components/arrow-right.svg +0 -3
- package/assets/icons/components/bars.svg +0 -3
- package/assets/icons/components/bell.svg +0 -4
- package/assets/icons/components/big-help.svg +0 -12
- package/assets/icons/components/book.svg +0 -10
- package/assets/icons/components/bookmarks.svg +0 -11
- package/assets/icons/components/box-arrow-up-right.svg +0 -11
- package/assets/icons/components/business-file.svg +0 -14
- package/assets/icons/components/businessman.svg +0 -3
- package/assets/icons/components/cactus.svg +0 -14
- package/assets/icons/components/calendar.svg +0 -3
- package/assets/icons/components/camera.svg +0 -5
- package/assets/icons/components/car.svg +0 -5
- package/assets/icons/components/card-400.svg +0 -11
- package/assets/icons/components/card-401.svg +0 -11
- package/assets/icons/components/card-403.svg +0 -11
- package/assets/icons/components/card-404.svg +0 -11
- package/assets/icons/components/card-500.svg +0 -11
- package/assets/icons/components/card-502.svg +0 -11
- package/assets/icons/components/card-503.svg +0 -12
- package/assets/icons/components/card-504.svg +0 -15
- package/assets/icons/components/caret-right-fill.svg +0 -3
- package/assets/icons/components/certification.svg +0 -14
- package/assets/icons/components/chamber-deputies-cr.svg +0 -11
- package/assets/icons/components/chamber-deputies.svg +0 -13
- package/assets/icons/components/chat.svg +0 -11
- package/assets/icons/components/check-circle.svg +0 -4
- package/assets/icons/components/check-lg.svg +0 -3
- package/assets/icons/components/chevron-double-left.svg +0 -4
- package/assets/icons/components/chevron-double-right.svg +0 -4
- package/assets/icons/components/chevron-down.svg +0 -3
- package/assets/icons/components/chevron-left.svg +0 -3
- package/assets/icons/components/chevron-right.svg +0 -3
- package/assets/icons/components/chevron-up.svg +0 -3
- package/assets/icons/components/cities.svg +0 -17
- package/assets/icons/components/city-office.svg +0 -17
- package/assets/icons/components/coins.svg +0 -14
- package/assets/icons/components/communication.svg +0 -4
- package/assets/icons/components/confusion.svg +0 -8
- package/assets/icons/components/contact.svg +0 -6
- package/assets/icons/components/copy.svg +0 -10
- package/assets/icons/components/court.svg +0 -5
- package/assets/icons/components/covid.svg +0 -5
- package/assets/icons/components/czech-lion.svg +0 -134
- package/assets/icons/components/dash-lg.svg +0 -3
- package/assets/icons/components/diagram.svg +0 -3
- package/assets/icons/components/digital.svg +0 -10
- package/assets/icons/components/disability.svg +0 -5
- package/assets/icons/components/doc-agreement.svg +0 -7
- package/assets/icons/components/doc-basic-info.svg +0 -18
- package/assets/icons/components/doc-business.svg +0 -8
- package/assets/icons/components/doc-car-point-list.svg +0 -16
- package/assets/icons/components/doc-diploma.svg +0 -17
- package/assets/icons/components/doc-driver-info.svg +0 -8
- package/assets/icons/components/doc-election.svg +0 -13
- package/assets/icons/components/doc-filled.svg +0 -16
- package/assets/icons/components/doc-health.svg +0 -3
- package/assets/icons/components/doc-judgment.svg +0 -8
- package/assets/icons/components/doc-patient.svg +0 -8
- package/assets/icons/components/doc-personal-info.svg +0 -11
- package/assets/icons/components/doc-petition.svg +0 -8
- package/assets/icons/components/doc-registers.svg +0 -7
- package/assets/icons/components/doc-review.svg +0 -20
- package/assets/icons/components/doc-search.svg +0 -8
- package/assets/icons/components/doc-stamp.svg +0 -15
- package/assets/icons/components/doc-state.svg +0 -13
- package/assets/icons/components/doc-taxes.svg +0 -16
- package/assets/icons/components/doc-universal.svg +0 -13
- package/assets/icons/components/doc-visa.svg +0 -14
- package/assets/icons/components/documents.svg +0 -11
- package/assets/icons/components/download.svg +0 -4
- package/assets/icons/components/driver-file.svg +0 -14
- package/assets/icons/components/driver.svg +0 -7
- package/assets/icons/components/driving-licence.svg +0 -7
- package/assets/icons/components/email-notification.svg +0 -12
- package/assets/icons/components/empty-file.svg +0 -13
- package/assets/icons/components/energy.svg +0 -11
- package/assets/icons/components/envelope-fill.svg +0 -3
- package/assets/icons/components/envelope.svg +0 -3
- package/assets/icons/components/error.svg +0 -12
- package/assets/icons/components/european-parliament.svg +0 -11
- package/assets/icons/components/exclamation-lg.svg +0 -3
- package/assets/icons/components/exclamation-triangle-fill.svg +0 -10
- package/assets/icons/components/export.svg +0 -13
- package/assets/icons/components/eye.svg +0 -4
- package/assets/icons/components/family.svg +0 -12
- package/assets/icons/components/fast-forward.svg +0 -1
- package/assets/icons/components/filter.svg +0 -3
- package/assets/icons/components/gear.svg +0 -11
- package/assets/icons/components/geo-alt-fill.svg +0 -10
- package/assets/icons/components/globe.svg +0 -12
- package/assets/icons/components/graduate.svg +0 -4
- package/assets/icons/components/group.svg +0 -3
- package/assets/icons/components/hand-503.svg +0 -10
- package/assets/icons/components/hand-504.svg +0 -7
- package/assets/icons/components/hand.svg +0 -14
- package/assets/icons/components/health.svg +0 -5
- package/assets/icons/components/help.svg +0 -4
- package/assets/icons/components/history.svg +0 -4
- package/assets/icons/components/holiday.svg +0 -13
- package/assets/icons/components/hourglass.svg +0 -4
- package/assets/icons/components/house-door-fill.svg +0 -3
- package/assets/icons/components/house.svg +0 -13
- package/assets/icons/components/id-card.svg +0 -6
- package/assets/icons/components/id-info.svg +0 -9
- package/assets/icons/components/id.svg +0 -6
- package/assets/icons/components/illness.svg +0 -9
- package/assets/icons/components/info-circle-fill.svg +0 -10
- package/assets/icons/components/info-circle.svg +0 -11
- package/assets/icons/components/info-list.svg +0 -14
- package/assets/icons/components/info.svg +0 -3
- package/assets/icons/components/institute-file.svg +0 -23
- package/assets/icons/components/institution.svg +0 -10
- package/assets/icons/components/job-loss.svg +0 -4
- package/assets/icons/components/job.svg +0 -3
- package/assets/icons/components/lightbulb-fill.svg +0 -10
- package/assets/icons/components/list.svg +0 -3
- package/assets/icons/components/loader.svg +0 -3
- package/assets/icons/components/login.svg +0 -11
- package/assets/icons/components/logout.svg +0 -13
- package/assets/icons/components/map.svg +0 -11
- package/assets/icons/components/mobile-phone.svg +0 -13
- package/assets/icons/components/moon.svg +0 -10
- package/assets/icons/components/mouse.svg +0 -3
- package/assets/icons/components/my-filing.svg +0 -15
- package/assets/icons/components/my-state-data.svg +0 -19
- package/assets/icons/components/new-comments.svg +0 -6
- package/assets/icons/components/newborn.svg +0 -16
- package/assets/icons/components/news.svg +0 -20
- package/assets/icons/components/packet.svg +0 -11
- package/assets/icons/components/passport.svg +0 -7
- package/assets/icons/components/pencil.svg +0 -3
- package/assets/icons/components/personal-file.svg +0 -14
- package/assets/icons/components/pet.svg +0 -10
- package/assets/icons/components/petrol-station.svg +0 -14
- package/assets/icons/components/pills.svg +0 -4
- package/assets/icons/components/plus-lg.svg +0 -3
- package/assets/icons/components/population-register.svg +0 -12
- package/assets/icons/components/port-card.svg +0 -8
- package/assets/icons/components/portal.svg +0 -8
- package/assets/icons/components/pregnant.svg +0 -11
- package/assets/icons/components/president.svg +0 -13
- package/assets/icons/components/presidential-election.svg +0 -12
- package/assets/icons/components/print-fill.svg +0 -4
- package/assets/icons/components/profile-settings.svg +0 -13
- package/assets/icons/components/property.svg +0 -4
- package/assets/icons/components/question-circle.svg +0 -4
- package/assets/icons/components/queue.svg +0 -13
- package/assets/icons/components/quotes.svg +0 -6
- package/assets/icons/components/region.svg +0 -11
- package/assets/icons/components/regional-elections-clear.svg +0 -11
- package/assets/icons/components/regional-elections.svg +0 -12
- package/assets/icons/components/register-of-persons.svg +0 -7
- package/assets/icons/components/retiree.svg +0 -8
- package/assets/icons/components/rings.svg +0 -5
- package/assets/icons/components/search.svg +0 -10
- package/assets/icons/components/senate.svg +0 -11
- package/assets/icons/components/senior.svg +0 -4
- package/assets/icons/components/settings.svg +0 -13
- package/assets/icons/components/simple-envelope.svg +0 -3
- package/assets/icons/components/sms-notification.svg +0 -7
- package/assets/icons/components/sos.svg +0 -6
- package/assets/icons/components/star-fill.svg +0 -10
- package/assets/icons/components/state-file.svg +0 -8
- package/assets/icons/components/sun.svg +0 -10
- package/assets/icons/components/telephone.svg +0 -10
- package/assets/icons/components/three-dots-vertical.svg +0 -3
- package/assets/icons/components/time.svg +0 -4
- package/assets/icons/components/tombstone.svg +0 -7
- package/assets/icons/components/trash.svg +0 -6
- package/assets/icons/components/twitter-x.svg +0 -10
- package/assets/icons/components/upload.svg +0 -4
- package/assets/icons/components/user-login.svg +0 -13
- package/assets/icons/components/user.svg +0 -3
- package/assets/icons/components/vaccine.svg +0 -11
- package/assets/icons/components/x-circle.svg +0 -4
- package/assets/icons/components/x-lg.svg +0 -3
- package/assets/icons/components/x.svg +0 -3
- package/assets/logos/v-logo.svg +0 -4
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -10
- package/project.json +0 -56
- package/src/config.d.ts +0 -10
- package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
- package/src/lib/components/button/button.component.html +0 -26
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.ts +0 -72
- package/src/lib/components/button/index.ts +0 -1
- package/src/lib/components/calendar/calendar.component.html +0 -28
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.ts +0 -79
- package/src/lib/components/calendar/index.ts +0 -1
- package/src/lib/components/checkbox/checkbox.component.html +0 -23
- package/src/lib/components/checkbox/checkbox.component.scss +0 -0
- package/src/lib/components/checkbox/checkbox.component.ts +0 -62
- package/src/lib/components/checkbox/index.ts +0 -1
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
- package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
- package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
- package/src/lib/components/dropdown/dropdown.component.html +0 -90
- package/src/lib/components/dropdown/dropdown.component.scss +0 -108
- package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
- package/src/lib/components/dropdown/dropdown.component.ts +0 -297
- package/src/lib/components/errors/error.component.html +0 -11
- package/src/lib/components/errors/error.component.scss +0 -0
- package/src/lib/components/errors/error.component.spec.ts +0 -19
- package/src/lib/components/errors/error.component.ts +0 -30
- package/src/lib/components/errors/index.ts +0 -1
- package/src/lib/components/form-field/form-field.component.html +0 -14
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
- package/src/lib/components/form-field/form-field.component.ts +0 -78
- package/src/lib/components/header/header.component.html +0 -122
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.ts +0 -91
- package/src/lib/components/header/index.ts +0 -1
- package/src/lib/components/input-group/index.ts +0 -1
- package/src/lib/components/input-group/input-group.component.html +0 -41
- package/src/lib/components/input-group/input-group.component.scss +0 -0
- package/src/lib/components/input-group/input-group.component.ts +0 -77
- package/src/lib/components/loader/index.ts +0 -1
- package/src/lib/components/loader/loader.component.html +0 -7
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +0 -21
- package/src/lib/components/loader/loader.component.ts +0 -33
- package/src/lib/components/multiselect/index.ts +0 -1
- package/src/lib/components/multiselect/multiselect.component.html +0 -21
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
- package/src/lib/components/multiselect/multiselect.component.ts +0 -119
- package/src/lib/components/number-input/index.ts +0 -1
- package/src/lib/components/number-input/number-input.component.html +0 -48
- package/src/lib/components/number-input/number-input.component.scss +0 -0
- package/src/lib/components/number-input/number-input.component.ts +0 -82
- package/src/lib/components/page-header/index.ts +0 -1
- package/src/lib/components/page-header/page-header.component.html +0 -3
- package/src/lib/components/page-header/page-header.component.scss +0 -11
- package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
- package/src/lib/components/page-header/page-header.component.ts +0 -29
- package/src/lib/components/password/password.component.html +0 -31
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +0 -21
- package/src/lib/components/password/password.component.ts +0 -85
- package/src/lib/components/radiobutton/index.ts +0 -1
- package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
- package/src/lib/components/search/index.ts +0 -1
- package/src/lib/components/search/search.component.html +0 -23
- package/src/lib/components/search/search.component.scss +0 -0
- package/src/lib/components/search/search.component.ts +0 -47
- package/src/lib/components/section/index.ts +0 -1
- package/src/lib/components/section/section.component.html +0 -26
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.ts +0 -57
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
- package/src/lib/components/shared-components/filter/filter.component.html +0 -68
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
- package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
- package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
- package/src/lib/components/side-menu/side-menu.component.html +0 -25
- package/src/lib/components/side-menu/side-menu.component.scss +0 -23
- package/src/lib/components/side-menu/side-menu.component.ts +0 -42
- package/src/lib/components/side-menu/side-menu.module.ts +0 -56
- package/src/lib/components/sidemenu/index.ts +0 -2
- package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
- package/src/lib/components/snackbar/snackbar.component.html +0 -14
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
- package/src/lib/components/snackbar/snackbar.component.ts +0 -45
- package/src/lib/components/stepper/index.ts +0 -1
- package/src/lib/components/stepper/stepper.component.html +0 -35
- package/src/lib/components/stepper/stepper.component.scss +0 -9
- package/src/lib/components/stepper/stepper.component.ts +0 -61
- package/src/lib/components/switch/index.ts +0 -1
- package/src/lib/components/switch/switch.component.html +0 -16
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.ts +0 -37
- package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
- package/src/lib/components/tab-view/tab-view.component.html +0 -51
- package/src/lib/components/tab-view/tab-view.component.scss +0 -43
- package/src/lib/components/tab-view/tab-view.component.ts +0 -61
- package/src/lib/components/tab-view/tab-view.module.ts +0 -25
- package/src/lib/components/table/table-pagination-info.component.html +0 -9
- package/src/lib/components/table/table-pagination-info.component.ts +0 -22
- package/src/lib/components/table/table.component.html +0 -198
- package/src/lib/components/table/table.component.scss +0 -193
- package/src/lib/components/table/table.component.ts +0 -387
- package/src/lib/components/table/table.model.ts +0 -17
- package/src/lib/components/table/table.models.ts +0 -12
- package/src/lib/components/textarea/index.ts +0 -1
- package/src/lib/components/textarea/textarea.component.html +0 -50
- package/src/lib/components/textarea/textarea.component.scss +0 -0
- package/src/lib/components/textarea/textarea.component.ts +0 -78
- package/src/lib/components/textfield/index.ts +0 -1
- package/src/lib/components/textfield/textfield.component.html +0 -56
- package/src/lib/components/textfield/textfield.component.scss +0 -0
- package/src/lib/components/textfield/textfield.component.ts +0 -114
- package/src/lib/components/tooltip/index.ts +0 -1
- package/src/lib/components/tooltip/tooltip.component.html +0 -10
- package/src/lib/components/tooltip/tooltip.component.scss +0 -0
- package/src/lib/components/tooltip/tooltip.component.ts +0 -57
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
- package/src/lib/icons.ts +0 -36
- package/src/lib/init.service.ts +0 -11
- package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
- package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
- package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
- package/src/lib/pages/error-page/error-page.component.html +0 -5
- package/src/lib/pages/error-page/error-page.component.scss +0 -0
- package/src/lib/pages/error-page/error-page.component.ts +0 -32
- package/src/lib/pages/error-page/error-page.constants.ts +0 -19
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
- package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
- package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
- package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
- package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
- package/src/lib/pages/not-found/not-found.component.html +0 -5
- package/src/lib/pages/not-found/not-found.component.ts +0 -18
- package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
- package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
- package/src/lib/pipes/color/color.pipe.ts +0 -24
- package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
- package/src/lib/pipes/size/size.pipe.ts +0 -20
- package/src/sass/header.css +0 -526
- package/src/sass/header.scss +0 -480
- package/src/sass/main.scss +0 -246
- package/src/sass/scrollbar.scss +0 -22
- package/src/sass/sidemenu.css +0 -205
- package/src/sass/vendors/_bootstrap.scss +0 -2
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -32
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -16
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_85_8083)">
|
|
3
|
-
<path d="M1 2.828C1.885 2.458 3.154 2.059 4.388 1.935C5.718 1.801 6.846 1.998 7.5 2.687V12.433C6.565 11.903 5.38 11.83 4.287 11.94C3.107 12.06 1.917 12.401 1 12.751V2.828ZM8.5 2.687C9.154 1.998 10.282 1.801 11.612 1.935C12.846 2.059 14.115 2.458 15 2.828V12.751C14.082 12.401 12.893 12.059 11.713 11.941C10.619 11.83 9.435 11.902 8.5 12.433V2.687ZM8 1.783C7.015 0.936003 5.587 0.810003 4.287 0.940003C2.773 1.093 1.245 1.612 0.293 2.045C0.205649 2.08473 0.131575 2.14876 0.079621 2.22944C0.0276667 2.31012 2.65714e-05 2.40404 0 2.5L0 13.5C2.3162e-05 13.5837 0.0210371 13.666 0.0611171 13.7394C0.101197 13.8128 0.159062 13.875 0.229411 13.9203C0.29976 13.9656 0.380345 13.9925 0.463783 13.9986C0.547222 14.0046 0.630848 13.9896 0.707 13.955C1.589 13.555 3.01 13.074 4.387 12.935C5.796 12.793 6.977 13.022 7.61 13.812C7.65685 13.8704 7.71622 13.9175 7.78372 13.9499C7.85122 13.9823 7.92513 13.9991 8 13.9991C8.07487 13.9991 8.14878 13.9823 8.21628 13.9499C8.28378 13.9175 8.34315 13.8704 8.39 13.812C9.023 13.022 10.204 12.793 11.612 12.935C12.99 13.074 14.412 13.555 15.293 13.955C15.3692 13.9896 15.4528 14.0046 15.5362 13.9986C15.6197 13.9925 15.7002 13.9656 15.7706 13.9203C15.8409 13.875 15.8988 13.8128 15.9389 13.7394C15.979 13.666 16 13.5837 16 13.5V2.5C16 2.40404 15.9723 2.31012 15.9204 2.22944C15.8684 2.14876 15.7944 2.08473 15.707 2.045C14.755 1.612 13.227 1.093 11.713 0.940003C10.413 0.809003 8.985 0.936003 8 1.783Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_85_8083">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_85_8043)">
|
|
3
|
-
<path d="M2 4C2 3.46957 2.21071 2.96086 2.58579 2.58579C2.96086 2.21071 3.46957 2 4 2H10C10.5304 2 11.0391 2.21071 11.4142 2.58579C11.7893 2.96086 12 3.46957 12 4V15.5C12 15.5904 11.9754 15.6792 11.9289 15.7568C11.8824 15.8343 11.8157 15.8979 11.736 15.9405C11.6563 15.9832 11.5664 16.0035 11.4761 15.9992C11.3858 15.9948 11.2983 15.9661 11.223 15.916L7 13.101L2.777 15.916C2.70171 15.9661 2.61423 15.9948 2.52389 15.9992C2.43355 16.0035 2.34373 15.9832 2.264 15.9405C2.18427 15.8979 2.1176 15.8343 2.07111 15.7568C2.02462 15.6792 2.00005 15.5904 2 15.5V4ZM4 3C3.73478 3 3.48043 3.10536 3.29289 3.29289C3.10536 3.48043 3 3.73478 3 4V14.566L6.723 12.084C6.80506 12.0294 6.90143 12.0003 7 12.0003C7.09857 12.0003 7.19494 12.0294 7.277 12.084L11 14.566V4C11 3.73478 10.8946 3.48043 10.7071 3.29289C10.5196 3.10536 10.2652 3 10 3H4Z" fill="currentColor"/>
|
|
4
|
-
<path d="M4.26801 1H12C12.2652 1 12.5196 1.10536 12.7071 1.29289C12.8946 1.48043 13 1.73478 13 2V13.768L13.223 13.916C13.2983 13.9661 13.3858 13.9948 13.4761 13.9992C13.5665 14.0035 13.6563 13.9832 13.736 13.9405C13.8157 13.8979 13.8824 13.8343 13.9289 13.7568C13.9754 13.6792 14 13.5904 14 13.5V2C14 1.46957 13.7893 0.960859 13.4142 0.585786C13.0391 0.210714 12.5304 0 12 0L6.00001 0C5.64894 8.91844e-06 5.30406 0.0924257 5.00003 0.267962C4.69601 0.443498 4.44354 0.695969 4.26801 1Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_85_8043">
|
|
8
|
-
<rect width="16" height="16" fill="white"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_85_7948)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.636 3.5C8.636 3.36739 8.58332 3.24021 8.48955 3.14645C8.39579 3.05268 8.26861 3 8.136 3H1.5C1.10218 3 0.720644 3.15804 0.43934 3.43934C0.158035 3.72064 0 4.10218 0 4.5L0 14.5C0 14.8978 0.158035 15.2794 0.43934 15.5607C0.720644 15.842 1.10218 16 1.5 16H11.5C11.8978 16 12.2794 15.842 12.5607 15.5607C12.842 15.2794 13 14.8978 13 14.5V7.864C13 7.73139 12.9473 7.60421 12.8536 7.51045C12.7598 7.41668 12.6326 7.364 12.5 7.364C12.3674 7.364 12.2402 7.41668 12.1464 7.51045C12.0527 7.60421 12 7.73139 12 7.864V14.5C12 14.6326 11.9473 14.7598 11.8536 14.8536C11.7598 14.9473 11.6326 15 11.5 15H1.5C1.36739 15 1.24021 14.9473 1.14645 14.8536C1.05268 14.7598 1 14.6326 1 14.5V4.5C1 4.36739 1.05268 4.24021 1.14645 4.14645C1.24021 4.05268 1.36739 4 1.5 4H8.136C8.26861 4 8.39579 3.94732 8.48955 3.85355C8.58332 3.75979 8.636 3.63261 8.636 3.5Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 0.5C16 0.367392 15.9473 0.240215 15.8535 0.146447C15.7598 0.0526784 15.6326 0 15.5 0L10.5 0C10.3674 0 10.2402 0.0526784 10.1464 0.146447C10.0527 0.240215 9.99999 0.367392 9.99999 0.5C9.99999 0.632608 10.0527 0.759785 10.1464 0.853553C10.2402 0.947322 10.3674 1 10.5 1H14.293L6.14599 9.146C6.0995 9.19249 6.06263 9.24768 6.03747 9.30842C6.01231 9.36916 5.99936 9.43426 5.99936 9.5C5.99936 9.56574 6.01231 9.63084 6.03747 9.69158C6.06263 9.75232 6.0995 9.80751 6.14599 9.854C6.19248 9.90049 6.24767 9.93736 6.30841 9.96252C6.36915 9.98768 6.43425 10.0006 6.49999 10.0006C6.56573 10.0006 6.63084 9.98768 6.69157 9.96252C6.75231 9.93736 6.8075 9.90049 6.85399 9.854L15 1.707V5.5C15 5.63261 15.0527 5.75979 15.1464 5.85355C15.2402 5.94732 15.3674 6 15.5 6C15.6326 6 15.7598 5.94732 15.8535 5.85355C15.9473 5.75979 16 5.63261 16 5.5V0.5Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_85_7948">
|
|
8
|
-
<rect width="16" height="16" fill="white"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_985)">
|
|
3
|
-
<path d="M9 6.75085C9 7.16507 9.33579 7.50085 9.75 7.50085H18.25C18.6642 7.50085 19 7.16507 19 6.75085C19 6.33664 18.6642 6.00085 18.25 6.00085H9.75C9.33579 6.00085 9 6.33664 9 6.75085Z" fill="currentColor"/>
|
|
4
|
-
<path d="M19 10.7509C19 11.1651 18.6642 11.5009 18.25 11.5009H9.75C9.33579 11.5009 9 11.1651 9 10.7509C9 10.3366 9.33579 10.0009 9.75 10.0009H18.25C18.6642 10.0009 19 10.3366 19 10.7509Z" fill="currentColor"/>
|
|
5
|
-
<path d="M9.75 15.5009C9.33579 15.5009 9 15.1651 9 14.7509C9 14.3366 9.33579 14.0009 9.75 14.0009H15.25C15.6642 14.0009 16 14.3366 16 14.7509C16 15.1651 15.6642 15.5009 15.25 15.5009H9.75Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34 11.5009C34 14.5384 31.5376 17.0009 28.5 17.0009C25.4624 17.0009 23 14.5384 23 11.5009C23 8.46329 25.4624 6.00085 28.5 6.00085C31.5376 6.00085 34 8.46329 34 11.5009ZM32.5 11.5009C32.5 13.71 30.7091 15.5009 28.5 15.5009C26.2909 15.5009 24.5 13.71 24.5 11.5009C24.5 9.29172 26.2909 7.50086 28.5 7.50086C30.7091 7.50086 32.5 9.29172 32.5 11.5009Z" fill="currentColor"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M39 0.000854492C40.1046 0.000854492 41 0.896285 41 2.00085V16.0009H43C44.1046 16.0009 45 16.8963 45 18.0009V30.0009H45.6391C46.875 30.0009 47.815 31.1106 47.6119 32.3297L45.2785 46.3297C45.1178 47.294 44.2834 48.0009 43.3057 48.0009H2C0.895431 48.0009 0 47.1054 0 46.0009V18.0009C0 16.8963 0.89543 16.0009 2 16.0009H5V2.00085C5 0.896285 5.89543 0.000854492 7 0.000854492H39ZM17.0788 27.9931C16.7204 27.3787 16.0626 27.0009 15.3513 27.0009H6.5V2.00085C6.5 1.72471 6.72386 1.50085 7 1.50085H39C39.2761 1.50085 39.5 1.72471 39.5 2.00085V30.0009H37V26.5009C37 21.8064 33.1944 18.0009 28.5 18.0009C23.8056 18.0009 20 21.8064 20 26.5009V30.0009H18.25L17.0788 27.9931ZM35.5 26.5009V30.0009H21.5V26.5009C21.5 23.1025 23.9216 20.2698 27.1333 19.6342L28 20.5009L26.5 26.5009L28.5 29.5009L30.5 26.5009L29 20.5009L29.8667 19.6342C33.0784 20.2698 35.5 23.1025 35.5 26.5009ZM43.5 30.0009H41V17.5009H43C43.2761 17.5009 43.5 17.7247 43.5 18.0009V30.0009ZM1.5 18.0009C1.5 17.7247 1.72386 17.5009 2 17.5009H5V27.0009H4.73459C3.73929 27.0009 2.89545 27.7327 2.75469 28.718L1.5 37.5009V18.0009ZM17.3884 31.5009H45.6391C45.948 31.5009 46.1831 31.7783 46.1323 32.0831L43.7989 46.0831C43.7588 46.3241 43.5502 46.5009 43.3057 46.5009H2.30602C2.00174 46.5009 1.76801 46.2314 1.81104 45.9301L4.23962 28.9301C4.27481 28.6838 4.48577 28.5009 4.73459 28.5009H15.3513C15.5291 28.5009 15.6935 28.5953 15.7831 28.7489L17.3884 31.5009Z" fill="currentColor"/>
|
|
8
|
-
</g>
|
|
9
|
-
<defs>
|
|
10
|
-
<clipPath id="clip0_100_985">
|
|
11
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
12
|
-
</clipPath>
|
|
13
|
-
</defs>
|
|
14
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.25 7.75089V10H4C1.79086 10 0 11.7909 0 14V41C0 43.2092 1.79086 45 4 45H44C46.2091 45 48 43.2092 48 41V14C48 11.7909 46.2091 10 44 10H37.75V7.75089C37.75 5.12753 35.6234 3.00089 33 3.00089H15C12.3766 3.00089 10.25 5.12753 10.25 7.75089ZM15 4.50089C13.2051 4.50089 11.75 5.95596 11.75 7.75089V10H36.25V7.75089C36.25 5.95596 34.7949 4.50089 33 4.50089H15ZM4 11.5H44C45.3807 11.5 46.5 12.6193 46.5 14V22.8L40 23.5065V20.75C40 20.3358 39.6642 20 39.25 20C38.8358 20 38.5 20.3358 38.5 20.75V23.6695L24 25.2456L9.5 23.6695V20.75C9.5 20.3358 9.16421 20 8.75 20C8.33579 20 8 20.3358 8 20.75V23.5065L1.5 22.8V14C1.5 12.6193 2.61929 11.5 4 11.5ZM8 25.0153L1.5 24.3088V41C1.5 42.3807 2.61929 43.5 4 43.5H44C45.3807 43.5 46.5 42.3807 46.5 41V24.3088L40 25.0153V28.25C40 28.6642 39.6642 29 39.25 29C38.8358 29 38.5 28.6642 38.5 28.25V25.1784L24 26.7545L9.5 25.1784V28.25C9.5 28.6642 9.16421 29 8.75 29C8.33579 29 8 28.6642 8 28.25V25.0153Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_907)">
|
|
3
|
-
<path d="M22 32.7509C22 32.3366 22.3358 32.0009 22.75 32.0009H24.25C24.6642 32.0009 25 32.3366 25 32.7509C25 33.1651 24.6642 33.5009 24.25 33.5009H22.75C22.3358 33.5009 22 33.1651 22 32.7509Z" fill="currentColor"/>
|
|
4
|
-
<path d="M24.75 27.0009C24.3358 27.0009 24 27.3366 24 27.7509C24 28.1651 24.3358 28.5009 24.75 28.5009H26.25C26.6642 28.5009 27 28.1651 27 27.7509C27 27.3366 26.6642 27.0009 26.25 27.0009H24.75Z" fill="currentColor"/>
|
|
5
|
-
<path d="M20.75 20.0009C20.3358 20.0009 20 20.3366 20 20.7509C20 21.1651 20.3358 21.5009 20.75 21.5009H22.25C22.6642 21.5009 23 21.1651 23 20.7509C23 20.3366 22.6642 20.0009 22.25 20.0009H20.75Z" fill="currentColor"/>
|
|
6
|
-
<path d="M25 11.7509C25 11.3366 25.3358 11.0009 25.75 11.0009H27.25C27.6642 11.0009 28 11.3366 28 11.7509C28 12.1651 27.6642 12.5009 27.25 12.5009H25.75C25.3358 12.5009 25 12.1651 25 11.7509Z" fill="currentColor"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 46.5009V36.0009H32C35.5452 36.0009 38.5518 33.6948 39.6016 30.5009H40.25C40.6642 30.5009 41 30.1651 41 29.7509C41 29.3366 40.6642 29.0009 40.25 29.0009H39.9381C39.979 28.6733 40 28.3395 40 28.0009V24.5009H40.25C40.6642 24.5009 41 24.1651 41 23.7509C41 23.3366 40.6642 23.0009 40.25 23.0009H40V19.5009H40.25C40.6642 19.5009 41 19.1651 41 18.7509C41 18.3366 40.6642 18.0009 40.25 18.0009H40V15.0009C40 13.344 38.6569 12.0009 37 12.0009C35.3431 12.0009 34 13.344 34 15.0009V16.0009H33.75C33.3358 16.0009 33 16.3366 33 16.7509C33 17.1651 33.3358 17.5009 33.75 17.5009H34V25.0009H33.75C33.3358 25.0009 33 25.3366 33 25.7509C33 26.1651 33.3358 26.5009 33.75 26.5009H34V28.0009C34 29.1054 33.1046 30.0009 32 30.0009H30V21.5009H30.25C30.6642 21.5009 31 21.1651 31 20.7509C31 20.3366 30.6642 20.0009 30.25 20.0009H30V6.50085H30.25C30.6642 6.50085 31 6.16507 31 5.75085C31 5.33664 30.6642 5.00085 30.25 5.00085H29.8261C29.1489 2.13415 26.5736 0.000854492 23.5 0.000854492C20.0784 0.000854492 17.2743 2.64463 17.0189 6.00085H16.75C16.3358 6.00085 16 6.33664 16 6.75085C16 7.16507 16.3358 7.50085 16.75 7.50085H17V12.0009H16.75C16.3358 12.0009 16 12.3366 16 12.7509C16 13.1651 16.3358 13.5009 16.75 13.5009H17V24.0009C15.8954 24.0009 15 23.1054 15 22.0009V18.5009H15.25C15.6642 18.5009 16 18.1651 16 17.7509C16 17.3366 15.6642 17.0009 15.25 17.0009H15V11.5009C15 9.56786 13.433 8.00085 11.5 8.00085C9.567 8.00085 8 9.56786 8 11.5009V12.0009H7.75C7.33579 12.0009 7 12.3366 7 12.7509C7 13.1651 7.33579 13.5009 7.75 13.5009H8V20.0009H6.75C6.33579 20.0009 6 20.3366 6 20.7509C6 21.1651 6.33579 21.5009 6.75 21.5009H8V23.0009C8 27.4191 11.5817 31.0009 16 31.0009H17V46.5009H2.75C2.33579 46.5009 2 46.8366 2 47.2509C2 47.6651 2.33579 48.0009 2.75 48.0009H45.25C45.6642 48.0009 46 47.6651 46 47.2509C46 46.8366 45.6642 46.5009 45.25 46.5009H30ZM35.5 26.4582V28.0009C35.5 29.9339 33.933 31.5009 32 31.5009H30V34.5009H32C34.7039 34.5009 37.0223 32.8498 38.0018 30.5009H37.75C37.3358 30.5009 37 30.1651 37 29.7509C37 29.3366 37.3358 29.0009 37.75 29.0009H38.4236C38.4739 28.6749 38.5 28.3409 38.5 28.0009V24.5009H37.75C37.3358 24.5009 37 24.1651 37 23.7509C37 23.3366 37.3358 23.0009 37.75 23.0009H38.5V19.4582C38.2087 19.3552 38 19.0774 38 18.7509C38 18.4243 38.2087 18.1465 38.5 18.0435V15.0009C38.5 14.1724 37.8284 13.5009 37 13.5009C36.1716 13.5009 35.5 14.1724 35.5 15.0009V16.0009H36.25C36.6642 16.0009 37 16.3366 37 16.7509C37 17.1651 36.6642 17.5009 36.25 17.5009H35.5V25.0435C35.7913 25.1465 36 25.4243 36 25.7509C36 26.0774 35.7913 26.3552 35.5 26.4582ZM10.25 21.5009H9.5V23.0009C9.5 26.5907 12.4101 29.5009 16 29.5009H17V25.5009C15.067 25.5009 13.5 23.9339 13.5 22.0009V18.5009H12.75C12.3358 18.5009 12 18.1651 12 17.7509C12 17.3366 12.3358 17.0009 12.75 17.0009H13.5V11.5009C13.5 10.3963 12.6046 9.50085 11.5 9.50085C10.3954 9.50085 9.5 10.3963 9.5 11.5009V12.0435C9.7913 12.1465 10 12.4243 10 12.7509C10 13.0774 9.7913 13.3552 9.5 13.4582V20.0009H10.25C10.6642 20.0009 11 20.3366 11 20.7509C11 21.1651 10.6642 21.5009 10.25 21.5009ZM18.5 13.5009V46.5009H28.5V21.5009H27.75C27.3358 21.5009 27 21.1651 27 20.7509C27 20.3366 27.3358 20.0009 27.75 20.0009H28.5V6.50085H27.75C27.3358 6.50085 27 6.16507 27 5.75085C27 5.33664 27.3358 5.00085 27.75 5.00085H28.2711C27.634 2.9723 25.7388 1.50085 23.5 1.50085C20.8902 1.50085 18.7475 3.50031 18.52 6.05091C18.8008 6.1593 19 6.43181 19 6.75085C19 7.07741 18.7913 7.35522 18.5 7.45818V12.0009H19.25C19.6642 12.0009 20 12.3366 20 12.7509C20 13.1651 19.6642 13.5009 19.25 13.5009H18.5Z" fill="currentColor"/>
|
|
8
|
-
</g>
|
|
9
|
-
<defs>
|
|
10
|
-
<clipPath id="clip0_100_907">
|
|
11
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
12
|
-
</clipPath>
|
|
13
|
-
</defs>
|
|
14
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-calendar" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M40 16.2509C38.4812 16.2509 37.25 17.482 37.25 19.0008C37.25 20.5196 38.4812 21.7508 40 21.7508C41.5188 21.7508 42.75 20.5196 42.75 19.0008C42.75 17.482 41.5188 16.2509 40 16.2509ZM38.75 19.0008C38.75 18.3105 39.3096 17.7509 40 17.7509C40.6904 17.7509 41.25 18.3105 41.25 19.0008C41.25 19.6911 40.6904 20.2508 40 20.2508C39.3096 20.2508 38.75 19.6911 38.75 19.0008Z" fill="currentColor"/>
|
|
3
|
-
<path d="M24 19.7509C20.5482 19.7509 17.75 22.5491 17.75 26.0008H16.25C16.25 21.7206 19.7198 18.2509 24 18.2509V19.7509Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5936 6.25085C15.9532 6.25085 15.364 6.60066 15.0573 7.16287L12.6258 11.6206C12.582 11.7009 12.4979 11.7509 12.4064 11.7509H5C2.37665 11.7509 0.25 13.8775 0.25 16.5009V37.0009C0.25 39.6242 2.37665 41.7509 5 41.7509H43C45.6234 41.7509 47.75 39.6242 47.75 37.0009V16.5009C47.75 13.8775 45.6234 11.7509 43 11.7509H35.5936C35.5021 11.7509 35.418 11.7009 35.3742 11.6206L32.9427 7.16287C32.636 6.60066 32.0468 6.25085 31.4064 6.25085H16.5936ZM16.3742 7.88114C16.418 7.80083 16.5021 7.75085 16.5936 7.75085H31.4064C31.4979 7.75085 31.582 7.80083 31.6258 7.88114L34.0573 12.3389C34.364 12.9011 34.9532 13.2509 35.5936 13.2509H43C44.7949 13.2509 46.25 14.706 46.25 16.5009V32.2509H32.7474C34.008 30.4897 34.75 28.3319 34.75 26.0008C34.75 20.0638 29.9371 15.2509 24 15.2509C18.0629 15.2509 13.25 20.0638 13.25 26.0008C13.25 28.3319 13.992 30.4897 15.2526 32.2509H1.75V16.5009C1.75 14.706 3.20508 13.2509 5 13.2509H12.4064C13.0468 13.2509 13.636 12.9011 13.9427 12.3389L16.3742 7.88114ZM31.4498 33.7509C29.5176 35.6087 26.8922 36.7508 24 36.7508C21.1078 36.7508 18.4824 35.6087 16.5502 33.7509H1.75V37.0009C1.75 38.7958 3.20507 40.2509 5 40.2509H43C44.7949 40.2509 46.25 38.7958 46.25 37.0009V33.7509H31.4498ZM14.75 26.0008C14.75 20.8922 18.8914 16.7509 24 16.7509C29.1086 16.7509 33.25 20.8922 33.25 26.0008C33.25 31.1094 29.1086 35.2508 24 35.2508C18.8914 35.2508 14.75 31.1094 14.75 26.0008Z" fill="currentColor"/>
|
|
5
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 27C13 29.2091 11.2091 31 9 31C6.79086 31 5 29.2091 5 27C5 24.7909 6.79086 23 9 23C11.2091 23 13 24.7909 13 27ZM11.5 27C11.5 28.3807 10.3807 29.5 9 29.5C7.61929 29.5 6.5 28.3807 6.5 27C6.5 25.6193 7.61929 24.5 9 24.5C10.3807 24.5 11.5 25.6193 11.5 27Z" fill="currentColor"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M39 31C41.2091 31 43 29.2091 43 27C43 24.7909 41.2091 23 39 23C36.7909 23 35 24.7909 35 27C35 29.2091 36.7909 31 39 31ZM39 29.5C40.3807 29.5 41.5 28.3807 41.5 27C41.5 25.6193 40.3807 24.5 39 24.5C37.6193 24.5 36.5 25.6193 36.5 27C36.5 28.3807 37.6193 29.5 39 29.5Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.4342 6C11.055 6 8.92154 7.46527 8.06746 9.68587L6.31203 14.25H3.25C1.45507 14.25 0 15.7051 0 17.5C0 19.141 1.21623 20.498 2.79647 20.7186C1.68772 21.8073 1 23.3233 1 25V29.9534C1 32.0456 2.07927 33.9204 3.75 34.9978V39.25C3.75 40.7688 4.98122 42 6.5 42H9C10.5188 42 11.75 40.7688 11.75 39.25V36.7458C19.8857 37.75 28.1143 37.75 36.25 36.7458V39.25C36.25 40.7688 37.4812 42 39 42H41.5C43.0188 42 44.25 40.7688 44.25 39.25V34.9978C45.9207 33.9204 47 32.0456 47 29.9534V25C47 23.3233 46.3123 21.8073 45.2035 20.7186C46.7838 20.498 48 19.141 48 17.5C48 15.7051 46.5449 14.25 44.75 14.25H41.6884L39.9329 9.68587C39.0789 7.46527 36.9454 6 34.5662 6H13.4342ZM42.2653 15.75L43.6115 19.25H44.75C45.7165 19.25 46.5 18.4665 46.5 17.5C46.5 16.5335 45.7165 15.75 44.75 15.75H42.2653ZM3.25 15.75H5.7351L4.38895 19.25H3.25C2.2835 19.25 1.5 18.4665 1.5 17.5C1.5 16.5335 2.2835 15.75 3.25 15.75ZM41.9361 19.0726L38.5329 10.2243C37.9016 8.58302 36.3247 7.5 34.5662 7.5H13.4342C11.6757 7.5 10.0988 8.58303 9.46748 10.2243L6.06433 19.0725C6.36922 19.0248 6.68171 19 7 19H41C41.3184 19 41.6311 19.0248 41.9361 19.0726ZM7 20.5H41C43.4853 20.5 45.5 22.5147 45.5 25V29.9534C45.5 32.1412 43.9265 34.012 41.771 34.3869L40.8771 34.5423C29.7095 36.4845 18.2905 36.4845 7.1229 34.5423L6.22897 34.3869C4.07352 34.012 2.5 32.1412 2.5 29.9534V25C2.5 22.5147 4.51472 20.5 7 20.5ZM37.75 36.5492V39.25C37.75 39.9404 38.3096 40.5 39 40.5H41.5C42.1904 40.5 42.75 39.9404 42.75 39.25V35.6929C42.5156 35.7642 42.2747 35.8218 42.028 35.8647L41.1341 36.0202C40.0084 36.2159 38.8802 36.3923 37.75 36.5492ZM6.86589 36.0202C7.99157 36.2159 9.11978 36.3923 10.25 36.5492V39.25C10.25 39.9404 9.69036 40.5 9 40.5H6.5C5.80964 40.5 5.25 39.9404 5.25 39.25V35.6929C5.48438 35.7642 5.72531 35.8218 5.97196 35.8647L6.86589 36.0202Z" fill="currentColor"/>
|
|
5
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00088C25.1804 8.00088 26.2414 7.48958 26.9736 6.67636L36.098 15.8008H38.5022L27.8368 5.13544C27.943 4.77576 28 4.39498 28 4.00088C28 1.79175 26.2091 0.00088501 24 0.00088501C21.7909 0.00088501 20 1.79175 20 4.00088C20 4.39498 20.057 4.77576 20.1632 5.13544L9.4978 15.8008H11.902L21.0264 6.67636C21.7586 7.48958 22.8196 8.00088 24 8.00088ZM24 6.30089C25.2703 6.30089 26.3 5.27114 26.3 4.00088C26.3 2.73063 25.2703 1.70089 24 1.70089C22.7297 1.70089 21.7 2.73063 21.7 4.00088C21.7 5.27114 22.7297 6.30089 24 6.30089Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M27.7905 32.3933V34.2279C27.7905 35.1066 27.7032 35.8568 27.5285 36.4786C27.3589 37.0953 27.1122 37.5963 26.7885 37.9817C26.4647 38.3671 26.0768 38.6498 25.6246 38.8296C25.1775 39.0095 24.6764 39.0994 24.1215 39.0994C23.6795 39.0994 23.2684 39.0429 22.8882 38.9298C22.513 38.8168 22.1739 38.6395 21.8707 38.398C21.5675 38.1564 21.308 37.8455 21.0922 37.4653C20.8815 37.0799 20.717 36.6199 20.5988 36.0855C20.4858 35.5511 20.4293 34.9319 20.4293 34.2279V32.3933C20.4293 31.5094 20.5166 30.7643 20.6913 30.1579C20.8661 29.5464 21.1153 29.0505 21.439 28.6703C21.7628 28.2849 22.1482 28.0048 22.5952 27.8301C23.0475 27.6554 23.5511 27.568 24.106 27.568C24.5531 27.568 24.9642 27.6245 25.3393 27.7376C25.7196 27.8455 26.0588 28.0177 26.3568 28.254C26.66 28.4904 26.917 28.7987 27.1276 29.179C27.3435 29.5541 27.5079 30.0089 27.621 30.5434C27.734 31.0726 27.7905 31.6893 27.7905 32.3933ZM25.9329 34.4899V32.1158C25.9329 31.6687 25.9072 31.2756 25.8558 30.9365C25.8044 30.5922 25.7273 30.3018 25.6246 30.0654C25.5269 29.8239 25.4036 29.6287 25.2546 29.4796C25.1055 29.3255 24.936 29.215 24.7458 29.1482C24.5557 29.0762 24.3424 29.0403 24.106 29.0403C23.8183 29.0403 23.5613 29.0968 23.3352 29.2098C23.1091 29.3178 22.919 29.4925 22.7648 29.734C22.6107 29.9755 22.4925 30.2941 22.4103 30.6898C22.3332 31.0804 22.2946 31.5557 22.2946 32.1158V34.4899C22.2946 34.9421 22.3203 35.3404 22.3717 35.6847C22.4231 36.029 22.5002 36.3245 22.603 36.5711C22.7057 36.8127 22.8291 37.0131 22.9729 37.1724C23.122 37.3265 23.2916 37.4396 23.4817 37.5115C23.677 37.5835 23.8902 37.6194 24.1215 37.6194C24.4144 37.6194 24.6739 37.5629 24.9 37.4499C25.1261 37.3368 25.3162 37.157 25.4704 36.9103C25.6246 36.6585 25.7402 36.3322 25.8173 35.9314C25.8943 35.5305 25.9329 35.0501 25.9329 34.4899Z" fill="currentColor"></path>
|
|
9
|
-
<path d="M37.3943 32.3933V34.2279C37.3943 35.1066 37.3069 35.8568 37.1322 36.4786C36.9626 37.0953 36.716 37.5963 36.3922 37.9817C36.0685 38.3671 35.6805 38.6498 35.2283 38.8296C34.7812 39.0095 34.2802 39.0994 33.7252 39.0994C33.2833 39.0994 32.8722 39.0429 32.4919 38.9298C32.1168 38.8168 31.7776 38.6395 31.4744 38.398C31.1712 38.1564 30.9117 37.8455 30.6959 37.4653C30.4852 37.0799 30.3208 36.6199 30.2026 36.0855C30.0895 35.5511 30.033 34.9319 30.033 34.2279V32.3933C30.033 31.5094 30.1204 30.7643 30.2951 30.1579C30.4698 29.5464 30.719 29.0505 31.0428 28.6703C31.3665 28.2849 31.7519 28.0048 32.199 27.8301C32.6512 27.6554 33.1548 27.568 33.7098 27.568C34.1569 27.568 34.568 27.6245 34.9431 27.7376C35.3234 27.8455 35.6625 28.0177 35.9606 28.254C36.2638 28.4904 36.5207 28.7987 36.7314 29.179C36.9472 29.5541 37.1117 30.0089 37.2247 30.5434C37.3378 31.0726 37.3943 31.6893 37.3943 32.3933ZM35.5366 34.4899V32.1158C35.5366 31.6687 35.5109 31.2756 35.4595 30.9365C35.4081 30.5922 35.3311 30.3018 35.2283 30.0654C35.1307 29.8239 35.0073 29.6287 34.8583 29.4796C34.7093 29.3255 34.5397 29.215 34.3496 29.1482C34.1594 29.0762 33.9462 29.0403 33.7098 29.0403C33.422 29.0403 33.1651 29.0968 32.939 29.2098C32.7129 29.3178 32.5227 29.4925 32.3686 29.734C32.2144 29.9755 32.0962 30.2941 32.014 30.6898C31.9369 31.0804 31.8984 31.5557 31.8984 32.1158V34.4899C31.8984 34.9421 31.9241 35.3404 31.9755 35.6847C32.0268 36.029 32.1039 36.3245 32.2067 36.5711C32.3095 36.8127 32.4328 37.0131 32.5767 37.1724C32.7257 37.3265 32.8953 37.4396 33.0854 37.5115C33.2807 37.5835 33.494 37.6194 33.7252 37.6194C34.0181 37.6194 34.2776 37.5629 34.5037 37.4499C34.7298 37.3368 34.92 37.157 35.0741 36.9103C35.2283 36.6585 35.3439 36.3322 35.421 35.9314C35.4981 35.5305 35.5366 35.0501 35.5366 34.4899Z" fill="currentColor"></path>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.758 35.0124V36.4923H17.3551V39.0129H15.4974V36.4923H10.6644L10.6027 35.3746L15.4435 27.7898H17.3551V35.0124H18.758ZM12.5375 35.0124L15.4803 30.2951V35.0124H12.5375Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00088C25.1804 8.00088 26.2414 7.48958 26.9736 6.67636L36.098 15.8008H38.5022L27.8368 5.13544C27.943 4.77576 28 4.39498 28 4.00088C28 1.79175 26.2091 0.00088501 24 0.00088501C21.7909 0.00088501 20 1.79175 20 4.00088C20 4.39498 20.057 4.77576 20.1632 5.13544L9.4978 15.8008H11.902L21.0264 6.67636C21.7586 7.48958 22.8196 8.00088 24 8.00088ZM24 6.30089C25.2703 6.30089 26.3 5.27114 26.3 4.00088C26.3 2.73063 25.2703 1.70089 24 1.70089C22.7297 1.70089 21.7 2.73063 21.7 4.00088C21.7 5.27114 22.7297 6.30089 24 6.30089Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M29.2053 32.3933V34.2279C29.2053 35.1066 29.1179 35.8568 28.9432 36.4786C28.7736 37.0953 28.527 37.5963 28.2032 37.9817C27.8795 38.3671 27.4915 38.6498 27.0393 38.8296C26.5922 39.0095 26.0912 39.0994 25.5362 39.0994C25.0943 39.0994 24.6832 39.0429 24.3029 38.9298C23.9278 38.8168 23.5886 38.6395 23.2854 38.398C22.9822 38.1564 22.7227 37.8455 22.5069 37.4653C22.2962 37.0799 22.1318 36.6199 22.0136 36.0855C21.9005 35.5511 21.844 34.9319 21.844 34.2279V32.3933C21.844 31.5094 21.9313 30.7643 22.1061 30.1579C22.2808 29.5464 22.53 29.0505 22.8538 28.6703C23.1775 28.2849 23.5629 28.0048 24.01 27.8301C24.4622 27.6554 24.9658 27.568 25.5208 27.568C25.9679 27.568 26.379 27.6245 26.7541 27.7376C27.1344 27.8455 27.4735 28.0177 27.7716 28.254C28.0747 28.4904 28.3317 28.7987 28.5424 29.179C28.7582 29.5541 28.9226 30.0089 29.0357 30.5434C29.1488 31.0726 29.2053 31.6893 29.2053 32.3933ZM27.3476 34.4899V32.1158C27.3476 31.6687 27.3219 31.2756 27.2705 30.9365C27.2191 30.5922 27.1421 30.3018 27.0393 30.0654C26.9417 29.8239 26.8183 29.6287 26.6693 29.4796C26.5203 29.3255 26.3507 29.215 26.1606 29.1482C25.9704 29.0762 25.7572 29.0403 25.5208 29.0403C25.233 29.0403 24.9761 29.0968 24.75 29.2098C24.5239 29.3178 24.3337 29.4925 24.1796 29.734C24.0254 29.9755 23.9072 30.2941 23.825 30.6898C23.7479 31.0804 23.7094 31.5557 23.7094 32.1158V34.4899C23.7094 34.9421 23.7351 35.3404 23.7864 35.6847C23.8378 36.029 23.9149 36.3245 24.0177 36.5711C24.1205 36.8127 24.2438 37.0131 24.3877 37.1724C24.5367 37.3265 24.7063 37.4396 24.8964 37.5115C25.0917 37.5835 25.305 37.6194 25.5362 37.6194C25.8291 37.6194 26.0886 37.5629 26.3147 37.4499C26.5408 37.3368 26.731 37.157 26.8851 36.9103C27.0393 36.6585 27.1549 36.3322 27.232 35.9314C27.3091 35.5305 27.3476 35.0501 27.3476 34.4899Z" fill="currentColor"></path>
|
|
9
|
-
<path d="M36.5659 27.6836V38.9452H34.7083V29.8882L31.9565 30.8208V29.2869L36.3424 27.6836H36.5659Z" fill="currentColor"></path>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7004 34.8946V36.3745H18.2975V38.8951H16.4399V36.3745H11.6069L11.5452 35.2568L16.3859 27.672H18.2975V34.8946H19.7004ZM13.48 34.8946L16.4227 30.1773V34.8946H13.48Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00085C25.1804 8.00085 26.2414 7.48955 26.9736 6.67633L36.098 15.8008H38.5022L27.8368 5.13541C27.943 4.77573 28 4.39495 28 4.00085C28 1.79172 26.2091 0.000854492 24 0.000854492C21.7909 0.000854492 20 1.79172 20 4.00085C20 4.39495 20.057 4.77573 20.1632 5.13541L9.4978 15.8008H11.902L21.0264 6.67633C21.7586 7.48955 22.8196 8.00085 24 8.00085ZM24 6.30085C25.2703 6.30085 26.3 5.27111 26.3 4.00085C26.3 2.7306 25.2703 1.70085 24 1.70085C22.7297 1.70085 21.7 2.7306 21.7 4.00085C21.7 5.27111 22.7297 6.30085 24 6.30085Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.0009C5.33016 24.0009 5.75997 23.5711 5.75997 23.0409C5.75997 22.5107 5.33016 22.0809 4.79997 22.0809C4.26977 22.0809 3.83997 22.5107 3.83997 23.0409C3.83997 23.5711 4.26977 24.0009 4.79997 24.0009Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.2009C5.75997 43.7311 5.33016 44.1609 4.79997 44.1609C4.26977 44.1609 3.83997 43.7311 3.83997 43.2009C3.83997 42.6707 4.26977 42.2409 4.79997 42.2409C5.33016 42.2409 5.75997 42.6707 5.75997 43.2009Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.0409C44.16 23.5711 43.7302 24.0009 43.2 24.0009C42.6698 24.0009 42.24 23.5711 42.24 23.0409C42.24 22.5107 42.6698 22.0809 43.2 22.0809C43.7302 22.0809 44.16 22.5107 44.16 23.0409Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.2009C44.16 43.7311 43.7302 44.1609 43.2 44.1609C42.6698 44.1609 42.24 43.7311 42.24 43.2009C42.24 42.6707 42.6698 42.2409 43.2 42.2409C43.7302 42.2409 44.16 42.6707 44.16 43.2009Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6201 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6201 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M27.8901 32.3933V34.2278C27.8901 35.1066 27.8027 35.8568 27.628 36.4786C27.4584 37.0953 27.2117 37.5963 26.888 37.9817C26.5643 38.3671 26.1763 38.6497 25.7241 38.8296C25.277 39.0094 24.776 39.0994 24.221 39.0994C23.779 39.0994 23.3679 39.0429 22.9877 38.9298C22.6125 38.8167 22.2734 38.6395 21.9702 38.3979C21.667 38.1564 21.4075 37.8455 21.1917 37.4652C20.981 37.0798 20.8165 36.6199 20.6984 36.0855C20.5853 35.5511 20.5288 34.9318 20.5288 34.2278V32.3933C20.5288 31.5094 20.6161 30.7643 20.7908 30.1579C20.9656 29.5464 21.2148 29.0505 21.5385 28.6702C21.8623 28.2848 22.2477 28.0048 22.6948 27.8301C23.147 27.6553 23.6506 27.568 24.2056 27.568C24.6526 27.568 25.0637 27.6245 25.4389 27.7376C25.8191 27.8455 26.1583 28.0176 26.4563 28.254C26.7595 28.4904 27.0165 28.7987 27.2272 29.179C27.443 29.5541 27.6074 30.0089 27.7205 30.5433C27.8335 31.0726 27.8901 31.6893 27.8901 32.3933ZM26.0324 34.4899V32.1158C26.0324 31.6687 26.0067 31.2756 25.9553 30.9364C25.9039 30.5921 25.8268 30.3018 25.7241 30.0654C25.6264 29.8239 25.5031 29.6286 25.3541 29.4796C25.2051 29.3254 25.0355 29.215 24.8453 29.1481C24.6552 29.0762 24.4419 29.0402 24.2056 29.0402C23.9178 29.0402 23.6609 29.0968 23.4347 29.2098C23.2086 29.3177 23.0185 29.4924 22.8643 29.734C22.7102 29.9755 22.592 30.2941 22.5098 30.6898C22.4327 31.0803 22.3941 31.5557 22.3941 32.1158V34.4899C22.3941 34.9421 22.4198 35.3404 22.4712 35.6847C22.5226 36.029 22.5997 36.3244 22.7025 36.5711C22.8052 36.8126 22.9286 37.013 23.0725 37.1723C23.2215 37.3265 23.3911 37.4396 23.5812 37.5115C23.7765 37.5834 23.9897 37.6194 24.221 37.6194C24.5139 37.6194 24.7734 37.5629 24.9995 37.4498C25.2256 37.3368 25.4157 37.1569 25.5699 36.9103C25.7241 36.6585 25.8397 36.3321 25.9168 35.9313C25.9939 35.5305 26.0324 35.05 26.0324 34.4899Z" fill="currentColor"></path>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.758 35.0123V36.4923H17.3551V39.0129H15.4974V36.4923H10.6644L10.6027 35.3746L15.4435 27.7898H17.3551V35.0123H18.758ZM12.5375 35.0123L15.4803 30.2951V35.0123H12.5375Z" fill="currentColor"></path>
|
|
10
|
-
<path d="M32.3602 32.4935H33.4701C33.9018 32.4935 34.2589 32.419 34.5416 32.27C34.8293 32.1209 35.0426 31.9154 35.1814 31.6533C35.3201 31.3912 35.3895 31.0906 35.3895 30.7514C35.3895 30.3969 35.3252 30.0937 35.1968 29.8419C35.0734 29.5849 34.8833 29.3871 34.6264 29.2484C34.3746 29.1096 34.0534 29.0402 33.6628 29.0402C33.334 29.0402 33.0359 29.107 32.7687 29.2406C32.5066 29.3691 32.2985 29.5541 32.1443 29.7956C31.9902 30.032 31.9131 30.3146 31.9131 30.6435H30.0477C30.0477 30.0474 30.2045 29.5181 30.5179 29.0557C30.8314 28.5932 31.2579 28.2309 31.7975 27.9688C32.3422 27.7016 32.9537 27.568 33.632 27.568C34.3566 27.568 34.9887 27.6887 35.5282 27.9303C36.0729 28.1666 36.4969 28.5212 36.8001 28.994C37.1033 29.4668 37.2548 30.0526 37.2548 30.7514C37.2548 31.07 37.1803 31.3938 37.0313 31.7227C36.8823 32.0516 36.6613 32.3522 36.3684 32.6245C36.1379 32.8348 35.8628 33.0149 35.5431 33.1648C35.9619 33.3154 36.3064 33.545 36.5765 33.7962C36.8694 34.0634 37.0827 34.3691 37.2163 34.7134C37.3551 35.0577 37.4244 35.4226 37.4244 35.808C37.4244 36.3321 37.3294 36.7998 37.1392 37.2109C36.9542 37.6168 36.6896 37.9611 36.3453 38.2438C36.001 38.5264 35.5976 38.7397 35.1351 38.8835C34.6778 39.0274 34.1793 39.0994 33.6397 39.0994C33.1567 39.0994 32.6942 39.0326 32.2523 38.899C31.8103 38.7654 31.4146 38.5675 31.0652 38.3054C30.7158 38.0382 30.4383 37.7068 30.2327 37.3111C30.0323 36.9103 29.9321 36.4478 29.9321 35.9236H31.7898C31.7898 36.2576 31.8668 36.5531 32.021 36.8101C32.1803 37.0619 32.4013 37.2597 32.6839 37.4036C32.9717 37.5475 33.3006 37.6194 33.6706 37.6194C34.0611 37.6194 34.3977 37.55 34.6803 37.4113C34.963 37.2725 35.1788 37.067 35.3278 36.7946C35.482 36.5223 35.5591 36.1934 35.5591 35.808C35.5591 35.3712 35.4743 35.0166 35.3047 34.7443C35.1351 34.4719 34.8936 34.2715 34.5801 34.143C34.2667 34.0094 33.8967 33.9426 33.4701 33.9426H32.3602V32.4935Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00088C25.1804 8.00088 26.2414 7.48958 26.9736 6.67636L36.098 15.8008H38.5022L27.8368 5.13544C27.943 4.77576 28 4.39498 28 4.00088C28 1.79175 26.2091 0.00088501 24 0.00088501C21.7909 0.00088501 20 1.79175 20 4.00088C20 4.39498 20.057 4.77576 20.1632 5.13544L9.4978 15.8008H11.902L21.0264 6.67636C21.7586 7.48958 22.8196 8.00088 24 8.00088ZM24 6.30089C25.2703 6.30089 26.3 5.27114 26.3 4.00088C26.3 2.73063 25.2703 1.70089 24 1.70089C22.7297 1.70089 21.7 2.73063 21.7 4.00088C21.7 5.27114 22.7297 6.30089 24 6.30089Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M27.9455 32.3933V34.2279C27.9455 35.1066 27.8581 35.8568 27.6834 36.4786C27.5138 37.0953 27.2672 37.5963 26.9434 37.9817C26.6197 38.3671 26.2317 38.6498 25.7795 38.8296C25.3324 39.0095 24.8314 39.0994 24.2764 39.0994C23.8345 39.0994 23.4234 39.0429 23.0431 38.9298C22.668 38.8168 22.3288 38.6395 22.0256 38.398C21.7224 38.1564 21.4629 37.8455 21.2471 37.4653C21.0364 37.0799 20.872 36.6199 20.7538 36.0855C20.6407 35.5511 20.5842 34.9319 20.5842 34.2279V32.3933C20.5842 31.5094 20.6715 30.7643 20.8463 30.1579C21.021 29.5464 21.2702 29.0505 21.594 28.6703C21.9177 28.2849 22.3031 28.0048 22.7502 27.8301C23.2024 27.6554 23.706 27.568 24.261 27.568C24.708 27.568 25.1191 27.6245 25.4943 27.7376C25.8745 27.8455 26.2137 28.0177 26.5118 28.254C26.8149 28.4904 27.0719 28.7987 27.2826 29.179C27.4984 29.5541 27.6628 30.0089 27.7759 30.5434C27.8889 31.0726 27.9455 31.6893 27.9455 32.3933ZM26.0878 34.4899V32.1158C26.0878 31.6687 26.0621 31.2756 26.0107 30.9365C25.9593 30.5922 25.8823 30.3018 25.7795 30.0654C25.6818 29.8239 25.5585 29.6287 25.4095 29.4796C25.2605 29.3255 25.0909 29.215 24.9007 29.1482C24.7106 29.0762 24.4974 29.0403 24.261 29.0403C23.9732 29.0403 23.7163 29.0968 23.4902 29.2098C23.2641 29.3178 23.0739 29.4925 22.9198 29.734C22.7656 29.9755 22.6474 30.2941 22.5652 30.6898C22.4881 31.0804 22.4496 31.5557 22.4496 32.1158V34.4899C22.4496 34.9421 22.4753 35.3404 22.5266 35.6847C22.578 36.029 22.6551 36.3245 22.7579 36.5711C22.8607 36.8127 22.984 37.0131 23.1279 37.1724C23.2769 37.3265 23.4465 37.4396 23.6366 37.5115C23.8319 37.5835 24.0451 37.6194 24.2764 37.6194C24.5693 37.6194 24.8288 37.5629 25.0549 37.4499C25.281 37.3368 25.4712 37.157 25.6253 36.9103C25.7795 36.6585 25.8951 36.3322 25.9722 35.9314C26.0493 35.5305 26.0878 35.0501 26.0878 34.4899Z" fill="currentColor"></path>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.758 34.9447V36.4247H17.3551V38.9452H15.4974V36.4247H10.6644L10.6027 35.307L15.4435 27.7222H17.3551V34.9447H18.758ZM12.5375 34.9447L15.4803 30.2274V34.9447H12.5375Z" fill="currentColor"></path>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.6243 35.0526V36.5326H36.2214V39.0532H34.3638V36.5326H29.5307L29.4691 35.4149L34.3098 27.8301H36.2214V35.0526H37.6243ZM31.4038 35.0526L34.3466 30.3354V35.0526H31.4038Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00088C25.1804 8.00088 26.2414 7.48958 26.9736 6.67636L36.098 15.8008H38.5022L27.8368 5.13544C27.943 4.77576 28 4.39498 28 4.00088C28 1.79175 26.2091 0.00088501 24 0.00088501C21.7909 0.00088501 20 1.79175 20 4.00088C20 4.39498 20.057 4.77576 20.1632 5.13544L9.4978 15.8008H11.902L21.0264 6.67636C21.7586 7.48958 22.8196 8.00088 24 8.00088ZM24 6.30089C25.2703 6.30089 26.3 5.27114 26.3 4.00088C26.3 2.73063 25.2703 1.70089 24 1.70089C22.7297 1.70089 21.7 2.73063 21.7 4.00088C21.7 5.27114 22.7297 6.30089 24 6.30089Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M12.6575 34.6693L11.1775 34.307L11.7865 28.6646H17.8374V30.2371H13.3281L13.0198 32.9889C13.1945 32.8861 13.436 32.7859 13.7443 32.6883C14.0527 32.5855 14.4047 32.5341 14.8003 32.5341C15.3296 32.5341 15.8024 32.6215 16.2186 32.7962C16.64 32.9658 16.9972 33.215 17.2901 33.5439C17.583 33.8676 17.8065 34.2633 17.9607 34.731C18.1149 35.1934 18.1919 35.715 18.1919 36.2957C18.1919 36.8147 18.1149 37.3003 17.9607 37.7526C17.8117 38.2048 17.5856 38.603 17.2824 38.9473C16.9792 39.2916 16.5963 39.5614 16.1339 39.7567C15.6765 39.9468 15.1344 40.0419 14.5074 40.0419C14.0398 40.0419 13.5902 39.9751 13.1585 39.8415C12.732 39.7027 12.3492 39.4997 12.01 39.2325C11.6708 38.9602 11.3985 38.6261 11.1929 38.2305C10.9874 37.8296 10.8692 37.3697 10.8384 36.8507H12.6575C12.7037 37.2155 12.8039 37.5264 12.9581 37.7834C13.1174 38.0352 13.3281 38.2279 13.5902 38.3615C13.8522 38.4951 14.1554 38.5619 14.4997 38.5619C14.8132 38.5619 15.083 38.5079 15.3091 38.4C15.5352 38.287 15.7228 38.1277 15.8718 37.9221C16.0259 37.7114 16.139 37.4648 16.2109 37.1821C16.288 36.8995 16.3266 36.586 16.3266 36.2418C16.3266 35.9129 16.2829 35.6123 16.1955 35.3399C16.1133 35.0675 15.9874 34.8312 15.8178 34.6307C15.6534 34.4303 15.4453 34.2762 15.1935 34.1683C14.9417 34.0552 14.6513 33.9987 14.3224 33.9987C13.8805 33.9987 13.5413 34.0629 13.305 34.1914C13.0737 34.3199 12.8579 34.4792 12.6575 34.6693Z" fill="currentColor"></path>
|
|
9
|
-
<path d="M27.6261 33.3358V35.1703C27.6261 36.049 27.5387 36.7993 27.364 37.4211C27.1944 38.0378 26.9478 38.5388 26.624 38.9242C26.3003 39.3096 25.9123 39.5922 25.4601 39.7721C25.013 39.9519 24.512 40.0419 23.957 40.0419C23.5151 40.0419 23.104 39.9853 22.7237 39.8723C22.3486 39.7592 22.0094 39.582 21.7062 39.3404C21.403 39.0989 21.1435 38.788 20.9277 38.4077C20.717 38.0223 20.5526 37.5624 20.4344 37.028C20.3213 36.4936 20.2648 35.8743 20.2648 35.1703V33.3358C20.2648 32.4519 20.3522 31.7068 20.5269 31.1004C20.7016 30.4889 20.9508 29.993 21.2746 29.6127C21.5983 29.2273 21.9837 28.9473 22.4308 28.7726C22.883 28.5978 23.3866 28.5105 23.9416 28.5105C24.3887 28.5105 24.7998 28.567 25.1749 28.6801C25.5552 28.788 25.8943 28.9601 26.1924 29.1965C26.4956 29.4329 26.7525 29.7412 26.9632 30.1215C27.179 30.4966 27.3435 30.9514 27.4565 31.4858C27.5696 32.0151 27.6261 32.6318 27.6261 33.3358ZM25.7684 35.4324V33.0583C25.7684 32.6112 25.7427 32.2181 25.6914 31.8789C25.64 31.5346 25.5629 31.2443 25.4601 31.0079C25.3625 30.7664 25.2391 30.5711 25.0901 30.4221C24.9411 30.2679 24.7715 30.1574 24.5814 30.0906C24.3912 30.0187 24.178 29.9827 23.9416 29.9827C23.6538 29.9827 23.3969 30.0393 23.1708 30.1523C22.9447 30.2602 22.7545 30.4349 22.6004 30.6765C22.4462 30.918 22.328 31.2366 22.2458 31.6323C22.1687 32.0228 22.1302 32.4982 22.1302 33.0583V35.4324C22.1302 35.8846 22.1559 36.2829 22.2073 36.6272C22.2587 36.9715 22.3357 37.2669 22.4385 37.5136C22.5413 37.7551 22.6646 37.9555 22.8085 38.1148C22.9575 38.269 23.1271 38.382 23.3172 38.454C23.5125 38.5259 23.7258 38.5619 23.957 38.5619C24.2499 38.5619 24.5094 38.5054 24.7355 38.3923C24.9616 38.2793 25.1518 38.0994 25.3059 37.8528C25.4601 37.601 25.5757 37.2746 25.6528 36.8738C25.7299 36.473 25.7684 35.9925 25.7684 35.4324Z" fill="currentColor"></path>
|
|
10
|
-
<path d="M37.2298 33.3358V35.1703C37.2298 36.049 37.1425 36.7993 36.9678 37.4211C36.7982 38.0378 36.5515 38.5388 36.2278 38.9242C35.904 39.3096 35.5161 39.5922 35.0639 39.7721C34.6168 39.9519 34.1157 40.0419 33.5608 40.0419C33.1188 40.0419 32.7077 39.9853 32.3275 39.8723C31.9523 39.7592 31.6132 39.582 31.31 39.3404C31.0068 39.0989 30.7473 38.788 30.5315 38.4077C30.3208 38.0223 30.1563 37.5624 30.0381 37.028C29.9251 36.4936 29.8686 35.8743 29.8686 35.1703V33.3358C29.8686 32.4519 29.9559 31.7068 30.1306 31.1004C30.3054 30.4889 30.5546 29.993 30.8783 29.6127C31.2021 29.2273 31.5875 28.9473 32.0345 28.7726C32.4868 28.5978 32.9904 28.5105 33.5453 28.5105C33.9924 28.5105 34.4035 28.567 34.7787 28.6801C35.1589 28.788 35.4981 28.9601 35.7961 29.1965C36.0993 29.4329 36.3563 29.7412 36.5669 30.1215C36.7828 30.4966 36.9472 30.9514 37.0603 31.4858C37.1733 32.0151 37.2298 32.6318 37.2298 33.3358ZM35.3722 35.4324V33.0583C35.3722 32.6112 35.3465 32.2181 35.2951 31.8789C35.2437 31.5346 35.1666 31.2443 35.0639 31.0079C34.9662 30.7664 34.8429 30.5711 34.6939 30.4221C34.5448 30.2679 34.3753 30.1574 34.1851 30.0906C33.995 30.0187 33.7817 29.9827 33.5453 29.9827C33.2576 29.9827 33.0006 30.0393 32.7745 30.1523C32.5484 30.2602 32.3583 30.4349 32.2041 30.6765C32.05 30.918 31.9318 31.2366 31.8496 31.6323C31.7725 32.0228 31.7339 32.4982 31.7339 33.0583V35.4324C31.7339 35.8846 31.7596 36.2829 31.811 36.6272C31.8624 36.9715 31.9395 37.2669 32.0423 37.5136C32.145 37.7551 32.2684 37.9555 32.4122 38.1148C32.5613 38.269 32.7309 38.382 32.921 38.454C33.1163 38.5259 33.3295 38.5619 33.5608 38.5619C33.8537 38.5619 34.1132 38.5054 34.3393 38.3923C34.5654 38.2793 34.7555 38.0994 34.9097 37.8528C35.0639 37.601 35.1795 37.2746 35.2566 36.8738C35.3336 36.473 35.3722 35.9925 35.3722 35.4324Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 8.00088C25.1804 8.00088 26.2414 7.48958 26.9736 6.67636L36.098 15.8008H38.5022L27.8368 5.13544C27.943 4.77576 28 4.39498 28 4.00088C28 1.79175 26.2091 0.00088501 24 0.00088501C21.7909 0.00088501 20 1.79175 20 4.00088C20 4.39498 20.057 4.77576 20.1632 5.13544L9.4978 15.8008H11.902L21.0264 6.67636C21.7586 7.48958 22.8196 8.00088 24 8.00088ZM24 6.30089C25.2703 6.30089 26.3 5.27114 26.3 4.00088C26.3 2.73063 25.2703 1.70089 24 1.70089C22.7297 1.70089 21.7 2.73063 21.7 4.00088C21.7 5.27114 22.7297 6.30089 24 6.30089Z" fill="currentColor"></path>
|
|
3
|
-
<path d="M4.79997 24.001C5.33016 24.001 5.75997 23.5712 5.75997 23.041C5.75997 22.5108 5.33016 22.081 4.79997 22.081C4.26977 22.081 3.83997 22.5108 3.83997 23.041C3.83997 23.5712 4.26977 24.001 4.79997 24.001Z" fill="currentColor"></path>
|
|
4
|
-
<path d="M5.75997 43.201C5.75997 43.7312 5.33016 44.161 4.79997 44.161C4.26977 44.161 3.83997 43.7312 3.83997 43.201C3.83997 42.6708 4.26977 42.241 4.79997 42.241C5.33016 42.241 5.75997 42.6708 5.75997 43.201Z" fill="currentColor"></path>
|
|
5
|
-
<path d="M44.16 23.041C44.16 23.5712 43.7302 24.001 43.2 24.001C42.6698 24.001 42.24 23.5712 42.24 23.041C42.24 22.5108 42.6698 22.081 43.2 22.081C43.7302 22.081 44.16 22.5108 44.16 23.041Z" fill="currentColor"></path>
|
|
6
|
-
<path d="M44.16 43.201C44.16 43.7312 43.7302 44.161 43.2 44.161C42.6698 44.161 42.24 43.7312 42.24 43.201C42.24 42.6708 42.6698 42.241 43.2 42.241C43.7302 42.241 44.16 42.6708 44.16 43.201Z" fill="currentColor"></path>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 18.0009C1.79086 18.0009 0 19.7917 0 22.0009V44.0009C0 46.21 1.79086 48.0009 4 48.0009H44C46.2091 48.0009 48 46.21 48 44.0009V22.0009C48 19.7917 46.2091 18.0009 44 18.0009H4ZM44 19.5009H4C2.61929 19.5009 1.5 20.6202 1.5 22.0009V44.0009C1.5 45.3816 2.61929 46.5009 4 46.5009H44C45.3807 46.5009 46.5 45.3816 46.5 44.0009V22.0009C46.5 20.6202 45.3807 19.5009 44 19.5009Z" fill="currentColor"></path>
|
|
8
|
-
<path d="M12.6575 34.6693L11.1775 34.307L11.7865 28.6646H17.8374V30.2371H13.3281L13.0198 32.9889C13.1945 32.8861 13.436 32.7859 13.7443 32.6883C14.0527 32.5855 14.4047 32.5341 14.8003 32.5341C15.3296 32.5341 15.8024 32.6215 16.2186 32.7962C16.64 32.9658 16.9972 33.215 17.2901 33.5439C17.583 33.8676 17.8065 34.2633 17.9607 34.731C18.1149 35.1934 18.1919 35.715 18.1919 36.2957C18.1919 36.8147 18.1149 37.3003 17.9607 37.7526C17.8117 38.2048 17.5856 38.603 17.2824 38.9473C16.9792 39.2916 16.5963 39.5614 16.1339 39.7567C15.6765 39.9468 15.1344 40.0419 14.5074 40.0419C14.0398 40.0419 13.5902 39.9751 13.1585 39.8415C12.732 39.7027 12.3492 39.4997 12.01 39.2325C11.6708 38.9602 11.3985 38.6261 11.1929 38.2305C10.9874 37.8296 10.8692 37.3697 10.8384 36.8507H12.6575C12.7037 37.2155 12.8039 37.5264 12.9581 37.7834C13.1174 38.0352 13.3281 38.2279 13.5902 38.3615C13.8522 38.4951 14.1554 38.5619 14.4997 38.5619C14.8132 38.5619 15.083 38.5079 15.3091 38.4C15.5352 38.287 15.7228 38.1277 15.8718 37.9221C16.0259 37.7114 16.139 37.4648 16.2109 37.1821C16.288 36.8995 16.3266 36.586 16.3266 36.2418C16.3266 35.9129 16.2829 35.6123 16.1955 35.3399C16.1133 35.0675 15.9874 34.8312 15.8178 34.6307C15.6534 34.4303 15.4453 34.2762 15.1935 34.1683C14.9417 34.0552 14.6513 33.9987 14.3224 33.9987C13.8805 33.9987 13.5413 34.0629 13.305 34.1914C13.0737 34.3199 12.8579 34.4792 12.6575 34.6693Z" fill="currentColor"></path>
|
|
9
|
-
<path d="M27.6261 33.3358V35.1703C27.6261 36.049 27.5387 36.7993 27.364 37.4211C27.1944 38.0378 26.9478 38.5388 26.624 38.9242C26.3003 39.3096 25.9123 39.5922 25.4601 39.7721C25.013 39.9519 24.512 40.0419 23.957 40.0419C23.5151 40.0419 23.104 39.9853 22.7237 39.8723C22.3486 39.7592 22.0094 39.582 21.7062 39.3404C21.403 39.0989 21.1435 38.788 20.9277 38.4077C20.717 38.0223 20.5526 37.5624 20.4344 37.028C20.3213 36.4936 20.2648 35.8743 20.2648 35.1703V33.3358C20.2648 32.4519 20.3522 31.7068 20.5269 31.1004C20.7016 30.4889 20.9508 29.993 21.2746 29.6127C21.5983 29.2273 21.9837 28.9473 22.4308 28.7726C22.883 28.5978 23.3866 28.5105 23.9416 28.5105C24.3887 28.5105 24.7998 28.567 25.1749 28.6801C25.5552 28.788 25.8943 28.9601 26.1924 29.1965C26.4956 29.4329 26.7525 29.7412 26.9632 30.1215C27.179 30.4966 27.3435 30.9514 27.4565 31.4858C27.5696 32.0151 27.6261 32.6318 27.6261 33.3358ZM25.7684 35.4324V33.0583C25.7684 32.6112 25.7427 32.2181 25.6914 31.8789C25.64 31.5346 25.5629 31.2443 25.4601 31.0079C25.3625 30.7664 25.2391 30.5711 25.0901 30.4221C24.9411 30.2679 24.7715 30.1574 24.5814 30.0906C24.3912 30.0187 24.178 29.9827 23.9416 29.9827C23.6538 29.9827 23.3969 30.0393 23.1708 30.1523C22.9447 30.2602 22.7545 30.4349 22.6004 30.6765C22.4462 30.918 22.328 31.2366 22.2458 31.6323C22.1687 32.0228 22.1302 32.4982 22.1302 33.0583V35.4324C22.1302 35.8846 22.1559 36.2829 22.2073 36.6272C22.2587 36.9715 22.3357 37.2669 22.4385 37.5136C22.5413 37.7551 22.6646 37.9555 22.8085 38.1148C22.9575 38.269 23.1271 38.382 23.3172 38.454C23.5125 38.5259 23.7258 38.5619 23.957 38.5619C24.2499 38.5619 24.5094 38.5054 24.7355 38.3923C24.9616 38.2793 25.1518 38.0994 25.3059 37.8528C25.4601 37.601 25.5757 37.2746 25.6528 36.8738C25.7299 36.473 25.7684 35.9925 25.7684 35.4324Z" fill="currentColor"></path>
|
|
10
|
-
<path d="M37.438 38.4077V39.8877H29.9148V38.6159L33.5685 34.6307C33.9693 34.1785 34.2853 33.788 34.5166 33.4591C34.7478 33.1302 34.9097 32.8347 35.0022 32.5727C35.0998 32.3055 35.1486 32.0459 35.1486 31.7941C35.1486 31.4396 35.0818 31.1287 34.9482 30.8615C34.8198 30.5891 34.6296 30.3758 34.3778 30.2217C34.126 30.0624 33.8203 29.9827 33.4606 29.9827C33.0443 29.9827 32.6949 30.0727 32.4122 30.2525C32.1296 30.4324 31.9164 30.6816 31.7725 31.0002C31.6286 31.3137 31.5566 31.6734 31.5566 32.0793H29.699C29.699 31.4267 29.848 30.8306 30.146 30.2911C30.4441 29.7463 30.8758 29.3147 31.441 28.9961C32.0063 28.6723 32.6872 28.5105 33.4837 28.5105C34.2339 28.5105 34.8711 28.6364 35.3953 28.8882C35.9195 29.14 36.3177 29.4971 36.5901 29.9596C36.8676 30.4221 37.0063 30.9694 37.0063 31.6014C37.0063 31.9509 36.9498 32.2977 36.8367 32.642C36.7237 32.9863 36.5618 33.3306 36.3511 33.6749C36.1456 34.0141 35.9015 34.3558 35.6188 34.7001C35.3362 35.0393 35.0253 35.3836 34.6862 35.733L32.2581 38.4077H37.438Z" fill="currentColor"></path>
|
|
11
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="1.5" y="19.0009" width="46" height="28" rx="3" fill="var(--background-primary-subtlest)"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5 8.00085C25.6804 8.00085 26.7414 7.48955 27.4736 6.67633L36.598 15.8008H39.0022L28.3368 5.13541C28.443 4.77573 28.5 4.39495 28.5 4.00085C28.5 1.79172 26.7091 0.000854492 24.5 0.000854492C22.2909 0.000854492 20.5 1.79172 20.5 4.00085C20.5 4.39495 20.557 4.77573 20.6632 5.13541L9.9978 15.8008H12.402L21.5264 6.67633C22.2586 7.48955 23.3196 8.00085 24.5 8.00085ZM24.5 6.30085C25.7703 6.30085 26.8 5.27111 26.8 4.00085C26.8 2.7306 25.7703 1.70085 24.5 1.70085C23.2297 1.70085 22.2 2.7306 22.2 4.00085C22.2 5.27111 23.2297 6.30085 24.5 6.30085Z" fill="var(--icon-on-subtle)"/>
|
|
4
|
-
<path d="M5.29997 24.0009C5.83016 24.0009 6.25997 23.5711 6.25997 23.0409C6.25997 22.5107 5.83016 22.0809 5.29997 22.0809C4.76977 22.0809 4.33997 22.5107 4.33997 23.0409C4.33997 23.5711 4.76977 24.0009 5.29997 24.0009Z" fill="var(--icon-on-subtle)"/>
|
|
5
|
-
<path d="M6.25997 43.2009C6.25997 43.7311 5.83016 44.1609 5.29997 44.1609C4.76977 44.1609 4.33997 43.7311 4.33997 43.2009C4.33997 42.6707 4.76977 42.2409 5.29997 42.2409C5.83016 42.2409 6.25997 42.6707 6.25997 43.2009Z" fill="var(--icon-on-subtle)"/>
|
|
6
|
-
<path d="M44.66 23.0409C44.66 23.5711 44.2302 24.0009 43.7 24.0009C43.1698 24.0009 42.74 23.5711 42.74 23.0409C42.74 22.5107 43.1698 22.0809 43.7 22.0809C44.2302 22.0809 44.66 22.5107 44.66 23.0409Z" fill="var(--icon-on-subtle)"/>
|
|
7
|
-
<path d="M44.66 43.2009C44.66 43.7311 44.2302 44.1609 43.7 44.1609C43.1698 44.1609 42.74 43.7311 42.74 43.2009C42.74 42.6707 43.1698 42.2409 43.7 42.2409C44.2302 42.2409 44.66 42.6707 44.66 43.2009Z" fill="var(--icon-on-subtle)"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 18.0009C2.29086 18.0009 0.5 19.7917 0.5 22.0009V44.0009C0.5 46.21 2.29086 48.0009 4.5 48.0009H44.5C46.7091 48.0009 48.5 46.21 48.5 44.0009V22.0009C48.5 19.7917 46.7091 18.0009 44.5 18.0009H4.5ZM44.5 19.5009H4.5C3.11929 19.5009 2 20.6201 2 22.0009V44.0009C2 45.3816 3.11929 46.5009 4.5 46.5009H44.5C45.8807 46.5009 47 45.3816 47 44.0009V22.0009C47 20.6201 45.8807 19.5009 44.5 19.5009Z" fill="var(--icon-on-subtle)"/>
|
|
9
|
-
<path d="M13.1575 34.6693L11.6775 34.307L12.2865 28.6646H18.3374V30.2371H13.8281L13.5198 32.9889C13.6945 32.8861 13.936 32.7859 14.2443 32.6883C14.5527 32.5855 14.9047 32.5341 15.3003 32.5341C15.8296 32.5341 16.3024 32.6215 16.7186 32.7962C17.14 32.9658 17.4972 33.215 17.7901 33.5439C18.083 33.8676 18.3065 34.2633 18.4607 34.7309C18.6149 35.1934 18.6919 35.715 18.6919 36.2957C18.6919 36.8147 18.6149 37.3003 18.4607 37.7525C18.3117 38.2047 18.0856 38.603 17.7824 38.9473C17.4792 39.2916 17.0963 39.5614 16.6339 39.7566C16.1765 39.9468 15.6344 40.0418 15.0074 40.0418C14.5398 40.0418 14.0902 39.975 13.6585 39.8414C13.232 39.7027 12.8492 39.4997 12.51 39.2325C12.1708 38.9601 11.8985 38.6261 11.6929 38.2304C11.4874 37.8296 11.3692 37.3697 11.3384 36.8507H13.1575C13.2037 37.2155 13.3039 37.5264 13.4581 37.7834C13.6174 38.0352 13.8281 38.2279 14.0902 38.3615C14.3522 38.4951 14.6554 38.5619 14.9997 38.5619C15.3132 38.5619 15.583 38.5079 15.8091 38.4C16.0352 38.287 16.2228 38.1277 16.3718 37.9221C16.5259 37.7114 16.639 37.4647 16.7109 37.1821C16.788 36.8995 16.8266 36.586 16.8266 36.2417C16.8266 35.9128 16.7829 35.6122 16.6955 35.3399C16.6133 35.0675 16.4874 34.8311 16.3178 34.6307C16.1534 34.4303 15.9453 34.2761 15.6935 34.1682C15.4417 34.0552 15.1513 33.9986 14.8224 33.9986C14.3805 33.9986 14.0413 34.0629 13.805 34.1914C13.5737 34.3198 13.3579 34.4791 13.1575 34.6693Z" fill="var(--icon-on-subtle)"/>
|
|
10
|
-
<path d="M28.1261 33.3357V35.1703C28.1261 36.049 28.0387 36.7993 27.864 37.4211C27.6944 38.0377 27.4478 38.5388 27.124 38.9242C26.8003 39.3096 26.4123 39.5922 25.9601 39.7721C25.513 39.9519 25.012 40.0418 24.457 40.0418C24.0151 40.0418 23.604 39.9853 23.2237 39.8723C22.8486 39.7592 22.5094 39.5819 22.2062 39.3404C21.9031 39.0989 21.6435 38.788 21.4277 38.4077C21.217 38.0223 21.0526 37.5624 20.9344 37.028C20.8213 36.4935 20.7648 35.8743 20.7648 35.1703V33.3357C20.7648 32.4519 20.8522 31.7068 21.0269 31.1004C21.2016 30.4889 21.4508 29.993 21.7746 29.6127C22.0983 29.2273 22.4837 28.9472 22.9308 28.7725C23.383 28.5978 23.8866 28.5104 24.4416 28.5104C24.8887 28.5104 25.2998 28.567 25.6749 28.68C26.0552 28.7879 26.3943 28.9601 26.6924 29.1965C26.9956 29.4329 27.2525 29.7412 27.4632 30.1214C27.679 30.4966 27.8435 30.9514 27.9565 31.4858C28.0696 32.0151 28.1261 32.6317 28.1261 33.3357ZM26.2684 35.4324V33.0583C26.2684 32.6112 26.2427 32.2181 26.1914 31.8789C26.14 31.5346 26.0629 31.2443 25.9601 31.0079C25.8625 30.7664 25.7391 30.5711 25.5901 30.4221C25.4411 30.2679 25.2715 30.1574 25.0814 30.0906C24.8912 30.0187 24.678 29.9827 24.4416 29.9827C24.1538 29.9827 23.8969 30.0392 23.6708 30.1523C23.4447 30.2602 23.2545 30.4349 23.1004 30.6764C22.9462 30.918 22.828 31.2366 22.7458 31.6322C22.6687 32.0228 22.6302 32.4981 22.6302 33.0583V35.4324C22.6302 35.8846 22.6559 36.2828 22.7073 36.6271C22.7587 36.9714 22.8357 37.2669 22.9385 37.5136C23.0413 37.7551 23.1646 37.9555 23.3085 38.1148C23.4575 38.269 23.6271 38.382 23.8172 38.454C24.0125 38.5259 24.2258 38.5619 24.457 38.5619C24.7499 38.5619 25.0094 38.5053 25.2355 38.3923C25.4616 38.2792 25.6518 38.0994 25.8059 37.8527C25.9601 37.6009 26.0757 37.2746 26.1528 36.8738C26.2299 36.473 26.2684 35.9925 26.2684 35.4324Z" fill="var(--icon-on-subtle)"/>
|
|
11
|
-
<path d="M37.938 38.4077V39.8877H30.4148V38.6158L34.0685 34.6307C34.4693 34.1785 34.7853 33.788 35.0166 33.4591C35.2478 33.1302 35.4097 32.8347 35.5022 32.5726C35.5998 32.3054 35.6486 32.0459 35.6486 31.7941C35.6486 31.4395 35.5818 31.1286 35.4482 30.8614C35.3198 30.5891 35.1296 30.3758 34.8778 30.2217C34.626 30.0624 34.3203 29.9827 33.9606 29.9827C33.5443 29.9827 33.1949 30.0726 32.9122 30.2525C32.6296 30.4323 32.4164 30.6816 32.2725 31.0002C32.1286 31.3136 32.0566 31.6734 32.0566 32.0793H30.199C30.199 31.4267 30.348 30.8306 30.646 30.291C30.9441 29.7463 31.3758 29.3147 31.941 28.9961C32.5063 28.6723 33.1872 28.5104 33.9837 28.5104C34.7339 28.5104 35.3711 28.6363 35.8953 28.8881C36.4195 29.1399 36.8177 29.4971 37.0901 29.9596C37.3676 30.4221 37.5063 30.9693 37.5063 31.6014C37.5063 31.9508 37.4498 32.2977 37.3367 32.642C37.2237 32.9863 37.0618 33.3306 36.8511 33.6749C36.6456 34.0141 36.4015 34.3558 36.1188 34.7001C35.8362 35.0393 35.5253 35.3835 35.1862 35.733L32.7581 38.4077H37.938Z" fill="var(--icon-on-subtle)"/>
|
|
12
|
-
</svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5 8.00085C25.6804 8.00085 26.7414 7.48955 27.4736 6.67633L36.598 15.8008H39.0022L28.3368 5.13541C28.443 4.77573 28.5 4.39495 28.5 4.00085C28.5 1.79172 26.7091 0.000854492 24.5 0.000854492C22.2909 0.000854492 20.5 1.79172 20.5 4.00085C20.5 4.39495 20.557 4.77573 20.6632 5.13541L9.9978 15.8008H12.402L21.5264 6.67633C22.2586 7.48955 23.3196 8.00085 24.5 8.00085ZM24.5 6.30085C25.7703 6.30085 26.8 5.27111 26.8 4.00085C26.8 2.7306 25.7703 1.70085 24.5 1.70085C23.2297 1.70085 22.2 2.7306 22.2 4.00085C22.2 5.27111 23.2297 6.30085 24.5 6.30085Z" fill="var(--icon-on-subtle)"/>
|
|
3
|
-
<path d="M5.29997 24.0009C5.83016 24.0009 6.25997 23.5711 6.25997 23.0409C6.25997 22.5107 5.83016 22.0809 5.29997 22.0809C4.76977 22.0809 4.33997 22.5107 4.33997 23.0409C4.33997 23.5711 4.76977 24.0009 5.29997 24.0009Z" fill="var(--icon-on-subtle)"/>
|
|
4
|
-
<path d="M6.25997 43.2009C6.25997 43.7311 5.83016 44.1609 5.29997 44.1609C4.76977 44.1609 4.33997 43.7311 4.33997 43.2009C4.33997 42.6707 4.76977 42.2409 5.29997 42.2409C5.83016 42.2409 6.25997 42.6707 6.25997 43.2009Z" fill="var(--icon-on-subtle)"/>
|
|
5
|
-
<path d="M44.66 23.0409C44.66 23.5711 44.2302 24.0009 43.7 24.0009C43.1698 24.0009 42.74 23.5711 42.74 23.0409C42.74 22.5107 43.1698 22.0809 43.7 22.0809C44.2302 22.0809 44.66 22.5107 44.66 23.0409Z" fill="var(--icon-on-subtle)"/>
|
|
6
|
-
<path d="M44.66 43.2009C44.66 43.7311 44.2302 44.1609 43.7 44.1609C43.1698 44.1609 42.74 43.7311 42.74 43.2009C42.74 42.6707 43.1698 42.2409 43.7 42.2409C44.2302 42.2409 44.66 42.6707 44.66 43.2009Z" fill="var(--icon-on-subtle)"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 18.0009C2.29086 18.0009 0.5 19.7917 0.5 22.0009V44.0009C0.5 46.21 2.29086 48.0009 4.5 48.0009H44.5C46.7091 48.0009 48.5 46.21 48.5 44.0009V22.0009C48.5 19.7917 46.7091 18.0009 44.5 18.0009H4.5ZM44.5 19.5009H4.5C3.11929 19.5009 2 20.6201 2 22.0009V44.0009C2 45.3816 3.11929 46.5009 4.5 46.5009H44.5C45.8807 46.5009 47 45.3816 47 44.0009V22.0009C47 20.6201 45.8807 19.5009 44.5 19.5009Z" fill="var(--icon-on-subtle)"/>
|
|
8
|
-
<path d="M28.2905 32.3933V34.2278C28.2905 35.1066 28.2032 35.8568 28.0285 36.4786C27.8589 37.0953 27.6122 37.5963 27.2885 37.9817C26.9647 38.3671 26.5768 38.6497 26.1246 38.8296C25.6775 39.0094 25.1764 39.0994 24.6215 39.0994C24.1795 39.0994 23.7684 39.0429 23.3882 38.9298C23.013 38.8167 22.6739 38.6395 22.3707 38.3979C22.0675 38.1564 21.808 37.8455 21.5922 37.4652C21.3815 37.0798 21.217 36.6199 21.0988 36.0855C20.9858 35.5511 20.9293 34.9318 20.9293 34.2278V32.3933C20.9293 31.5094 21.0166 30.7643 21.1913 30.1579C21.3661 29.5464 21.6153 29.0505 21.939 28.6702C22.2628 28.2848 22.6482 28.0048 23.0952 27.8301C23.5475 27.6553 24.0511 27.568 24.606 27.568C25.0531 27.568 25.4642 27.6245 25.8393 27.7376C26.2196 27.8455 26.5588 28.0176 26.8568 28.254C27.16 28.4904 27.417 28.7987 27.6276 29.179C27.8435 29.5541 28.0079 30.0089 28.121 30.5433C28.234 31.0726 28.2905 31.6893 28.2905 32.3933ZM26.4329 34.4899V32.1158C26.4329 31.6687 26.4072 31.2756 26.3558 30.9364C26.3044 30.5921 26.2273 30.3018 26.1246 30.0654C26.0269 29.8239 25.9036 29.6286 25.7546 29.4796C25.6055 29.3254 25.436 29.215 25.2458 29.1481C25.0557 29.0762 24.8424 29.0402 24.606 29.0402C24.3183 29.0402 24.0613 29.0968 23.8352 29.2098C23.6091 29.3177 23.419 29.4924 23.2648 29.734C23.1107 29.9755 22.9925 30.2941 22.9103 30.6898C22.8332 31.0803 22.7946 31.5557 22.7946 32.1158V34.4899C22.7946 34.9421 22.8203 35.3404 22.8717 35.6847C22.9231 36.029 23.0002 36.3244 23.103 36.5711C23.2057 36.8126 23.3291 37.013 23.4729 37.1723C23.622 37.3265 23.7916 37.4396 23.9817 37.5115C24.177 37.5834 24.3902 37.6194 24.6215 37.6194C24.9144 37.6194 25.1739 37.5629 25.4 37.4498C25.6261 37.3368 25.8162 37.1569 25.9704 36.9103C26.1246 36.6585 26.2402 36.3321 26.3173 35.9313C26.3943 35.5305 26.4329 35.05 26.4329 34.4899Z" fill="var(--icon-on-subtle)"/>
|
|
9
|
-
<path d="M37.8943 32.3933V34.2278C37.8943 35.1066 37.8069 35.8568 37.6322 36.4786C37.4626 37.0953 37.216 37.5963 36.8922 37.9817C36.5685 38.3671 36.1805 38.6497 35.7283 38.8296C35.2812 39.0094 34.7802 39.0994 34.2252 39.0994C33.7833 39.0994 33.3722 39.0429 32.9919 38.9298C32.6168 38.8167 32.2776 38.6395 31.9744 38.3979C31.6712 38.1564 31.4117 37.8455 31.1959 37.4652C30.9852 37.0798 30.8208 36.6199 30.7026 36.0855C30.5895 35.5511 30.533 34.9318 30.533 34.2278V32.3933C30.533 31.5094 30.6204 30.7643 30.7951 30.1579C30.9698 29.5464 31.219 29.0505 31.5428 28.6702C31.8665 28.2848 32.2519 28.0048 32.699 27.8301C33.1512 27.6553 33.6548 27.568 34.2098 27.568C34.6569 27.568 35.068 27.6245 35.4431 27.7376C35.8234 27.8455 36.1625 28.0176 36.4606 28.254C36.7638 28.4904 37.0207 28.7987 37.2314 29.179C37.4472 29.5541 37.6117 30.0089 37.7247 30.5433C37.8378 31.0726 37.8943 31.6893 37.8943 32.3933ZM36.0366 34.4899V32.1158C36.0366 31.6687 36.0109 31.2756 35.9595 30.9364C35.9081 30.5921 35.8311 30.3018 35.7283 30.0654C35.6307 29.8239 35.5073 29.6286 35.3583 29.4796C35.2093 29.3254 35.0397 29.215 34.8496 29.1481C34.6594 29.0762 34.4462 29.0402 34.2098 29.0402C33.922 29.0402 33.6651 29.0968 33.439 29.2098C33.2129 29.3177 33.0227 29.4924 32.8686 29.734C32.7144 29.9755 32.5962 30.2941 32.514 30.6898C32.4369 31.0803 32.3984 31.5557 32.3984 32.1158V34.4899C32.3984 34.9421 32.4241 35.3404 32.4755 35.6847C32.5268 36.029 32.6039 36.3244 32.7067 36.5711C32.8095 36.8126 32.9328 37.013 33.0767 37.1723C33.2257 37.3265 33.3953 37.4396 33.5854 37.5115C33.7807 37.5834 33.994 37.6194 34.2252 37.6194C34.5181 37.6194 34.7776 37.5629 35.0037 37.4498C35.2298 37.3368 35.42 37.1569 35.5741 36.9103C35.7283 36.6585 35.8439 36.3321 35.921 35.9313C35.9981 35.5305 36.0366 35.05 36.0366 34.4899Z" fill="var(--icon-on-subtle)"/>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.258 35.0123V36.4923H17.8551V39.0129H15.9974V36.4923H11.1644L11.1027 35.3746L15.9435 27.7898H17.8551V35.0123H19.258ZM13.0375 35.0123L15.9803 30.2951V35.0123H13.0375Z" fill="var(--icon-on-subtle)"/>
|
|
11
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 19.5009H44.5C45.8807 19.5009 47 20.6201 47 22.0009V44.0009C47 45.3816 45.8807 46.5009 44.5 46.5009H4.5C3.11929 46.5009 2 45.3816 2 44.0009V22.0009C2 20.6201 3.11929 19.5009 4.5 19.5009ZM5.29997 24.0009C5.83016 24.0009 6.25997 23.5711 6.25997 23.0409C6.25997 22.5107 5.83016 22.0809 5.29997 22.0809C4.76977 22.0809 4.33997 22.5107 4.33997 23.0409C4.33997 23.5711 4.76977 24.0009 5.29997 24.0009ZM6.25997 43.2009C6.25997 43.7311 5.83016 44.1609 5.29997 44.1609C4.76977 44.1609 4.33997 43.7311 4.33997 43.2009C4.33997 42.6707 4.76977 42.2409 5.29997 42.2409C5.83016 42.2409 6.25997 42.6707 6.25997 43.2009ZM44.66 23.0409C44.66 23.5711 44.2302 24.0009 43.7 24.0009C43.1698 24.0009 42.74 23.5711 42.74 23.0409C42.74 22.5107 43.1698 22.0809 43.7 22.0809C44.2302 22.0809 44.66 22.5107 44.66 23.0409ZM44.66 43.2009C44.66 43.7311 44.2302 44.1609 43.7 44.1609C43.1698 44.1609 42.74 43.7311 42.74 43.2009C42.74 42.6707 43.1698 42.2409 43.7 42.2409C44.2302 42.2409 44.66 42.6707 44.66 43.2009ZM28.2905 34.2278V32.3933C28.2905 31.6893 28.234 31.0726 28.121 30.5433C28.0079 30.0089 27.8435 29.5541 27.6276 29.179C27.417 28.7987 27.16 28.4904 26.8568 28.254C26.5588 28.0176 26.2196 27.8455 25.8393 27.7376C25.4642 27.6245 25.0531 27.568 24.606 27.568C24.0511 27.568 23.5475 27.6553 23.0952 27.8301C22.6482 28.0048 22.2628 28.2848 21.939 28.6702C21.6153 29.0505 21.3661 29.5464 21.1913 30.1579C21.0166 30.7643 20.9293 31.5094 20.9293 32.3933V34.2278C20.9293 34.9318 20.9858 35.5511 21.0988 36.0855C21.217 36.6199 21.3815 37.0798 21.5922 37.4652C21.808 37.8455 22.0675 38.1564 22.3707 38.3979C22.6739 38.6395 23.013 38.8167 23.3882 38.9298C23.7684 39.0429 24.1795 39.0994 24.6215 39.0994C25.1764 39.0994 25.6775 39.0094 26.1246 38.8296C26.5768 38.6497 26.9647 38.3671 27.2885 37.9817C27.6122 37.5963 27.8589 37.0953 28.0285 36.4786C28.2032 35.8568 28.2905 35.1066 28.2905 34.2278ZM37.8943 34.2278V32.3933C37.8943 31.6893 37.8378 31.0726 37.7247 30.5433C37.6117 30.0089 37.4472 29.5541 37.2314 29.179C37.0207 28.7987 36.7638 28.4904 36.4606 28.254C36.1625 28.0176 35.8234 27.8455 35.4431 27.7376C35.068 27.6245 34.6569 27.568 34.2098 27.568C33.6548 27.568 33.1512 27.6553 32.699 27.8301C32.2519 28.0048 31.8665 28.2848 31.5428 28.6702C31.219 29.0505 30.9698 29.5464 30.7951 30.1579C30.6204 30.7643 30.533 31.5094 30.533 32.3933V34.2278C30.533 34.9318 30.5895 35.5511 30.7026 36.0855C30.8208 36.6199 30.9852 37.0798 31.1959 37.4652C31.4117 37.8455 31.6712 38.1564 31.9744 38.3979C32.2776 38.6395 32.6168 38.8167 32.9919 38.9298C33.3722 39.0429 33.7833 39.0994 34.2252 39.0994C34.7802 39.0994 35.2812 39.0094 35.7283 38.8296C36.1805 38.6497 36.5685 38.3671 36.8922 37.9817C37.216 37.5963 37.4626 37.0953 37.6322 36.4786C37.8069 35.8568 37.8943 35.1066 37.8943 34.2278ZM19.258 36.4923V35.0123H17.8551V27.7898H15.9435L11.1027 35.3746L11.1644 36.4923H15.9974V39.0129H17.8551V36.4923H19.258Z" fill="var(--background-primary-subtlest)"/>
|
|
12
|
-
<path d="M36.0366 34.4899V32.1158C36.0366 31.6687 36.0109 31.2756 35.9595 30.9364C35.9081 30.5921 35.8311 30.3018 35.7283 30.0654C35.6307 29.8239 35.5073 29.6286 35.3583 29.4796C35.2093 29.3254 35.0397 29.215 34.8496 29.1481C34.6594 29.0762 34.4462 29.0402 34.2098 29.0402C33.922 29.0402 33.6651 29.0968 33.439 29.2098C33.2129 29.3177 33.0227 29.4924 32.8686 29.734C32.7144 29.9755 32.5962 30.2941 32.514 30.6898C32.4369 31.0803 32.3984 31.5557 32.3984 32.1158V34.4899C32.3984 34.9421 32.4241 35.3404 32.4755 35.6847C32.5268 36.029 32.6039 36.3244 32.7067 36.5711C32.8095 36.8126 32.9328 37.013 33.0767 37.1723C33.2257 37.3265 33.3953 37.4396 33.5854 37.5115C33.7807 37.5834 33.994 37.6194 34.2252 37.6194C34.5181 37.6194 34.7776 37.5629 35.0037 37.4498C35.2298 37.3368 35.42 37.1569 35.5741 36.9103C35.7283 36.6585 35.8439 36.3321 35.921 35.9313C35.9981 35.5305 36.0366 35.05 36.0366 34.4899Z" fill="var(--background-primary-subtlest)"/>
|
|
13
|
-
<path d="M26.4329 34.4899V32.1158C26.4329 31.6687 26.4072 31.2756 26.3558 30.9364C26.3044 30.5921 26.2273 30.3018 26.1246 30.0654C26.0269 29.8239 25.9036 29.6286 25.7546 29.4796C25.6055 29.3254 25.436 29.215 25.2458 29.1481C25.0557 29.0762 24.8424 29.0402 24.606 29.0402C24.3183 29.0402 24.0613 29.0968 23.8352 29.2098C23.6091 29.3177 23.419 29.4924 23.2648 29.734C23.1107 29.9755 22.9925 30.2941 22.9103 30.6898C22.8332 31.0803 22.7946 31.5557 22.7946 32.1158V34.4899C22.7946 34.9421 22.8203 35.3404 22.8717 35.6847C22.9231 36.029 23.0002 36.3244 23.103 36.5711C23.2057 36.8126 23.3291 37.013 23.4729 37.1723C23.622 37.3265 23.7916 37.4396 23.9817 37.5115C24.177 37.5834 24.3902 37.6194 24.6215 37.6194C24.9144 37.6194 25.1739 37.5629 25.4 37.4498C25.6261 37.3368 25.8162 37.1569 25.9704 36.9103C26.1246 36.6585 26.2402 36.3321 26.3173 35.9313C26.3943 35.5305 26.4329 35.05 26.4329 34.4899Z" fill="var(--background-primary-subtlest)"/>
|
|
14
|
-
<path d="M15.9803 30.2951L13.0375 35.0123H15.9803V30.2951Z" fill="var(--background-primary-subtlest)"/>
|
|
15
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.14 8.753L6.658 13.549C6.012 14.115 5 13.655 5 12.796V3.204C4.99984 3.01175 5.05509 2.82354 5.15914 2.66189C5.26319 2.50024 5.41164 2.372 5.58669 2.29255C5.76175 2.21309 5.956 2.18578 6.14618 2.21388C6.33636 2.24198 6.51441 2.32431 6.659 2.451L12.139 7.247C12.2464 7.34086 12.3325 7.45661 12.3915 7.58649C12.4505 7.71636 12.481 7.85736 12.481 8C12.481 8.14264 12.4505 8.28363 12.3915 8.41351C12.3325 8.54338 12.2464 8.65914 12.139 8.753H12.14Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_809)">
|
|
3
|
-
<path d="M32.25 36.5009C32.6642 36.5009 33 36.1651 33 35.7509C33 35.3366 32.6642 35.0009 32.25 35.0009H15.75C15.3358 35.0009 15 35.3366 15 35.7509C15 36.1651 15.3358 36.5009 15.75 36.5009H32.25Z" fill="currentColor"/>
|
|
4
|
-
<path d="M29.25 40.0009C29.6642 40.0009 30 40.3366 30 40.7509C30 41.1651 29.6642 41.5009 29.25 41.5009H18.75C18.3358 41.5009 18 41.1651 18 40.7509C18 40.3366 18.3358 40.0009 18.75 40.0009H29.25Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 48.0009C6.89543 48.0009 6 47.1054 6 46.0009V2.00086C6 0.896286 6.89543 0.000854492 8 0.000854492H40C41.1046 0.000854492 42 0.896285 42 2.00085V46.0009C42 47.1054 41.1046 48.0009 40 48.0009H8ZM7.5 2.00086C7.5 1.72471 7.72386 1.50085 8 1.50085H40C40.2761 1.50085 40.5 1.72471 40.5 2.00085V46.0009C40.5 46.277 40.2761 46.5009 40 46.5009H8C7.72386 46.5009 7.5 46.277 7.5 46.0009V2.00086Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8263 9.85783L16 12.0009L18.8263 14.1439L18.3431 17.6577L21.857 17.1746L24 20.0009L26.143 17.1746L29.6569 17.6577L29.1737 14.1439L32 12.0009L29.1737 9.85783L29.6569 6.344L26.143 6.82713L24 4.00085L21.857 6.82713L18.3431 6.344L18.8263 9.85783ZM20.0986 8.09948L20.4318 10.5229L18.4826 12.0009L20.4318 13.4788L20.0986 15.9022L22.522 15.569L24 17.5182L25.478 15.569L27.9014 15.9022L27.5682 13.4788L29.5174 12.0009L27.5682 10.5229L27.9014 8.09948L25.478 8.43268L24 6.48348L22.522 8.43268L20.0986 8.09948Z" fill="currentColor"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.8787 26.2569L21.5479 17.0555L20.0519 16.9467L19.1211 29.7452L23.9999 25.5525L28.8787 29.7452L27.9479 16.9467L26.4519 17.0555L27.1211 26.2569L23.9999 23.5747L20.8787 26.2569Z" fill="currentColor"/>
|
|
8
|
-
</g>
|
|
9
|
-
<defs>
|
|
10
|
-
<clipPath id="clip0_100_809">
|
|
11
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
12
|
-
</clipPath>
|
|
13
|
-
</defs>
|
|
14
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_924)">
|
|
3
|
-
<path d="M25.73 24.8952C26.0313 24.8952 26.1174 25.0674 26.1605 25.1965V25.2827C26.1605 25.3688 26.1605 25.4979 26.1174 25.541L26.0744 25.6271V25.6701L26.1174 25.7132L26.2466 25.9284L26.3327 26.0576C26.5049 26.359 26.7202 26.7465 26.7202 27.1339C26.7202 27.7797 26.8493 28.5547 27.4521 29.2005H27.3229L27.2368 29.1574C27.0646 29.1144 26.8924 28.9852 26.6771 28.813C26.6341 28.813 26.6341 28.8991 26.6341 29.0283V29.4588C26.6341 29.5018 26.6341 29.5879 26.6341 29.631V29.8032C26.6341 29.8463 26.6341 29.8463 26.6341 29.8893V30.0615C26.6771 30.3198 26.7202 30.5351 26.8063 30.6643C26.8924 30.7504 26.7202 30.7073 26.548 30.5351L26.3327 30.3198C26.2897 30.2337 26.2466 30.1907 26.2036 30.2337H26.1605L26.1174 30.2768L25.9883 30.5351C25.9022 30.8795 25.8161 31.3962 26.1174 31.9128C26.1605 31.9989 26.1175 31.9989 26.0313 31.9558L25.9883 31.9128L25.9022 31.8697C25.773 31.7836 25.5578 31.6114 25.4717 31.4392C25.4717 31.3962 25.4286 31.4392 25.3856 31.5253L25.2994 31.6975V31.8267C25.2133 32.2142 25.2133 32.86 25.5147 33.4196C25.5578 33.5057 25.4717 33.4627 25.3856 33.4196L25.2133 33.3335L25.2994 33.2905C25.2994 33.2905 25.2564 33.2905 25.2564 33.2474L25.2133 33.2044C25.1703 33.1613 25.1703 33.1613 25.1272 33.1183V33.0752C25.0411 32.9461 24.912 33.2474 25.1272 33.721L25.3856 34.1946L25.5578 34.539C25.6869 34.7543 25.773 34.9265 25.8591 35.0126C25.9452 35.0987 26.1175 35.2279 26.3327 35.314L26.6771 35.4862C26.7202 35.5292 26.7632 35.5292 26.8063 35.5723H26.8493L27.2368 35.8306C27.5812 36.0459 28.0979 36.3042 28.5715 36.3042C29.3034 36.3042 29.6908 35.7875 29.6908 35.5292H29.6478L29.3895 35.4862H29.3034L29.2173 35.4431L28.9589 35.357H28.9159L28.7867 35.314C28.1409 35.0556 27.3229 34.496 27.3229 33.1183C27.3229 32.042 28.0118 31.267 28.5715 30.7934L28.8298 30.6212L28.9159 30.5351L29.1742 30.3629L29.5617 30.7504L29.4325 30.8365L29.2603 30.9656L29.1312 31.0517L28.9589 31.2239C28.4854 31.6545 27.8826 32.3433 27.8826 33.1183C27.8826 34.4099 29.045 35.0126 29.7339 35.0126V34.7973C29.7339 34.7973 29.7339 34.7973 29.7339 34.7543V34.6251C29.7339 34.5821 29.7339 34.5821 29.7339 34.539L29.6908 34.4529C29.5617 34.1515 29.2603 33.8071 28.4854 33.4627H28.7437C29.002 33.4627 29.4325 33.5057 29.7339 33.9363C29.863 34.1085 29.9061 33.9793 29.9492 33.9363C29.9922 33.8932 30.2075 33.6349 30.5519 33.7641L30.4658 33.8071C30.4658 33.8071 30.4658 33.8071 30.4658 33.8502L30.4227 33.8932C30.2936 34.0654 30.1214 34.4529 30.2936 34.9695H30.4227L30.5088 34.9265H30.5519L30.638 34.8834C31.0255 34.6682 31.6282 34.2376 31.6282 33.2905C31.6282 32.4294 31.0255 31.7836 30.4227 31.2239L30.2505 31.0517L29.9061 30.7504C29.863 30.7073 29.863 30.7073 29.82 30.6643L29.6908 30.5351C29.6047 30.492 29.5617 30.4059 29.5186 30.3629L29.4756 30.3198C29.3895 30.2337 29.3034 30.1046 29.2173 30.0185L28.8298 29.631C28.3993 29.2005 28.0118 28.7269 27.9257 28.038L27.8826 27.9519H27.8396C27.7104 27.8658 27.366 27.6936 27.366 27.1339C27.366 26.7895 27.5812 26.4451 27.7965 26.1868L27.8826 26.0576L28.0979 25.8423L28.184 25.7993L28.227 25.7562H28.2701C28.2701 25.7562 28.2701 25.7562 28.2701 25.7993L28.227 26.0146L28.184 26.1007C28.1409 26.2729 28.1409 26.4881 28.3131 26.4881C28.5715 26.4881 29.1312 25.8423 29.1312 25.7132C29.1312 25.6701 29.1742 25.7132 29.1742 25.7562V25.9715L29.1312 26.0576C29.0881 26.1868 29.045 26.3159 28.9589 26.402L28.9159 26.4451C28.8728 26.5312 28.7867 26.5742 28.7437 26.6603L28.4854 26.9617C28.3562 27.1339 28.227 27.2631 28.3562 27.3922C28.4854 27.5645 28.7867 27.3492 28.9589 27.177L29.002 27.0909L29.045 27.0478V27.0048C29.045 26.9617 29.0881 26.9617 29.045 27.0048V27.0478V27.1339L29.002 27.22V27.2631L28.9589 27.3492C28.8728 27.5645 28.7006 27.8228 28.4423 27.9519V28.2533L28.4854 28.2964L28.5715 28.4686C28.5715 28.4686 28.5715 28.5116 28.6145 28.5116L28.6576 28.5977L28.8728 28.813L28.9589 28.9421L29.2173 29.2005C29.1311 29.2435 29.1742 29.2435 29.1742 29.2866L29.6478 29.7602L30.0783 30.1046L30.2505 30.2768L30.5088 30.492L30.9394 30.8365L31.1977 31.0948H31.2407C31.2838 31.0517 31.3268 31.0087 31.3268 30.8795V30.8365C31.3268 30.5782 31.413 30.3198 31.5421 30.2337V30.9226C31.5421 31.267 31.5852 31.6545 31.7143 31.7406C31.8435 31.7836 31.8865 31.6545 31.8865 31.4823C31.9296 31.3101 32.0587 31.1378 32.1018 31.1809L32.0587 31.3101L32.0157 31.4823V31.7406C31.9726 32.085 31.9726 32.4294 32.1879 32.5586C32.231 32.5586 32.231 32.5586 32.274 32.5155L32.3171 32.4725C32.3601 32.3864 32.4893 32.3433 32.7045 32.4294L32.6615 32.2572L32.6184 32.3003C32.4462 32.3864 32.1879 32.6877 32.231 33.1183C32.274 33.721 31.7143 35.2709 30.2936 35.4862V35.5723L30.2505 35.6584L30.2075 35.7014L30.1214 35.8737C29.9061 36.2611 29.4756 36.8208 28.3993 36.6917L28.7006 36.993L28.8728 37.2513C28.8728 37.2944 28.9159 37.2944 28.9159 37.3374L29.002 37.4666C29.3895 38.0263 29.7769 38.8443 29.7339 39.7484L29.6908 39.6623L29.6478 39.4901L29.4756 39.0596L29.3895 38.9304C29.3895 38.8874 29.3464 38.8874 29.3464 38.8443L29.2603 38.7151L29.0881 38.3707L28.8298 38.0263C28.7437 37.8541 28.6145 37.7249 28.4854 37.5527L28.3131 37.3805C27.8826 36.8639 27.366 36.3903 26.7632 36.0459L26.6341 35.9598C26.591 35.9598 26.548 36.0028 26.591 36.175C26.6341 36.3903 26.4619 36.8639 26.3327 37.0791C26.3327 37.1222 26.2897 37.1222 26.2897 37.2083V37.8541C26.3758 38.586 26.7632 39.5762 27.9687 39.9206C28.184 39.9637 28.3562 39.9637 28.5284 39.9637H28.7006L28.7867 39.9206V39.9637L28.7006 40.0498L28.7437 39.9637C28.5715 40.0928 28.2701 40.265 27.6674 40.265C27.409 40.265 27.409 40.6525 27.7965 40.6525C27.7965 40.6525 27.7965 40.6525 27.7965 40.6956V40.9108L27.6674 41.2983L27.5382 41.8149L27.2799 42.3316C27.2799 42.3746 27.2368 42.3746 27.2368 42.4177L27.1507 42.5899C26.9785 42.9774 26.7632 43.3218 26.548 43.5371C26.4188 43.6232 26.5049 43.6662 26.548 43.7093H26.6341C26.6771 43.7093 26.7202 43.7523 26.8063 43.7954L26.8924 43.8384C26.8924 43.8384 26.9355 43.8384 26.9355 43.8815L27.0216 43.9245C27.0646 43.9676 27.1077 43.9676 27.1507 44.0106H27.1077C27.0216 44.0106 26.9355 44.0106 26.9355 44.0537V44.312C26.8924 44.4412 26.8493 44.6134 26.591 44.6134C26.2466 44.6134 26.1605 44.269 26.1605 44.0967C26.1605 43.9245 25.9883 43.9245 25.9022 43.9245C25.8591 43.9245 25.6008 44.0106 25.5147 44.312L25.4717 44.4412C25.4286 44.7425 25.2994 45.0009 25.0411 45.0009C24.7398 45.0009 24.6537 44.7856 24.6537 44.6134C24.6537 44.5703 24.6537 44.5703 24.6106 44.5703H24.5675C24.5245 44.5703 24.4384 44.5703 24.3523 44.5273L24.4814 44.4412L24.5675 44.3981L24.8259 44.2259C25.0411 44.0537 25.2133 43.8815 25.1703 43.7954C25.0842 43.5801 24.955 43.6232 24.8689 43.7093L24.8259 43.7523L24.7398 43.7954C24.6106 43.8815 24.3953 44.0106 24.2231 44.0537C23.9648 44.0967 23.8356 43.7523 23.9648 43.494L24.0079 43.451C24.0509 43.4079 24.0079 43.4079 23.9648 43.3648L23.8787 43.3218C23.8357 43.2787 23.7926 43.2787 23.7495 43.2357H24.2231C24.5675 43.2357 24.955 43.2357 24.955 43.0635C24.912 42.8052 24.6967 42.8052 24.5675 42.8482C24.4384 42.8913 24.0509 42.8482 24.0509 42.5899C24.0509 42.5468 24.094 42.5038 24.094 42.4607L24.137 42.3746C24.1801 42.3316 24.1801 42.2885 24.1801 42.2455C24.1801 42.2024 24.137 42.1594 24.094 42.1163L24.0509 42.0733H24.094C24.094 42.0733 24.094 42.0733 24.137 42.0733H24.2231C24.3092 42.0733 24.4384 42.0733 24.5675 42.1163C24.6537 42.1594 24.7398 42.2024 24.8259 42.3316L24.9981 42.5038C25.1703 42.676 25.3856 42.8913 25.5578 42.8913C25.9022 42.8913 26.2036 42.3746 26.2036 41.3414V40.4373C26.1605 40.265 26.1605 40.1789 26.0744 40.1359L26.0313 40.0928L25.9452 40.0498L25.9022 40.0067C25.9022 40.0067 25.8591 39.9637 25.8591 39.9206V39.8345C25.8591 39.7915 25.8591 39.7054 25.773 39.6623C25.6439 39.6192 25.4717 39.7915 25.4286 40.4803V40.6525C25.4286 40.6956 25.4286 40.6956 25.4286 40.7386V41.1692L25.3856 41.2983L25.2994 41.1261V41.083L25.2133 40.8247C25.1703 40.6525 25.1272 40.4803 25.1272 40.265C25.1272 40.222 25.1272 40.1789 25.1272 40.1359V39.9206C25.1272 39.8345 25.1272 39.7915 25.0842 39.7484C25.0842 39.7484 25.0411 39.7484 24.9981 39.7915L24.8259 39.9637C24.6967 40.0928 24.5245 40.265 24.3092 40.3511L24.4384 40.0928C24.5245 39.9206 24.6106 39.6623 24.6106 39.447C24.6106 39.404 24.6106 39.3609 24.5675 39.3179V39.2748L24.6106 39.1457L24.4814 39.0165C24.3523 38.8443 24.1801 38.4999 24.1801 37.5958C24.1801 37.2944 24.2231 37.0791 24.2662 36.9069L24.3092 36.7778C24.3523 36.6056 24.3953 36.4333 24.3953 36.175C24.3953 35.8737 24.0509 35.5292 23.6634 35.1848L23.319 34.9265L23.2329 34.8404L22.6732 34.4529L22.3288 34.1946C22.2857 34.1515 22.2857 34.1515 22.2427 34.1085L22.0274 33.9363L21.5108 33.4196C21.5108 33.4196 21.5108 33.4196 21.5108 33.3766C21.4677 33.3335 21.5538 33.2474 21.5969 33.1613L21.8552 32.86L21.9413 32.7308C22.0705 32.5586 22.1566 32.3864 22.0274 32.3003C21.8552 32.1711 21.7691 32.2572 21.64 32.4294L21.5108 32.6877C21.5108 32.7308 21.4677 32.7308 21.4677 32.7738C21.2955 33.0322 20.9942 33.2905 20.865 33.3766C20.822 33.3766 20.822 33.3335 20.822 33.2474V32.7738C20.822 32.5586 20.7789 32.3433 20.6497 32.3433C20.3484 32.3433 20.3053 32.6447 20.3484 32.7738V32.8169C20.3484 32.86 20.3484 32.86 20.2623 32.86H20.1762C20.047 32.86 19.9178 32.903 19.7887 33.0322L19.7456 33.1183C19.7456 33.1183 19.7456 33.1613 19.7026 33.1613L19.6595 33.2474C19.5734 33.4196 19.4443 33.6349 19.4012 33.9793V33.8932C19.3582 33.7641 19.3151 33.4627 19.4012 33.2044L19.4443 33.1183C19.4443 33.0752 19.4443 33.0752 19.3582 33.0752H18.8415L18.4971 33.1613L18.1957 33.2044L17.7652 33.2905C17.7221 33.2905 17.6791 33.2905 17.636 33.3335C17.5069 33.3766 17.4638 33.4196 17.4638 33.6349V34.1515C17.4638 34.3238 17.4638 34.4099 17.4638 34.539C17.4638 34.5821 17.4208 34.539 17.4208 34.496V34.3668C17.4208 34.3668 17.4208 34.3668 17.3777 34.3668H17.2486C17.0764 34.4099 16.818 34.4099 16.818 34.1515C16.818 33.9363 16.8611 33.8932 16.9472 33.8502L16.9902 33.8071C17.0333 33.7641 17.0764 33.7641 17.0764 33.678C17.0764 33.4196 16.9041 33.2905 16.6889 33.2905C16.5597 33.2905 16.4736 33.3766 16.3875 33.4627L16.3014 33.5488C16.1722 33.678 16.0431 33.8071 15.8709 33.8071C15.4834 33.8071 15.4403 33.5488 15.4403 33.4196C15.4403 33.2905 15.4834 33.2474 15.4834 33.1613C15.4834 33.0752 15.3973 32.9891 15.3112 32.9891C15.2681 32.9891 15.3542 32.9461 15.4834 32.9461H15.5265L15.7848 32.9891C16.0861 33.0322 16.4736 32.9891 16.4736 32.7308C16.4736 32.6447 16.3875 32.6016 16.3014 32.6447H16.1722C16.1292 32.6447 16.1292 32.6447 16.0861 32.6447L15.9139 32.6016C15.6987 32.5586 15.3973 32.4725 15.3973 32.1281C15.3973 31.9558 15.5695 31.8697 15.6556 31.8267H15.6987C15.6987 31.7836 15.7417 31.6975 15.7417 31.6114C15.7417 31.5684 15.7417 31.5684 15.8278 31.6114V31.5253L15.9139 31.5684L16.0431 31.6545L16.4306 32.042C16.5167 32.1711 16.6458 32.1281 16.6889 32.085H16.7319C16.775 32.042 16.8611 31.9128 16.6458 31.7836C16.3875 31.6545 16.3875 31.5253 16.3875 31.3101C16.3875 31.1378 16.5167 31.0948 16.6028 31.0517H16.6458C16.6889 31.0517 16.7319 30.8795 16.6889 30.7934V30.7504C16.6458 30.6212 16.9902 30.9226 17.1625 31.267C17.1625 31.3101 17.2055 31.3531 17.2055 31.3962V31.6114C17.2055 31.8267 17.2486 31.9989 17.5069 32.1281H17.6791C17.6791 32.1281 17.6791 32.1281 17.7221 32.1281H17.8083L17.8944 32.085L18.0235 32.042C18.0235 32.042 18.0666 32.042 18.1096 31.9989L18.1957 31.9558L18.454 31.8697L19.229 31.5684L20.4345 31.1378C20.5206 31.0948 20.6928 31.0087 20.6067 30.8795C20.5206 30.7073 20.2192 30.6643 19.7887 30.9656L19.7456 31.0087C19.6595 31.0948 19.6165 31.0517 19.6595 30.9656L19.7026 30.9226L19.7456 30.8365C19.7456 30.8365 19.7456 30.7934 19.7887 30.7934L19.8317 30.7073C19.8317 30.7073 19.8317 30.6643 19.8748 30.6643L19.9609 30.5782C20.0039 30.5351 20.0039 30.492 20.047 30.492L20.1331 30.4059C20.4345 30.0185 20.9081 29.631 21.3386 29.631C21.5108 29.631 21.5538 29.5449 21.5538 29.4588V29.4157C21.5538 29.3296 21.4677 29.2435 21.1664 29.2435C20.7789 29.2435 20.2623 29.631 20.047 30.0185C20.047 30.0185 20.0039 30.0185 19.9609 30.0185L19.8317 29.9324C19.7456 29.8463 19.5734 29.8032 19.3582 29.8032C19.0998 29.8032 18.9276 29.8463 18.7985 29.8463L18.7124 29.8893H18.5832C18.4971 29.8893 18.7985 29.4588 19.3151 29.4588C19.4012 29.4588 19.4012 29.3296 19.229 29.2005L19.1859 29.1574C19.0998 29.1144 18.9707 28.9421 18.8415 28.813L18.454 28.2964C18.411 28.2533 18.411 28.2533 18.3679 28.2102C18.2818 28.1241 18.1957 28.2533 18.0666 28.4686L18.0235 28.5547L17.8944 28.9421C17.8944 28.9852 17.8513 28.9421 17.8513 28.8991V28.7699C17.8513 28.7269 17.8083 28.7269 17.8083 28.7269L17.7221 28.6838C17.593 28.6408 17.4638 28.5547 17.4638 28.2964C17.4638 27.995 17.636 27.9519 17.8083 27.995H17.8513L17.9374 28.038C17.9374 28.038 17.9374 28.038 17.9805 28.038C18.1527 28.0811 18.3249 27.8658 18.2818 27.6936C17.9805 27.5214 17.8083 27.3061 17.5499 27.3061H17.5069C17.2055 27.3492 16.775 27.1339 16.775 26.7895C16.775 26.6173 16.8611 26.5312 16.9472 26.4881L17.0333 26.4451H17.0764C17.1194 26.402 17.1194 26.2298 17.1194 26.1868C17.1194 26.1868 17.1194 26.1868 17.1625 26.1868L17.2055 26.2298L17.2916 26.2729L17.593 26.5742C17.636 26.6173 17.636 26.6173 17.6791 26.6603L17.8083 26.7895C17.9374 26.9187 17.9805 26.9617 18.0666 26.9187C18.1527 26.8756 18.1957 26.6603 17.8944 26.402C17.593 26.1437 17.636 25.8423 17.7652 25.6701C17.7652 25.6701 17.8083 25.6701 17.8513 25.6701H17.9805C18.1096 25.6701 18.2388 25.6701 18.2818 25.584C18.2818 25.4979 18.3249 25.541 18.3249 25.584V25.7132L18.3679 25.7993V26.1437L18.411 26.2298V26.359C18.411 26.6173 18.4971 26.6603 18.5832 26.6603C18.6693 26.6603 18.7554 26.6173 18.7124 26.2298C18.6693 25.8854 18.7554 25.7993 18.8415 25.7562L18.8846 25.7132C18.9707 25.6701 19.0998 25.6701 19.1859 25.7562C19.272 25.8423 19.4443 25.7132 19.4443 25.584V25.7562C19.4873 25.8854 19.4873 26.0576 19.3582 26.2298C19.3151 26.2729 19.3151 26.3159 19.272 26.3159L19.0998 26.4881C18.9276 26.6603 18.7985 26.8756 18.9707 27.22L19.0137 27.3061L20.7358 29.0713C20.7789 29.0713 20.822 29.0283 20.7358 28.9421C20.6497 28.813 20.6497 28.6838 20.7358 28.5977V28.5547L20.7789 28.5977L20.9511 28.6838C20.9511 28.6838 20.9942 28.6838 20.9942 28.7269L21.0803 28.7699C21.3816 28.8991 21.8122 29.0283 22.458 28.9421C23.6204 28.813 24.094 27.995 23.9218 27.8228L24.0079 27.8658L23.7926 28.0811C23.5773 28.2102 23.319 28.3825 23.0607 28.3825C22.5871 28.3825 22.3288 27.9089 22.4149 27.6075V27.5645L22.501 27.6506C22.5871 27.7367 22.8024 27.8658 23.0607 27.8658C23.4482 27.8658 23.8787 27.3922 23.7926 27.1339C23.7926 27.0909 23.7495 27.0909 23.6634 27.1339L23.5773 27.0909L23.1468 27.22L22.9746 27.2631C22.9315 27.2631 22.9315 27.2631 22.8885 27.3061L22.7163 27.3492C22.4149 27.4353 21.9844 27.4783 21.5538 27.4783C20.1762 27.4783 19.9609 26.1007 20.9511 25.541L20.9081 25.584L20.865 25.6701V26.0576C20.7789 26.5312 20.9081 27.1339 22.0274 27.1339C22.2427 27.1339 22.458 27.1339 22.6302 27.0909L22.8024 27.0478C22.8454 27.0478 22.9315 27.0478 22.9746 27.0048L23.1468 26.9617L23.4051 26.8756L23.5773 26.7895L23.7065 26.7465V26.6603C23.6634 26.5312 23.4912 26.2298 23.1038 26.2298C22.7163 26.2298 22.5441 26.5312 22.458 26.6603L22.4149 26.7034V26.7465L22.3719 26.7034L22.2857 26.7895C22.1566 26.7034 21.9413 26.4451 22.0274 26.1437C22.0274 26.1007 22.0705 26.1007 22.1135 26.1007H22.2857C22.4149 26.0576 22.5441 26.0146 22.5441 25.8423C22.5441 25.7562 22.501 25.7132 22.458 25.7132H22.4149C22.3719 25.7132 22.3288 25.7562 22.2857 25.7993L22.2427 25.8854C22.1996 25.9284 22.1996 25.9715 22.1135 25.9715C21.9413 25.9715 21.9413 25.4549 22.2857 25.4549H22.3288C22.4149 25.4549 22.5441 25.4549 22.5871 25.3688V25.3257C22.5871 25.1965 22.8885 25.0674 23.5343 25.0243H23.7495C23.8356 25.0243 23.9648 25.0243 24.094 25.0243C24.5675 25.0243 24.8689 25.1104 25.0411 25.1535L25.1272 25.1965L25.2564 25.3257V25.2827C25.2994 25.1104 25.4286 24.8952 25.73 24.8952ZM21.1664 34.7973H22.8454C22.8885 34.7973 22.8885 34.8404 22.8885 34.8834V34.9265C22.8885 34.9695 22.8885 35.0556 23.0176 35.0987C23.1899 35.1418 23.7065 35.5723 23.7065 35.7875C23.7065 35.8306 23.6634 35.9167 23.6204 35.9598L23.4912 36.132C23.4482 36.2181 23.4051 36.3042 23.4912 36.4764C23.7065 36.7778 23.8787 36.7778 24.0079 36.7778H23.9648C23.9648 36.7778 23.9648 36.7778 23.9218 36.7778L23.8787 36.8208C23.7495 36.8639 23.4912 36.9069 23.1038 36.9069H23.0176C22.8454 36.9069 22.6732 36.8639 22.501 36.8208L22.0274 36.7347C21.7691 36.6917 21.5538 36.6486 21.2955 36.6917H21.1664C20.6928 36.7778 20.3914 37.2083 20.6067 38.586V38.7151C20.6067 38.7582 20.6928 38.8012 20.865 38.8012C21.1233 38.8012 21.7691 39.1026 22.1566 39.7484L21.9844 39.6623V39.5762L21.7261 39.4901C21.3816 39.3179 21.0372 39.1887 20.9081 39.404C20.822 39.5762 20.865 39.7054 20.9942 39.7915C21.0372 39.7915 20.9511 39.8345 20.822 39.8776L20.6928 39.9206L20.4775 40.0067H20.2623L19.8317 40.1359L19.0568 40.3511C18.9276 40.3942 18.8846 40.4803 19.1429 40.6525L19.1859 40.6956L19.4443 40.8678L19.4873 40.9108C19.5304 40.9539 19.5734 40.9969 19.5304 40.9969H19.4012C19.272 40.9969 19.1429 40.9969 19.1429 41.083C19.1429 41.1692 19.0998 41.3844 18.8846 41.3844C18.6693 41.3844 18.5401 41.2553 18.5401 41.083V40.8678C18.5401 40.6956 18.454 40.5664 18.2818 40.5664C18.0235 40.5664 17.8513 40.8247 17.8513 41.2983C17.8513 41.6427 17.5069 41.7288 17.3777 41.7288C17.2486 41.7288 17.1194 41.6858 17.1194 41.4705C17.1194 41.4275 17.0333 41.4275 16.9472 41.4275H16.8611C16.818 41.4275 16.8611 41.3844 16.9472 41.2983L17.0333 41.2553L17.2916 41.083L17.5499 40.8678C17.636 40.8247 17.636 40.6525 17.593 40.6095L17.5499 40.5664C17.4638 40.5234 17.3777 40.4803 17.2055 40.6095C17.0333 40.7817 16.818 40.9108 16.6458 40.9108C16.4736 40.9108 16.3014 40.7386 16.3014 40.5664V40.3511C16.3014 40.265 16.3014 40.1359 16.1722 40.0928L16.1292 40.0498C16.0861 40.0067 16.0861 40.0067 16.1722 40.0067H17.1625C17.3347 40.0067 17.5069 39.9637 17.5069 39.9206C17.5069 39.7054 17.2916 39.6623 17.2055 39.6623H17.0764C16.8611 39.6623 16.5597 39.6623 16.5597 39.3609C16.5597 39.2748 16.6028 39.2318 16.6458 39.1887H16.6889C16.6889 39.1457 16.7319 39.1457 16.7319 39.1026C16.7319 39.0165 16.6028 39.0165 16.5597 39.0165L16.6458 38.9304C16.775 38.8874 17.0333 38.8012 17.2916 39.0165C17.3347 39.0596 17.4208 39.1457 17.4638 39.1887L17.636 39.447C17.7652 39.6192 17.8944 39.7484 18.1096 39.7484H18.1957C18.6263 39.7054 19.6595 39.3179 19.6595 38.1555C19.6595 37.811 19.5734 37.5097 19.4873 37.2513L19.4012 36.993L19.272 36.7347C19.272 36.6917 19.272 36.6917 19.272 36.6917C19.272 36.6486 19.272 36.6486 19.3151 36.6486H19.4012C19.4873 36.6486 19.6165 36.6056 19.6165 36.4333C19.6165 36.0889 17.5499 36.0459 16.9041 36.6917V36.5194L16.9472 36.4333C17.0764 36.2181 17.3777 35.9167 18.0666 35.9167C18.2388 35.9167 18.3679 35.9598 18.454 35.9598L18.5832 36.0028C18.7124 36.0459 18.7985 36.0459 18.9276 36.0028C18.9707 36.0028 18.9707 35.9598 18.9276 35.9167L18.7554 35.7014C18.6263 35.5723 18.4971 35.4431 18.5401 35.1848L18.5832 35.2279C18.7124 35.357 19.0137 35.6153 19.3582 35.6153C19.4012 35.6153 19.4012 35.6153 19.4443 35.5723L19.4873 35.5292L19.5734 35.4001L19.7456 35.2279C20.0039 35.0556 20.4345 34.7973 21.1664 34.7973ZM23.276 32.2142C23.1899 32.2142 23.1038 32.2572 23.1038 32.3433V32.4725C23.1038 32.4725 23.1038 32.5155 23.0607 32.5155L22.9746 32.6877C22.8454 32.86 22.6732 33.0752 22.2857 33.2474C22.2427 33.2905 22.1996 33.3766 22.2427 33.4627C22.2857 33.5057 22.3288 33.5488 22.4149 33.5488H22.458C23.0176 33.2905 23.276 32.9461 23.3621 32.6877L23.4051 32.6016V32.3864C23.4051 32.3003 23.3621 32.2142 23.276 32.2142ZM24.4814 32.1281C24.3953 32.1281 24.3523 32.1711 24.3092 32.2572V32.4294C24.2662 32.6447 24.137 33.0322 23.6634 33.2905C23.6204 33.3335 23.5773 33.4196 23.6204 33.5057C23.6634 33.5488 23.7065 33.5919 23.7926 33.5919H23.8357C24.3523 33.3335 24.5675 32.903 24.6537 32.6016V32.3003C24.6106 32.1711 24.5675 32.1281 24.4814 32.1281ZM22.5441 30.1476C22.501 30.2337 22.5441 30.3198 22.5871 30.4059L22.6302 30.449C22.6732 30.492 22.8024 30.6212 22.8454 30.7934C22.9315 31.0948 22.8454 31.5253 22.5871 31.9558C22.5441 31.9989 22.5441 32.1281 22.6302 32.1711C22.6732 32.2142 22.6732 32.2142 22.7163 32.2142C22.7593 32.2142 22.8454 32.1711 22.8885 32.1281C23.1899 31.6114 23.319 31.1378 23.2329 30.7504V30.6643C23.1899 30.4059 23.0176 30.2768 22.9315 30.1907L22.8885 30.1476L22.7593 30.1046C22.6732 30.0615 22.5441 30.0615 22.5441 30.1476ZM21.7261 30.2768L21.64 30.3198L21.4677 30.492C21.2525 30.7073 21.0372 31.0948 20.9511 31.7406C20.9511 31.8267 20.9942 31.9128 21.0803 31.9128H21.1664C21.2094 31.9128 21.2955 31.8697 21.3386 31.7836V31.7406C21.3816 31.1378 21.64 30.7934 21.8122 30.6212L21.8983 30.5351C21.9844 30.492 21.9844 30.3629 21.9413 30.3198C21.8983 30.2768 21.8122 30.2768 21.7261 30.2768ZM23.7495 29.1574C23.7065 29.2435 23.7065 29.3296 23.7926 29.3727L23.9218 29.5018C23.9218 29.5018 23.9218 29.5018 23.9218 29.5449L23.9648 29.5879C24.094 29.8032 24.2231 30.1476 24.094 30.7934L24.0509 30.9226C24.0079 31.0087 24.0509 31.0517 24.137 31.0948H24.2231C24.2662 31.0948 24.3523 31.0517 24.3953 30.9656C24.6106 30.0185 24.3092 29.5018 24.137 29.2866L24.0509 29.2005L24.0079 29.1144L23.9648 29.0713C23.8787 29.0713 23.7926 29.0713 23.7495 29.1574ZM30.5949 25.6271L30.7241 25.8854C30.8533 26.1437 31.1116 26.4451 31.3699 26.402C31.456 26.402 31.456 26.2729 31.413 26.1437L31.3699 25.9715L31.3268 25.8854V25.7993C31.3268 25.7562 31.3268 25.7562 31.3268 25.7132L31.5852 25.9715C31.7143 26.1007 31.8435 26.2298 31.9726 26.3159C32.231 26.4881 32.274 27.0048 32.1448 27.3061C32.0157 27.5214 31.8004 27.7367 31.7574 27.9519V27.995C31.7143 28.1241 31.6282 28.2964 31.4991 28.5547L31.413 28.7269C31.3268 28.856 31.2838 28.9421 31.1546 29.0713L30.9824 29.2435C30.8533 29.4157 30.6811 29.5879 30.5088 29.7602L30.4227 29.8463L29.9922 29.4588L30.6811 28.7699C30.9824 28.4255 31.2407 28.0811 31.1977 27.8228H31.1546L31.1116 27.7797C31.1116 27.7797 31.1116 27.7797 31.0685 27.7797L30.9824 27.7367C30.8102 27.6075 30.5519 27.3492 30.5949 26.9617L30.638 27.0478C30.638 27.0478 30.638 27.0478 30.6811 27.0909L30.7241 27.177C30.8533 27.3492 31.0685 27.5214 31.1977 27.3922C31.413 27.2631 31.2407 26.9187 30.9824 26.6603L30.8963 26.5742V26.4451L30.8533 26.402C30.6811 26.2298 30.5949 25.9715 30.5949 25.7993V25.6271ZM24.4814 27.0478C24.4384 27.1339 24.4814 27.22 24.5675 27.2631C25.0411 27.4353 25.4717 27.6936 25.5147 27.8228H25.4717C25.4717 27.8228 25.4717 27.8228 25.4286 27.8228H24.8689C24.8259 27.8228 24.7398 27.8658 24.6967 27.9089C24.6537 27.9519 24.6967 27.995 24.6967 28.0811L24.7398 28.1672L24.7828 28.2102V28.2533C24.7828 28.2533 24.7828 28.2533 24.7828 28.2964V28.6838C24.7828 28.856 24.7828 29.0713 24.7398 29.2866C24.7398 29.3727 24.7828 29.4157 24.912 29.4588H24.9981C25.0411 29.4588 25.1272 29.3727 25.1272 29.2866C25.1272 29.2005 25.1272 29.1144 25.1272 29.0713V28.856C25.1272 28.813 25.1272 28.813 25.1272 28.7699V28.5977C25.1272 28.3825 25.0842 28.2533 25.0411 28.1241C25.2994 28.1241 25.5147 28.0811 25.6439 27.9519C25.6869 27.9089 25.73 27.8228 25.73 27.7367C25.73 27.4353 25.2994 27.177 24.955 27.0048L24.6967 26.9187L24.6106 26.8756H24.5675C24.6106 26.9187 24.5245 26.9617 24.4814 27.0478ZM24.094 25.3688H23.319C23.1899 25.3688 23.1899 25.4118 23.1468 25.4549C23.1468 25.541 23.1899 25.584 23.1899 25.6271L23.2329 25.6701H23.7065C23.7495 25.6701 23.8357 25.6701 23.8357 25.7132C23.8357 25.7562 23.7065 25.7993 23.5773 25.8423H23.3621L23.4051 25.8854C23.4482 25.9715 23.5343 26.0146 23.7065 26.0146C23.9648 26.0146 24.0509 25.7993 24.0509 25.6271V25.541C24.094 25.541 24.2231 25.541 24.2231 25.4549C24.2662 25.4118 24.1801 25.3688 24.094 25.3688ZM23.9218 23.0009L24.0509 23.0439L24.1801 23.1731L24.3092 23.2161C24.4814 23.3453 24.6537 23.5175 24.6537 23.6897C24.6537 23.905 24.4384 23.9911 24.3092 24.0341H24.2662C24.3523 24.2494 24.5245 24.3355 24.6106 24.3785H24.9981C25.2564 24.3785 25.2564 24.1633 25.2564 24.0772V23.9911H25.2133C25.1272 23.9911 24.955 23.905 24.955 23.7328C24.955 23.5175 25.2564 23.3453 25.5578 23.2592L25.73 23.1731L25.8591 23.13L25.773 23.4744H25.73C25.6439 23.4744 25.5578 23.5605 25.5578 23.6897C25.5578 23.7328 25.6008 23.7758 25.6439 23.8189H25.6869L25.4286 24.6799H22.5871L22.3719 23.8619C22.4149 23.8189 22.501 23.7758 22.501 23.6897C22.501 23.5605 22.4149 23.4744 22.3288 23.4744H22.2857L22.1566 23.087C22.4149 23.13 23.0607 23.3883 23.0607 23.6897C23.0607 23.905 22.8885 23.9911 22.8024 23.9911H22.7593C22.7593 24.2494 22.9315 24.3355 23.0176 24.3355H23.4912C23.7065 24.3355 23.7495 24.0772 23.7495 23.9911V23.948H23.6204C23.4912 23.905 23.3621 23.8619 23.3621 23.7328C23.3621 23.5175 23.5343 23.3453 23.7065 23.1731L23.8787 23.0009H23.9218ZM24.0079 23.5175C23.8787 23.5175 23.7926 23.6036 23.7926 23.7328C23.7926 23.8619 23.8787 23.948 24.0079 23.948C24.137 23.948 24.2231 23.8619 24.2231 23.7328C24.2231 23.6036 24.137 23.5175 24.0079 23.5175Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_100_924">
|
|
8
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_949)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.019 29.5388C22.9977 29.2635 23.2035 29.022 23.4794 29.0111C23.6522 29.0043 23.8258 29.0009 24.0002 29.0009C24.1746 29.0009 24.3482 29.0043 24.521 29.0111C24.7969 29.022 25.0028 29.2635 24.9814 29.5388L24.9039 30.5358C24.8825 30.8111 24.642 31.0158 24.366 31.0068C24.2446 31.0029 24.1227 31.0009 24.0002 31.0009C23.8778 31.0009 23.7558 31.0029 23.6344 31.0068C23.3584 31.0158 23.1179 30.8111 23.0965 30.5358L23.019 29.5388ZM26.9191 29.8436C26.9834 29.575 27.2535 29.4085 27.5194 29.4831C27.8557 29.5774 28.1865 29.685 28.5113 29.8052C28.7702 29.901 28.891 30.1945 28.7852 30.4496L28.4021 31.3733C28.2964 31.6284 28.0042 31.7482 27.7445 31.6543C27.5176 31.5721 27.2871 31.4972 27.0535 31.4299C26.7882 31.3534 26.6222 31.0847 26.6864 30.8162L26.9191 29.8436ZM19.2152 30.4496C19.1095 30.1945 19.2302 29.901 19.4892 29.8052C19.8139 29.685 20.1447 29.5774 20.4811 29.4831C20.7469 29.4085 21.0171 29.575 21.0813 29.8436L21.314 30.8162C21.3783 31.0847 21.2122 31.3534 20.9469 31.4299C20.7133 31.4972 20.4829 31.5721 20.2559 31.6543C19.9962 31.7482 19.7041 31.6284 19.5983 31.3733L19.2152 30.4496ZM30.5326 31.3415C30.6771 31.1062 30.9856 31.0318 31.2152 31.1852C31.5043 31.3785 31.7852 31.583 32.0573 31.7981C32.2739 31.9694 32.298 32.2858 32.1186 32.4957L31.4688 33.2558C31.2893 33.4657 30.9744 33.4894 30.7566 33.3197C30.5652 33.1705 30.3688 33.0275 30.1676 32.891C29.9391 32.736 29.8648 32.429 30.0093 32.1937L30.5326 31.3415ZM15.8818 32.4957C15.7024 32.2858 15.7265 31.9694 15.9431 31.7981C16.2152 31.583 16.4961 31.3785 16.7853 31.1852C17.0148 31.0318 17.3233 31.1062 17.4678 31.3416L17.9911 32.1937C18.1356 32.429 18.0613 32.736 17.8328 32.891C17.6316 33.0275 17.4352 33.1705 17.2438 33.3197C17.026 33.4894 16.7111 33.4657 16.5316 33.2558L15.8818 32.4957ZM33.5054 33.8825C33.7153 33.7031 34.0317 33.7272 34.203 33.9438C34.4181 34.2158 34.6226 34.4968 34.8158 34.7859C34.9693 35.0155 34.8948 35.324 34.6595 35.4685L33.8074 35.9918C33.5721 36.1363 33.2651 36.062 33.1101 35.8334C32.9736 35.6323 32.8306 35.4358 32.6814 35.2445C32.5116 35.0267 32.5354 34.7117 32.7453 34.5323L33.5054 33.8825ZM13.3409 35.4685C13.1056 35.324 13.0312 35.0155 13.1846 34.7859C13.3778 34.4968 13.5823 34.2158 13.7975 33.9438C13.9687 33.7272 14.2852 33.7031 14.4951 33.8825L15.2552 34.5323C15.4651 34.7117 15.4888 35.0267 15.319 35.2445C15.1698 35.4358 15.0268 35.6323 14.8904 35.8334C14.7353 36.062 14.4284 36.1363 14.1931 35.9918L13.3409 35.4685ZM35.5515 37.2159C35.8066 37.1101 36.1001 37.2308 36.1959 37.4898C36.3161 37.8145 36.4236 38.1454 36.518 38.4817C36.5926 38.7476 36.426 39.0177 36.1575 39.082L35.1849 39.3146C34.9163 39.3789 34.6477 39.2129 34.5712 38.9475C34.5038 38.7139 34.429 38.4835 34.3468 38.2565C34.2528 37.9969 34.3727 37.7047 34.6278 37.5989L35.5515 37.2159ZM11.843 39.082C11.5744 39.0177 11.4078 38.7476 11.4824 38.4817C11.5768 38.1454 11.6844 37.8145 11.8045 37.4898C11.9003 37.2308 12.1938 37.1101 12.4489 37.2159L13.3726 37.5989C13.6277 37.7047 13.7476 37.9969 13.6536 38.2565C13.5715 38.4835 13.4966 38.7139 13.4292 38.9475C13.3527 39.2129 13.0841 39.3789 12.8155 39.3146L11.843 39.082Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.8907 33.5727C22.8549 33.2989 23.0479 33.0465 23.3233 33.026C23.5469 33.0093 23.7727 33.0009 24.0002 33.0009C24.2278 33.0009 24.4535 33.0093 24.6771 33.026C24.9525 33.0465 25.1455 33.2989 25.1098 33.5727L24.9804 34.5643C24.9447 34.8381 24.6937 35.0293 24.4181 35.0131C24.2799 35.005 24.1406 35.0009 24.0002 35.0009C23.8598 35.0009 23.7205 35.005 23.5824 35.0131C23.3067 35.0293 23.0557 34.8381 23.02 34.5643L22.8907 33.5727ZM27.254 34.146C27.3598 33.891 27.6531 33.7687 27.9019 33.8885C28.3112 34.0857 28.7033 34.3129 29.0751 34.5672C29.3031 34.7231 29.3434 35.0382 29.1751 35.2572L28.5658 36.0501C28.3976 36.2691 28.0846 36.3085 27.8542 36.1563C27.6233 36.0036 27.3829 35.8644 27.1341 35.7396C26.8872 35.6158 26.7652 35.3248 26.871 35.0698L27.254 34.146ZM18.8253 35.2572C18.657 35.0382 18.6974 34.7231 18.9253 34.5672C19.2971 34.3129 19.6892 34.0857 20.0986 33.8885C20.3474 33.7687 20.6406 33.891 20.7464 34.146L21.1294 35.0698C21.2352 35.3248 21.1132 35.6158 20.8664 35.7396C20.6176 35.8644 20.3772 36.0036 20.1462 36.1563C19.9159 36.3085 19.6029 36.2691 19.4346 36.0501L18.8253 35.2572ZM30.7439 36.8259C30.9628 36.6577 31.278 36.698 31.4339 36.9259C31.6882 37.2978 31.9154 37.6898 32.1126 38.0992C32.2324 38.348 32.1101 38.6412 31.855 38.747L30.9313 39.1301C30.6762 39.2359 30.3853 39.1138 30.2615 38.867C30.1367 38.6182 29.9974 38.3778 29.8448 38.1469C29.6925 37.9165 29.732 37.6035 29.9509 37.4352L30.7439 36.8259ZM16.1454 38.747C15.8903 38.6412 15.768 38.348 15.8879 38.0992C16.0851 37.6898 16.3123 37.2978 16.5666 36.9259C16.7224 36.698 17.0376 36.6577 17.2566 36.8259L18.0495 37.4352C18.2684 37.6035 18.3079 37.9165 18.1556 38.1469C18.003 38.3778 17.8637 38.6182 17.7389 38.867C17.6151 39.1138 17.3242 39.2359 17.0691 39.1301L16.1454 38.747ZM32.4284 40.8913C32.7022 40.8556 32.9546 41.0486 32.9751 41.324C32.9918 41.5476 33.0002 41.7733 33.0002 42.0009C33.0002 42.2284 32.9918 42.4541 32.9751 42.6777C32.9546 42.9531 32.7022 43.1461 32.4284 43.1104L31.4368 42.9811C31.163 42.9453 30.9718 42.6944 30.988 42.4187C30.9961 42.2806 31.0002 42.1412 31.0002 42.0009C31.0002 41.8605 30.9961 41.7212 30.988 41.583C30.9718 41.3073 31.163 41.0564 31.4368 41.0207L32.4284 40.8913ZM15.0002 42.0009C15.0002 41.7733 15.0087 41.5476 15.0253 41.324C15.0458 41.0486 15.2982 40.8556 15.572 40.8913L16.5636 41.0207C16.8375 41.0564 17.0286 41.3073 17.0124 41.583C17.0043 41.7212 17.0002 41.8605 17.0002 42.0009C17.0002 42.1412 17.0043 42.2806 17.0124 42.4187C17.0286 42.6944 16.8375 42.9453 16.5636 42.9811L15.572 43.1104C15.2982 43.1461 15.0458 42.9531 15.0253 42.6777C15.0087 42.4541 15.0002 42.2284 15.0002 42.0009Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.9205 25.5356C22.9027 25.2601 23.1117 25.0215 23.3876 25.0117C23.591 25.0045 23.7952 25.0009 24.0002 25.0009C24.2052 25.0009 24.4094 25.0045 24.6128 25.0117C24.8888 25.0215 25.0977 25.2601 25.0799 25.5356L25.0154 26.5336C24.9976 26.8091 24.7598 27.0172 24.4838 27.0085C24.3232 27.0034 24.162 27.0009 24.0002 27.0009C23.8384 27.0009 23.6772 27.0034 23.5166 27.0085C23.2406 27.0172 23.0028 26.8091 22.985 26.5336L22.9205 25.5356ZM27.2198 25.8149C27.2734 25.544 27.5367 25.3671 27.8059 25.4287C28.2064 25.5203 28.6015 25.6261 28.9907 25.7454C29.2547 25.8264 29.3946 26.111 29.3058 26.3725L28.9844 27.3195C28.8957 27.581 28.612 27.7202 28.3477 27.6403C28.0416 27.5478 27.7315 27.4648 27.4175 27.3916C27.1486 27.329 26.9722 27.0668 27.0258 26.7959L27.2198 25.8149ZM18.6946 26.3725C18.6059 26.111 18.7457 25.8264 19.0097 25.7454C19.3989 25.6261 19.7941 25.5203 20.1946 25.4287C20.4638 25.3671 20.727 25.544 20.7806 25.8149L20.9747 26.7959C21.0282 27.0668 20.8519 27.329 20.5829 27.3916C20.2689 27.4648 19.9588 27.5478 19.6528 27.6403C19.3884 27.7202 19.1047 27.581 19.016 27.3195L18.6946 26.3725ZM31.2999 27.1994C31.4222 26.9518 31.7224 26.8496 31.9663 26.9792C32.3278 27.1713 32.6815 27.376 33.0269 27.5928C33.2608 27.7396 33.3218 28.0509 33.1682 28.2803L32.6119 29.1113C32.4583 29.3408 32.1482 29.4015 31.9137 29.2556C31.6414 29.0862 31.3634 28.9252 31.0799 28.7731C30.8365 28.6426 30.7346 28.3435 30.8569 28.0959L31.2999 27.1994ZM14.8322 28.2803C14.6786 28.0509 14.7397 27.7396 14.9736 27.5928C15.3189 27.376 15.6726 27.1713 16.0342 26.9792C16.278 26.8496 16.5783 26.9518 16.7006 27.1994L17.1435 28.0959C17.2659 28.3435 17.1639 28.6426 16.9205 28.7731C16.637 28.9252 16.359 29.0862 16.0867 29.2556C15.8523 29.4015 15.5421 29.3408 15.3885 29.1113L14.8322 28.2803ZM34.8796 29.5954C35.0618 29.3879 35.3783 29.3667 35.5804 29.5549C35.8792 29.8331 36.168 30.1219 36.4462 30.4207C36.6343 30.6228 36.6132 30.9393 36.4057 31.1214L35.6541 31.7811C35.4465 31.9632 35.1312 31.942 34.9423 31.7406C34.7223 31.5061 34.4949 31.2787 34.2604 31.0588C34.059 30.8698 34.0378 30.5545 34.22 30.347L34.8796 29.5954ZM11.5948 31.1214C11.3872 30.9393 11.3661 30.6228 11.5542 30.4207C11.8324 30.1219 12.1212 29.8331 12.42 29.5549C12.6222 29.3667 12.9386 29.3879 13.1208 29.5954L13.7804 30.347C13.9626 30.5545 13.9414 30.8698 13.74 31.0588C13.5055 31.2787 13.2781 31.5061 13.0581 31.7406C12.8692 31.942 12.5539 31.9632 12.3464 31.7811L11.5948 31.1214ZM37.7207 32.8328C37.9502 32.6792 38.2614 32.7403 38.4082 32.9742C38.625 33.3195 38.8298 33.6733 39.0219 34.0348C39.1514 34.2787 39.0492 34.5789 38.8017 34.7012L37.9051 35.1442C37.6576 35.2665 37.3585 35.1645 37.2279 34.9212C37.0758 34.6377 36.9149 34.3596 36.7455 34.0874C36.5996 33.8529 36.6603 33.5428 36.8898 33.3892L37.7207 32.8328ZM9.19876 34.7012C8.95119 34.5789 8.84898 34.2787 8.97855 34.0348C9.17065 33.6733 9.37539 33.3195 9.59218 32.9742C9.73899 32.7403 10.0502 32.6792 10.2797 32.8328L11.1106 33.3892C11.3401 33.5428 11.4008 33.8529 11.2549 34.0874C11.0855 34.3596 10.9246 34.6377 10.7725 34.9212C10.642 35.1645 10.3429 35.2665 10.0953 35.1442L9.19876 34.7012Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_100_949">
|
|
10
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_1020)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.4019 0.250854C33.4572 0.250854 30.7612 1.12512 28.7834 2.57552C26.806 4.0256 25.5049 6.09088 25.5049 8.44203C25.5049 10.7932 26.806 12.8585 28.7834 14.3085C30.7612 15.7589 33.4572 16.6332 36.4019 16.6332C37.2658 16.6332 38.1071 16.558 38.9145 16.4156L44.6053 20.7989L43.4458 14.7008C45.7458 13.2381 47.2989 11.0153 47.2989 8.44203C47.2989 6.09088 45.9978 4.0256 44.0205 2.57552C42.0426 1.12512 39.3466 0.250854 36.4019 0.250854ZM27.0049 8.44203C27.0049 6.68353 27.9753 5.02822 29.6704 3.78513C31.3651 2.54236 33.7426 1.75085 36.4019 1.75085C39.0612 1.75085 41.4387 2.54236 43.1334 3.78513C44.8285 5.02822 45.7989 6.68353 45.7989 8.44203C45.7989 10.4879 44.4793 12.4037 42.2409 13.6756L41.7744 13.9406L42.3947 17.2028L39.2923 14.8132L38.957 14.881C38.1455 15.0451 37.2886 15.1332 36.4019 15.1332C33.7426 15.1332 31.3651 14.3417 29.6704 13.0989C27.9753 11.8558 27.0049 10.2005 27.0049 8.44203Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.3626 14.5842C13.5468 14.5842 9.15774 16.0407 5.95553 18.4317C2.75321 20.8228 0.700928 24.1842 0.700928 27.9616C0.700928 32.2964 3.39659 36.0729 7.44053 38.4826L3.89626 46.869L13.6559 40.8603C15.1554 41.1726 16.7339 41.3391 18.3626 41.3391C23.1785 41.3391 27.5675 39.8826 30.7697 37.4916C33.972 35.1005 36.0243 31.7391 36.0243 27.9616C36.0243 24.1842 33.972 20.8228 30.7697 18.4317C27.5675 16.0407 23.1785 14.5842 18.3626 14.5842ZM2.20093 27.9616C2.20093 24.7651 3.93445 21.8128 6.85297 19.6337C9.77159 17.4544 13.8384 16.0842 18.3626 16.0842C22.8869 16.0842 26.9537 17.4544 29.8723 19.6337C32.7908 21.8128 34.5243 24.7651 34.5243 27.9616C34.5243 31.1582 32.7908 34.1105 29.8723 36.2896C26.9537 38.4689 22.8869 39.8391 18.3626 39.8391C16.7338 39.8391 15.1628 39.6614 13.6824 39.3316L13.3853 39.2654L7.10374 43.1327L9.34554 37.8283L8.74996 37.5031C4.70588 35.295 2.20093 31.7983 2.20093 27.9616Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_100_1020">
|
|
8
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-circle" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>
|
|
3
|
-
<path d="m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12.736 3.97C12.8042 3.90037 12.8857 3.84505 12.9756 3.80729C13.0655 3.76952 13.162 3.75007 13.2595 3.75007C13.357 3.75007 13.4535 3.76952 13.5434 3.80729C13.6333 3.84505 13.7148 3.90037 13.783 3.97C14.069 4.259 14.073 4.726 13.793 5.02L7.88 12.01C7.81287 12.0837 7.7314 12.143 7.64058 12.1841C7.54976 12.2253 7.4515 12.2475 7.35181 12.2493C7.25211 12.2512 7.15309 12.2327 7.06079 12.195C6.96849 12.1573 6.88485 12.1012 6.815 12.03L3.217 8.384C3.07824 8.24249 3.00051 8.0522 3.00051 7.854C3.00051 7.65581 3.07824 7.46552 3.217 7.324C3.28525 7.25437 3.3667 7.19905 3.45659 7.16129C3.54648 7.12352 3.643 7.10407 3.7405 7.10407C3.838 7.10407 3.93452 7.12352 4.02441 7.16129C4.1143 7.19905 4.19575 7.25437 4.264 7.324L7.316 10.417L12.716 3.992L12.736 3.97Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.35404 1.646C8.4006 1.69245 8.43754 1.74762 8.46275 1.80837C8.48796 1.86911 8.50093 1.93423 8.50093 2C8.50093 2.06577 8.48796 2.13089 8.46275 2.19163C8.43754 2.25238 8.4006 2.30756 8.35404 2.354L2.70704 8L8.35404 13.646C8.44793 13.7399 8.50067 13.8672 8.50067 14C8.50067 14.1328 8.44793 14.2601 8.35404 14.354C8.26015 14.4479 8.13281 14.5006 8.00004 14.5006C7.86726 14.5006 7.73993 14.4479 7.64604 14.354L1.64604 8.354C1.59948 8.30756 1.56253 8.25238 1.53733 8.19163C1.51212 8.13089 1.49915 8.06577 1.49915 8C1.49915 7.93423 1.51212 7.86911 1.53733 7.80837C1.56253 7.74762 1.59948 7.69245 1.64604 7.646L7.64604 1.646C7.69248 1.59944 7.74766 1.5625 7.80841 1.53729C7.86915 1.51208 7.93427 1.49911 8.00004 1.49911C8.06581 1.49911 8.13093 1.51208 8.19167 1.53729C8.25242 1.5625 8.30759 1.59944 8.35404 1.646Z" fill="currentColor"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.354 1.646C12.4006 1.69245 12.4375 1.74762 12.4628 1.80837C12.488 1.86911 12.5009 1.93423 12.5009 2C12.5009 2.06577 12.488 2.13089 12.4628 2.19163C12.4375 2.25238 12.4006 2.30756 12.354 2.354L6.70704 8L12.354 13.646C12.4005 13.6925 12.4374 13.7477 12.4626 13.8084C12.4877 13.8692 12.5007 13.9343 12.5007 14C12.5007 14.0657 12.4877 14.1308 12.4626 14.1916C12.4374 14.2523 12.4005 14.3075 12.354 14.354C12.3076 14.4005 12.2524 14.4374 12.1916 14.4625C12.1309 14.4877 12.0658 14.5006 12 14.5006C11.9343 14.5006 11.8692 14.4877 11.8085 14.4625C11.7477 14.4374 11.6925 14.4005 11.646 14.354L5.64604 8.354C5.59948 8.30756 5.56253 8.25238 5.53733 8.19163C5.51212 8.13089 5.49915 8.06577 5.49915 8C5.49915 7.93423 5.51212 7.86911 5.53733 7.80837C5.56253 7.74762 5.59948 7.69245 5.64604 7.646L11.646 1.646C11.6925 1.59944 11.7477 1.5625 11.8084 1.53729C11.8692 1.51208 11.9343 1.49911 12 1.49911C12.0658 1.49911 12.1309 1.51208 12.1917 1.53729C12.2524 1.5625 12.3076 1.59944 12.354 1.646Z" fill="currentColor"/>
|
|
4
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.64604 1.646C3.69248 1.59944 3.74766 1.5625 3.80841 1.53729C3.86915 1.51208 3.93427 1.49911 4.00004 1.49911C4.06581 1.49911 4.13093 1.51208 4.19167 1.53729C4.25242 1.5625 4.30759 1.59944 4.35404 1.646L10.354 7.646C10.4006 7.69245 10.4375 7.74762 10.4628 7.80837C10.488 7.86911 10.5009 7.93423 10.5009 8C10.5009 8.06577 10.488 8.13089 10.4628 8.19163C10.4375 8.25238 10.4006 8.30756 10.354 8.354L4.35404 14.354C4.26015 14.4479 4.13282 14.5006 4.00004 14.5006C3.86726 14.5006 3.73993 14.4479 3.64604 14.354C3.55215 14.2601 3.49941 14.1328 3.49941 14C3.49941 13.8672 3.55215 13.7399 3.64604 13.646L9.29304 8L3.64604 2.354C3.59948 2.30756 3.56253 2.25238 3.53733 2.19163C3.51212 2.13089 3.49915 2.06577 3.49915 2C3.49915 1.93423 3.51212 1.86911 3.53733 1.80837C3.56253 1.74762 3.59948 1.69245 3.64604 1.646Z" fill="currentColor"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.64604 1.646C7.69248 1.59944 7.74766 1.5625 7.80841 1.53729C7.86915 1.51208 7.93427 1.49911 8.00004 1.49911C8.06581 1.49911 8.13093 1.51208 8.19167 1.53729C8.25242 1.5625 8.30759 1.59944 8.35404 1.646L14.354 7.646C14.4006 7.69245 14.4375 7.74762 14.4628 7.80837C14.488 7.86911 14.5009 7.93423 14.5009 8C14.5009 8.06577 14.488 8.13089 14.4628 8.19163C14.4375 8.25238 14.4006 8.30756 14.354 8.354L8.35404 14.354C8.26015 14.4479 8.13281 14.5006 8.00004 14.5006C7.86726 14.5006 7.73993 14.4479 7.64604 14.354C7.55215 14.2601 7.49941 14.1328 7.49941 14C7.49941 13.8672 7.55215 13.7399 7.64604 13.646L13.293 8L7.64604 2.354C7.59948 2.30756 7.56253 2.25238 7.53733 2.19163C7.51212 2.13089 7.49915 2.06577 7.49915 2C7.49915 1.93423 7.51212 1.86911 7.53733 1.80837C7.56253 1.74762 7.59948 1.69245 7.64604 1.646Z" fill="currentColor"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.64604 4.646C1.69249 4.59944 1.74766 4.56249 1.80841 4.53729C1.86915 4.51208 1.93427 4.49911 2.00004 4.49911C2.06581 4.49911 2.13093 4.51208 2.19167 4.53729C2.25242 4.56249 2.30759 4.59944 2.35404 4.646L8.00004 10.293L13.646 4.646C13.6925 4.59951 13.7477 4.56264 13.8085 4.53748C13.8692 4.51232 13.9343 4.49937 14 4.49937C14.0658 4.49937 14.1309 4.51232 14.1916 4.53748C14.2524 4.56264 14.3076 4.59951 14.354 4.646C14.4005 4.69249 14.4374 4.74768 14.4626 4.80842C14.4877 4.86916 14.5007 4.93426 14.5007 5C14.5007 5.06574 14.4877 5.13085 14.4626 5.19158C14.4374 5.25232 14.4005 5.30751 14.354 5.354L8.35404 11.354C8.30759 11.4006 8.25242 11.4375 8.19167 11.4627C8.13093 11.4879 8.06581 11.5009 8.00004 11.5009C7.93427 11.5009 7.86915 11.4879 7.80841 11.4627C7.74766 11.4375 7.69248 11.4006 7.64604 11.354L1.64604 5.354C1.59948 5.30756 1.56253 5.25238 1.53733 5.19163C1.51212 5.13089 1.49915 5.06577 1.49915 5C1.49915 4.93423 1.51212 4.86911 1.53733 4.80837C1.56253 4.74762 1.59948 4.69245 1.64604 4.646Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.354 1.646C11.4006 1.69245 11.4375 1.74762 11.4628 1.80837C11.488 1.86911 11.5009 1.93423 11.5009 2C11.5009 2.06577 11.488 2.13089 11.4628 2.19163C11.4375 2.25238 11.4006 2.30756 11.354 2.354L5.70704 8L11.354 13.646C11.4479 13.7399 11.5007 13.8672 11.5007 14C11.5007 14.1328 11.4479 14.2601 11.354 14.354C11.2602 14.4479 11.1328 14.5006 11 14.5006C10.8673 14.5006 10.7399 14.4479 10.646 14.354L4.64604 8.354C4.59948 8.30756 4.56253 8.25238 4.53733 8.19163C4.51212 8.13089 4.49915 8.06577 4.49915 8C4.49915 7.93423 4.51212 7.86911 4.53733 7.80837C4.56253 7.74762 4.59948 7.69245 4.64604 7.646L10.646 1.646C10.6925 1.59944 10.7477 1.5625 10.8084 1.53729C10.8692 1.51208 10.9343 1.49911 11 1.49911C11.0658 1.49911 11.1309 1.51208 11.1917 1.53729C11.2524 1.5625 11.3076 1.59944 11.354 1.646Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.64604 1.646C4.69248 1.59944 4.74766 1.5625 4.80841 1.53729C4.86915 1.51208 4.93427 1.49911 5.00004 1.49911C5.06581 1.49911 5.13093 1.51208 5.19167 1.53729C5.25242 1.5625 5.30759 1.59944 5.35404 1.646L11.354 7.646C11.4006 7.69245 11.4375 7.74762 11.4628 7.80837C11.488 7.86911 11.5009 7.93423 11.5009 8C11.5009 8.06577 11.488 8.13089 11.4628 8.19163C11.4375 8.25238 11.4006 8.30756 11.354 8.354L5.35404 14.354C5.26015 14.4479 5.13281 14.5006 5.00004 14.5006C4.86726 14.5006 4.73993 14.4479 4.64604 14.354C4.55215 14.2601 4.49941 14.1328 4.49941 14C4.49941 13.8672 4.55215 13.7399 4.64604 13.646L10.293 8L4.64604 2.354C4.59948 2.30756 4.56253 2.25238 4.53733 2.19163C4.51212 2.13089 4.49915 2.06577 4.49915 2C4.49915 1.93423 4.51212 1.86911 4.53733 1.80837C4.56253 1.74762 4.59948 1.69245 4.64604 1.646Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.64602 4.646C7.69247 4.59944 7.74764 4.56249 7.80839 4.53729C7.86913 4.51208 7.93425 4.49911 8.00002 4.49911C8.06579 4.49911 8.13091 4.51208 8.19165 4.53729C8.2524 4.56249 8.30758 4.59944 8.35402 4.646L14.354 10.646C14.4479 10.7399 14.5007 10.8672 14.5007 11C14.5007 11.1328 14.4479 11.2601 14.354 11.354C14.2601 11.4479 14.1328 11.5006 14 11.5006C13.8672 11.5006 13.7399 11.4479 13.646 11.354L8.00002 5.707L2.35402 11.354C2.26013 11.4479 2.1328 11.5006 2.00002 11.5006C1.86725 11.5006 1.73991 11.4479 1.64602 11.354C1.55213 11.2601 1.49939 11.1328 1.49939 11C1.49939 10.8672 1.55213 10.7399 1.64602 10.646L7.64602 4.646Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_100_775)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 11.9999V17.9999H25V11.9999H19ZM23.5 13.4999H20.5V16.4999H23.5V13.4999Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 25.9999V19.9999H16V25.9999H10ZM11.5 21.4999H14.5V24.4999H11.5V21.4999Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 27.9999V33.9999H16V27.9999H10ZM14.5 29.4999H11.5V32.4999H14.5V29.4999Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 35.9999V41.9999H16V35.9999H10ZM14.5 37.4999H11.5V40.4999H14.5V37.4999Z" fill="currentColor"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 19.9999V25.9999H25V19.9999H19ZM23.5 21.4999H20.5V24.4999H23.5V21.4999Z" fill="currentColor"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M33 37.9999V43.9999H39V37.9999H33ZM37.5 39.4999H34.5V42.4999H37.5V39.4999Z" fill="currentColor"/>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M34 31.9999C34 33.6567 32.6569 34.9999 31 34.9999C29.3431 34.9999 28 33.6567 28 31.9999C28 30.343 29.3431 28.9999 31 28.9999C32.6569 28.9999 34 30.343 34 31.9999ZM32.5 31.9999C32.5 32.8283 31.8284 33.4999 31 33.4999C30.1716 33.4999 29.5 32.8283 29.5 31.9999C29.5 31.1715 30.1716 30.4999 31 30.4999C31.8284 30.4999 32.5 31.1715 32.5 31.9999Z" fill="currentColor"/>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M29 23.8181V-0.00012207L6 14.2271V47.9999H42V31.9999L31 21.9999L29 23.8181ZM7.5 15.0631V46.4999H20V31.9999L27.5 25.1817V2.69153L7.5 15.0631ZM31 24.0271L40.5 32.6634V46.4999H30V37.9999H24V46.4999H21.5V32.6634L31 24.0271ZM25.5 46.4999H28.5V39.4999H25.5V46.4999Z" fill="currentColor"/>
|
|
11
|
-
</g>
|
|
12
|
-
<defs>
|
|
13
|
-
<clipPath id="clip0_100_775">
|
|
14
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
|
|
15
|
-
</clipPath>
|
|
16
|
-
</defs>
|
|
17
|
-
</svg>
|