@sd-angular/core 19.0.0-beta.35 → 19.0.0-beta.37
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/assets/scss/core/grid.scss +40 -0
- package/assets/scss/sd-core.scss +1 -0
- package/components/button/src/button.component.d.ts +27 -27
- package/components/table/src/components/selector-action/action-filter.pipe.d.ts +11 -10
- package/components/table/src/models/table-option-selector.model.d.ts +11 -10
- package/fesm2022/sd-angular-core-components-button.mjs +60 -96
- package/fesm2022/sd-angular-core-components-button.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-import-excel.mjs +1 -1
- package/fesm2022/sd-angular-core-components-import-excel.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-preview.mjs +1 -1
- package/fesm2022/sd-angular-core-components-preview.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-table.mjs +6 -6
- package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-upload-file.mjs +1 -1
- package/fesm2022/sd-angular-core-components-upload-file.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-workflow.mjs +11 -11
- package/fesm2022/sd-angular-core-components-workflow.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs +75 -67
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-date-range.mjs +145 -245
- package/fesm2022/sd-angular-core-forms-date-range.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-select.mjs +79 -67
- package/fesm2022/sd-angular-core-forms-select.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules-layout.mjs +2 -2
- package/fesm2022/sd-angular-core-services-confirm.mjs +1 -1
- package/fesm2022/sd-angular-core-services-confirm.mjs.map +1 -1
- package/forms/autocomplete/src/autocomplete.component.d.ts +8 -8
- package/forms/date-range/src/date-range.component.d.ts +28 -33
- package/forms/select/src/select.component.d.ts +6 -6
- package/package.json +35 -35
- package/sd-angular-core-19.0.0-beta.37.tgz +0 -0
- package/utilities/models/index.d.ts +1 -0
- package/utilities/models/src/unwrap-signal.model.d.ts +6 -0
- package/sd-angular-core-19.0.0-beta.35.tgz +0 -0
|
@@ -228,7 +228,7 @@ class ColumnFilterComponent {
|
|
|
228
228
|
this.ref.markForCheck();
|
|
229
229
|
};
|
|
230
230
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ColumnFilterComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
231
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ColumnFilterComponent, isStandalone: true, selector: "column-filter", inputs: { _autoId: ["autoId", "_autoId"], _value: ["value", "_value"], _inlineOperator: ["inlineOperator", "_inlineOperator"], _columnFilter: ["columnFilter", "_columnFilter"], cacheValues: "cacheValues", _column: ["column", "_column"] }, outputs: { inlineOperatorChange: "inlineOperatorChange", operatorChange: "operatorChange", filterChange: "filterChange" }, ngImport: i0, template: "<div class=\"d-flex c-inline-column align-items-end\">\r\n @if (\r\n column.type === 'string' ||\r\n column.type === 'number' ||\r\n column.type === 'boolean' ||\r\n column.type === 'values' ||\r\n column.type === 'lazy-values' ||\r\n column.type === 'date' ||\r\n column.type === 'datetime' ||\r\n column.type === 'time'\r\n ) {\r\n <div class=\"d-flex align-items-center\" *ngIf=\"operators.length\">\r\n <!-- Only number column icon broken. add mb when not default symbol -->\r\n <sd-button\r\n class=\"{{ column.type === 'number' && inlineSymbol !== 'filter_alt' ? 'mb-4 mr-2 ' : 'mr-2 ' }}\"\r\n fontSet=\"material-symbols-outlined\"\r\n [prefixIcon]=\"inlineSymbol\"\r\n [matMenuTriggerFor]=\"menu\"\r\n type=\"link\">\r\n </sd-button>\r\n <mat-menu #menu=\"matMenu\">\r\n <button *ngFor=\"let operator of operators\" (click)=\"onChangeOperator(operator)\" mat-menu-item type=\"button\">\r\n <mat-icon fontSet=\"material-symbols-outlined\" class=\"{{ column.type === 'number' ? 'mb-8 ' : '' }}\">{{\r\n operator.symbol\r\n }}</mat-icon>\r\n <span> {{ operator.display }}</span>\r\n </button>\r\n </mat-menu>\r\n </div>\r\n @if (column.type === 'string') {\r\n <sd-input\r\n *ngIf=\"column.type === 'string'\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n type=\"text\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (keyupEnter)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input>\r\n } @else if (column.type === 'number') {\r\n @if (!column.filter?.type) {\r\n <sd-input-number\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (keyupEnter)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n } @else if (column.filter?.type === 'split-number') {\r\n <div class=\"d-flex align-items-center\">\r\n <sd-input-number\r\n [autoId]=\"autoId + '-from-' + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].from\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n <div class=\"mx-4\">-</div>\r\n <sd-input-number\r\n [autoId]=\"autoId + '-to-' + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].to\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n </div>\r\n }\r\n } @else if (column.type === 'boolean') {\r\n <sd-select\r\n *ngIf=\"column.type === 'boolean'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"[\r\n { value: '1', display: column.option?.displayOnTrue || 'True' },\r\n { value: '0', display: column.option?.displayOnFalse || 'False' }\r\n ]\"\r\n valueField=\"value\"\r\n displayField=\"display\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n <ng-template sdSelectDisplayDef let-item=\"item\">\r\n <sd-badge *ngIf=\"item.value === '1'\" color=\"success\" [title]=\"column.option?.displayOnTrue || 'True'\"> </sd-badge>\r\n <sd-badge *ngIf=\"item.value === '0'\" color=\"error\" [title]=\"column.option?.displayOnFalse || 'False'\"> </sd-badge>\r\n </ng-template>\r\n </sd-select>\r\n } @else if (column.type === 'values') {\r\n <sd-select\r\n *ngIf=\"column.option?.selection !== 'AUTOCOMPLETE'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n [multiple]=\"column.option.selection === 'MULTIPLE' || column.option.selection === 'MULTIPLEAUTOCOMPLETE'\"\r\n hideInlineError>\r\n </sd-select>\r\n <sd-autocomplete\r\n *ngIf=\"column.option?.selection === 'AUTOCOMPLETE'\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-autocomplete>\r\n } @else if (column.type === 'lazy-values') {\r\n <sd-select\r\n *ngIf=\"column.option?.selection === 'MULTIPLE'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n multiple\r\n hideInlineError>\r\n </sd-select>\r\n <sd-autocomplete\r\n *ngIf=\"!column.option?.selection\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-autocomplete>\r\n } @else if (column.type === 'date' || column.type === 'datetime' || column.type === 'time') {\r\n @if (!column.filter?.type || column.filter?.type === 'daterange') {\r\n <sd-date-range\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date-range>\r\n } @else if (column.filter?.type === 'date') {\r\n <sd-date\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n } @else if (column.filter?.type === 'split-date') {\r\n <div class=\"d-flex align-items-center\">\r\n <sd-date\r\n [autoId]=\"autoId + '-from-' + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].from\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n <div class=\"mx-4\">-</div>\r\n <sd-date\r\n [autoId]=\"autoId + '-to-' + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].to\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n </div>\r\n }\r\n }\r\n } @else {\r\n <sd-input [autoId]=\"autoId + column.field\" type=\"text\" size=\"sm\" disabled></sd-input>\r\n }\r\n</div>\r\n", styles: [":host ::ng-deep .c-inline-column .mat-mdc-text-field-wrapper{background-color:#fff}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "title", "width", "size", "tooltip", "prefixIcon", "suffixIcon", "fontSet", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdInputNumber, selector: "sd-input-number", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "type", "precision", "min", "max", "validator", "inlineError", "hyperlink", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdSelect, selector: "sd-select", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "cacheChecksum", "limit", "hyperlink", "hideInlineError", "required", "disabled", "viewed", "multiple", "validator", "inlineError", "appearance", "items", "model"], outputs: ["modelChange", "sdChange", "sdSelection"] }, { kind: "component", type: SdAutocomplete, selector: "sd-autocomplete", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "limit", "cacheChecksum", "hyperlink", "items", "hideInlineError", "addable", "required", "disabled", "viewed", "validator", "inlineError", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdSelection", "sdAdd"] }, { kind: "component", type: SdDate, selector: "sd-date", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDateRange, selector: "sd-date-range", inputs: ["autoId", "name", "appearance", "size", "form", "disabled", "required", "label", "helperText", "hideInlineError", "min", "max", "model"], outputs: ["modelChange", "sdChange"] }, { kind: "component", type: SdBadge, selector: "sd-badge", inputs: ["type", "color", "primary", "secondary", "success", "info", "warning", "error", "fontSet", "title", "description", "tooltip", "icon", "size"], outputs: ["sdClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
231
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ColumnFilterComponent, isStandalone: true, selector: "column-filter", inputs: { _autoId: ["autoId", "_autoId"], _value: ["value", "_value"], _inlineOperator: ["inlineOperator", "_inlineOperator"], _columnFilter: ["columnFilter", "_columnFilter"], cacheValues: "cacheValues", _column: ["column", "_column"] }, outputs: { inlineOperatorChange: "inlineOperatorChange", operatorChange: "operatorChange", filterChange: "filterChange" }, ngImport: i0, template: "<div class=\"d-flex c-inline-column align-items-end\">\r\n @if (\r\n column.type === 'string' ||\r\n column.type === 'number' ||\r\n column.type === 'boolean' ||\r\n column.type === 'values' ||\r\n column.type === 'lazy-values' ||\r\n column.type === 'date' ||\r\n column.type === 'datetime' ||\r\n column.type === 'time'\r\n ) {\r\n <div class=\"d-flex align-items-center\" *ngIf=\"operators.length\">\r\n <!-- Only number column icon broken. add mb when not default symbol -->\r\n <sd-button\r\n class=\"{{ column.type === 'number' && inlineSymbol !== 'filter_alt' ? 'mb-4 mr-2 ' : 'mr-2 ' }}\"\r\n fontSet=\"material-symbols-outlined\"\r\n [prefixIcon]=\"inlineSymbol\"\r\n [matMenuTriggerFor]=\"menu\"\r\n type=\"link\">\r\n </sd-button>\r\n <mat-menu #menu=\"matMenu\">\r\n <button *ngFor=\"let operator of operators\" (click)=\"onChangeOperator(operator)\" mat-menu-item type=\"button\">\r\n <mat-icon fontSet=\"material-symbols-outlined\" class=\"{{ column.type === 'number' ? 'mb-8 ' : '' }}\">{{\r\n operator.symbol\r\n }}</mat-icon>\r\n <span> {{ operator.display }}</span>\r\n </button>\r\n </mat-menu>\r\n </div>\r\n @if (column.type === 'string') {\r\n <sd-input\r\n *ngIf=\"column.type === 'string'\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n type=\"text\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (keyupEnter)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input>\r\n } @else if (column.type === 'number') {\r\n @if (!column.filter?.type) {\r\n <sd-input-number\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (keyupEnter)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n } @else if (column.filter?.type === 'split-number') {\r\n <div class=\"d-flex align-items-center\">\r\n <sd-input-number\r\n [autoId]=\"autoId + '-from-' + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].from\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n <div class=\"mx-4\">-</div>\r\n <sd-input-number\r\n [autoId]=\"autoId + '-to-' + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].to\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-input-number>\r\n </div>\r\n }\r\n } @else if (column.type === 'boolean') {\r\n <sd-select\r\n *ngIf=\"column.type === 'boolean'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"[\r\n { value: '1', display: column.option?.displayOnTrue || 'True' },\r\n { value: '0', display: column.option?.displayOnFalse || 'False' }\r\n ]\"\r\n valueField=\"value\"\r\n displayField=\"display\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n <ng-template sdSelectDisplayDef let-item=\"item\">\r\n <sd-badge *ngIf=\"item.value === '1'\" color=\"success\" [title]=\"column.option?.displayOnTrue || 'True'\"> </sd-badge>\r\n <sd-badge *ngIf=\"item.value === '0'\" color=\"error\" [title]=\"column.option?.displayOnFalse || 'False'\"> </sd-badge>\r\n </ng-template>\r\n </sd-select>\r\n } @else if (column.type === 'values') {\r\n <sd-select\r\n *ngIf=\"column.option?.selection !== 'AUTOCOMPLETE'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n [multiple]=\"column.option.selection === 'MULTIPLE' || column.option.selection === 'MULTIPLEAUTOCOMPLETE'\"\r\n hideInlineError>\r\n </sd-select>\r\n <sd-autocomplete\r\n *ngIf=\"column.option?.selection === 'AUTOCOMPLETE'\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-autocomplete>\r\n } @else if (column.type === 'lazy-values') {\r\n <sd-select\r\n *ngIf=\"column.option?.selection === 'MULTIPLE'\"\r\n [autoId]=\"autoId + column.field\"\r\n [style.flex]=\"1\"\r\n [style.width]=\"'100%'\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n multiple\r\n hideInlineError>\r\n </sd-select>\r\n <sd-autocomplete\r\n *ngIf=\"!column.option?.selection\"\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [items]=\"items\"\r\n [valueField]=\"column.option.valueField\"\r\n [displayField]=\"column.option.displayField\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-autocomplete>\r\n } @else if (column.type === 'date' || column.type === 'datetime' || column.type === 'time') {\r\n @if (!column.filter?.type || column.filter?.type === 'daterange') {\r\n <sd-date-range\r\n style=\"flex: 1\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date-range>\r\n } @else if (column.filter?.type === 'date') {\r\n <sd-date\r\n [autoId]=\"autoId + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field]\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n } @else if (column.filter?.type === 'split-date') {\r\n <div class=\"d-flex align-items-center\">\r\n <sd-date\r\n [autoId]=\"autoId + '-from-' + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].from\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n <div class=\"mx-4\">-</div>\r\n <sd-date\r\n [autoId]=\"autoId + '-to-' + column.field\"\r\n style=\"flex: 1\"\r\n type=\"date\"\r\n size=\"sm\"\r\n [(model)]=\"columnFilter[column.field].to\"\r\n (sdChange)=\"onFilterChange()\"\r\n [disabled]=\"column.filter?.disabled\"\r\n hideInlineError>\r\n </sd-date>\r\n </div>\r\n }\r\n }\r\n } @else {\r\n <sd-input [autoId]=\"autoId + column.field\" type=\"text\" size=\"sm\" disabled></sd-input>\r\n }\r\n</div>\r\n", styles: [":host ::ng-deep .c-inline-column .mat-mdc-text-field-wrapper{background-color:#fff}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdInputNumber, selector: "sd-input-number", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "type", "precision", "min", "max", "validator", "inlineError", "hyperlink", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdSelect, selector: "sd-select", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "cacheChecksum", "limit", "hyperlink", "hideInlineError", "required", "disabled", "viewed", "multiple", "validator", "inlineError", "appearance", "items", "model"], outputs: ["modelChange", "sdChange", "sdSelection"] }, { kind: "component", type: SdAutocomplete, selector: "sd-autocomplete", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "limit", "cacheChecksum", "hyperlink", "items", "hideInlineError", "addable", "required", "disabled", "viewed", "validator", "inlineError", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdSelection", "sdAdd"] }, { kind: "component", type: SdDate, selector: "sd-date", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDateRange, selector: "sd-date-range", inputs: ["autoId", "name", "size", "form", "label", "helperText", "hideInlineError", "required", "disabled", "appearance", "min", "max", "model"], outputs: ["modelChange", "sdChange"] }, { kind: "component", type: SdBadge, selector: "sd-badge", inputs: ["type", "color", "primary", "secondary", "success", "info", "warning", "error", "fontSet", "title", "description", "tooltip", "icon", "size"], outputs: ["sdClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
232
232
|
}
|
|
233
233
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ColumnFilterComponent, decorators: [{
|
|
234
234
|
type: Component,
|
|
@@ -423,7 +423,7 @@ class ExternalFilterComponent {
|
|
|
423
423
|
});
|
|
424
424
|
};
|
|
425
425
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ExternalFilterComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
426
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ExternalFilterComponent, isStandalone: true, selector: "external-filter", inputs: { _autoId: ["autoId", "_autoId"], _filter: ["filter", "_filter"], _externalFilters: ["externalFilters", "_externalFilters"], _filterRegister: ["filterRegister", "_filterRegister"] }, ngImport: i0, template: "@if (!filter?.disabled) {\r\n @if (!isMobileOrTablet && externalFilters.length) {\r\n <sd-section [hideHeader]=\"filter?.hideExternalFilterToolbar\" icon=\"filter_alt\" iconColor=\"secondary\" title=\"B\u1ED9 l\u1ECDc\" collapsable>\r\n <div class=\"d-flex mr-4\" sdHeaderRight>\r\n <sd-button\r\n [autoId]=\"autoId + 'clearFilter'\"\r\n [disabled]=\"!filtered\"\r\n type=\"link\"\r\n prefixIcon=\"cleaning_services\"\r\n tooltip=\"X\u00F3a l\u1EF1a ch\u1ECDn\"\r\n (click)=\"$event.stopPropagation(); clearFilter($event)\"></sd-button>\r\n <sd-button\r\n [autoId]=\"autoId + 'setting'\"\r\n type=\"link\"\r\n prefixIcon=\"settings\"\r\n tooltip=\"T\u00F9y ch\u1EC9nh\"\r\n [matMenuTriggerFor]=\"menu\"\r\n (click)=\"$event.stopPropagation()\"></sd-button>\r\n <mat-menu #menu=\"matMenu\" class=\"sd-custom-panel-filter-configuration\">\r\n @for (externalFilter of externalFilters; track externalFilter.field) {\r\n <button mat-menu-item (click)=\"onCheckboxChange($event, externalFilter)\" [disabled]=\"externalFilter.required\">\r\n <sd-checkbox\r\n [label]=\"externalFilter.title\"\r\n [model]=\"inlineExternal[externalFilter.field]\"\r\n [disabled]=\"externalFilter.required\" />\r\n </button>\r\n }\r\n </mat-menu>\r\n </div>\r\n <div class=\"row mx-0\" style=\"row-gap: 16px\">\r\n @for (item of externalFilters; track item.field) {\r\n @if (inlineExternal[item.field]) {\r\n <div class=\"col-md-3 col-sm-6 px-8\" [class.col-lg-2]=\"col === 2\" [class.col-lg-3]=\"col === 3\">\r\n @if (item.type === 'string') {\r\n <sd-input\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n type=\"text\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (keyupEnter)=\"onKeyupEnter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-input>\r\n } @else if (item.type === 'number') {\r\n <sd-input-number\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (keyupEnter)=\"onKeyupEnter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-input-number>\r\n } @else if (item.type === 'boolean') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"[\r\n { value: true, display: item.option?.displayOnTrue || 'True' },\r\n { value: false, display: item.option?.displayOnFalse || 'False' }\r\n ]\"\r\n valueField=\"value\"\r\n displayField=\"display\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.type === 'date') {\r\n <sd-date\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n hideInlineError>\r\n </sd-date>\r\n } @else if (item.type === 'datetime') {\r\n <sd-datetime\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n hideInlineError>\r\n </sd-datetime>\r\n } @else if (item.type === 'daterange') {\r\n <sd-date-range\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n appearance=\"outline\"\r\n hideInlineError>\r\n </sd-date-range>\r\n } @else if (item.type === 'values') {\r\n @if (item.option.selection === 'MULTIPLE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.option.selection === 'AUTOCOMPLETE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.option.selection === 'MULTIPLEAUTOCOMPLETE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n }\r\n } @else if (item.type === 'lazy-values') {\r\n @if (item.option.selection === 'MULTIPLE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n }\r\n } @else if (item.type === 'custom' && item.filterDef) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n item.filterDef;\r\n context: { form: form, externalFilter: externalFilter, autoId: autoId + item.field }\r\n \"></ng-container>\r\n }\r\n </div>\r\n }\r\n }\r\n </div>\r\n @if (filter?.manualFilter) {\r\n <div class=\"d-flex justify-content-end mt-16 px-8\">\r\n <sd-button\r\n [autoId]=\"autoId + 'onSubmit'\"\r\n [disabled]=\"form.invalid\"\r\n type=\"fill\"\r\n color=\"primary\"\r\n title=\"T\u00ECm ki\u1EBFm\"\r\n prefixIcon=\"filter_alt\"\r\n (click)=\"onSubmit()\">\r\n </sd-button>\r\n </div>\r\n }\r\n </sd-section>\r\n }\r\n <!-- <sd-popup-filter [filterRegister]=\"filterRegister!\" [columns]=\"columns\" [externalFilters]=\"externalFilters\">\r\n </sd-popup-filter> -->\r\n}\r\n", styles: [":host{display:block;padding-left:0;padding-right:0}::ng-deep .sd-custom-panel-filter-configuration{width:240px;max-height:550px;overflow-y:auto}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: SdSection, selector: "sd-section", inputs: ["title", "subTitle", "icon", "iconColor", "collapsed", "collapsable", "hideHeader"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdInputNumber, selector: "sd-input-number", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "type", "precision", "min", "max", "validator", "inlineError", "hyperlink", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdSelect, selector: "sd-select", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "cacheChecksum", "limit", "hyperlink", "hideInlineError", "required", "disabled", "viewed", "multiple", "validator", "inlineError", "appearance", "items", "model"], outputs: ["modelChange", "sdChange", "sdSelection"] }, { kind: "component", type: SdDate, selector: "sd-date", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDatetime, selector: "sd-datetime", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDateRange$1, selector: "sd-date-range", inputs: ["autoId", "name", "appearance", "size", "form", "disabled", "required", "label", "helperText", "hideInlineError", "min", "max", "model"], outputs: ["modelChange", "sdChange"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "title", "width", "size", "tooltip", "prefixIcon", "suffixIcon", "fontSet", "disabled", "loading"], outputs: ["click"] }, { kind: "pipe", type: FilterValuesPipe, name: "filterValues" }, { kind: "component", type: SdCheckbox, selector: "sd-checkbox", inputs: ["autoId", "name", "form", "label", "color", "disabled", "model", "inlineError"], outputs: ["modelChange", "sdChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
426
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ExternalFilterComponent, isStandalone: true, selector: "external-filter", inputs: { _autoId: ["autoId", "_autoId"], _filter: ["filter", "_filter"], _externalFilters: ["externalFilters", "_externalFilters"], _filterRegister: ["filterRegister", "_filterRegister"] }, ngImport: i0, template: "@if (!filter?.disabled) {\r\n @if (!isMobileOrTablet && externalFilters.length) {\r\n <sd-section [hideHeader]=\"filter?.hideExternalFilterToolbar\" icon=\"filter_alt\" iconColor=\"secondary\" title=\"B\u1ED9 l\u1ECDc\" collapsable>\r\n <div class=\"d-flex mr-4\" sdHeaderRight>\r\n <sd-button\r\n [autoId]=\"autoId + 'clearFilter'\"\r\n [disabled]=\"!filtered\"\r\n type=\"link\"\r\n prefixIcon=\"cleaning_services\"\r\n tooltip=\"X\u00F3a l\u1EF1a ch\u1ECDn\"\r\n (click)=\"$event.stopPropagation(); clearFilter($event)\"></sd-button>\r\n <sd-button\r\n [autoId]=\"autoId + 'setting'\"\r\n type=\"link\"\r\n prefixIcon=\"settings\"\r\n tooltip=\"T\u00F9y ch\u1EC9nh\"\r\n [matMenuTriggerFor]=\"menu\"\r\n (click)=\"$event.stopPropagation()\"></sd-button>\r\n <mat-menu #menu=\"matMenu\" class=\"sd-custom-panel-filter-configuration\">\r\n @for (externalFilter of externalFilters; track externalFilter.field) {\r\n <button mat-menu-item (click)=\"onCheckboxChange($event, externalFilter)\" [disabled]=\"externalFilter.required\">\r\n <sd-checkbox\r\n [label]=\"externalFilter.title\"\r\n [model]=\"inlineExternal[externalFilter.field]\"\r\n [disabled]=\"externalFilter.required\" />\r\n </button>\r\n }\r\n </mat-menu>\r\n </div>\r\n <div class=\"row mx-0\" style=\"row-gap: 16px\">\r\n @for (item of externalFilters; track item.field) {\r\n @if (inlineExternal[item.field]) {\r\n <div class=\"col-md-3 col-sm-6 px-8\" [class.col-lg-2]=\"col === 2\" [class.col-lg-3]=\"col === 3\">\r\n @if (item.type === 'string') {\r\n <sd-input\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n type=\"text\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (keyupEnter)=\"onKeyupEnter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-input>\r\n } @else if (item.type === 'number') {\r\n <sd-input-number\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (keyupEnter)=\"onKeyupEnter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-input-number>\r\n } @else if (item.type === 'boolean') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"[\r\n { value: true, display: item.option?.displayOnTrue || 'True' },\r\n { value: false, display: item.option?.displayOnFalse || 'False' }\r\n ]\"\r\n valueField=\"value\"\r\n displayField=\"display\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.type === 'date') {\r\n <sd-date\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n hideInlineError>\r\n </sd-date>\r\n } @else if (item.type === 'datetime') {\r\n <sd-datetime\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n hideInlineError>\r\n </sd-datetime>\r\n } @else if (item.type === 'daterange') {\r\n <sd-date-range\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n [min]=\"item.minDate\"\r\n [max]=\"item.maxDate\"\r\n appearance=\"outline\"\r\n hideInlineError>\r\n </sd-date-range>\r\n } @else if (item.type === 'values') {\r\n @if (item.option.selection === 'MULTIPLE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.option.selection === 'AUTOCOMPLETE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else if (item.option.selection === 'MULTIPLEAUTOCOMPLETE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items | filterValues | async\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n }\r\n } @else if (item.type === 'lazy-values') {\r\n @if (item.option.selection === 'MULTIPLE') {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n multiple\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n } @else {\r\n <sd-select\r\n [autoId]=\"autoId + item.field\"\r\n [label]=\"item.title\"\r\n [items]=\"item.option.items\"\r\n [valueField]=\"item.option.valueField\"\r\n [displayField]=\"item.option.displayField\"\r\n [(model)]=\"externalFilter![item.field]\"\r\n (sdChange)=\"onFilter()\"\r\n appearance=\"outline\"\r\n [form]=\"form\"\r\n [required]=\"item.required\"\r\n hideInlineError>\r\n </sd-select>\r\n }\r\n } @else if (item.type === 'custom' && item.filterDef) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n item.filterDef;\r\n context: { form: form, externalFilter: externalFilter, autoId: autoId + item.field }\r\n \"></ng-container>\r\n }\r\n </div>\r\n }\r\n }\r\n </div>\r\n @if (filter?.manualFilter) {\r\n <div class=\"d-flex justify-content-end mt-16 px-8\">\r\n <sd-button\r\n [autoId]=\"autoId + 'onSubmit'\"\r\n [disabled]=\"form.invalid\"\r\n type=\"fill\"\r\n color=\"primary\"\r\n title=\"T\u00ECm ki\u1EBFm\"\r\n prefixIcon=\"filter_alt\"\r\n (click)=\"onSubmit()\">\r\n </sd-button>\r\n </div>\r\n }\r\n </sd-section>\r\n }\r\n <!-- <sd-popup-filter [filterRegister]=\"filterRegister!\" [columns]=\"columns\" [externalFilters]=\"externalFilters\">\r\n </sd-popup-filter> -->\r\n}\r\n", styles: [":host{display:block;padding-left:0;padding-right:0}::ng-deep .sd-custom-panel-filter-configuration{width:240px;max-height:550px;overflow-y:auto}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: SdSection, selector: "sd-section", inputs: ["title", "subTitle", "icon", "iconColor", "collapsed", "collapsable", "hideHeader"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdInputNumber, selector: "sd-input-number", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "type", "precision", "min", "max", "validator", "inlineError", "hyperlink", "appearance", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdSelect, selector: "sd-select", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "valueField", "displayField", "disabledField", "cacheChecksum", "limit", "hyperlink", "hideInlineError", "required", "disabled", "viewed", "multiple", "validator", "inlineError", "appearance", "items", "model"], outputs: ["modelChange", "sdChange", "sdSelection"] }, { kind: "component", type: SdDate, selector: "sd-date", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDatetime, selector: "sd-datetime", inputs: ["autoId", "name", "size", "form", "label", "helperText", "placeholder", "hideInlineError", "required", "disabled", "viewed", "inlineError", "hyperlink", "appearance", "min", "minDate", "max", "maxDate", "model"], outputs: ["modelChange", "sdChange", "sdFocus"] }, { kind: "component", type: SdDateRange$1, selector: "sd-date-range", inputs: ["autoId", "name", "size", "form", "label", "helperText", "hideInlineError", "required", "disabled", "appearance", "min", "max", "model"], outputs: ["modelChange", "sdChange"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "pipe", type: FilterValuesPipe, name: "filterValues" }, { kind: "component", type: SdCheckbox, selector: "sd-checkbox", inputs: ["autoId", "name", "form", "label", "color", "disabled", "model", "inlineError"], outputs: ["modelChange", "sdChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
427
427
|
}
|
|
428
428
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ExternalFilterComponent, decorators: [{
|
|
429
429
|
type: Component,
|
|
@@ -541,7 +541,7 @@ class SelectorActionComponent {
|
|
|
541
541
|
}
|
|
542
542
|
};
|
|
543
543
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SelectorActionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
544
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SelectorActionComponent, isStandalone: true, selector: "selector-action", inputs: { tableOption: "tableOption", selectedTableItems: "selectedTableItems" }, outputs: { clear: "clear" }, ngImport: i0, template: "@let actions = selectedTableItems | actionFilter: tableOption?.selector?.actions;\n<sd-quick-action [isOpened]=\"!!actions?.length\">\n <div class=\"d-flex align-items-center\" sdMessage>\n <div class=\"c-bg-length\">\n <span class=\"c-length\">{{ selectedTableItems?.length }}</span>\n </div>\n <div class=\"c-message\">\n {{ tableOption?.selector?.message || 'd\u1EEF li\u1EC7u \u0111\u01B0\u1EE3c ch\u1ECDn' }}\n </div>\n </div>\n <div class=\"d-flex align-items-center mr-8\" sdAction>\n <ng-container *ngFor=\"let action of actions\">\n @if (action.variant === 'normal') {\n <sd-button\n class=\"ml-4\"\n [tooltip]=\"action.tooltip\"\n [prefixIcon]=\"action.icon\"\n [color]=\"action.color\"\n [type]=\"action.type || 'light'\"\n [fontSet]=\"action.fontSet\"\n [title]=\"action.title\"\n (click)=\"onClickAction(action)\"></sd-button>\n } @else if (action.variant === 'children') {\n <sd-button\n class=\"ml-4\"\n [tooltip]=\"action.tooltip\"\n [prefixIcon]=\"action.icon || 'more_vert'\"\n [color]=\"action.color || 'secondary'\"\n [type]=\"action.type || 'light'\"\n [fontSet]=\"action.fontSet\"\n [title]=\"action.title\"\n [matMenuTriggerFor]=\"menu\">\n </sd-button>\n <mat-menu #menu=\"matMenu\">\n <span>\n <button\n *ngFor=\"let child of action.children\"\n mat-menu-item\n (click)=\"onClickAction(child)\">\n @if(child.icon) {\n <mat-icon [fontSet]=\"child.fontSet || 'material-icons'\" class=\"c-icon\">{{ child.icon }} </mat-icon>\n }\n <span> {{ child.title }}</span>\n </button>\n </span>\n </mat-menu>\n }\n </ng-container>\n <sd-button class=\"ml-4\" prefixIcon=\"close\" color=\"secondary\" type=\"outline\" (click)=\"onClear()\" width=\"35px\"></sd-button>\n </div>\n</sd-quick-action>\n", styles: [".c-bg-length{display:flex;flex-direction:column;align-items:flex-start;padding:12px 8px;position:static;width:auto;min-width:48px;height:48px;left:0;top:0;background:#2962ff;border-radius:4px 0 0 4px}.c-bg-length .c-length{position:static;width:auto;min-width:32px;height:24px;left:8px;top:12px;font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;line-height:24px;text-align:center;color:#fff}.c-message{position:static;min-width:200px;height:20px;left:0;top:6px;font-family:Roboto;font-style:normal;font-weight:400;font-size:14px;line-height:20px;color:#000;margin:0 0 0 8px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "
|
|
544
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SelectorActionComponent, isStandalone: true, selector: "selector-action", inputs: { tableOption: "tableOption", selectedTableItems: "selectedTableItems" }, outputs: { clear: "clear" }, ngImport: i0, template: "@let actions = selectedTableItems | actionFilter: tableOption?.selector?.actions;\n<sd-quick-action [isOpened]=\"!!actions?.length\">\n <div class=\"d-flex align-items-center\" sdMessage>\n <div class=\"c-bg-length\">\n <span class=\"c-length\">{{ selectedTableItems?.length }}</span>\n </div>\n <div class=\"c-message\">\n {{ tableOption?.selector?.message || 'd\u1EEF li\u1EC7u \u0111\u01B0\u1EE3c ch\u1ECDn' }}\n </div>\n </div>\n <div class=\"d-flex align-items-center mr-8\" sdAction>\n <ng-container *ngFor=\"let action of actions\">\n @if (action.variant === 'normal') {\n <sd-button\n class=\"ml-4\"\n [tooltip]=\"action.tooltip\"\n [prefixIcon]=\"action.icon\"\n [color]=\"action.color\"\n [type]=\"action.type || 'light'\"\n [fontSet]=\"action.fontSet\"\n [title]=\"action.title\"\n (click)=\"onClickAction(action)\"></sd-button>\n } @else if (action.variant === 'children') {\n <sd-button\n class=\"ml-4\"\n [tooltip]=\"action.tooltip\"\n [prefixIcon]=\"action.icon || 'more_vert'\"\n [color]=\"action.color || 'secondary'\"\n [type]=\"action.type || 'light'\"\n [fontSet]=\"action.fontSet\"\n [title]=\"action.title\"\n [matMenuTriggerFor]=\"menu\">\n </sd-button>\n <mat-menu #menu=\"matMenu\">\n <span>\n <button\n *ngFor=\"let child of action.children\"\n mat-menu-item\n (click)=\"onClickAction(child)\">\n @if(child.icon) {\n <mat-icon [fontSet]=\"child.fontSet || 'material-icons'\" class=\"c-icon\">{{ child.icon }} </mat-icon>\n }\n <span> {{ child.title }}</span>\n </button>\n </span>\n </mat-menu>\n }\n </ng-container>\n <sd-button class=\"ml-4\" prefixIcon=\"close\" color=\"secondary\" type=\"outline\" (click)=\"onClear()\" width=\"35px\"></sd-button>\n </div>\n</sd-quick-action>\n", styles: [".c-bg-length{display:flex;flex-direction:column;align-items:flex-start;padding:12px 8px;position:static;width:auto;min-width:48px;height:48px;left:0;top:0;background:#2962ff;border-radius:4px 0 0 4px}.c-bg-length .c-length{position:static;width:auto;min-width:32px;height:24px;left:8px;top:12px;font-family:Roboto;font-style:normal;font-weight:500;font-size:16px;line-height:24px;text-align:center;color:#fff}.c-message{position:static;min-width:200px;height:20px;left:0;top:6px;font-family:Roboto;font-style:normal;font-weight:400;font-size:14px;line-height:20px;color:#000;margin:0 0 0 8px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdQuickAction, selector: "sd-quick-action", inputs: ["isOpened"] }, { kind: "pipe", type: ActionFilterPipe, name: "actionFilter" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
545
545
|
}
|
|
546
546
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SelectorActionComponent, decorators: [{
|
|
547
547
|
type: Component,
|
|
@@ -775,7 +775,7 @@ class ConfigComponent {
|
|
|
775
775
|
this.dragDisabled = true;
|
|
776
776
|
}
|
|
777
777
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$2.SdConfirmService }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Component });
|
|
778
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ConfigComponent, isStandalone: true, selector: "config", inputs: { tableOption: "tableOption" }, host: { listeners: { "window:mouseup": "mouseUp($event)" } }, providers: [ConfigService], viewQueries: [{ propertyName: "modal", first: true, predicate: SdModal, descendants: true }, { propertyName: "table", first: true, predicate: ["table"], descendants: true }], ngImport: i0, template: "<sd-modal width=\"sm\" [title]=\"'Thi\u1EBFt l\u1EADp b\u1EA3ng'\" #modal>\r\n @if (configuration) {\r\n <div class=\"c-container\">\r\n <div class=\"c-table\" style=\"max-height: 70vh\">\r\n <table\r\n #table\r\n mat-table\r\n [dataSource]=\"configuration.columns!\"\r\n cdkDropList\r\n [cdkDropListData]=\"configuration.columns\"\r\n (cdkDropListDropped)=\"dropTable($event)\">\r\n >\r\n <!-- <ng-container matColumnDef=\"stt\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 50px\">#</th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item; let idx = index\"></td>\r\n </ng-container> -->\r\n <ng-container matColumnDef=\"invisible\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 96px\">\r\n {{ 'Hi\u1EC3n th\u1ECB' }}\r\n </th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item\">\r\n <div class=\"d-flex\" style=\"gap: 8px\">\r\n <div class=\"c-handle\" (mousedown)=\"handleMouseDown()\" (mouseup)=\"handleMouseUp()\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#5f6368\">\r\n <path d=\"M0 0h24v24H0V0z\" fill=\"none\" />\r\n <path\r\n d=\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\" />\r\n </svg>\r\n </div>\r\n <sd-switch [model]=\"!item.invisible\" (modelChange)=\"item.invisible = !item.invisible\" />\r\n </div>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"title\">\r\n <th mat-header-cell class=\"c-th px-4\" *matHeaderCellDef>\r\n {{ 'Ti\u00EAu \u0111\u1EC1 c\u1ED9t' }}\r\n </th>\r\n <td class=\"px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-input class=\"pb-5\" [placeholder]=\"item?.origin?.title\" [(model)]=\"item.title\" hideInlineError></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"width\">\r\n <th mat-header-cell class=\"c-th px-4\" *matHeaderCellDef style=\"width: 80px\">\r\n {{ 'R\u1ED9ng' }}\r\n </th>\r\n <td class=\"px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-input class=\"pb-5\" [placeholder]=\"item?.origin?.width\" [(model)]=\"item.width\" hideInlineError></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"fixed\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 80px\">\r\n {{ 'C\u1ED1 \u0111\u1ECBnh' }}\r\n </th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-switch [(model)]=\"item.fixed\" />\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"['invisible', 'title', 'width', 'fixed']; sticky: true\"></tr>\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: ['invisible', 'title', 'width', 'fixed']\"\r\n cdkDrag\r\n [cdkDragData]=\"row\"\r\n cdkDragLockAxis=\"y\"\r\n [cdkDragDisabled]=\"dragDisabled\"></tr>\r\n </table>\r\n </div>\r\n </div>\r\n }\r\n <ng-container sdFooter>\r\n <sd-button class=\"mr-8\" (click)=\"close()\" title=\"B\u1ECF qua\" color=\"secondary\"> </sd-button>\r\n <sd-button class=\"mr-8\" (click)=\"onReset()\" title=\"M\u1EB7c \u0111\u1ECBnh\" color=\"primary\"> </sd-button>\r\n <sd-button (click)=\"onSave()\" title=\"\u00C1p d\u1EE5ng\" type=\"fill\" color=\"primary\"> </sd-button>\r\n </ng-container>\r\n</sd-modal>\r\n", styles: [".c-table{position:relative;overflow:auto}.c-table table{width:100%}.c-table .c-th{font-weight:500;font-size:14px;line-height:20px;color:#000}.c-container{position:relative;min-height:200px}.c-handle{color:#ccc;cursor:move}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "ngmodule", type: CdkTableModule }, { kind: "ngmodule", type: DragDropModule }, { kind: "directive", type: i4.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i4.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "
|
|
778
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: ConfigComponent, isStandalone: true, selector: "config", inputs: { tableOption: "tableOption" }, host: { listeners: { "window:mouseup": "mouseUp($event)" } }, providers: [ConfigService], viewQueries: [{ propertyName: "modal", first: true, predicate: SdModal, descendants: true }, { propertyName: "table", first: true, predicate: ["table"], descendants: true }], ngImport: i0, template: "<sd-modal width=\"sm\" [title]=\"'Thi\u1EBFt l\u1EADp b\u1EA3ng'\" #modal>\r\n @if (configuration) {\r\n <div class=\"c-container\">\r\n <div class=\"c-table\" style=\"max-height: 70vh\">\r\n <table\r\n #table\r\n mat-table\r\n [dataSource]=\"configuration.columns!\"\r\n cdkDropList\r\n [cdkDropListData]=\"configuration.columns\"\r\n (cdkDropListDropped)=\"dropTable($event)\">\r\n >\r\n <!-- <ng-container matColumnDef=\"stt\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 50px\">#</th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item; let idx = index\"></td>\r\n </ng-container> -->\r\n <ng-container matColumnDef=\"invisible\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 96px\">\r\n {{ 'Hi\u1EC3n th\u1ECB' }}\r\n </th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item\">\r\n <div class=\"d-flex\" style=\"gap: 8px\">\r\n <div class=\"c-handle\" (mousedown)=\"handleMouseDown()\" (mouseup)=\"handleMouseUp()\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#5f6368\">\r\n <path d=\"M0 0h24v24H0V0z\" fill=\"none\" />\r\n <path\r\n d=\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\" />\r\n </svg>\r\n </div>\r\n <sd-switch [model]=\"!item.invisible\" (modelChange)=\"item.invisible = !item.invisible\" />\r\n </div>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"title\">\r\n <th mat-header-cell class=\"c-th px-4\" *matHeaderCellDef>\r\n {{ 'Ti\u00EAu \u0111\u1EC1 c\u1ED9t' }}\r\n </th>\r\n <td class=\"px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-input class=\"pb-5\" [placeholder]=\"item?.origin?.title\" [(model)]=\"item.title\" hideInlineError></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"width\">\r\n <th mat-header-cell class=\"c-th px-4\" *matHeaderCellDef style=\"width: 80px\">\r\n {{ 'R\u1ED9ng' }}\r\n </th>\r\n <td class=\"px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-input class=\"pb-5\" [placeholder]=\"item?.origin?.width\" [(model)]=\"item.width\" hideInlineError></sd-input>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"fixed\">\r\n <th mat-header-cell class=\"c-th text-center px-4\" *matHeaderCellDef style=\"width: 80px\">\r\n {{ 'C\u1ED1 \u0111\u1ECBnh' }}\r\n </th>\r\n <td class=\"text-center px-4\" mat-cell *matCellDef=\"let item\">\r\n <sd-switch [(model)]=\"item.fixed\" />\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"['invisible', 'title', 'width', 'fixed']; sticky: true\"></tr>\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: ['invisible', 'title', 'width', 'fixed']\"\r\n cdkDrag\r\n [cdkDragData]=\"row\"\r\n cdkDragLockAxis=\"y\"\r\n [cdkDragDisabled]=\"dragDisabled\"></tr>\r\n </table>\r\n </div>\r\n </div>\r\n }\r\n <ng-container sdFooter>\r\n <sd-button class=\"mr-8\" (click)=\"close()\" title=\"B\u1ECF qua\" color=\"secondary\"> </sd-button>\r\n <sd-button class=\"mr-8\" (click)=\"onReset()\" title=\"M\u1EB7c \u0111\u1ECBnh\" color=\"primary\"> </sd-button>\r\n <sd-button (click)=\"onSave()\" title=\"\u00C1p d\u1EE5ng\" type=\"fill\" color=\"primary\"> </sd-button>\r\n </ng-container>\r\n</sd-modal>\r\n", styles: [".c-table{position:relative;overflow:auto}.c-table table{width:100%}.c-table .c-th{font-weight:500;font-size:14px;line-height:20px;color:#000}.c-container{position:relative;min-height:200px}.c-handle{color:#ccc;cursor:move}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "ngmodule", type: CdkTableModule }, { kind: "ngmodule", type: DragDropModule }, { kind: "directive", type: i4.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i4.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdModal, selector: "sd-modal", inputs: ["title", "color", "width", "height", "view", "lazyLoadContent"], outputs: ["sdClosed"] }, { kind: "component", type: SdSwitch, selector: "sd-switch", inputs: ["autoId", "name", "size", "form", "label", "color", "disabled", "model", "hideInlineError", "required"], outputs: ["modelChange", "sdChange"] }] });
|
|
779
779
|
}
|
|
780
780
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigComponent, decorators: [{
|
|
781
781
|
type: Component,
|
|
@@ -1379,7 +1379,7 @@ class SdPopupExport {
|
|
|
1379
1379
|
return '';
|
|
1380
1380
|
};
|
|
1381
1381
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdPopupExport, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$1.SdLoadingService }, { token: i1$1.SdExcelService }, { token: i1$1.SdNotifyService }, { token: i1$1.SdConfirmService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1382
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", type: SdPopupExport, isStandalone: true, selector: "sd-popup-export", inputs: { _tableOption: ["tableOption", "_tableOption"], configuration: "configuration" }, outputs: { export: "export" }, viewQueries: [{ propertyName: "modal", first: true, predicate: ["modal"], descendants: true }, { propertyName: "listGroups", first: true, predicate: ["listGroups"], descendants: true }], ngImport: i0, template: "<sd-modal width=\"907px\" [title]=\"'Exported template'\" #modal>\n <div class=\"row\">\n <div *ngIf=\"!files?.length\" class=\"col-12\">\n <div class=\"c-empty\">\n <img class=\"c-empty-image\" alt=\"empty-image\" />\n <div class=\"T14R\">{{ 'There are no exported templates' }}</div>\n </div>\n </div>\n <ng-container *ngIf=\"files?.length\">\n <div class=\"col-12\">\n <div class=\"c-table\" style=\"max-height: 50vh\">\n <table mat-table [dataSource]=\"files\">\n <ng-container matColumnDef=\"stt\">\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 50px\">#</th>\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item; let idx = index\">\n {{ idx + 1 }}\n </td>\n </ng-container>\n <ng-container matColumnDef=\"fileName\">\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef>\n {{ 'File name' }}\n </th>\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\n {{ item.fileName }}\n </td>\n </ng-container>\n <ng-container matColumnDef=\"action\">\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef style=\"width: 80px\"></th>\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\n <div class=\"d-flex\">\n <button mat-icon-button aria-label=\"delete\" (click)=\"removeFile(item)\">\n <mat-icon>delete</mat-icon>\n </button>\n <button mat-icon-button aria-label=\"download\" (click)=\"onExport(item)\">\n <mat-icon>download</mat-icon>\n </button>\n </div>\n </td>\n </ng-container>\n <tr mat-header-row *matHeaderRowDef=\"['stt', 'fileName', 'action']; sticky: true\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: ['stt', 'fileName', 'action']\"></tr>\n </table>\n </div>\n </div>\n <div *ngIf=\"files.length < 5\" class=\"col-12 mt-10\">\n <sd-button class=\"mr-4\" [title]=\"'New template'\" (click)=\"enableCreating = true\" color=\"info\" [disabled]=\"enableCreating\">\n </sd-button>\n <sd-button *ngIf=\"exportOption?.enableUpload\" [title]=\"'Upload template'\" (click)=\"uploadTemplate()\" type=\"outline\">\n </sd-button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"enableCreating || !files?.length\">\n <div class=\"col-12 mt-20\">\n <div class=\"T14R\">{{ 'Select columns for creating template' }}:</div>\n </div>\n <div class=\"col-12\">\n <mat-chip-listbox selectable=\"true\" multiple=\"true\">\n <ng-container *ngFor=\"let column of columns\">\n <mat-chip-option [selected]=\"selected[column.field]\" (click)=\"selected[column.field] = !selected[column.field]\">\n {{ column.title }}\n </mat-chip-option>\n </ng-container>\n </mat-chip-listbox>\n </div>\n <div class=\"col-12 row\">\n <div class=\"col-10\">\n <sd-input [form]=\"form\" [label]=\"'Template name'\" [(model)]=\"templateName\" [validator]=\"templateNameValidator\"></sd-input>\n </div>\n <div class=\"col-2 mt-8\">\n <sd-button width=\"100%\" [title]=\"'Save'\" color=\"info\" (click)=\"createTemplate()\"> </sd-button>\n </div>\n </div>\n </ng-container>\n </div>\n</sd-modal>\n", styles: [".c-radio-group{display:flex;flex-direction:column;margin:15px 0}.c-radio-button{margin:5px}.c-empty{display:flex;flex-direction:column;justify-content:center;align-items:center;position:static;height:116px;background:#f6f6f6;border-radius:4px}.c-empty .c-empty-image{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAA6CAYAAAAHkoFsAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABCiSURBVHgB7VtLj2VVFV5rn0tXJ902ktjppgEJ0iRAGgUsiQk/wJGPhBgxxJg4ZqYDRjqXmSMTTRyYGGYOYODE+AiI4RFaIDSgNII8BIzBQDdQdc/eru/71j637IKuOt0VGegJ1H2cffbda+31+Na3dpv9D18+Z/BzL/ztgeJezVrlw+6ju7XW8J21Ev/74GNreF+ae6utlFpiiHsZMRLj4k8tHvcLn6uYI2aL9xXjqtX4HA+55q14P8Rv4YePHL7sB7ZHV5k1urVSaxtClKFhyRYSNPOQqcQfzOUhSugHklSv8eq1hjSx8rEOLcfEg6XGBFAN1sA5+B7ThK4KNyVkj9fCNeZvzFzvngoP4WgrDYvighqFxTZCiFbGWHwbsVESqPK1lgKVSIgh9FZiOBRQugI0c0tB43PlZ/d8vmqtsyx1p2sxZ3CV9p37CxXQnOObkBsbWmH1xt2yOjbIi+3HomND427RW6v42nkDCqBjwNLhH6HPQv+pUFAMbXARTApr2tOdnyW8aefhudxFp7O6XDoExcqrVDMaNELDraM83cpQESwaNtPo5iWUJl+GKcQOx/8GN+dGw/fxeaB6EGagoT28ZmkSPie/azTxlr6o19ji2GvohP6JjY3Fj3ABbiq3daDS4vka30FYrzLnUBGMJuag2dM9sPvQUxgNrKqEWe2p2c8Sfuw+Df+GAuCvGayoBAaxSj+t8dpk2V6pkDpIga7flE+UDJaDy6ocOoxnOabRZaDHSkVWxYePR/jC5TnN03KxtgpEIQOc06kU7DwUYHSPVIBTKORCOLAr8EthfL5qp+M/KcD73IXPtmofn89nqsrYBi/gZ4bkBveGsTZleVf+dqXAijAHJw/rQS432QNiABwizCJdpUIBYfs1LWTU9wwEggJ7eM3SZO15GoENPtlo/hBZPmraTZ/SYCtENyMDuLcRO+9KX9BgSxwAK2lKldzlWrs7wVUKf0dZ4+NLdZYBzpiQw3rh1Q05nvmvNQXDZkJ0RjeA7RcMcw0IU5aVM9lVWAQxY9FfGk7MVQb4PIBCGldBuPHy6t//+U0bI5kMgfowehzasC/ySHxVLsFr7ELce9vG315z2WVv753wkJWmzhjN5Cw7Z9av2lG8tUHhypnFYgeZ+Og4sf3IgM3p7EiN0AJArf6LXF7g8sQJSvNIngOgBTa/1i8KW0SCGDHY2rhc1sEXdbm5iYfquLT6yYWdjJXsnfAnbrjm9o+6d+rUi1+Kff0uBG7KxonYGoVrehmRtgaaiQXSa2NxVQCNtUBtiWAz3zvDQ5q9AR0ZjQQ6M6ZFwYJwrbaEvTTrGGIX11yzP+9MLr81bbFkQPBHmuPeKlUQAQ0DANvkAo0WAMkR81AWuaocai1HxLeR6xn1VAtI1tAJiyT4T1yqBj74wHeMD3uWOkbspqv4YLbi3C1jBHe+EMgA9FIjLA9dGUFZP9MEdr3AdbdiBSbaQtDU06B3HCDADaeIaYZMw2s7r5k7/+ifnr9jKHas5X5RpQXRB3Vc/K0joSj8C86r71W2ItIUjBn9OBbBHI6QlTYsw6XDwk0htECq2+99sfhj24y3i/Kt2LHDwv0AzBjIsFmqfIJRsbE8gOw95aJm0HjgAMKAZYxZxI3Y+l0JH0PviJ+9DUiiCWHTbyu3I0EoLJkbUSs3DWuB7rU+eaSxXqnafcQ9onMnOHGG7FGI3n9x/Nor7tuyjkdffOn178fENwApsRqkAvhf7HNTUQhRWSF2nTR9QA5GRoEXML/A9PbvJHtGFxN0JH7OnGsTblfJyZRGM1bezRInc7PL+1jPZzmjWrynRiE4Exw+eHC4/9yFbLy//BWiP/ACY0cFlHYWC6I7BIUrEWRVOazwD+MqQp1V6HOXMJiDaiPoSojKEFJyAgkkNMfXSSkt8f2U+5172zokxULHRgJD5EWCnmZnjx49embbQvYvzoypKMQOhf3qElKECHF+romvtAzGhMKCqKr2xRo2fJdm/4Wbr7/zw24+/uRzP4+XdbmoiJUqLTBvmTSHH2PC0VMZ5wV7K7muFUQFkj10nvUwwEFiU+mL6E7YI0KjCGOTPfAqXsW6myjNoK4IlaztIuLtkOpo5hmdhc6xtCw89F4hjfVqU2nGIM7B2nU5g1xli5L+84qAe6BWoZia2YLQP+gvHxD8iYURiSsTuog/mBPrBlQD/Mx44GVj3LjYVMfbg2I7zTEBCbF5WZWySFFczfR58nU9W7zHivjuqdOnj5z7S3X0g5ZulySPu3d+IPg/YyxiLcD3I0KiqkE+z7K4V4O7Y3zOu/MBx34dOPVVMUgByYahMhu3JcGLq7r7chMMk2lzh13oQ0rBnhC+qQD4cIWP4xKIBgLTymhPoL4Y44HwQ1jWC8Iywr5GkNfEmvK3m4kls7WLNPvbbr7+Z7bDdfLpP38VLpkpZqBCalJ6hPp671vK4QN2YNs8IcKRpMSg3crYJkUxpIDjCBRfwgfAi4ESQ5ir4PVKYmH+Qk2mdxd5fg8Qnq8Y1/yiqTpzxQxXJphcoJXNzTNHz52lKnoTzeIZlcONmJjIMZFgY5wrSYsrtYrybtAKMwvl2gXCu3jhnWGu1+ODan4WsBTUJrzgSqOx2E3fjrtDqoNSFOBqh68r/6+ir8UbgNCFKZDhxe+OA+MBUmOmQd/YGdsv/vDY0/fHsKtcPHRVR0bbkGlbqE2lEv28JWifIKx4nJqkvq/YXWYmRm68xsAxarrim+3y+O7k1oXEHh9so6XiVAor6QFMZoLn91n1YUlJ65Y2+RYCBuolkoI7Ch+ruzqevKqJYBO8laMKhUfZ2Yi5CaWIevN+5fuqGOwENy4YwNRHNm6UBVgnbrBLiYPOMaBkaPkuKbLUYFM9LCuoYjcR/xDaWlNJS+RLnkThx5CkdhReCEwkBcGMfoZKSG6CqdSFL1pidu6tLN6yAccFqvuWnkiUqCissqwogFfb/MS5C4l21uUmEzcyQ6KHxI2QBof+AzIOnJx231haBQzO4sZVBWA/2rLsnOcj2pcHYqGHsgYXiaQqBZ5Fc2aGZpFlX7dONIq3ZLGuDcoGjGeN2RIMc1uFUJCbaSXDsE141SQZqQkjgOqiBHYVS5a1vXBAIw9QiuU6eEfFkGjvmG7fTrLb4vbbTtxju7weeeLUNxKlJd6nZFRR5y9SMUo6GpP5vxbhAlrD9skVQFwZrhVtv2pHcj/UkIhBlQrNROwwR0hgkmAqh31jVzs/42IxTm7WBKwoLxk6RSBx71tr+aaWnhAvZWSf79h24e1yuEkwB9huo9sRtNAmGYCtyCssLW2UGRDzTqoRDbQrjntWqmuryk8VXa8AFR3RVioKGFwAU4WnwpLe7qnvim1z13aI3UimjTZVjknJ4b1gNudadYY8sUDOOzBFRGj4sHR67jWvaYFNqdNhAsQHILrRlMeFwtMpO0RNX9YDMgJY5fpTz7x45003XnPfgw8++4lLP7X2nZD+UFOl1oVF7TJ2qtyI3RIoSeqsElV9gQNk5TSORJn7bPj86dMvH14sIqYPi3h+E+LS+t56ffnE+voVZ3eRDVfXw48/8yYZSBL2wleyUJKNLTGCgqQoCAhDfKNqT2mU6QuLLcO/FDD9oEpeYQcJRrWNptzZdF/PMQiqN9DH1twJzp8ltubSWhq6QPLbAu3ce+WVh5+ftfPMbuzHtSxNyTB7hmntBCkNyyRoQ0sqjDFA5JYWKNR2qYIg7cV6m1suLYvKcjixj2hsdsfUKMweHwBRtr+b+ELSf+L8yTq2mmxA6GBjY+Smz2xXRe+AdJKL3sruaptaTQxrGROMWASfGQOyHFZDw89sbtj3Pnvjteub7218zW34yRZKLPF9L4lZJbpgbOvtsdLHk8z0zjoJGtYV1+H9iIwSr2Dc2prS4IXw9lidNlboTTuWJ4kUryxrfiYAQmYOK9r30MK96zdf9xtMduut178WLz998tQL6zHvLdluyCRBMxtJJzeb4HTr7LC4MyFLKaTyOEgDgbv2ww/2LV/aXw9wynf55x1O/o93Ns7OF55mbIC7QbwgGKmfLOrIhQOT3LLOffEgQuJCpiOva4vxsW0aNXsg/tyqeCkd51EMlmyijUnSjr1uVyJI2iz5gsq1lGCuz7533aevfut84syv6trq0JAnm5tdSgKQ1qaSdlXVCaeL7Y3Fvbe8ZHuqMzsk8kNjV6xwm5hhmhGrutZPb6ha3DJe5wPCzPftAuHZjItaVTBr7DWJtMnslqQqF0SezbrAxoajD3qWTNDdMfjbfd5nn3352Pvjxl1qy7RsSfI8nwm7svE5kaJlRZnBFB4KP363yapiKDqcUdVVO7OTPLNS3UOPPHkmC5XVAcJeAdLsVAxNZS8/l57ueuqr2a1+Jeb4ZXwO7s6/EvcP9BppSmtEjyhcfUqDlu1x08A6LvbfddNnjrxhF3DNPIqm4tEY9FzkqXIubrvQ15SYkn3uZaqAUPbVoKirIvvc7dmSYDoUkNEeKp8zixoPPqA8ZkIDjixZWbqfnYdVLlj4rNOKyljV6TRjVsS8WbNXHynRxuz+qANWehZQ4ZOEY2+KmKCwdGwKdROaEx+g0po/Amhbyjjxgv8N4bPaShJWS9bBLBZUJfnmmpmQqYcmnvW4MoJqfMSPPHZpyR2YpfX0EO4EOCqhPeHxxA6nhYUE95x67q/o2SEOTa6ByQa1xVmBiOgY2QxCxh2GxTsXcAhRHRpXAKviywVlmYoyBzMgdfJWPt97dWQgkzBJgpNrhdmjTzcqbppMW2rPAichtXgVnVFzuwXfLRWNx3ym6fgeTURssDNtVHFMESvq8o3ZB5JUybXs8WUPPg8NaXfYRBy2NC4S7ZlITu9HCnqzg4C4HyoW38fU2KZGaaa1KWXKwwRmeppzz9jAA495zndilvMV+LrqwCRMbT62Fz8HUmmQGRPDVnHuHKOgZRJKNE+b/DurPzUfkqdSuuQW9XYW6STP4BIvr8Wsr/qAI72eZ12kGZrAwDjCswTOiMiQRO2RjZJVWslCTAGlvjlPeB2uLy3VbHmKyjM6p2JIPIhl6s0KT2ImfXdCcbKAPHuraC7UUFdpHcPK/Z87ce2PbY+vuYcQk05KvxdVCdOrna7KbncR9d3HswK0pLLp8+w2KrwL7QdfF9oaOU6dX0v0XPPgzp5fcwNep5BobVXAg7Ekd6tMMVlMpmVWaKvEnGnCLOtYpbgkUFOBxMia01YNgb2+Zk36u4dPtu0zuFAb9zfRH4ELdZPkg6KvkCpeV0jQtvwzE5XrBAFj8tdVvL29Ek70ik+nllipM21ZnvLhOR4SfUoUPix/dOL48b+cT56LP4omn83jVMQB6fsANiXJTXUUrBMevSTN/n3juTpGdbIwaHjCBTxpz/j6yrh/DIQCMbPpdI6zR6HUVdnBUHBzxeODOy19VqrzZGC72NP3mQXykFDJlgboE36u6vErU/QssOXcDxWoNEgyZCJI4rlsgGbj0voZoTyZrfP7OceQVSZ1ttzcawJzatgkLN2iF5PatfuyXxmEmnRjVny975b4RznReBZDViLBrJOiSVpSK/zHFkxbaowk2LEt1T8tjuTRJbvw6Hlm77a1D6OFKwAKbabdmdJ9dl5cDKzUlv8mR2J0lKas0HRnalqo6dfzRcg75leyPxVMiZrZuWHATbbHl9ELtv9fH339G/7DwlISq4BTAAAAAElFTkSuQmCC)}.c-table{position:relative;overflow:auto}.c-table table{width:100%}.c-table .c-th{font-weight:500;font-size:14px;line-height:20px;color:#000}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i5.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i5.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "title", "width", "size", "tooltip", "prefixIcon", "suffixIcon", "fontSet", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdModal, selector: "sd-modal", inputs: ["title", "color", "width", "height", "view", "lazyLoadContent"], outputs: ["sdClosed"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1382
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", type: SdPopupExport, isStandalone: true, selector: "sd-popup-export", inputs: { _tableOption: ["tableOption", "_tableOption"], configuration: "configuration" }, outputs: { export: "export" }, viewQueries: [{ propertyName: "modal", first: true, predicate: ["modal"], descendants: true }, { propertyName: "listGroups", first: true, predicate: ["listGroups"], descendants: true }], ngImport: i0, template: "<sd-modal width=\"907px\" [title]=\"'Exported template'\" #modal>\n <div class=\"row\">\n <div *ngIf=\"!files?.length\" class=\"col-12\">\n <div class=\"c-empty\">\n <img class=\"c-empty-image\" alt=\"empty-image\" />\n <div class=\"T14R\">{{ 'There are no exported templates' }}</div>\n </div>\n </div>\n <ng-container *ngIf=\"files?.length\">\n <div class=\"col-12\">\n <div class=\"c-table\" style=\"max-height: 50vh\">\n <table mat-table [dataSource]=\"files\">\n <ng-container matColumnDef=\"stt\">\n <th mat-header-cell class=\"c-th text-center px-5\" *matHeaderCellDef style=\"width: 50px\">#</th>\n <td class=\"text-center px-5\" mat-cell *matCellDef=\"let item; let idx = index\">\n {{ idx + 1 }}\n </td>\n </ng-container>\n <ng-container matColumnDef=\"fileName\">\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef>\n {{ 'File name' }}\n </th>\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\n {{ item.fileName }}\n </td>\n </ng-container>\n <ng-container matColumnDef=\"action\">\n <th mat-header-cell class=\"c-th px-5\" *matHeaderCellDef style=\"width: 80px\"></th>\n <td class=\"px-5\" mat-cell *matCellDef=\"let item\">\n <div class=\"d-flex\">\n <button mat-icon-button aria-label=\"delete\" (click)=\"removeFile(item)\">\n <mat-icon>delete</mat-icon>\n </button>\n <button mat-icon-button aria-label=\"download\" (click)=\"onExport(item)\">\n <mat-icon>download</mat-icon>\n </button>\n </div>\n </td>\n </ng-container>\n <tr mat-header-row *matHeaderRowDef=\"['stt', 'fileName', 'action']; sticky: true\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: ['stt', 'fileName', 'action']\"></tr>\n </table>\n </div>\n </div>\n <div *ngIf=\"files.length < 5\" class=\"col-12 mt-10\">\n <sd-button class=\"mr-4\" [title]=\"'New template'\" (click)=\"enableCreating = true\" color=\"info\" [disabled]=\"enableCreating\">\n </sd-button>\n <sd-button *ngIf=\"exportOption?.enableUpload\" [title]=\"'Upload template'\" (click)=\"uploadTemplate()\" type=\"outline\">\n </sd-button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"enableCreating || !files?.length\">\n <div class=\"col-12 mt-20\">\n <div class=\"T14R\">{{ 'Select columns for creating template' }}:</div>\n </div>\n <div class=\"col-12\">\n <mat-chip-listbox selectable=\"true\" multiple=\"true\">\n <ng-container *ngFor=\"let column of columns\">\n <mat-chip-option [selected]=\"selected[column.field]\" (click)=\"selected[column.field] = !selected[column.field]\">\n {{ column.title }}\n </mat-chip-option>\n </ng-container>\n </mat-chip-listbox>\n </div>\n <div class=\"col-12 row\">\n <div class=\"col-10\">\n <sd-input [form]=\"form\" [label]=\"'Template name'\" [(model)]=\"templateName\" [validator]=\"templateNameValidator\"></sd-input>\n </div>\n <div class=\"col-2 mt-8\">\n <sd-button width=\"100%\" [title]=\"'Save'\" color=\"info\" (click)=\"createTemplate()\"> </sd-button>\n </div>\n </div>\n </ng-container>\n </div>\n</sd-modal>\n", styles: [".c-radio-group{display:flex;flex-direction:column;margin:15px 0}.c-radio-button{margin:5px}.c-empty{display:flex;flex-direction:column;justify-content:center;align-items:center;position:static;height:116px;background:#f6f6f6;border-radius:4px}.c-empty .c-empty-image{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD8AAAA6CAYAAAAHkoFsAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABCiSURBVHgB7VtLj2VVFV5rn0tXJ902ktjppgEJ0iRAGgUsiQk/wJGPhBgxxJg4ZqYDRjqXmSMTTRyYGGYOYODE+AiI4RFaIDSgNII8BIzBQDdQdc/eru/71j637IKuOt0VGegJ1H2cffbda+31+Na3dpv9D18+Z/BzL/ztgeJezVrlw+6ju7XW8J21Ev/74GNreF+ae6utlFpiiHsZMRLj4k8tHvcLn6uYI2aL9xXjqtX4HA+55q14P8Rv4YePHL7sB7ZHV5k1urVSaxtClKFhyRYSNPOQqcQfzOUhSugHklSv8eq1hjSx8rEOLcfEg6XGBFAN1sA5+B7ThK4KNyVkj9fCNeZvzFzvngoP4WgrDYvighqFxTZCiFbGWHwbsVESqPK1lgKVSIgh9FZiOBRQugI0c0tB43PlZ/d8vmqtsyx1p2sxZ3CV9p37CxXQnOObkBsbWmH1xt2yOjbIi+3HomND427RW6v42nkDCqBjwNLhH6HPQv+pUFAMbXARTApr2tOdnyW8aefhudxFp7O6XDoExcqrVDMaNELDraM83cpQESwaNtPo5iWUJl+GKcQOx/8GN+dGw/fxeaB6EGagoT28ZmkSPie/azTxlr6o19ji2GvohP6JjY3Fj3ABbiq3daDS4vka30FYrzLnUBGMJuag2dM9sPvQUxgNrKqEWe2p2c8Sfuw+Df+GAuCvGayoBAaxSj+t8dpk2V6pkDpIga7flE+UDJaDy6ocOoxnOabRZaDHSkVWxYePR/jC5TnN03KxtgpEIQOc06kU7DwUYHSPVIBTKORCOLAr8EthfL5qp+M/KcD73IXPtmofn89nqsrYBi/gZ4bkBveGsTZleVf+dqXAijAHJw/rQS432QNiABwizCJdpUIBYfs1LWTU9wwEggJ7eM3SZO15GoENPtlo/hBZPmraTZ/SYCtENyMDuLcRO+9KX9BgSxwAK2lKldzlWrs7wVUKf0dZ4+NLdZYBzpiQw3rh1Q05nvmvNQXDZkJ0RjeA7RcMcw0IU5aVM9lVWAQxY9FfGk7MVQb4PIBCGldBuPHy6t//+U0bI5kMgfowehzasC/ySHxVLsFr7ELce9vG315z2WVv753wkJWmzhjN5Cw7Z9av2lG8tUHhypnFYgeZ+Og4sf3IgM3p7EiN0AJArf6LXF7g8sQJSvNIngOgBTa/1i8KW0SCGDHY2rhc1sEXdbm5iYfquLT6yYWdjJXsnfAnbrjm9o+6d+rUi1+Kff0uBG7KxonYGoVrehmRtgaaiQXSa2NxVQCNtUBtiWAz3zvDQ5q9AR0ZjQQ6M6ZFwYJwrbaEvTTrGGIX11yzP+9MLr81bbFkQPBHmuPeKlUQAQ0DANvkAo0WAMkR81AWuaocai1HxLeR6xn1VAtI1tAJiyT4T1yqBj74wHeMD3uWOkbspqv4YLbi3C1jBHe+EMgA9FIjLA9dGUFZP9MEdr3AdbdiBSbaQtDU06B3HCDADaeIaYZMw2s7r5k7/+ifnr9jKHas5X5RpQXRB3Vc/K0joSj8C86r71W2ItIUjBn9OBbBHI6QlTYsw6XDwk0htECq2+99sfhj24y3i/Kt2LHDwv0AzBjIsFmqfIJRsbE8gOw95aJm0HjgAMKAZYxZxI3Y+l0JH0PviJ+9DUiiCWHTbyu3I0EoLJkbUSs3DWuB7rU+eaSxXqnafcQ9onMnOHGG7FGI3n9x/Nor7tuyjkdffOn178fENwApsRqkAvhf7HNTUQhRWSF2nTR9QA5GRoEXML/A9PbvJHtGFxN0JH7OnGsTblfJyZRGM1bezRInc7PL+1jPZzmjWrynRiE4Exw+eHC4/9yFbLy//BWiP/ACY0cFlHYWC6I7BIUrEWRVOazwD+MqQp1V6HOXMJiDaiPoSojKEFJyAgkkNMfXSSkt8f2U+5172zokxULHRgJD5EWCnmZnjx49embbQvYvzoypKMQOhf3qElKECHF+romvtAzGhMKCqKr2xRo2fJdm/4Wbr7/zw24+/uRzP4+XdbmoiJUqLTBvmTSHH2PC0VMZ5wV7K7muFUQFkj10nvUwwEFiU+mL6E7YI0KjCGOTPfAqXsW6myjNoK4IlaztIuLtkOpo5hmdhc6xtCw89F4hjfVqU2nGIM7B2nU5g1xli5L+84qAe6BWoZia2YLQP+gvHxD8iYURiSsTuog/mBPrBlQD/Mx44GVj3LjYVMfbg2I7zTEBCbF5WZWySFFczfR58nU9W7zHivjuqdOnj5z7S3X0g5ZulySPu3d+IPg/YyxiLcD3I0KiqkE+z7K4V4O7Y3zOu/MBx34dOPVVMUgByYahMhu3JcGLq7r7chMMk2lzh13oQ0rBnhC+qQD4cIWP4xKIBgLTymhPoL4Y44HwQ1jWC8Iywr5GkNfEmvK3m4kls7WLNPvbbr7+Z7bDdfLpP38VLpkpZqBCalJ6hPp671vK4QN2YNs8IcKRpMSg3crYJkUxpIDjCBRfwgfAi4ESQ5ir4PVKYmH+Qk2mdxd5fg8Qnq8Y1/yiqTpzxQxXJphcoJXNzTNHz52lKnoTzeIZlcONmJjIMZFgY5wrSYsrtYrybtAKMwvl2gXCu3jhnWGu1+ODan4WsBTUJrzgSqOx2E3fjrtDqoNSFOBqh68r/6+ir8UbgNCFKZDhxe+OA+MBUmOmQd/YGdsv/vDY0/fHsKtcPHRVR0bbkGlbqE2lEv28JWifIKx4nJqkvq/YXWYmRm68xsAxarrim+3y+O7k1oXEHh9so6XiVAor6QFMZoLn91n1YUlJ65Y2+RYCBuolkoI7Ch+ruzqevKqJYBO8laMKhUfZ2Yi5CaWIevN+5fuqGOwENy4YwNRHNm6UBVgnbrBLiYPOMaBkaPkuKbLUYFM9LCuoYjcR/xDaWlNJS+RLnkThx5CkdhReCEwkBcGMfoZKSG6CqdSFL1pidu6tLN6yAccFqvuWnkiUqCissqwogFfb/MS5C4l21uUmEzcyQ6KHxI2QBof+AzIOnJx231haBQzO4sZVBWA/2rLsnOcj2pcHYqGHsgYXiaQqBZ5Fc2aGZpFlX7dONIq3ZLGuDcoGjGeN2RIMc1uFUJCbaSXDsE141SQZqQkjgOqiBHYVS5a1vXBAIw9QiuU6eEfFkGjvmG7fTrLb4vbbTtxju7weeeLUNxKlJd6nZFRR5y9SMUo6GpP5vxbhAlrD9skVQFwZrhVtv2pHcj/UkIhBlQrNROwwR0hgkmAqh31jVzs/42IxTm7WBKwoLxk6RSBx71tr+aaWnhAvZWSf79h24e1yuEkwB9huo9sRtNAmGYCtyCssLW2UGRDzTqoRDbQrjntWqmuryk8VXa8AFR3RVioKGFwAU4WnwpLe7qnvim1z13aI3UimjTZVjknJ4b1gNudadYY8sUDOOzBFRGj4sHR67jWvaYFNqdNhAsQHILrRlMeFwtMpO0RNX9YDMgJY5fpTz7x45003XnPfgw8++4lLP7X2nZD+UFOl1oVF7TJ2qtyI3RIoSeqsElV9gQNk5TSORJn7bPj86dMvH14sIqYPi3h+E+LS+t56ffnE+voVZ3eRDVfXw48/8yYZSBL2wleyUJKNLTGCgqQoCAhDfKNqT2mU6QuLLcO/FDD9oEpeYQcJRrWNptzZdF/PMQiqN9DH1twJzp8ltubSWhq6QPLbAu3ce+WVh5+ftfPMbuzHtSxNyTB7hmntBCkNyyRoQ0sqjDFA5JYWKNR2qYIg7cV6m1suLYvKcjixj2hsdsfUKMweHwBRtr+b+ELSf+L8yTq2mmxA6GBjY+Smz2xXRe+AdJKL3sruaptaTQxrGROMWASfGQOyHFZDw89sbtj3Pnvjteub7218zW34yRZKLPF9L4lZJbpgbOvtsdLHk8z0zjoJGtYV1+H9iIwSr2Dc2prS4IXw9lidNlboTTuWJ4kUryxrfiYAQmYOK9r30MK96zdf9xtMduut178WLz998tQL6zHvLdluyCRBMxtJJzeb4HTr7LC4MyFLKaTyOEgDgbv2ww/2LV/aXw9wynf55x1O/o93Ns7OF55mbIC7QbwgGKmfLOrIhQOT3LLOffEgQuJCpiOva4vxsW0aNXsg/tyqeCkd51EMlmyijUnSjr1uVyJI2iz5gsq1lGCuz7533aevfut84syv6trq0JAnm5tdSgKQ1qaSdlXVCaeL7Y3Fvbe8ZHuqMzsk8kNjV6xwm5hhmhGrutZPb6ha3DJe5wPCzPftAuHZjItaVTBr7DWJtMnslqQqF0SezbrAxoajD3qWTNDdMfjbfd5nn3352Pvjxl1qy7RsSfI8nwm7svE5kaJlRZnBFB4KP363yapiKDqcUdVVO7OTPLNS3UOPPHkmC5XVAcJeAdLsVAxNZS8/l57ueuqr2a1+Jeb4ZXwO7s6/EvcP9BppSmtEjyhcfUqDlu1x08A6LvbfddNnjrxhF3DNPIqm4tEY9FzkqXIubrvQ15SYkn3uZaqAUPbVoKirIvvc7dmSYDoUkNEeKp8zixoPPqA8ZkIDjixZWbqfnYdVLlj4rNOKyljV6TRjVsS8WbNXHynRxuz+qANWehZQ4ZOEY2+KmKCwdGwKdROaEx+g0po/Amhbyjjxgv8N4bPaShJWS9bBLBZUJfnmmpmQqYcmnvW4MoJqfMSPPHZpyR2YpfX0EO4EOCqhPeHxxA6nhYUE95x67q/o2SEOTa6ByQa1xVmBiOgY2QxCxh2GxTsXcAhRHRpXAKviywVlmYoyBzMgdfJWPt97dWQgkzBJgpNrhdmjTzcqbppMW2rPAichtXgVnVFzuwXfLRWNx3ym6fgeTURssDNtVHFMESvq8o3ZB5JUybXs8WUPPg8NaXfYRBy2NC4S7ZlITu9HCnqzg4C4HyoW38fU2KZGaaa1KWXKwwRmeppzz9jAA495zndilvMV+LrqwCRMbT62Fz8HUmmQGRPDVnHuHKOgZRJKNE+b/DurPzUfkqdSuuQW9XYW6STP4BIvr8Wsr/qAI72eZ12kGZrAwDjCswTOiMiQRO2RjZJVWslCTAGlvjlPeB2uLy3VbHmKyjM6p2JIPIhl6s0KT2ImfXdCcbKAPHuraC7UUFdpHcPK/Z87ce2PbY+vuYcQk05KvxdVCdOrna7KbncR9d3HswK0pLLp8+w2KrwL7QdfF9oaOU6dX0v0XPPgzp5fcwNep5BobVXAg7Ekd6tMMVlMpmVWaKvEnGnCLOtYpbgkUFOBxMia01YNgb2+Zk36u4dPtu0zuFAb9zfRH4ELdZPkg6KvkCpeV0jQtvwzE5XrBAFj8tdVvL29Ek70ik+nllipM21ZnvLhOR4SfUoUPix/dOL48b+cT56LP4omn83jVMQB6fsANiXJTXUUrBMevSTN/n3juTpGdbIwaHjCBTxpz/j6yrh/DIQCMbPpdI6zR6HUVdnBUHBzxeODOy19VqrzZGC72NP3mQXykFDJlgboE36u6vErU/QssOXcDxWoNEgyZCJI4rlsgGbj0voZoTyZrfP7OceQVSZ1ttzcawJzatgkLN2iF5PatfuyXxmEmnRjVny975b4RznReBZDViLBrJOiSVpSK/zHFkxbaowk2LEt1T8tjuTRJbvw6Hlm77a1D6OFKwAKbabdmdJ9dl5cDKzUlv8mR2J0lKas0HRnalqo6dfzRcg75leyPxVMiZrZuWHATbbHl9ELtv9fH339G/7DwlISq4BTAAAAAElFTkSuQmCC)}.c-table{position:relative;overflow:auto}.c-table table{width:100%}.c-table .c-th{font-weight:500;font-size:14px;line-height:20px;color:#000}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i5.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i5.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdInput, selector: "sd-input", inputs: ["autoId", "name", "appearance", "size", "form", "label", "helperText", "placeholder", "type", "hideInlineError", "blurOnEnter", "required", "readonly", "disabled", "viewed", "minlength", "maxlength", "pattern", "patternErrorMessage", "validator", "inlineError", "hyperlink", "tooltip", "model"], outputs: ["modelChange", "sdChange", "sdFocus", "sdBlur", "keyupEnter", "sdFocusForceBlur"] }, { kind: "component", type: SdModal, selector: "sd-modal", inputs: ["title", "color", "width", "height", "view", "lazyLoadContent"], outputs: ["sdClosed"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1383
1383
|
}
|
|
1384
1384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdPopupExport, decorators: [{
|
|
1385
1385
|
type: Component,
|
|
@@ -3467,7 +3467,7 @@ class SdTable extends SdBaseSecureComponent {
|
|
|
3467
3467
|
provide: MatPaginatorIntl,
|
|
3468
3468
|
useClass: MatPaginatorIntlCro,
|
|
3469
3469
|
},
|
|
3470
|
-
], queries: [{ propertyName: "sdSubInformation", first: true, predicate: SdMaterialSubInformationDefDirective, descendants: true }, { propertyName: "sdCellDefs", predicate: SdTabelCellDefDirective }, { propertyName: "sdFooterDefs", predicate: SdMaterialFooterDefDirective }, { propertyName: "sdFilterDefs", predicate: SdTableFilterDefDirective }], viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true }, { propertyName: "configComponent", first: true, predicate: ConfigComponent, descendants: true }, { propertyName: "sdPopupExport", first: true, predicate: SdPopupExport, descendants: true }, { propertyName: "scroll", first: true, predicate: SdScrollDirective, descendants: true }, { propertyName: "quickAction", first: true, predicate: SdQuickAction, descendants: true }, { propertyName: "externalFilter", first: true, predicate: ExternalFilterComponent, descendants: true }, { propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], usesInheritance: true, ngImport: i0, template: "@if (configuration) {\r\n @if (!tableOption.filter?.disabled && !!tableOption.filter?.externalFilters?.length && filterRegister) {\r\n <external-filter\r\n class=\"mb-16\"\r\n [autoId]=\"autoId\"\r\n [filterRegister]=\"filterRegister\"\r\n [filter]=\"tableOption.filter!\"\r\n [externalFilters]=\"tableOption.filter?.externalFilters!\">\r\n </external-filter>\r\n }\r\n @let groupedItems = items | sdGroup: tableOption;\r\n <ng-content select=\"[sdTableTop]\"></ng-content>\r\n <div class=\"c-container\">\r\n @if (loading) {\r\n <div class=\"c-loading\">\r\n <mat-spinner></mat-spinner>\r\n </div>\r\n }\r\n <div\r\n class=\"c-table\"\r\n sdScroll\r\n stickyShadow\r\n [style.max-height]=\"tableOption.style?.maxHeight\"\r\n [style.min-height]=\"tableOption.style?.minHeight\">\r\n <table\r\n mat-table\r\n [dataSource]=\"groupedItems\"\r\n [trackBy]=\"trackBy\"\r\n matSort\r\n [matSortDisabled]=\"!tableOption.sort?.enable\"\r\n multiTemplateDataRows>\r\n <ng-container matColumnDef=\"sdSubInformation\" sticky>\r\n <td class=\"p-0\" mat-cell *matCellDef=\"let item\" [attr.colspan]=\"configuration.displayedColumns.length\">\r\n @if (sdSubInformation?.templateRef) {\r\n @if (tableOption.expand?.always) {\r\n <ng-container *ngTemplateOutlet=\"sdSubInformation?.templateRef!; context: { item: item }\"> </ng-container>\r\n } @else {\r\n <div [@detailExpand]=\"item.isExpanded ? 'expanded' : 'collapsed'\">\r\n @if (item.isExpanded) {\r\n <ng-container *ngTemplateOutlet=\"sdSubInformation?.templateRef!; context: { item: item }\"> </ng-container>\r\n }\r\n </div>\r\n }\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdSubInformationAction\" stickyEnd>\r\n <th class=\"p-0\" mat-header-cell *matHeaderCellDef style=\"width: 1px\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n @if (!element.isExpanding && !tableOption.expand?.always) {\r\n <button mat-icon-button aria-label=\"Expand & Collapse\" (click)=\"onExpand(element)\">\r\n @if (!element.isExpanded) {\r\n <mat-icon>expand_more</mat-icon>\r\n } @else {\r\n <mat-icon>expand_less</mat-icon>\r\n }\r\n </button>\r\n }\r\n @if (element.isExpanding) {\r\n <div class=\"lds-ring\">\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n </div>\r\n }\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdSelection\" sticky>\r\n <th class=\"text-center p-0\" mat-header-cell *matHeaderCellDef [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\">\r\n @let visible = items | selectionVisibleSelectAll: tableOption.selector | async;\r\n @if (visible) {\r\n <mat-checkbox\r\n class=\"c-selection px-12\"\r\n style=\"width: 50px\"\r\n color=\"primary\"\r\n [(ngModel)]=\"isSelectAll\"\r\n (change)=\"onSelectAll()\">\r\n </mat-checkbox>\r\n }\r\n </th>\r\n <td class=\"text-center p-0\" mat-cell *matCellDef=\"let item\">\r\n @let visible = item | selectionVisible: tableOption.selector;\r\n @if (visible) {\r\n <mat-checkbox\r\n class=\"c-selection px-12\"\r\n style=\"width: 50px\"\r\n color=\"primary\"\r\n [(ngModel)]=\"item.meta.selector.isSelected\"\r\n (change)=\"onSelect(item)\"\r\n [disabled]=\"selectedTableItems | selectionDisabled: item : tableOption.selector!\">\r\n </mat-checkbox>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container\r\n matColumnDef=\"sdCommand\"\r\n [sticky]=\"tableOption.command?.align !== 'right'\"\r\n [stickyEnd]=\"tableOption.command?.align === 'right'\">\r\n <th class=\"p-0\" mat-header-cell *matHeaderCellDef style=\"width: 50px\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td class=\"px-8\" mat-cell *matCellDef=\"let item\">\r\n <sd-desktop-command\r\n [autoId]=\"autoId\"\r\n [commands]=\"tableOption.command?.commands || tableOption.commands || []\"\r\n [item]=\"item\"\r\n [itemIndex]=\"groupedItems.indexOf(item)\"></sd-desktop-command>\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdGroup\">\r\n <th mat-header-cell *matHeaderCellDef class=\"px-8 py-8\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td class=\"p-0\" mat-cell *matCellDef=\"let item\" [attr.colspan]=\"!item?.sdGroup ? 1 : configuration.displayedColumns.length\">\r\n <div [innerHtml]=\"item?.sdGroup?.htmlTemplate | sdSafeHtml\"></div>\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n @for (column of configuration.firstColumns; track column.field) {\r\n <ng-container [matColumnDef]=\"column.field\" [sticky]=\"configuration.fixedColumn[column.field]\">\r\n <th\r\n mat-header-cell\r\n *matHeaderCellDef\r\n class=\"px-8 py-8 c-th\"\r\n [style.width]=\"column.width\"\r\n [style.min-width]=\"column.minWidth || column.width\"\r\n [style.max-width]=\"column.maxWidth\"\r\n [attr.rowspan]=\"configuration.multipleHeader && column.type !== 'children' ? 2 : 1\"\r\n [attr.colspan]=\"column.type === 'children' ? column.children.length : 1\">\r\n <div>\r\n <!-- N\u1EBFu l\u00E0 column children th\u00EC kh\u00F4ng c\u00F3 sort -->\r\n @if (column.type === 'children') {\r\n <div\r\n aria-hidden=\"true\"\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n } @else {\r\n <div\r\n aria-hidden=\"true\"\r\n mat-sort-header\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [disabled]=\"!column.sortable\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n @let hideInlineFilter =\r\n tableOption.filter?.disabled ||\r\n tableOption.filter?.hideInlineFilter === true ||\r\n (tableOption.filter?.hideInlineFilter === 'auto' && !isFiltered && total! <= 10);\r\n @if (!hideInlineFilter) {\r\n <column-filter\r\n [autoId]=\"autoId\"\r\n [value]=\"columnFilter?.[column.field!]!\"\r\n [(inlineOperator)]=\"columnOperator[column.field]\"\r\n (operatorChange)=\"onOperatorChange(column, $event)\"\r\n [columnFilter]=\"columnFilter!\"\r\n [cacheValues]=\"cacheValues\"\r\n [column]=\"column\"\r\n (filterChange)=\"onFilterChange()\">\r\n </column-filter>\r\n }\r\n }\r\n </div>\r\n </th>\r\n <td\r\n class=\"c-td px-0\"\r\n [class.d-none]=\"column.type === 'children'\"\r\n mat-cell\r\n *matCellDef=\"let item\"\r\n [sdHoverCopy]=\"item.data && item.data[column.field] || ''\"\r\n [sdHoverCopyDisabled]=\"!column.copiable\">\r\n @if (column.type !== 'children' && !item?.sdGroup) {\r\n <sd-desktop-cell\r\n [autoId]=\"autoId\"\r\n class=\"d-block px-8\"\r\n [value]=\"item[column.field]\"\r\n [column]=\"column\"\r\n [item]=\"item\"\r\n [cellDef]=\"cellDef\">\r\n </sd-desktop-cell>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef>\r\n <ng-container *ngIf=\"footerDef[column.field]\">\r\n <ng-container *ngTemplateOutlet=\"footerDef[column.field].templateRef; context: { items: items, column: column }\">\r\n </ng-container>\r\n </ng-container>\r\n </td>\r\n </ng-container>\r\n }\r\n @for (column of configuration.secondColumns; track column.field) {\r\n <ng-container [matColumnDef]=\"column.field\">\r\n <th\r\n mat-header-cell\r\n *matHeaderCellDef\r\n mat-sort-header\r\n class=\"c-th px-8\"\r\n [style.width]=\"column.width\"\r\n [style.min-width]=\"column.minWidth || column.width\"\r\n [style.max-width]=\"column.maxWidth\">\r\n <div>\r\n <div\r\n aria-hidden=\"true\"\r\n mat-sort-header\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [disabled]=\"!column.sortable\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n @if (!tableOption.filter?.disabled && !tableOption.filter?.hideInlineFilter && columnOperator) {\r\n <column-filter\r\n [autoId]=\"autoId\"\r\n [value]=\"columnFilter?.[column.field!]!\"\r\n [(inlineOperator)]=\"columnOperator[column.field]\"\r\n [columnFilter]=\"columnFilter!\"\r\n [cacheValues]=\"cacheValues\"\r\n [column]=\"column\"\r\n (operatorChange)=\"onOperatorChange(column, $event)\"\r\n (filterChange)=\"onFilterChange()\">\r\n </column-filter>\r\n }\r\n </div>\r\n </th>\r\n <td\r\n class=\"c-td px-0\"\r\n mat-cell\r\n *matCellDef=\"let item\"\r\n [sdHoverCopy]=\"item[column.field]\"\r\n [sdHoverCopyDisabled]=\"!column.copiable\">\r\n @if (column.type !== 'children') {\r\n <sd-desktop-cell\r\n [autoId]=\"autoId\"\r\n class=\"d-block px-8\"\r\n [value]=\"item[column.field]\"\r\n [column]=\"column\"\r\n [item]=\"item\"\r\n [cellDef]=\"cellDef\">\r\n </sd-desktop-cell>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef>\r\n <ng-container *ngIf=\"footerDef[column.field]\">\r\n <ng-container *ngTemplateOutlet=\"footerDef[column.field].templateRef; context: { items: items, column: column }\">\r\n </ng-container>\r\n </ng-container>\r\n </td>\r\n </ng-container>\r\n }\r\n <tr class=\"c-first-header\" mat-header-row *matHeaderRowDef=\"configuration.firstHeaders; sticky: true\"></tr>\r\n @if (!!configuration.secondHeaders.length) {\r\n <tr class=\"c-second-header\" mat-header-row *matHeaderRowDef=\"configuration.secondHeaders; sticky: true\"></tr>\r\n }\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: configuration.displayedColumns\"\r\n matRipple\r\n class=\"c-row\"\r\n [class.selected]=\"row.meta.selector.isSelected\"></tr>\r\n\r\n <tr mat-row *matRowDef=\"let row; columns: ['sdSubInformation']\" class=\"c-detail-row\"></tr>\r\n @if (hasFooter && !!configuration.displayedFooters.length) {\r\n <tr mat-footer-row *matFooterRowDef=\"configuration.displayedFooters; sticky: true\"></tr>\r\n }\r\n </table>\r\n <!-- \u0110ang loading th\u00EC kh\u00F4ng n\u00EAn hi\u1EC3n th\u1ECB no data/no result -->\r\n @if (!loading && !total) {\r\n <div class=\"c-no-data-row\">\r\n <!-- C\u1EA7n ph\u00E2n bi\u1EC7t gi\u1EEFa ch\u01B0a c\u00F3 d\u1EEF li\u1EC7u (no data) v\u00E0 t\u00ECm ki\u1EBFm kh\u00F4ng c\u00F3 k\u1EBFt qu\u1EA3 (filter no result) \u0111\u1EC3 t\u01B0\u1EDDng minh v\u1EDBi ng\u01B0\u1EDDi d\u00F9ng -->\r\n @if (isFiltered) {\r\n @if (tableConfiguration?.images?.filterEmpty) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.filterEmpty\" alt=\"filter-empty\" />\r\n } @else {\r\n <img class=\"c-image c-filter-empty-image\" alt=\"filter-empty\" />\r\n }\r\n <div class=\"T16M\">Kh\u00F4ng c\u00F3 k\u1EBFt qu\u1EA3 ph\u00F9 h\u1EE3p</div>\r\n <div class=\"T16R text-secondary\">Vui l\u00F2ng t\u00ECm ki\u1EBFm ho\u1EB7c l\u1ECDc theo ti\u00EAu ch\u00ED kh\u00E1c</div>\r\n } @else {\r\n @if (requireFiltered) {\r\n @if (tableConfiguration?.images?.filterRequired) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.filterRequired\" alt=\"filter-required\" />\r\n } @else {\r\n <img class=\"c-image c-filter-required-image\" alt=\"filter-required\" />\r\n }\r\n <div class=\"T16R text-secondary\">Vui l\u00F2ng ch\u1ECDn b\u1ED9 l\u1ECDc \u0111\u1EC3 b\u1EAFt \u0111\u1EA7u</div>\r\n } @else {\r\n @if (tableConfiguration?.images?.dataEmpty) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.dataEmpty\" alt=\"data-empty\" />\r\n } @else {\r\n <img class=\"c-image c-data-empty-image\" alt=\"data-empty\" />\r\n }\r\n <div class=\"T16R text-secondary\">Ch\u01B0a c\u00F3 d\u1EEF li\u1EC7u</div>\r\n }\r\n }\r\n </div>\r\n }\r\n </div>\r\n <div class=\"c-paginator\">\r\n <div class=\"c-action\">\r\n <!-- <ng-container *sdMobile>\r\n <sd-button *ngIf=\"tableFilter\" class=\"mr-8\" [title]=\"'Filter'\" prefixIcon=\"filter_alt\" (click)=\"tableFilter.open()\" type=\"link\">\r\n </sd-button>\r\n </ng-container> -->\r\n <ng-container *sdDesktop>\r\n @if (tableOption.reload?.visible) {\r\n <sd-button class=\"mr-8\" title=\"T\u1EA3i l\u1EA1i\" prefixIcon=\"refresh\" (click)=\"reload()\" [disabled]=\"!items.length\" type=\"link\">\r\n </sd-button>\r\n }\r\n </ng-container>\r\n @let export = tableOption.export;\r\n @if (export && items.length) {\r\n @if (export.type === 'custom') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportCustom()\" type=\"link\"> </sd-button>\r\n } @else {\r\n @if (export.visible) {\r\n @if (exporting) {\r\n <sd-button class=\"mr-8\" [loading]=\"exporting\" [title]=\"exportTitle\" prefixIcon=\"get_app\" type=\"link\"> </sd-button>\r\n } @else {\r\n @if (export.visible === 'ALL' || !export.visible) {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" [matMenuTriggerFor]=\"menu\" type=\"link\"> </sd-button>\r\n <mat-menu #menu=\"matMenu\">\r\n <button mat-menu-item (click)=\"exportExcel()\" type=\"button\">\r\n <mat-icon fontSet=\"material-icons-outlined\">file_download</mat-icon>\r\n <span> Xu\u1EA5t excel</span>\r\n </button>\r\n <button mat-menu-item (click)=\"exportCSV()\" type=\"button\">\r\n <mat-icon fontSet=\"material-icons-outlined\">file_download</mat-icon>\r\n <span> Xu\u1EA5t CSV</span>\r\n </button>\r\n </mat-menu>\r\n } @else if (export.visible === 'EXCEL') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportExcel()\" type=\"link\"> </sd-button>\r\n } @else if (export.visible === 'CSV') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportCSV()\" type=\"link\"> </sd-button>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n <ng-container *sdDesktop>\r\n @if (configComponent) {\r\n <sd-button class=\"mr-8\" [title]=\"'Thi\u1EBFt l\u1EADp'\" prefixIcon=\"settings\" (click)=\"configComponent.open()\" type=\"link\"> </sd-button>\r\n }\r\n </ng-container>\r\n </div>\r\n <!-- Ch\u1EC9 n\u00EAn d\u00F9ng class d-none \u0111\u1EC3 v\u1EABn gi\u1EEF element mat-paginator ch\u1EE9 kh\u00F4ng \u1EA9n lu\u00F4n -->\r\n @let hidePaginator = !tableOption.paginate?.pageSize || total === undefined || total <= tableOption.paginate?.pageSize!;\r\n <mat-paginator\r\n [class.d-none]=\"tableOption.paginate?.hidden || hidePaginator\"\r\n [length]=\"total\"\r\n [pageSize]=\"tableOption.paginate?.pageSize\"\r\n [pageSizeOptions]=\"tableOption.paginate?.pages!\"\r\n [showFirstLastButtons]=\"tableOption.paginate?.showFirstLastButtons\"\r\n [hidePageSize]=\"tableOption.paginate?.hidePageSize\"></mat-paginator>\r\n @if (!tableOption.paginate?.hidden && hidePaginator && total !== undefined && total > 0) {\r\n <div class=\"T14R pr-16\">\r\n \u0110ang hi\u1EC3n th\u1ECB: <span class=\"T14M ml-2\">1-{{ total }}/{{ total }}</span>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n <selector-action [tableOption]=\"tableOption\" [selectedTableItems]=\"selectedTableItems\" (clear)=\"onClearSelection(groupedItems)\" />\r\n @if (tableOption.config?.visible) {\r\n <config [tableOption]=\"tableOption\" />\r\n }\r\n <!-- <sd-popup-export\r\n *ngIf=\"tableOption.export?.visible\"\r\n [configuration]=\"configuration\"\r\n [tableOption]=\"tableOption\"\r\n (export)=\"onExport($event)\"\r\n #sdPopupExport\r\n ></sd-popup-export> -->\r\n <!-- <sd-table-quick-action\r\n [tableOption]=\"tableOption\"\r\n [selectedTableItems]=\"selectedTableItems\"\r\n (clear)=\"onClearSelection(groupedItems)\"\r\n >\r\n </sd-table-quick-action>\r\n <sd-popup-configuration\r\n *ngIf=\"tableOption?.key && tableOption.config?.visible\"\r\n [tableOption]=\"tableOption\"\r\n >\r\n </sd-popup-configuration> -->\r\n}\r\n", styles: [":host{display:flex;flex-direction:column;overflow:auto;height:100%}:host .c-header-title{height:40px;display:flex;align-items:center}:host .c-container{position:relative;min-height:50px;display:flex;flex-direction:column;flex:1}:host .c-container .c-table{position:relative;flex:1;display:flex;flex-direction:column}:host .c-container .c-table table{border-collapse:separate;width:100%}:host .c-container .c-table table tr.c-first-header.mat-mdc-header-row{height:40px}:host .c-container .c-table table tr.c-second-header.mat-mdc-header-row{height:40px}:host .c-container .c-table table tr.c-detail-row{height:0}:host .c-container .c-table table tr.c-row.activated{background-color:#e5ecff}:host .c-container .c-table table tr.c-row.selected{background-color:#eef2ff}:host .c-container .c-table table tr.c-row:not(.selected):not(.activated):hover{background-color:#f5f5f5}:host .c-container .c-table table tr.c-row td{border-bottom-width:0}:host .c-container .c-table table tr.c-row.c-expandable{cursor:pointer}:host .c-container .c-table table tr.c-row.c-expandable:hover{background:#f5f5f5}:host .c-container .c-table table th.mat-mdc-header-cell{background-color:#f2f3f4;border-bottom:0!important}:host .c-container .c-table table td.mat-mdc-cell,:host .c-container .c-table table td.mat-mdc-footer-cell,:host .c-container .c-table table th.mat-mdc-header-cell{border-bottom-color:#f2f2f2!important}:host .c-container .c-table .c-th{vertical-align:middle;font-weight:500;font-size:14px;line-height:20px;color:#212121}:host .c-container .c-table .c-td:first{padding-left:10px}:host .c-container .c-table .c-no-data-row{flex:1;width:100%;position:sticky;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center}:host .c-container .c-table .c-no-data-row .c-image{margin-bottom:16px;width:96px}:host .c-container .c-table .c-no-data-row .c-filter-required-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-table .c-no-data-row .c-data-empty-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-table .c-no-data-row .c-filter-empty-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-loading{position:absolute;inset:0 0 56px;background:#00000026;z-index:2;display:flex;align-items:center;justify-content:center}:host .c-container .c-paginator{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:#fff}:host .c-container .c-paginator .c-action{padding:5px}:host .c-container .c-empty{text-align:center;background-color:#fff;border:none!important}:host .c-container .c-empty mat-icon{font-size:150px;margin-top:30px;margin-bottom:30px;opacity:.2;width:auto;height:auto}:host button.c-btn-add{background-color:#fff;box-shadow:0 2px 4px #2f313629}:host .lds-ring{display:inline-block;position:relative;width:40px;height:40px}:host .lds-ring div{box-sizing:border-box;display:block;position:absolute;width:32px;height:32px;margin:4px;border:4px solid #cef;border-radius:50%;animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:#cef transparent transparent transparent}:host .lds-ring div:nth-child(1){animation-delay:-.45s}:host .lds-ring div:nth-child(2){animation-delay:-.3s}:host .lds-ring div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host ::ng-deep .mat-sort-header-content{display:block;text-align:left;width:100%}:host ::ng-deep .mat-select-arrow{color:#a6a6a6}:host ::ng-deep .mat-sort-header-disabled{background-image:none!important;cursor:default!important;padding-right:0!important}:host ::ng-deep .mat-sort-header-container{align-items:start!important}:host ::ng-deep .mat-sort-header-arrow{margin-top:4px!important}:host ::ng-deep .mat-sort-header{cursor:pointer}:host ::ng-deep .mat-sort-header[aria-sort]{background-repeat:no-repeat;background-position:center right 0;background-size:16px 16px;cursor:pointer;padding-right:24px}:host ::ng-deep .mat-sort-header[aria-sort=none]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z'/%3E%3C/svg%3E\")}:host ::ng-deep .mat-sort-header[aria-sort=ascending]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E\")}:host ::ng-deep .mat-sort-header[aria-sort=descending]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z'/%3E%3C/svg%3E\")}:host ::ng-deep .c-paginator .mat-mdc-paginator .mdc-text-field--outlined .mat-mdc-form-field-infix,:host ::ng-deep .c-paginator .mat-mdc-paginator .mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:2px;padding-bottom:2px;min-height:32px}:host ::ng-deep .c-paginator .mat-mdc-paginator-range-label{margin:0 4px}:host ::ng-deep .c-paginator .mat-mdc-paginator-page-size-select mat-select{margin-top:2px!important}\n", ":host ::ng-deep .sticky-shadow-right{overflow:visible!important}:host ::ng-deep .sticky-shadow-right:after{content:\"\";position:absolute;top:0;right:0;bottom:0;width:8px;transform:translate(100%);background:linear-gradient(to right,rgba(0,0,0,.12),transparent);pointer-events:none}:host ::ng-deep .sticky-shadow-left{overflow:visible!important}:host ::ng-deep .sticky-shadow-left:after{content:\"\";position:absolute;top:0;left:0;bottom:0;width:8px;transform:translate(-100%);background:linear-gradient(to left,rgba(0,0,0,.12),transparent);pointer-events:none}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i8.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i3$1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i3$1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i3$1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i11.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i11.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i12.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i13.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "title", "width", "size", "tooltip", "prefixIcon", "suffixIcon", "fontSet", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdDesktopCommand, selector: "sd-desktop-command", inputs: ["autoId", "item", "itemIndex", "commands"] }, { kind: "component", type: SdDesktopCell, selector: "sd-desktop-cell", inputs: ["autoId", "value", "column", "item", "cellDef"] }, { kind: "component", type: ExternalFilterComponent, selector: "external-filter", inputs: ["autoId", "filter", "externalFilters", "filterRegister"] }, { kind: "component", type: ConfigComponent, selector: "config", inputs: ["tableOption"] }, { kind: "component", type: ColumnFilterComponent, selector: "column-filter", inputs: ["autoId", "value", "inlineOperator", "columnFilter", "cacheValues", "column"], outputs: ["inlineOperatorChange", "operatorChange", "filterChange"] }, { kind: "pipe", type: SdGroupPipe, name: "sdGroup" }, { kind: "pipe", type: SdSelectionVisiblePipe, name: "selectionVisible" }, { kind: "pipe", type: SdSelectionVisibleSelectAllPipe, name: "selectionVisibleSelectAll" }, { kind: "pipe", type: SdSafeHtmlPipe, name: "sdSafeHtml" }, { kind: "pipe", type:
|
|
3470
|
+
], queries: [{ propertyName: "sdSubInformation", first: true, predicate: SdMaterialSubInformationDefDirective, descendants: true }, { propertyName: "sdCellDefs", predicate: SdTabelCellDefDirective }, { propertyName: "sdFooterDefs", predicate: SdMaterialFooterDefDirective }, { propertyName: "sdFilterDefs", predicate: SdTableFilterDefDirective }], viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true }, { propertyName: "configComponent", first: true, predicate: ConfigComponent, descendants: true }, { propertyName: "sdPopupExport", first: true, predicate: SdPopupExport, descendants: true }, { propertyName: "scroll", first: true, predicate: SdScrollDirective, descendants: true }, { propertyName: "quickAction", first: true, predicate: SdQuickAction, descendants: true }, { propertyName: "externalFilter", first: true, predicate: ExternalFilterComponent, descendants: true }, { propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], usesInheritance: true, ngImport: i0, template: "@if (configuration) {\r\n @if (!tableOption.filter?.disabled && !!tableOption.filter?.externalFilters?.length && filterRegister) {\r\n <external-filter\r\n class=\"mb-16\"\r\n [autoId]=\"autoId\"\r\n [filterRegister]=\"filterRegister\"\r\n [filter]=\"tableOption.filter!\"\r\n [externalFilters]=\"tableOption.filter?.externalFilters!\">\r\n </external-filter>\r\n }\r\n @let groupedItems = items | sdGroup: tableOption;\r\n <ng-content select=\"[sdTableTop]\"></ng-content>\r\n <div class=\"c-container\">\r\n @if (loading) {\r\n <div class=\"c-loading\">\r\n <mat-spinner></mat-spinner>\r\n </div>\r\n }\r\n <div\r\n class=\"c-table\"\r\n sdScroll\r\n stickyShadow\r\n [style.max-height]=\"tableOption.style?.maxHeight\"\r\n [style.min-height]=\"tableOption.style?.minHeight\">\r\n <table\r\n mat-table\r\n [dataSource]=\"groupedItems\"\r\n [trackBy]=\"trackBy\"\r\n matSort\r\n [matSortDisabled]=\"!tableOption.sort?.enable\"\r\n multiTemplateDataRows>\r\n <ng-container matColumnDef=\"sdSubInformation\" sticky>\r\n <td class=\"p-0\" mat-cell *matCellDef=\"let item\" [attr.colspan]=\"configuration.displayedColumns.length\">\r\n @if (sdSubInformation?.templateRef) {\r\n @if (tableOption.expand?.always) {\r\n <ng-container *ngTemplateOutlet=\"sdSubInformation?.templateRef!; context: { item: item }\"> </ng-container>\r\n } @else {\r\n <div [@detailExpand]=\"item.isExpanded ? 'expanded' : 'collapsed'\">\r\n @if (item.isExpanded) {\r\n <ng-container *ngTemplateOutlet=\"sdSubInformation?.templateRef!; context: { item: item }\"> </ng-container>\r\n }\r\n </div>\r\n }\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdSubInformationAction\" stickyEnd>\r\n <th class=\"p-0\" mat-header-cell *matHeaderCellDef style=\"width: 1px\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n @if (!element.isExpanding && !tableOption.expand?.always) {\r\n <button mat-icon-button aria-label=\"Expand & Collapse\" (click)=\"onExpand(element)\">\r\n @if (!element.isExpanded) {\r\n <mat-icon>expand_more</mat-icon>\r\n } @else {\r\n <mat-icon>expand_less</mat-icon>\r\n }\r\n </button>\r\n }\r\n @if (element.isExpanding) {\r\n <div class=\"lds-ring\">\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n </div>\r\n }\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdSelection\" sticky>\r\n <th class=\"text-center p-0\" mat-header-cell *matHeaderCellDef [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\">\r\n @let visible = items | selectionVisibleSelectAll: tableOption.selector | async;\r\n @if (visible) {\r\n <mat-checkbox\r\n class=\"c-selection px-12\"\r\n style=\"width: 50px\"\r\n color=\"primary\"\r\n [(ngModel)]=\"isSelectAll\"\r\n (change)=\"onSelectAll()\">\r\n </mat-checkbox>\r\n }\r\n </th>\r\n <td class=\"text-center p-0\" mat-cell *matCellDef=\"let item\">\r\n @let visible = item | selectionVisible: tableOption.selector;\r\n @if (visible) {\r\n <mat-checkbox\r\n class=\"c-selection px-12\"\r\n style=\"width: 50px\"\r\n color=\"primary\"\r\n [(ngModel)]=\"item.meta.selector.isSelected\"\r\n (change)=\"onSelect(item)\"\r\n [disabled]=\"selectedTableItems | selectionDisabled: item : tableOption.selector!\">\r\n </mat-checkbox>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container\r\n matColumnDef=\"sdCommand\"\r\n [sticky]=\"tableOption.command?.align !== 'right'\"\r\n [stickyEnd]=\"tableOption.command?.align === 'right'\">\r\n <th class=\"p-0\" mat-header-cell *matHeaderCellDef style=\"width: 50px\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td class=\"px-8\" mat-cell *matCellDef=\"let item\">\r\n <sd-desktop-command\r\n [autoId]=\"autoId\"\r\n [commands]=\"tableOption.command?.commands || tableOption.commands || []\"\r\n [item]=\"item\"\r\n [itemIndex]=\"groupedItems.indexOf(item)\"></sd-desktop-command>\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"sdGroup\">\r\n <th mat-header-cell *matHeaderCellDef class=\"px-8 py-8\" [attr.rowspan]=\"configuration.multipleHeader ? 2 : 1\"></th>\r\n <td class=\"p-0\" mat-cell *matCellDef=\"let item\" [attr.colspan]=\"!item?.sdGroup ? 1 : configuration.displayedColumns.length\">\r\n <div [innerHtml]=\"item?.sdGroup?.htmlTemplate | sdSafeHtml\"></div>\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef></td>\r\n </ng-container>\r\n @for (column of configuration.firstColumns; track column.field) {\r\n <ng-container [matColumnDef]=\"column.field\" [sticky]=\"configuration.fixedColumn[column.field]\">\r\n <th\r\n mat-header-cell\r\n *matHeaderCellDef\r\n class=\"px-8 py-8 c-th\"\r\n [style.width]=\"column.width\"\r\n [style.min-width]=\"column.minWidth || column.width\"\r\n [style.max-width]=\"column.maxWidth\"\r\n [attr.rowspan]=\"configuration.multipleHeader && column.type !== 'children' ? 2 : 1\"\r\n [attr.colspan]=\"column.type === 'children' ? column.children.length : 1\">\r\n <div>\r\n <!-- N\u1EBFu l\u00E0 column children th\u00EC kh\u00F4ng c\u00F3 sort -->\r\n @if (column.type === 'children') {\r\n <div\r\n aria-hidden=\"true\"\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n } @else {\r\n <div\r\n aria-hidden=\"true\"\r\n mat-sort-header\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [disabled]=\"!column.sortable\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n @let hideInlineFilter =\r\n tableOption.filter?.disabled ||\r\n tableOption.filter?.hideInlineFilter === true ||\r\n (tableOption.filter?.hideInlineFilter === 'auto' && !isFiltered && total! <= 10);\r\n @if (!hideInlineFilter) {\r\n <column-filter\r\n [autoId]=\"autoId\"\r\n [value]=\"columnFilter?.[column.field!]!\"\r\n [(inlineOperator)]=\"columnOperator[column.field]\"\r\n (operatorChange)=\"onOperatorChange(column, $event)\"\r\n [columnFilter]=\"columnFilter!\"\r\n [cacheValues]=\"cacheValues\"\r\n [column]=\"column\"\r\n (filterChange)=\"onFilterChange()\">\r\n </column-filter>\r\n }\r\n }\r\n </div>\r\n </th>\r\n <td\r\n class=\"c-td px-0\"\r\n [class.d-none]=\"column.type === 'children'\"\r\n mat-cell\r\n *matCellDef=\"let item\"\r\n [sdHoverCopy]=\"item.data && item.data[column.field] || ''\"\r\n [sdHoverCopyDisabled]=\"!column.copiable\">\r\n @if (column.type !== 'children' && !item?.sdGroup) {\r\n <sd-desktop-cell\r\n [autoId]=\"autoId\"\r\n class=\"d-block px-8\"\r\n [value]=\"item[column.field]\"\r\n [column]=\"column\"\r\n [item]=\"item\"\r\n [cellDef]=\"cellDef\">\r\n </sd-desktop-cell>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef>\r\n <ng-container *ngIf=\"footerDef[column.field]\">\r\n <ng-container *ngTemplateOutlet=\"footerDef[column.field].templateRef; context: { items: items, column: column }\">\r\n </ng-container>\r\n </ng-container>\r\n </td>\r\n </ng-container>\r\n }\r\n @for (column of configuration.secondColumns; track column.field) {\r\n <ng-container [matColumnDef]=\"column.field\">\r\n <th\r\n mat-header-cell\r\n *matHeaderCellDef\r\n mat-sort-header\r\n class=\"c-th px-8\"\r\n [style.width]=\"column.width\"\r\n [style.min-width]=\"column.minWidth || column.width\"\r\n [style.max-width]=\"column.maxWidth\">\r\n <div>\r\n <div\r\n aria-hidden=\"true\"\r\n mat-sort-header\r\n class=\"c-header-title\"\r\n [class.justify-content-end]=\"column.align === 'right'\"\r\n [class.text-right]=\"column.align === 'right'\"\r\n [disabled]=\"!column.sortable\"\r\n [innerHTML]=\"column.titleHtml || column.title\"></div>\r\n @if (!tableOption.filter?.disabled && !tableOption.filter?.hideInlineFilter && columnOperator) {\r\n <column-filter\r\n [autoId]=\"autoId\"\r\n [value]=\"columnFilter?.[column.field!]!\"\r\n [(inlineOperator)]=\"columnOperator[column.field]\"\r\n [columnFilter]=\"columnFilter!\"\r\n [cacheValues]=\"cacheValues\"\r\n [column]=\"column\"\r\n (operatorChange)=\"onOperatorChange(column, $event)\"\r\n (filterChange)=\"onFilterChange()\">\r\n </column-filter>\r\n }\r\n </div>\r\n </th>\r\n <td\r\n class=\"c-td px-0\"\r\n mat-cell\r\n *matCellDef=\"let item\"\r\n [sdHoverCopy]=\"item[column.field]\"\r\n [sdHoverCopyDisabled]=\"!column.copiable\">\r\n @if (column.type !== 'children') {\r\n <sd-desktop-cell\r\n [autoId]=\"autoId\"\r\n class=\"d-block px-8\"\r\n [value]=\"item[column.field]\"\r\n [column]=\"column\"\r\n [item]=\"item\"\r\n [cellDef]=\"cellDef\">\r\n </sd-desktop-cell>\r\n }\r\n </td>\r\n <td mat-footer-cell *matFooterCellDef>\r\n <ng-container *ngIf=\"footerDef[column.field]\">\r\n <ng-container *ngTemplateOutlet=\"footerDef[column.field].templateRef; context: { items: items, column: column }\">\r\n </ng-container>\r\n </ng-container>\r\n </td>\r\n </ng-container>\r\n }\r\n <tr class=\"c-first-header\" mat-header-row *matHeaderRowDef=\"configuration.firstHeaders; sticky: true\"></tr>\r\n @if (!!configuration.secondHeaders.length) {\r\n <tr class=\"c-second-header\" mat-header-row *matHeaderRowDef=\"configuration.secondHeaders; sticky: true\"></tr>\r\n }\r\n <tr\r\n mat-row\r\n *matRowDef=\"let row; columns: configuration.displayedColumns\"\r\n matRipple\r\n class=\"c-row\"\r\n [class.selected]=\"row.meta.selector.isSelected\"></tr>\r\n\r\n <tr mat-row *matRowDef=\"let row; columns: ['sdSubInformation']\" class=\"c-detail-row\"></tr>\r\n @if (hasFooter && !!configuration.displayedFooters.length) {\r\n <tr mat-footer-row *matFooterRowDef=\"configuration.displayedFooters; sticky: true\"></tr>\r\n }\r\n </table>\r\n <!-- \u0110ang loading th\u00EC kh\u00F4ng n\u00EAn hi\u1EC3n th\u1ECB no data/no result -->\r\n @if (!loading && !total) {\r\n <div class=\"c-no-data-row\">\r\n <!-- C\u1EA7n ph\u00E2n bi\u1EC7t gi\u1EEFa ch\u01B0a c\u00F3 d\u1EEF li\u1EC7u (no data) v\u00E0 t\u00ECm ki\u1EBFm kh\u00F4ng c\u00F3 k\u1EBFt qu\u1EA3 (filter no result) \u0111\u1EC3 t\u01B0\u1EDDng minh v\u1EDBi ng\u01B0\u1EDDi d\u00F9ng -->\r\n @if (isFiltered) {\r\n @if (tableConfiguration?.images?.filterEmpty) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.filterEmpty\" alt=\"filter-empty\" />\r\n } @else {\r\n <img class=\"c-image c-filter-empty-image\" alt=\"filter-empty\" />\r\n }\r\n <div class=\"T16M\">Kh\u00F4ng c\u00F3 k\u1EBFt qu\u1EA3 ph\u00F9 h\u1EE3p</div>\r\n <div class=\"T16R text-secondary\">Vui l\u00F2ng t\u00ECm ki\u1EBFm ho\u1EB7c l\u1ECDc theo ti\u00EAu ch\u00ED kh\u00E1c</div>\r\n } @else {\r\n @if (requireFiltered) {\r\n @if (tableConfiguration?.images?.filterRequired) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.filterRequired\" alt=\"filter-required\" />\r\n } @else {\r\n <img class=\"c-image c-filter-required-image\" alt=\"filter-required\" />\r\n }\r\n <div class=\"T16R text-secondary\">Vui l\u00F2ng ch\u1ECDn b\u1ED9 l\u1ECDc \u0111\u1EC3 b\u1EAFt \u0111\u1EA7u</div>\r\n } @else {\r\n @if (tableConfiguration?.images?.dataEmpty) {\r\n <img class=\"c-image\" [src]=\"tableConfiguration!.images!.dataEmpty\" alt=\"data-empty\" />\r\n } @else {\r\n <img class=\"c-image c-data-empty-image\" alt=\"data-empty\" />\r\n }\r\n <div class=\"T16R text-secondary\">Ch\u01B0a c\u00F3 d\u1EEF li\u1EC7u</div>\r\n }\r\n }\r\n </div>\r\n }\r\n </div>\r\n <div class=\"c-paginator\">\r\n <div class=\"c-action\">\r\n <!-- <ng-container *sdMobile>\r\n <sd-button *ngIf=\"tableFilter\" class=\"mr-8\" [title]=\"'Filter'\" prefixIcon=\"filter_alt\" (click)=\"tableFilter.open()\" type=\"link\">\r\n </sd-button>\r\n </ng-container> -->\r\n <ng-container *sdDesktop>\r\n @if (tableOption.reload?.visible) {\r\n <sd-button class=\"mr-8\" title=\"T\u1EA3i l\u1EA1i\" prefixIcon=\"refresh\" (click)=\"reload()\" [disabled]=\"!items.length\" type=\"link\">\r\n </sd-button>\r\n }\r\n </ng-container>\r\n @let export = tableOption.export;\r\n @if (export && items.length) {\r\n @if (export.type === 'custom') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportCustom()\" type=\"link\"> </sd-button>\r\n } @else {\r\n @if (export.visible) {\r\n @if (exporting) {\r\n <sd-button class=\"mr-8\" [loading]=\"exporting\" [title]=\"exportTitle\" prefixIcon=\"get_app\" type=\"link\"> </sd-button>\r\n } @else {\r\n @if (export.visible === 'ALL' || !export.visible) {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" [matMenuTriggerFor]=\"menu\" type=\"link\"> </sd-button>\r\n <mat-menu #menu=\"matMenu\">\r\n <button mat-menu-item (click)=\"exportExcel()\" type=\"button\">\r\n <mat-icon fontSet=\"material-icons-outlined\">file_download</mat-icon>\r\n <span> Xu\u1EA5t excel</span>\r\n </button>\r\n <button mat-menu-item (click)=\"exportCSV()\" type=\"button\">\r\n <mat-icon fontSet=\"material-icons-outlined\">file_download</mat-icon>\r\n <span> Xu\u1EA5t CSV</span>\r\n </button>\r\n </mat-menu>\r\n } @else if (export.visible === 'EXCEL') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportExcel()\" type=\"link\"> </sd-button>\r\n } @else if (export.visible === 'CSV') {\r\n <sd-button class=\"mr-8\" [title]=\"exportTitle\" prefixIcon=\"get_app\" (click)=\"exportCSV()\" type=\"link\"> </sd-button>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n <ng-container *sdDesktop>\r\n @if (configComponent) {\r\n <sd-button class=\"mr-8\" [title]=\"'Thi\u1EBFt l\u1EADp'\" prefixIcon=\"settings\" (click)=\"configComponent.open()\" type=\"link\"> </sd-button>\r\n }\r\n </ng-container>\r\n </div>\r\n <!-- Ch\u1EC9 n\u00EAn d\u00F9ng class d-none \u0111\u1EC3 v\u1EABn gi\u1EEF element mat-paginator ch\u1EE9 kh\u00F4ng \u1EA9n lu\u00F4n -->\r\n @let hidePaginator = !tableOption.paginate?.pageSize || total === undefined || total <= tableOption.paginate?.pageSize!;\r\n <mat-paginator\r\n [class.d-none]=\"tableOption.paginate?.hidden || hidePaginator\"\r\n [length]=\"total\"\r\n [pageSize]=\"tableOption.paginate?.pageSize\"\r\n [pageSizeOptions]=\"tableOption.paginate?.pages!\"\r\n [showFirstLastButtons]=\"tableOption.paginate?.showFirstLastButtons\"\r\n [hidePageSize]=\"tableOption.paginate?.hidePageSize\"></mat-paginator>\r\n @if (!tableOption.paginate?.hidden && hidePaginator && total !== undefined && total > 0) {\r\n <div class=\"T14R pr-16\">\r\n \u0110ang hi\u1EC3n th\u1ECB: <span class=\"T14M ml-2\">1-{{ total }}/{{ total }}</span>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n <selector-action [tableOption]=\"tableOption\" [selectedTableItems]=\"selectedTableItems\" (clear)=\"onClearSelection(groupedItems)\" />\r\n @if (tableOption.config?.visible) {\r\n <config [tableOption]=\"tableOption\" />\r\n }\r\n <!-- <sd-popup-export\r\n *ngIf=\"tableOption.export?.visible\"\r\n [configuration]=\"configuration\"\r\n [tableOption]=\"tableOption\"\r\n (export)=\"onExport($event)\"\r\n #sdPopupExport\r\n ></sd-popup-export> -->\r\n <!-- <sd-table-quick-action\r\n [tableOption]=\"tableOption\"\r\n [selectedTableItems]=\"selectedTableItems\"\r\n (clear)=\"onClearSelection(groupedItems)\"\r\n >\r\n </sd-table-quick-action>\r\n <sd-popup-configuration\r\n *ngIf=\"tableOption?.key && tableOption.config?.visible\"\r\n [tableOption]=\"tableOption\"\r\n >\r\n </sd-popup-configuration> -->\r\n}\r\n", styles: [":host{display:flex;flex-direction:column;overflow:auto;height:100%}:host .c-header-title{height:40px;display:flex;align-items:center}:host .c-container{position:relative;min-height:50px;display:flex;flex-direction:column;flex:1}:host .c-container .c-table{position:relative;flex:1;display:flex;flex-direction:column}:host .c-container .c-table table{border-collapse:separate;width:100%}:host .c-container .c-table table tr.c-first-header.mat-mdc-header-row{height:40px}:host .c-container .c-table table tr.c-second-header.mat-mdc-header-row{height:40px}:host .c-container .c-table table tr.c-detail-row{height:0}:host .c-container .c-table table tr.c-row.activated{background-color:#e5ecff}:host .c-container .c-table table tr.c-row.selected{background-color:#eef2ff}:host .c-container .c-table table tr.c-row:not(.selected):not(.activated):hover{background-color:#f5f5f5}:host .c-container .c-table table tr.c-row td{border-bottom-width:0}:host .c-container .c-table table tr.c-row.c-expandable{cursor:pointer}:host .c-container .c-table table tr.c-row.c-expandable:hover{background:#f5f5f5}:host .c-container .c-table table th.mat-mdc-header-cell{background-color:#f2f3f4;border-bottom:0!important}:host .c-container .c-table table td.mat-mdc-cell,:host .c-container .c-table table td.mat-mdc-footer-cell,:host .c-container .c-table table th.mat-mdc-header-cell{border-bottom-color:#f2f2f2!important}:host .c-container .c-table .c-th{vertical-align:middle;font-weight:500;font-size:14px;line-height:20px;color:#212121}:host .c-container .c-table .c-td:first{padding-left:10px}:host .c-container .c-table .c-no-data-row{flex:1;width:100%;position:sticky;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center}:host .c-container .c-table .c-no-data-row .c-image{margin-bottom:16px;width:96px}:host .c-container .c-table .c-no-data-row .c-filter-required-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-table .c-no-data-row .c-data-empty-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-table .c-no-data-row .c-filter-empty-image{content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}:host .c-container .c-loading{position:absolute;inset:0 0 56px;background:#00000026;z-index:2;display:flex;align-items:center;justify-content:center}:host .c-container .c-paginator{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:#fff}:host .c-container .c-paginator .c-action{padding:5px}:host .c-container .c-empty{text-align:center;background-color:#fff;border:none!important}:host .c-container .c-empty mat-icon{font-size:150px;margin-top:30px;margin-bottom:30px;opacity:.2;width:auto;height:auto}:host button.c-btn-add{background-color:#fff;box-shadow:0 2px 4px #2f313629}:host .lds-ring{display:inline-block;position:relative;width:40px;height:40px}:host .lds-ring div{box-sizing:border-box;display:block;position:absolute;width:32px;height:32px;margin:4px;border:4px solid #cef;border-radius:50%;animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:#cef transparent transparent transparent}:host .lds-ring div:nth-child(1){animation-delay:-.45s}:host .lds-ring div:nth-child(2){animation-delay:-.3s}:host .lds-ring div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host ::ng-deep .mat-sort-header-content{display:block;text-align:left;width:100%}:host ::ng-deep .mat-select-arrow{color:#a6a6a6}:host ::ng-deep .mat-sort-header-disabled{background-image:none!important;cursor:default!important;padding-right:0!important}:host ::ng-deep .mat-sort-header-container{align-items:start!important}:host ::ng-deep .mat-sort-header-arrow{margin-top:4px!important}:host ::ng-deep .mat-sort-header{cursor:pointer}:host ::ng-deep .mat-sort-header[aria-sort]{background-repeat:no-repeat;background-position:center right 0;background-size:16px 16px;cursor:pointer;padding-right:24px}:host ::ng-deep .mat-sort-header[aria-sort=none]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z'/%3E%3C/svg%3E\")}:host ::ng-deep .mat-sort-header[aria-sort=ascending]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E\")}:host ::ng-deep .mat-sort-header[aria-sort=descending]{background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath fill='%237A7A7A' d='M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z'/%3E%3C/svg%3E\")}:host ::ng-deep .c-paginator .mat-mdc-paginator .mdc-text-field--outlined .mat-mdc-form-field-infix,:host ::ng-deep .c-paginator .mat-mdc-paginator .mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:2px;padding-bottom:2px;min-height:32px}:host ::ng-deep .c-paginator .mat-mdc-paginator-range-label{margin:0 4px}:host ::ng-deep .c-paginator .mat-mdc-paginator-page-size-select mat-select{margin-top:2px!important}\n", ":host ::ng-deep .sticky-shadow-right{overflow:visible!important}:host ::ng-deep .sticky-shadow-right:after{content:\"\";position:absolute;top:0;right:0;bottom:0;width:8px;transform:translate(100%);background:linear-gradient(to right,rgba(0,0,0,.12),transparent);pointer-events:none}:host ::ng-deep .sticky-shadow-left{overflow:visible!important}:host ::ng-deep .sticky-shadow-left:after{content:\"\";position:absolute;top:0;left:0;bottom:0;width:8px;transform:translate(-100%);background:linear-gradient(to left,rgba(0,0,0,.12),transparent);pointer-events:none}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i8.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i3$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i3$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i3$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i3$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i3$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i3$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i3$1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i3$1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i3$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i3$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i3$1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i3$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i3$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i3$1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i11.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i11.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i12.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i13.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "component", type: SdButton, selector: "sd-button", inputs: ["autoId", "type", "color", "size", "fontSet", "title", "width", "tooltip", "prefixIcon", "suffixIcon", "disabled", "loading"], outputs: ["click"] }, { kind: "component", type: SdDesktopCommand, selector: "sd-desktop-command", inputs: ["autoId", "item", "itemIndex", "commands"] }, { kind: "component", type: SdDesktopCell, selector: "sd-desktop-cell", inputs: ["autoId", "value", "column", "item", "cellDef"] }, { kind: "component", type: ExternalFilterComponent, selector: "external-filter", inputs: ["autoId", "filter", "externalFilters", "filterRegister"] }, { kind: "component", type: ConfigComponent, selector: "config", inputs: ["tableOption"] }, { kind: "component", type: ColumnFilterComponent, selector: "column-filter", inputs: ["autoId", "value", "inlineOperator", "columnFilter", "cacheValues", "column"], outputs: ["inlineOperatorChange", "operatorChange", "filterChange"] }, { kind: "pipe", type: SdGroupPipe, name: "sdGroup" }, { kind: "pipe", type: SdSelectionVisiblePipe, name: "selectionVisible" }, { kind: "pipe", type: SdSelectionVisibleSelectAllPipe, name: "selectionVisibleSelectAll" }, { kind: "pipe", type: SdSafeHtmlPipe, name: "sdSafeHtml" }, { kind: "pipe", type:
|
|
3471
3471
|
// SdPopupExport,
|
|
3472
3472
|
SdSelectionDisabledPipe, name: "selectionDisabled" }, { kind: "directive", type: SdScrollDirective, selector: "[sdScroll]" }, { kind: "directive", type: SdDesktopDirective, selector: "[sdDesktop]" }, { kind: "directive", type: SdHoverCopyDirective, selector: "[sdHoverCopy]", inputs: ["sdHoverCopy", "sdHoverCopyDisabled"] }, { kind: "component", type: SelectorActionComponent, selector: "selector-action", inputs: ["tableOption", "selectedTableItems"], outputs: ["clear"] }, { kind: "directive", type:
|
|
3473
3473
|
// Private Directives
|