@naniteninja/dashboard-components-lib 1.0.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/lib/components/auto-delegation/animations.mjs +20 -0
- package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
- package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
- package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
- package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
- package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
- package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
- package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
- package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
- package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
- package/esm2022/lib/components/chat/chat.component.mjs +307 -0
- package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
- package/esm2022/lib/components/chat/chat.service.mjs +63 -0
- package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
- package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
- package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
- package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
- package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
- package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
- package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
- package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
- package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
- package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
- package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
- package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
- package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
- package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
- package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
- package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
- package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
- package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
- package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
- package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
- package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
- package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
- package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
- package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
- package/esm2022/lib/enums/direction.enum.mjs +6 -0
- package/esm2022/lib/enums/form-field-type.mjs +30 -0
- package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
- package/esm2022/lib/enums/status-types.mjs +8 -0
- package/esm2022/lib/model/select-option-template.mjs +2 -0
- package/esm2022/lib/operations/operations.mjs +19 -0
- package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
- package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
- package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
- package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
- package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
- package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
- package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
- package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
- package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
- package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
- package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
- package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
- package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
- package/esm2022/lib/shared/shared.module.mjs +23 -0
- package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
- package/esm2022/public-api.mjs +122 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auto-delegation/animations.d.ts +1 -0
- package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
- package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
- package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
- package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
- package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
- package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
- package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
- package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
- package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
- package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
- package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
- package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
- package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
- package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
- package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
- package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
- package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
- package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
- package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
- package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
- package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
- package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
- package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
- package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
- package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
- package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
- package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
- package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
- package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
- package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
- package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
- package/lib/components/chat/chat.component.d.ts +70 -0
- package/lib/components/chat/chat.component.module.d.ts +22 -0
- package/lib/components/chat/chat.service.d.ts +15 -0
- package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
- package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
- package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
- package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
- package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
- package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
- package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
- package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
- package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
- package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
- package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
- package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
- package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
- package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
- package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
- package/lib/components/client-home/client-home.component.d.ts +44 -0
- package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
- package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
- package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
- package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
- package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
- package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
- package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
- package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
- package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
- package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
- package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
- package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
- package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
- package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
- package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
- package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
- package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
- package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
- package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
- package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
- package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
- package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
- package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
- package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
- package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
- package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
- package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
- package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
- package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
- package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
- package/lib/components/profile-card/profile-card.component.d.ts +11 -0
- package/lib/components/profile-card/profile-card.module.d.ts +9 -0
- package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
- package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
- package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
- package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
- package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
- package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
- package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
- package/lib/enums/direction.enum.d.ts +4 -0
- package/lib/enums/form-field-type.d.ts +28 -0
- package/lib/enums/local-storage-keys.enum.d.ts +3 -0
- package/lib/enums/status-types.d.ts +6 -0
- package/lib/model/select-option-template.d.ts +5 -0
- package/lib/operations/operations.d.ts +19 -0
- package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
- package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
- package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
- package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
- package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
- package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
- package/lib/pipes/initials/initials.pipe.d.ts +7 -0
- package/lib/pipes/round/round.pipe.d.ts +7 -0
- package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
- package/lib/services/abstract-cache.service.d.ts +9 -0
- package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
- package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
- package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
- package/package.json +69 -0
- package/public-api.d.ts +121 -0
- package/src/assets/auto-delegation-modal/cross.svg +17 -0
- package/src/assets/auto-delegation-modal/menu.svg +3 -0
- package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
- package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
- package/src/assets/circle-progress/circle-progress-1.svg +159 -0
- package/src/assets/circle-progress/circle-progress-2.svg +155 -0
- package/src/assets/circle-progress/circle-progress-3.svg +25 -0
- package/src/assets/circle-progress/circle-progress.svg +159 -0
- package/src/assets/client-match-overview/background-eclipse.svg +13 -0
- package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
- package/src/assets/grid/icons/filter-button.svg +47 -0
- package/src/assets/grid/images/chips-background-shadow.svg +34 -0
- package/src/assets/icons/back-v2.svg +14 -0
- package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
- package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
- package/src/assets/icons/checkmark-button.svg +72 -0
- package/src/assets/icons/checkmark.svg +7 -0
- package/src/assets/icons/close-icon.svg +3 -0
- package/src/assets/icons/compose-matcher/notes.svg +4 -0
- package/src/assets/icons/compose-matcher/profile.svg +4 -0
- package/src/assets/icons/compose-matcher/suggest.svg +3 -0
- package/src/assets/icons/compose-matcher/visual.svg +3 -0
- package/src/assets/icons/default-profile.svg +23 -0
- package/src/assets/icons/defualt.svg +5 -0
- package/src/assets/icons/first-page.svg +7 -0
- package/src/assets/icons/incrementer/minus.svg +3 -0
- package/src/assets/icons/incrementer/plus.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/last-page.svg +7 -0
- package/src/assets/icons/minus.svg +3 -0
- package/src/assets/icons/next-page.svg +6 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/popup-defualt.svg +34 -0
- package/src/assets/icons/prev-page.svg +6 -0
- package/src/assets/icons/send-icon.svg +4 -0
- package/src/assets/icons/shake.svg +74 -0
- package/src/assets/icons/thumbs-up.svg +28 -0
- package/src/assets/nsfw/blazeface.bundle.js +2 -0
- package/src/assets/nsfw/model/group1-shard1of1 +0 -0
- package/src/assets/nsfw/model/model.json +4085 -0
- package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
- package/src/assets/nsfw/tf.bundle.js +2 -0
- package/src/assets/scheduler/accept.svg +3 -0
- package/src/assets/scheduler/accept_active.svg +3 -0
- package/src/assets/scheduler/arrow.svg +13 -0
- package/src/assets/scheduler/cancel.svg +3 -0
- package/src/assets/scheduler/cancel_active.svg +3 -0
- package/src/assets/scheduler/heart.svg +18 -0
- package/src/assets/trait-visual/force-directed-graph.png +0 -0
- package/src/lib/shared-styles/common/_colors.scss +30 -0
- package/src/lib/shared-styles/common/animations.scss +48 -0
- package/src/lib/shared-styles/common/base-input-field.scss +132 -0
- package/src/lib/shared-styles/common/buttons.scss +152 -0
- package/src/lib/shared-styles/common/cards.scss +163 -0
- package/src/lib/shared-styles/common/client-dash.scss +5 -0
- package/src/lib/shared-styles/common/date-picker.scss +179 -0
- package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
- package/src/lib/shared-styles/common/feedback.scss +157 -0
- package/src/lib/shared-styles/common/fonts.scss +3 -0
- package/src/lib/shared-styles/common/information-card.scss +56 -0
- package/src/lib/shared-styles/common/input.scss +110 -0
- package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
- package/src/lib/shared-styles/common/lists.scss +91 -0
- package/src/lib/shared-styles/common/login.scss +32 -0
- package/src/lib/shared-styles/common/maps.scss +10 -0
- package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
- package/src/lib/shared-styles/common/modal_styles.scss +32 -0
- package/src/lib/shared-styles/common/notifications-list.scss +9 -0
- package/src/lib/shared-styles/common/overrides.scss +6 -0
- package/src/lib/shared-styles/common/pulse.scss +26 -0
- package/src/lib/shared-styles/common/swiper.scss +5 -0
- package/src/lib/shared-styles/common/tab-menu.scss +74 -0
- package/src/lib/shared-styles/common/theme.scss +55 -0
- package/src/lib/shared-styles/common/typography.scss +121 -0
- package/src/lib/shared-styles/common/user-menu.scss +129 -0
- package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
- package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
- package/src/lib/shared-styles/images/compress.png +0 -0
- package/src/lib/shared-styles/images/expand.png +0 -0
- package/src/lib/shared-styles/styles.scss +25 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="100%" height="100%" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
class="p-icon p-paginator-icon" aria-hidden="true">
|
|
3
|
+
<path
|
|
4
|
+
d="M8.75 11.185C8.65146 11.1854 8.55381 11.1662 8.4628 11.1284C8.37179 11.0906 8.28924 11.0351 8.22 10.965L4.72 7.46496C4.57955 7.32433 4.50066 7.13371 4.50066 6.93496C4.50066 6.73621 4.57955 6.54558 4.72 6.40496L8.22 2.93496C8.36095 2.84357 8.52851 2.80215 8.69582 2.81733C8.86312 2.83252 9.02048 2.90344 9.14268 3.01872C9.26487 3.134 9.34483 3.28696 9.36973 3.4531C9.39463 3.61924 9.36303 3.78892 9.28 3.93496L6.28 6.93496L9.28 9.93496C9.42045 10.0756 9.49934 10.2662 9.49934 10.465C9.49934 10.6637 9.42045 10.8543 9.28 10.995C9.13526 11.1257 8.9448 11.1939 8.75 11.185Z"
|
|
5
|
+
fill="white"></path>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2114 13.0014L10.7876 14.2445C10.3161 15.5917 8.42989 15.5917 8.02564 14.1771L6.94782 10.2026C6.74577 9.32689 6.00475 8.65325 5.12901 8.3838L1.15452 7.30598C-0.260127 6.90173 -0.260127 5.01556 1.08716 4.54402L12.9433 0.502157C14.0884 0.0979718 15.2336 1.24316 14.8295 2.38836L13.3715 6.66494C12.6835 5.94207 11.7121 5.4915 10.6354 5.4915C8.5495 5.4915 6.85858 7.18242 6.85858 9.26827C6.85858 11.3541 8.5495 13.045 10.6354 13.045C10.8312 13.045 11.0236 13.0301 11.2114 13.0014Z" fill="#FE558A"/>
|
|
3
|
+
<path d="M8.00229 8.1344L8.0023 8.13437C8.15325 7.78376 8.36011 7.47687 8.62286 7.21413C8.88537 6.95162 9.19213 6.74488 9.54274 6.59393C9.89428 6.44258 10.2712 6.36707 10.6729 6.36707C11.0886 6.36707 11.4849 6.45306 11.8613 6.62498C12.199 6.77901 12.498 6.98778 12.7578 7.25111V6.70462C12.7578 6.64151 12.7797 6.58623 12.8237 6.54222C12.8678 6.49815 12.9232 6.47639 12.9864 6.47668M8.00229 8.1344L12.5003 7.64914C12.4845 7.63224 12.4685 7.61557 12.4524 7.59914M8.00229 8.1344C7.85095 8.48639 7.77544 8.86327 7.77544 9.26451C7.77544 9.66598 7.85095 10.0426 8.0023 10.3939M8.00229 8.1344L10.6725 12.1612C10.2709 12.1612 9.89418 12.0857 9.54274 11.9344C9.19213 11.7834 8.88537 11.5767 8.62286 11.3142C8.36011 11.0514 8.15325 10.7445 8.0023 10.3939M12.9864 6.47668L12.9861 6.52668V6.47668C12.9862 6.47668 12.9863 6.47668 12.9864 6.47668ZM12.9864 6.47668C13.0493 6.47674 13.1044 6.49843 13.1482 6.54222L13.1483 6.54234C13.192 6.58638 13.2137 6.64162 13.2137 6.70462V7.71747C13.2137 7.81144 13.1814 7.89258 13.1165 7.95746L13.0812 7.92211L13.1166 7.95739C13.0517 8.02254 12.9706 8.05503 12.8765 8.05503H11.8633C11.8004 8.05503 11.7452 8.0331 11.7013 7.98914C11.6573 7.94513 11.6354 7.88985 11.6354 7.82673C11.6354 7.76361 11.6573 7.70838 11.7014 7.66456C11.7454 7.62088 11.8005 7.59914 11.8633 7.59914H12.4524M12.4524 7.59914H12.5219C12.5375 7.61559 12.553 7.63225 12.5683 7.64914L8.23132 9.26415C8.23156 8.58345 8.46822 8.00759 8.94198 7.53359C9.41574 7.05961 9.9917 6.82295 10.6729 6.82295C11.0338 6.82295 11.3723 6.89917 11.689 7.05147L11.689 7.05149C11.9733 7.18801 12.2277 7.37048 12.4524 7.59914ZM13.1819 9.67876L13.1516 9.63893C13.1034 9.67554 13.0708 9.7267 13.0521 9.78897L13.052 9.78894L13.0513 9.79224C12.9252 10.3472 12.6411 10.8042 12.198 11.1649C11.7552 11.5254 11.2474 11.7053 10.6725 11.7053H10.6725C9.99182 11.7056 9.41597 11.4691 8.94197 10.9951C8.46798 10.5211 8.23133 9.9451 8.23132 9.26417L10.6725 11.7553C11.2588 11.7553 11.7778 11.5715 12.2295 11.2037C12.6813 10.836 12.9714 10.3692 13.1 9.80332C13.1161 9.74946 13.1434 9.70794 13.1819 9.67876ZM13.1819 9.67876L13.1514 9.63912C13.2008 9.60114 13.2589 9.58744 13.3218 9.59649M13.1819 9.67876C13.2198 9.64957 13.2642 9.63866 13.315 9.64602M13.3218 9.59649C13.3219 9.5965 13.322 9.59652 13.3221 9.59653L13.315 9.64602M13.3218 9.59649C13.3217 9.59647 13.3216 9.59646 13.3215 9.59645L13.315 9.64602M13.3218 9.59649C13.39 9.60558 13.4437 9.63989 13.477 9.69904C13.5089 9.75549 13.5152 9.8172 13.4978 9.88091M13.315 9.64602C13.3688 9.65313 13.4083 9.67899 13.4335 9.7236C13.4586 9.7682 13.4638 9.81672 13.4491 9.86916M13.4978 9.88091C13.4979 9.88036 13.498 9.87982 13.4981 9.87928L13.4491 9.86916M13.4978 9.88091C13.4976 9.88149 13.4974 9.88208 13.4973 9.88266L13.4491 9.86916M13.4978 9.88091C13.3598 10.5469 13.028 11.0941 12.5034 11.5208L12.5034 11.5208C11.9783 11.9477 11.3674 12.1612 10.6729 12.1612L13.4491 9.86916M10.835 7.50068C10.8788 7.54451 10.9005 7.59969 10.9005 7.66267V9.16906L11.9185 10.2578C11.9517 10.291 11.9695 10.3319 11.9719 10.3806C11.974 10.4287 11.9562 10.4718 11.9185 10.5097C11.8805 10.5477 11.8384 10.5667 11.7921 10.5667C11.7461 10.5667 11.7042 10.5477 11.6665 10.5097L11.6312 10.5451L11.6311 10.5451C11.6311 10.545 11.6311 10.545 11.631 10.545L10.5458 9.45979C10.5458 9.45976 10.5458 9.45972 10.5457 9.45969C10.5107 9.42489 10.4842 9.3867 10.4679 9.34491C10.4524 9.30502 10.4446 9.26365 10.4446 9.22109V7.66267C10.4446 7.59955 10.4665 7.54431 10.5106 7.50049C10.5546 7.45683 10.6097 7.43502 10.6726 7.43472L10.6729 7.43472C10.736 7.43472 10.7912 7.45659 10.835 7.50068ZM10.835 7.50068C10.835 7.5007 10.835 7.50072 10.8351 7.50074L10.7996 7.53597L10.8349 7.50062C10.8349 7.50064 10.835 7.50066 10.835 7.50068ZM8.0023 10.3939L8.04822 10.3742L8.0023 10.3939C8.0023 10.3939 8.0023 10.3939 8.0023 10.3939ZM12.8078 7.37654V7.30296L12.7578 7.3229C12.7747 7.34054 12.7913 7.35842 12.8078 7.37654Z" fill="#FE558A" stroke="#FE558B" stroke-width="0.1"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<svg width="71" height="93" viewBox="0 0 71 93" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_65_606)">
|
|
3
|
+
<path d="M22.1006 34.8398L15.7143 30.2615C14.9203 29.6853 13.9224 29.4623 12.9462 29.6386C11.8653 29.8217 10.9229 30.5219 10.4399 31.5042C9.97142 32.4612 10.1704 33.6018 10.9222 34.3385L14.8062 37.4553C15.8169 38.4424 16.7758 39.3155 18.0355 39.9587L22.6594 42.8133L22.1006 34.8398Z" fill="#FDC7A9"/>
|
|
4
|
+
<path d="M17.5235 39.0076C17.263 37.4783 16.708 35.964 16.5523 34.428C16.4812 33.7648 16.3902 33.1069 16.2992 32.449C16.2309 31.9556 16.1282 31.4928 16.125 31.0033C16.1328 30.8732 16.126 30.7684 16.1445 30.6782L16.9744 31.3087C17.4608 32.0099 17.8399 32.8677 18.0225 33.629C18.2759 34.7337 18.7786 35.8143 18.853 36.967C18.923 37.865 19.0517 38.9819 18.8564 39.8444C18.8234 39.9598 18.785 40.0554 18.7467 40.1509L18.8106 40.3897L18.6593 40.3023L17.9385 39.9198L17.7115 39.7887C17.5971 39.5209 17.5623 39.2317 17.5235 39.0076Z" fill="#E8AB89"/>
|
|
5
|
+
<path d="M22.7058 42.9067L22.1548 34.8033L15.7432 30.2103C14.9293 29.6395 13.9062 29.402 12.9301 29.5782C12.8306 29.6049 12.7258 29.6117 12.6065 29.6436C11.6317 29.9048 10.8286 30.5677 10.3694 31.4797C9.88633 32.4619 10.0907 33.6224 10.873 34.3936L14.757 37.5104C15.7677 38.4975 16.7266 39.3706 17.9863 40.0138L22.7058 42.9067ZM22.0408 34.8551L22.5874 42.7039L18.0591 39.8877C16.7994 39.2445 15.8657 38.3859 14.855 37.3988L10.971 34.282C10.2246 33.5652 10.0309 32.4445 10.5047 31.5074C10.9348 30.6459 11.718 29.9883 12.653 29.7378C12.7525 29.7111 12.8519 29.6845 12.9567 29.6777C13.913 29.5068 14.891 29.7351 15.6796 30.2913L22.0408 34.8551Z" fill="#C09078"/>
|
|
6
|
+
<path d="M19.4752 68.4825L20.2614 69.1887L24.9984 73.4201C25.5256 73.8758 26.0528 74.3316 26.6091 74.7368C26.6091 74.7368 32.7473 80.2985 34.9381 81.9502C36.173 82.8985 37.7411 84.0561 38.2258 85.5466C38.2684 85.7057 38.311 85.8649 38.3537 86.024C38.3643 86.0638 38.375 86.1036 38.3857 86.1434C38.4176 86.2627 38.4496 86.3821 38.4816 86.5014C38.4923 86.5412 38.4976 86.5611 38.5083 86.6009C38.5349 86.7004 38.5669 86.8197 38.5935 86.9192C38.6042 86.959 38.6149 86.9987 38.6255 87.0385C38.6308 87.0584 38.6415 87.0982 38.6468 87.1181C38.6682 87.1977 38.6895 87.2772 38.7108 87.3568C38.7321 87.4364 38.7534 87.5159 38.7801 87.6154C38.7908 87.6552 38.8014 87.695 38.8174 87.7547C38.8227 87.7745 38.8227 87.7746 38.8281 87.7944C38.8441 87.8541 38.86 87.9138 38.876 87.9735C38.956 88.2719 39.0413 88.5901 39.1372 88.9482C39.1639 89.0477 39.1905 89.1471 39.2225 89.2665C39.2438 89.3461 39.2598 89.4057 39.2811 89.4853L39.2865 89.5052C39.441 90.0821 39.6063 90.6987 39.7967 91.33C40.0153 92.1456 40.259 92.9757 40.4776 93.7913C40.7707 94.8854 41.0586 95.9596 41.3197 96.9343C42.5084 101.37 43.5402 112.223 43.5402 112.223L45.8214 111.825L68.8767 107.716L59.6663 75.7294C59.0455 73.5717 58.8081 71.3327 58.9354 69.1026L59.685 56.9408C59.8059 54.9256 59.9621 53.5192 59.3005 51.607C58.5856 49.496 57.6202 46.4499 57.4681 42.4611C57.4336 41.2977 56.8605 40.1933 56.383 39.1273C54.9377 36.3591 53.7521 34.4808 53.164 31.888C52.6704 30.7623 51.3923 30.2093 50.2346 30.5835C49.1565 30.9363 48.3417 31.7942 48.0352 32.8784C47.3377 35.368 47.3117 37.9761 47.9581 40.468L49.6278 46.7792L19.4752 68.4825Z" fill="#FDC7A9"/>
|
|
7
|
+
<path d="M68.981 107.709L59.7547 75.6632C59.1339 73.5056 58.8819 71.2918 59.0291 69.0563L59.7495 56.945C59.752 56.7951 59.7598 56.6651 59.7822 56.5098C59.8914 54.6896 59.984 53.3642 59.3796 51.586C58.7912 49.8674 57.7182 46.6584 57.5526 42.4599C57.5049 41.4067 57.0686 40.4149 56.643 39.4629C56.5911 39.3489 56.5392 39.2349 56.482 39.1009C56.2134 38.5759 55.9501 38.0708 55.6975 37.6055C54.6192 35.5705 53.7431 33.9716 53.2683 31.8815C52.7801 30.7757 51.5815 30.2014 50.4079 30.5159C50.3681 30.5265 50.3084 30.5425 50.2686 30.5532C49.1905 30.906 48.3413 31.7945 48.0348 32.8787C47.3373 35.3682 47.3166 37.9962 47.9683 40.508L49.6328 46.7994L19.4098 68.4789L24.9887 73.4655C25.5159 73.9212 26.063 74.3716 26.6048 74.8021C26.6606 74.8511 32.7682 80.3784 34.9338 82.0154L34.9644 82.0499C36.1939 82.9784 37.7222 84.1466 38.1962 85.5973L38.3241 86.0747C38.3348 86.1145 38.3455 86.1543 38.3561 86.1941L38.5693 86.9898C38.58 87.0296 38.5906 87.0694 38.6013 87.1091C38.6066 87.129 38.6173 87.1688 38.6226 87.1887C38.644 87.2683 38.6653 87.3479 38.6866 87.4274C38.7079 87.507 38.7292 87.5866 38.7506 87.6661L38.7559 87.686C38.7665 87.7258 38.7772 87.7656 38.7932 87.8253C38.7985 87.8452 38.8039 87.8651 38.8039 87.8651L38.8518 88.0441C38.9318 88.3425 39.0171 88.6608 39.113 89.0188L39.1183 89.0387C39.145 89.1382 39.1716 89.2376 39.1983 89.3371L39.2569 89.5559C39.4115 90.1328 39.5767 90.7495 39.7672 91.3807C39.9857 92.1963 40.2295 93.0265 40.4534 93.8619C40.7625 95.0157 41.0503 96.0899 41.2955 97.0049C42.4682 101.381 43.5039 112.169 43.516 112.294L43.532 112.354L68.981 107.709ZM53.149 31.9135C53.6291 34.0235 54.4853 35.6277 55.5888 37.6772C55.8415 38.1426 56.1047 38.6477 56.3733 39.1727C56.4252 39.2867 56.4771 39.4007 56.5343 39.5347C56.9599 40.4866 57.4108 41.4532 57.4532 42.4866C57.6187 46.685 58.6971 49.914 59.2855 51.6325C59.8846 53.3909 59.792 54.7163 59.6774 56.5166C59.6696 56.6466 59.6671 56.7965 59.6448 56.9517L58.9243 69.0631C58.7824 71.3184 59.0398 73.5521 59.6606 75.7097L68.8549 107.636L43.6431 112.132C43.5532 111.239 42.5434 101.105 41.4134 96.8881C41.1683 95.973 40.8858 94.9187 40.5713 93.7451C40.3474 92.9096 40.1235 92.0741 39.8904 91.2837C39.7199 90.6472 39.5546 90.0305 39.3802 89.4589L39.3215 89.2401C39.2949 89.1407 39.2682 89.0412 39.2416 88.9417L39.2363 88.9218C39.1456 88.5837 39.0604 88.2654 38.9751 87.9471L38.9271 87.7681C38.9218 87.7482 38.9218 87.7482 38.9165 87.7283C38.9058 87.6885 38.8951 87.6487 38.8791 87.589L38.8738 87.5691C38.8525 87.4896 38.8312 87.41 38.8098 87.3304C38.7885 87.2509 38.7672 87.1713 38.7459 87.0917C38.7406 87.0718 38.7299 87.032 38.7246 87.0122C38.7139 86.9724 38.7032 86.9326 38.6926 86.8928L38.4794 86.0971C38.4687 86.0573 38.4581 86.0175 38.4474 85.9777L38.3195 85.5003C37.8348 84.0098 36.2866 82.8469 35.0517 81.8986L35.0212 81.8641C32.8556 80.227 26.7479 74.6998 26.6922 74.6508C26.1305 74.2256 25.5888 73.7951 25.0814 73.3341L19.614 68.4455L49.7482 46.8324L49.7375 46.7926L48.0678 40.4814C47.4015 37.9948 47.4276 35.3867 48.1304 32.9171C48.4422 31.8528 49.2371 31.0002 50.2953 30.6526C50.3351 30.642 50.3749 30.6313 50.4345 30.6153C51.5286 30.3222 52.6768 30.8674 53.149 31.9135Z" fill="#C09078"/>
|
|
8
|
+
<path d="M16.6982 38.6314C16.7035 38.6513 16.7632 38.6353 16.8428 38.614C16.8627 38.6086 16.8826 38.6033 16.9224 38.5926C16.9422 38.5873 16.982 38.5766 17.0218 38.566C17.0815 38.55 17.1557 38.5088 17.23 38.4676C17.2698 38.4569 17.3042 38.4264 17.344 38.4157C17.3785 38.3851 17.4182 38.3745 17.4726 38.3386C17.5667 38.292 17.6555 38.2256 17.7443 38.1592C17.9219 38.0263 18.1088 37.8483 18.2704 37.6558C18.4519 37.4579 18.5936 37.2707 18.7353 37.0835C18.8572 36.9016 18.9843 36.7396 19.0717 36.5882C19.2518 36.3055 19.3285 36.1143 19.3231 36.0944C19.2979 36.0799 19.1708 36.2419 18.9854 36.5048C18.8927 36.6362 18.7655 36.7982 18.6383 36.9602C18.4913 37.1275 18.3496 37.3147 18.188 37.5073C18.0263 37.6998 17.8342 37.8579 17.6818 38.0054C17.593 38.0718 17.5241 38.1329 17.4353 38.1993C17.4008 38.2299 17.3664 38.2605 17.3266 38.2711C17.2921 38.3017 17.2523 38.3123 17.2179 38.3429C16.8918 38.5582 16.6929 38.6115 16.6982 38.6314Z" fill="#EBAE8B"/>
|
|
9
|
+
<path d="M45.3803 72.2233C45.4002 72.218 45.2887 72.1199 45.1107 71.9331C44.9181 71.7715 44.6393 71.5264 44.3046 71.2323C43.9501 70.9435 43.5397 70.6057 43.1081 70.1884C42.6619 69.7962 42.1944 69.3245 41.7759 68.797C41.7453 68.7626 41.7148 68.7281 41.7041 68.6883C41.6735 68.6539 41.6629 68.6141 41.6323 68.5796C41.5911 68.5054 41.53 68.4365 41.4941 68.3821C41.4529 68.3079 41.4117 68.2337 41.3506 68.1648C41.32 68.1303 41.3094 68.0905 41.2788 68.0561C41.2682 68.0163 41.2376 67.9818 41.227 67.942C41.1857 67.8678 41.1445 67.7936 41.1086 67.7392C41.0674 67.665 41.0316 67.6106 40.9903 67.5364C40.9331 67.4025 40.8507 67.254 40.7935 67.1201C40.5448 66.5897 40.3611 66.0633 40.2094 65.6562C40.0523 65.2292 39.9365 64.8765 39.8526 64.6431C39.7688 64.4097 39.7116 64.2758 39.6917 64.2812C39.6718 64.2865 39.7091 64.4257 39.7731 64.6644C39.837 64.9032 39.933 65.2612 40.0502 65.6988C40.1874 66.1312 40.3459 66.643 40.6052 67.2132C40.6624 67.3471 40.7449 67.4956 40.8021 67.6295C40.8433 67.7037 40.8845 67.7779 40.9204 67.8323C40.9616 67.9065 41.0028 67.9808 41.044 68.055C41.0547 68.0948 41.0852 68.1293 41.0959 68.169C41.1265 68.2035 41.1371 68.2433 41.1677 68.2777C41.2089 68.352 41.2501 68.4262 41.3112 68.4951C41.3524 68.5694 41.4135 68.6383 41.4547 68.7125C41.4853 68.747 41.4959 68.7868 41.5265 68.8212C41.557 68.8557 41.5876 68.8901 41.6182 68.9246C42.0473 69.4918 42.5294 69.9383 42.9809 70.3504C43.4271 70.7425 43.8574 71.075 44.2318 71.3584C44.5863 71.6472 44.8798 71.867 45.0869 72.0034C45.2542 72.1505 45.3803 72.2233 45.3803 72.2233Z" fill="#EBB99C"/>
|
|
10
|
+
<path d="M48.643 69.6862C48.6377 69.6663 48.5169 69.6134 48.2807 69.5274C48.0444 69.4415 47.6874 69.3026 47.2654 69.1598C46.8434 69.0171 46.3258 68.8359 45.7577 68.6257C45.2096 68.4101 44.5858 68.1509 44.0202 67.7907C43.995 67.7761 43.9446 67.747 43.9193 67.7324C43.8888 67.698 43.8437 67.6888 43.8131 67.6543C43.7374 67.6106 43.6817 67.5616 43.606 67.5179C43.5303 67.4742 43.4746 67.4252 43.3936 67.3616C43.363 67.3272 43.3179 67.3179 43.2873 67.2835C43.2568 67.249 43.2316 67.2345 43.201 67.2C43.1452 67.151 43.0696 67.1073 43.0138 67.0583C42.958 67.0093 42.9022 66.9603 42.8465 66.9112C42.7349 66.8132 42.618 66.6953 42.5065 66.5973C42.0748 66.1799 41.7334 65.781 41.4279 65.4364C41.1423 65.0866 40.8978 64.8109 40.7398 64.6188C40.5817 64.4266 40.4701 64.3286 40.4701 64.3286C40.4502 64.3339 40.5273 64.4625 40.6854 64.6546C40.8289 64.872 41.0535 65.153 41.3245 65.5281C41.6102 65.878 41.9569 66.2968 42.374 66.7394C42.4855 66.8374 42.6024 66.9553 42.714 67.0534C42.7698 67.1024 42.8255 67.1514 42.8866 67.2203C42.9424 67.2693 43.0181 67.313 43.0792 67.3819C43.1097 67.4164 43.135 67.4309 43.1655 67.4654C43.1961 67.4998 43.2213 67.5144 43.2717 67.5435C43.3275 67.5925 43.4032 67.6362 43.4842 67.6998C43.5598 67.7435 43.6355 67.7872 43.6966 67.8561C43.7272 67.8905 43.7723 67.8998 43.8028 67.9342C43.8334 67.9687 43.8785 67.9779 43.9091 68.0124C44.5197 68.3818 45.1183 68.6265 45.6864 68.8367C46.2544 69.047 46.7666 69.2082 47.2032 69.3257C47.6398 69.4433 47.9915 69.5623 48.2423 69.623C48.4878 69.6638 48.6231 69.6915 48.643 69.6862Z" fill="#EBB99C"/>
|
|
11
|
+
<path d="M19.4738 68.4825L20.26 69.1886L24.997 73.4201C25.5242 73.8758 26.0514 74.3315 26.6078 74.7368C26.6078 74.7368 32.7459 80.2984 34.9368 81.9501C36.1716 82.8984 37.7397 84.056 38.2244 85.5465C38.267 85.7057 38.3097 85.8648 38.3523 86.0239C38.363 86.0637 38.3736 86.1035 38.3843 86.1433C38.4163 86.2626 38.4483 86.382 38.4802 86.5014C38.4909 86.5411 38.4962 86.561 38.5069 86.6008C38.5335 86.7003 38.5655 86.8196 38.5922 86.9191C38.6028 86.9589 38.6135 86.9987 38.6242 87.0385C38.6295 87.0583 38.6401 87.0981 38.6455 87.118C38.6668 87.1976 38.6881 87.2772 38.7094 87.3567C38.7308 87.4363 38.7521 87.5159 38.7787 87.6153C38.7894 87.6551 38.8 87.6949 38.816 87.7546C38.8214 87.7745 38.8214 87.7745 38.8267 87.7944C38.8427 87.854 38.8587 87.9137 38.8747 87.9734C38.96 88.2917 39.0452 88.61 39.1359 88.9481C39.1625 89.0476 39.1892 89.1471 39.2211 89.2664C39.2425 89.346 39.2584 89.4057 39.2798 89.4852L39.2851 89.5051C39.4397 90.082 39.5942 90.6589 39.7634 91.2105C39.774 91.2503 39.7847 91.2901 39.79 91.31C40.0231 92.1004 40.3372 92.9543 40.4709 93.7713C40.764 94.8654 41.0519 95.9396 41.313 96.9144C42.5017 101.35 43.5335 112.203 43.5335 112.203L45.8147 111.805C45.8051 111.531 45.7955 111.256 45.8058 110.976C45.7968 110.147 45.9485 109.36 45.8798 108.547C45.8243 107.624 45.8935 106.689 45.8327 105.745C45.7612 104.762 45.6936 103.715 45.4577 102.754C45.2057 101.735 44.914 100.725 44.6422 99.7108C44.413 98.8554 44.1678 97.9404 43.8245 97.1369C43.3403 95.9661 42.8613 94.8152 42.5308 93.5818C42.3549 92.9254 42.2746 92.3073 42.1783 91.6295C42.0844 90.8018 41.8534 89.5418 42.3155 88.7997C42.4228 88.6431 42.4995 88.4519 42.4064 88.2637C42.3187 88.0953 42.113 88.0438 42.0106 87.9007C41.9389 87.792 41.9254 87.5824 41.9332 87.4524C41.9633 87.1671 42.1846 86.9586 42.3555 86.7209C42.7171 86.2402 43.3536 86.0697 43.8893 85.8409C44.4449 85.6067 44.6526 85.1886 45.0195 84.7278C45.5282 84.0798 46.0169 83.4372 46.5867 82.8581C47.1074 82.3348 47.3546 81.5863 47.8806 81.0829C48.6969 80.3099 49.5543 79.611 50.3201 78.8089C50.772 78.3467 51.2757 77.9985 51.8191 77.6397C52.3281 77.3114 52.8375 77.3028 53.3054 76.9003C53.9202 76.3305 54.7411 76.1318 55.372 75.6217C55.6529 75.3971 55.7826 75.0852 55.9627 74.8024C56.2209 74.4134 56.5402 74.0933 56.7533 73.6951C56.9373 73.3473 57.0257 72.9612 57.2097 72.6134C57.5102 72.0638 57.8291 71.424 57.9132 70.7832C57.9935 70.2074 58.2343 69.6738 58.3795 69.1018C58.5446 68.5246 58.6302 67.9686 58.6852 67.3782C58.7193 67.028 59.0922 66.0326 58.4606 65.9033C58.17 65.8533 57.9864 66.5208 57.9243 66.6867C57.7431 67.2042 57.481 67.6583 57.2548 68.1666C57.0815 68.5542 57.0076 68.9151 56.7639 69.2789C56.4713 69.6984 56.1083 70.0942 55.801 70.539C55.4156 71.09 54.9507 71.6623 54.4751 72.1948C53.2443 73.5693 51.2817 74.2018 49.6655 74.9333C49.1497 75.1568 48.5462 75.212 48.0769 75.5296C47.6422 75.8166 47.2752 76.2774 47.0582 76.7406C46.7883 77.3247 46.5276 77.8636 46.1369 78.3947C45.7316 78.951 45.418 79.6107 44.9172 80.1287C44.1169 80.9614 43.3302 82.0037 42.3718 82.6443C41.8482 82.9978 40.8895 83.3186 40.271 83.0793C39.7229 82.8637 39.2355 82.3973 38.6767 82.1419C38.2386 81.9395 37.8191 81.6468 37.3665 81.4696C36.9392 81.3069 36.4681 81.2199 36.1573 80.8555C35.9381 80.5944 35.813 80.2868 35.5593 80.0563C35.1636 79.6933 34.6101 79.4578 34.1309 79.1811C33.7778 78.9773 33.4232 78.6885 33.0648 78.4647C32.6811 78.2264 32.2868 77.9483 31.9521 77.6542C31.5617 77.311 31.2149 76.8923 30.79 76.5797C30.4209 76.3161 30.0227 76.103 29.6589 75.8594C29.2952 75.6157 28.9062 75.3575 28.5424 75.1138C27.8706 74.6756 27.3366 74.115 26.7576 73.5453C26.4986 73.2949 26.0964 73.1468 25.9263 72.8299C25.8438 72.6815 25.8317 72.5568 25.6896 72.4243C25.5529 72.3117 25.4015 72.2243 25.2648 72.1117C24.9408 71.8574 24.626 71.558 24.3365 71.2731C23.9965 70.9591 23.6764 70.6398 23.3165 70.3311C23.1293 70.1894 22.9964 70.0118 22.8039 69.8502C22.6365 69.7031 22.5488 69.5347 22.3378 69.4634C22.1772 69.4211 22.022 69.3987 21.8614 69.3565C21.369 69.1899 20.8966 69.018 20.4241 68.8461L19.4738 68.4825Z" fill="#F2B28F"/>
|
|
12
|
+
<path d="M51.431 50.091C51.4164 50.1163 51.5784 50.2434 51.8811 50.4182C51.9063 50.4327 51.9567 50.4618 52.0072 50.491C52.0576 50.5201 52.0828 50.5347 52.1333 50.5638C52.2288 50.6021 52.3297 50.6604 52.4253 50.6987C52.6416 50.79 52.8779 50.876 53.1287 50.9367C53.3795 50.9974 53.6196 51.0184 53.8597 51.0393C53.9248 51.0432 53.9645 51.0325 54.0295 51.0364C54.0946 51.0403 54.1343 51.0297 54.1741 51.019C54.2789 51.0123 54.3585 50.9909 54.4434 50.9895C54.4633 50.9842 54.4832 50.9788 54.5031 50.9735C54.523 50.9682 54.5429 50.9629 54.5627 50.9575C54.6025 50.9469 54.6423 50.9362 54.6622 50.9309C54.7219 50.9149 54.7816 50.8989 54.816 50.8683C54.9101 50.8218 54.9499 50.8111 54.9446 50.7912C54.9446 50.7912 54.8796 50.7873 54.8 50.8087C54.7602 50.8193 54.7006 50.8353 54.6409 50.8513C54.6011 50.862 54.5812 50.8673 54.5414 50.878C54.5215 50.8833 54.5016 50.8886 54.4817 50.8939C54.4619 50.8993 54.442 50.9046 54.4221 50.9099C54.3372 50.9114 54.2576 50.9327 54.1528 50.9394C54.1077 50.9302 54.048 50.9462 54.0029 50.937C53.9578 50.9277 53.8981 50.9437 53.853 50.9345C53.6381 50.9281 53.3926 50.8873 53.1418 50.8266C52.891 50.7658 52.6601 50.6998 52.4637 50.6032C52.3681 50.5648 52.2725 50.5265 52.177 50.4881C52.1265 50.459 52.0814 50.4498 52.0562 50.4352C52.0111 50.426 51.9805 50.3915 51.9354 50.3823C51.6274 50.1876 51.4508 50.0857 51.431 50.091Z" fill="#EBB99C"/>
|
|
13
|
+
<path d="M20.4576 69.0507C20.1738 69.1055 20.5085 69.3996 20.5948 69.483C20.6811 69.5665 20.7621 69.6301 20.8538 69.7335C20.976 69.8713 21.1167 69.9189 21.2534 70.0315C21.608 70.3202 22.0499 70.4577 22.4336 70.696C22.6407 70.8324 22.8624 70.9436 23.084 71.0547C23.4464 71.2135 23.8379 71.3218 24.1949 71.4607C24.6222 71.6233 24.4528 71.9459 24.9146 72.078C25.3061 72.1863 25.699 72.3795 26.0997 72.4427C26.5004 72.5059 26.9302 72.5187 27.3494 72.4916C27.8787 72.4777 28.3934 72.4891 28.9174 72.4553C29.4811 72.4108 30.0037 72.2921 30.5888 72.3272C30.874 72.3574 31.1632 72.3226 31.4484 72.3527C31.8385 72.3761 32.1596 72.4607 32.5535 72.4191C33.047 72.3508 33.5457 72.3025 34.0284 72.1944C34.665 72.0239 35.2938 71.9833 35.9531 71.9772C36.2927 71.9715 36.6216 71.926 36.9665 71.9402C38.2361 71.9838 39.5185 71.5975 40.7877 71.3214C42.1564 71.0186 43.4945 70.6814 44.8366 70.2792C45.7211 69.9995 46.6109 69.7398 47.4968 69.545C49.1891 69.1769 50.8629 68.8989 52.4753 68.2324C53.6116 67.7786 54.9945 67.1309 55.7414 66.0993C56.3612 65.2296 56.775 63.9888 56.7617 62.905C56.7528 62.0758 56.395 61.2976 56.142 60.5125C55.8265 59.5737 55.7696 58.5655 55.5933 57.5894C55.3463 56.2697 54.9004 55.0033 54.6733 53.6784C54.3115 51.7711 53.7056 49.908 53.4486 47.994C53.3054 46.9024 53.5628 45.874 53.4899 44.8062C53.4398 43.9029 54.2294 43.0303 54.8137 42.426C54.5327 42.6506 54.2929 42.9493 53.9402 43.0652C53.5875 43.181 53.2585 43.2265 52.9942 42.9562C52.7246 42.666 52.4723 42.5204 52.0954 42.3868C51.6031 42.2203 51.5746 41.7162 51.3977 41.2946C50.928 40.0985 50.8003 38.7469 50.251 37.5722C50.0847 37.1903 49.9835 36.8124 49.857 36.4199C49.7518 36.1069 49.6214 35.7794 49.5162 35.4664C49.443 35.2728 49.3208 35.135 49.2277 34.9468C48.9538 34.4019 48.872 33.6989 48.7068 33.0822C48.6748 32.9628 48.6613 32.7533 48.5988 32.5994C48.575 32.6698 48.5512 32.7401 48.5274 32.8105C48.3768 33.3625 48.2515 33.9291 48.1659 34.4851C48.1979 34.6044 48.2444 34.6985 48.2313 34.8087C48.2317 35.1284 48.1166 35.4151 48.1422 35.7493C48.1824 36.0584 48.2876 36.3713 48.3277 36.6804C48.4546 37.3926 48.7712 38.0966 48.9577 38.7929C49.199 39.7729 49.3408 40.7797 49.5875 41.7796C50.0395 43.7053 50.5114 45.6256 50.8785 47.5527C51.1347 48.8273 51.2265 50.1246 52.1125 51.1238C52.9986 52.1229 53.1063 53.4799 53.2578 54.7612C53.3502 55.504 53.3975 56.2376 53.5496 56.9643C53.6537 57.5121 53.8307 57.9337 53.765 58.4844C53.6521 59.4954 53.5382 60.7412 52.9223 61.5458C52.7024 61.8393 52.4016 62.0691 52.1511 62.3281C51.9153 62.5619 51.6915 62.9203 51.364 63.0507C51.1505 63.1292 50.925 63.0831 50.7207 63.1165C50.352 63.1726 50.0206 63.3681 49.6732 63.5038C48.3034 64.0414 46.7848 64.3417 45.3725 64.7201C44.4972 64.9546 43.6699 65.3682 42.7946 65.6027C41.8995 65.8426 41.0509 66.1766 40.161 66.4363C38.933 66.7867 37.6716 66.9328 36.4397 67.3482C35.6202 67.6317 34.7876 68.0254 34.0612 68.4972C33.6953 68.7231 33.2935 68.8948 32.9223 69.1008C32.4968 69.3428 32.0087 69.4309 31.5725 69.6331C31.1907 69.7994 30.8035 69.9457 30.391 70.0776C29.8049 70.2773 29.2334 70.4517 28.61 70.5122C28.2359 70.5484 27.8604 70.4998 27.481 70.5162C27.1667 70.5365 26.9397 70.4054 26.6384 70.3155C25.9151 70.0829 25.1574 69.8809 24.421 69.7584C23.8001 69.6689 23.7812 69.4394 23.1695 69.3049C22.7833 69.2164 22.3958 69.0431 21.9951 68.9799C21.7947 68.9483 21.5997 68.9366 21.4008 68.9899C21.2615 69.0272 21.113 69.1096 20.9685 69.1271C20.7933 69.11 20.642 69.0227 20.4576 69.0507Z" fill="#E8AB89"/>
|
|
14
|
+
<path d="M26.6199 69.1259C27.1849 71.2345 29.3541 72.4869 31.4627 71.9219L52.9665 66.1599C55.0751 65.5949 56.3274 63.4258 55.7624 61.3172L43.2685 14.6892C42.7035 12.5806 40.5343 11.3282 38.4257 11.8932L16.9219 17.6551C14.8133 18.2201 13.561 20.3893 14.126 22.4979L26.6199 69.1259Z" fill="white"/>
|
|
15
|
+
<path d="M32.3869 67.7313L34.575 67.145C34.6148 67.1343 34.6439 67.0839 34.6333 67.0441C34.6226 67.0043 34.5722 66.9752 34.5324 66.9859L32.3442 67.5722C32.3044 67.5828 32.2753 67.6333 32.286 67.6731C32.2966 67.7129 32.3471 67.742 32.3869 67.7313Z" fill="#434343"/>
|
|
16
|
+
<path d="M32.5295 68.2667L34.7177 67.6804C34.7575 67.6697 34.7866 67.6193 34.7759 67.5795C34.7653 67.5397 34.7148 67.5106 34.675 67.5213L32.4869 68.1076C32.4471 68.1182 32.418 68.1687 32.4286 68.2085C32.4393 68.2483 32.4897 68.2774 32.5295 68.2667Z" fill="#434343"/>
|
|
17
|
+
<path d="M32.6745 68.8058L34.8627 68.2195C34.9025 68.2088 34.9316 68.1584 34.9209 68.1186C34.9103 68.0788 34.8598 68.0497 34.82 68.0603L32.6319 68.6466C32.5921 68.6573 32.5629 68.7077 32.5736 68.7475C32.5843 68.7873 32.6347 68.8164 32.6745 68.8058Z" fill="#434343"/>
|
|
18
|
+
<path d="M41.6785 66.926C42.4742 66.7128 42.9402 65.9057 42.727 65.11C42.5138 64.3143 41.7067 63.8483 40.911 64.0615C40.1153 64.2747 39.6493 65.0818 39.8625 65.8775C40.0757 66.6732 40.8828 67.1392 41.6785 66.926ZM40.9749 64.3002C41.6314 64.1243 42.3124 64.5175 42.4883 65.174C42.6642 65.8304 42.271 66.5114 41.6146 66.6873C40.9581 66.8632 40.2771 66.47 40.1012 65.8136C39.9253 65.1571 40.3185 64.4761 40.9749 64.3002Z" fill="#434343"/>
|
|
19
|
+
<path d="M48.4886 63.0547L49.7617 62.7135L49.2495 62.5523C49.2044 62.5431 49.1884 62.4834 49.1976 62.4383C49.2068 62.3932 49.2665 62.3772 49.3116 62.3864L50.0097 62.6045C50.0548 62.6137 50.0853 62.6481 50.1013 62.7078C50.112 62.7476 50.1028 62.7927 50.0736 62.8432L49.5781 63.381C49.5582 63.3864 49.5636 63.4063 49.5437 63.4116C49.5238 63.4169 49.4787 63.4077 49.4733 63.3878C49.4428 63.3533 49.4321 63.3136 49.4612 63.2631L49.8243 62.8673L48.5511 63.2085C48.2726 63.2831 48.0926 63.5659 48.1725 63.8643L48.1885 63.9239C48.2631 64.2024 48.5459 64.3825 48.8443 64.3026L50.3163 63.9081C50.3561 63.8975 50.4066 63.9266 50.4172 63.9664C50.4279 64.0062 50.3988 64.0566 50.359 64.0673L48.8869 64.4617C48.509 64.563 48.1306 64.3445 48.0294 63.9666L48.0134 63.9069C47.8922 63.5343 48.1106 63.1559 48.4886 63.0547Z" fill="#434343"/>
|
|
20
|
+
<path d="M40.9766 64.2992C41.6331 64.1233 42.3141 64.5165 42.49 65.1729C42.6659 65.8294 42.2727 66.5104 41.6162 66.6863C40.9996 66.8515 40.3544 66.5127 40.1349 65.9319C39.8993 65.2914 40.2168 64.5667 40.8573 64.3312C40.897 64.3205 40.9368 64.3098 40.9766 64.2992Z" fill="white"/>
|
|
21
|
+
<path d="M27.5956 65.048C27.6809 65.3663 28.0088 65.5556 28.3271 65.4703L52.4368 59.0102C52.7551 58.9249 52.9444 58.597 52.8591 58.2787L42.2733 18.7722C42.1881 18.4539 41.8602 18.2646 41.5419 18.3499L17.4322 24.8101C17.1139 24.8953 16.9246 25.2232 17.0099 25.5415L27.5956 65.048Z" fill="#28252D"/>
|
|
22
|
+
<path d="M23.4445 20.0439C23.5298 20.3622 23.8577 20.5515 24.1759 20.4663L33.5453 17.9557C33.8636 17.8705 34.0529 17.5426 33.9676 17.2243L33.9037 16.9856C33.8184 16.6673 33.4905 16.478 33.1722 16.5633L23.8028 19.0738C23.4846 19.1591 23.2952 19.487 23.3805 19.8052L23.4445 20.0439Z" fill="#434343"/>
|
|
23
|
+
<path d="M33.4878 17.7366C33.6868 17.6833 33.8033 17.4815 33.75 17.2826L33.686 17.0439C33.6327 16.8449 33.4309 16.7284 33.232 16.7817L23.8626 19.2922C23.6637 19.3455 23.5472 19.5473 23.6005 19.7463L23.6645 19.985C23.7178 20.1839 23.9196 20.3004 24.1185 20.2471L33.4878 17.7366Z" fill="#333333"/>
|
|
24
|
+
<path d="M37.843 16.0587C37.7245 15.6165 37.2716 15.355 36.8293 15.4735C36.3871 15.592 36.1256 16.0449 36.2441 16.4871C36.3626 16.9294 36.8155 17.1909 37.2577 17.0724C37.7 16.9539 37.9615 16.501 37.843 16.0587Z" fill="#434343"/>
|
|
25
|
+
<path d="M37.5875 16.1263C37.51 15.8372 37.2035 15.6458 36.8973 15.7279C36.6082 15.8054 36.4168 16.1119 36.4989 16.418C36.5764 16.7072 36.8829 16.8985 37.189 16.8165C37.4952 16.7344 37.6695 16.4325 37.5875 16.1263Z" fill="#5C5C5C"/>
|
|
26
|
+
<path d="M37.4669 16.1586C37.4076 15.9375 37.1704 15.8005 36.9493 15.8598C36.7281 15.919 36.5912 16.1562 36.6504 16.3774C36.7097 16.5985 36.9469 16.7355 37.168 16.6762C37.3891 16.617 37.5307 16.3967 37.4669 16.1586Z" fill="#333333"/>
|
|
27
|
+
<g opacity="0.2">
|
|
28
|
+
<path d="M24.5408 15.6137L54.4139 56.2844L43.2685 14.6892C42.7035 12.5806 40.5343 11.3282 38.4257 11.8932L24.5408 15.6137Z" fill="#CBCBCB"/>
|
|
29
|
+
</g>
|
|
30
|
+
<path d="M22.1195 52.573C20.9937 51.8726 19.6456 51.6155 18.3458 51.8572C17.3245 52.0242 16.4724 52.7429 16.1141 53.7131L15.8179 54.5174C15.5984 55.1305 15.5846 55.7952 15.7896 56.4012L15.9893 56.9873C16.2103 57.653 16.6647 58.2348 17.2899 58.579L22.7181 61.7298L30.9943 65.8018C31.1151 65.8547 31.7428 66.049 31.8782 66.0767C33.2593 66.2183 34.5214 65.5176 35.0996 64.254L35.3788 63.6249C36.0866 62.0494 35.4211 60.2022 33.9092 59.4134L29.7968 57.2746L22.1195 52.573Z" fill="#FDC7A9"/>
|
|
31
|
+
<path d="M33.0801 66.0312C34.0151 65.7807 34.7439 65.159 35.1435 64.2631L35.4227 63.6339C36.1252 62.0385 35.4742 60.1662 33.9119 59.3482L29.7995 57.2094L22.1275 52.5277C20.9819 51.8326 19.6337 51.5755 18.3087 51.8027C18.2292 51.824 18.1244 51.8307 18.0448 51.8521C17.1297 52.0972 16.3771 52.7893 16.0425 53.6891L15.7463 54.4934C15.5268 55.1065 15.5184 55.7911 15.7088 56.4223L15.9085 57.0084C16.1349 57.694 16.6092 58.2705 17.2198 58.6399L22.6733 61.8052L30.9494 65.8773C31.0702 65.9302 31.7231 66.139 31.8532 66.1468C32.2883 66.1794 32.7022 66.1325 33.0801 66.0312ZM18.0967 51.9661C18.1762 51.9448 18.2558 51.9234 18.3606 51.9167C19.6458 51.7002 20.9886 51.9374 22.0945 52.6432L29.7665 57.3248L33.8788 59.4637C35.3854 60.2326 36.0204 62.0453 35.3271 63.5956L35.0479 64.2247C34.663 65.0954 33.9486 65.6919 33.0535 65.9318C32.6755 66.0331 32.2762 66.0548 31.8809 66.0115C31.7508 66.0036 31.1231 65.8094 31.0222 65.7511L22.7461 61.6791L17.298 58.5337C16.6926 58.1842 16.2436 57.6222 16.0279 56.9764L15.8282 56.3903C15.6232 55.7843 15.6423 55.1396 15.8671 54.5463L16.1633 53.742C16.478 52.8475 17.2015 52.2059 18.0967 51.9661Z" fill="#C09078"/>
|
|
32
|
+
<path d="M17.9227 51.9491C18.0051 52.0976 18.1075 52.2408 18.1792 52.3495C18.4755 52.7391 19.1522 52.8776 19.6048 53.0548C20.6055 53.4476 21.7228 53.6387 22.7725 53.9757C23.3299 54.1461 23.8872 54.3166 24.4301 54.5123C24.5004 54.5361 24.5707 54.5599 24.6411 54.5837C24.8269 54.6405 24.9874 54.6828 25.1732 54.7396C25.2635 54.758 25.359 54.7964 25.4347 54.8401C25.4798 54.8493 25.5104 54.8838 25.5555 54.893C25.5807 54.9076 25.5807 54.9076 25.6059 54.9221C25.6311 54.9367 25.651 54.9314 25.6709 54.926C25.6908 54.9207 25.7359 54.9299 25.7558 54.9246C25.7757 54.9193 25.8208 54.9285 25.8407 54.9232C25.8606 54.9178 25.8858 54.9324 25.9057 54.9271C25.9256 54.9217 25.931 54.9416 25.9455 54.9164C25.9654 54.9111 25.9402 54.8965 25.9203 54.9019C25.8752 54.8926 25.85 54.8781 25.8048 54.8688C25.7345 54.845 25.6642 54.8212 25.5885 54.7775C25.3974 54.7008 25.2009 54.6042 25.0443 54.497L23.2666 53.3529L21.5393 52.238C20.5372 51.7603 19.4107 51.6144 18.29 51.8081C18.2012 51.8745 18.062 51.9118 17.9227 51.9491Z" fill="#F4C0A2"/>
|
|
33
|
+
<path d="M35.0916 62.0807C34.9719 61.793 34.758 61.5518 34.4805 61.3916L33.3455 60.7363C32.8411 60.4451 32.2798 60.3396 31.7015 60.4093C31.1232 60.479 30.5943 60.8126 30.2778 61.3025C29.9322 61.8428 29.8335 62.5089 30.0637 63.1295C30.2474 63.6559 30.6048 64.1145 31.0947 64.4309L32.287 65.2202C32.5445 65.3857 32.8351 65.4357 33.1189 65.381L33.1587 65.3703C33.786 65.2449 34.2009 64.9632 34.5863 64.4122C34.7081 64.2303 34.9081 63.9422 35.0416 63.5653C35.2334 63.0875 35.2845 62.5621 35.0916 62.0807Z" fill="#FFDDBF"/>
|
|
34
|
+
<path d="M33.3851 65.4166C33.9221 65.2727 34.2919 64.9817 34.6627 64.456C34.7554 64.3245 34.9845 63.9859 35.138 63.6037C35.3482 63.0357 35.3741 62.4957 35.1865 62.0343C35.0614 61.7267 34.8223 61.4709 34.5449 61.3107L33.4099 60.6554C32.9054 60.3642 32.299 60.2495 31.7207 60.3192C31.6159 60.3259 31.5363 60.3473 31.4369 60.3739C30.9396 60.5072 30.5101 60.8141 30.2228 61.2536C29.8626 61.8191 29.7746 62.525 29.9849 63.1509C30.174 63.6972 30.5566 64.1703 31.0518 64.5067L32.244 65.2959C32.5069 65.4813 32.8426 65.5406 33.1463 65.4806L33.1861 65.4699C33.2458 65.4539 33.3254 65.4326 33.3851 65.4166ZM31.465 60.5583C31.5445 60.537 31.644 60.5103 31.7289 60.5089C32.2674 60.4499 32.8287 60.5553 33.3079 60.832L34.4429 61.4873C34.6952 61.6329 34.9037 61.8542 35.0181 62.122C35.1951 62.5437 35.1784 63.0385 34.9774 63.5614C34.8531 63.8932 34.673 64.176 34.5366 64.3831C34.2003 64.8784 33.8451 65.1441 33.3676 65.272C33.308 65.288 33.2483 65.304 33.1886 65.32L33.1488 65.3307C32.8849 65.3801 32.5943 65.33 32.362 65.179L31.1697 64.3898C30.7051 64.0879 30.353 63.6492 30.1693 63.1228C29.9497 62.542 30.0339 61.9012 30.3848 61.3807C30.6124 60.9573 31.0074 60.6809 31.465 60.5583Z" fill="#E3AF93"/>
|
|
35
|
+
<path d="M29.2334 48.1712C30.7734 49.1444 31.2865 51.139 30.389 52.7227L30.0541 53.3028C29.5735 54.1352 28.7743 54.7331 27.834 54.9637C26.8937 55.1944 25.9119 55.031 25.0888 54.5054L23.3111 53.3613L18.3617 50.1675L16.6632 48.6824C15.9328 48.0253 15.4979 47.1184 15.4915 46.1394L15.4843 45.7149C15.4846 44.8407 15.7954 44.0112 16.3637 43.3472L16.8538 42.7895C17.3241 42.2371 17.9976 41.886 18.7258 41.8188L19.3255 41.8287L19.4427 42.2664L24.9771 45.4953L29.2334 48.1712Z" fill="#FDC7A9"/>
|
|
36
|
+
<path d="M16.6501 48.7072L18.3486 50.1923L18.6566 50.3869C18.7468 50.4054 18.8118 50.4093 18.8914 50.388C19.8171 50.1826 18.7222 48.6424 18.683 48.0985C18.6507 47.6595 18.5586 47.2364 18.5263 46.7973C18.506 46.4829 18.5682 46.317 18.6527 45.9959C18.728 45.7199 18.6853 45.5607 18.6558 45.2915C18.6021 44.7729 18.6784 44.262 18.8649 43.7643C18.98 43.4776 19.2105 43.224 19.3003 42.9227C19.4708 42.3654 18.718 41.8635 18.214 41.892C17.9845 41.9108 17.7472 42.0597 17.5444 42.178C17.2673 42.3375 17.0407 42.5261 16.8301 42.7745L16.3399 43.3322C15.7716 43.9962 15.4608 44.8257 15.4605 45.6999L15.4677 46.1244C15.5047 47.1379 15.925 48.07 16.6501 48.7072Z" fill="#F7C2A4"/>
|
|
37
|
+
<path d="M27.9104 55.0074C28.8254 54.7622 29.6193 54.1444 30.0853 53.3373L30.4203 52.7571C31.3522 51.1429 30.8285 49.1085 29.2632 48.1208L24.9924 45.47L19.4289 42.2915L19.3009 41.8141L18.7159 41.779C18.5713 41.7964 18.4267 41.8138 18.2676 41.8565C17.6907 42.0111 17.1962 42.3141 16.8041 42.7603L16.3139 43.3181C15.7257 43.9874 15.4203 44.8368 15.42 45.711L15.4271 46.1355C15.439 47.1344 15.8593 48.0665 16.6149 48.7382L18.3187 50.2431L23.2681 53.437L25.0458 54.581C25.8689 55.1067 26.876 55.2846 27.8361 55.0486C27.8507 55.0234 27.8706 55.018 27.9104 55.0074ZM19.2626 41.9097L19.3745 42.3274L19.3997 42.342L24.9342 45.5709L29.205 48.2216C30.7397 49.175 31.2222 51.1351 30.3393 52.6936L30.0043 53.2737C29.5383 54.0808 28.7444 54.6986 27.8241 54.9239C26.9037 55.1492 25.9218 54.9859 25.1239 54.4748L23.3462 53.3307L18.3969 50.1369L16.6984 48.6518C15.9733 48.0146 15.5583 47.1024 15.5572 46.1433L15.55 45.7188C15.5357 44.8698 15.8465 44.0403 16.4002 43.4015L16.8904 42.8438C17.268 42.4228 17.7372 42.1052 18.2942 41.9559C18.4335 41.9186 18.578 41.9012 18.7226 41.8838L19.2626 41.9097Z" fill="#C09078"/>
|
|
38
|
+
<path d="M29.6479 50.0417C29.5121 49.6943 29.2677 49.4186 28.9306 49.2744L27.7824 48.7292C27.3192 48.5122 26.7831 48.4213 26.2645 48.475C25.5615 48.5568 24.8987 48.9476 24.4987 49.5238C24.1571 49.9992 24.0171 50.591 24.112 51.1839C24.2016 51.7568 24.5153 52.2911 24.9906 52.6328L26.6689 53.8035C26.9623 54.0233 27.3577 54.0666 27.6905 53.9561C28.1772 53.7831 28.5683 53.5717 28.9259 53.156C29.1167 52.913 29.2914 52.6104 29.5031 52.1272C29.7968 51.4729 29.9048 50.7617 29.6386 50.0868L29.6479 50.0417Z" fill="#FFDDBF"/>
|
|
39
|
+
<path d="M27.6327 54.0576C27.6526 54.0523 27.6924 54.0416 27.7123 54.0363C28.2785 53.8419 28.659 53.5907 28.9822 53.2056C29.1928 52.9573 29.3676 52.6546 29.5739 52.1516C29.906 51.4017 29.9436 50.6667 29.7133 50.0461L29.7027 50.0064C29.5616 49.6391 29.292 49.3489 28.9495 49.1848L27.8014 48.6396C27.3129 48.408 26.7769 48.3171 26.2383 48.3762C26.1136 48.3882 25.9943 48.4202 25.8749 48.4522C25.2782 48.6121 24.7745 48.9603 24.4235 49.4807C24.0673 49.9813 23.9327 50.593 24.0077 51.1912C24.0827 51.7894 24.4217 52.3382 24.9222 52.6945L26.6004 53.8652C26.9138 54.0797 27.2946 54.1482 27.6327 54.0576ZM25.9176 48.6113C26.0369 48.5794 26.1563 48.5474 26.2611 48.5406C26.7598 48.4923 27.2706 48.5686 27.7339 48.7856L28.882 49.3308C29.1993 49.4803 29.4384 49.7361 29.5489 50.0689L29.5595 50.1087C29.7791 50.6895 29.7309 51.3847 29.408 52.0895C29.1963 52.5726 29.0216 52.8753 28.8255 53.0984C28.5169 53.4582 28.1762 53.6988 27.6246 53.8679C27.3116 53.9731 26.956 53.9191 26.6732 53.739L24.995 52.5683C24.525 52.2465 24.2166 51.7322 24.1324 51.1791C24.0482 50.626 24.1934 50.0541 24.5152 49.5841C24.8768 49.1034 25.3606 48.7606 25.9176 48.6113Z" fill="#E3AF93"/>
|
|
40
|
+
<path d="M24.5573 60.638C24.5772 60.6326 24.5864 60.5875 24.6049 60.4973C24.6234 60.4071 24.6511 60.2717 24.7185 60.1257C24.7807 59.9598 24.8428 59.7939 24.9593 59.5921C25.0559 59.3957 25.1977 59.2085 25.354 58.996C25.5102 58.7836 25.652 58.5964 25.7738 58.4145C25.8029 58.364 25.832 58.3136 25.8665 58.283C25.8956 58.2326 25.9247 58.1821 25.9393 58.1569C25.9684 58.1065 25.983 58.0812 26.0121 58.0308C26.0213 57.9857 26.0558 57.9551 26.065 57.91C26.0743 57.8649 26.1087 57.8344 26.118 57.7892C26.1272 57.7441 26.1417 57.7189 26.1563 57.6937C26.1709 57.6685 26.1801 57.6233 26.1947 57.5981C26.2092 57.5729 26.2039 57.553 26.2185 57.5278C26.2369 57.4375 26.2408 57.3725 26.2209 57.3779C26.1957 57.3633 26.1442 57.569 25.9894 57.8663C25.9748 57.8916 25.9457 57.942 25.9364 57.9871C25.902 58.0177 25.8928 58.0628 25.8636 58.1132C25.8345 58.1637 25.8001 58.1942 25.7709 58.2447C25.7418 58.2951 25.7073 58.3257 25.6782 58.3761C25.5564 58.558 25.3948 58.7506 25.2584 58.9577C25.1021 59.1701 24.9657 59.3772 24.8691 59.5737C24.7526 59.7755 24.7011 59.9811 24.6589 60.1417C24.6166 60.3023 24.5942 60.4575 24.5957 60.5424C24.5413 60.5783 24.552 60.6181 24.5573 60.638Z" fill="#EBAE8B"/>
|
|
41
|
+
<path d="M19.0411 48.0889C19.0663 48.1034 19.0872 47.8633 19.2421 47.566C19.3294 47.4146 19.4314 47.2381 19.5784 47.0707C19.7255 46.9034 19.907 46.7055 20.0938 46.5275C20.3006 46.3442 20.4874 46.1662 20.6543 45.9936C20.8213 45.8209 20.9484 45.6589 21.0557 45.5023C21.1431 45.3509 21.2106 45.2049 21.2237 45.0948C21.2329 45.0497 21.2422 45.0046 21.2368 44.9847C21.2315 44.9648 21.2262 44.9449 21.2262 44.9449C21.2262 44.9449 21.2063 44.9502 21.1917 44.9754C21.1771 45.0007 21.1679 45.0458 21.1335 45.0763C21.0951 45.1719 21.0223 45.298 20.9296 45.4294C20.817 45.5662 20.6898 45.7282 20.5176 45.881C20.3453 46.0337 20.1584 46.2117 19.9517 46.3951C19.745 46.5784 19.5635 46.7762 19.4218 46.9635C19.28 47.1507 19.1635 47.3525 19.1014 47.5184C19.0392 47.6843 19.0169 47.8395 18.9984 47.9297C19.0251 48.0292 19.0212 48.0942 19.0411 48.0889Z" fill="#EBAE8B"/>
|
|
42
|
+
<path d="M25.874 73.8248C25.874 73.8248 25.9138 73.8141 25.988 73.7729C26.0278 73.7622 26.0622 73.7317 26.0967 73.7011C26.1166 73.6958 26.151 73.6652 26.1656 73.64C26.1802 73.6148 26.22 73.6041 26.2345 73.5789C26.3379 73.4873 26.4558 73.3704 26.5737 73.2535C26.6863 73.1167 26.8188 72.9746 26.946 72.8126C27.2003 72.4886 27.3896 72.1607 27.5207 71.9337C27.5935 71.8076 27.6318 71.7121 27.661 71.6616C27.6848 71.5913 27.7192 71.5607 27.694 71.5462C27.694 71.5462 27.6066 71.6975 27.4702 71.9046C27.3392 72.1316 27.1246 72.4449 26.8902 72.7636C26.763 72.9256 26.6558 73.0823 26.518 73.2045C26.4054 73.3413 26.2874 73.4581 26.1841 73.5498C26.0171 73.7224 25.874 73.8248 25.874 73.8248Z" fill="#EBAE8B"/>
|
|
43
|
+
<path d="M40.7634 85.8687C40.7688 85.8886 40.9332 85.8658 41.2316 85.7859C41.3112 85.7646 41.3908 85.7433 41.4757 85.7418C41.5751 85.7152 41.6547 85.6939 41.774 85.6619C41.8735 85.6352 41.9929 85.6032 42.1122 85.5713C42.1719 85.5553 42.2316 85.5393 42.2913 85.5233C42.3509 85.5073 42.4106 85.4913 42.4848 85.4501C42.6241 85.4128 42.758 85.3556 42.8919 85.2984C42.9715 85.2771 43.0258 85.2412 43.1054 85.2198C43.185 85.1985 43.2592 85.1573 43.3189 85.1413C43.4727 85.0788 43.6265 85.0163 43.7803 84.9537C43.8599 84.9324 43.9341 84.8912 44.0283 84.8446C44.1025 84.8034 44.202 84.7768 44.2762 84.7356C44.3505 84.6944 44.4499 84.6677 44.5242 84.6265C44.5639 84.6158 44.5984 84.5853 44.6581 84.5693C44.6979 84.5586 44.7323 84.5281 44.792 84.5121C44.9604 84.4243 45.1287 84.3366 45.317 84.2435C45.4111 84.1969 45.4854 84.1557 45.5795 84.1092C45.6736 84.0626 45.7678 84.0161 45.8367 83.955C45.9308 83.9084 46.0249 83.8619 46.1137 83.7955C46.2079 83.7489 46.2967 83.6825 46.3908 83.6359C46.5738 83.523 46.7368 83.4153 46.9197 83.3023C47.0828 83.1947 47.271 83.1016 47.4341 82.994C47.7655 82.7985 48.0916 82.5833 48.4031 82.3932C49.0009 81.9985 49.5337 81.5998 49.9525 81.2531C50.3713 80.9064 50.6906 80.5863 50.9066 80.3578C51.0046 80.2463 51.0828 80.1401 51.1318 80.0843C51.1755 80.0086 51.19 79.9834 51.19 79.9834C51.19 79.9834 51.1502 79.9941 51.0813 80.0552C51.0323 80.1109 50.9488 80.1973 50.8256 80.2943C50.6043 80.5028 50.2743 80.7831 49.8303 81.1153C49.4062 81.4421 48.8627 81.801 48.245 82.201C47.9335 82.3911 47.622 82.5812 47.276 82.8018C47.1129 82.9094 46.9247 83.0025 46.7616 83.1102C46.5787 83.2232 46.4157 83.3308 46.2274 83.4239C46.1333 83.4704 46.0445 83.5369 45.9702 83.5781C45.8761 83.6246 45.782 83.6712 45.713 83.7323C45.6189 83.7788 45.5447 83.82 45.4559 83.8865C45.3617 83.933 45.2875 83.9742 45.1934 84.0208C45.025 84.1085 44.8566 84.1963 44.6882 84.284C44.6485 84.2947 44.614 84.3252 44.5543 84.3412C44.5145 84.3519 44.4801 84.3825 44.4204 84.3984C44.3462 84.4397 44.252 84.4862 44.1725 84.5075C44.0982 84.5487 44.0041 84.5953 43.9245 84.6166C43.8503 84.6578 43.7761 84.699 43.6965 84.7203C43.5427 84.7829 43.3889 84.8454 43.2351 84.9079C43.1608 84.9492 43.0812 84.9705 43.0269 85.0064C42.9473 85.0277 42.893 85.0636 42.8134 85.0849C42.6795 85.1421 42.5456 85.1993 42.4063 85.2366C42.3466 85.2526 42.2923 85.2885 42.2127 85.3098C42.1531 85.3258 42.0934 85.3418 42.039 85.3777C41.9197 85.4096 41.8056 85.4615 41.7062 85.4882C41.6067 85.5148 41.5126 85.5614 41.4131 85.588C41.3336 85.6093 41.2341 85.636 41.1797 85.6719C40.9172 85.8062 40.7634 85.8687 40.7634 85.8687Z" fill="#EBAE8B"/>
|
|
44
|
+
<path d="M51.484 77.5792C51.4893 77.5991 51.6286 77.5618 51.8673 77.4979C52.106 77.4339 52.4534 77.2982 52.8751 77.1212C53.2967 76.9443 53.7819 76.6863 54.2909 76.3581C54.5481 76.2039 54.8198 76.0245 55.0863 75.8252C55.3527 75.6258 55.6191 75.4265 55.9 75.202C56.1611 74.9828 56.4169 74.7437 56.6527 74.51C56.8886 74.2762 57.1045 74.0478 57.3006 73.8247C57.6927 73.3785 58.0199 72.9283 58.2582 72.5447C58.4965 72.161 58.6606 71.8186 58.7718 71.5969C58.8247 71.4761 58.863 71.3805 58.8723 71.3354C58.8961 71.2651 58.9106 71.2399 58.8854 71.2253C58.8854 71.2253 58.851 71.2558 58.8218 71.3063C58.7927 71.3567 58.7345 71.4576 58.6762 71.5585C58.565 71.7802 58.3704 72.0882 58.1069 72.4573C57.8433 72.8264 57.5307 73.2513 57.1134 73.6829C56.9173 73.906 56.7013 74.1345 56.4602 74.3483C56.2243 74.5821 55.9831 74.796 55.722 75.0152C55.461 75.2344 55.1946 75.4337 54.9282 75.633C54.6618 75.8323 54.4099 76.0064 54.1527 76.1606C53.6437 76.4889 53.1784 76.7415 52.7873 76.9529C52.3909 77.1444 52.0488 77.3 51.8154 77.3838C51.6126 77.5021 51.4787 77.5594 51.484 77.5792Z" fill="#EBAE8B"/>
|
|
45
|
+
<path d="M54.0604 77.1668C54.0604 77.1668 54.1346 77.1256 54.2579 77.0286C54.2923 76.9981 54.3268 76.9675 54.3666 76.9569C54.401 76.9263 54.4355 76.8957 54.4898 76.8599C54.5786 76.7934 54.6873 76.7217 54.796 76.6499C55.2453 76.3376 55.9082 75.9468 56.6666 75.5943C56.8548 75.5013 57.0431 75.4082 57.2168 75.3403C57.3109 75.2938 57.4051 75.2472 57.4846 75.2259C57.5589 75.1847 57.6583 75.158 57.7326 75.1168C58.08 74.9811 58.3929 74.8759 58.6462 74.7867C58.8941 74.6777 59.1023 74.5792 59.2454 74.4769C59.3687 74.3799 59.4124 74.3043 59.4124 74.3043C59.4124 74.3043 59.3435 74.3654 59.2149 74.4425C59.0863 74.5196 58.8781 74.618 58.6249 74.7072C58.3716 74.7963 58.0533 74.8816 57.7059 75.0174C57.6263 75.0387 57.5322 75.0852 57.4381 75.1318C57.3439 75.1783 57.2644 75.1996 57.1702 75.2462C56.9767 75.3194 56.7884 75.4125 56.6001 75.5055C55.8272 75.8832 55.1697 76.2939 54.7203 76.6062C54.617 76.6979 54.5083 76.7696 54.4195 76.8361C54.385 76.8666 54.3307 76.9025 54.2962 76.9331C54.2618 76.9636 54.2273 76.9942 54.1928 77.0247C54.1293 77.1057 54.0604 77.1668 54.0604 77.1668Z" fill="#EBAE8B"/>
|
|
46
|
+
<path d="M41.0896 88.0405C41.0949 88.0604 41.6281 87.9815 42.4849 87.8372C43.3417 87.6929 44.5168 87.4633 45.8006 87.162C46.4425 87.0113 47.0538 86.8262 47.6002 86.6372C47.7341 86.58 47.8733 86.5427 47.9874 86.4908C48.047 86.4748 48.1213 86.4336 48.181 86.4176C48.2406 86.4016 48.295 86.3657 48.3547 86.3497C48.4687 86.2979 48.588 86.2659 48.7021 86.214C48.8161 86.1621 48.9102 86.1156 49.0097 86.0889C49.1038 86.0424 49.1979 85.9958 49.2974 85.9692C49.3915 85.9226 49.4658 85.8814 49.54 85.8402C49.6143 85.799 49.6885 85.7578 49.7482 85.7418C49.8025 85.7059 49.8768 85.6647 49.9112 85.6342C50.114 85.5158 50.2426 85.4388 50.2174 85.4242C50.2068 85.3844 49.7215 85.6423 48.9326 85.9603C48.8385 86.0069 48.7191 86.0389 48.625 86.0854C48.5056 86.1174 48.3916 86.1693 48.2722 86.2012C48.2126 86.2172 48.1582 86.2531 48.0985 86.2691C48.0389 86.2851 47.9792 86.3011 47.9049 86.3423C47.7657 86.3796 47.6517 86.4315 47.5124 86.4688C46.9608 86.6379 46.364 86.7978 45.7274 86.9684C44.449 87.2896 43.2739 87.5192 42.4277 87.7033C41.6015 87.8821 41.0843 88.0206 41.0896 88.0405Z" fill="#EBAE8B"/>
|
|
47
|
+
<path d="M18.1032 66.8668L19.4741 68.4823L24.4642 70.2367L25.8021 70.7737C27.1147 71.2961 28.5278 71.5571 29.9314 71.5435L30.8905 71.5423C32.229 71.5248 33.414 70.6956 33.8622 69.4242L34.0671 68.8362C34.4201 67.8462 33.9518 66.7351 32.9855 66.3117L31.702 65.7388L28.048 64.1168L23.5893 61.8789C22.7026 61.4342 21.7339 61.1608 20.7534 61.0823L20.163 61.0273C19.4227 60.9698 18.7027 61.2267 18.1965 61.7248C18.113 61.8111 18.0097 61.9028 17.9315 62.009L17.6627 62.3582C17.2666 62.8694 17.0976 63.5117 17.1832 64.1497L17.3023 64.9919C17.3589 65.6804 17.6594 66.3247 18.1032 66.8668Z" fill="#FDC7A9"/>
|
|
48
|
+
<path d="M18.6152 61.4631C18.6618 61.5573 18.9072 61.5981 19.0373 61.6059C19.1872 61.6084 19.3317 61.591 19.5015 61.5881C19.6262 61.576 19.7616 61.6037 19.8717 61.6168C20.1768 61.6417 20.4728 61.7116 20.7687 61.7816C21.2649 61.8831 21.7374 62.055 22.2298 62.2216C22.5165 62.3367 22.8085 62.4716 23.1005 62.6066C23.2717 62.6886 23.4376 62.7508 23.6287 62.8275C24.1516 63.0285 24.6945 63.2242 25.2227 63.4451C25.439 63.5364 25.6753 63.6223 25.8916 63.7136C26.0881 63.8102 26.2447 63.9175 26.4558 63.9889C26.903 64.1462 27.3211 64.354 27.7684 64.5113C28.0046 64.5972 28.221 64.6885 28.4572 64.7745C28.578 64.8274 28.6934 64.8604 28.8142 64.9133C29.1965 65.0668 29.5986 65.2149 29.9862 65.3882C30.2728 65.5032 30.5595 65.6183 30.8554 65.6883C30.9961 65.7359 31.1567 65.7781 31.2974 65.8257C31.3876 65.8442 31.6491 65.9447 31.7272 65.8385C31.7418 65.8132 31.751 65.7681 31.7457 65.7482L28.0916 64.1262L23.6329 61.8883C22.7462 61.4436 21.7775 61.1702 20.797 61.0917L20.2066 61.0367C19.7264 60.9948 19.2436 61.1029 18.8326 61.3196C18.6085 61.3583 18.5847 61.4287 18.6152 61.4631Z" fill="#F4C0A2"/>
|
|
49
|
+
<path d="M31.7028 71.474C32.7372 71.1969 33.5588 70.4437 33.9065 69.4338L34.1114 68.8458C34.4789 67.8306 33.9801 66.685 32.9886 66.2471L28.0312 64.0575L23.5725 61.8196C22.6858 61.3749 21.717 61.1014 20.7114 61.0085L20.121 60.9534C19.8158 60.9286 19.5213 60.9435 19.223 61.0235C18.666 61.1727 18.1768 61.4957 17.8298 61.9511L17.5609 62.3003C17.1649 62.8116 16.9813 63.479 17.0723 64.1369L17.1914 64.9792C17.293 65.6768 17.5737 66.3265 18.0427 66.8831L19.419 68.5185L19.4389 68.5132L24.429 70.2676L25.7668 70.8046C27.0993 71.3217 28.4926 71.588 29.9213 71.5889L30.8804 71.5878C31.1749 71.5728 31.4442 71.5433 31.7028 71.474ZM19.2802 61.1574C19.5587 61.0828 19.8478 61.048 20.1331 61.0781L20.7235 61.1331C21.7039 61.2116 22.6528 61.4903 23.5394 61.935L28.0127 64.1477L32.9702 66.3373C33.9112 66.7461 34.3742 67.8373 34.0357 68.8021L33.8308 69.3901C33.4923 70.3549 32.6906 71.1027 31.696 71.3692C31.4374 71.4385 31.1682 71.468 30.9135 71.4723L29.9543 71.4735C28.5508 71.4871 27.1576 71.2208 25.8449 70.6984L24.5071 70.1614L19.517 68.407L18.1713 66.806C17.7329 66.2839 17.4323 65.6395 17.3558 64.9564L17.2368 64.1142C17.1564 63.4961 17.3255 62.8538 17.7069 62.3678L17.9758 62.0186C18.2685 61.5991 18.763 61.296 19.2802 61.1574Z" fill="#C09078"/>
|
|
50
|
+
<path d="M33.394 66.9698C33.151 66.7791 32.8643 66.664 32.5684 66.5941L31.1645 66.288C30.8686 66.218 30.5556 66.3232 30.3596 66.5463C30.1582 66.7495 30.0072 66.9818 29.9067 67.2433C29.6858 67.7715 29.6255 68.342 29.715 68.915C29.7751 69.2187 29.9744 69.4851 30.2558 69.5803L32.0302 70.2349C32.2664 70.3208 32.5463 70.3311 32.7797 70.2472C33.2717 70.0941 33.6095 69.6838 33.8013 69.206C33.8489 69.0653 33.9217 68.9392 33.9771 68.6685C34.1049 67.952 33.9251 67.3605 33.394 66.9698Z" fill="#FFDDBF"/>
|
|
51
|
+
<path d="M32.7215 70.3481C32.7414 70.3427 32.7613 70.3374 32.7812 70.3321C33.2732 70.1789 33.6362 69.7832 33.8518 69.235L33.8664 69.2098C33.9193 69.089 33.9669 68.9483 34.0223 68.6776C34.1845 67.9306 33.9742 67.3047 33.4179 66.8994C33.155 66.714 32.863 66.579 32.5472 66.5144L31.1433 66.2083C31.0079 66.1806 30.8381 66.1835 30.6989 66.2208C30.5198 66.2688 30.3713 66.3512 30.2588 66.488C30.0574 66.6912 29.8918 66.9487 29.7913 67.2102C29.5757 67.7583 29.5008 68.3541 29.5904 68.927C29.6359 69.256 29.8803 69.5316 30.1922 69.6613L31.9667 70.3158C32.2228 70.3964 32.4629 70.4173 32.7215 70.3481ZM30.7614 66.3746C30.8807 66.3426 31.0054 66.3305 31.1209 66.3636L32.5248 66.6696C32.8207 66.7396 33.0875 66.86 33.3252 67.0308C33.8257 67.3871 33.9948 67.9388 33.8617 68.6354C33.801 68.8862 33.748 69.007 33.7204 69.1423L33.7058 69.1675C33.5193 69.6652 33.1656 70.0159 32.7333 70.153C32.4999 70.2369 32.2597 70.2159 32.0288 70.1499L30.2544 69.4954C29.9929 69.3948 29.8043 69.1682 29.7549 68.9043C29.6706 68.3512 29.7363 67.8006 29.9373 67.2777C30.0432 67.0361 30.1941 66.8038 30.3756 66.6059C30.4936 66.489 30.6221 66.4119 30.7614 66.3746Z" fill="#E3AF93"/>
|
|
52
|
+
<path d="M23.3532 67.4427C23.3784 67.4572 23.4406 67.2913 23.5663 67.0444C23.692 66.7975 23.8813 66.4696 24.1051 66.1112C24.3289 65.7527 24.5182 65.4248 24.6638 65.1726C24.7895 64.9257 24.8769 64.7744 24.8517 64.7598C24.8265 64.7453 24.7391 64.8966 24.5881 65.1289C24.4372 65.3613 24.2227 65.6746 23.9989 66.033C23.7751 66.3915 23.5911 66.7393 23.4906 67.0007C23.3702 67.2675 23.328 67.4281 23.3532 67.4427Z" fill="#EBAE8B"/>
|
|
53
|
+
<path d="M23.9728 67.8529C23.9728 67.8529 24.0417 67.7918 24.1199 67.6855C24.198 67.5793 24.3106 67.4425 24.4179 67.2859C24.5252 67.1292 24.6324 66.9725 24.6853 66.8518C24.7383 66.731 24.7621 66.6606 24.7621 66.6606C24.7621 66.6606 24.713 66.7164 24.6402 66.8425C24.5621 66.9488 24.4747 67.1001 24.3674 67.2568C24.2602 67.4134 24.1529 67.5701 24.0748 67.6763C24.0165 67.7772 23.9728 67.8529 23.9728 67.8529Z" fill="#EBAE8B"/>
|
|
54
|
+
<g filter="url(#filter0_f_65_606)">
|
|
55
|
+
<path d="M43.0093 39.6489L42.5845 39.1995L42.58 38.5727L42.5501 38.4368L42.3855 37.9444L41.7501 37.696L41.9372 38.2477L41.5656 37.5688L40.8736 37.2309L41.0651 38.0431L40.7657 37.4626L40.7137 37.1953L39.9938 37.0218L40.3463 37.4834L39.7725 37.0746L39.0372 37.2585L39.3276 37.4882L39.2874 37.5578L38.8765 37.2689L38.3736 37.5148L38.7271 37.7603L38.6726 37.801L38.4263 37.6381L38.3729 37.9271L38.4368 37.8969L38.5461 38.1097L38.928 38.0466L39.1823 37.7757L39.2909 37.7662L38.97 38.0812L39.7077 38.4919L40.6343 38.1193L40.0668 38.4414L40.5502 38.7568L40.969 38.6118L40.4946 38.9156L41.3613 39.6123L42.232 39.1042L42.1506 39.3615L41.7285 39.4942L41.8396 39.543L42.6316 39.4485L42.8349 39.6985L43.0093 39.6489Z" fill="#FE3C72"/>
|
|
56
|
+
</g>
|
|
57
|
+
<path d="M43.0093 39.6489L42.5845 39.1995L42.58 38.5727L42.5501 38.4368L42.3855 37.9444L41.7501 37.696L41.9372 38.2477L41.5656 37.5688L40.8736 37.2309L41.0651 38.0431L40.7657 37.4626L40.7137 37.1953L39.9938 37.0218L40.3463 37.4834L39.7725 37.0746L39.0372 37.2585L39.3276 37.4882L39.2874 37.5578L38.8765 37.2689L38.3736 37.5148L38.7271 37.7603L38.6726 37.801L38.4263 37.6381L38.3729 37.9271L38.4368 37.8969L38.5461 38.1097L38.928 38.0466L39.1823 37.7757L39.2909 37.7662L38.97 38.0812L39.7077 38.4919L40.6343 38.1193L40.0668 38.4414L40.5502 38.7568L40.969 38.6118L40.4946 38.9156L41.3613 39.6123L42.232 39.1042L42.1506 39.3615L41.7285 39.4942L41.8396 39.543L42.6316 39.4485L42.8349 39.6985L43.0093 39.6489Z" fill="white"/>
|
|
58
|
+
<path d="M42.9434 39.6689C41.9648 38.4661 40.2945 37.3915 38.697 37.7702C40.2773 37.3787 41.9217 38.5254 42.8899 39.6832L42.9434 39.6689Z" fill="black"/>
|
|
59
|
+
<path d="M30.0662 45.437C29.4993 45.5889 28.9532 45.6008 28.4281 45.4726C27.9084 45.3429 27.4586 45.0922 27.0786 44.7206C26.7025 44.342 26.4407 43.8772 26.2931 43.3264C26.1455 42.7755 26.1406 42.2449 26.2784 41.7344C26.4203 41.2171 26.6865 40.7716 27.0772 40.398C27.4678 40.0245 27.9466 39.7617 28.5136 39.6098C28.9387 39.4959 29.3502 39.4616 29.748 39.507C30.1458 39.5524 30.5066 39.6779 30.8304 39.8834L30.7667 39.9937C30.1984 39.6608 29.5736 39.5856 28.8922 39.7682C28.4398 39.8894 27.9073 40.1432 27.5922 40.4498C27.277 40.7563 26.9526 41.3067 26.8364 41.7236C26.7257 42.1391 26.7702 42.7192 26.89 43.1664C27.0098 43.6137 27.2216 43.9895 27.5252 44.294C27.8342 44.597 28.2018 44.8025 28.628 44.9104C29.0543 45.0183 29.4936 45.0117 29.946 44.8905C30.6329 44.7064 31.1357 44.3262 31.4545 43.7497L31.9418 44.0313C31.7641 44.3712 31.5124 44.6637 31.1866 44.9088C30.8649 45.147 30.4914 45.3231 30.0662 45.437Z" fill="white"/>
|
|
60
|
+
<path d="M32.1677 46.2931C32.1123 46.0864 32.1073 45.8832 32.1527 45.6836C32.1957 45.488 32.268 45.2999 32.3696 45.1192C32.4752 44.941 32.599 44.7731 32.7409 44.6158C32.886 44.4576 33.0302 44.315 33.1734 44.188L33.1929 43.7073C33.1821 43.7306 33.1588 43.7709 33.123 43.8282C33.0904 43.8847 33.0555 43.9452 33.0182 44.0097C32.9801 44.0711 32.9432 44.1304 32.9074 44.1877C32.8708 44.2418 32.8451 44.2794 32.8303 44.3004C32.8006 44.3424 32.7643 44.3914 32.7213 44.4472C32.6783 44.503 32.6301 44.5586 32.5767 44.6138C32.5257 44.6649 32.4718 44.7118 32.415 44.7543C32.3573 44.7936 32.3031 44.82 32.2522 44.8337C32.1822 44.8524 32.1318 44.8489 32.101 44.823C32.0726 44.7932 32.0498 44.7464 32.0328 44.6828C32.0192 44.6319 32.0083 44.5786 32.0001 44.5228C31.9952 44.4662 31.9791 44.4126 31.9519 44.3619L32.0025 43.8064C32.0234 43.7701 32.0385 43.7183 32.0478 43.651C32.0602 43.5829 32.0711 43.5153 32.0803 43.448C32.0927 43.3799 32.1073 43.3198 32.124 43.2676C32.1439 43.2145 32.1713 43.1833 32.2063 43.1739C32.2444 43.1637 32.2792 43.1663 32.3106 43.1818C32.3452 43.1964 32.3681 43.2243 32.3791 43.2657C32.3877 43.2975 32.3906 43.3274 32.3878 43.3554C32.3874 43.3794 32.3844 43.4126 32.3787 43.455C32.3604 43.5519 32.3408 43.6441 32.3199 43.7315C32.3022 43.8181 32.2861 43.9042 32.2715 43.9899C32.2602 44.0748 32.2544 44.1615 32.2543 44.2502C32.2566 44.3348 32.2709 44.4264 32.2973 44.525L32.3164 44.5199C32.3164 44.5199 32.3246 44.5126 32.3412 44.4979C32.3568 44.4801 32.3741 44.4618 32.393 44.4431C32.4141 44.4204 32.4353 44.3977 32.4565 44.375C32.4777 44.3523 32.4961 44.332 32.5118 44.3142C32.656 44.1528 32.7745 43.9779 32.8672 43.7894C32.959 43.5978 33.048 43.4018 33.134 43.2015C33.1416 43.179 33.1489 43.1617 33.1559 43.1496C33.1629 43.1375 33.1692 43.129 33.1747 43.1241C33.1793 43.116 33.1864 43.1107 33.196 43.1082C33.2055 43.1056 33.2198 43.1018 33.2389 43.0967C33.2834 43.0847 33.321 43.0849 33.3515 43.0972C33.3844 43.1054 33.4121 43.1389 33.4347 43.1976C33.4489 43.2381 33.4594 43.2898 33.4661 43.3528C33.4719 43.4126 33.4745 43.4733 33.4739 43.5348C33.4733 43.5963 33.4712 43.6582 33.4674 43.7206C33.466 43.7789 33.4632 43.8257 33.459 43.8609L33.4782 43.9325C33.4837 43.9276 33.4967 43.919 33.5173 43.9067C33.541 43.8935 33.5573 43.884 33.5659 43.8783C33.5842 43.87 33.632 43.8384 33.7093 43.7836C33.7867 43.7288 33.87 43.6707 33.9592 43.6093C34.0507 43.5439 34.1352 43.4837 34.2125 43.4289C34.2899 43.3741 34.3384 43.339 34.3581 43.3234L34.3677 43.3209C34.3899 43.3149 34.4111 43.3178 34.4313 43.3294C34.4546 43.3402 34.4693 43.3567 34.4753 43.379C34.4812 43.4012 34.4784 43.4225 34.4667 43.4426C34.4583 43.4619 34.4462 43.4805 34.4305 43.4983C34.414 43.513 34.3959 43.5281 34.3762 43.5436C34.3565 43.5591 34.3395 43.5722 34.3253 43.5828C34.3065 43.6015 34.2789 43.6259 34.2427 43.6561C34.2056 43.683 34.163 43.7149 34.1149 43.7517C34.0691 43.7844 34.021 43.8211 33.9706 43.8619C33.9202 43.9027 33.8709 43.9415 33.8228 43.9782C33.7069 44.0672 33.5807 44.1624 33.4442 44.2637L33.4488 45.9601C33.4502 46.0415 33.4349 46.1309 33.403 46.228C33.3743 46.3244 33.3343 46.4169 33.2831 46.5056C33.2319 46.5943 33.1688 46.6709 33.094 46.7352C33.0233 46.8019 32.945 46.8467 32.8591 46.8698C32.77 46.8936 32.6873 46.8902 32.6109 46.8596C32.5354 46.8321 32.4671 46.7873 32.4062 46.7252C32.3461 46.6663 32.297 46.5977 32.259 46.5192C32.2177 46.4417 32.1873 46.3663 32.1677 46.2931ZM32.4253 46.2241C32.4364 46.2655 32.4519 46.3107 32.4719 46.3599C32.4951 46.4082 32.5242 46.4533 32.5593 46.495C32.5943 46.5368 32.632 46.5693 32.6723 46.5926C32.7158 46.615 32.7646 46.619 32.8187 46.6045C32.8887 46.5857 32.9463 46.5464 32.9916 46.4865C33.041 46.429 33.0794 46.3625 33.1069 46.2869C33.1384 46.2137 33.1607 46.1379 33.1737 46.0594C33.1868 45.9809 33.1956 45.912 33.2002 45.8529C33.1995 45.8121 33.1993 45.7542 33.1997 45.6791C33.2009 45.6072 33.2005 45.5358 33.1985 45.4647C33.1997 45.3928 33.1994 45.3281 33.1976 45.2706C33.1967 45.2163 33.195 45.1844 33.1924 45.1749L33.1873 45.1558L33.1646 44.5176C33.0484 44.5931 32.9368 44.698 32.8296 44.8324C32.7256 44.9659 32.637 45.1123 32.5638 45.2717C32.4907 45.4311 32.4391 45.5949 32.4092 45.7631C32.3824 45.9305 32.3878 46.0842 32.4253 46.2241ZM34.1933 43.8534C34.2645 43.7627 34.3122 43.68 34.3365 43.6054C34.364 43.5298 34.3819 43.4568 34.3903 43.3864C34.3987 43.316 34.4015 43.2436 34.3987 43.1694C34.395 43.092 34.3991 43.0057 34.4111 42.9104C34.3924 42.8916 34.3793 42.8746 34.3719 42.8596C34.3668 42.8405 34.3608 42.8182 34.354 42.7928C34.3472 42.7673 34.3422 42.7363 34.3392 42.6996C34.3394 42.662 34.3436 42.6268 34.3518 42.5939C34.3592 42.5579 34.3711 42.5257 34.3873 42.4975C34.4036 42.4693 34.4277 42.4509 34.4595 42.4424C34.4597 42.4559 34.4811 42.4656 34.5235 42.4712C34.5691 42.4761 34.6231 42.4803 34.6854 42.4841C34.751 42.487 34.8201 42.4906 34.8929 42.495C34.9656 42.4993 35.0309 42.5074 35.0886 42.5192C35.1543 42.5357 35.2035 42.56 35.236 42.5922C35.2708 42.6204 35.2971 42.6679 35.315 42.7347C35.3312 42.7951 35.3416 42.8656 35.3462 42.9462C35.3539 43.026 35.3605 43.1077 35.3659 43.1915C35.3736 43.2712 35.3802 43.353 35.3856 43.4368C35.3933 43.5165 35.4057 43.5882 35.4227 43.6518L35.456 43.7758C35.4604 43.8053 35.4711 43.8195 35.4878 43.8184C35.5069 43.8133 35.5244 43.8086 35.5403 43.8043C35.5785 43.7941 35.6117 43.7784 35.6401 43.7571C35.6685 43.7359 35.6965 43.7131 35.7241 43.6886C35.7548 43.6634 35.7843 43.6401 35.8127 43.6189C35.8403 43.5944 35.8707 43.5744 35.904 43.5586L36.2548 43.1885C36.2615 43.1628 36.2727 43.1411 36.2884 43.1232C36.3064 43.1014 36.3233 43.0815 36.3389 43.0637C36.3656 43.0361 36.3965 42.9988 36.4317 42.9519C36.4488 42.9269 36.4676 42.9014 36.4879 42.8755L36.631 42.8371C36.6406 42.8346 36.6495 42.8424 36.6578 42.8606C36.6661 42.8789 36.6715 42.8928 36.6741 42.9023C36.6843 42.9405 36.67 42.9954 36.6313 43.0672C36.5926 43.1389 36.5384 43.2165 36.4687 43.2999C36.399 43.3834 36.3198 43.4694 36.231 43.5579C36.1414 43.6433 36.0521 43.7235 35.9631 43.7984C35.8773 43.8726 35.7953 43.9354 35.7171 43.9871C35.6421 44.0379 35.5823 44.0692 35.5378 44.0811C35.4805 44.0965 35.4306 44.0945 35.3879 44.0753C35.3453 44.056 35.3073 44.0287 35.2739 43.9933C35.2406 43.958 35.2127 43.9177 35.1904 43.8725C35.1704 43.8234 35.154 43.7749 35.1412 43.7272C35.1319 43.6922 35.1298 43.6399 35.135 43.5704C35.1402 43.5008 35.1482 43.4288 35.1589 43.3543C35.1697 43.2798 35.1776 43.2078 35.1829 43.1383C35.1881 43.0687 35.1856 43.0148 35.1753 42.9766C35.1745 42.9735 35.1472 42.9671 35.0936 42.9576C35.0431 42.9473 34.9874 42.9367 34.9265 42.9257C34.8648 42.9116 34.8075 42.9014 34.7547 42.8951C34.7042 42.8847 34.6785 42.878 34.6776 42.8748C34.6273 42.9667 34.5988 43.0578 34.5924 43.1482C34.5891 43.2377 34.5851 43.3308 34.5803 43.4275C34.5787 43.5234 34.5628 43.6231 34.5326 43.7267C34.5056 43.8293 34.4416 43.9402 34.3405 44.0594C34.3374 44.0602 34.3306 44.0603 34.3202 44.0597C34.3066 44.0599 34.2933 44.055 34.2804 44.0448C34.2634 44.0323 34.2479 44.0126 34.2339 43.9857C34.219 43.9556 34.2055 43.9115 34.1933 43.8534ZM36.6829 43.6414C36.6803 43.6318 36.674 43.608 36.6637 43.5698C36.6535 43.5316 36.6467 43.5062 36.6433 43.4935C36.5381 43.3171 36.4798 43.1316 36.4686 42.9369C36.4605 42.7414 36.4877 42.5568 36.5503 42.3832C36.6152 42.2056 36.714 42.0462 36.8466 41.905C36.9815 41.7598 37.1414 41.6505 37.3263 41.5771L37.4122 41.5541C37.4821 41.5353 37.5436 41.5359 37.5967 41.5557C37.6521 41.5716 37.6989 41.6 37.7371 41.6408C37.7785 41.6809 37.8121 41.7298 37.8378 41.7877C37.8667 41.8447 37.8893 41.9035 37.9055 41.9639C37.9276 42.0466 37.9398 42.1302 37.942 42.2149C37.9466 42.2954 37.9484 42.3785 37.9474 42.464C37.9496 42.5486 37.9519 42.6332 37.9541 42.7178C37.9586 42.7984 37.9724 42.8817 37.9954 42.9675L38.0031 42.9962C38.008 43.0017 38.0163 43.0199 38.028 43.0509C38.042 43.0778 38.0515 43.094 38.0563 43.0995C38.0627 43.0978 38.079 43.0951 38.1053 43.0915C38.1308 43.0847 38.1467 43.0804 38.153 43.0787C38.1848 43.0702 38.2151 43.0621 38.2437 43.0544C38.2746 43.0427 38.3043 43.0262 38.3327 43.005L39.1267 42.3423C39.1298 42.3414 39.1346 42.3402 39.141 42.3385C39.1497 42.3327 39.1556 42.3294 39.1588 42.3286C39.1906 42.32 39.2186 42.3228 39.2428 42.3367C39.2701 42.3499 39.2881 42.3723 39.2966 42.4041C39.3009 42.42 39.3036 42.4364 39.3046 42.4531C39.308 42.4658 39.3035 42.4807 39.291 42.4977C39.273 42.5195 39.2376 42.5529 39.1849 42.5977C39.1353 42.6417 39.0818 42.6901 39.0244 42.743C38.967 42.7958 38.9123 42.8463 38.8604 42.8943C38.8117 42.9414 38.7759 42.9732 38.753 42.9895C38.7153 43.0269 38.6723 43.064 38.6242 43.1007C38.5753 43.1343 38.5247 43.1683 38.4726 43.2027C38.4205 43.2371 38.3675 43.2684 38.3136 43.2964C38.2621 43.3205 38.2141 43.3385 38.1696 43.3504C38.0996 43.3691 38.0394 43.3733 37.9889 43.363C37.9376 43.3495 37.8956 43.3266 37.8631 43.2944C37.8298 43.2591 37.8011 43.2156 37.7771 43.1641C37.7554 43.1086 37.7396 43.0497 37.7298 42.9876C37.6798 43.0555 37.6259 43.1279 37.5681 43.2048C37.5103 43.2816 37.448 43.3545 37.3813 43.4235C37.3146 43.4926 37.2445 43.5556 37.1712 43.6128C37.0979 43.6699 37.0183 43.71 36.9324 43.733C36.8847 43.7458 36.8388 43.7462 36.7947 43.7341C36.7497 43.7189 36.7124 43.688 36.6829 43.6414ZM36.9137 43.4721C36.9868 43.4525 37.0624 43.4101 37.1404 43.3449C37.2175 43.2765 37.2905 43.199 37.3593 43.1124C37.4281 43.0258 37.4881 42.9381 37.5394 42.8494C37.5897 42.7575 37.6263 42.6778 37.6492 42.6104C37.6268 42.5141 37.6152 42.42 37.6145 42.3282C37.616 42.2323 37.6045 42.1383 37.5798 42.046C37.5781 42.0397 37.5739 42.0306 37.5673 42.0187C37.5639 42.006 37.5614 41.9964 37.5597 41.9901C37.5089 41.9662 37.4684 41.9549 37.4381 41.9562C37.4078 41.9575 37.3687 41.9645 37.321 41.9773C37.3147 41.979 37.3004 41.9828 37.2781 41.9888C37.259 41.9939 37.2467 41.9989 37.2412 42.0038C37.2264 42.0248 37.2027 42.0636 37.1701 42.12C37.1366 42.1733 37.1013 42.2322 37.064 42.2967C37.03 42.3604 36.9966 42.4205 36.964 42.4769C36.9346 42.5325 36.9141 42.5704 36.9024 42.5906C36.8993 42.5914 36.8946 42.5995 36.8885 42.6148C36.8815 42.6269 36.8738 42.6426 36.8653 42.6619C36.86 42.6803 36.8547 42.6988 36.8495 42.7173C36.8465 42.7317 36.8447 42.7441 36.8441 42.7545L36.8792 43.3433L36.9137 43.4721ZM39.2337 43.009L39.1403 42.0114L39.1045 41.8778L39.0299 41.2177C39.036 41.2025 39.0518 41.1914 39.0772 41.1846C39.1018 41.1746 39.1189 41.1683 39.1284 41.1658C39.1539 41.1589 39.1851 41.1608 39.222 41.1714C39.2612 41.1779 39.2847 41.1955 39.2923 41.2241L39.3793 41.5485C39.3894 41.5356 39.4066 41.5105 39.4307 41.4734C39.4549 41.4362 39.4802 41.3971 39.5066 41.3559C39.5363 41.3139 39.5632 41.2743 39.5873 41.2371C39.6114 41.2 39.6266 41.1738 39.6327 41.1585C39.6591 41.1173 39.6933 41.0792 39.735 41.0441C39.7799 41.0082 39.8246 40.9843 39.8692 40.9724C39.9614 40.9477 40.0406 40.9571 40.1069 41.0007C40.1763 41.0435 40.2229 41.1094 40.2468 41.1985C40.2485 41.2048 40.2482 41.21 40.2458 41.2141C40.2458 41.2141 40.2467 41.2172 40.2484 41.2236L40.2535 41.2427L40.2908 42.1071L40.3943 42.4935C40.4929 42.4671 40.5896 42.4207 40.6843 42.3544C40.7814 42.2841 40.8711 42.2055 40.9535 42.1187C41.0359 42.0318 41.1098 41.9387 41.1753 41.8394C41.2398 41.7369 41.2941 41.6405 41.3381 41.5503L41.3572 41.5452C41.3795 41.5392 41.3991 41.5425 41.4161 41.555C41.4354 41.5635 41.448 41.5788 41.454 41.6011C41.4727 41.671 41.4676 41.7474 41.4387 41.8302C41.412 41.9089 41.3703 41.9883 41.3133 42.0683C41.2595 42.1475 41.1922 42.2269 41.1112 42.3065C41.0335 42.3853 40.9536 42.4561 40.8716 42.519C40.7928 42.581 40.7134 42.6347 40.6335 42.68C40.5536 42.7252 40.4834 42.756 40.423 42.7722C40.3626 42.7883 40.3119 42.79 40.2709 42.7771C40.23 42.7642 40.1953 42.7428 40.1668 42.713C40.1407 42.6791 40.1185 42.6407 40.1002 42.5979C40.0851 42.5542 40.0707 42.5069 40.0571 42.456L40.0404 42.394L39.9785 41.4186L39.9363 41.2612C39.86 41.2817 39.7926 41.3355 39.7342 41.4227C39.6789 41.5091 39.6339 41.6081 39.599 41.7197C39.5673 41.8305 39.5424 41.9411 39.5243 42.0517C39.5094 42.1613 39.5009 42.2505 39.4989 42.3193C39.4985 42.3432 39.4996 42.3855 39.5022 42.4462C39.5048 42.5069 39.5083 42.5707 39.5126 42.6377C39.5201 42.7039 39.5268 42.7669 39.5326 42.8267C39.5384 42.8865 39.5431 42.9295 39.5467 42.9558C39.555 42.974 39.5525 42.9901 39.5391 43.0039C39.529 43.0168 39.5152 43.029 39.4978 43.0405C39.4796 43.0488 39.4593 43.0559 39.4371 43.0619C39.418 43.067 39.4021 43.0713 39.3894 43.0747C39.3607 43.0823 39.3308 43.0852 39.2997 43.0834C39.2685 43.0815 39.2478 43.0615 39.2375 43.0233L39.2337 43.009ZM41.3923 42.1341C41.3914 42.1309 41.39 42.1193 41.3881 42.0994C41.3862 42.0794 41.3842 42.0595 41.3823 42.0396C41.3795 42.0165 41.3776 41.9965 41.3765 41.9798C41.3746 41.9598 41.3727 41.9467 41.371 41.9403L41.3659 41.9212L41.3583 41.8926L41.3445 41.5742C41.3679 41.4452 41.3942 41.3205 41.4233 41.2002C41.4556 41.0791 41.4993 40.9685 41.5543 40.8686C41.6093 40.7686 41.6797 40.6816 41.7655 40.6074C41.8545 40.5325 41.9706 40.4758 42.1137 40.4374C42.1423 40.4298 42.1799 40.4299 42.2263 40.4379C42.2751 40.4419 42.3236 40.4511 42.3718 40.4655C42.4231 40.479 42.4701 40.4953 42.5128 40.5146C42.5578 40.5298 42.5928 40.546 42.6178 40.5631C42.7122 40.5208 42.7816 40.4937 42.8261 40.4818C42.8698 40.4667 42.9075 40.4548 42.9393 40.4463C42.9703 40.4346 43.002 40.4193 43.0344 40.4004C43.07 40.3806 43.1217 40.3446 43.1895 40.2924C43.2393 40.262 43.2897 40.24 43.3406 40.2263C43.3628 40.2204 43.3861 40.2244 43.4103 40.2383C43.4376 40.2514 43.4547 40.2707 43.4616 40.2962C43.4701 40.328 43.4666 40.3596 43.4512 40.391C43.4357 40.4224 43.4129 40.4455 43.3828 40.4604L42.8223 40.7538L42.7762 40.7917C42.8191 40.9643 42.8248 41.1383 42.7934 41.3138C42.762 41.4892 42.7016 41.652 42.6123 41.802C42.523 41.9521 42.4082 42.0834 42.2679 42.196C42.1268 42.3054 41.9703 42.3831 41.7986 42.4291C41.7859 42.4325 41.7648 42.4365 41.7353 42.441C41.7067 42.4486 41.6876 42.4538 41.678 42.4563C41.6004 42.4464 41.537 42.4072 41.488 42.3385C41.4421 42.269 41.4102 42.2008 41.3923 42.1341ZM41.7232 42.1477C41.7306 42.1627 41.7455 42.1672 41.7677 42.1613C41.79 42.1553 41.8059 42.1511 41.8154 42.1485C41.9299 42.1178 42.0399 42.0577 42.1455 41.968C42.2501 41.8752 42.3378 41.7699 42.4085 41.6521C42.4815 41.5303 42.5325 41.4024 42.5614 41.2686C42.5926 41.1307 42.592 41.0013 42.5597 40.8804C42.4579 40.9077 42.354 40.927 42.2479 40.9384C42.1411 40.9466 42.0399 40.9634 41.9445 40.989L41.9397 40.9903L41.6562 41.5162C41.6399 41.5444 41.6305 41.5793 41.628 41.6209C41.6255 41.6625 41.6271 41.7064 41.6327 41.7526C41.6382 41.7989 41.6454 41.8447 41.6541 41.89C41.6629 41.9354 41.6719 41.9756 41.6813 42.0106C41.6839 42.0201 41.6898 42.0424 41.6992 42.0774C41.7086 42.1124 41.7166 42.1358 41.7232 42.1477Z" fill="white"/>
|
|
61
|
+
</g>
|
|
62
|
+
<path d="M46.9083 5.08812C46.9083 5.08812 48.8092 5.59745 49.9688 7.60595C51.1284 9.61446 50.6191 11.5153 50.6191 11.5153M47.927 1.28639C47.927 1.28639 51.0951 2.13528 53.1824 5.75058C55.2697 9.36588 54.4208 12.534 54.4208 12.534" stroke="#979797" stroke-width="0.898004" stroke-linecap="round" stroke-linejoin="round"/>
|
|
63
|
+
<path d="M11.2173 70.7851C11.2173 70.7851 10.708 72.6859 11.8676 74.6944C13.0272 76.7029 14.9281 77.2123 14.9281 77.2123M7.41557 69.7664C7.41557 69.7664 6.56668 72.9345 8.65398 76.5498C10.7413 80.1651 13.9094 81.014 13.9094 81.014" stroke="#979797" stroke-width="0.898004" stroke-linecap="round" stroke-linejoin="round"/>
|
|
64
|
+
<defs>
|
|
65
|
+
<filter id="filter0_f_65_606" x="37.9515" y="36.6004" width="5.47931" height="3.51956" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
66
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
67
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
68
|
+
<feGaussianBlur stdDeviation="0.210732" result="effect1_foregroundBlur_65_606"/>
|
|
69
|
+
</filter>
|
|
70
|
+
<clipPath id="clip0_65_606">
|
|
71
|
+
<rect x="0.597839" y="15.8463" width="51.4856" height="79.8665" rx="25.7428" transform="rotate(-15 0.597839 15.8463)" fill="white"/>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<svg width="144" height="132" viewBox="0 0 144 132" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M128.132 43.7986H102.853C100.633 43.7986 99.5358 42.2937 99.1613 41.637C98.7868 40.9803 98.0378 39.2564 99.1078 37.2863L108.016 20.8686C109.969 17.284 110.183 13.0428 108.578 9.26669C106.973 5.49062 103.816 2.75433 99.9103 1.7419L93.6239 0.127491C90.7199 -0.602096 88.3932 2.58312 86.4164 4.83202L55.2901 40.2415C49.657 46.6387 43.0333 54.1965 34.5094 54.1965H21.5574C16.2608 54.1965 11.9807 57.2612 11.9807 61.0373V115.681C11.9807 119.457 16.2608 122.522 21.5574 122.522H69.4145C70.003 122.576 70.5915 122.604 71.2068 122.604H113.794C123.397 122.604 131.904 115.982 134.445 106.514L143.594 63.6094C143.862 62.4054 143.996 61.2014 143.996 59.9701C143.942 51.0498 136.853 43.7986 128.132 43.7986Z" fill="url(#paint0_linear_65_425)"/>
|
|
3
|
+
<g filter="url(#filter0_bi_65_425)">
|
|
4
|
+
<rect y="40.0488" width="32.9618" height="91.953" rx="8" fill="url(#paint1_linear_65_425)" fill-opacity="0.5"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter id="filter0_bi_65_425" x="-16" y="24.0488" width="64.9618" height="123.953" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
8
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
9
|
+
<feGaussianBlur in="BackgroundImageFix" stdDeviation="8"/>
|
|
10
|
+
<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_65_425"/>
|
|
11
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_65_425" result="shape"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="2"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.35 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_65_425"/>
|
|
18
|
+
</filter>
|
|
19
|
+
<linearGradient id="paint0_linear_65_425" x1="12.0002" y1="123.001" x2="28.1537" y2="-13.6895" gradientUnits="userSpaceOnUse">
|
|
20
|
+
<stop stop-color="#FF3D73"/>
|
|
21
|
+
<stop offset="1" stop-color="#FF6774"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<linearGradient id="paint1_linear_65_425" x1="0.599305" y1="34.594" x2="35.6442" y2="35.5688" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop stop-color="#FE3C72"/>
|
|
25
|
+
<stop offset="1" stop-color="#E15561"/>
|
|
26
|
+
</linearGradient>
|
|
27
|
+
</defs>
|
|
28
|
+
</svg>
|