@verisoft/ui-govcz 18.4.0 → 18.6.0
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 +59 -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 +3728 -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 +37 -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 -49
- 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,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_849)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M41.76 10.8661C41.76 13.0753 39.9691 14.8661 37.76 14.8661C35.5509 14.8661 33.76 13.0753 33.76 10.8661C33.76 8.65698 35.5509 6.86612 37.76 6.86612C39.9691 6.86612 41.76 8.65698 41.76 10.8661ZM40.26 10.8661C40.26 12.2468 39.1407 13.3661 37.76 13.3661C36.3793 13.3661 35.26 12.2468 35.26 10.8661C35.26 9.48541 36.3793 8.36612 37.76 8.36612C39.1407 8.36612 40.26 9.48541 40.26 10.8661Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M41.027 3.39746L40.6931 3.25108L40.4192 1.99754C40.2282 1.12375 39.4545 0.500885 38.5601 0.500885H36.9589C36.0654 0.500885 35.2923 1.12252 35.1004 1.99518L34.824 3.25197L34.4929 3.39725C33.9404 3.63931 33.4155 3.94225 32.9297 4.29979L32.6369 4.51377L31.4112 4.12322C30.5586 3.85155 29.6318 4.21064 29.1849 4.9859L28.382 6.37849C27.9354 7.15315 28.0884 8.13427 28.7496 8.73619L29.6988 9.60027L29.6591 9.95981L29.6589 9.96161C29.5911 10.563 29.5911 11.17 29.6589 11.7708L29.6591 11.7727L29.6988 12.1315L28.7487 12.9976C28.0879 13.5999 27.9356 14.5811 28.3826 15.3554L29.1831 16.7418C29.6303 17.5164 30.5566 17.875 31.4088 17.6034L32.6342 17.213L32.9251 17.4259L32.9264 17.4268C33.1754 17.6098 33.4348 17.7788 33.7055 17.9333C33.9586 18.0799 34.2165 18.2113 34.4822 18.3302L34.4924 18.3347L34.8263 18.481L35.1003 19.7346C35.2912 20.6084 36.0649 21.2312 36.9594 21.2312H38.56C39.4545 21.2312 40.2283 20.6083 40.4192 19.7344L40.6932 18.4799L41.027 18.3336L41.0315 18.3316C41.5799 18.0891 42.1027 17.788 42.589 17.4318L42.8821 17.2173L44.11 17.6081C44.9621 17.8793 45.8881 17.5207 46.3352 16.7463L47.1357 15.3599C47.5828 14.5855 47.4304 13.6044 46.7696 13.002L45.8195 12.1359L45.8592 11.7768L45.8595 11.7745C45.9272 11.1734 45.9272 10.5666 45.8594 9.96604L45.8592 9.96386L45.8194 9.60441L46.7718 8.73497C47.4319 8.1324 47.5837 7.15168 47.1367 6.37776L46.3351 4.99C45.8879 4.21568 44.9619 3.85721 44.1098 4.12856L42.8826 4.51939L42.5915 4.30665L42.5895 4.3052C42.1055 3.94927 41.5847 3.64629 41.0361 3.40145L41.027 3.39746ZM41.7025 5.51482C41.3045 5.22193 40.8761 4.97264 40.4248 4.77125L39.3909 4.31802L38.9538 2.31781C38.9133 2.13278 38.7495 2.00089 38.5601 2.00089H36.9589C36.7697 2.00089 36.606 2.13252 36.5654 2.31731L36.1252 4.31913L35.0946 4.77125C34.6427 4.96918 34.2142 5.21671 33.8169 5.50928L32.9071 6.17417L30.9558 5.55242C30.7753 5.4949 30.579 5.57094 30.4844 5.7351L29.6815 7.12769C29.5869 7.29173 29.6193 7.49949 29.7593 7.62695L31.2737 9.00549L31.1496 10.128C31.0942 10.6189 31.0942 11.1143 31.1496 11.6041L31.2737 12.7255L29.7592 14.1061C29.6193 14.2337 29.587 14.4415 29.6817 14.6054L30.4821 15.9918C30.5768 16.1558 30.7729 16.2317 30.9534 16.1742L32.9049 15.5524L33.8136 16.2173C34.0186 16.368 34.2314 16.5065 34.453 16.6329C34.6613 16.7537 34.8741 16.8622 35.0946 16.9609L36.1285 17.4141L36.5657 19.4143C36.6061 19.5993 36.77 19.7312 36.9594 19.7312H38.56C38.7495 19.7312 38.9133 19.5993 38.9537 19.4143L39.3909 17.413L40.4248 16.9598C40.8758 16.7603 41.3047 16.5132 41.7025 16.2217L42.6112 15.5569L44.565 16.1788C44.7454 16.2362 44.9415 16.1603 45.0362 15.9963L45.8367 14.6099C45.9313 14.4459 45.8991 14.2381 45.7591 14.1106L44.2446 12.73L44.3687 11.6085C44.4241 11.1176 44.4241 10.6223 44.3687 10.1325L44.2446 9.01103L45.7605 7.62715C45.9003 7.49956 45.9325 7.29188 45.8378 7.128L45.0362 5.74024C44.9415 5.57627 44.7454 5.50037 44.565 5.55782L42.6123 6.17971L41.7025 5.51482Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.2724 29.2141C23.2724 32.8603 20.3167 35.816 16.6706 35.816C13.0246 35.816 10.0688 32.8603 10.0688 29.2141C10.0688 25.568 13.0246 22.6122 16.6706 22.6122C20.3167 22.6122 23.2724 25.568 23.2724 29.2141ZM21.7724 29.2141C21.7724 32.0319 19.4883 34.316 16.6706 34.316C13.853 34.316 11.5688 32.0319 11.5688 29.2141C11.5688 26.3964 13.853 24.1122 16.6706 24.1122C19.4883 24.1122 21.7724 26.3964 21.7724 29.2141Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7285 42.2019L11.5362 41.6793C11.0896 41.4795 10.6571 41.2589 10.233 41.0132C9.78073 40.7551 9.34705 40.4727 8.93007 40.1662L8.92829 40.1649L7.89191 39.4066L5.06561 40.3071C4.06534 40.6259 2.97812 40.2049 2.45321 39.2958L0.996166 36.7721C0.471444 35.8633 0.650217 34.7117 1.42578 34.0047L3.61841 32.0059L3.47689 30.7272L3.47668 30.7254C3.3634 29.7227 3.36345 28.7092 3.47665 27.7051L3.47684 27.7033L3.61841 26.4229L1.42685 24.4279C0.650756 23.7214 0.471217 22.5698 0.995401 21.6606L2.45691 19.1256C2.98151 18.2156 4.06924 17.7941 5.07 18.113L7.89646 19.0136L8.93554 18.2542C9.74746 17.6565 10.6232 17.1507 11.5468 16.7462L12.7235 16.23L13.3609 13.3309C13.5861 12.3067 14.4936 11.5771 15.5424 11.5771H18.457C19.5068 11.5771 20.4149 12.3081 20.639 13.3337L21.2716 16.2282L22.4627 16.7504C23.3816 17.1604 24.2537 17.6679 25.0642 18.264L25.0663 18.2656L26.1038 19.0238L28.9329 18.1228C29.9329 17.8043 31.0198 18.225 31.5447 19.1339L33.0039 21.6601C33.5285 22.5685 33.3504 23.7196 32.5757 24.4268L30.3796 26.4316L30.5212 27.711L30.5215 27.7131C30.6347 28.7155 30.6346 29.7288 30.5215 30.7327L30.5213 30.7348L30.3797 32.014L32.5723 34.0128C33.3479 34.7197 33.5267 35.8713 33.0019 36.7802L31.5448 39.304C31.02 40.213 29.9331 40.6339 28.933 40.3155L26.1024 39.4145L25.0638 40.1745C24.2514 40.7696 23.3763 41.2737 22.4582 41.6797L22.4537 41.6817L21.2717 42.1999L20.639 45.0962C20.415 46.1219 19.5068 46.8531 18.4569 46.8531H15.5431C14.4933 46.8531 13.5852 46.122 13.3611 45.0964L12.7285 42.2019ZM12.1487 40.3099C11.7472 40.1304 11.3599 39.9327 10.9807 39.7128C10.5773 39.4829 10.1899 39.2307 9.81676 38.9564L8.16265 37.746L4.61021 38.8779C4.28171 38.9826 3.92464 38.8444 3.75225 38.5458L2.2952 36.0221C2.12288 35.7236 2.18159 35.3454 2.4363 35.1132L5.19331 32.6L4.96738 30.5585C4.86652 29.6669 4.86652 28.7652 4.96738 27.8716L5.19331 25.8281L2.4366 23.3186C2.18172 23.0866 2.12275 22.7084 2.29491 22.4098L3.75642 19.8748C3.92871 19.5759 4.28594 19.4375 4.61461 19.5422L8.16668 20.674L9.82281 19.4637C10.5459 18.9311 11.326 18.4805 12.1487 18.1202L14.0247 17.2971L14.8259 13.6531C14.8999 13.3167 15.1979 13.0771 15.5424 13.0771H18.457C18.8018 13.0771 19.1 13.3172 19.1736 13.654L19.9694 17.2951L21.8515 18.1202C22.673 18.4868 23.4527 18.9406 24.1773 19.4738L25.8334 20.6841L29.388 19.552C29.7165 19.4474 30.0734 19.5856 30.2458 19.8841L31.705 22.4104C31.8773 22.7087 31.8188 23.0867 31.5643 23.319L28.8048 25.8382L29.0307 27.8796C29.1316 28.7713 29.1316 29.673 29.0307 30.5666L28.8048 32.6081L31.5618 35.1213C31.8165 35.3535 31.8752 35.7317 31.7029 36.0302L30.2458 38.554C30.0734 38.8525 29.7165 38.9908 29.388 38.8862L25.8314 37.7541L24.1773 38.9644C23.4531 39.495 22.6725 39.9448 21.8515 40.3079L19.9694 41.133L19.1736 44.7761C19.1 45.1129 18.8017 45.3531 18.4569 45.3531H15.5431C15.1984 45.3531 14.9001 45.113 14.8265 44.7761L14.0307 41.135L12.1487 40.3099Z" fill="currentColor"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_100_849">
|
|
10
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</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="M0 10.0009C0 8.89632 0.895431 8.00089 2 8.00089H46C47.1046 8.00089 48 8.89632 48 10.0009V38.0009C48 39.1055 47.1046 40.0009 46 40.0009H2C0.895432 40.0009 0 39.1055 0 38.0009V10.0009ZM45.1815 9.50089H2.81819L23.6865 26.2862C23.8695 26.4334 24.1302 26.4334 24.3132 26.2862L45.1815 9.50089ZM1.5 10.3656V38.0009C1.5 38.277 1.72386 38.5009 2 38.5009H46C46.2761 38.5009 46.5 38.277 46.5 38.0009V10.3654L25.2534 27.4551C24.5214 28.0438 23.4783 28.0438 22.7463 27.4551L1.5 10.3656Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M40.0832 17.9496C40.0832 19.0778 39.1457 20.0009 37.9998 20.0009C36.854 20.0009 35.9165 19.0778 35.9165 17.9496H40.0832Z" fill="currentColor"/>
|
|
3
|
-
<path d="M44.2498 13.4981C44.2498 13.7213 44.3394 13.9352 44.4985 14.0919L46.1174 15.6859C46.2554 15.8218 46.3332 16.0074 46.3332 16.201C46.3332 16.6003 46.0095 16.9239 45.6102 16.9239H30.3894C29.9902 16.9239 29.6665 16.6003 29.6665 16.201C29.6665 16.0074 29.7442 15.8218 29.8822 15.6859L31.5012 14.0919C31.6603 13.9352 31.7498 13.7213 31.7498 13.4981V8.71882C31.7498 5.53934 33.4165 2.97524 36.4373 2.25729V1.53934C36.4373 0.718833 37.1665 0.00088501 37.9998 0.00088501C38.8332 0.00088501 39.5623 0.718833 39.5623 1.53934V2.25729C42.5832 2.97524 44.2498 5.53934 44.2498 8.71882V13.4981Z" fill="currentColor"/>
|
|
4
|
-
<path d="M3 8.00089C1.89543 8.00089 1 8.89632 1 10.0009V38.0009C1 39.1055 1.89543 40.0009 3 40.0009H8.23223C8.36484 40.0009 8.49202 40.0536 8.58579 40.1473L15.3358 46.8973C16.1168 47.6784 17.3832 47.6784 18.1642 46.8973L24.9142 40.1473C25.008 40.0536 25.1352 40.0009 25.2678 40.0009H42C43.1046 40.0009 44 39.1055 44 38.0009V21.7509C44 21.3367 43.6642 21.0009 43.25 21.0009C42.8358 21.0009 42.5 21.3367 42.5 21.7509V38.0009C42.5 38.277 42.2761 38.5009 42 38.5009H25.2678C24.7373 38.5009 24.2286 38.7116 23.8536 39.0867L17.1036 45.8367C16.9083 46.0319 16.5917 46.0319 16.3964 45.8367L9.64645 39.0867C9.27137 38.7116 8.76267 38.5009 8.23223 38.5009H3C2.72386 38.5009 2.5 38.277 2.5 38.0009V10.0009C2.5 9.72474 2.72386 9.50089 3 9.50089H27.25C27.6642 9.50089 28 9.1651 28 8.75089C28 8.33667 27.6642 8.00089 27.25 8.00089H3Z" fill="currentColor"/>
|
|
5
|
-
<path d="M8.25 17.7499C8.25 17.3357 8.58579 16.9999 9 16.9999H16C16.4142 16.9999 16.75 17.3357 16.75 17.7499C16.75 18.1641 16.4142 18.4999 16 18.4999H9C8.58579 18.4999 8.25 18.1641 8.25 17.7499Z" fill="currentColor"/>
|
|
6
|
-
<path d="M8.25 26.7499C8.25 26.3357 8.58579 25.9999 9 25.9999H29C29.4142 25.9999 29.75 26.3357 29.75 26.7499C29.75 27.1641 29.4142 27.4999 29 27.4999H9C8.58579 27.4999 8.25 27.1641 8.25 26.7499Z" fill="currentColor"/>
|
|
7
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14.8501 15.1571C14.8501 14.8915 14.8084 14.6571 14.7251 14.454C14.647 14.2457 14.5063 14.0582 14.3032 13.8915C14.1053 13.7248 13.8293 13.566 13.4751 13.4149C13.1261 13.2639 12.6834 13.1103 12.147 12.954C11.5845 12.7873 11.0767 12.6024 10.6235 12.3993C10.1704 12.191 9.78239 11.954 9.45947 11.6884C9.13656 11.4228 8.88916 11.1181 8.71729 10.7743C8.54541 10.4306 8.45947 10.0373 8.45947 9.59464C8.45947 9.15193 8.55062 8.74307 8.73291 8.36807C8.9152 7.99307 9.17562 7.66755 9.51416 7.39151C9.85791 7.11026 10.2668 6.89151 10.7407 6.73526C11.2147 6.57901 11.7433 6.50089 12.3267 6.50089C13.1808 6.50089 13.9048 6.66495 14.4985 6.99307C15.0975 7.31599 15.5532 7.74047 15.8657 8.26651C16.0443 8.56412 16.1718 8.87364 16.2484 9.19506C16.3443 9.59801 15.9987 9.93839 15.5845 9.93839C15.1703 9.93839 14.8514 9.59435 14.7286 9.19874C14.6858 9.06062 14.6299 8.92956 14.561 8.80557C14.3787 8.47224 14.1027 8.21182 13.7329 8.02432C13.3631 7.83161 12.8944 7.73526 12.3267 7.73526C11.7902 7.73526 11.3475 7.81599 10.9985 7.97745C10.6496 8.13891 10.3892 8.35766 10.2173 8.6337C10.0506 8.90974 9.96729 9.22484 9.96729 9.57901C9.96729 9.81859 10.0168 10.0373 10.1157 10.2353C10.2199 10.428 10.3787 10.6077 10.5923 10.7743C10.811 10.941 11.0871 11.0946 11.4204 11.2353C11.759 11.3759 12.1626 11.5113 12.6313 11.6415C13.2772 11.8238 13.8345 12.0269 14.3032 12.2509C14.772 12.4748 15.1574 12.7274 15.4595 13.0087C15.7668 13.2847 15.9933 13.5998 16.1392 13.954C16.2902 14.303 16.3657 14.6988 16.3657 15.1415C16.3657 15.6051 16.272 16.0243 16.0845 16.3993C15.897 16.7743 15.6287 17.0946 15.2798 17.3603C14.9308 17.6259 14.5116 17.8316 14.022 17.9774C13.5376 18.1181 12.9959 18.1884 12.397 18.1884C11.8709 18.1884 11.3527 18.1155 10.8423 17.9696C10.3371 17.8238 9.87614 17.6051 9.45947 17.3134C9.04801 17.0217 8.71729 16.6623 8.46729 16.2353C8.33573 16.0029 8.23952 15.7511 8.17867 15.4796C8.08805 15.0754 8.43588 14.7353 8.8501 14.7353C9.26431 14.7353 9.5788 15.0811 9.71064 15.4738C9.74245 15.5685 9.78112 15.6583 9.82666 15.7431C9.9777 16.0191 10.1834 16.2483 10.4438 16.4306C10.7095 16.6129 11.009 16.7483 11.3423 16.8368C11.6808 16.9202 12.0324 16.9618 12.397 16.9618C12.923 16.9618 13.3683 16.8889 13.7329 16.7431C14.0975 16.5972 14.3735 16.3889 14.561 16.1181C14.7537 15.8472 14.8501 15.5269 14.8501 15.1571Z" fill="currentColor"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.0454 11.9853V12.704C29.0454 13.5582 28.9386 14.3238 28.7251 15.0009C28.5116 15.678 28.2043 16.2535 27.8032 16.7274C27.4022 17.2014 26.9204 17.5634 26.3579 17.8134C25.8006 18.0634 25.1756 18.1884 24.4829 18.1884C23.811 18.1884 23.1938 18.0634 22.6313 17.8134C22.0741 17.5634 21.5897 17.2014 21.1782 16.7274C20.772 16.2535 20.4569 15.678 20.2329 15.0009C20.009 14.3238 19.897 13.5582 19.897 12.704V11.9853C19.897 11.1311 20.0063 10.3681 20.2251 9.6962C20.4491 9.01911 20.7642 8.44359 21.1704 7.96964C21.5767 7.49047 22.0584 7.12589 22.6157 6.87589C23.1782 6.62589 23.7954 6.50089 24.4673 6.50089C25.16 6.50089 25.785 6.62589 26.3423 6.87589C26.9048 7.12589 27.3866 7.49047 27.7876 7.96964C28.1938 8.44359 28.5037 9.01911 28.7173 9.6962C28.936 10.3681 29.0454 11.1311 29.0454 11.9853ZM27.5532 12.704V11.9696C27.5532 11.2926 27.4829 10.6936 27.3423 10.1728C27.2069 9.65193 27.0063 9.21443 26.7407 8.86026C26.4751 8.50609 26.1496 8.23786 25.7642 8.05557C25.384 7.87328 24.9517 7.78214 24.4673 7.78214C23.9985 7.78214 23.5741 7.87328 23.1938 8.05557C22.8188 8.23786 22.4959 8.50609 22.2251 8.86026C21.9595 9.21443 21.7537 9.65193 21.6079 10.1728C21.4621 10.6936 21.3892 11.2926 21.3892 11.9696V12.704C21.3892 13.3863 21.4621 13.9905 21.6079 14.5165C21.7537 15.0373 21.9621 15.4774 22.2329 15.8368C22.509 16.191 22.8345 16.4592 23.2095 16.6415C23.5897 16.8238 24.0142 16.9149 24.4829 16.9149C24.9725 16.9149 25.4074 16.8238 25.7876 16.6415C26.1678 16.4592 26.4881 16.191 26.7485 15.8368C27.0142 15.4774 27.2147 15.0373 27.3501 14.5165C27.4855 13.9905 27.5532 13.3863 27.5532 12.704Z" fill="currentColor"/>
|
|
4
|
-
<path d="M39.2407 14.454C39.3241 14.6571 39.3657 14.8915 39.3657 15.1571C39.3657 15.5269 39.2694 15.8472 39.0767 16.1181C38.8892 16.3889 38.6131 16.5972 38.2485 16.7431C37.884 16.8889 37.4386 16.9618 36.9126 16.9618C36.548 16.9618 36.1965 16.9202 35.8579 16.8368C35.5246 16.7483 35.2251 16.6129 34.9595 16.4306C34.6991 16.2483 34.4933 16.0191 34.3423 15.7431C34.2967 15.6583 34.2581 15.5685 34.2263 15.4738C34.0944 15.0811 33.7799 14.7353 33.3657 14.7353C32.9515 14.7353 32.6037 15.0754 32.6943 15.4796C32.7551 15.7511 32.8514 16.0029 32.9829 16.2353C33.2329 16.6623 33.5636 17.0217 33.9751 17.3134C34.3918 17.6051 34.8527 17.8238 35.3579 17.9696C35.8683 18.1155 36.3866 18.1884 36.9126 18.1884C37.5116 18.1884 38.0532 18.1181 38.5376 17.9774C39.0272 17.8316 39.4465 17.6259 39.7954 17.3603C40.1444 17.0946 40.4126 16.7743 40.6001 16.3993C40.7876 16.0243 40.8813 15.6051 40.8813 15.1415C40.8813 14.6988 40.8058 14.303 40.6548 13.954C40.509 13.5998 40.2824 13.2847 39.9751 13.0087C39.673 12.7274 39.2876 12.4748 38.8188 12.2509C38.3501 12.0269 37.7928 11.8238 37.147 11.6415C36.6782 11.5113 36.2746 11.3759 35.936 11.2353C35.6027 11.0946 35.3267 10.941 35.1079 10.7743C34.8944 10.6077 34.7355 10.428 34.6313 10.2353C34.5324 10.0373 34.4829 9.81859 34.4829 9.57901C34.4829 9.22484 34.5662 8.90974 34.7329 8.6337C34.9048 8.35766 35.1652 8.13891 35.5142 7.97745C35.8631 7.81599 36.3058 7.73526 36.8423 7.73526C37.41 7.73526 37.8787 7.83161 38.2485 8.02432C38.6183 8.21182 38.8944 8.47224 39.0767 8.80557C39.1455 8.92956 39.2014 9.06062 39.2443 9.19874C39.367 9.59435 39.6859 9.93839 40.1001 9.93839C40.5143 9.93839 40.8599 9.59801 40.764 9.19506C40.6875 8.87364 40.5599 8.56412 40.3813 8.26651C40.0688 7.74047 39.6131 7.31599 39.0142 6.99307C38.4204 6.66495 37.6965 6.50089 36.8423 6.50089C36.259 6.50089 35.7303 6.57901 35.2563 6.73526C34.7824 6.89151 34.3735 7.11026 34.0298 7.39151C33.6912 7.66755 33.4308 7.99307 33.2485 8.36807C33.0662 8.74307 32.9751 9.15193 32.9751 9.59464C32.9751 10.0373 33.061 10.4306 33.2329 10.7743C33.4048 11.1181 33.6522 11.4228 33.9751 11.6884C34.298 11.954 34.686 12.191 35.1392 12.3993C35.5923 12.6024 36.1001 12.7873 36.6626 12.954C37.1991 13.1103 37.6418 13.2639 37.9907 13.4149C38.3449 13.566 38.6209 13.7248 38.8188 13.8915C39.022 14.0582 39.1626 14.2457 39.2407 14.454Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 1.00089H44.5C46.433 1.00089 48 2.56789 48 4.50089V20.5009C48 22.4339 46.433 24.0009 44.5 24.0009H26.5V29.1188H29.2086C29.9391 29.1188 30.6398 29.409 31.1563 29.9256C31.6729 30.4422 31.9631 31.1428 31.9631 31.8733C31.9631 32.5952 31.7113 33.2863 31.2582 33.7957C31.3262 33.8507 31.3911 33.9087 31.4531 33.9697C31.9863 34.4945 32.2498 35.1919 32.2498 35.8823C32.2498 36.5727 31.9863 37.2701 31.4531 37.795C31.3006 37.945 31.1297 38.0775 30.9419 38.1903C31.3457 38.6836 31.5455 39.2901 31.5455 39.8913C31.5455 40.5818 31.282 41.2791 30.7488 41.804C30.5032 42.0458 30.2097 42.2419 29.8746 42.3839C30.1859 42.8399 30.3401 43.3722 30.3401 43.9004C30.3401 44.5908 30.0766 45.2882 29.5434 45.813C29.0039 46.344 28.2338 46.6549 27.2989 46.6549H10.693C10.2707 47.4376 9.44318 47.9695 8.49143 47.9695H6C4.61929 47.9695 3.5 46.8502 3.5 45.4695V32.0009C3.5 30.6202 4.61929 29.5009 6 29.5009H8.49143C9.5565 29.5009 10.466 30.1669 10.8262 31.1052L16.3996 26.7843C16.9846 26.258 17.7334 25.9492 18.52 25.9103C19.3175 25.8709 20.1038 26.1117 20.7426 26.5908L22.5 27.9089V24.0009H4.5C2.567 24.0009 1 22.4339 1 20.5009V4.50089C1 2.56789 2.567 1.00089 4.5 1.00089ZM4.5 2.50089C3.39543 2.50089 2.5 3.39632 2.5 4.50089V20.5009C2.5 21.6055 3.39543 22.5009 4.5 22.5009H44.5C45.6046 22.5009 46.5 21.6055 46.5 20.5009V4.50089C46.5 3.39632 45.6046 2.50089 44.5 2.50089H4.5ZM28.4912 43.0568C28.267 42.8361 27.8915 42.6459 27.2989 42.6459H26.5359C26.1217 42.6459 25.7859 42.3101 25.7859 41.8959C25.7859 41.6888 25.8698 41.5013 26.0056 41.3656C26.0395 41.3316 26.0767 41.3009 26.1166 41.274C26.2363 41.1931 26.3806 41.1459 26.5359 41.1459H28.5044C29.097 41.1459 29.4724 40.9556 29.6966 40.7349C29.9271 40.5081 30.0455 40.2032 30.0455 39.8913C30.0455 39.5795 29.9271 39.2746 29.6966 39.0478C29.4724 38.8271 29.097 38.6368 28.5044 38.6368H26.5359C26.1217 38.6368 25.7859 38.3011 25.7859 37.8868C25.7859 37.4726 26.1217 37.1368 26.5359 37.1368H29.2086C29.8012 37.1368 30.1766 36.9466 30.4009 36.7259C30.6314 36.499 30.7498 36.1942 30.7498 35.8823C30.7498 35.5705 30.6314 35.2656 30.4009 35.0388C30.1766 34.8181 29.8012 34.6278 29.2086 34.6278H26.5359C26.1217 34.6278 25.7859 34.292 25.7859 33.8778C25.7859 33.4636 26.1217 33.1278 26.5359 33.1278H29.3636C29.9795 33.1278 30.4631 32.6479 30.4631 31.8733C30.4631 31.5406 30.3309 31.2215 30.0957 30.9862C29.8604 30.751 29.5413 30.6188 29.2086 30.6188H23.8734C23.8662 30.6189 23.859 30.6189 23.8518 30.6188H19.8542C19.44 30.6188 19.1042 30.283 19.1042 29.8688C19.1042 29.4546 19.44 29.1188 19.8542 29.1188H21.6132L19.8425 27.7908C19.4837 27.5216 19.042 27.3864 18.5939 27.4085C18.1459 27.4306 17.7197 27.6087 17.3891 27.9119C17.3739 27.9259 17.3581 27.9392 17.3417 27.9519L11 32.8684V45.1549H27.2989C27.8915 45.1549 28.267 44.9647 28.4912 44.744C28.7217 44.5171 28.8401 44.2122 28.8401 43.9004C28.8401 43.5885 28.7217 43.2837 28.4912 43.0568ZM5 32.0009C5 31.4486 5.44772 31.0009 6 31.0009H8.49143C9.04371 31.0009 9.49143 31.4486 9.49143 32.0009V45.4695C9.49143 46.0217 9.04371 46.4695 8.49143 46.4695H6C5.44772 46.4695 5 46.0217 5 45.4695V32.0009Z" fill="currentColor"/>
|
|
6
|
-
</svg>
|
|
@@ -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_4171)">
|
|
3
|
-
<path d="M3.612 15.443C3.226 15.641 2.788 15.294 2.866 14.851L3.696 10.121L0.172996 6.76501C-0.156004 6.45101 0.0149962 5.87701 0.455996 5.81501L5.354 5.11901L7.538 0.792012C7.735 0.402012 8.268 0.402012 8.465 0.792012L10.649 5.11901L15.547 5.81501C15.988 5.87701 16.159 6.45101 15.829 6.76501L12.307 10.121L13.137 14.851C13.215 15.294 12.777 15.641 12.391 15.443L8 13.187L3.612 15.443Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_85_4171">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,8 +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="M26.3263 16.2386C26.6825 16.2386 26.7843 16.4421 26.8352 16.5948V16.6966C26.8352 16.7983 26.8352 16.951 26.7843 17.0018L26.7334 17.1036V17.1545L26.7843 17.2054L26.9369 17.4598L27.0387 17.6124C27.2422 17.9686 27.4966 18.4265 27.4966 18.8844C27.4966 19.6476 27.6492 20.5635 28.3616 21.3267H28.2089L28.1072 21.2758C27.9036 21.2249 27.7001 21.0723 27.4457 20.8688C27.3948 20.8688 27.3948 20.9705 27.3948 21.1232V22.3443C27.4457 22.6496 27.4966 22.904 27.5984 23.0566C27.7001 23.1584 27.4966 23.1075 27.2931 22.904L27.0387 22.6496C26.9878 22.5478 26.9369 22.4969 26.886 22.5478H26.8352L26.7843 22.5987L26.6316 22.904C26.5299 23.311 26.4281 23.9216 26.7843 24.5322C26.8352 24.6339 26.7843 24.6339 26.6825 24.583L26.6316 24.5322L26.5299 24.4813C26.3772 24.3795 26.1228 24.176 26.0211 23.9725C26.0211 23.9216 25.9702 23.9725 25.9193 24.0742L25.8175 24.2778V24.4304C25.7158 24.8883 25.7158 25.6515 26.0719 26.313C26.1228 26.4148 26.0211 26.3639 25.9193 26.313L25.7158 26.2112L25.8175 26.1603C25.8175 26.1603 25.7667 26.1603 25.7667 26.1095L25.614 25.9568V25.9059C25.5123 25.7533 25.3596 26.1095 25.614 26.6692L25.9193 27.2288L26.1228 27.6359C26.1637 27.704 26.2009 27.7685 26.2355 27.8284C26.3299 27.992 26.4045 28.1211 26.479 28.1956C26.5808 28.2973 26.7843 28.45 27.0387 28.5517L27.4457 28.7553C27.4712 28.7807 27.4966 28.7934 27.522 28.8061C27.5475 28.8189 27.5729 28.8316 27.5984 28.857H27.6492L28.1072 29.1623C28.5142 29.4167 29.1248 29.722 29.6845 29.722C30.5494 29.722 31.0074 29.1114 31.0074 28.8061H30.9565L30.6512 28.7553H30.5494L30.4477 28.7044L30.1424 28.6026H30.0915L29.9389 28.5517C29.1757 28.2465 28.2089 27.585 28.2089 25.9568C28.2089 24.6848 29.023 23.769 29.6845 23.2093L29.9898 23.0057L30.0915 22.904L30.3968 22.7005L30.8547 23.1584L30.7021 23.2602L30.4986 23.4128L30.3459 23.5146L30.1424 23.7181C29.5827 24.2269 28.8704 25.041 28.8704 25.9568C28.8704 27.4832 30.2442 28.1956 31.0582 28.1956V27.6359L31.0074 27.5341C30.8547 27.178 30.4986 26.7709 29.5827 26.3639H29.888C30.1933 26.3639 30.7021 26.4148 31.0582 26.9236C31.1848 27.0922 31.2414 27.0163 31.286 26.9563C31.2952 26.944 31.3039 26.9323 31.3126 26.9236L31.3244 26.9114C31.3956 26.8366 31.6431 26.5768 32.025 26.72L31.9232 26.7709V26.8218L31.8723 26.8727C31.7197 27.0762 31.5162 27.5341 31.7197 28.1447H31.8723L31.9741 28.0938H32.025L32.1267 28.0429C32.5847 27.7885 33.297 27.2797 33.297 26.1603C33.297 25.1427 32.5847 24.3795 31.8723 23.7181L31.6688 23.5146L31.2618 23.1584L31.0074 22.904C30.9364 22.8685 30.8902 22.8083 30.8515 22.7579C30.8347 22.7359 30.8192 22.7159 30.8038 22.7005L30.753 22.6496C30.7021 22.5987 30.6512 22.5351 30.6003 22.4715C30.5494 22.4079 30.4986 22.3443 30.4477 22.2934L29.9898 21.8355C29.4809 21.3267 29.023 20.767 28.9213 19.9529L28.8704 19.8512H28.8195C28.8077 19.8433 28.7944 19.8348 28.7798 19.8255C28.6063 19.7152 28.2598 19.4947 28.2598 18.8844C28.2598 18.4774 28.5142 18.0703 28.7686 17.765L28.8704 17.6124L29.1248 17.358L29.2265 17.3071L29.2774 17.2562H29.3283V17.3071L29.2774 17.5615L29.2265 17.6633C29.1757 17.8668 29.1757 18.1212 29.3792 18.1212C29.6845 18.1212 30.3459 17.358 30.3459 17.2054C30.3459 17.1545 30.3968 17.2054 30.3968 17.2562V17.5106L30.3459 17.6124C30.295 17.765 30.2442 17.9177 30.1424 18.0194L30.0915 18.0703C30.0661 18.1212 30.0279 18.1594 29.9898 18.1975C29.9516 18.2357 29.9134 18.2739 29.888 18.3247L29.5827 18.6809C29.5653 18.7041 29.5479 18.7266 29.531 18.7486C29.3992 18.9192 29.2948 19.0545 29.4301 19.1897C29.5827 19.3932 29.9389 19.1388 30.1424 18.9353L30.1933 18.8335L30.2442 18.7827V18.8844L30.1933 18.9862V19.0371L30.1424 19.1388C30.0406 19.3932 29.8371 19.6985 29.5318 19.8512V20.2073L29.5827 20.2582L29.6845 20.4617C29.6845 20.4617 29.6845 20.5126 29.7353 20.5126L29.7862 20.6144L30.0406 20.8688L30.1424 21.0214L30.4477 21.3267C30.3757 21.3627 30.3801 21.3732 30.3888 21.3943C30.3924 21.403 30.3968 21.4135 30.3968 21.4284L30.9565 21.9881L31.4653 22.3952L31.6688 22.5987L31.9741 22.8531L32.4829 23.2602L32.7882 23.5654H32.8391C32.8899 23.5146 32.9408 23.4637 32.9408 23.311V23.2602C32.9408 22.9549 33.0426 22.6496 33.1952 22.5478V23.3619C33.1952 23.769 33.2461 24.2269 33.3988 24.3286C33.5514 24.3795 33.6023 24.2269 33.6023 24.0234C33.6532 23.8198 33.8058 23.6163 33.8567 23.6672L33.8058 23.8198L33.7549 24.0234V24.3286C33.704 24.7357 33.704 25.1427 33.9584 25.2954C33.9801 25.2954 33.9925 25.2954 34.0036 25.2915C34.0185 25.2862 34.0309 25.2738 34.0602 25.2445L34.1111 25.1936C34.1432 25.1293 34.216 25.0853 34.3294 25.0873C34.1509 25.2487 33.9692 25.5552 34.0093 25.9568C34.0602 26.6692 33.3988 28.5009 31.7197 28.7553V28.857L31.6688 28.9588L31.6179 29.0097L31.5162 29.2132C31.2618 29.6711 30.753 30.3326 29.4809 30.1799L29.8371 30.5361L30.0406 30.8414C30.0406 30.8668 30.0534 30.8795 30.0661 30.8922C30.0788 30.905 30.0915 30.9177 30.0915 30.9431L30.1933 31.0958C30.6512 31.7572 31.1091 32.7239 31.0582 33.7924L31.0074 33.6907L30.9565 33.4872L30.753 32.9784L30.6512 32.8257C30.6512 32.8003 30.6385 32.7875 30.6258 32.7748C30.613 32.7621 30.6003 32.7494 30.6003 32.7239L30.4986 32.5713L30.295 32.1643L29.9898 31.7572C29.9195 31.6167 29.825 31.5004 29.723 31.3749C29.6772 31.3187 29.63 31.2605 29.5827 31.1975L29.3792 30.994C28.8704 30.3834 28.2598 29.8238 27.5475 29.4167L27.3948 29.3149C27.344 29.3149 27.2931 29.3658 27.344 29.5694C27.3948 29.8238 27.1913 30.3834 27.0387 30.6378C27.0387 30.6589 27.0299 30.6713 27.0197 30.6857C27.0053 30.7062 26.9878 30.7309 26.9878 30.7905V31.5537C27.0896 32.4187 27.5475 33.5889 28.9721 33.996C29.2265 34.0468 29.4301 34.0468 29.6336 34.0468H29.8371L29.9389 33.996V34.0468L29.8371 34.1486L29.888 34.0468C29.6845 34.1995 29.3283 34.403 28.616 34.403C28.3107 34.403 28.3107 34.8609 28.7686 34.8609V35.1662L28.616 35.6241L28.4633 36.2347L28.1581 36.8453C28.1581 36.8707 28.1453 36.8834 28.1326 36.8962C28.1199 36.9089 28.1072 36.9216 28.1072 36.947L28.0054 37.1506C27.8019 37.6085 27.5475 38.0155 27.2931 38.2699C27.1618 38.3574 27.2187 38.4073 27.2695 38.4519C27.2778 38.4592 27.286 38.4663 27.2931 38.4735H27.3948C27.4263 38.4735 27.4577 38.4929 27.5012 38.5198C27.528 38.5364 27.5595 38.5558 27.5984 38.5752L27.7001 38.6261C27.7001 38.6261 27.751 38.6261 27.751 38.677L27.8528 38.7279C27.8782 38.7533 27.9036 38.766 27.9291 38.7787C27.9545 38.7915 27.98 38.8042 28.0054 38.8296H27.9545C27.8528 38.8296 27.751 38.8296 27.751 38.8805V39.1858L27.7434 39.2087C27.6945 39.358 27.6342 39.542 27.344 39.542C26.9369 39.542 26.8352 39.1349 26.8352 38.9314C26.8352 38.7279 26.6316 38.7279 26.5299 38.7279C26.479 38.7279 26.1737 38.8296 26.0719 39.1858L26.0211 39.3384C25.9702 39.6946 25.8175 39.9999 25.5123 39.9999C25.1561 39.9999 25.0543 39.7455 25.0543 39.542C25.0543 39.5165 25.0543 39.5038 25.048 39.4974C25.0416 39.4911 25.0289 39.4911 25.0035 39.4911H24.9526C24.9017 39.4911 24.7999 39.4911 24.6982 39.4402L24.8508 39.3384L24.9526 39.2876L25.2579 39.084C25.5123 38.8805 25.7158 38.677 25.6649 38.5752C25.5631 38.3208 25.4105 38.3717 25.3087 38.4735L25.2579 38.5243L25.1561 38.5752C25.0035 38.677 24.749 38.8296 24.5455 38.8805C24.2402 38.9314 24.0876 38.5243 24.2402 38.2191L24.2911 38.1682C24.3271 38.1322 24.3122 38.1217 24.2824 38.1006C24.27 38.0919 24.2551 38.0813 24.2402 38.0664L24.1385 38.0155C24.113 37.9901 24.0876 37.9774 24.0622 37.9646C24.0367 37.9519 24.0113 37.9392 23.9858 37.9138H24.5455C24.9526 37.9138 25.4105 37.9138 25.4105 37.7103C25.3596 37.405 25.1052 37.405 24.9526 37.4558C24.7999 37.5067 24.342 37.4558 24.342 37.1506C24.342 37.1251 24.3547 37.0997 24.3674 37.0742C24.3802 37.0488 24.3929 37.0234 24.3929 36.9979L24.4438 36.8962C24.4946 36.8453 24.4946 36.7944 24.4946 36.7435C24.4946 36.6926 24.4438 36.6418 24.3929 36.5909L24.342 36.54H24.5455C24.6473 36.54 24.7999 36.54 24.9526 36.5909C25.0543 36.6418 25.1561 36.6926 25.2579 36.8453L25.4614 37.0488C25.6649 37.2523 25.9193 37.5067 26.1228 37.5067C26.5299 37.5067 26.886 36.8962 26.886 35.675V34.6065C26.8759 34.5658 26.8677 34.5292 26.8604 34.4962C26.8311 34.3643 26.8148 34.2911 26.7334 34.2504L26.6825 34.1995L26.5808 34.1486L26.5299 34.0977C26.5299 34.0977 26.479 34.0468 26.479 33.996V33.8942C26.479 33.8433 26.479 33.7416 26.3772 33.6907C26.2246 33.6398 26.0211 33.8433 25.9702 34.6574V35.4715L25.9193 35.6241L25.8175 35.4206V35.3697L25.7158 35.0645C25.6649 34.8609 25.614 34.6574 25.614 34.403V33.996C25.614 33.8942 25.614 33.8433 25.5631 33.7924C25.5631 33.7924 25.5123 33.7924 25.4614 33.8433L25.2579 34.0468C25.1052 34.1995 24.9017 34.403 24.6473 34.5048L24.7999 34.1995C24.9017 33.996 25.0035 33.6907 25.0035 33.4363C25.0035 33.3854 25.0035 33.3345 24.9526 33.2836V33.2328L25.0035 33.0801L24.8508 32.9275C24.6982 32.7239 24.4946 32.3169 24.4946 31.2484C24.4946 30.8922 24.5455 30.6378 24.5964 30.4343L24.6473 30.2817C24.6982 30.0782 24.749 29.8746 24.749 29.5694C24.749 29.2132 24.342 28.8061 23.8841 28.3991L23.477 28.0938L23.3753 27.9921L22.7138 27.5341L22.3068 27.2288L22.205 27.1271L21.9506 26.9236L21.34 26.313V26.2621C21.3043 26.2264 21.3438 26.1657 21.3881 26.0975C21.4069 26.0684 21.4266 26.0381 21.4418 26.0077L21.7471 25.6515L21.8489 25.4989C22.0015 25.2954 22.1033 25.0919 21.9506 24.9901C21.7471 24.8375 21.6453 24.9392 21.4927 25.1427L21.34 25.448C21.34 25.4735 21.3273 25.4862 21.3146 25.4989C21.3019 25.5116 21.2892 25.5243 21.2892 25.5498C21.0856 25.8551 20.7295 26.1603 20.5768 26.2621C20.526 26.2621 20.526 26.2112 20.526 26.1095V25.5498C20.526 25.2954 20.4751 25.041 20.3224 25.041C19.9663 25.041 19.9154 25.3971 19.9663 25.5498V25.6007C19.9663 25.6515 19.9663 25.6515 19.8645 25.6515H19.7627C19.6101 25.6515 19.4575 25.7024 19.3048 25.8551L19.2539 25.9568C19.2539 25.9568 19.2539 26.0077 19.2031 26.0077L19.1522 26.1095C19.1399 26.134 19.1269 26.1592 19.1135 26.1854C19.0151 26.3765 18.8916 26.6164 18.8469 26.9744V26.8727C18.796 26.72 18.7451 26.3639 18.8469 26.0586L18.8978 25.9568C18.8978 25.9372 18.8978 25.9251 18.8919 25.9177C18.8826 25.9059 18.8584 25.9059 18.796 25.9059H18.1854L17.7784 26.0077L17.4222 26.0586L16.9134 26.1603C16.8626 26.1603 16.8117 26.1603 16.7608 26.2112C16.6081 26.2621 16.5573 26.313 16.5573 26.5674V27.6359C16.5573 27.6868 16.5064 27.6359 16.5064 27.585V27.4324H16.3029C16.0993 27.4832 15.7941 27.4832 15.7941 27.178C15.7941 26.9236 15.8449 26.8727 15.9467 26.8218L15.9976 26.7709C16.0112 26.7573 16.0248 26.7473 16.0375 26.738C16.0721 26.7127 16.0993 26.6928 16.0993 26.6183C16.0993 26.313 15.8958 26.1603 15.6414 26.1603C15.4888 26.1603 15.387 26.2621 15.2853 26.3639L15.1835 26.4656C15.0308 26.6183 14.8782 26.7709 14.6747 26.7709C14.2168 26.7709 14.1659 26.4656 14.1659 26.313C14.1659 26.229 14.1813 26.1758 14.1952 26.128C14.2065 26.0889 14.2168 26.0534 14.2168 26.0077C14.2168 25.9059 14.115 25.8042 14.0132 25.8042C13.9624 25.8042 14.0641 25.7533 14.2168 25.7533H14.2676L14.5729 25.8042C14.9291 25.8551 15.387 25.8042 15.387 25.4989C15.387 25.3971 15.2853 25.3463 15.1835 25.3971H14.9291L14.7256 25.3463C14.4712 25.2954 14.115 25.1936 14.115 24.7866C14.115 24.583 14.3185 24.4813 14.4203 24.4304H14.4712C14.4712 24.4093 14.4799 24.3795 14.4901 24.3446C14.5046 24.2952 14.522 24.2356 14.522 24.176C14.522 24.1564 14.522 24.1443 14.5279 24.1398C14.5372 24.1327 14.5613 24.1447 14.6238 24.176L14.6238 24.0742L14.7256 24.1251L14.8782 24.2269L15.3361 24.6848C15.4379 24.8375 15.5905 24.7866 15.6414 24.7357H15.6923C15.7432 24.6848 15.8449 24.5322 15.5905 24.3795C15.2853 24.2269 15.2853 24.0742 15.2853 23.8198C15.2853 23.6361 15.4097 23.5768 15.5087 23.5295C15.5194 23.5244 15.5298 23.5195 15.5397 23.5146H15.5905C15.6414 23.5146 15.6923 23.311 15.6414 23.2093V23.1584C15.5905 23.0057 15.9976 23.3619 16.2011 23.769C16.2011 23.7944 16.2138 23.8198 16.2265 23.8453C16.2393 23.8707 16.252 23.8962 16.252 23.9216V24.176C16.252 24.4304 16.3029 24.6339 16.6081 24.7866H16.9643L17.0661 24.7357L17.2187 24.6848C17.2187 24.6848 17.2696 24.6848 17.3205 24.6339L17.4222 24.583L17.7275 24.4813L18.6434 24.1251L20.068 23.6163C20.1698 23.5654 20.3733 23.4637 20.2716 23.311C20.1698 23.1075 19.8136 23.0566 19.3048 23.4128L19.2539 23.4637C19.1522 23.5654 19.1013 23.5146 19.1522 23.4128L19.2031 23.3619L19.2539 23.2602C19.2539 23.2602 19.2539 23.2093 19.3048 23.2093L19.3557 23.1075C19.3557 23.1075 19.3557 23.0566 19.4066 23.0566L19.5083 22.9549C19.5278 22.9354 19.5398 22.916 19.5501 22.8994C19.5666 22.8725 19.5787 22.8531 19.6101 22.8531L19.7119 22.7513C20.068 22.2934 20.6277 21.8355 21.1365 21.8355C21.34 21.8355 21.3909 21.7337 21.3909 21.632V21.5811C21.3909 21.4793 21.2892 21.3776 20.933 21.3776C20.4751 21.3776 19.8645 21.8355 19.6101 22.2934H19.5083L19.3557 22.1917C19.2539 22.0899 19.0504 22.039 18.796 22.039C18.6172 22.039 18.4733 22.0565 18.354 22.0709C18.2698 22.0812 18.1978 22.0899 18.1346 22.0899L18.0328 22.1408H17.8802C17.7784 22.1408 18.1346 21.632 18.7451 21.632C18.8469 21.632 18.8469 21.4793 18.6434 21.3267L18.5925 21.2758C18.526 21.2426 18.4378 21.1442 18.3421 21.0374C18.2913 20.9808 18.2384 20.9217 18.1854 20.8688L17.7275 20.2582L17.6258 20.1564C17.524 20.0547 17.4222 20.2073 17.2696 20.4617L17.2187 20.5635L17.0661 21.0214C17.0661 21.0723 17.0152 21.0214 17.0152 20.9705V20.8179C17.0152 20.767 16.9643 20.767 16.9643 20.767L16.8626 20.7161C16.7099 20.6652 16.5573 20.5635 16.5573 20.2582C16.5573 19.902 16.7608 19.8512 16.9643 19.902H17.0152L17.117 19.9529H17.1678C17.3714 20.0038 17.5749 19.7494 17.524 19.5459C17.4068 19.4789 17.3061 19.4064 17.2128 19.3392C17.0228 19.2024 16.8638 19.0879 16.659 19.0879H16.6081C16.252 19.1388 15.7432 18.8844 15.7432 18.4774C15.7432 18.2739 15.8449 18.1721 15.9467 18.1212L16.0485 18.0703H16.0993C16.1502 18.0194 16.1502 17.8159 16.1502 17.765H16.2011L16.252 17.8159L16.3537 17.8668L16.9643 18.4774C17.117 18.63 17.1678 18.6809 17.2696 18.63C17.3714 18.5791 17.4222 18.3247 17.0661 18.0194C16.7099 17.7142 16.7608 17.358 16.9134 17.1545H17.1678C17.3205 17.1545 17.4731 17.1545 17.524 17.0527C17.524 16.951 17.5749 17.0018 17.5749 17.0527V17.2054L17.6258 17.3071V17.7142L17.6766 17.8159V17.9686C17.6766 18.2739 17.7784 18.3247 17.8802 18.3247C17.9819 18.3247 18.0837 18.2739 18.0328 17.8159C17.9819 17.4089 18.0837 17.3071 18.1854 17.2562L18.2363 17.2054C18.3381 17.1545 18.4907 17.1545 18.5925 17.2562C18.6943 17.358 18.8978 17.2054 18.8978 17.0527V17.2562C18.9487 17.4089 18.9487 17.6124 18.796 17.8159C18.7766 17.8354 18.7646 17.8548 18.7543 17.8714C18.7377 17.8983 18.7257 17.9177 18.6943 17.9177L18.4907 18.1212C18.2872 18.3247 18.1346 18.5791 18.3381 18.9862L18.389 19.0879L20.4242 21.174C20.4751 21.174 20.526 21.1232 20.4242 21.0214C20.3224 20.8688 20.3224 20.7161 20.4242 20.6144V20.5635L20.4751 20.6144L20.6786 20.7161C20.6786 20.7161 20.7295 20.7161 20.7295 20.767L20.8312 20.8179C21.1874 20.9705 21.6962 21.1232 22.4594 21.0214C23.6577 20.8883 24.2366 20.1358 24.2299 19.8106L24.0367 20.0038L23.9673 20.0458C23.7277 20.1912 23.4497 20.36 23.1717 20.36C22.6121 20.36 22.3068 19.8003 22.4085 19.4441V19.3932L22.5103 19.495C22.6121 19.5967 22.8665 19.7494 23.1717 19.7494C23.6297 19.7494 24.1385 19.1897 24.0367 18.8844C24.0367 18.8335 23.9858 18.8335 23.8841 18.8844L23.7823 18.8335L23.2735 18.9862L23.07 19.0371C23.0191 19.0371 23.0191 19.0371 22.9682 19.0879L22.7647 19.1388C22.4085 19.2406 21.8997 19.2915 21.3909 19.2915C19.7627 19.2915 19.5083 17.6633 20.6786 17.0018L20.6277 17.0527L20.5768 17.1545V17.6124C20.4751 18.1721 20.6277 18.8844 21.9506 18.8844C22.205 18.8844 22.4594 18.8844 22.6629 18.8335L22.8665 18.7827C22.9173 18.7827 23.0191 18.7827 23.07 18.7318L23.2735 18.6809L23.5788 18.5791L23.7823 18.4774L23.935 18.4265V18.3247C23.8841 18.1721 23.6806 17.8159 23.2226 17.8159C22.7924 17.8159 22.5867 18.1303 22.479 18.2949L22.4594 18.3247L22.4085 18.3756V18.4265L22.3577 18.3756L22.2559 18.4774C22.1033 18.3756 21.8489 18.0703 21.9506 17.7142C21.9506 17.6633 22.0015 17.6633 22.0524 17.6633H22.2559C22.4085 17.6124 22.5612 17.5615 22.5612 17.358C22.5612 17.2562 22.5103 17.2054 22.4594 17.2054H22.4085C22.3577 17.2054 22.3068 17.2562 22.2559 17.3071L22.205 17.4089C22.1914 17.4225 22.1814 17.4361 22.1721 17.4488C22.1468 17.4834 22.1269 17.5106 22.0524 17.5106C21.8489 17.5106 21.8489 16.9001 22.2559 16.9001H22.3068C22.4085 16.9001 22.5612 16.9001 22.6121 16.7983V16.7474C22.6121 16.5948 22.9682 16.4421 23.7314 16.3913H24.3929C24.9118 16.3913 25.2558 16.4787 25.4653 16.532L25.5123 16.5439L25.614 16.5948L25.7667 16.7474V16.6966C25.8175 16.493 25.9702 16.2386 26.3263 16.2386ZM23.4262 24.8883C23.3244 24.8883 23.2226 24.9392 23.2226 25.041V25.1936C23.2226 25.1936 23.2226 25.2445 23.1717 25.2445L23.07 25.448C22.9173 25.6515 22.7138 25.9059 22.2559 26.1095C22.205 26.1603 22.1541 26.2621 22.205 26.3639C22.2559 26.4148 22.3068 26.4656 22.4085 26.4656H22.4594C23.1209 26.1603 23.4262 25.7533 23.5279 25.448L23.5788 25.3463V25.0919C23.5788 24.9901 23.5279 24.8883 23.4262 24.8883ZM24.8508 24.7866C24.749 24.7866 24.6982 24.8375 24.6473 24.9392V25.1427C24.5964 25.3971 24.4438 25.8551 23.8841 26.1603C23.8332 26.2112 23.7823 26.313 23.8332 26.4148C23.8841 26.4656 23.935 26.5165 24.0367 26.5165H24.0876C24.6982 26.2112 24.9526 25.7024 25.0543 25.3463V24.9901C25.0035 24.8375 24.9526 24.7866 24.8508 24.7866ZM22.5612 22.4461C22.5103 22.5478 22.5612 22.6496 22.6121 22.7513L22.6629 22.8022C22.7138 22.8531 22.8665 23.0057 22.9173 23.2093C23.0191 23.5654 22.9173 24.0742 22.6121 24.583C22.5612 24.6339 22.5612 24.7866 22.6629 24.8375C22.6922 24.8667 22.7046 24.8791 22.7196 24.8844C22.7306 24.8883 22.7431 24.8883 22.7647 24.8883C22.8156 24.8883 22.9173 24.8375 22.9682 24.7866C23.3244 24.176 23.477 23.6163 23.3753 23.1584V23.0566C23.3311 22.7916 23.1718 22.6416 23.064 22.54C23.0477 22.5246 23.0325 22.5103 23.0191 22.4969L22.9682 22.4461L22.8156 22.3952C22.7138 22.3443 22.5612 22.3443 22.5612 22.4461ZM21.5944 22.5987L21.4927 22.6496L21.2892 22.8531C21.0348 23.1075 20.7804 23.5654 20.6786 24.3286C20.6786 24.4304 20.7295 24.5322 20.8312 24.5322H20.933C20.9839 24.5322 21.0856 24.4813 21.1365 24.3795V24.3286C21.1874 23.6163 21.4927 23.2093 21.6962 23.0057L21.798 22.904C21.8997 22.8531 21.8997 22.7005 21.8489 22.6496C21.798 22.5987 21.6962 22.5987 21.5944 22.5987ZM23.9858 21.2758C23.935 21.3776 23.935 21.4793 24.0367 21.5302L24.1894 21.6829V21.7337L24.2402 21.7846C24.3929 22.039 24.5455 22.4461 24.3929 23.2093L24.342 23.3619C24.2911 23.4637 24.342 23.5146 24.4438 23.5654H24.5455C24.5964 23.5654 24.6982 23.5146 24.749 23.4128C25.0035 22.2934 24.6473 21.6829 24.4438 21.4284L24.342 21.3267L24.2911 21.2249L24.2402 21.174C24.1385 21.174 24.0367 21.174 23.9858 21.2758ZM24.8508 18.7827C24.7999 18.8844 24.8508 18.9862 24.9526 19.0371C25.5123 19.2406 26.0211 19.5459 26.0719 19.6985H25.3087C25.2579 19.6985 25.1561 19.7494 25.1052 19.8003C25.0738 19.8317 25.0812 19.8632 25.0914 19.9066C25.0978 19.9335 25.1052 19.9649 25.1052 20.0038L25.1561 20.1056L25.207 20.1564V20.7161C25.207 20.9196 25.207 21.174 25.1561 21.4284C25.1561 21.5302 25.207 21.5811 25.3596 21.632H25.4614C25.5123 21.632 25.614 21.5302 25.614 21.4284V20.6144C25.614 20.36 25.5631 20.2073 25.5123 20.0547C25.8175 20.0547 26.0719 20.0038 26.2246 19.8512C26.2755 19.8003 26.3263 19.6985 26.3263 19.5967C26.3263 19.2406 25.8175 18.9353 25.4105 18.7318L25.1052 18.63L25.0035 18.5791H24.9526C24.984 18.6106 24.9572 18.642 24.92 18.6855C24.8971 18.7123 24.8702 18.7438 24.8508 18.7827ZM24.3929 16.7983H23.477C23.3562 16.7983 23.331 16.8302 23.3006 16.8687C23.2925 16.8788 23.2841 16.8895 23.2735 16.9001C23.2735 16.9597 23.291 17.0018 23.3054 17.0368C23.3157 17.0614 23.3244 17.0825 23.3244 17.1036L23.3753 17.1545H23.935C23.9858 17.1545 24.0876 17.1545 24.0876 17.2054C24.0876 17.2562 23.935 17.3071 23.7823 17.358L23.5279 17.358L23.5788 17.4089C23.6297 17.5106 23.7314 17.5615 23.935 17.5615C24.2402 17.5615 24.342 17.3071 24.342 17.1036V17.0018C24.3929 17.0018 24.5455 17.0018 24.5455 16.9001C24.5964 16.8492 24.4946 16.7983 24.3929 16.7983Z" fill="currentColor"/>
|
|
3
|
-
<path d="M34.3294 25.0873C34.377 25.0443 34.4244 25.0115 34.4672 24.9901L34.5181 24.9392L34.569 25.1427C34.4753 25.1053 34.3954 25.0885 34.3294 25.0873Z" fill="currentColor"/>
|
|
4
|
-
<path d="M20.933 27.9412H22.9173C22.9682 27.9412 22.9682 27.9921 22.9682 28.0429V28.0938C22.9682 28.1447 22.9682 28.2465 23.1209 28.2973C23.3244 28.3482 23.935 28.857 23.935 29.1114C23.935 29.1623 23.8841 29.2641 23.8332 29.3149L23.6806 29.5185C23.6297 29.6202 23.5788 29.722 23.6806 29.9255C23.935 30.2817 24.1385 30.2817 24.2911 30.2817H24.1894L24.1385 30.3326C23.9858 30.3834 23.6806 30.4343 23.2226 30.4343H23.1209C22.9173 30.4343 22.7138 30.3834 22.5103 30.3326L21.9506 30.2308L21.8853 30.2198C21.6083 30.1731 21.3689 30.1327 21.0856 30.1799H20.933C20.3733 30.2817 20.0172 30.7905 20.2716 32.4187V32.5713C20.2716 32.6222 20.3733 32.6731 20.5768 32.6731C20.8821 32.6731 21.6453 33.0292 22.1033 33.7924L21.8997 33.6907V33.5889L21.5944 33.4872C21.1874 33.2836 20.7804 33.131 20.6277 33.3854C20.526 33.5889 20.5768 33.7416 20.7295 33.8433C20.7804 33.8433 20.6786 33.8942 20.526 33.9451L20.3733 33.996L20.1189 34.0977H19.8645L19.3557 34.2504L18.4398 34.5048C18.2872 34.5557 18.2363 34.6574 18.5416 34.8609L18.5925 34.9118L18.8978 35.1153L18.9487 35.1662C18.9995 35.2171 19.0504 35.268 18.9995 35.268H18.8469C18.6943 35.268 18.5416 35.268 18.5416 35.3697C18.5416 35.4715 18.4907 35.7259 18.2363 35.7259C17.9819 35.7259 17.8293 35.5733 17.8293 35.3697V35.1153C17.8293 34.9118 17.7275 34.7592 17.524 34.7592C17.2187 34.7592 17.0152 35.0645 17.0152 35.6241C17.0152 36.0312 16.6081 36.1329 16.4555 36.1329C16.3029 36.1329 16.1502 36.0821 16.1502 35.8277C16.1502 35.7768 16.0485 35.7768 15.9467 35.7768H15.8449C15.7941 35.7768 15.8449 35.7259 15.9467 35.6241L16.0485 35.5733L16.3537 35.3697L16.659 35.1153C16.7608 35.0645 16.7608 34.8609 16.7099 34.8101L16.659 34.7592C16.5573 34.7083 16.4555 34.6574 16.252 34.8101C16.0485 35.0136 15.7941 35.1662 15.5905 35.1662C15.387 35.1662 15.1835 34.9627 15.1835 34.7592V34.5048C15.1835 34.403 15.1835 34.2504 15.0308 34.1995L14.98 34.1486C14.9569 34.1255 14.9443 34.1129 14.9469 34.106C14.95 34.0977 14.9752 34.0977 15.0308 34.0977H16.2011C16.4046 34.0977 16.6081 34.0468 16.6081 33.996C16.6081 33.7416 16.3537 33.6907 16.252 33.6907H16.0993C15.8449 33.6907 15.4888 33.6907 15.4888 33.3345C15.4888 33.2328 15.5397 33.1819 15.5905 33.131H15.6414C15.6414 33.1056 15.6541 33.0928 15.6669 33.0801C15.6796 33.0674 15.6923 33.0547 15.6923 33.0292C15.6923 32.9275 15.5397 32.9275 15.4888 32.9275L15.5905 32.8257C15.7432 32.7748 16.0485 32.6731 16.3537 32.9275L16.5573 33.131L16.7608 33.4363C16.9134 33.6398 17.0661 33.7924 17.3205 33.7924H17.4222C17.931 33.7416 19.1522 33.2836 19.1522 31.9099C19.1522 31.5028 19.0504 31.1466 18.9487 30.8414L18.8469 30.5361L18.6943 30.2308V30.1799C18.6943 30.1545 18.6943 30.1418 18.7006 30.1354C18.707 30.129 18.7197 30.129 18.7451 30.129H18.8469C18.9487 30.129 19.1013 30.0782 19.1013 29.8746C19.1013 29.4676 16.659 29.4167 15.8958 30.1799V29.9764L15.9467 29.8746C16.0993 29.6202 16.4555 29.2641 17.2696 29.2641C17.3888 29.2641 17.4906 29.2815 17.5749 29.296C17.6345 29.3062 17.6854 29.3149 17.7275 29.3149L17.8802 29.3658C18.0328 29.4167 18.1346 29.4167 18.2872 29.3658C18.3381 29.3658 18.3381 29.3149 18.2872 29.2641L18.0837 29.0097C17.931 28.857 17.7784 28.7044 17.8293 28.3991L17.8802 28.45C18.0328 28.6026 18.389 28.9079 18.796 28.9079C18.8176 28.9079 18.8301 28.9079 18.8411 28.904C18.8561 28.8987 18.8685 28.8863 18.8978 28.857L18.9487 28.8061L19.0504 28.6535L19.2539 28.45C19.5592 28.2465 20.068 27.9412 20.933 27.9412Z" fill="currentColor"/>
|
|
5
|
-
<path d="M32.2285 17.4089C32.3811 17.7142 32.6864 18.0703 32.9917 18.0194C33.0935 18.0194 33.0935 17.8668 33.0426 17.7142L32.9917 17.5106L32.9408 17.4089V17.2054L33.2461 17.5106C33.3988 17.6633 33.5514 17.8159 33.704 17.9177C34.0093 18.1212 34.0602 18.7318 33.9076 19.0879C33.8567 19.1727 33.7945 19.2575 33.7324 19.3423C33.608 19.5119 33.4836 19.6815 33.4496 19.8512V19.902C33.3988 20.0547 33.297 20.2582 33.1444 20.5635L33.0426 20.767C33.0214 20.7989 33.0023 20.8285 32.9841 20.8568C32.9152 20.9643 32.8581 21.0533 32.7373 21.174L32.5338 21.3776C32.3811 21.5811 32.1776 21.7846 31.9741 21.9881L31.8723 22.0899L31.3635 21.632L32.1776 20.8179C32.5338 20.4108 32.8391 20.0038 32.7882 19.6985H32.7373L32.6864 19.6476H32.6355L32.5338 19.5967C32.3303 19.4441 32.025 19.1388 32.0759 18.6809L32.1267 18.7827L32.1776 18.8335L32.2285 18.9353C32.3811 19.1388 32.6355 19.3423 32.7882 19.1897C33.0426 19.0371 32.8391 18.63 32.5338 18.3247L32.432 18.223V18.0703L32.3811 18.0194C32.1776 17.8159 32.0759 17.5106 32.0759 17.3071V17.1036L32.2285 17.4089Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.1894 13.9999L24.342 14.0508L24.4946 14.2034L24.6473 14.2543C24.8508 14.4069 25.0543 14.6104 25.0543 14.814C25.0543 15.0684 24.7999 15.1701 24.6473 15.221H24.5964C24.6982 15.4754 24.9017 15.5772 25.0035 15.6281H25.4614C25.7667 15.6281 25.7667 15.3737 25.7667 15.2719V15.1701H25.7158C25.614 15.1701 25.4105 15.0684 25.4105 14.8648C25.4105 14.6104 25.7667 14.4069 26.1228 14.3052L26.3263 14.2034L26.479 14.1525L26.3772 14.5596H26.3263C26.2246 14.5596 26.1228 14.6613 26.1228 14.814C26.1228 14.8648 26.1737 14.9157 26.2246 14.9666H26.2755L25.9702 15.9842H22.6121L22.3577 15.0175C22.3697 15.0055 22.3845 14.9935 22.4002 14.9808C22.4509 14.9398 22.5103 14.8917 22.5103 14.814C22.5103 14.6613 22.4085 14.5596 22.3068 14.5596H22.2559L22.1033 14.1016C22.4085 14.1525 23.1717 14.4578 23.1717 14.814C23.1717 15.0684 22.9682 15.1701 22.8665 15.1701H22.8156C22.8156 15.4754 23.0191 15.5772 23.1209 15.5772H23.6806C23.935 15.5772 23.9858 15.2719 23.9858 15.1701V15.1193H23.8332C23.6806 15.0684 23.5279 15.0175 23.5279 14.8648C23.5279 14.6104 23.7314 14.4069 23.935 14.2034L24.1385 13.9999H24.1894ZM24.2911 14.6104C24.1385 14.6104 24.0367 14.7122 24.0367 14.8648C24.0367 15.0175 24.1385 15.1193 24.2911 15.1193C24.4438 15.1193 24.5455 15.0175 24.5455 14.8648C24.5455 14.7122 24.4438 14.6104 24.2911 14.6104Z" fill="currentColor"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M45 9.99988V5.99988C45 4.89531 44.1046 3.99988 43 3.99988H2C0.89543 3.99988 0 4.89531 0 5.99988V41.9999C0 43.1044 0.895431 43.9999 2 43.9999H43.1687C44.2051 43.9999 45.0699 43.2081 45.161 42.1757L47.808 12.1757C47.9112 11.0063 46.9897 9.99988 45.8158 9.99988H45ZM43.5 5.99988C43.5 5.72374 43.2761 5.49988 43 5.49988H2C1.72386 5.49988 1.5 5.72374 1.5 5.99988V25.4999L2.85094 8.83825C2.93514 7.79976 3.8025 6.99988 4.8444 6.99988H20.1716C20.702 6.99988 21.2107 7.21059 21.5858 7.58566L24 9.99988H43.5V5.99988ZM20.5251 8.64632C20.4314 8.55256 20.3042 8.49988 20.1716 8.49988H4.8444C4.58393 8.49988 4.36709 8.69985 4.34604 8.95947L1.67036 41.9595C1.64676 42.2506 1.87665 42.4999 2.16873 42.4999H43.1687C43.4278 42.4999 43.644 42.3019 43.6668 42.0438L46.3138 12.0438C46.3396 11.7515 46.1092 11.4999 45.8158 11.4999H23.3787L20.5251 8.64632Z" fill="currentColor"/>
|
|
8
|
-
</svg>
|
|
@@ -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_4085)">
|
|
3
|
-
<path d="M8 11C7.20435 11 6.44129 10.6839 5.87868 10.1213C5.31607 9.55871 5 8.79565 5 8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5C8.79565 5 9.55871 5.31607 10.1213 5.87868C10.6839 6.44129 11 7.20435 11 8C11 8.79565 10.6839 9.55871 10.1213 10.1213C9.55871 10.6839 8.79565 11 8 11ZM8 12C9.06087 12 10.0783 11.5786 10.8284 10.8284C11.5786 10.0783 12 9.06087 12 8C12 6.93913 11.5786 5.92172 10.8284 5.17157C10.0783 4.42143 9.06087 4 8 4C6.93913 4 5.92172 4.42143 5.17157 5.17157C4.42143 5.92172 4 6.93913 4 8C4 9.06087 4.42143 10.0783 5.17157 10.8284C5.92172 11.5786 6.93913 12 8 12ZM8 0C8.13261 0 8.25979 0.0526784 8.35355 0.146447C8.44732 0.240215 8.5 0.367392 8.5 0.5V2.5C8.5 2.63261 8.44732 2.75979 8.35355 2.85355C8.25979 2.94732 8.13261 3 8 3C7.86739 3 7.74021 2.94732 7.64645 2.85355C7.55268 2.75979 7.5 2.63261 7.5 2.5V0.5C7.5 0.367392 7.55268 0.240215 7.64645 0.146447C7.74021 0.0526784 7.86739 0 8 0ZM8 13C8.13261 13 8.25979 13.0527 8.35355 13.1464C8.44732 13.2402 8.5 13.3674 8.5 13.5V15.5C8.5 15.6326 8.44732 15.7598 8.35355 15.8536C8.25979 15.9473 8.13261 16 8 16C7.86739 16 7.74021 15.9473 7.64645 15.8536C7.55268 15.7598 7.5 15.6326 7.5 15.5V13.5C7.5 13.3674 7.55268 13.2402 7.64645 13.1464C7.74021 13.0527 7.86739 13 8 13ZM16 8C16 8.13261 15.9473 8.25979 15.8536 8.35355C15.7598 8.44732 15.6326 8.5 15.5 8.5H13.5C13.3674 8.5 13.2402 8.44732 13.1464 8.35355C13.0527 8.25979 13 8.13261 13 8C13 7.86739 13.0527 7.74021 13.1464 7.64645C13.2402 7.55268 13.3674 7.5 13.5 7.5H15.5C15.6326 7.5 15.7598 7.55268 15.8536 7.64645C15.9473 7.74021 16 7.86739 16 8ZM3 8C3 8.13261 2.94732 8.25979 2.85355 8.35355C2.75979 8.44732 2.63261 8.5 2.5 8.5H0.5C0.367392 8.5 0.240215 8.44732 0.146447 8.35355C0.0526784 8.25979 0 8.13261 0 8C0 7.86739 0.0526784 7.74021 0.146447 7.64645C0.240215 7.55268 0.367392 7.5 0.5 7.5H2.5C2.63261 7.5 2.75979 7.55268 2.85355 7.64645C2.94732 7.74021 3 7.86739 3 8ZM13.657 2.343C13.7507 2.43676 13.8034 2.56392 13.8034 2.6965C13.8034 2.82908 13.7507 2.95624 13.657 3.05L12.243 4.465C12.1965 4.51142 12.1413 4.54823 12.0806 4.57333C12.0199 4.59843 11.9548 4.61132 11.8891 4.61128C11.7565 4.61118 11.6293 4.55839 11.5355 4.4645C11.4891 4.41801 11.4523 4.36284 11.4272 4.30212C11.4021 4.24141 11.3892 4.17634 11.3892 4.11065C11.3893 3.97796 11.4421 3.85075 11.536 3.757L12.95 2.343C13.0438 2.24926 13.1709 2.19661 13.3035 2.19661C13.4361 2.19661 13.5632 2.24926 13.657 2.343ZM4.464 11.536C4.55774 11.6298 4.61039 11.7569 4.61039 11.8895C4.61039 12.0221 4.55774 12.1492 4.464 12.243L3.05 13.657C2.9557 13.7481 2.8294 13.7985 2.6983 13.7973C2.5672 13.7962 2.44179 13.7436 2.34909 13.6509C2.25639 13.5582 2.2038 13.4328 2.20266 13.3017C2.20152 13.1706 2.25192 13.0443 2.343 12.95L3.757 11.536C3.85076 11.4423 3.97792 11.3896 4.1105 11.3896C4.24308 11.3896 4.37024 11.4423 4.464 11.536ZM13.657 13.657C13.5632 13.7507 13.4361 13.8034 13.3035 13.8034C13.1709 13.8034 13.0438 13.7507 12.95 13.657L11.536 12.243C11.4449 12.1487 11.3945 12.0224 11.3957 11.8913C11.3968 11.7602 11.4494 11.6348 11.5421 11.5421C11.6348 11.4494 11.7602 11.3968 11.8913 11.3957C12.0224 11.3945 12.1487 11.4449 12.243 11.536L13.657 12.95C13.7507 13.0438 13.8034 13.1709 13.8034 13.3035C13.8034 13.4361 13.7507 13.5632 13.657 13.657ZM4.464 4.465C4.37024 4.55874 4.24308 4.61139 4.1105 4.61139C3.97792 4.61139 3.85076 4.55874 3.757 4.465L2.343 3.05C2.29524 3.00388 2.25715 2.9487 2.23095 2.8877C2.20474 2.8267 2.19095 2.76109 2.19037 2.6947C2.1898 2.62831 2.20245 2.56247 2.22759 2.50102C2.25273 2.43957 2.28986 2.38375 2.3368 2.3368C2.38375 2.28986 2.43957 2.25273 2.50102 2.22759C2.56247 2.20245 2.62831 2.1898 2.6947 2.19037C2.76109 2.19095 2.8267 2.20474 2.8877 2.23095C2.9487 2.25715 3.00388 2.29524 3.05 2.343L4.464 3.757C4.51056 3.80345 4.54751 3.85862 4.57271 3.91937C4.59792 3.98011 4.61089 4.04523 4.61089 4.111C4.61089 4.17677 4.59792 4.24189 4.57271 4.30263C4.54751 4.36338 4.51056 4.41855 4.464 4.465Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_85_4085">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -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_4008)">
|
|
3
|
-
<path d="M3.65401 1.32805C3.59498 1.25211 3.52046 1.1896 3.43542 1.14468C3.35037 1.09975 3.25673 1.07343 3.16073 1.06747C3.06473 1.06151 2.96856 1.07605 2.87861 1.11012C2.78866 1.14418 2.70698 1.19699 2.63901 1.26505L1.60501 2.30005C1.12201 2.78405 0.944013 3.46905 1.15501 4.07005C2.03174 6.55716 3.45617 8.81546 5.32301 10.6781C7.18561 12.5449 9.4439 13.9693 11.931 14.8461C12.532 15.0571 13.217 14.8791 13.701 14.3961L14.735 13.3621C14.8031 13.2941 14.8559 13.2124 14.8899 13.1225C14.924 13.0325 14.9385 12.9363 14.9326 12.8403C14.9266 12.7443 14.9003 12.6507 14.8554 12.5656C14.8105 12.4806 14.748 12.4061 14.672 12.3471L12.365 10.5531C12.2838 10.4903 12.1895 10.4467 12.089 10.4255C11.9886 10.4044 11.8846 10.4063 11.785 10.4311L9.59501 10.9781C9.30267 11.0506 8.99654 11.0465 8.70626 10.9661C8.41597 10.8857 8.15135 10.7317 7.93801 10.5191L5.48201 8.06205C5.26919 7.84881 5.11503 7.58424 5.03444 7.29395C4.95386 7.00366 4.94957 6.69748 5.02201 6.40505L5.57001 4.21505C5.59477 4.11544 5.59666 4.01151 5.57553 3.91106C5.5544 3.81061 5.51081 3.71625 5.44801 3.63505L3.65401 1.32805ZM1.88401 0.511051C2.05901 0.336 2.26924 0.200181 2.50075 0.112612C2.73226 0.0250429 2.97976 -0.0122724 3.22679 0.00314389C3.47383 0.0185602 3.71477 0.0863553 3.93359 0.202028C4.15242 0.3177 4.34414 0.478602 4.49601 0.674051L6.29001 2.98005C6.61901 3.40305 6.73501 3.95405 6.60501 4.47405L6.05801 6.66405C6.02993 6.77749 6.03156 6.89625 6.06273 7.00888C6.09391 7.12151 6.15359 7.2242 6.23601 7.30705L8.69301 9.76405C8.77596 9.84664 8.87882 9.90642 8.99164 9.9376C9.10447 9.96878 9.22343 9.97032 9.33701 9.94205L11.526 9.39505C11.7827 9.33126 12.0504 9.32647 12.3092 9.38102C12.5679 9.43558 12.811 9.54807 13.02 9.71005L15.326 11.5041C16.155 12.149 16.231 13.3741 15.489 14.1151L14.455 15.1491C13.715 15.8891 12.609 16.2141 11.578 15.8511C8.93869 14.9236 6.54255 13.4128 4.56801 11.4311C2.58639 9.4568 1.07556 7.06102 0.148013 4.42205C-0.213987 3.39205 0.111013 2.28505 0.851013 1.54505L1.88401 0.511051Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_85_4008">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots-vertical" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M24.75 8.00076C24.75 7.58655 24.4142 7.25076 24 7.25076C23.5858 7.25076 23.25 7.58655 23.25 8.00076V24.3267L30.9883 31.5491C31.2911 31.8317 31.7657 31.8153 32.0483 31.5125C32.3309 31.2097 32.3146 30.7351 32.0117 30.4525L24.75 23.6748V8.00076Z" fill="currentColor"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 45.4998C35.8741 45.4998 45.5 35.8739 45.5 23.9998C45.5 12.1257 35.8741 2.49979 24 2.49979C12.1259 2.49979 2.5 12.1257 2.5 23.9998C2.5 35.8739 12.1259 45.4998 24 45.4998ZM24 46.9998C36.7025 46.9998 47 36.7023 47 23.9998C47 11.2972 36.7025 0.999786 24 0.999786C11.2975 0.999786 1 11.2972 1 23.9998C1 36.7023 11.2975 46.9998 24 46.9998Z" fill="currentColor"/>
|
|
4
|
-
</svg>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12 32.75C12 32.3358 12.3358 32 12.75 32H35.25C35.6642 32 36 32.3358 36 32.75C36 33.1642 35.6642 33.5 35.25 33.5H12.75C12.3358 33.5 12 33.1642 12 32.75Z" fill="currentColor"/>
|
|
3
|
-
<path d="M12 36.75C12 36.3358 12.3358 36 12.75 36H35.25C35.6642 36 36 36.3358 36 36.75C36 37.1642 35.6642 37.5 35.25 37.5H12.75C12.3358 37.5 12 37.1642 12 36.75Z" fill="currentColor"/>
|
|
4
|
-
<path d="M12 40.75C12 40.3358 12.3358 40 12.75 40H35.25C35.6642 40 36 40.3358 36 40.75C36 41.1642 35.6642 41.5 35.25 41.5H12.75C12.3358 41.5 12 41.1642 12 40.75Z" fill="currentColor"/>
|
|
5
|
-
<path d="M24 7.75C24.4142 7.75 24.75 8.08579 24.75 8.5V15H30.25C30.6642 15 31 15.3358 31 15.75C31 16.1642 30.6642 16.5 30.25 16.5H24.75V27C24.75 27.4142 24.4142 27.75 24 27.75C23.5858 27.75 23.25 27.4142 23.25 27V16.5H17.75C17.3358 16.5 17 16.1642 17 15.75C17 15.3358 17.3358 15 17.75 15H23.25V8.5C23.25 8.08579 23.5858 7.75 24 7.75Z" fill="currentColor"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0C13.5066 0 5 8.50659 5 19V46C5 47.1046 5.89543 48 7 48H41C42.1046 48 43 47.1046 43 46V19C43 8.50659 34.4934 0 24 0ZM41.5 19C41.5 9.33502 33.665 1.5 24 1.5C14.335 1.5 6.5 9.33502 6.5 19V46C6.5 46.2761 6.72386 46.5 7 46.5H41C41.2761 46.5 41.5 46.2761 41.5 46V19Z" fill="currentColor"/>
|
|
7
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="11px" height="13px" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<g transform="matrix(1 0 0 1 -806 -8 )">
|
|
4
|
-
<path d="M 3.8076923076923075 0.8666666666666667 C 3.8076923076923075 0.8666666666666667 0.8461538461538463 0.8666666666666667 0.8461538461538463 0.8666666666666667 C 0.6217398849817423 0.8666666666666668 0.4065173073456838 0.9579758912324905 0.24783268341651332 1.1205074151357015 C 0.08914805948734283 1.2830389390389125 0 1.5034790337085724 0 1.7333333333333334 C 0 1.7333333333333334 0 2.6 0 2.6 C 0 2.829854299624761 0.08914805948734283 3.0502943942944207 0.24783268341651332 3.2128259181976317 C 0.4065173073456838 3.375357442100843 0.6217398849817423 3.466666666666667 0.8461538461538463 3.466666666666667 C 0.8461538461538463 3.466666666666667 1.2692307692307694 3.466666666666667 1.2692307692307694 3.466666666666667 C 1.2692307692307694 3.466666666666667 1.2692307692307694 11.266666666666667 1.2692307692307694 11.266666666666667 C 1.2692307692307696 11.726375265916188 1.447526888205455 12.167255041996638 1.764896136063796 12.49231808980306 C 2.082265383922137 12.817381137609482 2.5127105391942535 13 2.9615384615384612 13 C 2.9615384615384612 13 8.038461538461538 13 8.038461538461538 13 C 8.487289460805746 13 8.917734212600267 12.817381137609482 9.235103460458609 12.49231808980306 C 9.55247270831695 12.167255041996638 9.73076923076923 11.726375265916188 9.73076923076923 11.266666666666667 C 9.73076923076923 11.266666666666667 9.73076923076923 3.466666666666667 9.73076923076923 3.466666666666667 C 9.73076923076923 3.466666666666667 10.153846153846155 3.466666666666667 10.153846153846155 3.466666666666667 C 10.378260115018259 3.466666666666667 10.593482490915518 3.375357442100843 10.75216711484469 3.2128259181976317 C 10.910851738773859 3.0502943942944207 11 2.829854299624761 11 2.6 C 11 2.6 11 1.7333333333333334 11 1.7333333333333334 C 11 1.5034790337085724 10.910851738773859 1.2830389390389125 10.75216711484469 1.1205074151357015 C 10.593482490915518 0.9579758912324905 10.378260115018259 0.8666666666666668 10.153846153846155 0.8666666666666667 C 10.153846153846155 0.8666666666666667 7.1923076923076925 0.8666666666666667 7.1923076923076925 0.8666666666666667 C 7.1923076923076925 0.6368123670419057 7.103159431081552 0.41637232402960456 6.944474807152381 0.25384080012639365 C 6.785790183223211 0.09130927622318268 6.57056780732595 0 6.346153846153846 0 C 6.346153846153846 0 4.653846153846154 0 4.653846153846154 0 C 4.42943219267405 0 4.214209816776789 0.09130927622318268 4.055525192847619 0.25384080012639365 C 3.8968405689184484 0.41637232402960456 3.8076923076923075 0.6368123670419057 3.8076923076923075 0.8666666666666667 Z M 3.0854549041161174 4.460253810882569 C 3.164797216080702 4.378988048930963 3.272408404029333 4.333333333333333 3.384615384615385 4.333333333333333 C 3.496822365201437 4.333333333333333 3.604433553150067 4.378988048930963 3.6837758651146526 4.460253810882569 C 3.763118177079237 4.541519572834174 3.8076923076923075 4.651739516854286 3.8076923076923075 4.766666666666667 C 3.8076923076923075 4.766666666666667 3.8076923076923075 10.833333333333334 3.8076923076923075 10.833333333333334 C 3.8076923076923075 10.948260483145715 3.763118177079237 11.058480840424696 3.6837758651146526 11.139746602376302 C 3.604433553150067 11.221012364327906 3.496822365201437 11.266666666666667 3.384615384615385 11.266666666666667 C 3.272408404029333 11.266666666666667 3.164797216080702 11.221012364327906 3.0854549041161174 11.139746602376302 C 3.0061125921515317 11.058480840424696 2.9615384615384612 10.948260483145715 2.9615384615384612 10.833333333333334 C 2.9615384615384612 10.833333333333334 2.9615384615384612 4.766666666666667 2.9615384615384612 4.766666666666667 C 2.9615384615384612 4.651739516854286 3.0061125921515317 4.541519572834174 3.0854549041161174 4.460253810882569 Z M 5.200839519500732 4.460253810882569 C 5.280181831465318 4.378988048930963 5.387793019413948 4.333333333333333 5.5 4.333333333333333 C 5.612206980586052 4.333333333333333 5.719818572012278 4.378988048930963 5.799160883976864 4.460253810882569 C 5.878503195941448 4.541519572834174 5.9230769230769225 4.651739516854286 5.9230769230769225 4.766666666666667 C 5.9230769230769225 4.766666666666667 5.9230769230769225 10.833333333333334 5.9230769230769225 10.833333333333334 C 5.9230769230769225 10.948260483145715 5.878503195941448 11.058480840424696 5.799160883976864 11.139746602376302 C 5.719818572012278 11.221012364327906 5.612206980586052 11.266666666666667 5.5 11.266666666666667 C 5.387793019413948 11.266666666666667 5.280181831465318 11.221012364327906 5.200839519500732 11.139746602376302 C 5.121497207536147 11.058480840424696 5.0769230769230775 10.948260483145715 5.0769230769230775 10.833333333333334 C 5.0769230769230775 10.833333333333334 5.0769230769230775 4.766666666666667 5.0769230769230775 4.766666666666667 C 5.0769230769230775 4.651739516854286 5.121497207536147 4.541519572834174 5.200839519500732 4.460253810882569 Z M 7.914545499361479 4.460253810882569 C 7.993887811326063 4.541519572834174 8.038461538461538 4.651739516854286 8.038461538461538 4.766666666666667 C 8.038461538461538 4.766666666666667 8.038461538461538 10.833333333333334 8.038461538461538 10.833333333333334 C 8.038461538461538 10.948260483145715 7.993887811326063 11.058480840424696 7.914545499361479 11.139746602376302 C 7.8352031873968935 11.221012364327906 7.727591595970667 11.266666666666667 7.615384615384615 11.266666666666667 C 7.503177634798563 11.266666666666667 7.395566043372338 11.221012364327906 7.316223731407752 11.139746602376302 C 7.236881419443167 11.058480840424696 7.1923076923076925 10.948260483145715 7.1923076923076925 10.833333333333334 C 7.1923076923076925 10.833333333333334 7.1923076923076925 4.766666666666667 7.1923076923076925 4.766666666666667 C 7.1923076923076925 4.651739516854286 7.236881419443167 4.541519572834174 7.316223731407752 4.460253810882569 C 7.395566043372338 4.378988048930963 7.503177634798563 4.333333333333333 7.615384615384615 4.333333333333333 C 7.727591595970667 4.333333333333333 7.8352031873968935 4.378988048930963 7.914545499361479 4.460253810882569 Z " fill-rule="nonzero" fill="#c62828" stroke="none" transform="matrix(1 0 0 1 806 8 )" />
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
|
@@ -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_3830)">
|
|
3
|
-
<path d="M12.6 0.75H15.054L9.694 6.892L16 15.25H11.063L7.196 10.18L2.771 15.25H0.316L6.049 8.68L0 0.75H5.063L8.558 5.383L12.6 0.75ZM11.74 13.778H13.1L4.323 2.145H2.865L11.74 13.778Z" fill="currentColor"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_85_3830">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</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 d="M0.5 9.90002C0.632608 9.90002 0.759785 9.9527 0.853553 10.0465C0.947322 10.1402 1 10.2674 1 10.4V12.9C1 13.1652 1.10536 13.4196 1.29289 13.6071C1.48043 13.7947 1.73478 13.9 2 13.9H14C14.2652 13.9 14.5196 13.7947 14.7071 13.6071C14.8946 13.4196 15 13.1652 15 12.9V10.4C15 10.2674 15.0527 10.1402 15.1464 10.0465C15.2402 9.9527 15.3674 9.90002 15.5 9.90002C15.6326 9.90002 15.7598 9.9527 15.8536 10.0465C15.9473 10.1402 16 10.2674 16 10.4V12.9C16 13.4305 15.7893 13.9392 15.4142 14.3142C15.0391 14.6893 14.5304 14.9 14 14.9H2C1.46957 14.9 0.960859 14.6893 0.585786 14.3142C0.210714 13.9392 0 13.4305 0 12.9V10.4C0 10.2674 0.0526784 10.1402 0.146447 10.0465C0.240215 9.9527 0.367392 9.90002 0.5 9.90002Z" fill="currentColor"/>
|
|
3
|
-
<path d="M7.64602 1.14604C7.69247 1.09948 7.74764 1.06253 7.80839 1.03733C7.86913 1.01212 7.93425 0.999146 8.00002 0.999146C8.06579 0.999146 8.13091 1.01212 8.19165 1.03733C8.2524 1.06253 8.30758 1.09948 8.35402 1.14604L11.354 4.14604C11.4479 4.23993 11.5007 4.36726 11.5007 4.50004C11.5007 4.63282 11.4479 4.76015 11.354 4.85404C11.2601 4.94793 11.1328 5.00067 11 5.00067C10.8672 5.00067 10.7399 4.94793 10.646 4.85404L8.50002 2.70704V11.5C8.50002 11.6326 8.44734 11.7598 8.35358 11.8536C8.25981 11.9474 8.13263 12 8.00002 12C7.86741 12 7.74024 11.9474 7.64647 11.8536C7.5527 11.7598 7.50002 11.6326 7.50002 11.5V2.70704L5.35402 4.85404C5.30753 4.90053 5.25234 4.9374 5.19161 4.96256C5.13087 4.98772 5.06577 5.00067 5.00002 5.00067C4.93428 5.00067 4.86918 4.98772 4.80844 4.96256C4.7477 4.9374 4.69251 4.90053 4.64602 4.85404C4.59953 4.80755 4.56266 4.75236 4.5375 4.69162C4.51234 4.63088 4.49939 4.56578 4.49939 4.50004C4.49939 4.4343 4.51234 4.3692 4.5375 4.30846C4.56266 4.24772 4.59953 4.19253 4.64602 4.14604L7.64602 1.14604Z" fill="currentColor"/>
|
|
4
|
-
</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_855)">
|
|
3
|
-
<path d="M35.75 1.50003C35.3358 1.50003 35 1.83582 35 2.25003V4.25003C35 4.66424 34.6642 5.00003 34.25 5.00003C33.8358 5.00003 33.5 4.66424 33.5 4.25003V2.25003C33.5 1.00739 34.5074 3.05176e-05 35.75 3.05176e-05H45.75C46.9926 3.05176e-05 48 1.00739 48 2.25003V13.75C48 14.9927 46.9926 16 45.75 16H35.75C34.5074 16 33.5 14.9927 33.5 13.75V11.75C33.5 11.3358 33.8358 11 34.25 11C34.6642 11 35 11.3358 35 11.75V13.75C35 14.1642 35.3358 14.5 35.75 14.5H45.75C46.1642 14.5 46.5 14.1642 46.5 13.75V2.25003C46.5 1.83582 46.1642 1.50003 45.75 1.50003H35.75Z" fill="currentColor"/>
|
|
4
|
-
<path d="M39.2803 2.9697L43.7803 7.4697C44.0732 7.76259 44.0732 8.23747 43.7803 8.53036L39.2803 13.0304C38.9874 13.3233 38.5126 13.3233 38.2197 13.0304C37.9268 12.7375 37.9268 12.2626 38.2197 11.9697L41.4393 8.75003H28.25C27.8358 8.75003 27.5 8.41424 27.5 8.00003C27.5 7.58582 27.8358 7.25003 28.25 7.25003H41.4393L38.2197 4.03036C37.9268 3.73747 37.9268 3.26259 38.2197 2.9697C38.5126 2.67681 38.9874 2.67681 39.2803 2.9697Z" fill="currentColor"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 20.5009C27 25.7476 22.7467 30.0009 17.5 30.0009C12.2533 30.0009 7.99998 25.7476 7.99998 20.5009C7.99998 15.2542 12.2533 11.0009 17.5 11.0009C22.7467 11.0009 27 15.2542 27 20.5009ZM25.5 20.5009C25.5 24.9192 21.9183 28.5009 17.5 28.5009C13.0817 28.5009 9.49998 24.9192 9.49998 20.5009C9.49998 16.0826 13.0817 12.5009 17.5 12.5009C21.9183 12.5009 25.5 16.0826 25.5 20.5009Z" fill="currentColor"/>
|
|
6
|
-
<path d="M32.4505 46.275C32.4832 46.6789 32.8134 47.0009 33.2186 47.0009C33.6422 47.0009 33.9837 46.6502 33.9515 46.2279C33.3016 37.71 26.1842 31.0009 17.4999 31.0009C8.81552 31.0009 1.69816 37.71 1.04825 46.2279C1.01602 46.6502 1.35753 47.0009 1.78112 47.0009C2.18638 47.0009 2.51657 46.6789 2.54924 46.275C3.17294 38.5641 9.62833 32.5009 17.4999 32.5009C25.3714 32.5009 31.8268 38.5641 32.4505 46.275Z" fill="currentColor"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_100_855">
|
|
10
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z"/>
|
|
3
|
-
</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_734)">
|
|
3
|
-
<path d="M11.1193 1.15821C11.4122 1.4511 11.4122 1.92597 11.1193 2.21887L8.82119 4.51696L10.9425 6.63828C11.1378 6.83355 11.1378 7.15013 10.9425 7.34539L7.44357 10.8443C7.24831 11.0396 6.93173 11.0396 6.73646 10.8443L4.61514 8.72301L2.28045 11.0577C1.98756 11.3506 1.51269 11.3506 1.21979 11.0577C0.926899 10.7648 0.926899 10.2899 1.21979 9.99704L10.0586 1.15821C10.3515 0.865314 10.8264 0.865314 11.1193 1.15821Z" fill="currentColor"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.3733 41.3723L36.1242 42.1296C33.9954 42.4843 31.8889 41.7268 30.3629 40.2008L6.34632 16.1842C5.56527 15.4032 5.56527 14.1368 6.34632 13.3558L13.4174 6.28473C14.1984 5.50368 15.4648 5.50368 16.2458 6.28473L40.2624 30.3013C41.7884 31.8273 42.5318 33.948 42.177 36.0767L41.4339 40.3116L46.1714 45.0491L46.525 47.524L40.3733 41.3723ZM15.235 7.39526C15.0398 7.2 14.7232 7.2 14.5279 7.39526L7.45684 14.4663C7.26158 14.6616 7.26158 14.9782 7.45684 15.1734L10.9425 18.6591L13.5942 16.0074C13.8871 15.7146 14.3619 15.7146 14.6548 16.0074C14.9477 16.3003 14.9477 16.7752 14.6548 17.0681L12.0032 19.7198L15.8923 23.6088L18.5439 20.9572C18.8368 20.6643 19.3117 20.6643 19.6046 20.9572C19.8975 21.2501 19.8975 21.725 19.6046 22.0179L16.9529 24.6695L21.428 29.1446L36.8726 29.0328L15.235 7.39526Z" fill="currentColor"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_100_734">
|
|
8
|
-
<rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
|
|
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-x-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="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/>
|
|
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="M2.14601 2.85402C2.09952 2.80753 2.06264 2.75234 2.03748 2.6916C2.01232 2.63087 1.99937 2.56577 1.99937 2.50002C1.99937 2.43428 2.01232 2.36918 2.03748 2.30844C2.06264 2.2477 2.09952 2.19251 2.14601 2.14602C2.19249 2.09953 2.24768 2.06266 2.30842 2.0375C2.36916 2.01234 2.43426 1.99939 2.50001 1.99939C2.56575 1.99939 2.63085 2.01234 2.69159 2.0375C2.75233 2.06266 2.80752 2.09953 2.85401 2.14602L8.00001 7.29302L13.146 2.14602C13.1925 2.09953 13.2477 2.06266 13.3084 2.0375C13.3692 2.01234 13.4343 1.99939 13.5 1.99939C13.5657 1.99939 13.6308 2.01234 13.6916 2.0375C13.7523 2.06266 13.8075 2.09953 13.854 2.14602C13.9005 2.19251 13.9374 2.2477 13.9625 2.30844C13.9877 2.36918 14.0006 2.43428 14.0006 2.50002C14.0006 2.56577 13.9877 2.63087 13.9625 2.6916C13.9374 2.75234 13.9005 2.80753 13.854 2.85402L8.70701 8.00002L13.854 13.146C13.9005 13.1925 13.9374 13.2477 13.9625 13.3084C13.9877 13.3692 14.0006 13.4343 14.0006 13.5C14.0006 13.5658 13.9877 13.6309 13.9625 13.6916C13.9374 13.7523 13.9005 13.8075 13.854 13.854C13.8075 13.9005 13.7523 13.9374 13.6916 13.9625C13.6308 13.9877 13.5657 14.0007 13.5 14.0007C13.4343 14.0007 13.3692 13.9877 13.3084 13.9625C13.2477 13.9374 13.1925 13.9005 13.146 13.854L8.00001 8.70702L2.85401 13.854C2.80752 13.9005 2.75233 13.9374 2.69159 13.9625C2.63085 13.9877 2.56575 14.0007 2.50001 14.0007C2.43426 14.0007 2.36916 13.9877 2.30842 13.9625C2.24768 13.9374 2.19249 13.9005 2.14601 13.854C2.09952 13.8075 2.06264 13.7523 2.03748 13.6916C2.01232 13.6309 1.99937 13.5658 1.99937 13.5C1.99937 13.4343 2.01232 13.3692 2.03748 13.3084C2.06264 13.2477 2.09952 13.1925 2.14601 13.146L7.29301 8.00002L2.14601 2.85402Z" 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 d="M4.646 4.64604C4.69245 4.59948 4.74762 4.56253 4.80837 4.53733C4.86911 4.51212 4.93423 4.49915 5 4.49915C5.06577 4.49915 5.13089 4.51212 5.19163 4.53733C5.25238 4.56253 5.30756 4.59948 5.354 4.64604L8 7.29304L10.646 4.64604C10.6925 4.59955 10.7477 4.56267 10.8084 4.53752C10.8692 4.51236 10.9343 4.49941 11 4.49941C11.0657 4.49941 11.1308 4.51236 11.1916 4.53752C11.2523 4.56267 11.3075 4.59955 11.354 4.64604C11.4005 4.69253 11.4374 4.74772 11.4625 4.80846C11.4877 4.86919 11.5006 4.9343 11.5006 5.00004C11.5006 5.06578 11.4877 5.13088 11.4625 5.19162C11.4374 5.25236 11.4005 5.30755 11.354 5.35404L8.707 8.00004L11.354 10.646C11.4005 10.6925 11.4374 10.7477 11.4625 10.8085C11.4877 10.8692 11.5006 10.9343 11.5006 11C11.5006 11.0658 11.4877 11.1309 11.4625 11.1916C11.4374 11.2524 11.4005 11.3076 11.354 11.354C11.3075 11.4005 11.2523 11.4374 11.1916 11.4626C11.1308 11.4877 11.0657 11.5007 11 11.5007C10.9343 11.5007 10.8692 11.4877 10.8084 11.4626C10.7477 11.4374 10.6925 11.4005 10.646 11.354L8 8.70704L5.354 11.354C5.30751 11.4005 5.25232 11.4374 5.19158 11.4626C5.13085 11.4877 5.06574 11.5007 5 11.5007C4.93426 11.5007 4.86916 11.4877 4.80842 11.4626C4.74768 11.4374 4.69249 11.4005 4.646 11.354C4.59951 11.3076 4.56264 11.2524 4.53748 11.1916C4.51232 11.1309 4.49937 11.0658 4.49937 11C4.49937 10.9343 4.51232 10.8692 4.53748 10.8085C4.56264 10.7477 4.59951 10.6925 4.646 10.646L7.293 8.00004L4.646 5.35404C4.59944 5.30759 4.56249 5.25242 4.53729 5.19167C4.51208 5.13093 4.49911 5.06581 4.49911 5.00004C4.49911 4.93427 4.51208 4.86915 4.53729 4.80841C4.56249 4.74766 4.59944 4.69248 4.646 4.64604Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
package/assets/logos/v-logo.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="134" height="100" viewBox="0 0 134 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M41.8348 71.3245L53.6129 51.2357L23.5562 0H0L41.8348 71.3245Z" fill="#F7A711"/>
|
|
3
|
-
<path d="M108.899 0L53.5161 94.1382L56.9916 100H75.1737L134 0H108.899Z" fill="#F7A711"/>
|
|
4
|
-
</svg>
|
package/jest.config.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
displayName: 'ui-govcz',
|
|
3
|
-
preset: '../../../jest.preset.js',
|
|
4
|
-
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
|
5
|
-
coverageDirectory: '../../../coverage/src/libs/ui-govcz',
|
|
6
|
-
transform: {
|
|
7
|
-
'^.+\\.(ts|mjs|js|html)$': [
|
|
8
|
-
'jest-preset-angular',
|
|
9
|
-
{
|
|
10
|
-
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
11
|
-
stringifyContentPathRegex: '\\.(html|svg)$',
|
|
12
|
-
},
|
|
13
|
-
],
|
|
14
|
-
},
|
|
15
|
-
transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
|
|
16
|
-
snapshotSerializers: [
|
|
17
|
-
'jest-preset-angular/build/serializers/no-ng-attributes',
|
|
18
|
-
'jest-preset-angular/build/serializers/ng-snapshot',
|
|
19
|
-
'jest-preset-angular/build/serializers/html-comment',
|
|
20
|
-
],
|
|
21
|
-
};
|
package/ng-package.json
DELETED
package/project.json
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ui-govcz",
|
|
3
|
-
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
-
"sourceRoot": "src/libs/ui-govcz/src",
|
|
5
|
-
"prefix": "lib",
|
|
6
|
-
"projectType": "library",
|
|
7
|
-
"tags": [],
|
|
8
|
-
"targets": {
|
|
9
|
-
"build": {
|
|
10
|
-
"executor": "@nx/angular:package",
|
|
11
|
-
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
|
|
12
|
-
"options": {
|
|
13
|
-
"project": "src/libs/ui-govcz/ng-package.json"
|
|
14
|
-
},
|
|
15
|
-
"configurations": {
|
|
16
|
-
"production": {
|
|
17
|
-
"tsConfig": "src/libs/ui-govcz/tsconfig.lib.prod.json"
|
|
18
|
-
},
|
|
19
|
-
"development": {
|
|
20
|
-
"tsConfig": "src/libs/ui-govcz/tsconfig.lib.json"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"dependsOn": [
|
|
24
|
-
"sync-shared",
|
|
25
|
-
{
|
|
26
|
-
"target": "build",
|
|
27
|
-
"projects": ["core", "store", "ui-core"]
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"defaultConfiguration": "production"
|
|
31
|
-
},
|
|
32
|
-
"test": {
|
|
33
|
-
"executor": "@nx/jest:jest",
|
|
34
|
-
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
35
|
-
"options": {
|
|
36
|
-
"jestConfig": "src/libs/ui-govcz/jest.config.ts"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"lint": {
|
|
40
|
-
"executor": "@nx/eslint:lint"
|
|
41
|
-
},
|
|
42
|
-
"sync-shared": {
|
|
43
|
-
"executor": "nx:run-commands",
|
|
44
|
-
"options": {
|
|
45
|
-
"command": "cpx \"src/libs/ui-primeng/src/lib/components/shared-components/**/*.*\" \"src/libs/ui-govcz/src/lib/components/shared-components\" --update"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
package/src/config.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<div class="gov-breadcrums mt-3 mb-3">
|
|
2
|
-
<gov-breadcrumbs accessible-label="gov-breadcrums">
|
|
3
|
-
<ul>
|
|
4
|
-
<li *ngIf="useHomeRoute">
|
|
5
|
-
<gov-icon [name]="icons.house" />
|
|
6
|
-
<a [routerLink]="'/'">Home</a>
|
|
7
|
-
</li>
|
|
8
|
-
@if (items) { @for (item of items; track item; let index = $index) {
|
|
9
|
-
<li>
|
|
10
|
-
@if (index > 0 || useHomeRoute) {
|
|
11
|
-
<gov-icon [name]="icons.chevronRight" />
|
|
12
|
-
}
|
|
13
|
-
@if (item.icon) {
|
|
14
|
-
<gov-icon [name]="item.icon" />
|
|
15
|
-
}
|
|
16
|
-
<a [routerLink]="item.routerLink">
|
|
17
|
-
{{ item.label }}
|
|
18
|
-
</a>
|
|
19
|
-
</li>
|
|
20
|
-
} }
|
|
21
|
-
</ul>
|
|
22
|
-
</gov-breadcrumbs>
|
|
23
|
-
</div>
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
import { BreadcrumbComponent } from './breadcrumb.component';
|
|
3
|
-
|
|
4
|
-
describe('BreadcrumbComponent', () => {
|
|
5
|
-
let component: BreadcrumbComponent;
|
|
6
|
-
let fixture: ComponentFixture<BreadcrumbComponent>;
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [BreadcrumbComponent],
|
|
11
|
-
}).compileComponents();
|
|
12
|
-
|
|
13
|
-
fixture = TestBed.createComponent(BreadcrumbComponent);
|
|
14
|
-
component = fixture.componentInstance;
|
|
15
|
-
fixture.detectChanges();
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
it('should create', () => {
|
|
19
|
-
expect(component).toBeTruthy();
|
|
20
|
-
});
|
|
21
|
-
});
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { Component } from '@angular/core';
|
|
3
|
-
import { RouterModule } from '@angular/router';
|
|
4
|
-
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
-
import {
|
|
6
|
-
BREADCRUMB_COMPONENT_TOKEN,
|
|
7
|
-
BreadcrumbCoreComponent
|
|
8
|
-
} from '@verisoft/ui-core';
|
|
9
|
-
import { Icons } from '../../icons';
|
|
10
|
-
|
|
11
|
-
@Component({
|
|
12
|
-
selector: 'v-breadcrumb',
|
|
13
|
-
standalone: true,
|
|
14
|
-
imports: [
|
|
15
|
-
CommonModule,
|
|
16
|
-
GovDesignSystemModule,
|
|
17
|
-
RouterModule
|
|
18
|
-
],
|
|
19
|
-
templateUrl: './breadcrumb.component.html',
|
|
20
|
-
styleUrl: './breadcrumb.component.scss',
|
|
21
|
-
providers: [
|
|
22
|
-
{
|
|
23
|
-
provide: BREADCRUMB_COMPONENT_TOKEN,
|
|
24
|
-
useExisting: BreadcrumbComponent
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
})
|
|
28
|
-
export class BreadcrumbComponent extends BreadcrumbCoreComponent {
|
|
29
|
-
icons = Icons;
|
|
30
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<div class="g-button">
|
|
2
|
-
<a
|
|
3
|
-
[routerLink]="routerLink ? routerLink : undefined"
|
|
4
|
-
[queryParams]="queryParams ? queryParams : undefined"
|
|
5
|
-
>
|
|
6
|
-
<gov-button
|
|
7
|
-
[type]="outlined === true ? 'outlined' : type"
|
|
8
|
-
[color]="severity | govColor"
|
|
9
|
-
[disabled]="disabled"
|
|
10
|
-
[size]="size | govSize"
|
|
11
|
-
[name]="name"
|
|
12
|
-
[expanded]="expanded"
|
|
13
|
-
(gov-click)="handleClick($event)"
|
|
14
|
-
(click)="handleClick($event)"
|
|
15
|
-
>
|
|
16
|
-
@if (icon) {
|
|
17
|
-
<gov-icon
|
|
18
|
-
[name]="icon"
|
|
19
|
-
[slot]="iconPos === 'left' ? 'icon-start' : 'icon-end'"
|
|
20
|
-
/>
|
|
21
|
-
} @if (label) {
|
|
22
|
-
{{ label | translate }}
|
|
23
|
-
}
|
|
24
|
-
</gov-button>
|
|
25
|
-
</a>
|
|
26
|
-
</div>
|
|
File without changes
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ChangeDetectionStrategy,
|
|
3
|
-
Component,
|
|
4
|
-
EventEmitter,
|
|
5
|
-
Input,
|
|
6
|
-
Output,
|
|
7
|
-
} from "@angular/core";
|
|
8
|
-
import { Params, RouterModule } from "@angular/router";
|
|
9
|
-
import { GovDesignSystemModule } from "@gov-design-system-ce/angular";
|
|
10
|
-
import { ButtonEvent, GovButtonCustomEvent } from "@gov-design-system-ce/components";
|
|
11
|
-
import { TranslateModule } from "@ngx-translate/core";
|
|
12
|
-
import {
|
|
13
|
-
BUTTON_COMPONENT_TOKEN,
|
|
14
|
-
ButtonCore,
|
|
15
|
-
IconPositionType,
|
|
16
|
-
IconPosition,
|
|
17
|
-
FieldSize,
|
|
18
|
-
FieldSizeType,
|
|
19
|
-
ControlSeverity,
|
|
20
|
-
ControlSeverityType,
|
|
21
|
-
GovButtonType,
|
|
22
|
-
GovButtonTypeType,
|
|
23
|
-
} from "@verisoft/ui-core";
|
|
24
|
-
import { GovColorPipe, GovSizePipe } from "../../pipes";
|
|
25
|
-
|
|
26
|
-
@Component({
|
|
27
|
-
selector: "v-button",
|
|
28
|
-
standalone: true,
|
|
29
|
-
styleUrl: "./button.component.scss",
|
|
30
|
-
templateUrl: './button.component.html',
|
|
31
|
-
imports: [
|
|
32
|
-
GovDesignSystemModule, RouterModule, GovSizePipe, GovColorPipe, TranslateModule
|
|
33
|
-
],
|
|
34
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
35
|
-
providers: [
|
|
36
|
-
{
|
|
37
|
-
provide: BUTTON_COMPONENT_TOKEN,
|
|
38
|
-
useExisting: ButtonComponent,
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
})
|
|
42
|
-
export class ButtonComponent
|
|
43
|
-
implements ButtonCore
|
|
44
|
-
{
|
|
45
|
-
@Input() label: string | undefined;
|
|
46
|
-
@Input() icon: string | undefined;
|
|
47
|
-
@Input() badge!: string;
|
|
48
|
-
@Input() iconPos: IconPositionType = IconPosition.left;
|
|
49
|
-
@Input() disabled = false;
|
|
50
|
-
@Input() rounded!: boolean;
|
|
51
|
-
@Input() outlined!: boolean;
|
|
52
|
-
@Input() raised!: boolean;
|
|
53
|
-
@Input() routerLink!: any[];
|
|
54
|
-
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
55
|
-
@Input() queryParams!: Params;
|
|
56
|
-
@Input() severity: ControlSeverityType | undefined = ControlSeverity.primary;
|
|
57
|
-
@Input() type: GovButtonTypeType = GovButtonType.solid;
|
|
58
|
-
@Input() expanded = false;
|
|
59
|
-
@Input() name!: string;
|
|
60
|
-
|
|
61
|
-
// eslint-disable-next-line @angular-eslint/no-output-native
|
|
62
|
-
@Output() click = new EventEmitter<any>();
|
|
63
|
-
|
|
64
|
-
handleClick(event: GovButtonCustomEvent<ButtonEvent> | MouseEvent) {
|
|
65
|
-
if (this.disabled) {
|
|
66
|
-
event.stopPropagation();
|
|
67
|
-
return;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
this.click.emit(event);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './button.component';
|