ca-components 0.0.46 → 0.0.47
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/animations/in-out.animation.mjs +1 -1
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +6 -5
- package/esm2022/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.mjs +1 -2
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +37 -150
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +7 -7
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +3 -3
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +4 -5
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +4 -5
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +247 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.mjs +15 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/models/ca-user-data.model.mjs +2 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/models/ca-user-group.model.mjs +2 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/pipes/filter-selected-items.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/pipes/group-selection-state.pipe.mjs +23 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/pipes/selected-users.pipe.mjs +19 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.mjs +5 -15
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-set.pipe.mjs +5 -25
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-user-box.pipe.mjs +1 -2
- package/esm2022/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.mjs +6 -2
- package/esm2022/lib/components/ca-filters/utils/constants/directive.constants.mjs +258 -1
- package/esm2022/lib/components/ca-filters/utils/helpers/filter.helper.mjs +76 -1
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +4 -1
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +28 -68
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.mjs +1 -1
- package/esm2022/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +6 -6
- package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +12 -6
- package/esm2022/lib/components/ca-input/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/enums/index.mjs +5 -0
- package/esm2022/lib/components/ca-input/enums/input-config-name-string.enum.mjs +3 -1
- package/esm2022/lib/components/ca-input/enums/input-string.enum.mjs +5 -0
- package/esm2022/lib/components/ca-input/models/index.mjs +4 -0
- package/esm2022/lib/components/ca-input/pipes/color-finder.pipe.mjs +62 -0
- package/esm2022/lib/components/ca-input/pipes/form-control.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-input/pipes/index.mjs +17 -0
- package/esm2022/lib/components/ca-input/pipes/show-dropdown-arrow.pipe.mjs +4 -3
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +233 -23
- package/esm2022/lib/components/ca-input/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/utils/index.mjs +3 -0
- package/esm2022/lib/components/ca-input/utils/input-change-value.type.mjs +2 -0
- package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +3 -1
- package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +4 -2
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +2 -2
- package/esm2022/lib/components/ca-period-content/models/driver-info.mjs +1 -1
- package/esm2022/lib/directives/hover-svg-directives.mjs +47 -0
- package/esm2022/lib/pipes/load-status-color.pipe.mjs +169 -0
- package/fesm2022/ca-components.mjs +1652 -699
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +4 -3
- package/lib/components/ca-filters/ca-filter.component.d.ts +5 -1
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +4 -5
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.d.ts +2 -3
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.d.ts +2 -3
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.d.ts +52 -0
- package/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.d.ts +4 -0
- package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-data.model.d.ts +10 -0
- package/lib/components/ca-filters/components/ca-user-filter/models/ca-user-group.model.d.ts +6 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/filter-selected-items.pipe.d.ts +8 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/group-selection-state.pipe.d.ts +11 -0
- package/lib/components/ca-filters/components/ca-user-filter/pipes/selected-users.pipe.d.ts +8 -0
- package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.d.ts +2 -1
- package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.d.ts +2 -1
- package/lib/components/ca-filters/utils/constants/directive.constants.d.ts +3 -0
- package/lib/components/ca-filters/utils/helpers/filter.helper.d.ts +16 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +3 -0
- package/lib/components/ca-input/ca-input.component.d.ts +10 -9
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +3 -3
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.d.ts +2 -2
- package/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.d.ts +2 -2
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +2 -2
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +1 -1
- package/lib/components/ca-input/config/index.d.ts +1 -0
- package/lib/components/ca-input/enums/index.d.ts +4 -0
- package/lib/components/ca-input/enums/input-config-name-string.enum.d.ts +3 -1
- package/lib/components/ca-input/enums/input-string.enum.d.ts +3 -0
- package/lib/components/ca-input/models/index.d.ts +3 -0
- package/lib/components/ca-input/pipes/color-finder.pipe.d.ts +7 -0
- package/lib/components/ca-input/pipes/form-control.pipe.d.ts +8 -0
- package/lib/components/ca-input/pipes/index.d.ts +16 -0
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +30 -6
- package/lib/components/ca-input/services/index.d.ts +1 -0
- package/lib/components/ca-input/utils/index.d.ts +2 -0
- package/lib/components/ca-input/utils/input-change-value.type.d.ts +1 -0
- package/lib/components/ca-input/utils/input-svg-routes.d.ts +2 -0
- package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +3 -1
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +1 -1
- package/lib/directives/hover-svg-directives.d.ts +15 -0
- package/lib/pipes/load-status-color.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/src/assets/ca-components/svg/common/ic_accounting.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_arrow_filter.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_contact.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_customer.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_debtor.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_document.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_driver.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_fmcsa.svg +5 -0
- package/src/assets/ca-components/svg/common/ic_integration.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_load.svg +5 -0
- package/src/assets/ca-components/svg/common/ic_location_map.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_miles.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_owner.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_password_key.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_settings.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_telematics.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_todo.svg +4 -0
- package/src/assets/ca-components/svg/common/ic_unsafe_driving.svg +3 -0
- package/src/assets/ca-components/svg/input/ic_dynamic_focus_label.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_dynamic_label.svg +6 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +0 -4
- package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +0 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type InputChangeValue = string | number | Date;
|
|
@@ -13,6 +13,7 @@ export declare enum ToolbarFilterStringEnum {
|
|
|
13
13
|
TRUCK_TYPE_FILTER = "truckTypeFilter",
|
|
14
14
|
TRAILER_TYPE_FILTER = "trailerTypeFilter",
|
|
15
15
|
USER_FILTER = "userFilter",
|
|
16
|
+
MODULE_FILTER = "moduleFilter",
|
|
16
17
|
STATE_FILTER = "stateFilter",
|
|
17
18
|
LABEL_FILTER = "labelFilter",
|
|
18
19
|
TIME_FILTER = "timeFilter",
|
|
@@ -35,7 +36,8 @@ export declare enum ToolbarFilterStringEnum {
|
|
|
35
36
|
DRIVER_FILTER_2 = "Driver Filter",
|
|
36
37
|
FUEL_STOP_FILTER_2 = "Fuel Stop Filter",
|
|
37
38
|
BROKER_FILTER_2 = "Broker Filter",
|
|
38
|
-
USER_FILTER_2 = "
|
|
39
|
+
USER_FILTER_2 = "User Filter",
|
|
40
|
+
MODULE_FILTER_2 = "Module Filter",
|
|
39
41
|
STATE_FILTER_2 = "State / Province Filter",
|
|
40
42
|
TRUCK_TYPE_FILTER_2 = "Truck Type Filter",
|
|
41
43
|
TRAILER_TYPE_FILTER_2 = "Trailer Type Filter",
|
|
@@ -7,7 +7,7 @@ export declare class CaPayrollListSummaryOverviewComponent {
|
|
|
7
7
|
isItemExpanded: boolean;
|
|
8
8
|
isExpanded: boolean;
|
|
9
9
|
index: number;
|
|
10
|
-
toggle: EventEmitter<
|
|
10
|
+
toggle: EventEmitter<PayrollListSummaryOverview>;
|
|
11
11
|
animationMarginParams: {
|
|
12
12
|
marginTop: string;
|
|
13
13
|
marginBottom: string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HoverSvgDirective {
|
|
4
|
+
private elRef;
|
|
5
|
+
private renderer2;
|
|
6
|
+
set fill(value: string | null);
|
|
7
|
+
set fillHover(value: string | null);
|
|
8
|
+
_fill: string;
|
|
9
|
+
_fillHover: string;
|
|
10
|
+
constructor(elRef: ElementRef, renderer2: Renderer2);
|
|
11
|
+
onMouseOver(): void;
|
|
12
|
+
onMouseLeave(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HoverSvgDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HoverSvgDirective, "[appHoverSvg]", never, { "fill": { "alias": "fill"; "required": false; }; "fillHover": { "alias": "fillHover"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoadStatusColorPipe implements PipeTransform {
|
|
4
|
+
transform(status: string, isBadge?: boolean): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadStatusColorPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LoadStatusColorPipe, "loadStatusColor", true>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.0749 0.900879H2.9249C2.38784 0.900879 1.87277 1.11423 1.49301 1.49399C1.11325 1.87375 0.899902 2.38882 0.899902 2.92588V15.0759C0.900141 15.6129 1.11357 16.1278 1.49327 16.5075C1.87298 16.8872 2.38791 17.1006 2.9249 17.1009H15.0749C15.3409 17.1009 15.6043 17.0485 15.85 16.9466C16.0958 16.8448 16.3191 16.6956 16.5071 16.5075C16.6952 16.3193 16.8443 16.096 16.946 15.8502C17.0477 15.6044 17.1 15.341 17.0999 15.075V2.92588C17.0999 2.65995 17.0475 2.39663 16.9458 2.15094C16.844 1.90526 16.6948 1.68203 16.5068 1.49399C16.3188 1.30595 16.0955 1.15679 15.8498 1.05502C15.6042 0.953257 15.3408 0.900879 15.0749 0.900879ZM7.4699 13.1976C7.59059 13.3184 7.65838 13.4822 7.65838 13.653C7.65838 13.8238 7.59059 13.9876 7.4699 14.1084L7.0145 14.5647C6.89368 14.6854 6.72988 14.7532 6.5591 14.7532C6.38832 14.7532 6.22453 14.6854 6.1037 14.5647L5.453 13.9077L4.7987 14.5611C4.73901 14.6209 4.6681 14.6684 4.59003 14.7008C4.51197 14.7332 4.42827 14.7499 4.34375 14.7499C4.25923 14.7499 4.17554 14.7332 4.09747 14.7008C4.0194 14.6684 3.94849 14.6209 3.8888 14.5611L3.4325 14.1057C3.31187 13.985 3.2441 13.8214 3.2441 13.6507C3.2441 13.4801 3.31187 13.3165 3.4325 13.1958L4.0859 12.5424L3.4325 11.889C3.31214 11.7683 3.24455 11.6049 3.24455 11.4345C3.24455 11.2641 3.31214 11.1006 3.4325 10.98L3.8888 10.5246C3.9484 10.4649 4.01918 10.4176 4.09709 10.3853C4.175 10.353 4.25851 10.3363 4.34285 10.3363C4.42719 10.3363 4.51071 10.353 4.58862 10.3853C4.66653 10.4176 4.7373 10.4649 4.7969 10.5246L5.4512 11.1771L6.1046 10.5246C6.16429 10.4647 6.2352 10.4173 6.31327 10.3849C6.39134 10.3525 6.47503 10.3358 6.55955 10.3358C6.64407 10.3358 6.72777 10.3525 6.80583 10.3849C6.8839 10.4173 6.95481 10.4647 7.0145 10.5246L7.4708 10.98C7.59122 11.1008 7.65883 11.2644 7.65883 11.4349C7.65883 11.6055 7.59122 11.7691 7.4708 11.8899L6.8165 12.5433L7.4699 13.1976ZM7.9847 5.77798C7.9847 5.86244 7.96805 5.94608 7.9357 6.0241C7.90335 6.10212 7.85594 6.173 7.79617 6.23268C7.7364 6.29237 7.66546 6.33968 7.58739 6.37192C7.50932 6.40416 7.42567 6.4207 7.3412 6.42058H6.4205V7.34488C6.4205 7.51555 6.35271 7.67922 6.23203 7.7999C6.11135 7.92058 5.94767 7.98838 5.777 7.98838H5.1353C4.96464 7.98838 4.80096 7.92058 4.68028 7.7999C4.5596 7.67922 4.4918 7.51555 4.4918 7.34488V6.42058H3.5675C3.39707 6.42058 3.23363 6.35288 3.11312 6.23237C2.9926 6.11186 2.9249 5.94841 2.9249 5.77798V5.13088C2.9249 4.96037 2.99258 4.79683 3.11306 4.67617C3.23355 4.55552 3.39699 4.48762 3.5675 4.48738H4.4918V3.56848C4.4918 3.39781 4.5596 3.23414 4.68028 3.11346C4.80096 2.99278 4.96464 2.92498 5.1353 2.92498H5.7779C5.94857 2.92498 6.11225 2.99278 6.23293 3.11346C6.35361 3.23414 6.4214 3.39781 6.4214 3.56848V4.49188H7.3457C7.51621 4.49212 7.67966 4.56002 7.80014 4.68067C7.92063 4.80133 7.9883 4.96487 7.9883 5.13538L7.9847 5.77798ZM15.0713 14.1066C15.0713 14.277 15.0036 14.4405 14.8831 14.561C14.7626 14.6815 14.5991 14.7492 14.4287 14.7492H10.6487C10.5643 14.7493 10.4807 14.7328 10.4027 14.7006C10.3247 14.6684 10.2538 14.6212 10.1941 14.5616C10.1343 14.502 10.0869 14.4312 10.0545 14.3533C10.0221 14.2754 10.0053 14.1919 10.0052 14.1075V13.464C10.0052 13.3795 10.0219 13.2959 10.0542 13.2179C10.0866 13.1398 10.134 13.069 10.1937 13.0093C10.2535 12.9496 10.3244 12.9023 10.4025 12.87C10.4806 12.8378 10.5642 12.8213 10.6487 12.8214H14.4242C14.5087 12.8213 14.5923 12.8378 14.6704 12.87C14.7485 12.9023 14.8194 12.9496 14.8792 13.0093C14.9389 13.069 14.9864 13.1398 15.0187 13.2179C15.0511 13.2959 15.0677 13.3795 15.0677 13.464L15.0713 14.1066ZM15.0713 11.6244C15.0711 11.7949 15.0032 11.9583 14.8825 12.0788C14.7619 12.1993 14.5983 12.267 14.4278 12.267H10.6559C10.4854 12.267 10.3219 12.1993 10.2012 12.0788C10.0805 11.9583 10.0126 11.7949 10.0124 11.6244V10.9809C10.0124 10.8102 10.0802 10.6465 10.2009 10.5259C10.3216 10.4052 10.4852 10.3374 10.6559 10.3374H14.4314C14.6021 10.3374 14.7657 10.4052 14.8864 10.5259C15.0071 10.6465 15.0749 10.8102 15.0749 10.9809L15.0713 11.6244ZM15.0713 5.77438C15.0713 5.94505 15.0035 6.10872 14.8828 6.2294C14.7621 6.35008 14.5985 6.41788 14.4278 6.41788H10.6559C10.4854 6.41788 10.3219 6.35021 10.2012 6.22972C10.0805 6.10924 10.0126 5.94579 10.0124 5.77528V5.13088C10.0124 4.96021 10.0802 4.79654 10.2009 4.67586C10.3216 4.55518 10.4852 4.48738 10.6559 4.48738H14.4314C14.6021 4.48738 14.7657 4.55518 14.8864 4.67586C15.0071 4.79654 15.0749 4.96021 15.0749 5.13088L15.0713 5.77438Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.759278 6.10098L9.24053 6.10098C9.37092 6.10106 9.4984 6.06218 9.60684 5.98924C9.71528 5.9163 9.79981 5.81259 9.84972 5.69124C9.89963 5.56989 9.91268 5.43634 9.88722 5.30752C9.86176 5.17869 9.79893 5.06036 9.70669 4.96752L5.46606 0.695402C5.3424 0.570909 5.17473 0.500977 4.9999 0.500977C4.82508 0.500977 4.65741 0.570909 4.53374 0.695402L0.29312 4.96752C0.200878 5.06036 0.13805 5.17869 0.112588 5.30752C0.0871262 5.43635 0.100176 5.56989 0.150086 5.69124C0.199996 5.8126 0.284521 5.9163 0.392963 5.98924C0.501405 6.06218 0.628889 6.10106 0.759278 6.10098Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.99922 0.451172C7.30819 0.451172 5.65514 0.952621 4.2491 1.89211C2.84306 2.83159 1.74718 4.16692 1.10005 5.72923C0.452922 7.29154 0.283605 9.01066 0.613509 10.6692C0.943413 12.3277 1.75772 13.8512 2.95346 15.0469C4.1492 16.2427 5.67266 17.057 7.3312 17.3869C8.98974 17.7168 10.7089 17.5475 12.2712 16.9003C13.8335 16.2532 15.1688 15.1573 16.1083 13.7513C17.0478 12.3453 17.5492 10.6922 17.5492 9.00117C17.5492 6.73357 16.6484 4.55884 15.045 2.95541C13.4415 1.35197 11.2668 0.451172 8.99922 0.451172ZM8.99922 3.76117C9.59957 3.76097 10.1865 3.93883 10.6858 4.27224C11.185 4.60566 11.5742 5.07965 11.804 5.63427C12.0338 6.18888 12.094 6.7992 11.977 7.38803C11.8599 7.97685 11.5708 8.51773 11.1463 8.94224C10.7218 9.36675 10.1809 9.65583 9.59208 9.7729C9.00325 9.88998 8.39293 9.82979 7.83832 9.59995C7.2837 9.37012 6.80971 8.98096 6.47629 8.4817C6.14288 7.98245 5.96503 7.39552 5.96522 6.79517C5.96522 6.39674 6.0437 6.00221 6.19617 5.63411C6.34865 5.26601 6.57212 4.93154 6.85386 4.64981C7.42284 4.08082 8.19455 3.76117 8.99922 3.76117ZM8.99922 15.6212C8.0369 15.6207 7.08628 15.4101 6.21384 15.004C5.34139 14.5979 4.56817 14.0062 3.94822 13.2702C4.27312 12.6492 4.76162 12.1288 5.36088 11.7654C5.96015 11.4019 6.64736 11.2093 7.34822 11.2082C7.43127 11.2092 7.51375 11.222 7.59322 11.2462C8.5065 11.5632 9.49995 11.5632 10.4132 11.2462C10.4927 11.222 10.5752 11.2092 10.6582 11.2082C11.3591 11.2092 12.0464 11.4018 12.6456 11.7652C13.2449 12.1287 13.7334 12.6491 14.0582 13.2702C13.4374 14.0072 12.6629 14.5996 11.789 15.0057C10.9151 15.4118 9.96289 15.6219 8.99922 15.6212Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.3749 2.27744H15.7499C16.1079 2.27744 16.4513 2.41967 16.7045 2.67285C16.9577 2.92602 17.0999 3.2694 17.0999 3.62744V5.65244C17.0999 6.01048 16.9577 6.35386 16.7045 6.60704C16.4513 6.86021 16.1079 7.00244 15.7499 7.00244H10.3499V6.66494C10.3499 6.57543 10.3143 6.48958 10.2511 6.42629C10.1878 6.363 10.1019 6.32744 10.0124 6.32744H7.9874C7.89789 6.32744 7.81205 6.363 7.74875 6.42629C7.68546 6.48958 7.6499 6.57543 7.6499 6.66494V7.00244H2.2499C1.89186 7.00244 1.54848 6.86021 1.29531 6.60704C1.04213 6.35386 0.899902 6.01048 0.899902 5.65244V3.62744C0.899902 3.2694 1.04213 2.92602 1.29531 2.67285C1.54848 2.41967 1.89186 2.27744 2.2499 2.27744H5.6249V1.60244C5.6249 1.2444 5.76713 0.90102 6.02031 0.647846C6.27348 0.394672 6.61686 0.252441 6.9749 0.252441H11.0249C11.3829 0.252441 11.7263 0.394672 11.9795 0.647846C12.2327 0.90102 12.3749 1.2444 12.3749 1.60244V2.27744ZM6.9749 2.27744H11.0249V1.60244H6.9749V2.27744Z" fill="#919191"/>
|
|
3
|
+
<path d="M16.7311 7.33352C16.7936 7.32764 16.8565 7.33928 16.9127 7.36716C16.9691 7.39521 17.0165 7.43848 17.0496 7.49208C17.0827 7.54568 17.1001 7.60748 17.0999 7.67047V12.4036C17.0999 12.7616 16.9577 13.105 16.7045 13.3581C16.4513 13.6113 16.1079 13.7536 15.7499 13.7536H2.2499C1.89186 13.7536 1.54848 13.6113 1.29531 13.3581C1.04213 13.105 0.899902 12.7616 0.899902 12.4036V7.67047C0.899902 7.60779 0.917356 7.54633 0.950308 7.49301C0.983259 7.4397 1.03041 7.39662 1.08647 7.36859C1.14253 7.34056 1.20529 7.32869 1.26771 7.33431C1.33014 7.33994 1.38976 7.36285 1.4399 7.40045C1.67208 7.57941 1.95677 7.67685 2.2499 7.67766H7.6499V8.69016C7.6499 8.77968 7.68546 8.86552 7.74875 8.92882C7.81205 8.99211 7.89789 9.02767 7.9874 9.02767H10.0115C10.101 9.02767 10.1869 8.99211 10.2502 8.92882C10.3134 8.86552 10.349 8.77968 10.349 8.69016V7.67766H15.749C16.0421 7.67685 16.3268 7.57941 16.559 7.40045C16.609 7.36257 16.6686 7.3394 16.7311 7.33352Z" fill="#919191"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.9999 14.0961C8.46751 14.0967 7.94846 13.9295 7.51659 13.6182L0.899907 8.8372V15.5814C0.899907 15.9842 1.05992 16.3705 1.34474 16.6553C1.62956 16.9401 2.01586 17.1001 2.41866 17.1001H15.5811C15.9839 17.1001 16.3702 16.9401 16.6551 16.6553C16.9399 16.3705 17.0999 15.9842 17.0999 15.5814V8.8372L10.4842 13.6182C10.0513 13.9281 9.53236 14.0952 8.9999 14.0961ZM16.5177 6.05589C16.2393 5.83416 15.974 5.62862 15.5811 5.33095V3.93776C15.5811 3.53496 15.4211 3.14867 15.1363 2.86385C14.8515 2.57903 14.4652 2.41902 14.0624 2.41902H11.6101C11.5089 2.34815 11.4238 2.28436 11.3216 2.21652C10.791 1.82064 9.737 0.887122 8.9999 0.900284C8.26584 0.888134 7.20879 1.82165 6.67722 2.21652C6.57597 2.2874 6.48789 2.35118 6.38866 2.41902H3.9374C3.53461 2.41902 3.14831 2.57903 2.86349 2.86385C2.57867 3.14867 2.41866 3.53496 2.41866 3.93776V5.33297C2.02682 5.62963 1.76256 5.83922 1.48108 6.0569C1.29956 6.19858 1.15283 6.37988 1.0521 6.58695C0.951371 6.79402 0.899314 7.02138 0.899907 7.25164V7.58779L3.9374 9.78287V3.93776H14.0624V9.78287L17.0999 7.58779V7.25164C17.101 7.02104 17.049 6.79328 16.9481 6.58595C16.8471 6.37861 16.6999 6.19726 16.5177 6.05589ZM8.73766 9.91956C8.47271 9.86613 8.21313 9.78887 7.96209 9.68871L7.81932 9.63809C7.7407 9.6084 7.65693 9.5947 7.57294 9.59779C7.48896 9.60087 7.40643 9.62069 7.33019 9.65607C7.25395 9.69145 7.18554 9.74168 7.12896 9.80383C7.07238 9.86598 7.02877 9.93879 7.00068 10.018C6.9726 10.0972 6.96059 10.1812 6.96538 10.2651C6.97017 10.3491 6.99165 10.4312 7.02857 10.5067C7.06549 10.5822 7.1171 10.6496 7.18038 10.7049C7.24366 10.7602 7.31735 10.8023 7.39711 10.8288L7.53481 10.8784C7.80707 10.9798 8.08579 11.0631 8.36911 11.1275V11.5325C8.36911 11.6156 8.38548 11.6978 8.41728 11.7746C8.44908 11.8514 8.49569 11.9212 8.55446 11.9799C8.61322 12.0387 8.68298 12.0853 8.75976 12.1171C8.83653 12.1489 8.91882 12.1653 9.00192 12.1653C9.08502 12.1653 9.16731 12.1489 9.24409 12.1171C9.32087 12.0853 9.39063 12.0387 9.44939 11.9799C9.50815 11.9212 9.55476 11.8514 9.58656 11.7746C9.61837 11.6978 9.63473 11.6156 9.63473 11.5325V11.1447C9.9673 11.1025 10.2781 10.9566 10.5231 10.7278C10.7681 10.499 10.9348 10.1989 10.9996 9.86995C11.2406 8.47372 9.9476 8.10416 9.17708 7.88243L8.99585 7.83079C8.20509 7.59994 8.22432 7.48553 8.25267 7.33062C8.29925 7.05927 8.79537 6.99244 9.26011 7.06433C9.45797 7.10083 9.65239 7.15401 9.84128 7.22329C9.99999 7.27807 10.1739 7.26757 10.3249 7.19408C10.4759 7.1206 10.5914 6.99016 10.6462 6.83146C10.701 6.67276 10.6905 6.4988 10.617 6.34784C10.5435 6.19689 10.4131 6.08131 10.2544 6.02653C10.0526 5.95624 9.84666 5.89842 9.63777 5.85339V5.4565C9.63777 5.28866 9.5711 5.12771 9.45243 5.00903C9.33375 4.89036 9.17279 4.82369 9.00496 4.82369C8.83713 4.82369 8.67617 4.89036 8.55749 5.00903C8.43882 5.12771 8.37215 5.28866 8.37215 5.4565V5.83112C8.0361 5.8689 7.72131 6.01449 7.47491 6.2461C7.22851 6.47772 7.06375 6.7829 7.00527 7.11597C6.7643 8.49397 8.07751 8.88175 8.63742 9.04578L8.82575 9.10045C9.75826 9.36573 9.78357 9.46394 9.74915 9.65327C9.70865 9.92563 9.20847 9.99246 8.73766 9.91956Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.366 0.564153H6.19201L6.16951 0.516453C6.11282 0.366298 6.01214 0.236745 5.88063 0.144736C5.74912 0.0527268 5.5929 0.00254521 5.43241 0.000753299H1.77481C1.43957 -0.00116909 1.11721 0.129737 0.878225 0.364844C0.639239 0.599951 0.503075 0.920127 0.499512 1.25535V14.7464C0.503075 15.0817 0.639209 15.4019 0.878169 15.6372C1.11713 15.8724 1.43949 16.0035 1.77481 16.0019H11.2797C11.3533 16.0018 11.4257 15.9837 11.4907 15.9492C11.5556 15.9147 11.6111 15.8648 11.6523 15.8039C11.6936 15.7427 11.7198 15.6726 11.7285 15.5994C11.7373 15.5261 11.7284 15.4518 11.7027 15.3827H12.366C12.5159 15.3816 12.6641 15.351 12.8021 15.2927C12.9402 15.2344 13.0654 15.1494 13.1706 15.0427C13.2758 14.936 13.359 14.8096 13.4153 14.6707C13.4717 14.5318 13.5002 14.3832 13.4991 14.2334V1.73775C13.5066 1.43558 13.394 1.14276 13.186 0.923453C12.978 0.704144 12.6916 0.576235 12.3894 0.567753H12.366M12.2166 14.0327H11.2095L10.6443 12.5216C10.8153 12.4933 10.9681 12.3984 11.0693 12.2578C11.1705 12.1171 11.2119 11.942 11.1843 11.771C11.1628 11.6126 11.0834 11.4678 10.9614 11.3646C10.8394 11.2614 10.6834 11.207 10.5237 11.2121H10.1547L9.69301 9.97275H10.6362C10.8092 9.96382 10.9722 9.8888 11.0914 9.7632C11.2107 9.63759 11.2772 9.47098 11.2772 9.29775C11.2772 9.12453 11.2107 8.95792 11.0914 8.83231C10.9722 8.7067 10.8092 8.63169 10.6362 8.62275H9.19621L8.73271 7.38075H10.6326C10.8036 7.38533 10.9695 7.32221 11.0942 7.20512C11.2189 7.08803 11.2923 6.92643 11.2985 6.75549C11.3046 6.58454 11.2431 6.41808 11.1271 6.2923C11.0112 6.16652 10.8503 6.09161 10.6794 6.08385H8.23951L7.77421 4.84905H10.6344C10.8074 4.84012 10.9704 4.7651 11.0897 4.6395C11.2089 4.51389 11.2754 4.34728 11.2754 4.17405C11.2754 4.00083 11.2089 3.83422 11.0897 3.70861C10.9704 3.583 10.8074 3.50799 10.6344 3.49905H7.28101L6.68611 1.91685H12.2166V14.0291V14.0327Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.99922 0.451172C7.30819 0.451172 5.65514 0.952621 4.2491 1.89211C2.84306 2.83159 1.74718 4.16692 1.10005 5.72923C0.452923 7.29154 0.283605 9.01066 0.613508 10.6692C0.943412 12.3277 1.75772 13.8512 2.95346 15.0469C4.1492 16.2427 5.67266 17.057 7.3312 17.3869C8.98974 17.7168 10.7089 17.5475 12.2712 16.9003C13.8335 16.2532 15.1688 15.1573 16.1083 13.7513C17.0478 12.3453 17.5492 10.6922 17.5492 9.00117C17.5494 7.87833 17.3283 6.76647 16.8987 5.72907C16.469 4.69168 15.8392 3.74908 15.0453 2.95512C14.2513 2.16115 13.3087 1.53137 12.2713 1.10173C11.2339 0.672103 10.1221 0.451041 8.99922 0.451172ZM8.99922 2.65817C10.489 2.66061 11.9304 3.18684 13.0713 4.14477C14.2123 5.1027 14.98 6.43133 15.2402 7.89817H12.0032C11.8106 7.5645 11.5337 7.28727 11.2002 7.09423C10.8668 6.90118 10.4885 6.79909 10.1032 6.79817H7.89722C7.51193 6.79909 7.13364 6.90118 6.8002 7.09423C6.46676 7.28727 6.18987 7.5645 5.99722 7.89817H2.75822C3.01826 6.43124 3.78594 5.1025 4.92691 4.14453C6.06788 3.18657 7.50943 2.66041 8.99922 2.65817ZM2.75822 10.1042H6.24922L7.89922 12.3112V15.2432C6.62017 15.0149 5.44187 14.4 4.52315 13.4812C3.60444 12.5625 2.98949 11.3842 2.76122 10.1052M10.1052 15.2432V12.3112L11.7492 10.1042H15.2352C15.007 11.3832 14.392 12.5615 13.4733 13.4802C12.5546 14.399 11.3763 15.0139 10.0972 15.2422" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.05523 2.20848C7.76724 2.29925 8.44286 2.57564 9.01433 3.00994C9.5858 3.44424 10.033 4.02117 10.3112 4.68287C10.6793 5.54303 10.8013 6.48854 10.6636 7.41398C10.5643 7.93097 10.6013 8.46491 10.7711 8.96322C10.9409 9.46154 11.2375 9.90706 11.6317 10.2559C11.9352 10.5454 12.2943 10.7702 12.6872 10.9167C13.0801 11.0633 13.4987 11.1285 13.9176 11.1085C14.3182 11.0885 14.7088 10.9771 15.0597 10.7829C15.4106 10.5886 15.7124 10.3167 15.942 9.98783C16.4194 9.40997 16.7213 8.7074 16.8118 7.96331C16.9022 7.21922 16.7776 6.46478 16.4526 5.78933C15.6247 3.88712 14.1014 2.37307 12.1941 1.55689C10.2869 0.740703 8.13987 0.684052 6.19223 1.39852C5.60037 1.60992 5.03812 1.89646 4.51927 2.25111C5.35304 2.06649 6.21538 2.05103 7.05523 2.20564V2.20848Z" fill="#919191"/>
|
|
3
|
+
<path d="M17.0613 8.48203C17.0605 8.48383 17.0597 8.48561 17.0589 8.48739C17.0552 8.49605 17.0514 8.50462 17.0484 8.51356C16.7599 9.51609 16.2073 10.4227 15.4484 11.1386C15.0249 11.572 14.5068 11.9014 13.9347 12.1011C13.3626 12.3008 12.752 12.3653 12.1508 12.2896C11.2453 12.1691 10.3838 11.826 9.64328 11.2911C9.39226 11.0971 9.12509 10.925 8.8447 10.7767C8.31449 10.5203 7.72108 10.4239 7.13698 10.4992C6.55287 10.5746 6.00337 10.8185 5.55562 11.2011C5.17358 11.4637 4.87048 11.8256 4.679 12.2478C4.48752 12.67 4.41492 13.1364 4.46905 13.5969C4.56137 14.3596 4.87598 15.0784 5.37372 15.6637C5.87145 16.2491 6.53034 16.6751 7.26836 16.8888C8.16398 17.1145 9.09544 17.1606 10.0089 17.0242C11.5968 16.8257 13.0905 16.1622 14.3024 15.1172C15.5143 14.0722 16.3902 12.6923 16.8201 11.1509C17.0701 10.2807 17.1533 9.37109 17.0655 8.46998V8.47188C17.0641 8.47531 17.0627 8.47869 17.0613 8.48203Z" fill="#919191"/>
|
|
4
|
+
<path d="M6.83496 8.32266C5.95287 8.6843 5.18196 9.27254 4.60024 10.0278C4.18107 10.5782 3.91024 11.227 3.81371 11.912C3.71717 12.5971 3.79815 13.2955 4.04891 13.9402C4.33409 14.8004 4.80646 15.5866 5.43199 16.2422C4.62318 15.8573 3.88802 15.3337 3.25979 14.6953C1.90717 13.3593 1.08177 11.5804 0.93508 9.6849C0.833964 8.61643 0.95139 7.53856 1.28021 6.51693C1.60902 5.4953 2.14235 4.55129 2.84771 3.74239C3.36935 3.17298 4.04542 2.76768 4.79346 2.57592C5.5415 2.38416 6.32918 2.41422 7.06042 2.66245C7.4669 2.79546 7.83295 3.02952 8.12424 3.34268C8.41553 3.65584 8.62252 4.03785 8.7258 4.45288C8.90564 5.01266 8.92397 5.6118 8.77869 6.18152C8.63341 6.75124 8.33041 7.26845 7.90448 7.67375C7.59301 7.95681 7.22987 8.17714 6.83496 8.32266Z" fill="#919191"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.5127 1.48491C13.5546 2.38297 13.8696 3.45012 13.3495 3.93712C12.3564 4.86759 10.6271 2.55206 9.73392 1.17914C9.67542 1.08964 9.59512 1.01691 9.50078 0.967953C9.40644 0.918997 9.30123 0.895471 9.19529 0.899642C9.08936 0.903814 8.98627 0.935542 8.89597 0.991769C8.80567 1.048 8.7312 1.12682 8.67974 1.22065C7.8196 2.82948 5.9853 5.74439 4.56706 4.41703C3.73892 3.64148 4.33502 2.63407 3.41987 1.7765C3.06615 1.46016 2.6095 1.28716 2.13752 1.29071C1.66555 1.29426 1.21149 1.47411 0.862449 1.79574C0.820161 1.83565 0.780093 1.8779 0.742429 1.9223C0.54542 2.05764 0.378822 2.23353 0.253509 2.43846C0.128196 2.6434 0.0469851 2.87279 0.0151779 3.11165C-0.0166292 3.35051 0.00168223 3.59348 0.068917 3.82469C0.136152 4.0559 0.250798 4.27016 0.405373 4.45348C0.438378 4.49398 0.474384 4.53246 0.511391 4.57093C1.46455 5.46292 2.61174 5.16525 3.12582 5.65023C4.36203 6.80749 1.67958 8.8051 0.383369 9.66064C0.307165 9.70986 0.243194 9.7762 0.196428 9.85451C0.149661 9.93282 0.121357 10.021 0.113714 10.1122C0.106071 10.2034 0.119295 10.2951 0.152358 10.3803C0.185421 10.4654 0.237434 10.5417 0.304356 10.6032L7.06248 16.9312C7.16377 17.0258 7.29307 17.0839 7.43033 17.0966C7.56758 17.1092 7.70511 17.0756 7.8216 17.0011C8.9948 16.2498 12.1873 14.0203 10.8611 12.7811C10.346 12.2971 9.0168 12.7811 8.06064 11.8861C7.89011 11.7315 7.75379 11.5421 7.66061 11.3304C7.56744 11.1188 7.51952 10.8895 7.51999 10.6578C7.52046 10.4261 7.56932 10.197 7.66335 9.98576C7.75739 9.77448 7.89448 9.58571 8.06564 9.43182C8.11666 9.3845 8.17008 9.33989 8.22567 9.29817C8.54268 8.94302 8.97826 8.71913 9.44856 8.66959C9.91887 8.62006 10.3906 8.74838 10.7731 9.02987C10.8211 9.06631 10.8671 9.10479 10.9121 9.14529C11.8273 10.0029 11.2312 11.0103 12.0573 11.7838C13.2785 12.9279 15.0918 10.3663 16.324 8.95595C16.3806 8.88987 16.4222 8.81201 16.4458 8.72787C16.4694 8.64374 16.4744 8.55538 16.4606 8.46905C16.4468 8.38271 16.4144 8.30051 16.3657 8.22824C16.3171 8.15597 16.2533 8.0954 16.179 8.0508C15.2238 7.44332 13.6426 6.22126 14.6507 5.27764C15.4799 4.50107 16.551 5.05591 17.4742 4.19328C17.6404 4.042 17.7732 3.85687 17.8638 3.65001C17.9544 3.44316 18.0008 3.21925 18 2.99297C17.9991 2.7667 17.9511 2.54315 17.8589 2.337C17.7667 2.13085 17.6326 1.94674 17.4652 1.79675C17.4226 1.75687 17.3778 1.71936 17.3312 1.68437C16.9983 1.30393 16.5377 1.06221 16.0387 1.00608C15.5398 0.949961 15.038 1.08344 14.6307 1.38063C14.588 1.41217 14.5469 1.44597 14.5077 1.48187" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.5876 6.1116V1.1736C15.5823 0.950068 15.4886 0.737748 15.3271 0.583124C15.1656 0.4285 14.9494 0.344171 14.7259 0.348599H10.8199V2.9241C10.8292 3.00168 10.8113 3.08007 10.7693 3.14597C10.7273 3.21187 10.6638 3.26121 10.5896 3.2856C9.58246 3.35176 8.57204 3.35176 7.56487 3.2856C7.37212 3.21435 7.33988 3.0576 7.33988 2.87685C7.34487 2.3644 7.34321 1.85195 7.34155 1.33729C7.34071 1.07913 7.33988 0.820407 7.33988 0.560849V0.348599H3.08738C2.9758 0.346112 2.86483 0.365707 2.76086 0.406256C2.65688 0.446805 2.56195 0.507508 2.48151 0.584875C2.40108 0.662242 2.33673 0.754746 2.29218 0.857068C2.24762 0.95939 2.22373 1.06951 2.22187 1.1811V6.1116C2.22373 6.22319 2.24762 6.33331 2.29218 6.43563C2.33673 6.53795 2.40108 6.63046 2.48151 6.70782C2.56195 6.78519 2.65688 6.84589 2.76086 6.88644C2.86483 6.92699 2.9758 6.94659 3.08738 6.9441H14.7221C14.8337 6.94659 14.9447 6.92699 15.0486 6.88644C15.1526 6.84589 15.2476 6.78519 15.328 6.70782C15.4084 6.63046 15.4728 6.53795 15.5173 6.43563C15.5619 6.33331 15.5858 6.22319 15.5876 6.1116Z" fill="#919191"/>
|
|
3
|
+
<path d="M17.0991 9.61731V15.0818C17.0995 15.1562 17.0852 15.2299 17.0569 15.2987C17.0286 15.3675 16.987 15.43 16.9344 15.4826C16.8818 15.5352 16.8193 15.5768 16.7505 15.6051C16.6817 15.6334 16.608 15.6477 16.5336 15.6473H10.7631C10.6894 15.6468 10.6165 15.6318 10.5486 15.6031C10.4806 15.5744 10.419 15.5326 10.3673 15.4801C10.3155 15.4276 10.2746 15.3654 10.2469 15.297C10.2192 15.2287 10.2053 15.1555 10.2059 15.0818V9.60681C10.2065 9.4592 10.2654 9.31781 10.3697 9.21343C10.4741 9.10905 10.6155 9.05015 10.7631 9.04956H12.5219V9.28506C12.5219 9.45317 12.5228 9.62027 12.5237 9.78676C12.5256 10.1179 12.5274 10.4467 12.5219 10.7761C12.5219 10.8938 12.5451 10.9958 12.6629 11.0431C13.3187 11.098 13.978 11.098 14.6339 11.0431C14.7516 10.9951 14.7749 10.9021 14.7749 10.7836V9.05181H16.5336C16.608 9.05141 16.6817 9.06577 16.7505 9.09405C16.8193 9.12232 16.8818 9.16396 16.9344 9.21655C16.987 9.26915 17.0286 9.33164 17.0569 9.40043C17.0852 9.46922 17.0995 9.54294 17.0991 9.61731Z" fill="#919191"/>
|
|
4
|
+
<path d="M7.79349 9.62123V15.0857C7.79409 15.1595 7.78014 15.2326 7.75244 15.3009C7.72475 15.3693 7.68386 15.4315 7.6321 15.484C7.58035 15.5365 7.51874 15.5783 7.45082 15.607C7.38289 15.6357 7.30998 15.6507 7.23624 15.6512H1.46199C1.38762 15.6516 1.3139 15.6373 1.24512 15.609C1.17633 15.5807 1.11383 15.5391 1.06124 15.4865C1.00865 15.4339 0.967007 15.3714 0.938728 15.3026C0.91045 15.2338 0.896095 15.1601 0.896492 15.0857V9.61073C0.898076 9.4622 0.958498 9.32037 1.06451 9.21633C1.17052 9.11228 1.31346 9.05453 1.46199 9.05573H3.22374V10.7807C3.22374 10.8985 3.23874 11.0005 3.35724 11.0477C4.0131 11.1026 4.67239 11.1026 5.32824 11.0477C5.44599 10.9997 5.46924 10.9067 5.46924 10.7882V9.05573H7.23699C7.31073 9.05622 7.38364 9.07124 7.45157 9.09994C7.51949 9.12863 7.5811 9.17043 7.63285 9.22296C7.68461 9.27548 7.7255 9.33769 7.75319 9.40603C7.78089 9.47437 7.79409 9.5475 7.79349 9.62123Z" fill="#919191"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.499023 2.9175V13.1388C0.499147 13.2159 0.518122 13.2917 0.554293 13.3598C0.590464 13.4279 0.642735 13.486 0.706546 13.5293C0.770358 13.5725 0.843773 13.5994 0.920392 13.6078C0.997011 13.6161 1.07451 13.6056 1.14612 13.5771L5.22042 11.7222V0.389404L1.09302 2.0409C0.9178 2.111 0.767579 2.23196 0.661712 2.38819C0.555845 2.54443 0.499182 2.72878 0.499023 2.9175H0.499023ZM6.16902 11.7231L11.839 13.6131V2.2794L6.16902 0.389404V11.7231ZM16.8511 0.423603L12.7768 2.2794V13.6113L16.9051 11.9598C17.0804 11.8898 17.2307 11.7689 17.3366 11.6126C17.4425 11.4564 17.4991 11.272 17.4991 11.0832V0.861906C17.4991 0.784722 17.4801 0.708726 17.4439 0.640569C17.4076 0.572412 17.3553 0.514166 17.2913 0.470923C17.2274 0.42768 17.1539 0.400757 17.0771 0.392508C17.0004 0.384259 16.9228 0.394934 16.8511 0.423603Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.3175 10.2769L13.2405 0.943913C13.1736 0.784198 13.0613 0.647559 12.9177 0.550814C12.774 0.454069 12.6052 0.401442 12.432 0.399414H9.58204L9.65704 1.07442C9.66051 1.107 9.65709 1.13994 9.64698 1.17111C9.63687 1.20228 9.62031 1.23097 9.59838 1.25531C9.57644 1.27965 9.54963 1.2991 9.51967 1.31238C9.48972 1.32567 9.4573 1.3325 9.42454 1.33242H8.57479C8.54202 1.3325 8.50961 1.32567 8.47965 1.31238C8.4497 1.2991 8.42288 1.27965 8.40095 1.25531C8.37901 1.23097 8.36245 1.20228 8.35235 1.17111C8.34224 1.13994 8.33881 1.107 8.34229 1.07442L8.41729 0.399414H5.56729C5.39411 0.401442 5.2253 0.454069 5.08165 0.550814C4.938 0.647559 4.82577 0.784198 4.75879 0.943913L0.678038 10.2769C0.613587 10.4161 0.584497 10.569 0.59335 10.7221C0.602203 10.8752 0.648726 11.0238 0.728788 11.1546C0.80885 11.2854 0.919974 11.3945 1.05229 11.472C1.18461 11.5496 1.33403 11.5932 1.48729 11.5992H7.23154L7.53154 8.74917C7.54359 8.63446 7.59771 8.52829 7.68344 8.45114C7.76918 8.37399 7.88045 8.33134 7.99579 8.33141H10.0028C10.1181 8.33134 10.2294 8.37399 10.3151 8.45114C10.4009 8.52829 10.455 8.63446 10.467 8.74917L10.767 11.5992H16.5083C16.6615 11.5932 16.811 11.5496 16.9433 11.472C17.0756 11.3945 17.1867 11.2854 17.2668 11.1546C17.3468 11.0238 17.3934 10.8752 17.4022 10.7221C17.4111 10.569 17.382 10.4161 17.3175 10.2769ZM8.19454 2.47691C8.20066 2.41956 8.22781 2.36652 8.27075 2.32801C8.31368 2.28951 8.36936 2.26827 8.42704 2.26841H9.57304C9.63071 2.26827 9.68639 2.28951 9.72933 2.32801C9.77227 2.36652 9.79942 2.41956 9.80554 2.47691L9.93979 3.74816C9.94494 3.79696 9.93977 3.8463 9.92464 3.89297C9.9095 3.93965 9.88472 3.98262 9.85191 4.01911C9.8191 4.05559 9.77899 4.08478 9.73418 4.10477C9.68937 4.12476 9.64086 4.13512 9.59179 4.13517H8.40904C8.35993 4.13524 8.31137 4.12496 8.2665 4.10501C8.22163 4.08505 8.18147 4.05587 8.14864 4.01936C8.11581 3.98284 8.09104 3.93982 8.07594 3.8931C8.06085 3.84637 8.05577 3.79698 8.06104 3.74816L8.19454 2.47691ZM9.80554 7.40141H8.19304C8.12757 7.40147 8.06282 7.38774 8.00301 7.36112C7.94319 7.33451 7.88965 7.2956 7.84586 7.24693C7.80207 7.19826 7.76901 7.14092 7.74884 7.07863C7.72867 7.01635 7.72184 6.95052 7.72879 6.88542L7.87879 5.48516C7.89084 5.37046 7.94496 5.26429 8.03069 5.18714C8.11643 5.10999 8.2277 5.06734 8.34304 5.06741H9.66004C9.77537 5.06734 9.88665 5.10999 9.97238 5.18714C10.0581 5.26429 10.1122 5.37046 10.1243 5.48516L10.2743 6.88542C10.2809 6.95072 10.2737 7.01669 10.2531 7.07902C10.2326 7.14134 10.199 7.19862 10.1548 7.24711C10.1106 7.2956 10.0566 7.33421 9.9964 7.36041C9.93621 7.38662 9.87118 7.39982 9.80554 7.39916V7.40141Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99987 5.54654C6.64426 5.54654 5.54532 6.64548 5.54532 8.00109C5.54532 9.3567 6.64426 10.4556 7.99987 10.4556C9.35547 10.4556 10.4544 9.3567 10.4544 8.00109C10.4544 6.64548 9.35547 5.54654 7.99987 5.54654ZM0.63623 8.00109C0.63623 3.93426 3.93304 0.637451 7.99987 0.637451C12.0667 0.637451 15.3635 3.93426 15.3635 8.00109C15.3635 12.0679 12.0667 15.3647 7.99987 15.3647C3.93304 15.3647 0.63623 12.0679 0.63623 8.00109Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.0984 6.46704C17.0978 7.28613 16.9167 8.09501 16.5678 8.8361C16.219 9.57718 15.711 10.2322 15.0802 10.7546C14.4493 11.277 13.711 11.6539 12.9179 11.8585C12.1247 12.063 11.2963 12.0902 10.4914 11.938L9.73144 12.793C9.66017 12.8733 9.5727 12.9375 9.47479 12.9815C9.37688 13.0254 9.27076 13.0481 9.16344 13.048H7.98544V14.314C7.98544 14.5153 7.90547 14.7084 7.76313 14.8507C7.62079 14.9931 7.42774 15.073 7.22644 15.073H5.96144V16.339C5.96144 16.4391 5.94167 16.5381 5.90328 16.6304C5.86489 16.7228 5.80862 16.8066 5.73772 16.8772C5.66682 16.9477 5.58267 17.0035 5.49012 17.0414C5.39757 17.0793 5.29845 17.0986 5.19844 17.098H1.65744C1.45614 17.098 1.26308 17.0181 1.12074 16.8757C0.978403 16.7334 0.898438 16.5403 0.898438 16.339V13.869C0.898385 13.6677 0.978228 13.4746 1.12044 13.332L6.24044 8.21204C5.9881 7.4466 5.9049 6.63552 5.9966 5.83479C6.0883 5.03406 6.35271 4.26278 6.77157 3.57421C7.19042 2.88564 7.75375 2.29619 8.42263 1.84656C9.09152 1.39694 9.85003 1.09785 10.6458 0.969969C11.4415 0.842083 12.2556 0.888442 13.0316 1.10584C13.8077 1.32325 14.5274 1.70651 15.1409 2.22917C15.7544 2.75183 16.2472 3.40142 16.5851 4.1331C16.9231 4.86477 17.0982 5.66108 17.0984 6.46704ZM11.5294 4.94804C11.5294 5.24847 11.6185 5.54216 11.7854 5.79195C11.9523 6.04175 12.1896 6.23645 12.4671 6.35142C12.7447 6.46638 13.0501 6.49647 13.3448 6.43786C13.6394 6.37924 13.9101 6.23457 14.1225 6.02214C14.335 5.8097 14.4796 5.53904 14.5382 5.24438C14.5969 4.94973 14.5668 4.64431 14.4518 4.36675C14.3368 4.08919 14.1421 3.85195 13.8923 3.68504C13.6426 3.51813 13.3489 3.42904 13.0484 3.42904C12.6456 3.42904 12.2592 3.58908 11.9743 3.87395C11.6895 4.15881 11.5294 4.54518 11.5294 4.94804Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.2022 6.48014C9.66021 6.22334 9.05001 6.1476 8.46169 6.26411C7.91872 6.372 7.41993 6.63848 7.02841 7.02984C6.63688 7.42121 6.3702 7.91989 6.26209 8.46281C6.14534 9.05109 6.22083 9.66132 6.4774 10.2034C6.73398 10.7455 7.15805 11.1908 7.68702 11.4734C8.21598 11.7561 8.82181 11.8612 9.41508 11.7732C10.0083 11.6852 10.5576 11.4088 10.9818 10.9848C11.4059 10.5608 11.6826 10.0117 11.7708 9.41846C11.859 8.82523 11.7541 8.21936 11.4717 7.69027C11.1893 7.16119 10.7442 6.73694 10.2022 6.48014Z" fill="#919191"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.08531 3.20039L3.14101 2.13749L3.13741 2.14109C3.23146 2.04597 3.34336 1.97035 3.46668 1.91854C3.59001 1.86674 3.72234 1.83977 3.8561 1.83919C3.98987 1.8386 4.12243 1.86441 4.2462 1.91513C4.36998 1.96586 4.48253 2.0405 4.57741 2.13479L5.18671 2.73779C5.81387 2.35607 6.49504 2.07116 7.20721 1.89269V1.02689C7.20721 0.757701 7.31383 0.499473 7.50375 0.308709C7.69367 0.117944 7.95143 0.0101764 8.22061 0.00898635L9.72001 0.00268595C9.9891 0.00244737 10.2473 0.109053 10.4378 0.299077C10.6283 0.4891 10.7356 0.746995 10.7361 1.01609V1.87289C11.4491 2.04575 12.1318 2.32552 12.7611 2.70269L13.3623 2.09429C13.4563 1.99907 13.5682 1.92335 13.6915 1.87147C13.8148 1.8196 13.9472 1.7926 14.081 1.79201C14.2148 1.79143 14.3474 1.81727 14.4712 1.86806C14.595 1.91885 14.7075 1.99359 14.8023 2.08799L15.8634 3.14279C15.9586 3.23684 16.0342 3.34876 16.086 3.47213C16.1378 3.59549 16.1647 3.72787 16.1652 3.86167C16.1657 3.99546 16.1398 4.12804 16.0889 4.25179C16.0381 4.37554 15.9633 4.48802 15.8688 4.58279L15.2631 5.19389C15.6453 5.82004 15.9308 6.50031 16.11 7.21169H16.9758C17.2453 7.21192 17.5038 7.31884 17.6947 7.50907C17.8856 7.69931 17.9934 7.95738 17.9946 8.22689L18 9.72269C17.9993 9.99117 17.8925 10.2485 17.7028 10.4385C17.5131 10.6285 17.256 10.7358 16.9875 10.737H16.1298C15.956 11.4508 15.6763 12.1346 15.3 12.7656L15.9111 13.3677C16.0057 13.4615 16.081 13.573 16.1325 13.6958C16.184 13.8187 16.2108 13.9505 16.2114 14.0837C16.212 14.2169 16.1863 14.3489 16.1359 14.4722C16.0855 14.5955 16.0112 14.7077 15.9174 14.8023L14.8608 15.8679C14.767 15.9625 14.6554 16.0376 14.5325 16.0891C14.4097 16.1405 14.2778 16.1673 14.1446 16.1678C14.0114 16.1683 13.8794 16.1425 13.7561 16.092C13.6329 16.0415 13.5208 15.9671 13.4262 15.8733L12.8151 15.2667C12.1876 15.6485 11.5061 15.9337 10.7937 16.1127V16.9776C10.7937 17.247 10.687 17.5055 10.4969 17.6964C10.3068 17.8873 10.0488 17.9952 9.77941 17.9964L8.28001 18.0027C8.14697 18.0034 8.0151 17.9779 7.89192 17.9276C7.76875 17.8773 7.65669 17.8033 7.56216 17.7096C7.46763 17.616 7.39247 17.5047 7.34099 17.382C7.2895 17.2593 7.2627 17.1277 7.26211 16.9947V16.1334C6.54921 15.9598 5.86654 15.6798 5.23711 15.3027L4.63501 15.9138C4.54123 16.0084 4.42974 16.0836 4.30689 16.1352C4.18403 16.1867 4.05223 16.2135 3.91901 16.2141C3.7858 16.2147 3.65377 16.189 3.53047 16.1386C3.40717 16.0881 3.29501 16.0139 3.20041 15.9201L2.13481 14.8626C2.04024 14.7688 1.96509 14.6572 1.91364 14.5343C1.86219 14.4114 1.83545 14.2796 1.83494 14.1464C1.83444 14.0132 1.86019 13.8812 1.91071 13.7579C1.96124 13.6346 2.03555 13.5225 2.12941 13.428L2.73601 12.8178C2.35348 12.1906 2.06824 11.5091 1.89001 10.7964H1.02331C0.753969 10.7964 0.495606 10.6896 0.304816 10.4995C0.114026 10.3094 0.0063626 10.0514 0.00541002 9.78209L1.00187e-05 8.28269C-0.000582619 8.14958 0.0251225 8.01767 0.0756496 7.89453C0.126177 7.77138 0.20053 7.65943 0.294441 7.5651C0.388353 7.47077 0.499972 7.39592 0.62289 7.34485C0.745808 7.29378 0.877603 7.26748 1.01071 7.26749H1.87021C2.04388 6.55475 2.3236 5.87214 2.70001 5.24249L2.09071 4.64039C1.99555 4.54633 1.9199 4.43441 1.8681 4.31105C1.81631 4.18768 1.78939 4.0553 1.78889 3.92151C1.78838 3.78771 1.81431 3.65513 1.86518 3.53139C1.91605 3.40764 1.99086 3.29515 2.08531 3.20039ZM8.03585 4.27455C7.09918 4.46535 6.24014 4.92967 5.56741 5.60879V5.61059C4.66577 6.51991 4.16227 7.75016 4.16767 9.0307C4.17307 10.3112 4.68693 11.5372 5.59621 12.4389C6.27464 13.1123 7.13757 13.5694 8.07581 13.7523C9.01406 13.9351 9.98548 13.8356 10.8672 13.4663C11.7488 13.097 12.5012 12.4745 13.029 11.6775C13.5568 10.8806 13.8364 9.94495 13.8324 8.98905C13.8283 8.03315 13.5409 7.09992 13.0064 6.30743C12.4718 5.51493 11.7143 4.89878 10.8295 4.53692C9.94474 4.17506 8.97252 4.08376 8.03585 4.27455Z" fill="#919191"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.99991 0.900879C7.39788 0.900879 5.83183 1.37594 4.49979 2.26598C3.16775 3.15601 2.12955 4.42106 1.51648 5.90114C0.903412 7.38123 0.743005 9.00986 1.05555 10.5811C1.36809 12.1524 2.13954 13.5956 3.27234 14.7284C4.40515 15.8612 5.84843 16.6327 7.41967 16.9452C8.99092 17.2578 10.6196 17.0974 12.0996 16.4843C13.5797 15.8712 14.8448 14.833 15.7348 13.501C16.6248 12.169 17.0999 10.6029 17.0999 9.00088C17.0999 6.85263 16.2465 4.79236 14.7275 3.27331C13.2084 1.75427 11.1482 0.900879 8.99991 0.900879ZM9.21591 13.9329L8.52291 10.2879C8.48664 10.0854 8.3898 9.89875 8.24517 9.75251C8.10054 9.60628 7.91494 9.50738 7.71291 9.46888L4.06791 8.77588C3.95059 8.75329 3.84534 8.68917 3.77145 8.59528C3.69756 8.50139 3.65999 8.38402 3.66561 8.26468C3.66561 8.24848 3.66561 8.23138 3.67101 8.21518C3.68088 8.12061 3.71755 8.03082 3.7767 7.95637C3.83585 7.88191 3.91502 7.82589 4.00491 7.79488L12.2939 5.05888C12.3958 5.02285 12.507 5.02285 12.6089 5.05888C12.6733 5.08056 12.7329 5.11449 12.7844 5.15878C12.8597 5.22532 12.9144 5.31209 12.9418 5.40877C12.9693 5.50546 12.9683 5.60799 12.9392 5.70418L10.2032 13.9932C10.1674 14.1006 10.097 14.1932 10.0031 14.2565C9.90919 14.3197 9.79696 14.3501 9.68394 14.3429C9.57092 14.3358 9.46346 14.2914 9.37831 14.2167C9.29316 14.142 9.23511 14.0413 9.21321 13.9302" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.71348 0.364103C6.0267 0.645705 6.05201 1.12348 5.77043 1.43672L3.49251 3.96797C3.3533 4.12301 3.15715 4.21477 2.94834 4.21793C2.73953 4.2211 2.54021 4.14199 2.39151 3.99645L1.12283 2.73082C0.8286 2.4334 0.8286 1.95246 1.12283 1.65504C1.41706 1.35762 1.90112 1.35762 2.19536 1.65504L2.89455 2.3543L4.6378 0.417892C4.91937 0.10465 5.39711 0.0793373 5.71032 0.360939L5.71348 0.364103ZM7.98825 2.19293C7.98825 1.63289 8.44067 1.18043 9.00066 1.18043H16.0875C16.6475 1.18043 17.0999 1.63289 17.0999 2.19293C17.0999 2.75297 16.6475 3.20543 16.0875 3.20543H9.00066C8.44067 3.20543 7.98825 2.75297 7.98825 2.19293ZM5.96342 7.25543C5.96342 6.69539 6.41584 6.24293 6.97583 6.24293H16.0875C16.6475 6.24293 17.0999 6.69539 17.0999 7.25543C17.0999 7.81547 16.6475 8.26793 16.0875 8.26793H6.97583C6.41584 8.26793 5.96342 7.81547 5.96342 7.25543ZM5.96342 12.3179C5.96342 11.7579 6.41584 11.3054 6.97583 11.3054H16.0875C16.6475 11.3054 17.0999 11.7579 17.0999 12.3179C17.0999 12.878 16.6475 13.3304 16.0875 13.3304H6.97583C6.41584 13.3304 5.96342 12.878 5.96342 12.3179ZM2.41998 10.7992C2.82275 10.7992 3.20901 10.9592 3.49381 11.244C3.7786 11.5288 3.9386 11.9151 3.9386 12.3179C3.9386 12.7207 3.7786 13.107 3.49381 13.3919C3.20901 13.6767 2.82275 13.8367 2.41998 13.8367C2.01722 13.8367 1.63096 13.6767 1.34616 13.3919C1.06136 13.107 0.901367 12.7207 0.901367 12.3179C0.901367 11.9151 1.06136 11.5288 1.34616 11.244C1.63096 10.9592 2.01722 10.7992 2.41998 10.7992Z" fill="#919191"/>
|
|
3
|
+
<path d="M2.41998 5.73668C2.82275 5.73668 3.20901 5.89669 3.49381 6.18151C3.7786 6.46633 3.9386 6.85263 3.9386 7.25543C3.9386 7.65823 3.7786 8.04453 3.49381 8.32935C3.20901 8.61417 2.82275 8.77418 2.41998 8.77418C2.01722 8.77418 1.63096 8.61417 1.34616 8.32935C1.06136 8.04453 0.901367 7.65823 0.901367 7.25543C0.901367 6.85263 1.06136 6.46633 1.34616 6.18151C1.63096 5.89669 2.01722 5.73668 2.41998 5.73668Z" fill="#919191"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.6367 11.5061L15.4125 9.33911C15.365 8.88465 15.1849 8.45398 14.8944 8.10027C14.6039 7.74657 14.2157 7.48533 13.7778 7.34879L13.1146 1.06164C13.1126 1.03738 13.1056 1.01379 13.0939 0.992394C13.0823 0.970996 13.0663 0.952256 13.0469 0.937373C13.0276 0.92249 13.0053 0.911792 12.9816 0.905964C12.9579 0.900137 12.9332 0.899307 12.9091 0.90353L11.3959 1.06164C11.3713 1.06396 11.3474 1.07111 11.3256 1.08268C11.3038 1.09425 11.2846 1.11 11.2689 1.12903C11.2533 1.14805 11.2416 1.16998 11.2345 1.19353C11.2274 1.21709 11.2251 1.2418 11.2277 1.26625L11.4706 3.58208C11.4274 3.2397 11.2499 2.92824 10.9769 2.71566C10.7039 2.50309 10.3575 2.40666 10.0134 2.44742L4.19395 3.05195C4.01992 3.06976 3.85117 3.1218 3.69751 3.20508C3.54385 3.28835 3.40834 3.40119 3.29884 3.53703C3.18934 3.67288 3.10804 3.82904 3.05965 3.99643C3.01127 4.16382 2.99676 4.33911 3.01698 4.51213L2.76477 2.1498C2.76243 2.12533 2.75525 2.10156 2.74364 2.07986C2.73202 2.05817 2.7162 2.03899 2.69709 2.02342C2.67798 2.00785 2.65596 1.99621 2.6323 1.98917C2.60865 1.98213 2.58383 1.97982 2.55927 1.98239L1.04603 2.1405C1.02145 2.14282 0.997575 2.14998 0.975788 2.16154C0.954001 2.17311 0.934731 2.18886 0.919095 2.20789C0.90346 2.22692 0.891768 2.24884 0.884695 2.27239C0.877622 2.29595 0.87531 2.32066 0.877889 2.34511L1.5411 8.62297C1.14164 8.84787 0.817208 9.18451 0.608004 9.59119C0.3988 9.99787 0.314009 10.4567 0.364132 10.9109L0.588321 13.0779C0.625544 13.4421 0.748031 13.7925 0.945948 14.1011C1.14387 14.4096 1.41169 14.6676 1.72792 14.8543L1.87738 16.2587C1.8902 16.3815 1.9272 16.5005 1.98626 16.609C2.04532 16.7176 2.12528 16.8134 2.22158 16.8912C2.31787 16.9689 2.42861 17.027 2.54746 17.0621C2.66631 17.0972 2.79094 17.1086 2.91423 17.0957L3.85767 16.9934C3.98145 16.9819 4.10166 16.9458 4.21126 16.8874C4.32087 16.829 4.41765 16.7494 4.49595 16.6532C4.57425 16.5571 4.63248 16.4463 4.66724 16.3275C4.70199 16.2086 4.71257 16.0841 4.69835 15.9611L4.5956 15.0217L12.1245 14.2405L12.2272 15.1705V15.1798C12.24 15.3023 12.277 15.4209 12.3362 15.529C12.3954 15.6371 12.4755 15.7324 12.572 15.8094C12.6684 15.8863 12.7793 15.9435 12.8981 15.9775C13.0169 16.0116 13.1413 16.0218 13.2641 16.0076L14.1982 15.9146H14.2075C14.4558 15.8871 14.6833 15.7634 14.8406 15.5702C14.998 15.377 15.0726 15.1298 15.0482 14.8822L14.8987 13.4778C15.1669 13.2287 15.3732 12.9209 15.5013 12.5787C15.6294 12.2364 15.6757 11.8693 15.6367 11.5061ZM3.36259 12.3153C3.23908 12.3294 3.11399 12.3189 2.99462 12.2843C2.87526 12.2497 2.76403 12.1917 2.66746 12.1138C2.57089 12.0358 2.49092 11.9394 2.43225 11.8303C2.37357 11.7212 2.33736 11.6015 2.32575 11.4782C2.31281 11.3555 2.32429 11.2314 2.35955 11.113C2.3948 10.9947 2.45313 10.8845 2.53121 10.7886C2.60928 10.6927 2.70557 10.6131 2.81457 10.5543C2.92356 10.4955 3.04313 10.4586 3.16643 10.4459C3.20379 10.4459 3.23182 10.4366 3.26918 10.4366C3.50164 10.4404 3.72473 10.5284 3.89668 10.6842C4.06863 10.84 4.17763 11.0529 4.20328 11.2829C4.2175 11.4059 4.20692 11.5305 4.17217 11.6493C4.13741 11.7681 4.07918 11.8789 4.00088 11.975C3.92258 12.0712 3.8258 12.1508 3.71619 12.2092C3.60659 12.2677 3.48637 12.3037 3.36259 12.3153ZM3.43452 8.52066L3.73343 6.36294C3.75792 6.15613 3.85288 5.96392 4.00246 5.81837C4.15204 5.67282 4.34721 5.58272 4.55544 5.56309L10.16 4.97716C10.3711 4.94814 10.5857 4.99366 10.7666 5.10579C10.9475 5.21793 11.0832 5.3896 11.1502 5.591L11.8975 7.63711L3.43452 8.52066ZM5.87252 11.1062C5.86552 11.0516 5.86976 10.9962 5.88497 10.9433C5.90018 10.8903 5.92605 10.8411 5.96101 10.7984C5.99597 10.7558 6.03928 10.7207 6.0883 10.6953C6.13732 10.6698 6.19104 10.6546 6.24616 10.6505L9.59023 10.2971C9.64568 10.2892 9.70215 10.2925 9.7563 10.3067C9.81044 10.321 9.86117 10.3459 9.90547 10.38C9.94976 10.4141 9.98672 10.4568 10.0142 10.5054C10.0416 10.554 10.059 10.6076 10.0652 10.663C10.0715 10.7184 10.0665 10.7745 10.0506 10.828C10.0346 10.8815 10.0081 10.9312 9.97253 10.9743C9.93694 11.0173 9.89303 11.0528 9.84341 11.0787C9.79379 11.1046 9.73947 11.1202 9.68365 11.1248L6.33023 11.4782C6.27563 11.4838 6.22048 11.4785 6.16793 11.4628C6.11537 11.4471 6.06643 11.4212 6.02393 11.3867C5.98142 11.3521 5.94616 11.3096 5.92018 11.2615C5.8942 11.2133 5.87801 11.1606 5.87252 11.1062ZM9.87047 12.9756L6.52639 13.329C6.41491 13.3401 6.30356 13.3067 6.21685 13.236C6.13014 13.1654 6.07516 13.0634 6.06401 12.9524C6.05286 12.8414 6.08646 12.7305 6.15741 12.6442C6.22835 12.5578 6.33084 12.5031 6.44232 12.492L9.7864 12.1479C9.89664 12.1368 10.0068 12.1697 10.0926 12.2395C10.1785 12.3093 10.233 12.4101 10.2441 12.5199C10.2553 12.6297 10.2222 12.7393 10.1521 12.8248C10.082 12.9103 9.98071 12.9645 9.87047 12.9756ZM12.7662 11.3294C12.7288 11.3294 12.7008 11.3387 12.6634 11.3387C12.4075 11.3484 12.1578 11.2583 11.9676 11.0874C11.7775 10.9165 11.6618 10.6785 11.6453 10.424C11.6288 10.1695 11.7128 9.9186 11.8794 9.72484C12.0459 9.53107 12.2819 9.40971 12.537 9.38662C12.7921 9.36353 13.0462 9.44053 13.2451 9.60122C13.444 9.76191 13.572 9.99358 13.6019 10.2469C13.6318 10.5002 13.5612 10.7551 13.4051 10.9573C13.2489 11.1595 13.0197 11.293 12.7662 11.3294Z" fill="#919191"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
|
2
|
+
<g id="tag" transform="translate(2.9 2.9)" stroke-miterlimit="10">
|
|
3
|
+
<path d="M 8.222838401794434 17.19999885559082 C 7.550047874450684 17.19999885559082 6.91752815246582 16.9379997253418 6.441808223724365 16.4622688293457 L -0.2622719407081604 9.758198738098145 C -0.737981915473938 9.282479286193848 -0.9999819397926331 8.649978637695312 -1.000001907348633 7.977199077606201 L -1.000001907348633 1.518748998641968 C -1.000001907348633 0.12990902364254 0.1299080699682236 -1.000000953674316 1.518748044967651 -1.000000953674316 L 7.97717809677124 -1.000000953674316 C 8.649937629699707 -1.000000953674316 9.282447814941406 -0.7380110025405884 9.758177757263184 -0.2622909843921661 L 16.46227836608887 6.441809177398682 C 16.93799781799316 6.917529106140137 17.19999885559082 7.550048828125 17.19999885559082 8.22283935546875 C 17.19999885559082 8.89561939239502 16.93799781799316 9.528139114379883 16.4622688293457 10.00385856628418 L 10.00385761260986 16.46227836608887 C 9.528138160705566 16.9379997253418 8.895618438720703 17.19999885559082 8.222838401794434 17.19999885559082 Z M 3.543748140335083 3.024999141693115 C 3.257708072662354 3.024999141693115 3.024998188018799 3.25770902633667 3.024998188018799 3.543749094009399 C 3.024998188018799 3.82978892326355 3.257708072662354 4.062499046325684 3.543748140335083 4.062499046325684 C 3.829787969589233 4.062499046325684 4.062498092651367 3.82978892326355 4.062498092651367 3.543749094009399 C 4.062498092651367 3.25770902633667 3.829787969589233 3.024999141693115 3.543748140335083 3.024999141693115 Z" stroke="none"/>
|
|
4
|
+
<path d="M 1.51874828338623 -1.9073486328125e-06 C 0.6799583435058594 -1.9073486328125e-06 -1.9073486328125e-06 0.6799592971801758 -1.9073486328125e-06 1.518749237060547 L -1.9073486328125e-06 7.977178573608398 C -1.9073486328125e-06 8.379968643188477 0.1600189208984375 8.766269683837891 0.4448385238647461 9.051088333129883 L 7.148918151855469 15.75516891479492 C 7.742018699645996 16.34827995300293 8.703647613525391 16.3482780456543 9.296748161315918 15.75516891479492 L 15.75516796112061 9.296749114990234 C 16.3482780456543 8.703649520874023 16.3482780456543 7.742018699645996 15.75516796112061 7.148919105529785 L 9.051088333129883 0.444828987121582 C 8.766258239746094 0.1600093841552734 8.379958152770996 -1.9073486328125e-06 7.977177619934082 -1.9073486328125e-06 L 1.51874828338623 -1.9073486328125e-06 M 3.543747901916504 5.062499046325684 C 2.704957962036133 5.062499046325684 2.024997711181641 4.382549285888672 2.024997711181641 3.54374885559082 C 2.024997711181641 2.704958915710449 2.704957962036133 2.024998664855957 3.543747901916504 2.024998664855957 C 4.382548332214355 2.024998664855957 5.062498092651367 2.704958915710449 5.062498092651367 3.54374885559082 C 5.062498092651367 4.382549285888672 4.382548332214355 5.062499046325684 3.543747901916504 5.062499046325684 M 1.51874828338623 -2.000001907348633 L 7.977177619934082 -2.000001907348633 C 8.917037963867188 -2.000001907348633 9.800668716430664 -1.634000778198242 10.46527862548828 -0.9694118499755859 L 17.16937828063965 5.734708786010742 C 17.8339786529541 6.399298667907715 18.19999885559082 7.282929420471191 18.19999885559082 8.22282886505127 C 18.19999885559082 9.162738800048828 17.8339786529541 10.0463695526123 17.16936874389648 10.71097946166992 L 10.71095848083496 17.16937828063965 C 10.04635810852051 17.83398818969727 9.162717819213867 18.19999885559082 8.222827911376953 18.19999885559082 C 7.282938003540039 18.19999885559082 6.399308204650879 17.83398818969727 5.734707832336426 17.16937828063965 L -0.9693717956542969 10.46529960632324 C -1.633981704711914 9.800689697265625 -2.000001907348633 8.917058944702148 -2.000001907348633 7.977178573608398 L -2.000001907348633 1.518749237060547 C -2.000001907348633 -0.4215011596679688 -0.4215011596679688 -2.000001907348633 1.51874828338623 -2.000001907348633 Z" stroke="none" fill="#e5e5e5"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
|
2
|
+
<g id="Label" transform="translate(-1084 -362)">
|
|
3
|
+
<rect id="Rectangle_63447" data-name="Rectangle 63447" width="18" height="18" transform="translate(1084 362)" opacity="0"/>
|
|
4
|
+
<path id="tag" d="M0,7.977V1.519A1.519,1.519,0,0,1,1.519,0H7.977A1.519,1.519,0,0,1,9.051.445l6.7,6.7a1.519,1.519,0,0,1,0,2.148L9.3,15.755a1.519,1.519,0,0,1-2.148,0l-6.7-6.7A1.519,1.519,0,0,1,0,7.977ZM3.544,2.025A1.519,1.519,0,1,0,5.063,3.544,1.519,1.519,0,0,0,3.544,2.025Z" transform="translate(1084.9 362.9)" />
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export class CaMoneyFilterSvgRoutes {
|
|
2
|
-
static { this.arrowLeftSvgRoute = 'assets/ca-components/svg/common/calendar/arrow-left.svg'; }
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtbW9uZXktZmlsdGVyLXN2Zy1yb3V0ZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1maWx0ZXJzL3V0aWxzL3N2Zy1yb3V0ZXMvY2EtbW9uZXktZmlsdGVyLXN2Zy1yb3V0ZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLHNCQUFzQjthQUN4QixzQkFBaUIsR0FBVyx5REFBeUQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBDYU1vbmV5RmlsdGVyU3ZnUm91dGVzIHtcbiAgICBzdGF0aWMgYXJyb3dMZWZ0U3ZnUm91dGU6IHN0cmluZyA9ICdhc3NldHMvY2EtY29tcG9uZW50cy9zdmcvY29tbW9uL2NhbGVuZGFyL2Fycm93LWxlZnQuc3ZnJztcbn1cbiJdfQ==
|