@softheon/armature 19.17.3 → 19.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/_typography.scss +1 -0
- package/assets/styles/sof-styles-b2b.scss +1 -2
- package/fesm2022/softheon-armature.mjs +567 -87
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-chip/sof-chip.component.d.ts +1 -1
- package/lib/directives/text-overflow-ellipsis-tooltip.directive.d.ts +1 -1
- package/lib/forms/components/sof-select/sof-select.component.d.ts +239 -0
- package/lib/forms/forms-api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { CommonModule, DOCUMENT, DatePipe } from '@angular/common';
|
|
|
3
3
|
import * as i1$1 from '@angular/common/http';
|
|
4
4
|
import { HttpHeaders, provideHttpClient, withInterceptorsFromDi, HTTP_INTERCEPTORS } from '@angular/common/http';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { InjectionToken, Injectable, ViewChild, Input, Optional, Inject, Component, NgModule, EventEmitter, Output, ViewChildren, signal, inject, ChangeDetectionStrategy, isDevMode, HostListener, Directive, Renderer2, ElementRef, Pipe, ViewEncapsulation, Self, Host, APP_INITIALIZER, Injector, ChangeDetectorRef, ErrorHandler } from '@angular/core';
|
|
6
|
+
import { InjectionToken, Injectable, ViewChild, Input, Optional, Inject, Component, NgModule, EventEmitter, Output, ViewChildren, signal, inject, ChangeDetectionStrategy, isDevMode, HostListener, Directive, Renderer2, ElementRef, Pipe, ViewEncapsulation, Self, Host, APP_INITIALIZER, Injector, computed, DestroyRef, effect, ChangeDetectorRef, ErrorHandler } from '@angular/core';
|
|
7
7
|
import * as i1$4 from '@angular/router';
|
|
8
8
|
import { NavigationEnd, Router, RouterModule, NavigationStart, NavigationError } from '@angular/router';
|
|
9
9
|
import { FlexLayoutModule } from '@ngbracket/ngx-layout';
|
|
@@ -13,11 +13,11 @@ import * as i2$1 from '@ngx-translate/core';
|
|
|
13
13
|
import { TranslateModule, TranslateService } from '@ngx-translate/core';
|
|
14
14
|
import * as i2 from '@ngbracket/ngx-layout/flex';
|
|
15
15
|
import * as i3 from '@ngbracket/ngx-layout/extended';
|
|
16
|
-
import { BehaviorSubject, of, Subscription, filter as filter$1, lastValueFrom, throwError, ReplaySubject } from 'rxjs';
|
|
16
|
+
import { BehaviorSubject, of, Subscription, filter as filter$1, lastValueFrom, throwError, tap, ReplaySubject } from 'rxjs';
|
|
17
17
|
import * as i1$2 from 'angular-oauth2-oidc';
|
|
18
18
|
import { AuthConfig } from 'angular-oauth2-oidc';
|
|
19
19
|
import { STEPPER_GLOBAL_OPTIONS } from '@angular/cdk/stepper';
|
|
20
|
-
import { map, catchError, filter, switchMap, take, share, first, distinctUntilChanged, tap } from 'rxjs/operators';
|
|
20
|
+
import { map, catchError, filter, switchMap, take, share, first, distinctUntilChanged, tap as tap$1 } from 'rxjs/operators';
|
|
21
21
|
import * as i1$3 from '@angular/cdk/layout';
|
|
22
22
|
import { BreakpointObserver, LayoutModule } from '@angular/cdk/layout';
|
|
23
23
|
import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks';
|
|
@@ -1353,7 +1353,7 @@ class ArmatureNavigationComponent {
|
|
|
1353
1353
|
// if parents have no route, grab first route of child
|
|
1354
1354
|
this.navigationData?.forEach(n => {
|
|
1355
1355
|
if (!n.route) {
|
|
1356
|
-
n.route = n
|
|
1356
|
+
n.route = n?.subNodes && n?.subNodes?.length > 0 ? n?.subNodes[0].route : undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
// enable all pages by default
|
|
1359
1359
|
if (n.isDisabled == null) {
|
|
@@ -1369,7 +1369,7 @@ class ArmatureNavigationComponent {
|
|
|
1369
1369
|
if (this.navigationData.length > 0) {
|
|
1370
1370
|
this.navigationData[0].visited = true;
|
|
1371
1371
|
this.navigate(this.navigationData[0].route);
|
|
1372
|
-
if (this.navigationData[0]
|
|
1372
|
+
if (this.navigationData[0]?.subNodes && this.navigationData[0]?.subNodes?.length > 0) {
|
|
1373
1373
|
this.navigationData[0].subNodes[0].visited = true;
|
|
1374
1374
|
this.navigate(this.navigationData[0].subNodes[0].route);
|
|
1375
1375
|
}
|
|
@@ -1409,7 +1409,7 @@ class ArmatureNavigationComponent {
|
|
|
1409
1409
|
this.navigationData.forEach(n => {
|
|
1410
1410
|
n.visited = false;
|
|
1411
1411
|
n.complete = false;
|
|
1412
|
-
n
|
|
1412
|
+
n?.subNodes?.forEach(s => {
|
|
1413
1413
|
s.visited = false;
|
|
1414
1414
|
s.complete = false;
|
|
1415
1415
|
});
|
|
@@ -1432,7 +1432,7 @@ class ArmatureNavigationComponent {
|
|
|
1432
1432
|
this.getActiveParentAndChild(event.url);
|
|
1433
1433
|
}));
|
|
1434
1434
|
// if the child node index is valid
|
|
1435
|
-
if (config.navigation.nodes[this.toggleProgressNavParentIndex]
|
|
1435
|
+
if (config.navigation.nodes[this.toggleProgressNavParentIndex]?.subNodes?.length > this.toggleProgressNavChildIndex) {
|
|
1436
1436
|
this.setNodeStates(config.navigation.nodes[this.toggleProgressNavParentIndex], config.navigation.nodes[this.toggleProgressNavParentIndex].subNodes[this.toggleProgressNavChildIndex]);
|
|
1437
1437
|
}
|
|
1438
1438
|
else {
|
|
@@ -1463,7 +1463,7 @@ class ArmatureNavigationComponent {
|
|
|
1463
1463
|
stepper.steps.forEach((step, jindex) => {
|
|
1464
1464
|
step.select = () => {
|
|
1465
1465
|
this.selectedChildIndexes[index] = jindex;
|
|
1466
|
-
this.navigate(this.navigationData[index]
|
|
1466
|
+
this.navigate(this.navigationData[index]?.subNodes[jindex].route);
|
|
1467
1467
|
};
|
|
1468
1468
|
});
|
|
1469
1469
|
});
|
|
@@ -1547,7 +1547,7 @@ class ArmatureNavigationComponent {
|
|
|
1547
1547
|
this.navigationData[parentIndex].subNodes[childIndex].visited = true;
|
|
1548
1548
|
return 'active';
|
|
1549
1549
|
}
|
|
1550
|
-
else if (childIndex > innerStepper.selectedIndex && this.navigationData[parentIndex]
|
|
1550
|
+
else if (childIndex > innerStepper.selectedIndex && this.navigationData[parentIndex]?.subNodes[childIndex].visited) {
|
|
1551
1551
|
innerStepper.steps.find((s, index) => index === childIndex)
|
|
1552
1552
|
.reset();
|
|
1553
1553
|
return 'active';
|
|
@@ -1586,7 +1586,7 @@ class ArmatureNavigationComponent {
|
|
|
1586
1586
|
getActiveParentAndChild(url) {
|
|
1587
1587
|
let childIndex;
|
|
1588
1588
|
let parentIndex = this.navigationData.findIndex(n => {
|
|
1589
|
-
childIndex = n
|
|
1589
|
+
childIndex = n?.subNodes?.findIndex(s => url.includes(s.route.replace('.', '')));
|
|
1590
1590
|
return childIndex > -1 || this.router.url.includes(n.route.replace('.', ''));
|
|
1591
1591
|
});
|
|
1592
1592
|
if (parentIndex == -1) {
|
|
@@ -1594,9 +1594,9 @@ class ArmatureNavigationComponent {
|
|
|
1594
1594
|
}
|
|
1595
1595
|
// set the active parent node and sub node
|
|
1596
1596
|
this.activeParentNode = this.navigationData[parentIndex];
|
|
1597
|
-
this.activeSubNode = childIndex > -1 && this.activeParentNode
|
|
1597
|
+
this.activeSubNode = childIndex > -1 && this.activeParentNode?.subNodes?.length > 0 ? this.activeParentNode?.subNodes[childIndex] : null;
|
|
1598
1598
|
// if there are subnodes and we are on the first node, set the active sub node to be the first one, if there isnt one
|
|
1599
|
-
if (this.activeParentNode
|
|
1599
|
+
if (this.activeParentNode?.subNodes?.length > 0 && parentIndex == 0 && childIndex == -1) {
|
|
1600
1600
|
this.activeSubNode = this.activeParentNode.subNodes[0];
|
|
1601
1601
|
}
|
|
1602
1602
|
// compute the progress bar
|
|
@@ -1612,9 +1612,9 @@ class ArmatureNavigationComponent {
|
|
|
1612
1612
|
setNodeStates(parentNode, childNode) {
|
|
1613
1613
|
if (childNode) {
|
|
1614
1614
|
this.activeSubNode = childNode;
|
|
1615
|
-
let childIndex = parentNode
|
|
1615
|
+
let childIndex = parentNode?.subNodes?.indexOf(childNode) > -1 ? parentNode?.subNodes?.indexOf(childNode) : 0;
|
|
1616
1616
|
// all subnodes before this were completed and visited
|
|
1617
|
-
parentNode
|
|
1617
|
+
parentNode?.subNodes?.slice(0, childIndex).forEach(element => {
|
|
1618
1618
|
element.complete = true;
|
|
1619
1619
|
element.visited = true;
|
|
1620
1620
|
});
|
|
@@ -1626,7 +1626,7 @@ class ArmatureNavigationComponent {
|
|
|
1626
1626
|
d.complete = true;
|
|
1627
1627
|
// set all subnodes of previous nodes to complete only if the node was not disabled
|
|
1628
1628
|
if (!d.isDisabled) {
|
|
1629
|
-
d
|
|
1629
|
+
d?.subNodes?.forEach(s => {
|
|
1630
1630
|
s.complete = true;
|
|
1631
1631
|
s.visited = true;
|
|
1632
1632
|
});
|
|
@@ -1684,7 +1684,7 @@ class ArmatureNavigationComponent {
|
|
|
1684
1684
|
// find parent index with active child
|
|
1685
1685
|
let childIndex;
|
|
1686
1686
|
let parentIndex = this.navigationData.findIndex(n => {
|
|
1687
|
-
childIndex = n
|
|
1687
|
+
childIndex = n?.subNodes?.findIndex(s => this.router.url.includes(s.route.replace('.', '')));
|
|
1688
1688
|
return childIndex > -1 || this.router.url.includes(n.route.replace('.', ''));
|
|
1689
1689
|
});
|
|
1690
1690
|
// if no children or no indexes activate first parent
|
|
@@ -1702,7 +1702,7 @@ class ArmatureNavigationComponent {
|
|
|
1702
1702
|
// find parent index with active child
|
|
1703
1703
|
let childIndex;
|
|
1704
1704
|
let parentIndex = this.navigationData.findIndex(n => {
|
|
1705
|
-
childIndex = n
|
|
1705
|
+
childIndex = n?.subNodes?.findIndex(s => event.urlAfterRedirects.includes(s.route.replace('.', '')));
|
|
1706
1706
|
return childIndex > -1 || event.urlAfterRedirects.includes(n.route.replace('.', ''));
|
|
1707
1707
|
});
|
|
1708
1708
|
// if no children or no indexes activate first parent
|
|
@@ -1763,13 +1763,13 @@ class ArmatureNavigationComponent {
|
|
|
1763
1763
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: ArmatureNavigationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$3.MediaMatcher }, { token: i1$4.Router }, { token: BannerService }, { token: AuthorizationService }, { token: BaseConfigService, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1764
1764
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: ArmatureNavigationComponent, isStandalone: false, selector: "sof-ar-navigation", inputs: { navigationData: "navigationData", settings: "settings", advancedSettings: "advancedSettings", themeSettings: "themeSettings", languageSettings: "languageSettings", currentLang: "currentLang", logOutText: "logOutText" }, outputs: { setLanguage$: "setLanguage$" }, providers: [{
|
|
1765
1765
|
provide: STEPPER_GLOBAL_OPTIONS, useValue: { displayDefaultIndicatorType: false }
|
|
1766
|
-
}], viewQueries: [{ propertyName: "stepper", first: true, predicate: ["vertStepper"], descendants: true }, { propertyName: "sidenav", first: true, predicate: ["snav"], descendants: true }, { propertyName: "expansionPanel", first: true, predicate: ["panel"], descendants: true }, { propertyName: "innerSteppers", predicate: ["vertStepperInner"], descendants: true }], ngImport: i0, template: "<div class=\"sof-ar-nav-container\"\r\n [style.top]=\"mobileQuery.matches && advancedSettings.topGapMobile ? advancedSettings.topGapMobile + 'px' : settings.headerHeight + 'px'\"\r\n [class.sof-ar-nav-mobile]=\"mobileQuery.matches\">\r\n <div *ngIf=\"showMessage\" m-a-0 fxLayout=\"row\" fxLayoutAlign=\"space-between center\" sws-alert--secondary role=\"alert\">\r\n <div fxLayout=\"row\" aria-hidden=\"true\">\r\n <i *ngIf=\"showCheckMark\" m-r-5 m-l-5 class=\"fas fa-check-circle icon-container\"></i>\r\n <p class=\"message-container\" m-r-5 m-l-5 [innerHtml]=\"message | translate\"></p>\r\n </div>\r\n <div fxLayout=\"column\">\r\n <button id=\"btnClose\" (click)=\"hide()\" mat-icon-button [attr.aria-label]=\"'common.close' | translate\">\r\n <span aria-hidden=\"true\">\r\n <i class=\"fal fa-times fa-lg\"></i>\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n <button id=\"sof-ar-nav-btn-menu\" aria-label=\"Menu Button\" mat-icon-button [disableRipple]=\"true\"\r\n (click)=\"snav.toggle()\" class=\"sof-ar-nav-menu-btn\"\r\n [class.hidden]=\"!(mobileQuery.matches || settings.allowNavToggle) || settings.hideNavigation\">\r\n <span *ngIf=\"isNavOpen; else closedIcon\" aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIcon}} menu-icon\"></i>\r\n </span>\r\n <ng-template #closedIcon>\r\n <span aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIconClosed}} menu-icon\"></i>\r\n </span>\r\n </ng-template>\r\n <span class=\"sr-only\">{{settings.menuButtonSRText | translate}}</span>\r\n </button>\r\n\r\n <mat-sidenav-container autosize class=\"sof-ar-nav-sidenav-container\" [style.marginTop.px]=\"\r\n mobileQuery.matches ? advancedSettings.marginTopMobile : advancedSettings.marginTopDesktop\">\r\n <mat-sidenav [disableClose]=\"!mobileQuery.matches\" class=\"sof-ar-nav-sidenav\" #snav\r\n [mode]=\"mobileQuery.matches ? 'over' : 'side'\" [fixedInViewport]=\"mobileQuery.matches\"\r\n [fixedTopGap]=\"mobileQuery.matches ? advancedSettings.topGapMobile : advancedSettings.topGapDesktop\"\r\n [opened]=\"!mobileQuery.matches && !settings.hideNavigation && settings.menuStyle!=='progress' \"\r\n [style.width]=\"mobileQuery.matches ? setNavWidth(settings.sideNavWidthMobile) : setNavWidth(settings.sideNavWidthDesktop)\"\r\n [ngStyle]=\"{background:mobileQuery.matches ? themeSettings?.mobileBgColor : undefined}\">\r\n <div *ngIf=\"!settings.disableUsernameMobile\">\r\n <ng-container *ngIf=\"mobileQuery.matches && userName && !settings.customUserName\">\r\n <span class=\"user-name\">\r\n {{userName}}\r\n </span>\r\n </ng-container>\r\n <ng-container *ngIf=\"mobileQuery.matches && settings.customUserName\">\r\n <span class=\"user-name\">\r\n {{settings.customUserName | translate}}\r\n </span>\r\n </ng-container>\r\n </div>\r\n <!-- Nav Header Content -->\r\n <div class=\"nav-header-content\">\r\n <ng-content select=\"[sof-ar-nav-header]\"> </ng-content>\r\n </div>\r\n\r\n <!-- Static Navigation -->\r\n <div class=\"nav-content-item sidenav-background\" *ngIf=\"settings.menuStyle === 'static'\"\r\n [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <nav *ngIf=\"settings.menuStyle === 'static'\" [attr.aria-label]=\"'main'\">\r\n <ul>\r\n <li *ngFor=\"let nav of navigationData\">\r\n <ng-container *ngIf=\"nav?.subNodes?.length && !nav.hidden\">\r\n <mat-accordion>\r\n <mat-expansion-panel [expanded]=\"nav.expanded\">\r\n <mat-expansion-panel-header [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\">\r\n <!-- Navigation -->\r\n <ng-container>\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </mat-expansion-panel-header>\r\n <!-- SubNav -->\r\n <ng-container>\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(subnav) }\" class=\"subnav-content\"\r\n [disableRipple]=\"true\" *ngFor=\"let subnav of nav?.subNodes\" (click)=\"closeNavigationForMobile()\"\r\n [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-sub-active-route']\" [routerLink]=\"subnav.route\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n <span class=\"sof-ar-nav-header-text\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n {{subnav.text | translate}}\r\n </span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </ng-container>\r\n <!-- If subnodes are not there -->\r\n <ng-container>\r\n <ng-container *ngIf=\"!nav?.subNodes?.length && !nav?.hidden\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\" class=\"nav-header\"\r\n [disableRipple]=\"true\" (click)=\"closeNavigationForMobile()\" [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n\r\n <!-- Stepper -->\r\n <mat-vertical-stepper *ngIf=\"settings.menuStyle === 'stepper'\" [selectedIndex]=\"selectedParentIndex\" #vertStepper\r\n [linear]=\"false\" class=\"sidenav-background\">\r\n <!-- Alternate step states for nav, icaons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n\r\n <!-- nav steps -->\r\n <ng-container *ngFor=\"let nav of navigationData; let i = index\">\r\n <mat-step *ngIf=\"!nav?.hidden\" state=\"{{ determineStepState(i, -1) }}\">\r\n <ng-template matStepLabel *ngIf=\"!nav.hidden\">\r\n <div id=\"divStep{{ i }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ nav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"step{{ i }}\" fxFlex=\"100%\" class=\"mat-button step-link\" [routerLink]=\"nav.route\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLinkActive]=\"['step-active']\">\r\n {{ nav.text | translate }}\r\n </a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"nav.stepContent | translate\"></p>\r\n <!-- sub nav -->\r\n <mat-vertical-stepper *ngIf=\"nav?.subNodes\" [selectedIndex]=\"selectedChildIndexes[i]\" [linear]=\"false\"\r\n #vertStepperInner>\r\n <!-- Alternate step states for sub nav, icons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fas fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"none\">\r\n <span></span>\r\n </ng-template>\r\n <!-- sub nav steps -->\r\n <ng-container *ngFor=\"let subnav of nav?.subNodes; let j = index\">\r\n <mat-step state=\"{{ determineStepState(i, j) }}\" *ngIf=\"!subnav.hidden\">\r\n <ng-template matStepLabel>\r\n <div id=\"divSubStep{{ i }}-{{ j }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ subnav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"subStep{{ i }}-{{ j }}\" class=\"mat-button step-link\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLink]=\"subnav.route\"\r\n [routerLinkActive]=\"['step-active']\">{{ subnav.text | translate }}</a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"subnav.stepContent | translate\"></p>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n\r\n <!-- Nav Footer -->\r\n <div class=\"nav-footer-item\">\r\n <ng-container *ngIf=\"settings.menuStyle === 'static'\">\r\n <ng-container *ngFor=\"let nav of footerNavigationData\">\r\n <ng-container>\r\n <!-- Desktop Nav -->\r\n <ng-container *ngIf=\"!nav?.subNodes?.length\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list class=\"nav-header\" [disableRipple]=\"true\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list>\r\n <button id=\"sof-ar-nav-btn-node\" class=\"nav-item\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </button>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- the mobile progress menu-->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <div class=\"sidenav-background\" [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <mat-accordion>\r\n <div *ngFor=\"let step of navigationData; let i = index\">\r\n <ng-container *ngIf=\"step.subNodes && step.subNodes.length > 0 && !step.hidden\">\r\n <mat-expansion-panel hideToggle class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n (opened)=\"panelOpenState = true\" (closed)=\"panelOpenState = false\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div style=\"width: -webkit-fill-available;\"\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n <span *ngIf=\"!panelOpenState\">\r\n <i class=\"fas fa-chevron-down panel-icon\"></i>\r\n </span>\r\n <span *ngIf=\"panelOpenState\">\r\n <i class=\"fas fa-chevron-up panel-icon\"></i>\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n <!-- mobile sub menu -->\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [hidden]=\"step.subNodes[idx].hidden\">\r\n <button role=\"link\" id=\"mobileMenu{{ idx }}\" mat-button class=\"step-link progress-menu-mobile-btn\"\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\"\r\n [ngClass]=\"{'disabled':(!subNode.visited) && !settings.overrideNavigation && !subNode.complete,'color-primary':subNode.complete && subNode!==activeSubNode,'progress-menu-active':subNode===activeSubNode}\">{{\r\n subNode.text | translate }}</span>\r\n </button>\r\n </div>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n <!-- if there are no subNodes -->\r\n <ng-container *ngIf=\"(!step.subNodes || step.subNodes.length===0) && !step.hidden\">\r\n <mat-expansion-panel #panel hideToggle (opened)=\"disablePanel(panel,i)\"\r\n class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </div>\r\n </mat-accordion>\r\n </div>\r\n\r\n <!-- the progress menu language and logout buttons-->\r\n <div class=\"nav-footer-item progress-footer\">\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content>\r\n <!-- Horizontal Progress -->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <mat-progress-bar *ngIf=\"settings?.showProgressBar\" mode=\"determinate\" [value]=\"navProgressCount\"\r\n style=\"height: 9px\" color=\"accent\">\r\n </mat-progress-bar>\r\n <nav [attr.aria-label]=\"'main'\" fxHide.lt-md class=\"step-titles center\" fxLayout=\"row\" style=\"justify-content:center !important\"\r\n [class.hidden]=\"settings.hideNavigation\">\r\n <div *ngFor=\"let step of navigationData; let i = index\" class=\"horizontal-progress-div\">\r\n <ng-container *ngIf=\"!step.subNodes?.length && !step.hidden\">\r\n <button mat-button [routerLink]=\"step.route\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\"\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n </ng-container>\r\n <!-- if there are subnodes create menus for each step -->\r\n <ng-container *ngIf=\"step.subNodes && step.subNodes.length && !step.hidden\">\r\n <button\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\"\r\n mat-button [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\" [matMenuTriggerFor]=\"menu\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n <mat-menu #menu=\"matMenu\" class=\"sof-ar-mat-menu progress-menu-panel\">\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [ngStyle]=\"{width:settings.progressMenuWidth+'px'}\" [hidden]=\"step.subNodes[idx].hidden\">\r\n <button [attr.role]=\"'link'\" id=\"submenu{{ idx }}\" class=\"step-link progress-menu-btn\" mat-menu-item\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode,'disabled':!subNode.visited && !settings.overrideNavigation}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <div class=\"nav-menu-btn-div\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\">{{ subNode.text |translate }}</span>\r\n </div>\r\n </button>\r\n </div>\r\n </mat-menu>\r\n </ng-container>\r\n </div>\r\n </nav>\r\n <div class=\"mobile-progress-container\" fxHide.gt-sm>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-content sof-ar-nav-content></ng-content>\r\n </mat-sidenav-content>\r\n </mat-sidenav-container>\r\n <!-- The progress menu parent node icon template-->\r\n <ng-template #progressParentNodeIcons let-step='step'>\r\n <span *ngIf=\"step.complete && step !== activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCompleteIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"step === activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\" \r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"!step.complete && step !== activeParentNode\"\r\n [ngClass]=\"{'disabled':!step.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The progress menu sub node icon template-->\r\n <ng-template #progressSubNodeIcons let-subNode='subNode'>\r\n <span class=\"progress-menu-icon\" *ngIf=\"subNode.complete && activeSubNode !== subNode\">\r\n <i class=\"{{settings.progressMenuCompleteIcon}} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"activeSubNode === subNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"!subNode.complete && activeSubNode !== subNode\"\r\n [ngClass]=\"{'disabled':!subNode.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The navigation footer template for language and logout buttons -->\r\n <ng-template #navigationFooter>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"> </ng-content>\r\n <ng-container *ngIf=\"!settings.useCustomMobileFooter\">\r\n <!-- The language button -->\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages.length > 2 && mobileQuery.matches\">\r\n <button id=\"sof-ar-nav-lang-dropdown\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\" [matMenuTriggerFor]=\"headerLanguageMenu\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{languageSettings.buttonText | translate}}\r\n </button>\r\n <mat-menu #headerLanguageMenu=\"matMenu\" class=\"sof-ar-mat-menu\">\r\n <button mat-menu-item *ngFor=\"let lang of languageSettings.languages\" (click)=\"setLanguage$.emit(lang)\"\r\n id=\"apply-lang-btn-{{lang}}\">\r\n <div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayoutAlign=\"start center\">\r\n <div fxFlex=\"auto\">\r\n {{ lang | translate }}\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <i *ngIf=\"currentLang === lang\" class=\"fad fa-check selected-language-icon\"></i>\r\n </div>\r\n </div>\r\n </button>\r\n </mat-menu>\r\n </ng-container>\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages.length === 2 && mobileQuery.matches\">\r\n <button *ngIf=\"languageSettings?.languages.length === 2\" id=\"sof-ar-nav-lang-button\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\" (click)=\"setLanguage$.emit()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{otherLangText | translate}}\r\n </button>\r\n </ng-container>\r\n <!-- The logout button-->\r\n <ng-container *ngIf=\"mobileQuery.matches && userName\">\r\n <button id=\"sof-ar-header-lang-button\" mat-stroked-button class=\"navigationFooter\" (click)=\"logOut()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"fas fa-sign-out-alt\"></i>\r\n </span>\r\n {{logOutText | translate}}\r\n </button>\r\n </ng-container>\r\n </ng-container>\r\n </ng-template>\r\n</div>", styles: [":root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}html{--mat-sys-on-surface: initial}.mat-app-background{background-color:var(--mat-app-background-color, var(--mat-sys-background, transparent));color:var(--mat-app-text-color, var(--mat-sys-on-background, inherit))}::ng-deep :root{--sof-nav-content-bg-color: #fffdfd;--sof-nav-font-color: #eee;--sof-nav-bg-gradient-color-1: #fff;--sof-nav-bg-gradient-color-2: #fff;--sof-nav-border-right-color: transparent;--sof-nav-list-border-color: #cfd8dc;--sof-nav-highlight-gradient-1: mat.m2-get-color-from-palette($my-app-primary, 100);--sof-nav-highlight-gradient-2: rgba(255, 255, 255, 0);--sof-nav-sub-highlight-border-color: #616161;--sof-nav-sub-highlight-bg-color: #424242}.sof-ar-nav-sidenav{background:#000;border-right-color:var(--sof-nav-border-right-color);background:linear-gradient(-180deg,var(--sof-nav-bg-gradient-color-1) 0%,var(--sof-nav-bg-gradient-color-2) 100%);overflow:hidden}.sof-ar-nav-sidenav *{color:var(--sof-nav-font-color)}::ng-deep [sof-ar-nav-footer] *,::ng-deep [sof-ar-nav-header] *{color:var(--sof-nav-font-color)!important;display:inline!important;visibility:visible!important}::ng-deep .sof-ar-nav-active-route:active{background:#000!important;background:linear-gradient(90deg,var(--sof-nav-highlight-gradient-1) 0%,var(--sof-nav-highlight-gradient-2) 80%)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}::ng-deep .sof-ar-nav-sub-active-route{background:var(--sof-nav-sub-highlight-bg-color);margin-right:-4px;position:relative}::ng-deep .sof-ar-nav-sub-active-route:focus,::ng-deep .sof-ar-nav-sub-active-route:active{background:var(--sof-nav-sub-highlight-bg-color)!important}::ng-deep .sof-ar-nav-sub-active-route:before{content:\"\";display:block;position:absolute;top:0;height:inherit}::ng-deep .mat-drawer-container{background:var(--sof-nav-content-bg-color)!important}.sof-ar-nav-container{display:flex;flex-direction:column;position:absolute;bottom:0;left:0;right:0}h1.example-app-name{margin-left:8px}.sof-ar-nav-sidenav-container{flex:1}.example-is-mobile .example-sidenav-container{flex:1 0 auto}.hidden{display:none!important}.sof-ar-nav-buffer{height:40px}button.nav-item{border:0;background:transparent}.nav-item{font-size:15px!important;font-weight:500!important}.nav-item.mat-mdc-list-item-interactive:focus:before,.nav-item.mat-mdc-list-item-interactive:hover:before{opacity:0!important}.mat-expansion-indicator{border-bottom-right-radius:11px!important}.nav-footer-item{background:#fafafa;position:absolute;bottom:0%;width:18rem}.progress-footer{display:flex;width:100%;z-index:2}.panel-icon{float:right;color:#000!important}.user-name{display:inline-block;height:3.5rem;padding-left:.5rem;padding-top:3rem;padding-right:.5rem;font-size:larger;font-weight:800}.nav-header-content{padding-left:.5rem;padding-right:.5rem}::ng-deep .mat-mdc-list-base{padding:0!important}::ng-deep .mat-drawer-inner-container{min-width:275px;overflow:hidden!important}::ng-deep .mat-drawer-inner-container:hover{overflow:overlay!important}::ng-deep .icon-styling{padding-right:10px;padding-left:10px;width:24px;text-align:left}::ng-deep .nav-icon{margin-left:auto;padding-left:30px}::ng-deep .nav-item{font-family:var(--sftn-font-family, sans-serif);font-weight:500;padding-top:2px!important;padding-left:0!important}::ng-deep [sof-ar-nav-footer] hr{margin:5px 10px;opacity:.5}.subnav-content{padding:0;height:48px!important}.nav-header{height:64px!important}.mat-mdc-list-item{background-color:transparent;display:inline!important}.mat-mdc-list-item:focus{outline:2px solid white!important}::ng-deep .mdc-list-item__content{padding:0 4px!important;padding-left:1.5rem!important}::ng-deep .subnav-item{padding-left:1rem!important}::ng-deep .visible-mobile{display:none}@media only screen and (max-width: 959px){::ng-deep .visible-mobile{display:block}}@media (max-width: 959px){::ng-deep .sof-ar-fixed-nav{position:fixed;z-index:2;width:100%!important;box-sizing:border-box}}::ng-deep .sof-ar-nav-menu-btn{position:fixed!important;z-index:2!important;top:1.25%;width:44px!important;height:40px!important;color:var(--primary-color-500-parts)!important;background:var(--primary-color-50-parts)!important;border-radius:8px!important;padding:0!important}@media (max-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:2%!important}}@media (min-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:11px!important}}::ng-deep .sof-ar-nav-menu-btn:hover .mdc-icon-button__ripple,::ng-deep .sof-ar-nav-menu-btn:focus .mdc-icon-button__ripple{border-radius:inherit!important}@media only screen and (min-width: 959px){::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):before{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px)}::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):after{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px);margin-bottom:-1px}}::ng-deep .mat-step-text-label{color:#fff;font-family:var(--sftn-font-family, sans-serif)!important;font-size:1.3em}::ng-deep .mat-expansion-indicator{padding:1em!important}::ng-deep .mat-stepper-vertical{background-color:transparent!important}.mat-mdc-nav-list{width:100%;margin-top:3px;margin-bottom:3px}.mat-mdc-nav-list:hover{border-bottom-right-radius:8px!important;border-top-right-radius:8px!important;background:var(--sof-nav-highlight-gradient-1)!important}.mat-expansion-panel-header{padding:0;height:64px!important;margin-top:3px;margin-bottom:3px}.mat-expansion-panel-header:hover{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel-header:focus{outline:2px solid white!important}.sof-ar-nav-selected{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel{display:inline}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.step-active{border-bottom:3px solid var(--primary-color-500-parts);border-bottom-left-radius:0;border-bottom-right-radius:0}::ng-deep .mat-vertical-content{padding-bottom:0!important}.step-link{padding-left:0!important;padding-right:0!important}.step-titles{padding-top:20px;padding-bottom:20px}.step-titles>button{font-family:var(--sftn-font-family, sans-serif)!important;font-size:16px!important;font-weight:500!important;color:#000;background-color:transparent!important}.step-active{border-bottom:0!important}::ng-deep .progress-menu-active,progress-menu-active *{color:#000!important}::ng-deep .color-primary,.color-primary *{color:var(--primary-color-500-parts)!important}.sof-ar-nav-sidenav{max-width:-webkit-fill-available}.nav-menu-btn-text{font-family:var(--sftn-font-family, sans-serif);letter-spacing:.0892857143em;line-height:36px;white-space:normal}.progress-menu-icon{line-height:36px}.nav-menu-btn-div{display:flex}.progress-menu-btn{width:-webkit-fill-available;text-align:left;padding:12px 16px!important;font-size:16px!important;height:fit-content}::ng-deep .disabled,.disabled *,.progress-menu-btn:disabled,.progress-menu-mobile-btn:disabled,.mat-expansion-panel-header:disabled{color:#333c!important}.progress-nav-icon{margin-right:10px;font-size:14px}::ng-deep .progress-menu-mobile-btn{display:flex!important}::ng-deep .progress-nav-menu{display:flex!important}.progress-menu-mobile-btn{padding:12px 24px!important;width:-webkit-fill-available;text-align:left;height:fit-content}.progress-mobile-panel-title{width:-webkit-fill-available;font-size:16px;font-family:var(--sftn-font-family, sans-serif)!important;padding-left:24px}.progress-mobile-expansion-panel{margin:0!important}::ng-deep .progress-mobile-expansion-panel .mat-expansion-panel-body{background:var(--primary-color-50-parts)!important;padding:0!important;font-size:16px!important}::ng-deep .mat-mdc-menu-panel{max-width:unset!important}::ng-deep .progress-menu-panel{background:var(--primary-color-50-parts)!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane{transform:none!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane .step-option{margin-top:33px!important}.mobile-progress-container{padding-bottom:24px}.step-titles-mobile{padding-top:25px;padding-bottom:25px;background-color:transparent}.step-titles-mobile ::ng-deep .mat-mdc-select-trigger{padding-left:17px;padding-right:20px}.step-done{color:var(--accent-color-900-parts)!important;cursor:pointer}.step-future{color:var(--primary-color-900-parts)!important;opacity:.7}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-infix{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mdc-floating-label{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-prefix{top:0!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-suffix{top:0!important}[sws-alert--secondary]{max-height:90px;min-height:52px;padding:0 0 0 24px;margin:2px 5px;border-radius:5px;font-weight:700;font-size:16px;background:#1dbe681a;border:2px solid #2b9c62;color:#2b9c62}.icon-container{align-self:center}.message-container{margin-left:10px;line-height:1.8}#btnClose{color:#000}.navigationFooter{width:100%;border:none;height:64px!important;font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:15px!important;position:relative;text-align:left;padding-left:1.5rem}.navigationFooter:hover{color:unset!important}.nav-item-margin{position:relative;display:flex!important;width:inherit!important;height:inherit!important}.sof-ar-nav-menu-icon{font-size:23px}.menu-icon{color:var(--primary-color-800-parts)!important}.sidenav-background{background:transparent!important}::ng-deep .mat-expansion-panel-body{padding:0!important}::ng-deep .subnav-content>a>.mdc-list-item__content{padding:0 4px!important;padding-left:4.25rem!important}::ng-deep .nav-content-item{margin-right:24px;margin-top:24px}.sof-ar-nav-header-text{font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:14px;line-height:175%;letter-spacing:.14em}ul{display:contents}@media only screen and (max-width: 959px){.mat-drawer-container.sof-ar-nav-sidenav-container{background:#f5f5f580!important}}\n"], dependencies: [{ kind: "directive", type: i1$4.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1$4.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultShowHideDirective, selector: " [fxShow], [fxShow.print], [fxShow.xs], [fxShow.sm], [fxShow.md], [fxShow.lg], [fxShow.xl], [fxShow.lt-sm], [fxShow.lt-md], [fxShow.lt-lg], [fxShow.lt-xl], [fxShow.gt-xs], [fxShow.gt-sm], [fxShow.gt-md], [fxShow.gt-lg], [fxHide], [fxHide.print], [fxHide.xs], [fxHide.sm], [fxHide.md], [fxHide.lg], [fxHide.xl], [fxHide.lt-sm], [fxHide.lt-md], [fxHide.lt-lg], [fxHide.lt-xl], [fxHide.gt-xs], [fxHide.gt-sm], [fxHide.gt-md], [fxHide.gt-lg]", inputs: ["fxShow", "fxShow.print", "fxShow.xs", "fxShow.sm", "fxShow.md", "fxShow.lg", "fxShow.xl", "fxShow.lt-sm", "fxShow.lt-md", "fxShow.lt-lg", "fxShow.lt-xl", "fxShow.gt-xs", "fxShow.gt-sm", "fxShow.gt-md", "fxShow.gt-lg", "fxHide", "fxHide.print", "fxHide.xs", "fxHide.sm", "fxHide.md", "fxHide.lg", "fxHide.xl", "fxHide.lt-sm", "fxHide.lt-md", "fxHide.lt-lg", "fxHide.lt-xl", "fxHide.gt-xs", "fxHide.gt-sm", "fxHide.gt-md", "fxHide.gt-lg"] }, { kind: "directive", type: i3.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "directive", type: i3.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }, { kind: "component", type: i1$5.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1$5.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1$5.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$2.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: i3$2.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i3$2.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1$6.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i13.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i13.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i13.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i13.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i13.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "component", type: i3$3.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: i3$3.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i3$3.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: i15.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i15.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i15.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i15.MatStepperIcon, selector: "ng-template[matStepperIcon]", inputs: ["matStepperIcon"] }, { kind: "component", type: i16.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }] }); }
|
|
1766
|
+
}], viewQueries: [{ propertyName: "stepper", first: true, predicate: ["vertStepper"], descendants: true }, { propertyName: "sidenav", first: true, predicate: ["snav"], descendants: true }, { propertyName: "expansionPanel", first: true, predicate: ["panel"], descendants: true }, { propertyName: "innerSteppers", predicate: ["vertStepperInner"], descendants: true }], ngImport: i0, template: "<div class=\"sof-ar-nav-container\"\r\n [style.top]=\"mobileQuery.matches && advancedSettings.topGapMobile ? advancedSettings.topGapMobile + 'px' : settings.headerHeight + 'px'\"\r\n [class.sof-ar-nav-mobile]=\"mobileQuery.matches\">\r\n <div *ngIf=\"showMessage\" m-a-0 fxLayout=\"row\" fxLayoutAlign=\"space-between center\" sws-alert--secondary role=\"alert\">\r\n <div fxLayout=\"row\" aria-hidden=\"true\">\r\n <i *ngIf=\"showCheckMark\" m-r-5 m-l-5 class=\"fas fa-check-circle icon-container\"></i>\r\n <p class=\"message-container\" m-r-5 m-l-5 [innerHtml]=\"message | translate\"></p>\r\n </div>\r\n <div fxLayout=\"column\">\r\n <button id=\"btnClose\" (click)=\"hide()\" mat-icon-button [attr.aria-label]=\"'common.close' | translate\">\r\n <span aria-hidden=\"true\">\r\n <i class=\"fal fa-times fa-lg\"></i>\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n <button id=\"sof-ar-nav-btn-menu\" aria-label=\"Menu Button\" mat-icon-button [disableRipple]=\"true\"\r\n (click)=\"snav.toggle()\" class=\"sof-ar-nav-menu-btn\"\r\n [class.hidden]=\"!(mobileQuery.matches || settings.allowNavToggle) || settings.hideNavigation\">\r\n <span *ngIf=\"isNavOpen; else closedIcon\" aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIcon}} menu-icon\"></i>\r\n </span>\r\n <ng-template #closedIcon>\r\n <span aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIconClosed}} menu-icon\"></i>\r\n </span>\r\n </ng-template>\r\n <span class=\"sr-only\">{{settings.menuButtonSRText | translate}}</span>\r\n </button>\r\n\r\n <mat-sidenav-container autosize class=\"sof-ar-nav-sidenav-container\" [style.marginTop.px]=\"\r\n mobileQuery.matches ? advancedSettings.marginTopMobile : advancedSettings.marginTopDesktop\">\r\n <mat-sidenav [disableClose]=\"!mobileQuery.matches\" class=\"sof-ar-nav-sidenav\" #snav\r\n [mode]=\"mobileQuery.matches ? 'over' : 'side'\" [fixedInViewport]=\"mobileQuery.matches\"\r\n [fixedTopGap]=\"mobileQuery.matches ? advancedSettings.topGapMobile : advancedSettings.topGapDesktop\"\r\n [opened]=\"!mobileQuery.matches && !settings.hideNavigation && settings.menuStyle!=='progress' \"\r\n [style.width]=\"mobileQuery.matches ? setNavWidth(settings.sideNavWidthMobile) : setNavWidth(settings.sideNavWidthDesktop)\"\r\n [ngStyle]=\"{background:mobileQuery.matches ? themeSettings?.mobileBgColor : undefined}\">\r\n <div *ngIf=\"!settings?.disableUsernameMobile\">\r\n <ng-container *ngIf=\"mobileQuery?.matches && userName && !settings?.customUserName\">\r\n <span class=\"user-name\">\r\n {{userName}}\r\n </span>\r\n </ng-container>\r\n <ng-container *ngIf=\"mobileQuery?.matches && settings?.customUserName\">\r\n <span class=\"user-name\">\r\n {{settings.customUserName | translate}}\r\n </span>\r\n </ng-container>\r\n </div>\r\n <!-- Nav Header Content -->\r\n <div class=\"nav-header-content\">\r\n <ng-content select=\"[sof-ar-nav-header]\"> </ng-content>\r\n </div>\r\n\r\n <!-- Static Navigation -->\r\n <div class=\"nav-content-item sidenav-background\" *ngIf=\"settings?.menuStyle === 'static'\"\r\n [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <nav *ngIf=\"settings?.menuStyle === 'static'\" [attr.aria-label]=\"'main'\">\r\n <ul>\r\n <li *ngFor=\"let nav of navigationData\">\r\n <ng-container *ngIf=\"nav?.subNodes?.length && !nav.hidden\">\r\n <mat-accordion>\r\n <mat-expansion-panel [expanded]=\"nav.expanded\">\r\n <mat-expansion-panel-header [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\">\r\n <!-- Navigation -->\r\n <ng-container>\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </mat-expansion-panel-header>\r\n <!-- SubNav -->\r\n <ng-container>\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(subnav) }\" class=\"subnav-content\"\r\n [disableRipple]=\"true\" *ngFor=\"let subnav of nav?.subNodes\" (click)=\"closeNavigationForMobile()\"\r\n [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-sub-active-route']\" [routerLink]=\"subnav.route\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n <span class=\"sof-ar-nav-header-text\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n {{subnav.text | translate}}\r\n </span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </ng-container>\r\n <!-- If subnodes are not there -->\r\n <ng-container>\r\n <ng-container *ngIf=\"!nav?.subNodes?.length && !nav?.hidden\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\" class=\"nav-header\"\r\n [disableRipple]=\"true\" (click)=\"closeNavigationForMobile()\" [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n\r\n <!-- Stepper -->\r\n <mat-vertical-stepper *ngIf=\"settings?.menuStyle === 'stepper'\" [selectedIndex]=\"selectedParentIndex\" #vertStepper\r\n [linear]=\"false\" class=\"sidenav-background\">\r\n <!-- Alternate step states for nav, icaons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n\r\n <!-- nav steps -->\r\n <ng-container *ngFor=\"let nav of navigationData; let i = index\">\r\n <mat-step *ngIf=\"!nav?.hidden\" state=\"{{ determineStepState(i, -1) }}\">\r\n <ng-template matStepLabel *ngIf=\"!nav?.hidden\">\r\n <div id=\"divStep{{ i }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ nav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"step{{ i }}\" fxFlex=\"100%\" class=\"mat-button step-link\" [routerLink]=\"nav.route\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLinkActive]=\"['step-active']\">\r\n {{ nav.text | translate }}\r\n </a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"nav.stepContent | translate\"></p>\r\n <!-- sub nav -->\r\n <mat-vertical-stepper *ngIf=\"nav?.subNodes\" [selectedIndex]=\"selectedChildIndexes[i]\" [linear]=\"false\"\r\n #vertStepperInner>\r\n <!-- Alternate step states for sub nav, icons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fas fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"none\">\r\n <span></span>\r\n </ng-template>\r\n <!-- sub nav steps -->\r\n <ng-container *ngFor=\"let subnav of nav?.subNodes; let j = index\">\r\n <mat-step state=\"{{ determineStepState(i, j) }}\" *ngIf=\"!subnav?.hidden\">\r\n <ng-template matStepLabel>\r\n <div id=\"divSubStep{{ i }}-{{ j }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ subnav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"subStep{{ i }}-{{ j }}\" class=\"mat-button step-link\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLink]=\"subnav.route\"\r\n [routerLinkActive]=\"['step-active']\">{{ subnav.text | translate }}</a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"subnav.stepContent | translate\"></p>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n\r\n <!-- Nav Footer -->\r\n <div class=\"nav-footer-item\">\r\n <ng-container *ngIf=\"settings?.menuStyle === 'static'\">\r\n <ng-container *ngFor=\"let nav of footerNavigationData\">\r\n <ng-container>\r\n <!-- Desktop Nav -->\r\n <ng-container *ngIf=\"!nav?.subNodes?.length\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list class=\"nav-header\" [disableRipple]=\"true\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list>\r\n <button id=\"sof-ar-nav-btn-node\" class=\"nav-item\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </button>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- the mobile progress menu-->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <div class=\"sidenav-background\" [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <mat-accordion>\r\n <div *ngFor=\"let step of navigationData; let i = index\">\r\n <ng-container *ngIf=\"step?.subNodes && step?.subNodes?.length > 0 && !step?.hidden\">\r\n <mat-expansion-panel hideToggle class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n (opened)=\"panelOpenState = true\" (closed)=\"panelOpenState = false\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div style=\"width: -webkit-fill-available;\"\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n <span *ngIf=\"!panelOpenState\">\r\n <i class=\"fas fa-chevron-down panel-icon\"></i>\r\n </span>\r\n <span *ngIf=\"panelOpenState\">\r\n <i class=\"fas fa-chevron-up panel-icon\"></i>\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n <!-- mobile sub menu -->\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [hidden]=\"step.subNodes[idx].hidden\">\r\n <button role=\"link\" id=\"mobileMenu{{ idx }}\" mat-button class=\"step-link progress-menu-mobile-btn\"\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\"\r\n [ngClass]=\"{'disabled':(!subNode.visited) && !settings.overrideNavigation && !subNode.complete,'color-primary':subNode.complete && subNode!==activeSubNode,'progress-menu-active':subNode===activeSubNode}\">{{\r\n subNode.text | translate }}</span>\r\n </button>\r\n </div>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n <!-- if there are no subNodes -->\r\n <ng-container *ngIf=\"(!step?.subNodes || step?.subNodes?.length===0) && !step?.hidden\">\r\n <mat-expansion-panel #panel hideToggle (opened)=\"disablePanel(panel,i)\"\r\n class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </div>\r\n </mat-accordion>\r\n </div>\r\n\r\n <!-- the progress menu language and logout buttons-->\r\n <div class=\"nav-footer-item progress-footer\">\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content>\r\n <!-- Horizontal Progress -->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <mat-progress-bar *ngIf=\"settings?.showProgressBar\" mode=\"determinate\" [value]=\"navProgressCount\"\r\n style=\"height: 9px\" color=\"accent\">\r\n </mat-progress-bar>\r\n <nav [attr.aria-label]=\"'main'\" fxHide.lt-md class=\"step-titles center\" fxLayout=\"row\" style=\"justify-content:center !important\"\r\n [class.hidden]=\"settings.hideNavigation\">\r\n <div *ngFor=\"let step of navigationData; let i = index\" class=\"horizontal-progress-div\">\r\n <ng-container *ngIf=\"!step?.subNodes?.length && !step?.hidden\">\r\n <button mat-button [routerLink]=\"step.route\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\"\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n </ng-container>\r\n <!-- if there are subnodes create menus for each step -->\r\n <ng-container *ngIf=\"step?.subNodes && step?.subNodes.length && !step?.hidden\">\r\n <button\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\"\r\n mat-button [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\" [matMenuTriggerFor]=\"menu\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n <mat-menu #menu=\"matMenu\" class=\"sof-ar-mat-menu progress-menu-panel\">\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [ngStyle]=\"{width:settings.progressMenuWidth+'px'}\" [hidden]=\"step.subNodes[idx].hidden\">\r\n <button [attr.role]=\"'link'\" id=\"submenu{{ idx }}\" class=\"step-link progress-menu-btn\" mat-menu-item\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode,'disabled':!subNode.visited && !settings.overrideNavigation}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <div class=\"nav-menu-btn-div\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\">{{ subNode.text |translate }}</span>\r\n </div>\r\n </button>\r\n </div>\r\n </mat-menu>\r\n </ng-container>\r\n </div>\r\n </nav>\r\n <div class=\"mobile-progress-container\" fxHide.gt-sm>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-content sof-ar-nav-content></ng-content>\r\n </mat-sidenav-content>\r\n </mat-sidenav-container>\r\n <!-- The progress menu parent node icon template-->\r\n <ng-template #progressParentNodeIcons let-step='step'>\r\n <span *ngIf=\"step.complete && step !== activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCompleteIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"step === activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\" \r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"!step.complete && step !== activeParentNode\"\r\n [ngClass]=\"{'disabled':!step.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The progress menu sub node icon template-->\r\n <ng-template #progressSubNodeIcons let-subNode='subNode'>\r\n <span class=\"progress-menu-icon\" *ngIf=\"subNode.complete && activeSubNode !== subNode\">\r\n <i class=\"{{settings.progressMenuCompleteIcon}} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"activeSubNode === subNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"!subNode.complete && activeSubNode !== subNode\"\r\n [ngClass]=\"{'disabled':!subNode.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The navigation footer template for language and logout buttons -->\r\n <ng-template #navigationFooter>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"> </ng-content>\r\n <ng-container *ngIf=\"!settings?.useCustomMobileFooter\">\r\n <!-- The language button -->\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages?.length > 2 && mobileQuery?.matches\">\r\n <button id=\"sof-ar-nav-lang-dropdown\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\" [matMenuTriggerFor]=\"headerLanguageMenu\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{languageSettings.buttonText | translate}}\r\n </button>\r\n <mat-menu #headerLanguageMenu=\"matMenu\" class=\"sof-ar-mat-menu\">\r\n <button mat-menu-item *ngFor=\"let lang of languageSettings.languages\" (click)=\"setLanguage$.emit(lang)\"\r\n id=\"apply-lang-btn-{{lang}}\">\r\n <div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayoutAlign=\"start center\">\r\n <div fxFlex=\"auto\">\r\n {{ lang | translate }}\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <i *ngIf=\"currentLang === lang\" class=\"fad fa-check selected-language-icon\"></i>\r\n </div>\r\n </div>\r\n </button>\r\n </mat-menu>\r\n </ng-container>\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages?.length === 2 && mobileQuery?.matches\">\r\n <button *ngIf=\"languageSettings?.languages?.length === 2\" id=\"sof-ar-nav-lang-button\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\" (click)=\"setLanguage$.emit()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{otherLangText | translate}}\r\n </button>\r\n </ng-container>\r\n <!-- The logout button-->\r\n <ng-container *ngIf=\"mobileQuery?.matches && userName\">\r\n <button id=\"sof-ar-header-lang-button\" mat-stroked-button class=\"navigationFooter\" (click)=\"logOut()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"fas fa-sign-out-alt\"></i>\r\n </span>\r\n {{logOutText | translate}}\r\n </button>\r\n </ng-container>\r\n </ng-container>\r\n </ng-template>\r\n</div>", styles: [":root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}html{--mat-sys-on-surface: initial}.mat-app-background{background-color:var(--mat-app-background-color, var(--mat-sys-background, transparent));color:var(--mat-app-text-color, var(--mat-sys-on-background, inherit))}::ng-deep :root{--sof-nav-content-bg-color: #fffdfd;--sof-nav-font-color: #eee;--sof-nav-bg-gradient-color-1: #fff;--sof-nav-bg-gradient-color-2: #fff;--sof-nav-border-right-color: transparent;--sof-nav-list-border-color: #cfd8dc;--sof-nav-highlight-gradient-1: mat.m2-get-color-from-palette($my-app-primary, 100);--sof-nav-highlight-gradient-2: rgba(255, 255, 255, 0);--sof-nav-sub-highlight-border-color: #616161;--sof-nav-sub-highlight-bg-color: #424242}.sof-ar-nav-sidenav{background:#000;border-right-color:var(--sof-nav-border-right-color);background:linear-gradient(-180deg,var(--sof-nav-bg-gradient-color-1) 0%,var(--sof-nav-bg-gradient-color-2) 100%);overflow:hidden}.sof-ar-nav-sidenav *{color:var(--sof-nav-font-color)}::ng-deep [sof-ar-nav-footer] *,::ng-deep [sof-ar-nav-header] *{color:var(--sof-nav-font-color)!important;display:inline!important;visibility:visible!important}::ng-deep .sof-ar-nav-active-route:active{background:#000!important;background:linear-gradient(90deg,var(--sof-nav-highlight-gradient-1) 0%,var(--sof-nav-highlight-gradient-2) 80%)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}::ng-deep .sof-ar-nav-sub-active-route{background:var(--sof-nav-sub-highlight-bg-color);margin-right:-4px;position:relative}::ng-deep .sof-ar-nav-sub-active-route:focus,::ng-deep .sof-ar-nav-sub-active-route:active{background:var(--sof-nav-sub-highlight-bg-color)!important}::ng-deep .sof-ar-nav-sub-active-route:before{content:\"\";display:block;position:absolute;top:0;height:inherit}::ng-deep .mat-drawer-container{background:var(--sof-nav-content-bg-color)!important}.sof-ar-nav-container{display:flex;flex-direction:column;position:absolute;bottom:0;left:0;right:0}h1.example-app-name{margin-left:8px}.sof-ar-nav-sidenav-container{flex:1}.example-is-mobile .example-sidenav-container{flex:1 0 auto}.hidden{display:none!important}.sof-ar-nav-buffer{height:40px}button.nav-item{border:0;background:transparent}.nav-item{font-size:15px!important;font-weight:500!important}.nav-item.mat-mdc-list-item-interactive:focus:before,.nav-item.mat-mdc-list-item-interactive:hover:before{opacity:0!important}.mat-expansion-indicator{border-bottom-right-radius:11px!important}.nav-footer-item{background:#fafafa;position:absolute;bottom:0%;width:18rem}.progress-footer{display:flex;width:100%;z-index:2}.panel-icon{float:right;color:#000!important}.user-name{display:inline-block;height:3.5rem;padding-left:.5rem;padding-top:3rem;padding-right:.5rem;font-size:larger;font-weight:800}.nav-header-content{padding-left:.5rem;padding-right:.5rem}::ng-deep .mat-mdc-list-base{padding:0!important}::ng-deep .mat-drawer-inner-container{min-width:275px;overflow:hidden!important}::ng-deep .mat-drawer-inner-container:hover{overflow:overlay!important}::ng-deep .icon-styling{padding-right:10px;padding-left:10px;width:24px;text-align:left}::ng-deep .nav-icon{margin-left:auto;padding-left:30px}::ng-deep .nav-item{font-family:var(--sftn-font-family, sans-serif);font-weight:500;padding-top:2px!important;padding-left:0!important}::ng-deep [sof-ar-nav-footer] hr{margin:5px 10px;opacity:.5}.subnav-content{padding:0;height:48px!important}.nav-header{height:64px!important}.mat-mdc-list-item{background-color:transparent;display:inline!important}.mat-mdc-list-item:focus{outline:2px solid white!important}::ng-deep .mdc-list-item__content{padding:0 4px!important;padding-left:1.5rem!important}::ng-deep .subnav-item{padding-left:1rem!important}::ng-deep .visible-mobile{display:none}@media only screen and (max-width: 959px){::ng-deep .visible-mobile{display:block}}@media (max-width: 959px){::ng-deep .sof-ar-fixed-nav{position:fixed;z-index:2;width:100%!important;box-sizing:border-box}}::ng-deep .sof-ar-nav-menu-btn{position:fixed!important;z-index:2!important;top:1.25%;width:44px!important;height:40px!important;color:var(--primary-color-500-parts)!important;background:var(--primary-color-50-parts)!important;border-radius:8px!important;padding:0!important}@media (max-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:2%!important}}@media (min-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:11px!important}}::ng-deep .sof-ar-nav-menu-btn:hover .mdc-icon-button__ripple,::ng-deep .sof-ar-nav-menu-btn:focus .mdc-icon-button__ripple{border-radius:inherit!important}@media only screen and (min-width: 959px){::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):before{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px)}::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):after{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px);margin-bottom:-1px}}::ng-deep .mat-step-text-label{color:#fff;font-family:var(--sftn-font-family, sans-serif)!important;font-size:1.3em}::ng-deep .mat-expansion-indicator{padding:1em!important}::ng-deep .mat-stepper-vertical{background-color:transparent!important}.mat-mdc-nav-list{width:100%;margin-top:3px;margin-bottom:3px}.mat-mdc-nav-list:hover{border-bottom-right-radius:8px!important;border-top-right-radius:8px!important;background:var(--sof-nav-highlight-gradient-1)!important}.mat-expansion-panel-header{padding:0;height:64px!important;margin-top:3px;margin-bottom:3px}.mat-expansion-panel-header:hover{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel-header:focus{outline:2px solid white!important}.sof-ar-nav-selected{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel{display:inline}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.step-active{border-bottom:3px solid var(--primary-color-500-parts);border-bottom-left-radius:0;border-bottom-right-radius:0}::ng-deep .mat-vertical-content{padding-bottom:0!important}.step-link{padding-left:0!important;padding-right:0!important}.step-titles{padding-top:20px;padding-bottom:20px}.step-titles>button{font-family:var(--sftn-font-family, sans-serif)!important;font-size:16px!important;font-weight:500!important;color:#000;background-color:transparent!important}.step-active{border-bottom:0!important}::ng-deep .progress-menu-active,progress-menu-active *{color:#000!important}::ng-deep .color-primary,.color-primary *{color:var(--primary-color-500-parts)!important}.sof-ar-nav-sidenav{max-width:-webkit-fill-available}.nav-menu-btn-text{font-family:var(--sftn-font-family, sans-serif);letter-spacing:.0892857143em;line-height:36px;white-space:normal}.progress-menu-icon{line-height:36px}.nav-menu-btn-div{display:flex}.progress-menu-btn{width:-webkit-fill-available;text-align:left;padding:12px 16px!important;font-size:16px!important;height:fit-content}::ng-deep .disabled,.disabled *,.progress-menu-btn:disabled,.progress-menu-mobile-btn:disabled,.mat-expansion-panel-header:disabled{color:#333c!important}.progress-nav-icon{margin-right:10px;font-size:14px}::ng-deep .progress-menu-mobile-btn{display:flex!important}::ng-deep .progress-nav-menu{display:flex!important}.progress-menu-mobile-btn{padding:12px 24px!important;width:-webkit-fill-available;text-align:left;height:fit-content}.progress-mobile-panel-title{width:-webkit-fill-available;font-size:16px;font-family:var(--sftn-font-family, sans-serif)!important;padding-left:24px}.progress-mobile-expansion-panel{margin:0!important}::ng-deep .progress-mobile-expansion-panel .mat-expansion-panel-body{background:var(--primary-color-50-parts)!important;padding:0!important;font-size:16px!important}::ng-deep .mat-mdc-menu-panel{max-width:unset!important}::ng-deep .progress-menu-panel{background:var(--primary-color-50-parts)!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane{transform:none!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane .step-option{margin-top:33px!important}.mobile-progress-container{padding-bottom:24px}.step-titles-mobile{padding-top:25px;padding-bottom:25px;background-color:transparent}.step-titles-mobile ::ng-deep .mat-mdc-select-trigger{padding-left:17px;padding-right:20px}.step-done{color:var(--accent-color-900-parts)!important;cursor:pointer}.step-future{color:var(--primary-color-900-parts)!important;opacity:.7}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-infix{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mdc-floating-label{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-prefix{top:0!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-suffix{top:0!important}[sws-alert--secondary]{max-height:90px;min-height:52px;padding:0 0 0 24px;margin:2px 5px;border-radius:5px;font-weight:700;font-size:16px;background:#1dbe681a;border:2px solid #2b9c62;color:#2b9c62}.icon-container{align-self:center}.message-container{margin-left:10px;line-height:1.8}#btnClose{color:#000}.navigationFooter{width:100%;border:none;height:64px!important;font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:15px!important;position:relative;text-align:left;padding-left:1.5rem}.navigationFooter:hover{color:unset!important}.nav-item-margin{position:relative;display:flex!important;width:inherit!important;height:inherit!important}.sof-ar-nav-menu-icon{font-size:23px}.menu-icon{color:var(--primary-color-800-parts)!important}.sidenav-background{background:transparent!important}::ng-deep .mat-expansion-panel-body{padding:0!important}::ng-deep .subnav-content>a>.mdc-list-item__content{padding:0 4px!important;padding-left:4.25rem!important}::ng-deep .nav-content-item{margin-right:24px;margin-top:24px}.sof-ar-nav-header-text{font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:14px;line-height:175%;letter-spacing:.14em}ul{display:contents}@media only screen and (max-width: 959px){.mat-drawer-container.sof-ar-nav-sidenav-container{background:#f5f5f580!important}}\n"], dependencies: [{ kind: "directive", type: i1$4.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1$4.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultShowHideDirective, selector: " [fxShow], [fxShow.print], [fxShow.xs], [fxShow.sm], [fxShow.md], [fxShow.lg], [fxShow.xl], [fxShow.lt-sm], [fxShow.lt-md], [fxShow.lt-lg], [fxShow.lt-xl], [fxShow.gt-xs], [fxShow.gt-sm], [fxShow.gt-md], [fxShow.gt-lg], [fxHide], [fxHide.print], [fxHide.xs], [fxHide.sm], [fxHide.md], [fxHide.lg], [fxHide.xl], [fxHide.lt-sm], [fxHide.lt-md], [fxHide.lt-lg], [fxHide.lt-xl], [fxHide.gt-xs], [fxHide.gt-sm], [fxHide.gt-md], [fxHide.gt-lg]", inputs: ["fxShow", "fxShow.print", "fxShow.xs", "fxShow.sm", "fxShow.md", "fxShow.lg", "fxShow.xl", "fxShow.lt-sm", "fxShow.lt-md", "fxShow.lt-lg", "fxShow.lt-xl", "fxShow.gt-xs", "fxShow.gt-sm", "fxShow.gt-md", "fxShow.gt-lg", "fxHide", "fxHide.print", "fxHide.xs", "fxHide.sm", "fxHide.md", "fxHide.lg", "fxHide.xl", "fxHide.lt-sm", "fxHide.lt-md", "fxHide.lt-lg", "fxHide.lt-xl", "fxHide.gt-xs", "fxHide.gt-sm", "fxHide.gt-md", "fxHide.gt-lg"] }, { kind: "directive", type: i3.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "directive", type: i3.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }, { kind: "component", type: i1$5.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1$5.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1$5.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$2.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: i3$2.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i3$2.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1$6.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i13.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i13.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i13.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i13.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i13.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "component", type: i3$3.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: i3$3.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i3$3.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: i15.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i15.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i15.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i15.MatStepperIcon, selector: "ng-template[matStepperIcon]", inputs: ["matStepperIcon"] }, { kind: "component", type: i16.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }] }); }
|
|
1767
1767
|
}
|
|
1768
1768
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: ArmatureNavigationComponent, decorators: [{
|
|
1769
1769
|
type: Component,
|
|
1770
1770
|
args: [{ selector: 'sof-ar-navigation', providers: [{
|
|
1771
1771
|
provide: STEPPER_GLOBAL_OPTIONS, useValue: { displayDefaultIndicatorType: false }
|
|
1772
|
-
}], standalone: false, template: "<div class=\"sof-ar-nav-container\"\r\n [style.top]=\"mobileQuery.matches && advancedSettings.topGapMobile ? advancedSettings.topGapMobile + 'px' : settings.headerHeight + 'px'\"\r\n [class.sof-ar-nav-mobile]=\"mobileQuery.matches\">\r\n <div *ngIf=\"showMessage\" m-a-0 fxLayout=\"row\" fxLayoutAlign=\"space-between center\" sws-alert--secondary role=\"alert\">\r\n <div fxLayout=\"row\" aria-hidden=\"true\">\r\n <i *ngIf=\"showCheckMark\" m-r-5 m-l-5 class=\"fas fa-check-circle icon-container\"></i>\r\n <p class=\"message-container\" m-r-5 m-l-5 [innerHtml]=\"message | translate\"></p>\r\n </div>\r\n <div fxLayout=\"column\">\r\n <button id=\"btnClose\" (click)=\"hide()\" mat-icon-button [attr.aria-label]=\"'common.close' | translate\">\r\n <span aria-hidden=\"true\">\r\n <i class=\"fal fa-times fa-lg\"></i>\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n <button id=\"sof-ar-nav-btn-menu\" aria-label=\"Menu Button\" mat-icon-button [disableRipple]=\"true\"\r\n (click)=\"snav.toggle()\" class=\"sof-ar-nav-menu-btn\"\r\n [class.hidden]=\"!(mobileQuery.matches || settings.allowNavToggle) || settings.hideNavigation\">\r\n <span *ngIf=\"isNavOpen; else closedIcon\" aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIcon}} menu-icon\"></i>\r\n </span>\r\n <ng-template #closedIcon>\r\n <span aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIconClosed}} menu-icon\"></i>\r\n </span>\r\n </ng-template>\r\n <span class=\"sr-only\">{{settings.menuButtonSRText | translate}}</span>\r\n </button>\r\n\r\n <mat-sidenav-container autosize class=\"sof-ar-nav-sidenav-container\" [style.marginTop.px]=\"\r\n mobileQuery.matches ? advancedSettings.marginTopMobile : advancedSettings.marginTopDesktop\">\r\n <mat-sidenav [disableClose]=\"!mobileQuery.matches\" class=\"sof-ar-nav-sidenav\" #snav\r\n [mode]=\"mobileQuery.matches ? 'over' : 'side'\" [fixedInViewport]=\"mobileQuery.matches\"\r\n [fixedTopGap]=\"mobileQuery.matches ? advancedSettings.topGapMobile : advancedSettings.topGapDesktop\"\r\n [opened]=\"!mobileQuery.matches && !settings.hideNavigation && settings.menuStyle!=='progress' \"\r\n [style.width]=\"mobileQuery.matches ? setNavWidth(settings.sideNavWidthMobile) : setNavWidth(settings.sideNavWidthDesktop)\"\r\n [ngStyle]=\"{background:mobileQuery.matches ? themeSettings?.mobileBgColor : undefined}\">\r\n <div *ngIf=\"!settings.disableUsernameMobile\">\r\n <ng-container *ngIf=\"mobileQuery.matches && userName && !settings.customUserName\">\r\n <span class=\"user-name\">\r\n {{userName}}\r\n </span>\r\n </ng-container>\r\n <ng-container *ngIf=\"mobileQuery.matches && settings.customUserName\">\r\n <span class=\"user-name\">\r\n {{settings.customUserName | translate}}\r\n </span>\r\n </ng-container>\r\n </div>\r\n <!-- Nav Header Content -->\r\n <div class=\"nav-header-content\">\r\n <ng-content select=\"[sof-ar-nav-header]\"> </ng-content>\r\n </div>\r\n\r\n <!-- Static Navigation -->\r\n <div class=\"nav-content-item sidenav-background\" *ngIf=\"settings.menuStyle === 'static'\"\r\n [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <nav *ngIf=\"settings.menuStyle === 'static'\" [attr.aria-label]=\"'main'\">\r\n <ul>\r\n <li *ngFor=\"let nav of navigationData\">\r\n <ng-container *ngIf=\"nav?.subNodes?.length && !nav.hidden\">\r\n <mat-accordion>\r\n <mat-expansion-panel [expanded]=\"nav.expanded\">\r\n <mat-expansion-panel-header [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\">\r\n <!-- Navigation -->\r\n <ng-container>\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </mat-expansion-panel-header>\r\n <!-- SubNav -->\r\n <ng-container>\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(subnav) }\" class=\"subnav-content\"\r\n [disableRipple]=\"true\" *ngFor=\"let subnav of nav?.subNodes\" (click)=\"closeNavigationForMobile()\"\r\n [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-sub-active-route']\" [routerLink]=\"subnav.route\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n <span class=\"sof-ar-nav-header-text\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n {{subnav.text | translate}}\r\n </span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </ng-container>\r\n <!-- If subnodes are not there -->\r\n <ng-container>\r\n <ng-container *ngIf=\"!nav?.subNodes?.length && !nav?.hidden\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\" class=\"nav-header\"\r\n [disableRipple]=\"true\" (click)=\"closeNavigationForMobile()\" [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n\r\n <!-- Stepper -->\r\n <mat-vertical-stepper *ngIf=\"settings.menuStyle === 'stepper'\" [selectedIndex]=\"selectedParentIndex\" #vertStepper\r\n [linear]=\"false\" class=\"sidenav-background\">\r\n <!-- Alternate step states for nav, icaons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n\r\n <!-- nav steps -->\r\n <ng-container *ngFor=\"let nav of navigationData; let i = index\">\r\n <mat-step *ngIf=\"!nav?.hidden\" state=\"{{ determineStepState(i, -1) }}\">\r\n <ng-template matStepLabel *ngIf=\"!nav.hidden\">\r\n <div id=\"divStep{{ i }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ nav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"step{{ i }}\" fxFlex=\"100%\" class=\"mat-button step-link\" [routerLink]=\"nav.route\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLinkActive]=\"['step-active']\">\r\n {{ nav.text | translate }}\r\n </a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"nav.stepContent | translate\"></p>\r\n <!-- sub nav -->\r\n <mat-vertical-stepper *ngIf=\"nav?.subNodes\" [selectedIndex]=\"selectedChildIndexes[i]\" [linear]=\"false\"\r\n #vertStepperInner>\r\n <!-- Alternate step states for sub nav, icons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fas fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"none\">\r\n <span></span>\r\n </ng-template>\r\n <!-- sub nav steps -->\r\n <ng-container *ngFor=\"let subnav of nav?.subNodes; let j = index\">\r\n <mat-step state=\"{{ determineStepState(i, j) }}\" *ngIf=\"!subnav.hidden\">\r\n <ng-template matStepLabel>\r\n <div id=\"divSubStep{{ i }}-{{ j }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ subnav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"subStep{{ i }}-{{ j }}\" class=\"mat-button step-link\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLink]=\"subnav.route\"\r\n [routerLinkActive]=\"['step-active']\">{{ subnav.text | translate }}</a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"subnav.stepContent | translate\"></p>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n\r\n <!-- Nav Footer -->\r\n <div class=\"nav-footer-item\">\r\n <ng-container *ngIf=\"settings.menuStyle === 'static'\">\r\n <ng-container *ngFor=\"let nav of footerNavigationData\">\r\n <ng-container>\r\n <!-- Desktop Nav -->\r\n <ng-container *ngIf=\"!nav?.subNodes?.length\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list class=\"nav-header\" [disableRipple]=\"true\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list>\r\n <button id=\"sof-ar-nav-btn-node\" class=\"nav-item\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </button>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- the mobile progress menu-->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <div class=\"sidenav-background\" [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <mat-accordion>\r\n <div *ngFor=\"let step of navigationData; let i = index\">\r\n <ng-container *ngIf=\"step.subNodes && step.subNodes.length > 0 && !step.hidden\">\r\n <mat-expansion-panel hideToggle class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n (opened)=\"panelOpenState = true\" (closed)=\"panelOpenState = false\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div style=\"width: -webkit-fill-available;\"\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n <span *ngIf=\"!panelOpenState\">\r\n <i class=\"fas fa-chevron-down panel-icon\"></i>\r\n </span>\r\n <span *ngIf=\"panelOpenState\">\r\n <i class=\"fas fa-chevron-up panel-icon\"></i>\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n <!-- mobile sub menu -->\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [hidden]=\"step.subNodes[idx].hidden\">\r\n <button role=\"link\" id=\"mobileMenu{{ idx }}\" mat-button class=\"step-link progress-menu-mobile-btn\"\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\"\r\n [ngClass]=\"{'disabled':(!subNode.visited) && !settings.overrideNavigation && !subNode.complete,'color-primary':subNode.complete && subNode!==activeSubNode,'progress-menu-active':subNode===activeSubNode}\">{{\r\n subNode.text | translate }}</span>\r\n </button>\r\n </div>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n <!-- if there are no subNodes -->\r\n <ng-container *ngIf=\"(!step.subNodes || step.subNodes.length===0) && !step.hidden\">\r\n <mat-expansion-panel #panel hideToggle (opened)=\"disablePanel(panel,i)\"\r\n class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </div>\r\n </mat-accordion>\r\n </div>\r\n\r\n <!-- the progress menu language and logout buttons-->\r\n <div class=\"nav-footer-item progress-footer\">\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content>\r\n <!-- Horizontal Progress -->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <mat-progress-bar *ngIf=\"settings?.showProgressBar\" mode=\"determinate\" [value]=\"navProgressCount\"\r\n style=\"height: 9px\" color=\"accent\">\r\n </mat-progress-bar>\r\n <nav [attr.aria-label]=\"'main'\" fxHide.lt-md class=\"step-titles center\" fxLayout=\"row\" style=\"justify-content:center !important\"\r\n [class.hidden]=\"settings.hideNavigation\">\r\n <div *ngFor=\"let step of navigationData; let i = index\" class=\"horizontal-progress-div\">\r\n <ng-container *ngIf=\"!step.subNodes?.length && !step.hidden\">\r\n <button mat-button [routerLink]=\"step.route\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\"\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n </ng-container>\r\n <!-- if there are subnodes create menus for each step -->\r\n <ng-container *ngIf=\"step.subNodes && step.subNodes.length && !step.hidden\">\r\n <button\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\"\r\n mat-button [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\" [matMenuTriggerFor]=\"menu\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n <mat-menu #menu=\"matMenu\" class=\"sof-ar-mat-menu progress-menu-panel\">\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [ngStyle]=\"{width:settings.progressMenuWidth+'px'}\" [hidden]=\"step.subNodes[idx].hidden\">\r\n <button [attr.role]=\"'link'\" id=\"submenu{{ idx }}\" class=\"step-link progress-menu-btn\" mat-menu-item\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode,'disabled':!subNode.visited && !settings.overrideNavigation}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <div class=\"nav-menu-btn-div\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\">{{ subNode.text |translate }}</span>\r\n </div>\r\n </button>\r\n </div>\r\n </mat-menu>\r\n </ng-container>\r\n </div>\r\n </nav>\r\n <div class=\"mobile-progress-container\" fxHide.gt-sm>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-content sof-ar-nav-content></ng-content>\r\n </mat-sidenav-content>\r\n </mat-sidenav-container>\r\n <!-- The progress menu parent node icon template-->\r\n <ng-template #progressParentNodeIcons let-step='step'>\r\n <span *ngIf=\"step.complete && step !== activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCompleteIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"step === activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\" \r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"!step.complete && step !== activeParentNode\"\r\n [ngClass]=\"{'disabled':!step.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The progress menu sub node icon template-->\r\n <ng-template #progressSubNodeIcons let-subNode='subNode'>\r\n <span class=\"progress-menu-icon\" *ngIf=\"subNode.complete && activeSubNode !== subNode\">\r\n <i class=\"{{settings.progressMenuCompleteIcon}} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"activeSubNode === subNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"!subNode.complete && activeSubNode !== subNode\"\r\n [ngClass]=\"{'disabled':!subNode.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The navigation footer template for language and logout buttons -->\r\n <ng-template #navigationFooter>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"> </ng-content>\r\n <ng-container *ngIf=\"!settings.useCustomMobileFooter\">\r\n <!-- The language button -->\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages.length > 2 && mobileQuery.matches\">\r\n <button id=\"sof-ar-nav-lang-dropdown\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\" [matMenuTriggerFor]=\"headerLanguageMenu\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{languageSettings.buttonText | translate}}\r\n </button>\r\n <mat-menu #headerLanguageMenu=\"matMenu\" class=\"sof-ar-mat-menu\">\r\n <button mat-menu-item *ngFor=\"let lang of languageSettings.languages\" (click)=\"setLanguage$.emit(lang)\"\r\n id=\"apply-lang-btn-{{lang}}\">\r\n <div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayoutAlign=\"start center\">\r\n <div fxFlex=\"auto\">\r\n {{ lang | translate }}\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <i *ngIf=\"currentLang === lang\" class=\"fad fa-check selected-language-icon\"></i>\r\n </div>\r\n </div>\r\n </button>\r\n </mat-menu>\r\n </ng-container>\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages.length === 2 && mobileQuery.matches\">\r\n <button *ngIf=\"languageSettings?.languages.length === 2\" id=\"sof-ar-nav-lang-button\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\" (click)=\"setLanguage$.emit()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{otherLangText | translate}}\r\n </button>\r\n </ng-container>\r\n <!-- The logout button-->\r\n <ng-container *ngIf=\"mobileQuery.matches && userName\">\r\n <button id=\"sof-ar-header-lang-button\" mat-stroked-button class=\"navigationFooter\" (click)=\"logOut()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"fas fa-sign-out-alt\"></i>\r\n </span>\r\n {{logOutText | translate}}\r\n </button>\r\n </ng-container>\r\n </ng-container>\r\n </ng-template>\r\n</div>", styles: [":root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}html{--mat-sys-on-surface: initial}.mat-app-background{background-color:var(--mat-app-background-color, var(--mat-sys-background, transparent));color:var(--mat-app-text-color, var(--mat-sys-on-background, inherit))}::ng-deep :root{--sof-nav-content-bg-color: #fffdfd;--sof-nav-font-color: #eee;--sof-nav-bg-gradient-color-1: #fff;--sof-nav-bg-gradient-color-2: #fff;--sof-nav-border-right-color: transparent;--sof-nav-list-border-color: #cfd8dc;--sof-nav-highlight-gradient-1: mat.m2-get-color-from-palette($my-app-primary, 100);--sof-nav-highlight-gradient-2: rgba(255, 255, 255, 0);--sof-nav-sub-highlight-border-color: #616161;--sof-nav-sub-highlight-bg-color: #424242}.sof-ar-nav-sidenav{background:#000;border-right-color:var(--sof-nav-border-right-color);background:linear-gradient(-180deg,var(--sof-nav-bg-gradient-color-1) 0%,var(--sof-nav-bg-gradient-color-2) 100%);overflow:hidden}.sof-ar-nav-sidenav *{color:var(--sof-nav-font-color)}::ng-deep [sof-ar-nav-footer] *,::ng-deep [sof-ar-nav-header] *{color:var(--sof-nav-font-color)!important;display:inline!important;visibility:visible!important}::ng-deep .sof-ar-nav-active-route:active{background:#000!important;background:linear-gradient(90deg,var(--sof-nav-highlight-gradient-1) 0%,var(--sof-nav-highlight-gradient-2) 80%)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}::ng-deep .sof-ar-nav-sub-active-route{background:var(--sof-nav-sub-highlight-bg-color);margin-right:-4px;position:relative}::ng-deep .sof-ar-nav-sub-active-route:focus,::ng-deep .sof-ar-nav-sub-active-route:active{background:var(--sof-nav-sub-highlight-bg-color)!important}::ng-deep .sof-ar-nav-sub-active-route:before{content:\"\";display:block;position:absolute;top:0;height:inherit}::ng-deep .mat-drawer-container{background:var(--sof-nav-content-bg-color)!important}.sof-ar-nav-container{display:flex;flex-direction:column;position:absolute;bottom:0;left:0;right:0}h1.example-app-name{margin-left:8px}.sof-ar-nav-sidenav-container{flex:1}.example-is-mobile .example-sidenav-container{flex:1 0 auto}.hidden{display:none!important}.sof-ar-nav-buffer{height:40px}button.nav-item{border:0;background:transparent}.nav-item{font-size:15px!important;font-weight:500!important}.nav-item.mat-mdc-list-item-interactive:focus:before,.nav-item.mat-mdc-list-item-interactive:hover:before{opacity:0!important}.mat-expansion-indicator{border-bottom-right-radius:11px!important}.nav-footer-item{background:#fafafa;position:absolute;bottom:0%;width:18rem}.progress-footer{display:flex;width:100%;z-index:2}.panel-icon{float:right;color:#000!important}.user-name{display:inline-block;height:3.5rem;padding-left:.5rem;padding-top:3rem;padding-right:.5rem;font-size:larger;font-weight:800}.nav-header-content{padding-left:.5rem;padding-right:.5rem}::ng-deep .mat-mdc-list-base{padding:0!important}::ng-deep .mat-drawer-inner-container{min-width:275px;overflow:hidden!important}::ng-deep .mat-drawer-inner-container:hover{overflow:overlay!important}::ng-deep .icon-styling{padding-right:10px;padding-left:10px;width:24px;text-align:left}::ng-deep .nav-icon{margin-left:auto;padding-left:30px}::ng-deep .nav-item{font-family:var(--sftn-font-family, sans-serif);font-weight:500;padding-top:2px!important;padding-left:0!important}::ng-deep [sof-ar-nav-footer] hr{margin:5px 10px;opacity:.5}.subnav-content{padding:0;height:48px!important}.nav-header{height:64px!important}.mat-mdc-list-item{background-color:transparent;display:inline!important}.mat-mdc-list-item:focus{outline:2px solid white!important}::ng-deep .mdc-list-item__content{padding:0 4px!important;padding-left:1.5rem!important}::ng-deep .subnav-item{padding-left:1rem!important}::ng-deep .visible-mobile{display:none}@media only screen and (max-width: 959px){::ng-deep .visible-mobile{display:block}}@media (max-width: 959px){::ng-deep .sof-ar-fixed-nav{position:fixed;z-index:2;width:100%!important;box-sizing:border-box}}::ng-deep .sof-ar-nav-menu-btn{position:fixed!important;z-index:2!important;top:1.25%;width:44px!important;height:40px!important;color:var(--primary-color-500-parts)!important;background:var(--primary-color-50-parts)!important;border-radius:8px!important;padding:0!important}@media (max-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:2%!important}}@media (min-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:11px!important}}::ng-deep .sof-ar-nav-menu-btn:hover .mdc-icon-button__ripple,::ng-deep .sof-ar-nav-menu-btn:focus .mdc-icon-button__ripple{border-radius:inherit!important}@media only screen and (min-width: 959px){::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):before{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px)}::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):after{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px);margin-bottom:-1px}}::ng-deep .mat-step-text-label{color:#fff;font-family:var(--sftn-font-family, sans-serif)!important;font-size:1.3em}::ng-deep .mat-expansion-indicator{padding:1em!important}::ng-deep .mat-stepper-vertical{background-color:transparent!important}.mat-mdc-nav-list{width:100%;margin-top:3px;margin-bottom:3px}.mat-mdc-nav-list:hover{border-bottom-right-radius:8px!important;border-top-right-radius:8px!important;background:var(--sof-nav-highlight-gradient-1)!important}.mat-expansion-panel-header{padding:0;height:64px!important;margin-top:3px;margin-bottom:3px}.mat-expansion-panel-header:hover{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel-header:focus{outline:2px solid white!important}.sof-ar-nav-selected{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel{display:inline}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.step-active{border-bottom:3px solid var(--primary-color-500-parts);border-bottom-left-radius:0;border-bottom-right-radius:0}::ng-deep .mat-vertical-content{padding-bottom:0!important}.step-link{padding-left:0!important;padding-right:0!important}.step-titles{padding-top:20px;padding-bottom:20px}.step-titles>button{font-family:var(--sftn-font-family, sans-serif)!important;font-size:16px!important;font-weight:500!important;color:#000;background-color:transparent!important}.step-active{border-bottom:0!important}::ng-deep .progress-menu-active,progress-menu-active *{color:#000!important}::ng-deep .color-primary,.color-primary *{color:var(--primary-color-500-parts)!important}.sof-ar-nav-sidenav{max-width:-webkit-fill-available}.nav-menu-btn-text{font-family:var(--sftn-font-family, sans-serif);letter-spacing:.0892857143em;line-height:36px;white-space:normal}.progress-menu-icon{line-height:36px}.nav-menu-btn-div{display:flex}.progress-menu-btn{width:-webkit-fill-available;text-align:left;padding:12px 16px!important;font-size:16px!important;height:fit-content}::ng-deep .disabled,.disabled *,.progress-menu-btn:disabled,.progress-menu-mobile-btn:disabled,.mat-expansion-panel-header:disabled{color:#333c!important}.progress-nav-icon{margin-right:10px;font-size:14px}::ng-deep .progress-menu-mobile-btn{display:flex!important}::ng-deep .progress-nav-menu{display:flex!important}.progress-menu-mobile-btn{padding:12px 24px!important;width:-webkit-fill-available;text-align:left;height:fit-content}.progress-mobile-panel-title{width:-webkit-fill-available;font-size:16px;font-family:var(--sftn-font-family, sans-serif)!important;padding-left:24px}.progress-mobile-expansion-panel{margin:0!important}::ng-deep .progress-mobile-expansion-panel .mat-expansion-panel-body{background:var(--primary-color-50-parts)!important;padding:0!important;font-size:16px!important}::ng-deep .mat-mdc-menu-panel{max-width:unset!important}::ng-deep .progress-menu-panel{background:var(--primary-color-50-parts)!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane{transform:none!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane .step-option{margin-top:33px!important}.mobile-progress-container{padding-bottom:24px}.step-titles-mobile{padding-top:25px;padding-bottom:25px;background-color:transparent}.step-titles-mobile ::ng-deep .mat-mdc-select-trigger{padding-left:17px;padding-right:20px}.step-done{color:var(--accent-color-900-parts)!important;cursor:pointer}.step-future{color:var(--primary-color-900-parts)!important;opacity:.7}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-infix{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mdc-floating-label{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-prefix{top:0!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-suffix{top:0!important}[sws-alert--secondary]{max-height:90px;min-height:52px;padding:0 0 0 24px;margin:2px 5px;border-radius:5px;font-weight:700;font-size:16px;background:#1dbe681a;border:2px solid #2b9c62;color:#2b9c62}.icon-container{align-self:center}.message-container{margin-left:10px;line-height:1.8}#btnClose{color:#000}.navigationFooter{width:100%;border:none;height:64px!important;font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:15px!important;position:relative;text-align:left;padding-left:1.5rem}.navigationFooter:hover{color:unset!important}.nav-item-margin{position:relative;display:flex!important;width:inherit!important;height:inherit!important}.sof-ar-nav-menu-icon{font-size:23px}.menu-icon{color:var(--primary-color-800-parts)!important}.sidenav-background{background:transparent!important}::ng-deep .mat-expansion-panel-body{padding:0!important}::ng-deep .subnav-content>a>.mdc-list-item__content{padding:0 4px!important;padding-left:4.25rem!important}::ng-deep .nav-content-item{margin-right:24px;margin-top:24px}.sof-ar-nav-header-text{font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:14px;line-height:175%;letter-spacing:.14em}ul{display:contents}@media only screen and (max-width: 959px){.mat-drawer-container.sof-ar-nav-sidenav-container{background:#f5f5f580!important}}\n"] }]
|
|
1772
|
+
}], standalone: false, template: "<div class=\"sof-ar-nav-container\"\r\n [style.top]=\"mobileQuery.matches && advancedSettings.topGapMobile ? advancedSettings.topGapMobile + 'px' : settings.headerHeight + 'px'\"\r\n [class.sof-ar-nav-mobile]=\"mobileQuery.matches\">\r\n <div *ngIf=\"showMessage\" m-a-0 fxLayout=\"row\" fxLayoutAlign=\"space-between center\" sws-alert--secondary role=\"alert\">\r\n <div fxLayout=\"row\" aria-hidden=\"true\">\r\n <i *ngIf=\"showCheckMark\" m-r-5 m-l-5 class=\"fas fa-check-circle icon-container\"></i>\r\n <p class=\"message-container\" m-r-5 m-l-5 [innerHtml]=\"message | translate\"></p>\r\n </div>\r\n <div fxLayout=\"column\">\r\n <button id=\"btnClose\" (click)=\"hide()\" mat-icon-button [attr.aria-label]=\"'common.close' | translate\">\r\n <span aria-hidden=\"true\">\r\n <i class=\"fal fa-times fa-lg\"></i>\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n <button id=\"sof-ar-nav-btn-menu\" aria-label=\"Menu Button\" mat-icon-button [disableRipple]=\"true\"\r\n (click)=\"snav.toggle()\" class=\"sof-ar-nav-menu-btn\"\r\n [class.hidden]=\"!(mobileQuery.matches || settings.allowNavToggle) || settings.hideNavigation\">\r\n <span *ngIf=\"isNavOpen; else closedIcon\" aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIcon}} menu-icon\"></i>\r\n </span>\r\n <ng-template #closedIcon>\r\n <span aria-hidden=\"true\" class=\"sof-ar-nav-menu-icon\">\r\n <i class=\"{{settings.fontAwesomeMenuIconClosed}} menu-icon\"></i>\r\n </span>\r\n </ng-template>\r\n <span class=\"sr-only\">{{settings.menuButtonSRText | translate}}</span>\r\n </button>\r\n\r\n <mat-sidenav-container autosize class=\"sof-ar-nav-sidenav-container\" [style.marginTop.px]=\"\r\n mobileQuery.matches ? advancedSettings.marginTopMobile : advancedSettings.marginTopDesktop\">\r\n <mat-sidenav [disableClose]=\"!mobileQuery.matches\" class=\"sof-ar-nav-sidenav\" #snav\r\n [mode]=\"mobileQuery.matches ? 'over' : 'side'\" [fixedInViewport]=\"mobileQuery.matches\"\r\n [fixedTopGap]=\"mobileQuery.matches ? advancedSettings.topGapMobile : advancedSettings.topGapDesktop\"\r\n [opened]=\"!mobileQuery.matches && !settings.hideNavigation && settings.menuStyle!=='progress' \"\r\n [style.width]=\"mobileQuery.matches ? setNavWidth(settings.sideNavWidthMobile) : setNavWidth(settings.sideNavWidthDesktop)\"\r\n [ngStyle]=\"{background:mobileQuery.matches ? themeSettings?.mobileBgColor : undefined}\">\r\n <div *ngIf=\"!settings?.disableUsernameMobile\">\r\n <ng-container *ngIf=\"mobileQuery?.matches && userName && !settings?.customUserName\">\r\n <span class=\"user-name\">\r\n {{userName}}\r\n </span>\r\n </ng-container>\r\n <ng-container *ngIf=\"mobileQuery?.matches && settings?.customUserName\">\r\n <span class=\"user-name\">\r\n {{settings.customUserName | translate}}\r\n </span>\r\n </ng-container>\r\n </div>\r\n <!-- Nav Header Content -->\r\n <div class=\"nav-header-content\">\r\n <ng-content select=\"[sof-ar-nav-header]\"> </ng-content>\r\n </div>\r\n\r\n <!-- Static Navigation -->\r\n <div class=\"nav-content-item sidenav-background\" *ngIf=\"settings?.menuStyle === 'static'\"\r\n [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <nav *ngIf=\"settings?.menuStyle === 'static'\" [attr.aria-label]=\"'main'\">\r\n <ul>\r\n <li *ngFor=\"let nav of navigationData\">\r\n <ng-container *ngIf=\"nav?.subNodes?.length && !nav.hidden\">\r\n <mat-accordion>\r\n <mat-expansion-panel [expanded]=\"nav.expanded\">\r\n <mat-expansion-panel-header [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\">\r\n <!-- Navigation -->\r\n <ng-container>\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"{{nav?.fontAwesomeIcon}}\"></i>\r\n </span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </mat-expansion-panel-header>\r\n <!-- SubNav -->\r\n <ng-container>\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(subnav) }\" class=\"subnav-content\"\r\n [disableRipple]=\"true\" *ngFor=\"let subnav of nav?.subNodes\" (click)=\"closeNavigationForMobile()\"\r\n [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-sub-active-route']\" [routerLink]=\"subnav.route\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n <span class=\"sof-ar-nav-header-text\"\r\n [attr.aria-label]=\"(nav.text | translate) + ' ' + (subnav.text | translate)\">\r\n {{subnav.text | translate}}\r\n </span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </ng-container>\r\n <!-- If subnodes are not there -->\r\n <ng-container>\r\n <ng-container *ngIf=\"!nav?.subNodes?.length && !nav?.hidden\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list [ngClass]=\"{ 'sof-ar-nav-selected': isNavSelected(nav) }\" class=\"nav-header\"\r\n [disableRipple]=\"true\" (click)=\"closeNavigationForMobile()\" [attr.role]=\"null\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list [disableRipple]=\"true\" [attr.role]=\"null\">\r\n <a class=\"nav-item\" mat-list-item [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n <span class=\"sof-ar-nav-header-text\">{{nav.text | translate}}</span>\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </nav>\r\n </div>\r\n\r\n <!-- Stepper -->\r\n <mat-vertical-stepper *ngIf=\"settings?.menuStyle === 'stepper'\" [selectedIndex]=\"selectedParentIndex\" #vertStepper\r\n [linear]=\"false\" class=\"sidenav-background\">\r\n <!-- Alternate step states for nav, icaons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n\r\n <!-- nav steps -->\r\n <ng-container *ngFor=\"let nav of navigationData; let i = index\">\r\n <mat-step *ngIf=\"!nav?.hidden\" state=\"{{ determineStepState(i, -1) }}\">\r\n <ng-template matStepLabel *ngIf=\"!nav?.hidden\">\r\n <div id=\"divStep{{ i }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ nav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"step{{ i }}\" fxFlex=\"100%\" class=\"mat-button step-link\" [routerLink]=\"nav.route\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLinkActive]=\"['step-active']\">\r\n {{ nav.text | translate }}\r\n </a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"nav.stepContent | translate\"></p>\r\n <!-- sub nav -->\r\n <mat-vertical-stepper *ngIf=\"nav?.subNodes\" [selectedIndex]=\"selectedChildIndexes[i]\" [linear]=\"false\"\r\n #vertStepperInner>\r\n <!-- Alternate step states for sub nav, icons should always be white only worked with styles -->\r\n <ng-template matStepperIcon=\"create\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"edit\">\r\n <span>\r\n <i class=\"fad fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"done\">\r\n <span>\r\n <i class=\"fas fa-check\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"active\">\r\n <span>\r\n <i class=\"fas fa-pencil-alt\" style=\"color: white !important\"></i>\r\n </span>\r\n </ng-template>\r\n <ng-template matStepperIcon=\"none\">\r\n <span></span>\r\n </ng-template>\r\n <!-- sub nav steps -->\r\n <ng-container *ngFor=\"let subnav of nav?.subNodes; let j = index\">\r\n <mat-step state=\"{{ determineStepState(i, j) }}\" *ngIf=\"!subnav?.hidden\">\r\n <ng-template matStepLabel>\r\n <div id=\"divSubStep{{ i }}-{{ j }}\" style=\"height: 72px\" fxLayout=\"row\" fxLayoutAlign=\"start center\"\r\n matTooltip=\"{{ subnav.text | translate }}\" [matTooltipPosition]=\"'after'\" fxFlex=\"100%\">\r\n <a id=\"subStep{{ i }}-{{ j }}\" class=\"mat-button step-link\"\r\n [ngStyle]=\"{ color: themeSettings?.fontColor }\" [routerLink]=\"subnav.route\"\r\n [routerLinkActive]=\"['step-active']\">{{ subnav.text | translate }}</a>\r\n </div>\r\n </ng-template>\r\n <p [innerHTML]=\"subnav.stepContent | translate\"></p>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n </mat-step>\r\n </ng-container>\r\n\r\n </mat-vertical-stepper>\r\n\r\n <!-- Nav Footer -->\r\n <div class=\"nav-footer-item\">\r\n <ng-container *ngIf=\"settings?.menuStyle === 'static'\">\r\n <ng-container *ngFor=\"let nav of footerNavigationData\">\r\n <ng-container>\r\n <!-- Desktop Nav -->\r\n <ng-container *ngIf=\"!nav?.subNodes?.length\">\r\n <!-- If there is a route -->\r\n <ng-container *ngIf=\"nav?.route\">\r\n <mat-nav-list class=\"nav-header\" [disableRipple]=\"true\">\r\n <a class=\"nav-item nav-item-margin\" mat-list-item [routerLink]=\"nav?.route\"\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </a>\r\n </mat-nav-list>\r\n </ng-container>\r\n <!-- If there is not a route -->\r\n <ng-container *ngIf=\"!nav?.route\">\r\n <mat-nav-list>\r\n <button id=\"sof-ar-nav-btn-node\" class=\"nav-item\" mat-list-item\r\n [routerLinkActive]=\"['sof-ar-nav-active-route']\">\r\n <ng-container *ngIf=\"nav?.fontAwesomeIcon\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\"><i class=\"{{nav?.fontAwesomeIcon}}\"></i></span>\r\n </ng-container>\r\n {{nav.text | translate}}\r\n </button>\r\n </mat-nav-list>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- the mobile progress menu-->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <div class=\"sidenav-background\" [ngStyle]=\"{'padding-bottom.px': (footerItemCount*64)+128}\">\r\n <mat-accordion>\r\n <div *ngFor=\"let step of navigationData; let i = index\">\r\n <ng-container *ngIf=\"step?.subNodes && step?.subNodes?.length > 0 && !step?.hidden\">\r\n <mat-expansion-panel hideToggle class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n (opened)=\"panelOpenState = true\" (closed)=\"panelOpenState = false\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div style=\"width: -webkit-fill-available;\"\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n <span *ngIf=\"!panelOpenState\">\r\n <i class=\"fas fa-chevron-down panel-icon\"></i>\r\n </span>\r\n <span *ngIf=\"panelOpenState\">\r\n <i class=\"fas fa-chevron-up panel-icon\"></i>\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n <!-- mobile sub menu -->\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [hidden]=\"step.subNodes[idx].hidden\">\r\n <button role=\"link\" id=\"mobileMenu{{ idx }}\" mat-button class=\"step-link progress-menu-mobile-btn\"\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\"\r\n [ngClass]=\"{'disabled':(!subNode.visited) && !settings.overrideNavigation && !subNode.complete,'color-primary':subNode.complete && subNode!==activeSubNode,'progress-menu-active':subNode===activeSubNode}\">{{\r\n subNode.text | translate }}</span>\r\n </button>\r\n </div>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n <!-- if there are no subNodes -->\r\n <ng-container *ngIf=\"(!step?.subNodes || step?.subNodes?.length===0) && !step?.hidden\">\r\n <mat-expansion-panel #panel hideToggle (opened)=\"disablePanel(panel,i)\"\r\n class=\"progress-mobile-expansion-panel\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title class=\"progress-mobile-panel-title\">\r\n <div\r\n [ngClass]=\"{'disabled':(!step.visited || step.isDisabled) && !settings.overrideNavigation && !step.complete,'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\"\r\n [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">\r\n {{ step.text | translate }}\r\n </span>\r\n </div>\r\n </mat-panel-title>\r\n <mat-panel-description>\r\n </mat-panel-description>\r\n </mat-expansion-panel-header>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </div>\r\n </mat-accordion>\r\n </div>\r\n\r\n <!-- the progress menu language and logout buttons-->\r\n <div class=\"nav-footer-item progress-footer\">\r\n <ng-template [ngTemplateOutlet]=\"navigationFooter\">\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content>\r\n <!-- Horizontal Progress -->\r\n <ng-container *ngIf=\"settings?.menuStyle === 'progress'\">\r\n <mat-progress-bar *ngIf=\"settings?.showProgressBar\" mode=\"determinate\" [value]=\"navProgressCount\"\r\n style=\"height: 9px\" color=\"accent\">\r\n </mat-progress-bar>\r\n <nav [attr.aria-label]=\"'main'\" fxHide.lt-md class=\"step-titles center\" fxLayout=\"row\" style=\"justify-content:center !important\"\r\n [class.hidden]=\"settings.hideNavigation\">\r\n <div *ngFor=\"let step of navigationData; let i = index\" class=\"horizontal-progress-div\">\r\n <ng-container *ngIf=\"!step?.subNodes?.length && !step?.hidden\">\r\n <button mat-button [routerLink]=\"step.route\"\r\n [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\"\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n </ng-container>\r\n <!-- if there are subnodes create menus for each step -->\r\n <ng-container *ngIf=\"step?.subNodes && step?.subNodes.length && !step?.hidden\">\r\n <button\r\n [ngClass]=\"{'color-primary':step.complete && step!==activeParentNode,'progress-menu-active':step===activeParentNode}\"\r\n mat-button [disabled]=\"(!step.visited || step.isDisabled) && !settings.overrideNavigation\"\r\n class=\"progress-menu-btn\" [matMenuTriggerFor]=\"menu\">\r\n <ng-template [ngTemplateOutlet]=\"progressParentNodeIcons\" [ngTemplateOutletContext]=\"{step:step}\">\r\n </ng-template>\r\n <span *ngIf=\"settings?.displayNumbers\">\r\n {{i < 10 ? \"0\" + (i + 1) + \". \" : i + \" . \" }} </span>\r\n <span class=\"nav-btn-text\">{{ step.text | translate }}</span>\r\n </button>\r\n <mat-menu #menu=\"matMenu\" class=\"sof-ar-mat-menu progress-menu-panel\">\r\n <div class=\"progress-nav-menu\" *ngFor=\"let subNode of step.subNodes; let idx = index;\"\r\n [ngStyle]=\"{width:settings.progressMenuWidth+'px'}\" [hidden]=\"step.subNodes[idx].hidden\">\r\n <button [attr.role]=\"'link'\" id=\"submenu{{ idx }}\" class=\"step-link progress-menu-btn\" mat-menu-item\r\n [ngClass]=\"{'color-primary':subNode.complete && subNode!==activeSubNode,'disabled':!subNode.visited && !settings.overrideNavigation}\"\r\n [routerLinkActive]=\"['progress-menu-active']\" [ngStyle]=\"{ ' color': themeSettings?.fontColor }\"\r\n [routerLink]=\"subNode.route\" [disabled]=\"!subNode.visited && !settings.overrideNavigation\">\r\n <div class=\"nav-menu-btn-div\">\r\n <ng-template [ngTemplateOutlet]=\"progressSubNodeIcons\"\r\n [ngTemplateOutletContext]=\"{subNode:subNode}\">\r\n </ng-template>\r\n <span class=\"nav-menu-btn-text\">{{ subNode.text |translate }}</span>\r\n </div>\r\n </button>\r\n </div>\r\n </mat-menu>\r\n </ng-container>\r\n </div>\r\n </nav>\r\n <div class=\"mobile-progress-container\" fxHide.gt-sm>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-content sof-ar-nav-content></ng-content>\r\n </mat-sidenav-content>\r\n </mat-sidenav-container>\r\n <!-- The progress menu parent node icon template-->\r\n <ng-template #progressParentNodeIcons let-step='step'>\r\n <span *ngIf=\"step.complete && step !== activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCompleteIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"step === activeParentNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\" \r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span *ngIf=\"!step.complete && step !== activeParentNode\"\r\n [ngClass]=\"{'disabled':!step.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The progress menu sub node icon template-->\r\n <ng-template #progressSubNodeIcons let-subNode='subNode'>\r\n <span class=\"progress-menu-icon\" *ngIf=\"subNode.complete && activeSubNode !== subNode\">\r\n <i class=\"{{settings.progressMenuCompleteIcon}} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.complete' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"activeSubNode === subNode\">\r\n <i class=\"{{ settings.progressSectionCurrentIcon }} color-primary progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.in-progress' | translate\"></i>\r\n </span>\r\n <span class=\"progress-menu-icon\" *ngIf=\"!subNode.complete && activeSubNode !== subNode\"\r\n [ngClass]=\"{'disabled':!subNode.visited && !settings.overrideNavigation}\">\r\n <i class=\"{{ settings.progressSectionFutureIcon }} progress-nav-icon\"\r\n [title]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"\r\n [attr.aria-label]=\"'armature.sof-progress-bar.step-labels.not-done' | translate\"></i>\r\n </span>\r\n </ng-template>\r\n <!-- The navigation footer template for language and logout buttons -->\r\n <ng-template #navigationFooter>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"> </ng-content>\r\n <ng-container *ngIf=\"!settings?.useCustomMobileFooter\">\r\n <!-- The language button -->\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages?.length > 2 && mobileQuery?.matches\">\r\n <button id=\"sof-ar-nav-lang-dropdown\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\" [matMenuTriggerFor]=\"headerLanguageMenu\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{languageSettings.buttonText | translate}}\r\n </button>\r\n <mat-menu #headerLanguageMenu=\"matMenu\" class=\"sof-ar-mat-menu\">\r\n <button mat-menu-item *ngFor=\"let lang of languageSettings.languages\" (click)=\"setLanguage$.emit(lang)\"\r\n id=\"apply-lang-btn-{{lang}}\">\r\n <div fxLayout=\"row\" fxLayoutGap=\"10px\" fxLayoutAlign=\"start center\">\r\n <div fxFlex=\"auto\">\r\n {{ lang | translate }}\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <i *ngIf=\"currentLang === lang\" class=\"fad fa-check selected-language-icon\"></i>\r\n </div>\r\n </div>\r\n </button>\r\n </mat-menu>\r\n </ng-container>\r\n <ng-container\r\n *ngIf=\"languageSettings?.displayLanguageOptions && languageSettings?.languages?.length === 2 && mobileQuery?.matches\">\r\n <button *ngIf=\"languageSettings?.languages?.length === 2\" id=\"sof-ar-nav-lang-button\" mat-stroked-button\r\n class=\"faded-button-50 language-button navigationFooter\"\r\n [attr.aria-label]=\"languageSettings.buttonText | translate\" (click)=\"setLanguage$.emit()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"far fa-globe language-globe\"></i>\r\n </span>\r\n {{otherLangText | translate}}\r\n </button>\r\n </ng-container>\r\n <!-- The logout button-->\r\n <ng-container *ngIf=\"mobileQuery?.matches && userName\">\r\n <button id=\"sof-ar-header-lang-button\" mat-stroked-button class=\"navigationFooter\" (click)=\"logOut()\">\r\n <span aria-hidden=\"true\" class=\"icon-styling\">\r\n <i class=\"fas fa-sign-out-alt\"></i>\r\n </span>\r\n {{logOutText | translate}}\r\n </button>\r\n </ng-container>\r\n </ng-container>\r\n </ng-template>\r\n</div>", styles: [":root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}html{--mat-sys-on-surface: initial}.mat-app-background{background-color:var(--mat-app-background-color, var(--mat-sys-background, transparent));color:var(--mat-app-text-color, var(--mat-sys-on-background, inherit))}::ng-deep :root{--sof-nav-content-bg-color: #fffdfd;--sof-nav-font-color: #eee;--sof-nav-bg-gradient-color-1: #fff;--sof-nav-bg-gradient-color-2: #fff;--sof-nav-border-right-color: transparent;--sof-nav-list-border-color: #cfd8dc;--sof-nav-highlight-gradient-1: mat.m2-get-color-from-palette($my-app-primary, 100);--sof-nav-highlight-gradient-2: rgba(255, 255, 255, 0);--sof-nav-sub-highlight-border-color: #616161;--sof-nav-sub-highlight-bg-color: #424242}.sof-ar-nav-sidenav{background:#000;border-right-color:var(--sof-nav-border-right-color);background:linear-gradient(-180deg,var(--sof-nav-bg-gradient-color-1) 0%,var(--sof-nav-bg-gradient-color-2) 100%);overflow:hidden}.sof-ar-nav-sidenav *{color:var(--sof-nav-font-color)}::ng-deep [sof-ar-nav-footer] *,::ng-deep [sof-ar-nav-header] *{color:var(--sof-nav-font-color)!important;display:inline!important;visibility:visible!important}::ng-deep .sof-ar-nav-active-route:active{background:#000!important;background:linear-gradient(90deg,var(--sof-nav-highlight-gradient-1) 0%,var(--sof-nav-highlight-gradient-2) 80%)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}::ng-deep .sof-ar-nav-sub-active-route{background:var(--sof-nav-sub-highlight-bg-color);margin-right:-4px;position:relative}::ng-deep .sof-ar-nav-sub-active-route:focus,::ng-deep .sof-ar-nav-sub-active-route:active{background:var(--sof-nav-sub-highlight-bg-color)!important}::ng-deep .sof-ar-nav-sub-active-route:before{content:\"\";display:block;position:absolute;top:0;height:inherit}::ng-deep .mat-drawer-container{background:var(--sof-nav-content-bg-color)!important}.sof-ar-nav-container{display:flex;flex-direction:column;position:absolute;bottom:0;left:0;right:0}h1.example-app-name{margin-left:8px}.sof-ar-nav-sidenav-container{flex:1}.example-is-mobile .example-sidenav-container{flex:1 0 auto}.hidden{display:none!important}.sof-ar-nav-buffer{height:40px}button.nav-item{border:0;background:transparent}.nav-item{font-size:15px!important;font-weight:500!important}.nav-item.mat-mdc-list-item-interactive:focus:before,.nav-item.mat-mdc-list-item-interactive:hover:before{opacity:0!important}.mat-expansion-indicator{border-bottom-right-radius:11px!important}.nav-footer-item{background:#fafafa;position:absolute;bottom:0%;width:18rem}.progress-footer{display:flex;width:100%;z-index:2}.panel-icon{float:right;color:#000!important}.user-name{display:inline-block;height:3.5rem;padding-left:.5rem;padding-top:3rem;padding-right:.5rem;font-size:larger;font-weight:800}.nav-header-content{padding-left:.5rem;padding-right:.5rem}::ng-deep .mat-mdc-list-base{padding:0!important}::ng-deep .mat-drawer-inner-container{min-width:275px;overflow:hidden!important}::ng-deep .mat-drawer-inner-container:hover{overflow:overlay!important}::ng-deep .icon-styling{padding-right:10px;padding-left:10px;width:24px;text-align:left}::ng-deep .nav-icon{margin-left:auto;padding-left:30px}::ng-deep .nav-item{font-family:var(--sftn-font-family, sans-serif);font-weight:500;padding-top:2px!important;padding-left:0!important}::ng-deep [sof-ar-nav-footer] hr{margin:5px 10px;opacity:.5}.subnav-content{padding:0;height:48px!important}.nav-header{height:64px!important}.mat-mdc-list-item{background-color:transparent;display:inline!important}.mat-mdc-list-item:focus{outline:2px solid white!important}::ng-deep .mdc-list-item__content{padding:0 4px!important;padding-left:1.5rem!important}::ng-deep .subnav-item{padding-left:1rem!important}::ng-deep .visible-mobile{display:none}@media only screen and (max-width: 959px){::ng-deep .visible-mobile{display:block}}@media (max-width: 959px){::ng-deep .sof-ar-fixed-nav{position:fixed;z-index:2;width:100%!important;box-sizing:border-box}}::ng-deep .sof-ar-nav-menu-btn{position:fixed!important;z-index:2!important;top:1.25%;width:44px!important;height:40px!important;color:var(--primary-color-500-parts)!important;background:var(--primary-color-50-parts)!important;border-radius:8px!important;padding:0!important}@media (max-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:2%!important}}@media (min-width: 959px){::ng-deep .sof-ar-nav-menu-btn{margin-left:11px!important}}::ng-deep .sof-ar-nav-menu-btn:hover .mdc-icon-button__ripple,::ng-deep .sof-ar-nav-menu-btn:focus .mdc-icon-button__ripple{border-radius:inherit!important}@media only screen and (min-width: 959px){::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):before{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px)}::ng-deep .mat-mdc-list-base:not(.subnav-item):not(.custom-nav):after{content:\"\";display:block;height:1px;margin-left:auto;width:calc(100% - 40px);margin-bottom:-1px}}::ng-deep .mat-step-text-label{color:#fff;font-family:var(--sftn-font-family, sans-serif)!important;font-size:1.3em}::ng-deep .mat-expansion-indicator{padding:1em!important}::ng-deep .mat-stepper-vertical{background-color:transparent!important}.mat-mdc-nav-list{width:100%;margin-top:3px;margin-bottom:3px}.mat-mdc-nav-list:hover{border-bottom-right-radius:8px!important;border-top-right-radius:8px!important;background:var(--sof-nav-highlight-gradient-1)!important}.mat-expansion-panel-header{padding:0;height:64px!important;margin-top:3px;margin-bottom:3px}.mat-expansion-panel-header:hover{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel-header:focus{outline:2px solid white!important}.sof-ar-nav-selected{background:var(--sof-nav-highlight-gradient-1)!important;border-bottom-right-radius:8px!important;border-top-right-radius:8px!important}.mat-expansion-panel{display:inline}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.step-active{border-bottom:3px solid var(--primary-color-500-parts);border-bottom-left-radius:0;border-bottom-right-radius:0}::ng-deep .mat-vertical-content{padding-bottom:0!important}.step-link{padding-left:0!important;padding-right:0!important}.step-titles{padding-top:20px;padding-bottom:20px}.step-titles>button{font-family:var(--sftn-font-family, sans-serif)!important;font-size:16px!important;font-weight:500!important;color:#000;background-color:transparent!important}.step-active{border-bottom:0!important}::ng-deep .progress-menu-active,progress-menu-active *{color:#000!important}::ng-deep .color-primary,.color-primary *{color:var(--primary-color-500-parts)!important}.sof-ar-nav-sidenav{max-width:-webkit-fill-available}.nav-menu-btn-text{font-family:var(--sftn-font-family, sans-serif);letter-spacing:.0892857143em;line-height:36px;white-space:normal}.progress-menu-icon{line-height:36px}.nav-menu-btn-div{display:flex}.progress-menu-btn{width:-webkit-fill-available;text-align:left;padding:12px 16px!important;font-size:16px!important;height:fit-content}::ng-deep .disabled,.disabled *,.progress-menu-btn:disabled,.progress-menu-mobile-btn:disabled,.mat-expansion-panel-header:disabled{color:#333c!important}.progress-nav-icon{margin-right:10px;font-size:14px}::ng-deep .progress-menu-mobile-btn{display:flex!important}::ng-deep .progress-nav-menu{display:flex!important}.progress-menu-mobile-btn{padding:12px 24px!important;width:-webkit-fill-available;text-align:left;height:fit-content}.progress-mobile-panel-title{width:-webkit-fill-available;font-size:16px;font-family:var(--sftn-font-family, sans-serif)!important;padding-left:24px}.progress-mobile-expansion-panel{margin:0!important}::ng-deep .progress-mobile-expansion-panel .mat-expansion-panel-body{background:var(--primary-color-50-parts)!important;padding:0!important;font-size:16px!important}::ng-deep .mat-mdc-menu-panel{max-width:unset!important}::ng-deep .progress-menu-panel{background:var(--primary-color-50-parts)!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane{transform:none!important}::ng-deep .cdk-overlay-container .cdk-overlay-pane .step-option{margin-top:33px!important}.mobile-progress-container{padding-bottom:24px}.step-titles-mobile{padding-top:25px;padding-bottom:25px;background-color:transparent}.step-titles-mobile ::ng-deep .mat-mdc-select-trigger{padding-left:17px;padding-right:20px}.step-done{color:var(--accent-color-900-parts)!important;cursor:pointer}.step-future{color:var(--primary-color-900-parts)!important;opacity:.7}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-infix{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mdc-floating-label{padding-left:.5em!important;padding-right:.5em!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-prefix{top:0!important}::ng-deep .mat-form-field-appearance-outline .mat-mdc-form-field-icon-suffix{top:0!important}[sws-alert--secondary]{max-height:90px;min-height:52px;padding:0 0 0 24px;margin:2px 5px;border-radius:5px;font-weight:700;font-size:16px;background:#1dbe681a;border:2px solid #2b9c62;color:#2b9c62}.icon-container{align-self:center}.message-container{margin-left:10px;line-height:1.8}#btnClose{color:#000}.navigationFooter{width:100%;border:none;height:64px!important;font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:15px!important;position:relative;text-align:left;padding-left:1.5rem}.navigationFooter:hover{color:unset!important}.nav-item-margin{position:relative;display:flex!important;width:inherit!important;height:inherit!important}.sof-ar-nav-menu-icon{font-size:23px}.menu-icon{color:var(--primary-color-800-parts)!important}.sidenav-background{background:transparent!important}::ng-deep .mat-expansion-panel-body{padding:0!important}::ng-deep .subnav-content>a>.mdc-list-item__content{padding:0 4px!important;padding-left:4.25rem!important}::ng-deep .nav-content-item{margin-right:24px;margin-top:24px}.sof-ar-nav-header-text{font-family:var(--sftn-font-family, sans-serif);font-weight:500;font-size:14px;line-height:175%;letter-spacing:.14em}ul{display:contents}@media only screen and (max-width: 959px){.mat-drawer-container.sof-ar-nav-sidenav-container{background:#f5f5f580!important}}\n"] }]
|
|
1773
1773
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i1$3.MediaMatcher }, { type: i1$4.Router }, { type: BannerService }, { type: AuthorizationService }, { type: BaseConfigService, decorators: [{
|
|
1774
1774
|
type: Optional
|
|
1775
1775
|
}] }], propDecorators: { stepper: [{
|
|
@@ -2189,7 +2189,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
2189
2189
|
class AppTemplateComponent {
|
|
2190
2190
|
/** The log out text */
|
|
2191
2191
|
get logOutText() {
|
|
2192
|
-
return this.headerAuthSettings
|
|
2192
|
+
return this.headerAuthSettings?.logOutText;
|
|
2193
2193
|
}
|
|
2194
2194
|
/** gets the non used language */
|
|
2195
2195
|
get otherLangText() {
|
|
@@ -2234,7 +2234,7 @@ class AppTemplateComponent {
|
|
|
2234
2234
|
this.config$ = this.configService.config$;
|
|
2235
2235
|
this.setDefaults();
|
|
2236
2236
|
this.configService.config$.subscribe(config => {
|
|
2237
|
-
if (config && config.oAuthSettings
|
|
2237
|
+
if (config && config.oAuthSettings?.preserveRequestedRoute && this.oauthService.hasValidAccessToken()) {
|
|
2238
2238
|
routeToPreLoginRoute(this.router);
|
|
2239
2239
|
}
|
|
2240
2240
|
// object assign is used here so the header doesn't have to re render with the new object reference
|
|
@@ -2431,11 +2431,11 @@ class AppTemplateComponent {
|
|
|
2431
2431
|
Object.assign(this.navigationTheme, defaultNavTheme);
|
|
2432
2432
|
}
|
|
2433
2433
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: AppTemplateComponent, deps: [{ token: BaseConfigService }, { token: i2$1.TranslateService }, { token: FederatedModuleService }, { token: i1$4.Router }, { token: i1$2.OAuthService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2434
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: AppTemplateComponent, isStandalone: false, selector: "sof-ar-app-template", ngImport: i0, template: "\r\n@if (!isFederatedModule) {\r\n <sof-ar-header \r\n [settings]=\"headerSettings\" \r\n [themeSettings]=\"headerThemeSettings\" \r\n [authSettings]=\"headerAuthSettings\"\r\n [currentLang]=\"currentLang\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-header-left>\r\n <ng-content select=\"[sof-ar-header-left]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-center>\r\n <ng-content select=\"[sof-ar-header-center]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-right>\r\n <ng-content select=\"[sof-ar-header-right]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-header-user-menu>\r\n <ng-content select=\"[sof-header-user-menu]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-header>\r\n <ng-content select=\"[sof-ar-template-content]\"></ng-content>\r\n @if (navigationSettings
|
|
2434
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: AppTemplateComponent, isStandalone: false, selector: "sof-ar-app-template", ngImport: i0, template: "\r\n@if (!isFederatedModule) {\r\n <sof-ar-header \r\n [settings]=\"headerSettings\" \r\n [themeSettings]=\"headerThemeSettings\" \r\n [authSettings]=\"headerAuthSettings\"\r\n [currentLang]=\"currentLang\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-header-left>\r\n <ng-content select=\"[sof-ar-header-left]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-center>\r\n <ng-content select=\"[sof-ar-header-center]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-right>\r\n <ng-content select=\"[sof-ar-header-right]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-header-user-menu>\r\n <ng-content select=\"[sof-header-user-menu]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-header>\r\n <ng-content select=\"[sof-ar-template-content]\"></ng-content>\r\n @if (navigationSettings?.version === 'v1') {\r\n <sof-ar-navigation \r\n [navigationData]=\"navigationNodes\" \r\n [settings]=\"navigationSettings\"\r\n [advancedSettings]=\"navigationAdvancedSettings\" \r\n [themeSettings]=\"navigationTheme\"\r\n [languageSettings]=\"languageSettings\" \r\n [currentLang]=\"currentLang\" \r\n [logOutText]=\"logOutText\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-nav-content>\r\n <sof-ar-alert-banner class=\"sof-ar-alert-banner-container\"></sof-ar-alert-banner>\r\n <div class=\"sof-ar-nav-container\" fxLayout=\"column\" fxLayout=\"start stretch\" style=\"height: 100%;\">\r\n <ng-content select=\"[sof-ar-nav-content-header]\"></ng-content>\r\n <div class=\"sof-ar-nav-content-container\" fxFlex=\"1 0 100%\">\r\n <main \r\n [ngStyle.lt-md]=\"{'max-width': navigationSettings?.maxContentWidthMobile + '%'}\"\r\n [ngStyle.gt-sm]=\"{'max-width': navigationSettings?.maxContentWidthDesktop + '%'}\" \r\n class=\"main-content\">\r\n <router-outlet></router-outlet>\r\n </main>\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <sof-ar-footer style=\"width: 100%;\" [footerConfig]=\"{ showPreContent1: false, showPreContent2: false }\">\r\n <ng-container sof-ar-footer-content>\r\n <ng-content select=\"[sof-ar-footer-content]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-footer>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container sof-ar-nav-mobile-footer>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-navigation>\r\n } @else {\r\n <sof-nav-b2b \r\n [navigationData]=\"navigationNodes\" \r\n [settings]=\"navigationSettings\"\r\n [advancedSettings]=\"navigationAdvancedSettings\" \r\n [themeSettings]=\"navigationTheme\"\r\n [languageSettings]=\"languageSettings\" \r\n [currentLang]=\"currentLang\" \r\n [logOutText]=\"logOutText\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-nav-content>\r\n <sof-ar-alert-banner class=\"sof-ar-alert-banner-container\"></sof-ar-alert-banner>\r\n <div class=\"sof-ar-nav-container\" fxLayout=\"column\" fxLayout=\"start stretch\" style=\"height: 100%;\">\r\n <ng-content select=\"[sof-ar-nav-content-header]\"></ng-content>\r\n <div class=\"sof-ar-nav-content-container\" fxFlex=\"1 0 100%\">\r\n <main \r\n [ngStyle.lt-md]=\"{'max-width': navigationSettings?.maxContentWidthMobile + '%'}\"\r\n [ngStyle.gt-sm]=\"{'max-width': navigationSettings?.maxContentWidthDesktop + '%'}\" \r\n class=\"main-content\">\r\n <router-outlet></router-outlet>\r\n </main>\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <sof-ar-footer style=\"width: 100%;\" [footerConfig]=\"{ showPreContent1: false, showPreContent2: false }\">\r\n <ng-container sof-ar-footer-content>\r\n <ng-content select=\"[sof-ar-footer-content]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-footer>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container sof-ar-nav-mobile-footer>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"></ng-content>\r\n </ng-container>\r\n </sof-nav-b2b>\r\n }\r\n} @else {\r\n <router-outlet></router-outlet>\r\n}\r\n", styles: [".nav-content-container{display:flex;flex-direction:column;height:100%}.sof-ar-nav-container{overflow:overlay}.sof-ar-nav-content-container{width:100%}.main-content{margin:auto}\n"], dependencies: [{ kind: "component", type: ArmatureNavigationComponent, selector: "sof-ar-navigation", inputs: ["navigationData", "settings", "advancedSettings", "themeSettings", "languageSettings", "currentLang", "logOutText"], outputs: ["setLanguage$"] }, { kind: "component", type: ArmatureHeaderComponent, selector: "sof-ar-header", inputs: ["settings", "themeSettings", "authSettings", "currentLang"], outputs: ["setLanguage$", "isLoggedInEE"] }, { kind: "component", type: ArmatureFooterComponent, selector: "sof-ar-footer", inputs: ["footerConfig"] }, { kind: "component", type: AlertBannerComponent, selector: "sof-ar-alert-banner", inputs: ["context"] }, { kind: "directive", type: i1$4.RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }, { kind: "component", type: B2bNavComponent, selector: "sof-nav-b2b", inputs: ["scrollToTopOnNavigationEndEvent", "navigationData", "settings", "advancedSettings", "themeSettings", "languageSettings", "currentLang", "logOutText"], outputs: ["isNavPanelOpenedEvent", "setLanguage$"] }] }); }
|
|
2435
2435
|
}
|
|
2436
2436
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: AppTemplateComponent, decorators: [{
|
|
2437
2437
|
type: Component,
|
|
2438
|
-
args: [{ selector: 'sof-ar-app-template', standalone: false, template: "\r\n@if (!isFederatedModule) {\r\n <sof-ar-header \r\n [settings]=\"headerSettings\" \r\n [themeSettings]=\"headerThemeSettings\" \r\n [authSettings]=\"headerAuthSettings\"\r\n [currentLang]=\"currentLang\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-header-left>\r\n <ng-content select=\"[sof-ar-header-left]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-center>\r\n <ng-content select=\"[sof-ar-header-center]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-right>\r\n <ng-content select=\"[sof-ar-header-right]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-header-user-menu>\r\n <ng-content select=\"[sof-header-user-menu]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-header>\r\n <ng-content select=\"[sof-ar-template-content]\"></ng-content>\r\n @if (navigationSettings
|
|
2438
|
+
args: [{ selector: 'sof-ar-app-template', standalone: false, template: "\r\n@if (!isFederatedModule) {\r\n <sof-ar-header \r\n [settings]=\"headerSettings\" \r\n [themeSettings]=\"headerThemeSettings\" \r\n [authSettings]=\"headerAuthSettings\"\r\n [currentLang]=\"currentLang\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-header-left>\r\n <ng-content select=\"[sof-ar-header-left]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-center>\r\n <ng-content select=\"[sof-ar-header-center]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-ar-header-right>\r\n <ng-content select=\"[sof-ar-header-right]\"></ng-content>\r\n </ng-container>\r\n <ng-container sof-header-user-menu>\r\n <ng-content select=\"[sof-header-user-menu]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-header>\r\n <ng-content select=\"[sof-ar-template-content]\"></ng-content>\r\n @if (navigationSettings?.version === 'v1') {\r\n <sof-ar-navigation \r\n [navigationData]=\"navigationNodes\" \r\n [settings]=\"navigationSettings\"\r\n [advancedSettings]=\"navigationAdvancedSettings\" \r\n [themeSettings]=\"navigationTheme\"\r\n [languageSettings]=\"languageSettings\" \r\n [currentLang]=\"currentLang\" \r\n [logOutText]=\"logOutText\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-nav-content>\r\n <sof-ar-alert-banner class=\"sof-ar-alert-banner-container\"></sof-ar-alert-banner>\r\n <div class=\"sof-ar-nav-container\" fxLayout=\"column\" fxLayout=\"start stretch\" style=\"height: 100%;\">\r\n <ng-content select=\"[sof-ar-nav-content-header]\"></ng-content>\r\n <div class=\"sof-ar-nav-content-container\" fxFlex=\"1 0 100%\">\r\n <main \r\n [ngStyle.lt-md]=\"{'max-width': navigationSettings?.maxContentWidthMobile + '%'}\"\r\n [ngStyle.gt-sm]=\"{'max-width': navigationSettings?.maxContentWidthDesktop + '%'}\" \r\n class=\"main-content\">\r\n <router-outlet></router-outlet>\r\n </main>\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <sof-ar-footer style=\"width: 100%;\" [footerConfig]=\"{ showPreContent1: false, showPreContent2: false }\">\r\n <ng-container sof-ar-footer-content>\r\n <ng-content select=\"[sof-ar-footer-content]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-footer>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container sof-ar-nav-mobile-footer>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-navigation>\r\n } @else {\r\n <sof-nav-b2b \r\n [navigationData]=\"navigationNodes\" \r\n [settings]=\"navigationSettings\"\r\n [advancedSettings]=\"navigationAdvancedSettings\" \r\n [themeSettings]=\"navigationTheme\"\r\n [languageSettings]=\"languageSettings\" \r\n [currentLang]=\"currentLang\" \r\n [logOutText]=\"logOutText\"\r\n (setLanguage$)=\"applyLanguage()\">\r\n <ng-container sof-ar-nav-content>\r\n <sof-ar-alert-banner class=\"sof-ar-alert-banner-container\"></sof-ar-alert-banner>\r\n <div class=\"sof-ar-nav-container\" fxLayout=\"column\" fxLayout=\"start stretch\" style=\"height: 100%;\">\r\n <ng-content select=\"[sof-ar-nav-content-header]\"></ng-content>\r\n <div class=\"sof-ar-nav-content-container\" fxFlex=\"1 0 100%\">\r\n <main \r\n [ngStyle.lt-md]=\"{'max-width': navigationSettings?.maxContentWidthMobile + '%'}\"\r\n [ngStyle.gt-sm]=\"{'max-width': navigationSettings?.maxContentWidthDesktop + '%'}\" \r\n class=\"main-content\">\r\n <router-outlet></router-outlet>\r\n </main>\r\n </div>\r\n <div fxFlex=\"auto\" fxLayoutAlign=\"end end\">\r\n <sof-ar-footer style=\"width: 100%;\" [footerConfig]=\"{ showPreContent1: false, showPreContent2: false }\">\r\n <ng-container sof-ar-footer-content>\r\n <ng-content select=\"[sof-ar-footer-content]\"></ng-content>\r\n </ng-container>\r\n </sof-ar-footer>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container sof-ar-nav-mobile-footer>\r\n <ng-content select=\"[sof-ar-nav-mobile-footer]\"></ng-content>\r\n </ng-container>\r\n </sof-nav-b2b>\r\n }\r\n} @else {\r\n <router-outlet></router-outlet>\r\n}\r\n", styles: [".nav-content-container{display:flex;flex-direction:column;height:100%}.sof-ar-nav-container{overflow:overlay}.sof-ar-nav-content-container{width:100%}.main-content{margin:auto}\n"] }]
|
|
2439
2439
|
}], ctorParameters: () => [{ type: BaseConfigService }, { type: i2$1.TranslateService }, { type: FederatedModuleService }, { type: i1$4.Router }, { type: i1$2.OAuthService }] });
|
|
2440
2440
|
|
|
2441
2441
|
/** The start up abstract class */
|
|
@@ -7190,7 +7190,7 @@ ${pageTitleLabel} ${pageTitle}`;
|
|
|
7190
7190
|
}, 2000);
|
|
7191
7191
|
}
|
|
7192
7192
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofErrorCommonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7193
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: SofErrorCommonComponent, isStandalone: true, selector: "sof-error-common", inputs: { imageUrl: "imageUrl", returnUrl: "returnUrl", contactInfo: "contactInfo", errorReference: "errorReference", showLogout: "showLogout" }, outputs: { logoutEvent: "logoutEvent" }, ngImport: i0, template: "<div \r\n fxLayout=\"row\" \r\n fxLayout.lt-md=\"column-reverse\" \r\n fxLayoutGap=\"80px\"\r\n class=\"error-common\">\r\n <div \r\n class=\"error-image-container\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"end\" fxLayoutAlign.lt-md=\"center\">\r\n @if (imageUrl) {\r\n <div class=\"m-v-auto error-image\">\r\n <!-- Note: empty 'alt' attribute is best practice for WCAG (will ignore this presentation only image) -->\r\n <img [src]=\"imageUrl\" alt=\"\" class=\"m-l-auto\">\r\n </div>\r\n } @else {\r\n <div class=\"m-v-auto error-image\">\r\n <ng-container *ngTemplateOutlet=\"errorCommonSvg\"></ng-container>\r\n </div>\r\n }\r\n </div>\r\n <div \r\n class=\"error-content\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"start\" fxLayoutAlign.lt-md=\"center\">\r\n <div class=\"error-content-main\">\r\n <h1>{{'armature.error-common.title' | translate}}</h1>\r\n <h3 class=\"text-medium-emphasis m-t-8\">\r\n {{'armature.error-common.description' | translate}}\r\n </h3>\r\n <button\r\n id=\"error-common-return-button\"\r\n mat-flat-button \r\n class=\"sof-button-v2 m-t-24\" \r\n [class.m-b-24]=\"showLogout\"\r\n theme=\"primary\" emphasis=\"solid\"\r\n [routerLink]=\"returnUrl ? [returnUrl] : ['/']\">\r\n {{'armature.error-common.return-button-label' | translate}}\r\n </button>\r\n @if (showLogout) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.logout.0' | translate}}\r\n <button id=\"error-common-logout-button\" (click)=\"logout()\" class=\"link1 p-a-0\">\r\n {{'armature.error-common.logout.1' | translate}}\r\n </button>\r\n {{'armature.error-common.logout.2' | translate}}\r\n </p>\r\n }\r\n <div class=\"break m-v-24\"></div>\r\n @if (contactInfo?.email || contactInfo?.phone) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.contact-support.0' | translate}}\r\n @if (contactInfo?.email) {\r\n <a [href]=\"'mailto:'+contactInfo?.email\" id=\"error-common-contact-support-email\" class=\"link1 m-r-4\">\r\n {{contactInfo?.email}}\r\n </a>\r\n }\r\n @if (contactInfo?.email && contactInfo?.phone) {\r\n or\r\n }\r\n @if (contactInfo?.phone) {\r\n <a [href]=\"'tel:'+contactInfo?.phone\" id=\"error-common-contact-support-email\" class=\"link1 m-r-4\">\r\n {{contactInfo?.phone}}\r\n </a>\r\n }\r\n {{'armature.error-common.contact-support.1' | translate}}\r\n </p>\r\n }\r\n <div class=\"error-reference m-t-16\" fxLayout=\"row\">\r\n <p class=\"body2 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.title' | translate}}\r\n </p>\r\n <button\r\n mat-flat-button\r\n [disableRipple]=\"true\"\r\n [disabled]=\"disableCopy\"\r\n (click)=\"copyErrorReferenceDataEvent()\"\r\n class=\"sof-button-v2 mini m-l-auto\"\r\n [class]=\"copyErrorReferenceDataButton?.class\"\r\n id=\"copy-error-reference-data-button\"\r\n aria-label=\"copy error reference\">\r\n <i class=\"ph-bold ph-{{copyErrorReferenceDataButton?.icon}}\" aria-hidden=\"true\"></i>\r\n {{copyErrorReferenceDataButton?.text | translate}}\r\n </button>\r\n </div>\r\n <div fxLayout=\"column\" class=\"reference-data p-a-16 m-t-8\">\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.timestamp' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.timestamp ? errorReference?.timestamp : '--'}}\r\n </span>\r\n </p>\r\n @if (errorReference?.sessionId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.session-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.sessionId}}</span>\r\n </p>\r\n }\r\n @if (errorReference?.errorId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.error-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.errorId}}</span>\r\n </p>\r\n }\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.page-title' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.pageTitle ? (errorReference?.pageTitle | translate) : '--'}}\r\n </span>\r\n </p>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- Svg from Figma (w/ primary palette variables added to certain paths for branding, per design) -->\r\n<ng-template #errorCommonSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"393\" height=\"388\" viewBox=\"0 0 393 388\" fill=\"none\">\r\n <path d=\"M190.094 364.84C189.155 364.84 188.985 361.348 189.001 358.521C189.012 356.501 190.624 354.891 192.64 354.765L200.626 354.266C202.928 354.122 204.875 355.95 204.875 358.257V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M190.094 364.84C188.517 364.84 189.109 354.985 189.109 354.985L204.875 354V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M91.7917 19.7826C92.9064 19.7659 93.51 19.9892 93.8611 20.3793C94.2277 20.7867 94.4357 21.5 94.4382 22.7523C94.4586 32.6471 94.4476 42.5416 94.447 52.4379C94.4421 138.806 94.4364 225.174 94.4314 311.542C94.4308 321.18 94.4352 330.817 94.4285 340.453C94.428 341.117 94.3986 341.618 94.323 342.001C94.2481 342.38 94.1356 342.602 93.9988 342.745C93.8648 342.884 93.6595 342.998 93.2996 343.068C92.9322 343.139 92.4399 343.158 91.7712 343.13C87.8652 342.967 83.9832 342.533 80.0515 342.205C77.0101 341.952 73.9713 341.691 70.9285 341.435C64.2721 340.874 57.6092 340.274 50.9421 339.767C48.4341 339.576 45.922 339.436 43.4177 339.292C40.9116 339.148 38.412 338.999 35.9187 338.791C28.2193 338.149 20.5367 337.384 12.6628 336.668C11.7845 333.029 11.5772 329.353 11.5789 325.641C11.5805 321.852 11.8037 317.921 11.7253 314.093C11.5348 304.787 11.6918 295.482 11.6912 286.154C11.689 256.258 11.6825 226.36 11.6794 196.464C11.678 182.662 11.6822 168.859 11.6824 155.057C11.6827 135.353 11.679 115.649 11.6824 95.9457C11.6851 79.8065 11.7036 63.6658 11.6931 47.5258C11.6917 45.2648 11.5639 43.0078 11.3894 40.639L11.3884 40.6283L11.3875 40.6185C11.295 39.8075 11.2975 39.1066 11.3035 38.2054C11.3486 38.0549 11.3932 37.9324 11.4412 37.806C11.4949 37.6644 11.5554 37.5079 11.6111 37.3168L11.6277 37.2601L11.6306 37.2006C11.7019 35.6606 11.7198 34.5268 11.8093 33.6342C11.8986 32.744 12.0518 32.2022 12.3279 31.8236C12.5944 31.4582 13.0279 31.174 13.8474 30.931C14.6742 30.6859 15.8246 30.5018 17.4568 30.2894C25.1666 29.2861 32.8607 28.1644 40.5496 27.0443C42.777 26.7198 44.9987 26.3599 47.2156 26.0004C49.4338 25.6406 51.6478 25.2821 53.866 24.9594C59.3344 24.1638 64.7835 23.4777 70.2664 22.7006C73.0016 22.3129 75.7346 21.909 78.4656 21.5052C81.1971 21.1014 83.9271 20.697 86.6589 20.309C88.392 20.0628 90.0953 19.8081 91.7917 19.7826ZM83.0515 166.273C81.0879 166.354 79.1541 166.296 77.1501 166.32C76.478 166.328 75.9067 166.365 75.4343 166.469C74.956 166.575 74.5435 166.758 74.2244 167.082C73.9059 167.406 73.7278 167.824 73.6257 168.308C73.5248 168.787 73.4906 169.368 73.4871 170.055C73.4587 175.587 73.4602 181.121 73.446 187.087V187.088C73.447 192.259 73.4732 197.422 73.4324 202.586C73.4267 203.306 73.5218 204.008 73.9089 204.538C74.3193 205.101 74.9738 205.366 75.8328 205.393C78.349 205.472 80.9444 205.675 83.5076 205.591C83.7621 205.583 84.0123 205.494 84.2273 205.384C84.4477 205.272 84.663 205.122 84.8562 204.955C85.2234 204.639 85.5928 204.19 85.7048 203.732C86.0603 202.275 86.0668 200.726 86.072 199.287C86.108 189.346 86.1003 179.394 86.1287 169.455C86.1313 168.542 85.9776 167.7 85.4626 167.1C84.9285 166.478 84.1084 166.229 83.0515 166.273Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M10.8046 38.1268C10.9183 37.7277 11.0325 37.5152 11.1309 37.1772C11.4116 31.1118 10.8786 30.6414 17.392 29.7938C25.0976 28.791 32.7881 27.67 40.4777 26.5499C44.9234 25.9022 49.3482 25.1109 53.7941 24.4641C59.2554 23.6696 64.732 22.9797 70.1964 22.2052C75.6636 21.4304 81.1215 20.5909 86.5884 19.8143C88.3121 19.5694 90.0497 19.3086 91.7844 19.2825C94.1145 19.2476 94.9332 20.1945 94.9384 22.751C94.9588 32.6466 94.9472 42.5422 94.9466 52.4379C94.9417 138.806 94.9366 225.174 94.9316 311.542C94.931 321.179 94.9352 330.816 94.9285 340.453C94.9266 343.137 94.4727 343.743 91.7503 343.63C87.8307 343.467 83.9226 343.03 80.01 342.704C76.9686 342.451 73.928 342.189 70.8868 341.933C64.2265 341.372 57.569 340.772 50.9045 340.265C45.8996 339.884 40.8784 339.707 35.8771 339.29C28.0599 338.637 20.2534 337.859 12.2616 337.134C10.3321 329.514 11.3822 321.781 11.225 314.103C11.0343 304.79 11.1923 295.47 11.1916 286.153C11.1895 256.257 11.183 226.361 11.1799 196.465C11.1785 182.662 11.1817 168.86 11.1819 155.057C11.1822 135.353 11.179 115.65 11.1824 95.9457C11.1851 79.8058 11.2033 63.6659 11.1929 47.526C11.1914 45.2829 11.0649 43.0398 10.8907 40.6755C10.7918 39.8073 10.7984 39.0603 10.8046 38.1268ZM73.9462 187.088C73.9471 192.255 73.9731 197.423 73.9323 202.59C73.9213 203.976 74.3184 204.845 75.8488 204.893C78.3974 204.973 80.9488 205.174 83.4913 205.091C84.108 205.071 85.0682 204.233 85.2194 203.613C85.5585 202.223 85.5672 200.734 85.5725 199.286C85.6084 189.342 85.6003 179.398 85.6286 169.454C85.6337 167.701 85.0224 166.692 83.0725 166.773C81.1031 166.854 79.1283 166.796 77.1561 166.82C74.4998 166.852 74.0014 167.344 73.9875 170.058C73.9591 175.589 73.9603 181.12 73.9462 187.088Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M186.004 144.468C186.004 144.468 149.182 144.07 139.629 143.572C136.245 143.396 135.549 147.653 135.549 147.653C135.549 148.847 135.628 175.418 135.549 177.011C135.469 178.603 137.373 180.46 138.335 181.19C153.462 180.958 183.914 181.19 185.307 181.19C186.698 181.19 188.625 179.034 189.487 177.608C189.255 168.286 189.487 150.041 189.487 149.145C189.487 148.461 188.393 144.468 186.004 144.468Z\" fill=\"white\"/>\r\n <path d=\"M374.345 245.945C375.012 255.951 375.552 265.967 376.385 275.959C377.152 285.153 378.234 294.32 379.167 303.806C379.238 304.344 379.32 304.574 379.401 304.805C379.464 305.543 379.526 306.282 379.437 307.307C379.36 308.5 379.316 309.435 379.528 310.309C381.051 316.587 382.106 322.916 381.858 329.408C381.855 329.504 382.049 329.608 382.15 329.708C382.267 330.611 382.384 331.513 382.393 332.703C382.453 333.791 382.62 334.593 382.787 335.394C382.848 335.854 382.909 336.313 382.855 337.043C382.879 337.839 383.018 338.366 383.157 338.893C383.241 339.776 383.324 340.659 383.303 341.818C383.327 342.355 383.455 342.616 383.62 343.043C383.749 344.517 383.84 345.826 383.788 347.235C383.578 349.18 383.485 351.024 383.461 352.869C383.453 353.478 383.712 354.093 383.692 354.7C383.661 355.645 383.495 356.587 383.231 357.579C382.288 357.921 381.5 358.214 380.524 358.513C377.815 358.474 375.294 358.393 372.774 358.396C369.453 358.401 366.132 358.472 362.698 358.523C362.51 358.527 362.435 358.523 362.286 358.398C361.594 357.726 360.975 357.174 360.339 356.455C360.256 355.729 360.191 355.17 360.157 354.421C359.861 352.607 359.534 350.983 359.198 349.203C359.139 348.742 359.089 348.437 359.097 347.973C359.01 347.315 358.863 346.814 358.711 346.156C358.662 345.69 358.617 345.381 358.639 344.917C358.568 344.257 358.43 343.753 358.29 343.094C358.223 342.639 358.157 342.339 358.147 341.905C358.003 341.456 357.802 341.142 357.63 340.643C357.278 337.525 356.884 334.592 356.525 331.656C356.377 330.44 355.67 330.082 354.529 330.02C354.484 326.25 354.486 322.689 354.445 319.128C354.434 318.119 354.438 317.076 354.197 316.107C351.673 306.002 349.052 295.921 346.557 285.81C343.833 274.777 341.201 263.722 338.553 252.672C336.885 245.709 335.222 238.744 333.642 231.762C333.252 230.038 333.192 228.24 332.939 226.135C333.617 226.032 334.505 225.789 335.396 225.781C340.429 225.735 345.463 225.713 350.496 225.759C352.057 225.773 352.853 225.256 352.702 223.616C352.648 223.039 352.679 222.454 352.789 221.837C352.988 221.788 353.069 221.776 353.231 221.874C353.699 221.917 354.086 221.85 354.627 221.789C354.982 221.831 355.184 221.866 355.312 222.033C354.171 224.995 354.387 225.321 357.38 225.332C359.926 225.341 362.473 225.334 365.021 225.511C364.586 227.345 364.282 228.987 365.363 230.49C364.284 231.211 362.805 231.766 362.598 232.625C362.119 234.608 361.774 236.857 362.249 238.784C363.128 242.358 364.88 245.618 367.999 247.907C368.71 248.428 369.389 248.994 370.082 249.539C370.547 248.753 371.11 248.006 371.452 247.17C371.861 246.17 371.971 245.043 372.426 244.071C372.683 243.522 373.372 243.174 373.954 242.904C374.082 243.704 374.122 244.336 374.076 245.033C374.108 245.381 374.226 245.663 374.345 245.945Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M382.835 335.221C382.62 334.591 382.453 333.79 382.392 332.872C382.626 333.521 382.755 334.285 382.835 335.221Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.218 338.742C383.018 338.365 382.879 337.838 382.843 337.216C383.057 337.612 383.168 338.102 383.218 338.742Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.868 342.709C383.926 342.831 383.758 342.881 383.67 342.878C383.455 342.614 383.327 342.353 383.294 342.008C383.529 342.144 383.67 342.365 383.868 342.709Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M386.55 387.009C386.753 386.948 387.036 386.989 387.342 387.145C387.12 387.21 386.875 387.161 386.55 387.009Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M374.077 245.032C374.239 244.963 374.315 244.96 374.506 244.96C374.584 245.189 374.548 245.414 374.428 245.792C374.227 245.662 374.109 245.38 374.077 245.032Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M379.5 304.747C379.32 304.572 379.239 304.341 379.214 303.993C379.38 304.147 379.489 304.419 379.5 304.747Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M365.364 230.488C368.266 233.048 370.99 235.637 373.809 238.355C373.925 239.792 373.946 241.1 373.917 242.571C373.373 243.173 372.683 243.521 372.426 244.069C371.971 245.041 371.861 246.169 371.452 247.168C371.11 248.004 370.548 248.751 370.083 249.538C369.389 248.992 368.711 248.427 368 247.905C364.88 245.616 363.128 242.356 362.249 238.783C361.775 236.855 362.119 234.607 362.598 232.624C362.806 231.764 364.284 231.21 365.364 230.488Z\" fill=\"#6E4446\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M360.157 354.422C359.753 352.947 359.38 351.282 359.107 349.488C359.534 350.983 359.861 352.608 360.157 354.422Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M362.287 358.395C361.66 357.991 360.96 357.467 360.308 356.781C360.975 357.172 361.594 357.723 362.287 358.395Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M358.64 344.914C358.425 344.531 358.277 343.993 358.21 343.351C358.43 343.751 358.568 344.255 358.64 344.914Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M359.097 347.972C358.877 347.594 358.716 347.059 358.635 346.418C358.863 346.812 359.01 347.313 359.097 347.972Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M353.231 221.874C353.532 221.706 353.915 221.649 354.385 221.687C354.086 221.849 353.699 221.917 353.231 221.874Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M357.576 341.616C357.538 341.415 357.55 341.298 357.582 341.003C357.802 341.14 358.003 341.455 358.147 341.904C357.936 341.925 357.781 341.812 357.576 341.616Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M334.393 121.861C333.061 121.528 331.702 121.273 330.41 120.825C329.81 120.617 329.341 120.034 328.812 119.621C329.269 119.144 329.724 118.259 330.183 118.257C332.606 118.247 333.279 116.553 333.921 114.765C335.464 110.461 338.079 107.021 342.144 104.564C342.568 104.308 342.915 104.168 343.56 103.965C345.212 103.492 346.567 103.081 347.921 102.67C349.771 102.675 351.621 102.679 353.731 102.817C354.443 103.109 354.896 103.268 355.349 103.428C356.206 103.933 357.063 104.438 357.806 105.066C354.434 105.12 350.988 104.34 347.958 105.134C342.154 106.654 338.586 110.939 336.968 116.715C336.253 119.267 336.402 119.628 339.01 120.086C346.807 121.453 354.619 122.739 362.443 123.949C363.539 124.118 364.729 123.682 366.044 123.533C366.66 123.585 367.107 123.629 367.554 123.674C368.315 126.119 368.012 126.535 365.449 126.546C364.739 126.549 364.029 126.539 363.029 126.399C362.197 126.074 361.668 125.796 361.11 125.712C354.657 124.738 348.199 123.794 341.602 122.75C339.106 122.392 336.75 122.127 334.393 121.861Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M368.637 370.073C369.155 369.831 369.789 369.678 370.591 369.581C370.09 369.811 369.421 369.986 368.637 370.073Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M365.095 370.461C365.372 370.273 365.741 370.178 366.211 370.158C365.937 370.34 365.562 370.447 365.095 370.461Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M332.159 218.766C332.6 218.765 333.04 218.764 333.644 218.766C333.237 221.467 335.722 220.627 336.914 221.508C333.876 221.707 330.764 221.745 327.654 221.841C326.806 221.868 325.962 222.07 324.943 222.222C324.628 222.177 324.486 222.102 324.404 221.794C326.24 221.359 328.014 221.011 329.791 220.997C331.432 220.984 332.306 220.502 332.159 218.766Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M366.239 222.247C365.547 222.268 364.942 222.149 364.227 221.924C365.011 221.277 365.906 220.737 366.802 220.197C366.925 220.286 367.049 220.375 367.172 220.464C366.89 221.012 366.608 221.56 366.239 222.247Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M386.463 170.42C386.68 170.651 386.897 171.028 387.008 171.496C386.756 171.247 386.61 170.907 386.463 170.42Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M323.784 253.025C323.843 251.889 323.903 250.957 324.078 249.9C324.409 253.965 324.641 258.155 324.84 262.346C325.028 266.329 325.182 270.314 325.29 274.495C324.9 273.475 324.329 272.268 324.279 271.039C324.038 265.106 323.937 259.166 323.784 253.025Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.758 299.812C325.459 298.007 325.611 295.871 326.231 293.582C326.489 295.513 326.644 297.562 326.758 299.812Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.268 290.645C326.033 288.894 325.84 286.943 325.746 284.867C325.999 286.643 326.154 288.544 326.268 290.645Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M325.811 283.227C325.567 281.784 325.37 280.145 325.261 278.36C325.519 279.82 325.688 281.425 325.811 283.227Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M327.126 305.077C326.916 304.173 326.755 303.088 326.701 301.877C326.93 302.799 327.052 303.848 327.126 305.077Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M324.288 248.332C324.131 247.794 324.057 247.14 324.092 246.381C324.257 246.922 324.314 247.569 324.288 248.332Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M330.087 336.658C329.796 336.337 329.635 335.993 329.5 335.504C329.757 335.785 329.987 336.209 330.087 336.658Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M324.847 227.057C324.696 226.726 324.677 226.367 324.728 225.841C324.858 226.125 324.919 226.577 324.847 227.057Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M324.476 229.694C324.35 229.342 324.353 228.949 324.47 228.458C324.591 228.79 324.597 229.222 324.476 229.694Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M351.704 357.263C351.689 356.89 351.795 356.484 352.052 356.008C352.078 356.368 351.951 356.799 351.704 357.263Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M341.742 122.844C348.199 123.796 354.657 124.74 361.11 125.714C361.668 125.798 362 126 363 126.379C362.82 127.689 362.378 128.885 362.065 130.232C361.674 131.205 361.318 132.004 360.843 133.052C360.506 133.819 360.286 134.337 360.066 134.854C359.897 135.252 359.774 135.61 359.317 135.74C356.443 136.556 355.011 135.607 354.394 132.613C353.971 131.968 353.596 131.466 353.209 130.788C353.224 130.253 353.166 129.861 353.289 129.538C353.844 128.081 353.457 126.601 352.082 126.379C351.229 126.241 350.062 127.51 349.177 128.304C348.736 128.699 348.711 129.523 348.32 130.012C347.928 130.503 347.155 131.243 346.834 131.123C346.216 130.89 345.692 130.187 345.339 129.562C345.12 129.174 345.234 128.563 345.292 128.063C345.582 125.59 345.22 123.58 342.136 123.339C341.992 123.328 341.873 123.016 341.742 122.844Z\" fill=\"#382857\"/>\r\n <path d=\"M365.875 123.529C364.729 123.684 363.539 124.12 362.443 123.951C354.62 122.741 346.807 121.455 339.01 120.087C336.402 119.63 336.253 119.269 336.968 116.717C338.586 110.941 342.154 106.656 347.958 105.136C350.988 104.342 354.434 105.121 357.892 105.192C359.812 106.657 361.76 107.928 363.202 109.625C365.846 112.738 366.156 116.59 365.879 120.896C365.876 122.034 365.875 122.781 365.875 123.529Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M342.922 144.213C341.481 144.155 340.036 144.145 338.601 144.026C336.29 143.834 334.109 143.372 333.179 140.651C333.041 138.954 332.934 137.366 332.979 135.781C333.018 134.375 333.037 133.16 331.569 132.25C331.107 131.963 330.966 130.549 331.217 129.84C332.137 127.247 333.284 124.734 334.369 122.027C336.75 122.127 339.106 122.393 341.602 122.751C341.873 123.015 341.992 123.327 342.136 123.338C345.22 123.579 345.582 125.589 345.292 128.062C345.234 128.562 345.12 129.173 345.339 129.56C345.692 130.186 346.216 130.889 346.834 131.121C347.155 131.242 347.928 130.502 348.32 130.011C348.711 129.522 348.736 128.698 349.177 128.302C350.062 127.508 351.229 126.239 352.082 126.377C353.457 126.6 353.844 128.08 353.289 129.537C353.166 129.86 353.224 130.251 353.184 130.954C353.018 132.059 352.866 132.823 352.715 133.585C352.716 133.584 352.718 133.582 352.563 133.604C351.487 135.214 350.566 136.802 349.647 138.389C349.647 138.388 349.648 138.387 349.517 138.455C348.078 139.753 346.792 141.006 345.454 142.201C344.651 142.918 343.768 143.546 342.922 144.213Z\" fill=\"#6E4446\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M321.864 217.996C322.261 218.661 322.563 219.434 322.85 220.372C322.48 219.726 322.124 218.915 321.864 217.996Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M321.953 211.853C322.107 212.284 322.149 212.806 322.074 213.415C321.918 212.983 321.879 212.463 321.953 211.853Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M354.442 132.756C355.011 135.607 356.496 136.561 359.314 135.741C359.848 137.924 360.563 140.59 361 143C355.053 146.773 349.893 152.484 345 157.5C344.498 155.646 344.395 152.763 343.958 150.779C343.806 150.088 343.654 149.397 343.431 148.533C343.36 148.36 343.457 148.348 343.636 148.383C347.571 146.121 349.075 142.523 349.648 138.388C349.648 138.388 349.647 138.39 349.801 138.37C350.875 136.761 351.797 135.172 352.718 133.583C352.718 133.583 352.716 133.585 352.84 133.52C353.456 133.221 353.949 132.989 354.442 132.756Z\" fill=\"#6E4446\"/>\r\n <path d=\"M354.661 132.608C354.216 132.983 353.095 133.628 352.5 133.628C352.527 132.931 353.13 131.43 353.307 130.5C353.707 130.836 354.238 131.963 354.661 132.608Z\" fill=\"#382857\"/>\r\n <path d=\"M350 138C350.482 142.043 347.571 146.121 343.656 148.428C343.305 147.146 343.191 145.466 343 144C343.848 143.158 344.698 142.717 345.5 142C346.838 140.804 348.561 139.297 350 138Z\" fill=\"#382857\"/>\r\n <path d=\"M352.618 133.541C353 133.5 349.618 138.541 349.118 140.041C349.118 138.541 351.542 135.151 352.618 133.541Z\" fill=\"#382857\"/>\r\n <path d=\"M119.423 10.3316C126.735 10.5908 141.577 12.5721 164.607 14.2994C184.511 15.7921 198.643 19.1764 207.6 21.3658C210.217 22.0056 211.565 23.2196 212.239 24.3726C212.566 24.9312 212.417 25.4763 212.025 25.8433H212.974C213.172 26.1753 212.95 27.212 213.472 27.8336C215.561 30.35 218.151 334.742 211.979 340.917C211.782 341.113 211.393 341.31 211.382 341.315C210.951 341.779 209.252 342.469 205.51 343.106C208.892 339.724 209.195 338.432 209.192 338.628C210.909 237.541 211.867 42.5867 208.839 26.0845L117.719 15.7945C116.708 15.6801 115.909 14.8052 116.211 13.8336C116.736 12.145 117.916 10.9748 118.675 10.5025C118.899 10.363 119.159 10.3223 119.423 10.3316Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M119.425 10.332C126.738 10.5931 141.579 12.5853 164.607 14.3223C184.511 15.8236 198.643 19.2268 207.6 21.4287C209.817 21.9738 211.121 22.9344 211.879 23.9199H212.974C213.173 24.2536 212.949 25.2966 213.472 25.9219C215.562 28.431 218.152 334.589 211.979 340.798C211.782 340.995 211.394 341.192 211.382 341.198C210.951 341.665 209.252 342.359 205.51 343C208.893 339.597 209.196 338.299 209.192 338.496C210.856 239.968 211.805 52.7698 209.106 26.2041L117.718 15.8252C116.707 15.7104 115.91 14.8365 116.208 13.8643C116.731 12.1615 117.913 10.9805 118.673 10.5039C118.898 10.3629 119.16 10.3226 119.425 10.332Z\" fill=\"black\" fill-opacity=\"0.2\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 222.738C122.466 222.738 122.961 223.233 122.961 223.844V231.679C122.961 232.27 122.718 232.922 122.339 233.38C121.959 233.837 121.385 234.155 120.749 233.906C120.644 233.865 120.555 233.802 120.489 233.716C120.424 233.63 120.394 233.536 120.38 233.451C120.367 233.368 120.368 233.284 120.371 233.212C120.372 233.175 120.374 233.137 120.377 233.101C120.379 233.065 120.381 233.031 120.382 232.997L120.751 223.8C120.774 223.207 121.262 222.738 121.855 222.738Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 101.524C122.466 101.524 122.961 102.019 122.961 102.63V110.465C122.961 111.056 122.718 111.708 122.339 112.166C121.959 112.623 121.385 112.941 120.749 112.692C120.644 112.651 120.555 112.589 120.489 112.502C120.424 112.416 120.394 112.323 120.38 112.237C120.367 112.154 120.368 112.07 120.371 111.998C120.372 111.961 120.374 111.923 120.377 111.888C120.379 111.852 120.381 111.817 120.382 111.783L120.751 102.586C120.774 101.993 121.262 101.524 121.855 101.524Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 82.6164C122.466 82.6164 122.961 83.1113 122.961 83.7219V91.5568C122.961 92.1484 122.718 92.8004 122.339 93.258C121.959 93.7152 121.385 94.0335 120.749 93.7844C120.644 93.7432 120.555 93.6807 120.489 93.5939C120.424 93.5084 120.394 93.4147 120.38 93.3293C120.367 93.2462 120.368 93.1625 120.371 93.09C120.372 93.0531 120.374 93.0149 120.377 92.9797C120.379 92.9437 120.381 92.9094 120.382 92.8752L120.751 83.6779C120.774 83.0851 121.262 82.6164 121.855 82.6164Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 59.9263C122.466 59.9263 122.961 60.4213 122.961 61.0318V68.8668C122.961 69.4584 122.718 70.1103 122.339 70.5679C121.959 71.0251 121.385 71.3435 120.749 71.0943C120.644 71.0531 120.555 70.9907 120.489 70.9039C120.424 70.8184 120.394 70.7246 120.38 70.6392C120.367 70.5562 120.368 70.4724 120.371 70.4C120.372 70.363 120.374 70.3248 120.377 70.2896C120.379 70.2536 120.381 70.2194 120.382 70.1851L120.751 60.9879C120.774 60.395 121.262 59.9264 121.855 59.9263Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 35.6439C122.466 35.6439 122.961 36.1389 122.961 36.7494V44.5844C122.961 45.176 122.718 45.8279 122.339 46.2855C121.959 46.7427 121.385 47.0611 120.749 46.8119C120.644 46.7707 120.555 46.7082 120.489 46.6215C120.424 46.536 120.394 46.4422 120.38 46.3568C120.367 46.2738 120.368 46.19 120.371 46.1176C120.372 46.0806 120.374 46.0424 120.377 46.0072C120.379 45.9712 120.381 45.937 120.382 45.9027L120.751 36.7054C120.774 36.1126 121.262 35.644 121.855 35.6439Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 247.817C122.466 247.817 122.961 248.312 122.961 248.922V256.757C122.961 257.349 122.718 258.001 122.339 258.459C121.959 258.916 121.385 259.234 120.749 258.985C120.644 258.944 120.555 258.881 120.489 258.794C120.424 258.709 120.394 258.615 120.38 258.53C120.367 258.447 120.368 258.363 120.371 258.291C120.372 258.254 120.374 258.215 120.377 258.18C120.379 258.144 120.381 258.11 120.382 258.076L120.751 248.878C120.774 248.286 121.262 247.817 121.855 247.817Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 272.893C122.466 272.893 122.961 273.388 122.961 273.998V281.833C122.961 282.425 122.718 283.077 122.339 283.534C121.959 283.991 121.385 284.31 120.749 284.061C120.644 284.02 120.555 283.957 120.489 283.87C120.424 283.785 120.394 283.691 120.38 283.606C120.367 283.523 120.368 283.439 120.371 283.366C120.372 283.329 120.374 283.291 120.377 283.256C120.379 283.22 120.381 283.186 120.382 283.151L120.751 273.954C120.774 273.361 121.262 272.893 121.855 272.893Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 297.973C122.466 297.973 122.961 298.468 122.961 299.079V306.913C122.961 307.505 122.718 308.157 122.339 308.615C121.959 309.072 121.385 309.39 120.749 309.141C120.644 309.1 120.555 309.037 120.489 308.951C120.424 308.865 120.394 308.771 120.38 308.686C120.367 308.603 120.368 308.519 120.371 308.447C120.372 308.41 120.374 308.372 120.377 308.336C120.379 308.3 120.381 308.266 120.382 308.232L120.751 299.035C120.774 298.442 121.262 297.973 121.855 297.973Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 323.052C122.466 323.052 122.961 323.547 122.961 324.157V331.992C122.961 332.584 122.718 333.236 122.339 333.693C121.959 334.151 121.385 334.469 120.749 334.22C120.644 334.179 120.555 334.116 120.489 334.029C120.424 333.944 120.394 333.85 120.38 333.765C120.367 333.682 120.368 333.598 120.371 333.526C120.372 333.489 120.374 333.45 120.377 333.415C120.379 333.379 120.381 333.345 120.382 333.311L120.751 324.113C120.774 323.521 121.262 323.052 121.855 323.052Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M195.122 38.87L186.048 38.6161C185.613 38.6039 185.251 38.9463 185.239 39.3807L185.195 40.954C185.177 41.6057 185.69 42.1488 186.342 42.167L196.862 42.4613C197.432 42.4773 197.778 42.6209 198.089 42.1435C199.118 40.5657 197.005 38.9227 195.122 38.87Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 62.2446L186.048 61.9906C185.613 61.9785 185.251 62.3208 185.239 62.7553L185.195 64.3286C185.177 64.9802 185.69 65.5233 186.342 65.5415L196.862 65.8359C197.432 65.8518 197.778 65.9954 198.089 65.5181C199.118 63.9403 197.005 62.2972 195.122 62.2446Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 85.6176L186.048 85.3637C185.613 85.3515 185.251 85.6938 185.239 86.1283L185.195 87.7016C185.177 88.3532 185.69 88.8963 186.342 88.9145L196.862 89.2089C197.432 89.2248 197.778 89.3684 198.089 88.8911C199.118 87.3133 197.005 85.6702 195.122 85.6176Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 106.429L186.048 106.175C185.613 106.163 185.251 106.505 185.239 106.94L185.195 108.513C185.177 109.164 185.69 109.708 186.342 109.726L196.862 110.02C197.432 110.036 197.778 110.18 198.089 109.702C199.118 108.124 197.005 106.481 195.122 106.429Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 222.092L186.708 222.28C186.323 222.289 186.018 222.609 186.027 222.994L186.06 224.388C186.073 224.966 186.552 225.423 187.13 225.409L196.454 225.192C196.959 225.18 197.272 225.291 197.526 224.855C198.364 223.411 196.42 222.053 194.751 222.092Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 246.546L186.708 246.734C186.323 246.743 186.018 247.063 186.027 247.448L186.06 248.842C186.073 249.42 186.552 249.877 187.13 249.864L196.454 249.646C196.959 249.634 197.272 249.745 197.526 249.309C198.364 247.866 196.42 246.507 194.751 246.546Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.089 271.009L186.07 271.219C185.639 271.229 185.297 271.588 185.307 272.019L185.343 273.583C185.359 274.23 185.896 274.743 186.544 274.728L196.999 274.484C197.565 274.471 197.915 274.596 198.2 274.106C199.14 272.488 196.96 270.965 195.089 271.009Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.376 295.876L185.358 296.087C184.926 296.097 184.584 296.455 184.594 296.887L184.631 298.45C184.646 299.098 185.183 299.611 185.831 299.596L196.286 299.352C196.852 299.338 197.203 299.463 197.487 298.974C198.428 297.355 196.248 295.833 194.376 295.876Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.411 319.8L185.393 320.011C184.961 320.021 184.619 320.379 184.629 320.811L184.666 322.375C184.681 323.022 185.218 323.535 185.866 323.52L196.321 323.276C196.887 323.263 197.238 323.387 197.522 322.898C198.463 321.28 196.283 319.757 194.411 319.8Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.169 45.5248L186.094 45.2709C185.659 45.2588 185.297 45.6011 185.285 46.0355L185.241 47.6088C185.223 48.2605 185.736 48.8036 186.388 48.8218L196.908 49.1162C197.478 49.1321 197.824 49.2757 198.135 48.7983C199.164 47.2205 197.052 45.5775 195.169 45.5248Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 68.8994L186.094 68.6455C185.659 68.6333 185.297 68.9756 185.285 69.4101L185.241 70.9834C185.223 71.635 185.736 72.1781 186.388 72.1963L196.908 72.4907C197.478 72.5066 197.824 72.6502 198.135 72.1729C199.164 70.5951 197.052 68.952 195.169 68.8994Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 92.2724L186.094 92.0185C185.659 92.0063 185.297 92.3487 185.285 92.7831L185.241 94.3564C185.223 95.0081 185.736 95.5511 186.388 95.5694L196.908 95.8637C197.478 95.8797 197.824 96.0233 198.135 95.5459C199.164 93.9681 197.052 92.3251 195.169 92.2724Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 113.085L186.094 112.831C185.659 112.819 185.297 113.161 185.285 113.596L185.241 115.169C185.223 115.821 185.736 116.364 186.388 116.382L196.908 116.676C197.478 116.692 197.824 116.836 198.135 116.359C199.164 114.781 197.052 113.138 195.169 113.085Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 228.589L186.77 228.662C186.385 228.666 186.075 228.981 186.079 229.366L186.092 230.761C186.097 231.339 186.57 231.803 187.147 231.797L196.474 231.712C196.979 231.707 197.29 231.823 197.55 231.39C198.409 229.959 196.484 228.573 194.815 228.589Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 253.043L186.77 253.116C186.385 253.12 186.075 253.435 186.079 253.82L186.092 255.215C186.097 255.793 186.57 256.257 187.147 256.251L196.474 256.166C196.979 256.162 197.29 256.277 197.55 255.844C198.409 254.413 196.484 253.028 194.815 253.043Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.161 278.295L186.14 278.377C185.708 278.381 185.361 278.735 185.365 279.167L185.38 280.73C185.385 281.378 185.915 281.899 186.563 281.893L197.021 281.797C197.587 281.792 197.936 281.922 198.227 281.436C199.191 279.831 197.032 278.278 195.161 278.295Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.448 303.162L185.427 303.245C184.995 303.249 184.648 303.602 184.652 304.034L184.667 305.598C184.673 306.246 185.203 306.766 185.85 306.76L196.308 306.664C196.874 306.659 197.223 306.789 197.514 306.304C198.478 304.699 196.319 303.145 194.448 303.162Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M132.762 33.3081C129.525 33.3081 128.934 34.5994 129.07 35.5061C129.11 35.7709 129.18 36.0319 129.18 36.2997V45.4493C129.18 47.36 131.236 47.9704 132.265 48.0368C146.297 49.0983 174.878 51.2412 176.948 51.3209C178.541 51.3821 179.49 50.8579 179.948 50.4013C180.168 50.1822 180.232 49.8655 180.232 49.555V40.3684C180.232 40.0451 180.349 39.7301 180.372 39.4077C180.474 37.9904 177.572 37.0214 175.953 36.6917C163.115 35.5638 136.504 33.3081 132.762 33.3081Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.762 57.9873C129.525 57.9873 128.934 59.2786 129.07 60.1853C129.11 60.4501 129.18 60.7111 129.18 60.9788V70.1285C129.18 72.0392 131.236 72.6496 132.265 72.7159C146.297 73.7775 174.878 75.9204 176.948 76C178.541 76.0613 179.49 75.537 179.948 75.0805C180.168 74.8614 180.232 74.5446 180.232 74.2341V65.0476C180.232 64.7243 180.349 64.4093 180.372 64.0869C180.474 62.6696 177.572 61.7006 175.953 61.3709C163.115 60.243 136.504 57.9873 132.762 57.9873Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.792 82.668C129.763 82.668 129.05 83.5907 129.081 84.3165C129.095 84.6363 129.207 84.9488 129.207 85.2688V92.5929C129.207 94.1548 131.265 94.6538 132.294 94.708C146.334 95.5758 174.931 97.3275 177.003 97.3926C178.474 97.4389 179.396 97.0772 179.89 96.7277C180.191 96.5149 180.288 96.1401 180.288 95.7716V88.6233C180.288 88.2406 180.487 87.8572 180.422 87.4801C180.238 86.4163 177.544 85.6897 176.007 85.4339C163.162 84.5119 136.536 82.668 132.792 82.668Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.646 103.221C129.618 103.283 128.924 104.22 128.97 104.945C128.99 105.265 129.109 105.575 129.115 105.895L129.265 113.217C129.297 114.779 131.364 115.236 132.394 115.269C146.449 115.85 175.076 117.018 177.148 117.041C178.62 117.057 179.535 116.677 180.021 116.317C180.318 116.098 180.408 115.721 180.4 115.353L180.254 108.206C180.247 107.824 180.437 107.436 180.364 107.061C180.159 106.001 177.451 105.329 175.909 105.105C163.047 104.445 136.389 103.145 132.646 103.221Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.408 223.379C129.385 223.552 128.725 224.513 128.798 225.236C128.829 225.555 128.959 225.86 128.978 226.18L129.394 233.492C129.483 235.052 131.566 235.433 132.597 235.428C146.663 235.496 175.314 235.617 177.385 235.564C178.857 235.527 179.757 235.113 180.23 234.736C180.518 234.506 180.595 234.127 180.574 233.759L180.167 226.622C180.145 226.24 180.321 225.846 180.235 225.473C179.991 224.421 177.26 223.849 175.711 223.681C162.834 223.492 136.146 223.166 132.408 223.379Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 247.139C129.022 247.437 128.516 248.683 128.709 249.529C128.772 249.802 128.875 250.067 128.901 250.346L129.709 258.97C129.879 260.78 131.982 261.165 133.012 261.132C147.085 260.827 175.748 260.187 177.817 260.069C179.38 259.98 180.274 259.415 180.7 258.945C180.918 258.705 180.958 258.368 180.928 258.045L180.121 249.438C180.09 249.102 180.192 248.761 180.169 248.424C180.081 247.103 177.151 246.469 175.527 246.31C162.638 246.441 135.928 246.79 132.201 247.139Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 271.821C129.022 272.119 128.516 273.365 128.709 274.211C128.772 274.484 128.875 274.749 128.901 275.028L129.709 283.652C129.879 285.462 131.982 285.848 133.012 285.814C147.085 285.509 175.748 284.869 177.817 284.751C179.38 284.662 180.274 284.097 180.7 283.627C180.918 283.387 180.958 283.051 180.928 282.728L180.121 274.12C180.09 273.784 180.192 273.443 180.169 273.106C180.081 271.785 177.151 271.151 175.527 270.992C162.638 271.123 135.928 271.472 132.201 271.821Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 296.499C129.022 296.797 128.516 298.043 128.709 298.889C128.772 299.162 128.875 299.427 128.901 299.706L129.709 308.33C129.879 310.139 131.982 310.525 133.012 310.492C147.085 310.187 175.748 309.547 177.817 309.429C179.38 309.34 180.274 308.775 180.7 308.305C180.918 308.065 180.958 307.728 180.928 307.405L180.121 298.798C180.09 298.462 180.192 298.121 180.169 297.784C180.081 296.463 177.151 295.829 175.527 295.669C162.638 295.8 135.928 296.15 132.201 296.499Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.179 322.772C129.171 323.054 128.542 324.029 128.636 324.744C128.678 325.063 128.821 325.365 128.851 325.686L129.53 332.925C129.675 334.47 131.77 334.771 132.799 334.729C146.858 334.277 175.494 333.341 177.562 333.212C179.027 333.12 179.911 332.679 180.371 332.288C180.653 332.048 180.717 331.664 180.682 331.295L180.021 324.237C179.985 323.854 180.149 323.451 180.045 323.081C179.754 322.05 177.012 321.584 175.461 321.475C162.587 321.762 135.906 322.423 132.179 322.772Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M238.273 105.994C240.501 104.561 242.73 103.128 245.299 101.695C248.631 101.75 250.401 103.333 251.417 106.054C251.913 107.38 252.521 108.761 253.436 109.807C254.321 110.82 255.665 111.435 256.792 112.384C257.351 113.159 257.813 114.041 258.521 114.335C260.231 115.043 262.055 115.477 263.786 116.193C262.917 118.985 262.071 121.598 261.298 124.232C261.17 124.668 261.176 125.46 261.435 125.641C263.422 127.029 263.196 129.103 263.339 131.1C263.577 134.406 265.13 136.144 267.818 136.216C271.646 136.319 271.646 136.319 272.548 139.97C272.164 140.834 271.614 141.535 271.544 142.281C271.325 144.628 269.773 145.637 267.909 146.672C265.079 148.244 262.417 150.117 259.564 151.92C259.094 152.243 258.745 152.509 258.266 152.8C257.943 153.092 257.751 153.358 257.564 153.64C257.568 153.656 257.535 153.655 257.365 153.662C253.741 154.532 252.868 153.954 252.28 150.355C252.106 149.289 252.018 148.21 251.881 147.138C251.577 144.765 251.492 142.337 250.908 140.034C249.923 136.147 248.655 132.329 247.441 128.502C245.917 123.698 244.518 118.841 242.694 114.151C241.582 111.292 239.77 108.704 238.273 105.994Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M238.12 106.03C239.77 108.705 241.582 111.294 242.694 114.152C244.518 118.843 245.917 123.7 247.441 128.504C248.655 132.33 249.923 136.149 250.908 140.036C251.492 142.338 251.577 144.767 251.881 147.139C252.018 148.211 252.106 149.291 252.28 150.357C252.868 153.955 253.741 154.534 257.322 153.808C255.119 157.519 253.544 161.378 252.622 165.556C251.811 169.234 250.705 172.847 249.551 176.46C247.066 175.692 244.759 174.952 242.332 174.166C241.701 173.775 241.191 173.43 240.858 173.025C242.949 172.357 242.13 170.614 242.386 169.409C242.7 167.931 242.606 166.343 242.516 164.812C242.451 163.707 242.008 162.627 241.903 161.52C241.707 159.455 241.766 157.36 241.474 155.312C241.14 152.967 240.129 150.659 240.131 148.335C240.134 141.622 237.342 135.533 236.137 129.096C235.336 124.812 233.5 120.728 232.251 116.517C231.152 112.813 231.228 112.791 227.632 112.514C229.11 111.394 230.512 110.152 232.085 109.184C233.97 108.022 236 107.094 238.12 106.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.3\" d=\"M227.482 112.53C231.228 112.788 231.152 112.81 232.251 116.514C233.5 120.725 235.336 124.809 236.137 129.094C237.342 135.53 240.134 141.619 240.131 148.332C240.129 150.656 241.14 152.964 241.474 155.309C241.766 157.357 241.707 159.452 241.903 161.517C242.008 162.624 242.451 163.704 242.516 164.81C242.606 166.34 242.7 167.928 242.386 169.406C242.13 170.611 242.949 172.354 240.715 172.99C237.452 171.232 234.51 169.446 231.607 167.463C232.44 164.827 232.734 162.434 232.256 159.808C231.638 156.417 231.61 152.921 231.279 149.475C230.9 145.527 230.67 141.55 230.007 137.648C229.163 132.674 227.981 127.756 226.877 122.829C226.55 121.366 225.889 119.975 225.568 118.51C225.029 116.058 222.864 117.488 221.624 116.752C221.5 116.679 221.356 116.638 221.266 116.46C221.408 116.097 221.506 115.856 221.605 115.615C222.089 115.34 222.573 115.065 223.338 114.777C223.844 114.529 224.069 114.296 224.293 114.062C225.306 113.558 226.319 113.053 227.482 112.53Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.5\" d=\"M256.807 112.225C255.665 111.435 254.321 110.82 253.436 109.808C252.521 108.762 251.913 107.381 251.417 106.055C250.401 103.334 248.631 101.75 245.461 101.685C246.485 100.705 247.608 99.6078 248.909 98.7923C251.648 97.0763 254.479 95.5079 257.612 93.8596C259.109 94.2596 261.149 94.5069 261.271 95.1278C261.776 97.702 263.573 97.7951 265.282 97.9719C265.887 97.438 266.34 96.8559 266.935 96.5531C268.033 95.9948 269.241 95.6537 270.355 95.1227C271.452 94.5996 271.629 95.1439 271.518 96.1475C266.528 98.6965 263.838 102.93 261.79 107.849C260.834 108.543 259.99 109.157 259.24 109.87C258.771 110.316 258.445 110.91 257.955 111.512C257.506 111.798 257.156 112.012 256.807 112.225Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M271.616 96.0383C271.628 95.1433 271.452 94.5991 270.355 95.1221C269.241 95.6531 268.033 95.9943 266.935 96.5525C266.34 96.8554 265.887 97.4374 265.282 97.9714C263.573 97.7945 261.776 97.7014 261.271 95.1272C261.149 94.5064 259.109 94.259 257.766 93.8367C257.827 93.5005 258 93.0262 258.331 92.8559C261.799 91.07 265.231 89.1895 268.812 87.6597C270.067 87.124 272.12 86.973 273.58 86.869C275.4 86.7393 276.804 87.0832 278.774 86.869C278.949 89.1587 278.971 91.4866 278.827 94.0522C277.343 94.4573 276.279 94.5587 274.874 94.6091C274.403 94.7165 273.767 95.0067 273.275 95.3213C272.649 95.6205 272.133 95.8294 271.616 96.0383Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.2\" d=\"M219.86 117.117C220.24 116.885 220.599 116.786 221.09 116.635C221.356 116.641 221.5 116.681 221.624 116.755C222.864 117.49 225.029 116.06 225.568 118.513C225.889 119.978 226.549 121.368 226.877 122.832C227.981 127.759 229.163 132.677 230.007 137.65C230.67 141.552 230.9 145.529 231.279 149.477C231.61 152.923 231.638 156.419 232.256 159.811C232.734 162.437 232.44 164.83 231.453 167.385C230.436 167.71 229.612 167.916 228.788 168.121C229.243 168.822 229.68 169.537 230.166 170.217C230.323 170.435 230.611 170.56 230.834 170.888C230.39 172.317 230.527 173.246 232.093 173.591C232.452 173.67 232.947 174.288 232.943 174.655C232.926 176.7 232.752 178.744 232.674 180.79C232.6 182.766 232.512 184.745 232.557 186.72C232.58 187.792 232.867 188.857 232.85 189.938C230.738 189.578 228.821 189.145 226.883 188.851C225.007 188.568 223.109 188.429 221.097 188.166C220.611 187.726 220.248 187.347 219.87 186.778C219.723 185.733 219.47 184.877 219.473 184.022C219.563 161.853 219.679 139.683 219.791 117.514C219.807 117.426 219.823 117.338 219.86 117.117Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path d=\"M233.837 215.69C230.867 213.771 227.101 211.854 224.12 209.952C223.165 209.343 221.771 208.204 220.637 207.663C220.465 207.205 220.652 208.532 220.637 207.663C220.79 205.349 220.66 204.228 220.935 202.389C227.899 207.362 234.719 209.718 242.56 212.358C241.198 213.577 239.791 213.717 238.199 213.279C236.756 212.881 235.436 212.896 235.123 214.897C235.072 215.22 234.278 215.418 233.837 215.69C234.56 215.233 233.11 216.139 233.837 215.69Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M258.905 213.087C263.188 210.206 265.372 205.85 266.73 201.164C268.695 194.386 270.242 187.488 272.147 180.459C272.828 179.842 273.33 179.407 273.819 179.173C273.8 180.706 273.792 182.038 273.678 183.493C273.552 184.271 273.533 184.926 273.483 185.781C272.961 191.156 272.851 196.402 271.882 201.487C270.683 207.774 268.775 213.928 267.165 220.138C266.814 221.491 266.424 222.833 265.851 224.25C260.775 224.476 261.102 224.214 260.543 227.665C259.978 230.028 261.122 225.133 260.543 227.665C258.153 226.55 258.905 227.566 255.468 225.774C244.421 222.789 248.847 224.892 245.814 222.49C249.145 222.912 246.611 220.138 249.397 217.614C249.839 215.44 250.289 216.421 251.548 214.356C251.756 214.258 251.844 214.167 251.902 214.047C253.596 213.969 255.29 213.891 257.344 213.849C258.104 213.619 258.505 213.353 258.905 213.087Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.5\" d=\"M251.785 214.03C250.614 216.057 250.009 216.235 249.568 218.409C248.302 220.3 249.011 222.944 245.615 222.389C242.09 220.025 237.23 218.192 233.837 215.688C233.109 216.137 234.515 215.094 233.837 215.688C234.277 215.416 235.072 215.217 235.122 214.895C235.436 212.894 236.755 212.879 238.199 213.276C239.791 213.714 241.197 213.575 242.559 212.355C244.885 212.7 247.11 213.159 249.568 213.807C251.089 213.807 251.089 213.807 251.785 214.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M208.266 180.999C206.409 181.518 204.56 181.839 202.448 182.185C201.868 181.964 201.551 181.717 201.205 181.301C198.833 179.24 200.093 176.676 199.921 174.505C199.613 170.612 200.245 166.665 200.364 162.737C200.435 160.386 200.239 158.029 200.23 155.675C200.199 147.197 200.196 138.719 200.182 130.241C200.806 129.937 201.429 129.633 202.1 129.204C203.067 128.594 203.987 128.11 204.959 127.5C206.119 126.889 207.228 126.401 208.491 125.858C208.527 132.38 208.338 138.958 208.305 145.536C208.245 157.291 208.28 169.046 208.266 180.999Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M230.835 170.888C233.253 172.403 235.715 174.014 238.04 175.802C238.549 176.193 238.759 177.21 238.778 177.947C238.841 180.375 239.949 182.08 242.166 183.313C241.754 186.413 244.373 187.33 246.115 188.983C245.843 191.408 244.626 192.337 242.135 191.733C239.242 191.03 236.283 190.6 233.194 189.988C232.867 188.857 232.581 187.792 232.557 186.72C232.513 184.745 232.6 182.766 232.675 180.79C232.752 178.744 232.926 176.7 232.944 174.655C232.947 174.288 232.452 173.67 232.093 173.591C230.527 173.246 230.391 172.317 230.835 170.888Z\" fill=\"#B8C5FF\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M186.203 138.265C187.014 137.652 187.847 137.065 188.627 136.418C189.262 135.891 189.833 135.292 190.495 134.592C193.788 132.922 197.019 131.386 200.398 129.839C200.56 138.368 200.562 146.907 200.591 155.446C200.599 157.817 200.78 160.191 200.714 162.559C200.605 166.515 200.023 170.49 200.306 174.411C200.465 176.598 199.305 179.18 201.33 181.191C198.939 179.785 196.679 178.273 194.443 176.588C194.852 175.68 195.545 174.954 195.568 174.208C195.672 170.875 195.602 167.536 195.563 164.2C195.512 159.754 195.379 155.309 195.388 150.863C195.392 148.758 195.736 146.655 195.764 144.549C195.795 142.285 193.408 139.142 191.371 138.781C189.673 138.48 187.928 138.428 186.203 138.265Z\" fill=\"#DDD4E1\"/>\r\n <path opacity=\"0.2\" d=\"M220.333 117.101C220.381 145.336 220.625 174.232 220.534 202.435C220.53 203.523 220.854 205.565 220.834 206.866C219.48 206.441 217.342 204.751 216.184 204.01C213.469 202.272 210.79 200.443 208.105 198.39C208.117 182.635 208.085 167.141 208.14 151.647C208.171 142.976 208.029 134.507 208.14 125.837C208.14 125.837 208.467 125.447 208.491 125.357C211.323 123.186 214.115 121.072 216.948 119.046C217.808 118.431 219.253 117.552 220.333 117.101Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M197.515 182.331C196.94 181.924 196.513 181.553 195.939 181.166C195.091 180.679 194.39 180.208 193.465 179.615C191.772 178.426 190.301 177.36 188.798 176.309C188.766 176.322 188.835 176.314 188.773 176.183C187.94 175.413 187.168 174.774 186.354 173.981C186.919 171.828 187.935 173.861 188.822 173.676C190.749 174.738 192.572 175.707 194.394 176.677C196.666 178.232 198.938 179.787 201.369 181.409C201.821 181.731 202.114 181.987 202.498 182.327C202.228 182.789 201.795 183.533 201.517 183.479C200.209 183.229 198.944 182.759 197.515 182.331Z\" fill=\"#462D5C\"/>\r\n <path d=\"M245.624 336.046C245.962 327.813 246.346 319.777 246.684 311.4C246.601 310.873 246.565 310.688 246.663 310.391C247.032 309.078 247.336 307.886 247.489 306.675C248.181 301.227 248.697 295.754 249.53 290.328C250.462 284.267 251.752 278.262 252.733 272.208C254.063 264.004 255.233 255.774 256.502 247.56C257.131 243.486 257.827 239.422 258.507 235.183C259.086 232.651 259.651 230.288 260.411 227.928C262.843 228.075 265.081 228.355 267.317 228.337C270.98 228.306 274.64 228.026 278.304 227.951C282.808 227.86 282.66 228.499 282.756 223.553C283.677 223.526 284.412 223.51 285.137 223.663C284.48 226.914 285.322 227.82 288.398 227.467C290.12 227.27 291.87 227.292 293.58 227.033C294.837 226.842 296.049 226.356 297.523 225.932C298.584 226.113 300.054 226.551 301.529 226.572C303.471 226.599 305.417 226.299 307.451 226.266C307.979 227.996 308.469 229.588 308.846 231.206C310.305 237.477 310.102 243.842 309.802 250.382C309.747 251.164 309.745 251.771 309.682 252.401C309.538 252.525 309.441 252.608 309.143 252.706C308.242 252.699 307.434 252.424 306.828 252.662C303.893 253.81 300.916 254.913 298.144 256.387C295.736 257.668 293.693 259.63 291.282 260.905C289.341 261.932 288.398 263.455 287.828 265.345C285.949 271.571 284.118 277.812 282.286 284.052C281.59 286.424 280.604 288.802 281.993 291.246C280.641 295.2 279.446 299.128 278.144 303.14C278.033 303.478 278.028 303.732 277.966 304.16C277.722 305.8 277.534 307.266 277.228 308.848C276.504 312.627 275.9 316.29 275.247 320.151C274.92 324.956 274.642 329.565 274.288 334.325C274.077 335.647 273.945 336.818 273.773 338.168C273.547 340.053 273.337 341.757 273.178 343.466C272.791 347.608 272.428 351.753 271.988 356.041C271.903 356.827 271.885 357.468 271.822 358.285C271.734 359.064 271.692 359.668 271.552 360.389C271.419 361.016 271.385 361.525 271.307 362.203C271.24 362.834 271.217 363.297 271.106 363.886C270.963 364.516 270.907 365.02 270.807 365.663C270.763 365.996 270.764 366.19 270.676 366.49C270.476 366.947 270.364 367.298 270.266 367.67C270.281 367.691 270.262 367.644 270.126 367.68C269.435 368.021 268.881 368.326 268.139 368.61C266.225 368.289 264.508 367.846 262.769 367.725C260.617 367.576 258.446 367.694 256.278 367.518C256.298 365.112 254.81 365.467 253.396 365.65C250.297 366.049 247.239 366.167 244.519 364.218C244.63 360.843 244.741 357.468 244.952 353.79C245.022 353.103 244.991 352.719 244.96 352.336C245.081 349.722 245.201 347.108 245.402 344.193C245.443 343.648 245.405 343.404 245.366 343.161C245.467 340.855 245.568 338.549 245.624 336.046Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M244.856 352.393C244.991 352.719 245.022 353.102 244.941 353.587C244.803 353.276 244.778 352.864 244.856 352.393Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M245.278 343.21C245.404 343.404 245.443 343.648 245.393 343.987C245.267 343.809 245.228 343.534 245.278 343.21Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M290.412 98.4989C288.412 98.2111 286.383 97.4599 284.337 97.4119C278.439 97.2734 273.438 101.042 271.562 106.692C270.776 109.062 269.977 111.427 269.02 114.284C273.356 115.211 277.21 116.242 281.132 116.816C285.138 117.402 289.208 117.589 293.257 117.834C294.139 117.888 295.051 117.449 296.059 117.107C296.592 117.408 297.32 117.82 297.348 118.275C297.374 118.69 296.708 119.418 296.228 119.539C295.053 119.835 293.81 119.86 292.202 120.018C290.156 119.965 288.483 120.015 286.851 119.784C281.099 118.971 275.36 118.061 269.499 117.114C267.533 116.7 265.683 116.361 263.834 116.022C262.056 115.477 260.231 115.044 258.522 114.336C257.814 114.042 257.351 113.16 256.792 112.385C257.157 112.012 257.507 111.798 258.133 111.525C260.886 111.493 261.937 110.153 261.942 107.811C263.838 102.93 266.528 98.6968 271.519 96.1477C272.133 95.8302 272.65 95.6213 273.422 95.3326C274.021 95.0994 274.365 94.9461 274.709 94.7927C276.027 94.6254 277.344 94.4581 278.835 94.2534C283.202 94.4925 287.247 95.1754 290.412 98.4989Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M269.616 117.189C275.36 118.061 281.098 118.971 286.85 119.784C288.483 120.015 290.156 119.965 292.013 120.046C291.283 122.546 290.349 125.042 289.42 127.54C289.198 128.138 288.99 128.74 288.813 129.499C288.801 129.976 288.75 130.294 288.515 130.8C284.557 131.856 281.291 130.888 278.375 128.396C277.579 127.715 276.549 127.305 275.778 126.859C276.105 125.13 276.673 123.062 276.792 120.969C276.831 120.276 275.804 119.066 275.097 118.926C274.477 118.802 273.466 119.72 272.915 120.407C272.304 121.169 272.018 122.191 271.59 123.1C271.314 123.061 271.037 123.021 270.761 122.982C270.379 121.051 269.998 119.12 269.616 117.189Z\" fill=\"#442857\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"white\" fill-opacity=\"0.8\"/>\r\n <path d=\"M269.499 117.113C269.998 119.119 270.379 121.05 270.761 122.981C271.037 123.021 271.313 123.06 271.59 123.1C272.018 122.191 272.304 121.169 272.915 120.406C273.466 119.72 274.477 118.802 275.097 118.925C275.804 119.066 276.831 120.276 276.792 120.969C276.673 123.062 276.105 125.13 275.778 126.858C276.549 127.305 277.578 127.714 278.375 128.395C281.291 130.888 284.557 131.855 288.504 130.961C288.822 132.259 288.967 133.583 288.96 135.101C288.624 135.319 288.439 135.342 288.155 135.361C288.056 135.357 287.861 135.397 287.705 135.389C287.344 135.408 287.138 135.434 286.793 135.428C286.319 135.521 285.984 135.645 285.498 135.761C285.146 135.769 284.945 135.786 284.584 135.79C283.905 136.045 283.386 136.314 282.697 136.568C281.958 136.592 281.39 136.63 280.677 136.675C280.041 136.959 279.549 137.235 278.929 137.516C278.595 137.662 278.39 137.802 278.018 137.947C276.101 138.578 274.352 139.203 272.603 139.828C271.646 136.319 271.646 136.319 267.818 136.217C265.13 136.145 263.577 134.407 263.34 131.1C263.196 129.104 263.422 127.03 261.435 125.641C261.176 125.46 261.17 124.668 261.298 124.233C262.071 121.598 262.918 118.985 263.787 116.193C265.683 116.36 267.532 116.7 269.499 117.113Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.548 139.971C274.352 139.203 276.101 138.578 278.012 138.115C278.005 138.57 277.866 139.097 277.663 139.123C275.536 139.392 275.266 140.613 275.83 142.375C275.899 142.591 275.652 142.909 275.551 143.179C275.55 143.255 275.549 143.332 275.621 143.625C275.315 144.638 275.139 145.873 274.524 146.153C271.996 147.302 269.252 147.994 266.763 149.212C265.802 149.683 264.957 151.037 264.746 152.121C264.632 152.703 265.975 153.567 266.66 154.304C266.857 154.22 267.053 154.136 267.25 154.052C267.102 154.649 266.954 155.246 266.806 155.843C265.674 154.949 264.614 153.934 263.386 153.199C262.378 152.596 261.168 152.326 259.866 151.885C262.417 150.118 265.079 148.245 267.909 146.673C269.773 145.638 271.325 144.629 271.545 142.282C271.614 141.536 272.164 140.835 272.548 139.971Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M249.551 176.46C248.633 180.593 247.538 184.697 246.21 188.861C244.373 187.33 241.754 186.413 242.437 183.367C243.608 182.366 244.633 181.401 245.789 180.313C245.23 179.788 244.876 179.324 244.41 179.046C243.172 178.306 241.825 177.734 240.652 176.91C240.207 176.598 239.856 175.725 239.962 175.21C240.039 174.836 240.925 174.598 241.478 174.365C241.772 174.241 242.126 174.259 242.453 174.212C244.76 174.952 247.066 175.692 249.551 176.46Z\" fill=\"#CD938D\"/>\r\n <path d=\"M242.333 174.166C242.126 174.258 241.772 174.241 241.478 174.365C240.925 174.597 240.039 174.836 239.962 175.209C239.856 175.725 240.207 176.598 240.652 176.91C241.825 177.733 243.173 178.305 244.41 179.045C244.876 179.324 245.23 179.788 245.789 180.312C244.633 181.4 243.608 182.365 242.311 183.277C239.949 182.08 238.841 180.375 238.779 177.947C238.76 177.21 238.549 176.193 238.04 175.802C235.715 174.014 233.253 172.403 230.839 170.728C230.612 170.56 230.323 170.435 230.167 170.217C229.68 169.537 229.244 168.822 228.788 168.121C229.612 167.915 230.437 167.71 231.415 167.583C234.51 169.449 237.452 171.234 240.537 173.052C241.191 173.43 241.702 173.775 242.333 174.166Z\" fill=\"#462D5C\"/>\r\n <path opacity=\"0.5\" d=\"M261.79 107.849C261.937 110.154 260.886 111.494 258.232 111.452C258.445 110.911 258.771 110.317 259.24 109.871C259.99 109.158 260.834 108.544 261.79 107.849Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M270.126 367.681C269.774 368.604 269.286 369.563 268.687 370.629C268.484 370.14 268.392 369.543 268.314 368.789C268.881 368.327 269.436 368.022 270.126 367.681Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M285.199 223.1C285.199 223.1 285.202 223.301 285.175 223.398C284.412 223.511 283.676 223.527 282.756 223.554C282.571 223.565 282.564 223.4 282.686 223.228C283.605 223.071 284.402 223.085 285.199 223.1Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M271.988 356.041C272.078 356.592 272.1 357.288 271.995 358.046C271.885 357.467 271.903 356.826 271.988 356.041Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.106 363.887C271.17 364.322 271.146 364.884 270.987 365.485C270.907 365.02 270.962 364.517 271.106 363.887Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.551 360.391C271.638 360.831 271.625 361.39 271.482 361.992C271.385 361.527 271.419 361.018 271.551 360.391Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M270.676 366.49C270.688 366.804 270.612 367.225 270.394 367.647C270.364 367.298 270.476 366.947 270.676 366.49Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M278.144 303.141C278.239 303.341 278.228 303.625 278.119 303.948C278.027 303.733 278.033 303.478 278.144 303.141Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M296.656 378.556C297.801 378.443 299.021 378.466 300.38 378.589C299.256 378.69 297.993 378.691 296.656 378.556Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M290.511 378.069C291.664 377.97 292.883 378.015 294.244 378.157C293.115 378.24 291.846 378.227 290.511 378.069Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M285.239 377.568C285.981 377.467 286.772 377.511 287.695 377.658C286.98 377.745 286.134 377.728 285.239 377.568Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M306.375 378.769C306.89 378.543 307.513 378.418 308.298 378.326C307.801 378.53 307.141 378.7 306.375 378.769Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M283.027 377.259C283.222 377.163 283.456 377.163 283.787 377.239C283.611 377.328 283.338 377.342 283.027 377.259Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M311.858 376.416C311.795 376.211 311.828 375.975 311.961 375.661C312.025 375.85 311.991 376.118 311.858 376.416Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.415 378.329C309.546 378.116 309.752 377.984 310.084 377.859C309.97 378.049 309.731 378.229 309.415 378.329Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M200.724 192.653C200.338 191.644 200.06 190.728 199.739 189.5C198.92 186.891 198.144 184.593 197.515 182.332C198.943 182.76 200.209 183.23 201.516 183.481C201.795 183.534 202.228 182.79 202.742 182.302C204.604 181.859 206.314 181.526 208.024 181.193C210.682 182.602 213.326 184.04 216.006 185.406C217.148 185.988 218.366 186.422 219.718 186.945C220.248 187.347 221.514 188.06 222 188.5C221.398 192.064 220.252 195.332 219.5 199C216.892 198.818 213.831 198.36 211.248 198.033C210.316 197.915 209.375 197.875 208.061 197.793C207.184 197.785 206.684 197.783 206.185 197.78C204.401 196.103 202.617 194.425 200.724 192.653Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.93 170.13C272.866 171.07 272.798 171.863 272.612 172.776C272.411 171.383 272.327 169.871 272.355 168.222C272.612 168.293 272.756 168.501 272.917 168.945C272.933 169.181 272.933 169.394 272.933 169.394C272.931 169.591 272.928 169.787 272.93 170.13Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M271.253 163.849C271.604 164.499 271.949 165.311 272.194 166.228C271.811 165.558 271.529 164.784 271.253 163.849Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M272.29 175.081C272.389 175.697 272.342 176.362 272.181 177.145C272.093 176.551 272.119 175.84 272.29 175.081Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M280.677 136.675C280.3 137.019 279.777 137.369 279.156 137.615C279.549 137.235 280.041 136.959 280.677 136.675Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M284.585 135.792C284.224 136.067 283.704 136.33 283.026 136.588C283.386 136.315 283.905 136.047 284.585 135.792Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M286.793 135.43C286.562 135.632 286.191 135.802 285.735 135.872C285.984 135.648 286.319 135.523 286.793 135.43Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M288.155 135.362C288.254 135.366 288.126 135.513 288.126 135.513C288.126 135.513 287.944 135.5 287.903 135.449C287.861 135.398 288.056 135.358 288.155 135.362Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M309.101 273.918C309.311 275.714 309.437 277.665 309.445 279.752C309.224 277.949 309.12 276.012 309.101 273.918Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M309.886 293.605C310.115 295.065 310.301 296.721 310.378 298.515C310.128 297.035 309.985 295.418 309.886 293.605Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M288.106 344.837C287.878 343.36 287.723 341.692 287.677 339.887C287.918 341.383 288.048 343.015 288.106 344.837Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.536 287.03C309.733 287.938 309.877 289.025 309.915 290.236C309.7 289.31 309.592 288.26 309.536 287.03Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.968 255.924C309.121 256.785 309.115 257.731 309.025 258.811C308.897 257.967 308.853 256.988 308.968 255.924Z\" fill=\"#633870\"/>\r\n <path d=\"M310.326 301.447C310.548 302.209 310.73 303.149 310.81 304.21C310.567 303.429 310.427 302.527 310.326 301.447Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.745 267.323C308.984 267.594 309.119 267.941 309.174 268.425C308.943 268.174 308.793 267.787 308.745 267.323Z\" fill=\"#633870\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.771 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.77 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M316.309 184.256C316.483 188.727 316.853 193.203 316.757 197.669C316.699 200.367 315.918 203.049 315.44 205.905C314.77 206.887 314.122 207.703 313.253 208.665C312.81 209.05 312.588 209.288 312.366 209.526C311.595 209.979 310.825 210.432 309.913 210.946C309.65 209.312 309.293 207.597 309.443 205.927C310.379 195.498 311.441 185.079 312.427 174.654C312.624 172.57 312.675 170.472 312.795 168.162C313.389 169.691 314.034 171.422 314.557 173.19C314.919 174.411 315.111 175.682 315.422 177.097C315.474 177.588 315.483 177.912 315.496 178.54C315.621 179.193 315.742 179.542 315.862 179.891C315.907 180.92 315.951 181.948 315.997 183.287C316.103 183.817 316.206 184.037 316.309 184.256Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M312.448 209.628C312.587 209.287 312.809 209.049 313.151 208.776C313.025 209.07 312.778 209.4 312.448 209.628Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M314.729 210.202C314.552 210.156 314.445 210.043 314.337 209.93C314.384 209.886 314.469 209.8 314.472 209.803C314.586 209.909 314.692 210.023 314.729 210.202Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M268.115 224.198C268.52 223.994 269.082 223.872 269.75 223.832C269.328 224.036 268.8 224.158 268.115 224.198Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M274.663 223.758C274.836 223.592 275.135 223.499 275.495 223.493C275.3 223.663 275.044 223.747 274.663 223.758Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M298.93 222.81C300.45 222.61 302.1 222.531 303.915 222.513C302.406 222.693 300.734 222.812 298.93 222.81Z\" fill=\"#633870\"/>\r\n <path d=\"M296.585 222.961C296.919 222.775 297.261 222.723 297.769 222.729C297.668 223.126 297.402 223.467 297.136 223.807C296.955 223.57 296.774 223.333 296.585 222.961Z\" fill=\"#633870\"/>\r\n <path d=\"M312.363 165.456C312.239 164.958 312.14 164.479 312.041 164.001C312.205 163.97 312.368 163.939 312.532 163.909C312.629 164.334 312.726 164.759 312.721 165.339C312.619 165.494 312.433 165.516 312.433 165.516C312.433 165.516 312.387 165.475 312.363 165.456Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M272.997 169.356C272.933 169.397 272.933 169.183 272.934 169.076C272.977 169.085 273.019 169.2 272.997 169.356Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M315.97 179.808C315.741 179.544 315.621 179.195 315.524 178.702C315.724 178.946 315.901 179.335 315.97 179.808Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M316.401 184.188C316.206 184.036 316.103 183.817 316.036 183.475C316.213 183.608 316.353 183.864 316.401 184.188Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.error-common .error-image-container{display:flex}.error-common .error-image-container .error-image{width:fit-content}.error-common .error-content .error-content-main{max-width:468px}.error-common .error-content .error-content-main .break{height:1px;background-color:#e9e9e9}.error-common .error-content .error-content-main button.link1{border:none;background:transparent}.error-common .error-content .error-content-main .error-reference{align-items:flex-end}.error-common .error-content .error-content-main .error-reference button:focus{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px!important}.error-common .error-content .error-content-main .error-reference button.copy{background:#fafafa!important}.error-common .error-content .error-content-main .error-reference button.copy:hover{background:#f5f5f5!important}.error-common .error-content .error-content-main .error-reference button.copied{cursor:default!important;pointer-events:none!important;background:var(--success-color-A100-parts)!important;color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied:hover{background:var(--success-color-A100-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied i{color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .reference-data{background:#fafafa;border-radius:8px;gap:8px}.error-common .error-content .error-content-main .reference-data .code1{font-family:Roboto Mono;font-size:14px;font-style:normal;font-weight:500;line-height:normal;letter-spacing:.28px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FlexLayoutModule }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i1$4.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
|
|
7193
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: SofErrorCommonComponent, isStandalone: true, selector: "sof-error-common", inputs: { imageUrl: "imageUrl", returnUrl: "returnUrl", contactInfo: "contactInfo", errorReference: "errorReference", showLogout: "showLogout" }, outputs: { logoutEvent: "logoutEvent" }, ngImport: i0, template: "<div \r\n fxLayout=\"row\" \r\n fxLayout.lt-md=\"column-reverse\" \r\n fxLayoutGap=\"80px\"\r\n class=\"error-common\">\r\n <div \r\n class=\"error-image-container\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"end\" fxLayoutAlign.lt-md=\"center\">\r\n @if (imageUrl) {\r\n <div class=\"m-v-auto error-image\">\r\n <!-- Note: empty 'alt' attribute is best practice for WCAG (will ignore this presentation only image) -->\r\n <img [src]=\"imageUrl\" alt=\"\" class=\"m-l-auto\">\r\n </div>\r\n } @else {\r\n <div class=\"m-v-auto error-image\">\r\n <ng-container *ngTemplateOutlet=\"errorCommonSvg\"></ng-container>\r\n </div>\r\n }\r\n </div>\r\n <div \r\n class=\"error-content\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"start\" fxLayoutAlign.lt-md=\"center\">\r\n <div class=\"error-content-main\">\r\n <h1>{{'armature.error-common.title' | translate}}</h1>\r\n <h3 class=\"text-medium-emphasis m-t-8\">\r\n {{'armature.error-common.description' | translate}}\r\n </h3>\r\n <button\r\n id=\"error-common-return-button\"\r\n mat-flat-button \r\n class=\"sof-button-v2 m-t-24\" \r\n [class.m-b-24]=\"showLogout\"\r\n theme=\"primary\" emphasis=\"solid\"\r\n [routerLink]=\"returnUrl ? [returnUrl] : ['/']\">\r\n {{'armature.error-common.return-button-label' | translate}}\r\n </button>\r\n @if (showLogout) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.logout.0' | translate}}\r\n <button id=\"error-common-logout-button\" (click)=\"logout()\" class=\"link1 p-a-0\">\r\n {{'armature.error-common.logout.1' | translate}}\r\n </button>\r\n {{'armature.error-common.logout.2' | translate}}\r\n </p>\r\n }\r\n <div class=\"break m-v-24\"></div>\r\n @if (contactInfo?.email || contactInfo?.phone) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.contact-support.0' | translate}}\r\n @if (contactInfo?.email) {\r\n <a [href]=\"'mailto:'+contactInfo?.email\" id=\"error-common-contact-support-email\" class=\"link1\">\r\n {{contactInfo?.email}}\r\n </a>\r\n }\r\n @if (contactInfo?.email && contactInfo?.phone) {\r\n or\r\n }\r\n @if (contactInfo?.phone) {\r\n <a [href]=\"'tel:'+contactInfo?.phone\" id=\"error-common-contact-support-email\" class=\"link1\">\r\n {{contactInfo?.phone}}\r\n </a>\r\n }\r\n {{'armature.error-common.contact-support.1' | translate}}\r\n </p>\r\n }\r\n <div class=\"error-reference m-t-16\" fxLayout=\"row\">\r\n <p class=\"body2 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.title' | translate}}\r\n </p>\r\n <button\r\n mat-flat-button\r\n [disableRipple]=\"true\"\r\n [disabled]=\"disableCopy\"\r\n (click)=\"copyErrorReferenceDataEvent()\"\r\n class=\"sof-button-v2 mini m-l-auto\"\r\n [class]=\"copyErrorReferenceDataButton?.class\"\r\n id=\"copy-error-reference-data-button\"\r\n aria-label=\"copy error reference\">\r\n <i class=\"ph-bold ph-{{copyErrorReferenceDataButton?.icon}}\" aria-hidden=\"true\"></i>\r\n {{copyErrorReferenceDataButton?.text | translate}}\r\n </button>\r\n </div>\r\n <div fxLayout=\"column\" class=\"reference-data p-a-16 m-t-8\">\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.timestamp' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.timestamp ? errorReference?.timestamp : '--'}}\r\n </span>\r\n </p>\r\n @if (errorReference?.sessionId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.session-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.sessionId}}</span>\r\n </p>\r\n }\r\n @if (errorReference?.errorId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.error-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.errorId}}</span>\r\n </p>\r\n }\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.page-title' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.pageTitle ? (errorReference?.pageTitle | translate) : '--'}}\r\n </span>\r\n </p>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- Svg from Figma (w/ primary palette variables added to certain paths for branding, per design) -->\r\n<ng-template #errorCommonSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"393\" height=\"388\" viewBox=\"0 0 393 388\" fill=\"none\">\r\n <path d=\"M190.094 364.84C189.155 364.84 188.985 361.348 189.001 358.521C189.012 356.501 190.624 354.891 192.64 354.765L200.626 354.266C202.928 354.122 204.875 355.95 204.875 358.257V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M190.094 364.84C188.517 364.84 189.109 354.985 189.109 354.985L204.875 354V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M91.7917 19.7826C92.9064 19.7659 93.51 19.9892 93.8611 20.3793C94.2277 20.7867 94.4357 21.5 94.4382 22.7523C94.4586 32.6471 94.4476 42.5416 94.447 52.4379C94.4421 138.806 94.4364 225.174 94.4314 311.542C94.4308 321.18 94.4352 330.817 94.4285 340.453C94.428 341.117 94.3986 341.618 94.323 342.001C94.2481 342.38 94.1356 342.602 93.9988 342.745C93.8648 342.884 93.6595 342.998 93.2996 343.068C92.9322 343.139 92.4399 343.158 91.7712 343.13C87.8652 342.967 83.9832 342.533 80.0515 342.205C77.0101 341.952 73.9713 341.691 70.9285 341.435C64.2721 340.874 57.6092 340.274 50.9421 339.767C48.4341 339.576 45.922 339.436 43.4177 339.292C40.9116 339.148 38.412 338.999 35.9187 338.791C28.2193 338.149 20.5367 337.384 12.6628 336.668C11.7845 333.029 11.5772 329.353 11.5789 325.641C11.5805 321.852 11.8037 317.921 11.7253 314.093C11.5348 304.787 11.6918 295.482 11.6912 286.154C11.689 256.258 11.6825 226.36 11.6794 196.464C11.678 182.662 11.6822 168.859 11.6824 155.057C11.6827 135.353 11.679 115.649 11.6824 95.9457C11.6851 79.8065 11.7036 63.6658 11.6931 47.5258C11.6917 45.2648 11.5639 43.0078 11.3894 40.639L11.3884 40.6283L11.3875 40.6185C11.295 39.8075 11.2975 39.1066 11.3035 38.2054C11.3486 38.0549 11.3932 37.9324 11.4412 37.806C11.4949 37.6644 11.5554 37.5079 11.6111 37.3168L11.6277 37.2601L11.6306 37.2006C11.7019 35.6606 11.7198 34.5268 11.8093 33.6342C11.8986 32.744 12.0518 32.2022 12.3279 31.8236C12.5944 31.4582 13.0279 31.174 13.8474 30.931C14.6742 30.6859 15.8246 30.5018 17.4568 30.2894C25.1666 29.2861 32.8607 28.1644 40.5496 27.0443C42.777 26.7198 44.9987 26.3599 47.2156 26.0004C49.4338 25.6406 51.6478 25.2821 53.866 24.9594C59.3344 24.1638 64.7835 23.4777 70.2664 22.7006C73.0016 22.3129 75.7346 21.909 78.4656 21.5052C81.1971 21.1014 83.9271 20.697 86.6589 20.309C88.392 20.0628 90.0953 19.8081 91.7917 19.7826ZM83.0515 166.273C81.0879 166.354 79.1541 166.296 77.1501 166.32C76.478 166.328 75.9067 166.365 75.4343 166.469C74.956 166.575 74.5435 166.758 74.2244 167.082C73.9059 167.406 73.7278 167.824 73.6257 168.308C73.5248 168.787 73.4906 169.368 73.4871 170.055C73.4587 175.587 73.4602 181.121 73.446 187.087V187.088C73.447 192.259 73.4732 197.422 73.4324 202.586C73.4267 203.306 73.5218 204.008 73.9089 204.538C74.3193 205.101 74.9738 205.366 75.8328 205.393C78.349 205.472 80.9444 205.675 83.5076 205.591C83.7621 205.583 84.0123 205.494 84.2273 205.384C84.4477 205.272 84.663 205.122 84.8562 204.955C85.2234 204.639 85.5928 204.19 85.7048 203.732C86.0603 202.275 86.0668 200.726 86.072 199.287C86.108 189.346 86.1003 179.394 86.1287 169.455C86.1313 168.542 85.9776 167.7 85.4626 167.1C84.9285 166.478 84.1084 166.229 83.0515 166.273Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M10.8046 38.1268C10.9183 37.7277 11.0325 37.5152 11.1309 37.1772C11.4116 31.1118 10.8786 30.6414 17.392 29.7938C25.0976 28.791 32.7881 27.67 40.4777 26.5499C44.9234 25.9022 49.3482 25.1109 53.7941 24.4641C59.2554 23.6696 64.732 22.9797 70.1964 22.2052C75.6636 21.4304 81.1215 20.5909 86.5884 19.8143C88.3121 19.5694 90.0497 19.3086 91.7844 19.2825C94.1145 19.2476 94.9332 20.1945 94.9384 22.751C94.9588 32.6466 94.9472 42.5422 94.9466 52.4379C94.9417 138.806 94.9366 225.174 94.9316 311.542C94.931 321.179 94.9352 330.816 94.9285 340.453C94.9266 343.137 94.4727 343.743 91.7503 343.63C87.8307 343.467 83.9226 343.03 80.01 342.704C76.9686 342.451 73.928 342.189 70.8868 341.933C64.2265 341.372 57.569 340.772 50.9045 340.265C45.8996 339.884 40.8784 339.707 35.8771 339.29C28.0599 338.637 20.2534 337.859 12.2616 337.134C10.3321 329.514 11.3822 321.781 11.225 314.103C11.0343 304.79 11.1923 295.47 11.1916 286.153C11.1895 256.257 11.183 226.361 11.1799 196.465C11.1785 182.662 11.1817 168.86 11.1819 155.057C11.1822 135.353 11.179 115.65 11.1824 95.9457C11.1851 79.8058 11.2033 63.6659 11.1929 47.526C11.1914 45.2829 11.0649 43.0398 10.8907 40.6755C10.7918 39.8073 10.7984 39.0603 10.8046 38.1268ZM73.9462 187.088C73.9471 192.255 73.9731 197.423 73.9323 202.59C73.9213 203.976 74.3184 204.845 75.8488 204.893C78.3974 204.973 80.9488 205.174 83.4913 205.091C84.108 205.071 85.0682 204.233 85.2194 203.613C85.5585 202.223 85.5672 200.734 85.5725 199.286C85.6084 189.342 85.6003 179.398 85.6286 169.454C85.6337 167.701 85.0224 166.692 83.0725 166.773C81.1031 166.854 79.1283 166.796 77.1561 166.82C74.4998 166.852 74.0014 167.344 73.9875 170.058C73.9591 175.589 73.9603 181.12 73.9462 187.088Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M186.004 144.468C186.004 144.468 149.182 144.07 139.629 143.572C136.245 143.396 135.549 147.653 135.549 147.653C135.549 148.847 135.628 175.418 135.549 177.011C135.469 178.603 137.373 180.46 138.335 181.19C153.462 180.958 183.914 181.19 185.307 181.19C186.698 181.19 188.625 179.034 189.487 177.608C189.255 168.286 189.487 150.041 189.487 149.145C189.487 148.461 188.393 144.468 186.004 144.468Z\" fill=\"white\"/>\r\n <path d=\"M374.345 245.945C375.012 255.951 375.552 265.967 376.385 275.959C377.152 285.153 378.234 294.32 379.167 303.806C379.238 304.344 379.32 304.574 379.401 304.805C379.464 305.543 379.526 306.282 379.437 307.307C379.36 308.5 379.316 309.435 379.528 310.309C381.051 316.587 382.106 322.916 381.858 329.408C381.855 329.504 382.049 329.608 382.15 329.708C382.267 330.611 382.384 331.513 382.393 332.703C382.453 333.791 382.62 334.593 382.787 335.394C382.848 335.854 382.909 336.313 382.855 337.043C382.879 337.839 383.018 338.366 383.157 338.893C383.241 339.776 383.324 340.659 383.303 341.818C383.327 342.355 383.455 342.616 383.62 343.043C383.749 344.517 383.84 345.826 383.788 347.235C383.578 349.18 383.485 351.024 383.461 352.869C383.453 353.478 383.712 354.093 383.692 354.7C383.661 355.645 383.495 356.587 383.231 357.579C382.288 357.921 381.5 358.214 380.524 358.513C377.815 358.474 375.294 358.393 372.774 358.396C369.453 358.401 366.132 358.472 362.698 358.523C362.51 358.527 362.435 358.523 362.286 358.398C361.594 357.726 360.975 357.174 360.339 356.455C360.256 355.729 360.191 355.17 360.157 354.421C359.861 352.607 359.534 350.983 359.198 349.203C359.139 348.742 359.089 348.437 359.097 347.973C359.01 347.315 358.863 346.814 358.711 346.156C358.662 345.69 358.617 345.381 358.639 344.917C358.568 344.257 358.43 343.753 358.29 343.094C358.223 342.639 358.157 342.339 358.147 341.905C358.003 341.456 357.802 341.142 357.63 340.643C357.278 337.525 356.884 334.592 356.525 331.656C356.377 330.44 355.67 330.082 354.529 330.02C354.484 326.25 354.486 322.689 354.445 319.128C354.434 318.119 354.438 317.076 354.197 316.107C351.673 306.002 349.052 295.921 346.557 285.81C343.833 274.777 341.201 263.722 338.553 252.672C336.885 245.709 335.222 238.744 333.642 231.762C333.252 230.038 333.192 228.24 332.939 226.135C333.617 226.032 334.505 225.789 335.396 225.781C340.429 225.735 345.463 225.713 350.496 225.759C352.057 225.773 352.853 225.256 352.702 223.616C352.648 223.039 352.679 222.454 352.789 221.837C352.988 221.788 353.069 221.776 353.231 221.874C353.699 221.917 354.086 221.85 354.627 221.789C354.982 221.831 355.184 221.866 355.312 222.033C354.171 224.995 354.387 225.321 357.38 225.332C359.926 225.341 362.473 225.334 365.021 225.511C364.586 227.345 364.282 228.987 365.363 230.49C364.284 231.211 362.805 231.766 362.598 232.625C362.119 234.608 361.774 236.857 362.249 238.784C363.128 242.358 364.88 245.618 367.999 247.907C368.71 248.428 369.389 248.994 370.082 249.539C370.547 248.753 371.11 248.006 371.452 247.17C371.861 246.17 371.971 245.043 372.426 244.071C372.683 243.522 373.372 243.174 373.954 242.904C374.082 243.704 374.122 244.336 374.076 245.033C374.108 245.381 374.226 245.663 374.345 245.945Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M382.835 335.221C382.62 334.591 382.453 333.79 382.392 332.872C382.626 333.521 382.755 334.285 382.835 335.221Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.218 338.742C383.018 338.365 382.879 337.838 382.843 337.216C383.057 337.612 383.168 338.102 383.218 338.742Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.868 342.709C383.926 342.831 383.758 342.881 383.67 342.878C383.455 342.614 383.327 342.353 383.294 342.008C383.529 342.144 383.67 342.365 383.868 342.709Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M386.55 387.009C386.753 386.948 387.036 386.989 387.342 387.145C387.12 387.21 386.875 387.161 386.55 387.009Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M374.077 245.032C374.239 244.963 374.315 244.96 374.506 244.96C374.584 245.189 374.548 245.414 374.428 245.792C374.227 245.662 374.109 245.38 374.077 245.032Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M379.5 304.747C379.32 304.572 379.239 304.341 379.214 303.993C379.38 304.147 379.489 304.419 379.5 304.747Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M365.364 230.488C368.266 233.048 370.99 235.637 373.809 238.355C373.925 239.792 373.946 241.1 373.917 242.571C373.373 243.173 372.683 243.521 372.426 244.069C371.971 245.041 371.861 246.169 371.452 247.168C371.11 248.004 370.548 248.751 370.083 249.538C369.389 248.992 368.711 248.427 368 247.905C364.88 245.616 363.128 242.356 362.249 238.783C361.775 236.855 362.119 234.607 362.598 232.624C362.806 231.764 364.284 231.21 365.364 230.488Z\" fill=\"#6E4446\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M360.157 354.422C359.753 352.947 359.38 351.282 359.107 349.488C359.534 350.983 359.861 352.608 360.157 354.422Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M362.287 358.395C361.66 357.991 360.96 357.467 360.308 356.781C360.975 357.172 361.594 357.723 362.287 358.395Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M358.64 344.914C358.425 344.531 358.277 343.993 358.21 343.351C358.43 343.751 358.568 344.255 358.64 344.914Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M359.097 347.972C358.877 347.594 358.716 347.059 358.635 346.418C358.863 346.812 359.01 347.313 359.097 347.972Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M353.231 221.874C353.532 221.706 353.915 221.649 354.385 221.687C354.086 221.849 353.699 221.917 353.231 221.874Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M357.576 341.616C357.538 341.415 357.55 341.298 357.582 341.003C357.802 341.14 358.003 341.455 358.147 341.904C357.936 341.925 357.781 341.812 357.576 341.616Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M334.393 121.861C333.061 121.528 331.702 121.273 330.41 120.825C329.81 120.617 329.341 120.034 328.812 119.621C329.269 119.144 329.724 118.259 330.183 118.257C332.606 118.247 333.279 116.553 333.921 114.765C335.464 110.461 338.079 107.021 342.144 104.564C342.568 104.308 342.915 104.168 343.56 103.965C345.212 103.492 346.567 103.081 347.921 102.67C349.771 102.675 351.621 102.679 353.731 102.817C354.443 103.109 354.896 103.268 355.349 103.428C356.206 103.933 357.063 104.438 357.806 105.066C354.434 105.12 350.988 104.34 347.958 105.134C342.154 106.654 338.586 110.939 336.968 116.715C336.253 119.267 336.402 119.628 339.01 120.086C346.807 121.453 354.619 122.739 362.443 123.949C363.539 124.118 364.729 123.682 366.044 123.533C366.66 123.585 367.107 123.629 367.554 123.674C368.315 126.119 368.012 126.535 365.449 126.546C364.739 126.549 364.029 126.539 363.029 126.399C362.197 126.074 361.668 125.796 361.11 125.712C354.657 124.738 348.199 123.794 341.602 122.75C339.106 122.392 336.75 122.127 334.393 121.861Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M368.637 370.073C369.155 369.831 369.789 369.678 370.591 369.581C370.09 369.811 369.421 369.986 368.637 370.073Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M365.095 370.461C365.372 370.273 365.741 370.178 366.211 370.158C365.937 370.34 365.562 370.447 365.095 370.461Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M332.159 218.766C332.6 218.765 333.04 218.764 333.644 218.766C333.237 221.467 335.722 220.627 336.914 221.508C333.876 221.707 330.764 221.745 327.654 221.841C326.806 221.868 325.962 222.07 324.943 222.222C324.628 222.177 324.486 222.102 324.404 221.794C326.24 221.359 328.014 221.011 329.791 220.997C331.432 220.984 332.306 220.502 332.159 218.766Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M366.239 222.247C365.547 222.268 364.942 222.149 364.227 221.924C365.011 221.277 365.906 220.737 366.802 220.197C366.925 220.286 367.049 220.375 367.172 220.464C366.89 221.012 366.608 221.56 366.239 222.247Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M386.463 170.42C386.68 170.651 386.897 171.028 387.008 171.496C386.756 171.247 386.61 170.907 386.463 170.42Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M323.784 253.025C323.843 251.889 323.903 250.957 324.078 249.9C324.409 253.965 324.641 258.155 324.84 262.346C325.028 266.329 325.182 270.314 325.29 274.495C324.9 273.475 324.329 272.268 324.279 271.039C324.038 265.106 323.937 259.166 323.784 253.025Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.758 299.812C325.459 298.007 325.611 295.871 326.231 293.582C326.489 295.513 326.644 297.562 326.758 299.812Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.268 290.645C326.033 288.894 325.84 286.943 325.746 284.867C325.999 286.643 326.154 288.544 326.268 290.645Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M325.811 283.227C325.567 281.784 325.37 280.145 325.261 278.36C325.519 279.82 325.688 281.425 325.811 283.227Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M327.126 305.077C326.916 304.173 326.755 303.088 326.701 301.877C326.93 302.799 327.052 303.848 327.126 305.077Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M324.288 248.332C324.131 247.794 324.057 247.14 324.092 246.381C324.257 246.922 324.314 247.569 324.288 248.332Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M330.087 336.658C329.796 336.337 329.635 335.993 329.5 335.504C329.757 335.785 329.987 336.209 330.087 336.658Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M324.847 227.057C324.696 226.726 324.677 226.367 324.728 225.841C324.858 226.125 324.919 226.577 324.847 227.057Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M324.476 229.694C324.35 229.342 324.353 228.949 324.47 228.458C324.591 228.79 324.597 229.222 324.476 229.694Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M351.704 357.263C351.689 356.89 351.795 356.484 352.052 356.008C352.078 356.368 351.951 356.799 351.704 357.263Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M341.742 122.844C348.199 123.796 354.657 124.74 361.11 125.714C361.668 125.798 362 126 363 126.379C362.82 127.689 362.378 128.885 362.065 130.232C361.674 131.205 361.318 132.004 360.843 133.052C360.506 133.819 360.286 134.337 360.066 134.854C359.897 135.252 359.774 135.61 359.317 135.74C356.443 136.556 355.011 135.607 354.394 132.613C353.971 131.968 353.596 131.466 353.209 130.788C353.224 130.253 353.166 129.861 353.289 129.538C353.844 128.081 353.457 126.601 352.082 126.379C351.229 126.241 350.062 127.51 349.177 128.304C348.736 128.699 348.711 129.523 348.32 130.012C347.928 130.503 347.155 131.243 346.834 131.123C346.216 130.89 345.692 130.187 345.339 129.562C345.12 129.174 345.234 128.563 345.292 128.063C345.582 125.59 345.22 123.58 342.136 123.339C341.992 123.328 341.873 123.016 341.742 122.844Z\" fill=\"#382857\"/>\r\n <path d=\"M365.875 123.529C364.729 123.684 363.539 124.12 362.443 123.951C354.62 122.741 346.807 121.455 339.01 120.087C336.402 119.63 336.253 119.269 336.968 116.717C338.586 110.941 342.154 106.656 347.958 105.136C350.988 104.342 354.434 105.121 357.892 105.192C359.812 106.657 361.76 107.928 363.202 109.625C365.846 112.738 366.156 116.59 365.879 120.896C365.876 122.034 365.875 122.781 365.875 123.529Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M342.922 144.213C341.481 144.155 340.036 144.145 338.601 144.026C336.29 143.834 334.109 143.372 333.179 140.651C333.041 138.954 332.934 137.366 332.979 135.781C333.018 134.375 333.037 133.16 331.569 132.25C331.107 131.963 330.966 130.549 331.217 129.84C332.137 127.247 333.284 124.734 334.369 122.027C336.75 122.127 339.106 122.393 341.602 122.751C341.873 123.015 341.992 123.327 342.136 123.338C345.22 123.579 345.582 125.589 345.292 128.062C345.234 128.562 345.12 129.173 345.339 129.56C345.692 130.186 346.216 130.889 346.834 131.121C347.155 131.242 347.928 130.502 348.32 130.011C348.711 129.522 348.736 128.698 349.177 128.302C350.062 127.508 351.229 126.239 352.082 126.377C353.457 126.6 353.844 128.08 353.289 129.537C353.166 129.86 353.224 130.251 353.184 130.954C353.018 132.059 352.866 132.823 352.715 133.585C352.716 133.584 352.718 133.582 352.563 133.604C351.487 135.214 350.566 136.802 349.647 138.389C349.647 138.388 349.648 138.387 349.517 138.455C348.078 139.753 346.792 141.006 345.454 142.201C344.651 142.918 343.768 143.546 342.922 144.213Z\" fill=\"#6E4446\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M321.864 217.996C322.261 218.661 322.563 219.434 322.85 220.372C322.48 219.726 322.124 218.915 321.864 217.996Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M321.953 211.853C322.107 212.284 322.149 212.806 322.074 213.415C321.918 212.983 321.879 212.463 321.953 211.853Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M354.442 132.756C355.011 135.607 356.496 136.561 359.314 135.741C359.848 137.924 360.563 140.59 361 143C355.053 146.773 349.893 152.484 345 157.5C344.498 155.646 344.395 152.763 343.958 150.779C343.806 150.088 343.654 149.397 343.431 148.533C343.36 148.36 343.457 148.348 343.636 148.383C347.571 146.121 349.075 142.523 349.648 138.388C349.648 138.388 349.647 138.39 349.801 138.37C350.875 136.761 351.797 135.172 352.718 133.583C352.718 133.583 352.716 133.585 352.84 133.52C353.456 133.221 353.949 132.989 354.442 132.756Z\" fill=\"#6E4446\"/>\r\n <path d=\"M354.661 132.608C354.216 132.983 353.095 133.628 352.5 133.628C352.527 132.931 353.13 131.43 353.307 130.5C353.707 130.836 354.238 131.963 354.661 132.608Z\" fill=\"#382857\"/>\r\n <path d=\"M350 138C350.482 142.043 347.571 146.121 343.656 148.428C343.305 147.146 343.191 145.466 343 144C343.848 143.158 344.698 142.717 345.5 142C346.838 140.804 348.561 139.297 350 138Z\" fill=\"#382857\"/>\r\n <path d=\"M352.618 133.541C353 133.5 349.618 138.541 349.118 140.041C349.118 138.541 351.542 135.151 352.618 133.541Z\" fill=\"#382857\"/>\r\n <path d=\"M119.423 10.3316C126.735 10.5908 141.577 12.5721 164.607 14.2994C184.511 15.7921 198.643 19.1764 207.6 21.3658C210.217 22.0056 211.565 23.2196 212.239 24.3726C212.566 24.9312 212.417 25.4763 212.025 25.8433H212.974C213.172 26.1753 212.95 27.212 213.472 27.8336C215.561 30.35 218.151 334.742 211.979 340.917C211.782 341.113 211.393 341.31 211.382 341.315C210.951 341.779 209.252 342.469 205.51 343.106C208.892 339.724 209.195 338.432 209.192 338.628C210.909 237.541 211.867 42.5867 208.839 26.0845L117.719 15.7945C116.708 15.6801 115.909 14.8052 116.211 13.8336C116.736 12.145 117.916 10.9748 118.675 10.5025C118.899 10.363 119.159 10.3223 119.423 10.3316Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M119.425 10.332C126.738 10.5931 141.579 12.5853 164.607 14.3223C184.511 15.8236 198.643 19.2268 207.6 21.4287C209.817 21.9738 211.121 22.9344 211.879 23.9199H212.974C213.173 24.2536 212.949 25.2966 213.472 25.9219C215.562 28.431 218.152 334.589 211.979 340.798C211.782 340.995 211.394 341.192 211.382 341.198C210.951 341.665 209.252 342.359 205.51 343C208.893 339.597 209.196 338.299 209.192 338.496C210.856 239.968 211.805 52.7698 209.106 26.2041L117.718 15.8252C116.707 15.7104 115.91 14.8365 116.208 13.8643C116.731 12.1615 117.913 10.9805 118.673 10.5039C118.898 10.3629 119.16 10.3226 119.425 10.332Z\" fill=\"black\" fill-opacity=\"0.2\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 222.738C122.466 222.738 122.961 223.233 122.961 223.844V231.679C122.961 232.27 122.718 232.922 122.339 233.38C121.959 233.837 121.385 234.155 120.749 233.906C120.644 233.865 120.555 233.802 120.489 233.716C120.424 233.63 120.394 233.536 120.38 233.451C120.367 233.368 120.368 233.284 120.371 233.212C120.372 233.175 120.374 233.137 120.377 233.101C120.379 233.065 120.381 233.031 120.382 232.997L120.751 223.8C120.774 223.207 121.262 222.738 121.855 222.738Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 101.524C122.466 101.524 122.961 102.019 122.961 102.63V110.465C122.961 111.056 122.718 111.708 122.339 112.166C121.959 112.623 121.385 112.941 120.749 112.692C120.644 112.651 120.555 112.589 120.489 112.502C120.424 112.416 120.394 112.323 120.38 112.237C120.367 112.154 120.368 112.07 120.371 111.998C120.372 111.961 120.374 111.923 120.377 111.888C120.379 111.852 120.381 111.817 120.382 111.783L120.751 102.586C120.774 101.993 121.262 101.524 121.855 101.524Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 82.6164C122.466 82.6164 122.961 83.1113 122.961 83.7219V91.5568C122.961 92.1484 122.718 92.8004 122.339 93.258C121.959 93.7152 121.385 94.0335 120.749 93.7844C120.644 93.7432 120.555 93.6807 120.489 93.5939C120.424 93.5084 120.394 93.4147 120.38 93.3293C120.367 93.2462 120.368 93.1625 120.371 93.09C120.372 93.0531 120.374 93.0149 120.377 92.9797C120.379 92.9437 120.381 92.9094 120.382 92.8752L120.751 83.6779C120.774 83.0851 121.262 82.6164 121.855 82.6164Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 59.9263C122.466 59.9263 122.961 60.4213 122.961 61.0318V68.8668C122.961 69.4584 122.718 70.1103 122.339 70.5679C121.959 71.0251 121.385 71.3435 120.749 71.0943C120.644 71.0531 120.555 70.9907 120.489 70.9039C120.424 70.8184 120.394 70.7246 120.38 70.6392C120.367 70.5562 120.368 70.4724 120.371 70.4C120.372 70.363 120.374 70.3248 120.377 70.2896C120.379 70.2536 120.381 70.2194 120.382 70.1851L120.751 60.9879C120.774 60.395 121.262 59.9264 121.855 59.9263Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 35.6439C122.466 35.6439 122.961 36.1389 122.961 36.7494V44.5844C122.961 45.176 122.718 45.8279 122.339 46.2855C121.959 46.7427 121.385 47.0611 120.749 46.8119C120.644 46.7707 120.555 46.7082 120.489 46.6215C120.424 46.536 120.394 46.4422 120.38 46.3568C120.367 46.2738 120.368 46.19 120.371 46.1176C120.372 46.0806 120.374 46.0424 120.377 46.0072C120.379 45.9712 120.381 45.937 120.382 45.9027L120.751 36.7054C120.774 36.1126 121.262 35.644 121.855 35.6439Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 247.817C122.466 247.817 122.961 248.312 122.961 248.922V256.757C122.961 257.349 122.718 258.001 122.339 258.459C121.959 258.916 121.385 259.234 120.749 258.985C120.644 258.944 120.555 258.881 120.489 258.794C120.424 258.709 120.394 258.615 120.38 258.53C120.367 258.447 120.368 258.363 120.371 258.291C120.372 258.254 120.374 258.215 120.377 258.18C120.379 258.144 120.381 258.11 120.382 258.076L120.751 248.878C120.774 248.286 121.262 247.817 121.855 247.817Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 272.893C122.466 272.893 122.961 273.388 122.961 273.998V281.833C122.961 282.425 122.718 283.077 122.339 283.534C121.959 283.991 121.385 284.31 120.749 284.061C120.644 284.02 120.555 283.957 120.489 283.87C120.424 283.785 120.394 283.691 120.38 283.606C120.367 283.523 120.368 283.439 120.371 283.366C120.372 283.329 120.374 283.291 120.377 283.256C120.379 283.22 120.381 283.186 120.382 283.151L120.751 273.954C120.774 273.361 121.262 272.893 121.855 272.893Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 297.973C122.466 297.973 122.961 298.468 122.961 299.079V306.913C122.961 307.505 122.718 308.157 122.339 308.615C121.959 309.072 121.385 309.39 120.749 309.141C120.644 309.1 120.555 309.037 120.489 308.951C120.424 308.865 120.394 308.771 120.38 308.686C120.367 308.603 120.368 308.519 120.371 308.447C120.372 308.41 120.374 308.372 120.377 308.336C120.379 308.3 120.381 308.266 120.382 308.232L120.751 299.035C120.774 298.442 121.262 297.973 121.855 297.973Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 323.052C122.466 323.052 122.961 323.547 122.961 324.157V331.992C122.961 332.584 122.718 333.236 122.339 333.693C121.959 334.151 121.385 334.469 120.749 334.22C120.644 334.179 120.555 334.116 120.489 334.029C120.424 333.944 120.394 333.85 120.38 333.765C120.367 333.682 120.368 333.598 120.371 333.526C120.372 333.489 120.374 333.45 120.377 333.415C120.379 333.379 120.381 333.345 120.382 333.311L120.751 324.113C120.774 323.521 121.262 323.052 121.855 323.052Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M195.122 38.87L186.048 38.6161C185.613 38.6039 185.251 38.9463 185.239 39.3807L185.195 40.954C185.177 41.6057 185.69 42.1488 186.342 42.167L196.862 42.4613C197.432 42.4773 197.778 42.6209 198.089 42.1435C199.118 40.5657 197.005 38.9227 195.122 38.87Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 62.2446L186.048 61.9906C185.613 61.9785 185.251 62.3208 185.239 62.7553L185.195 64.3286C185.177 64.9802 185.69 65.5233 186.342 65.5415L196.862 65.8359C197.432 65.8518 197.778 65.9954 198.089 65.5181C199.118 63.9403 197.005 62.2972 195.122 62.2446Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 85.6176L186.048 85.3637C185.613 85.3515 185.251 85.6938 185.239 86.1283L185.195 87.7016C185.177 88.3532 185.69 88.8963 186.342 88.9145L196.862 89.2089C197.432 89.2248 197.778 89.3684 198.089 88.8911C199.118 87.3133 197.005 85.6702 195.122 85.6176Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 106.429L186.048 106.175C185.613 106.163 185.251 106.505 185.239 106.94L185.195 108.513C185.177 109.164 185.69 109.708 186.342 109.726L196.862 110.02C197.432 110.036 197.778 110.18 198.089 109.702C199.118 108.124 197.005 106.481 195.122 106.429Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 222.092L186.708 222.28C186.323 222.289 186.018 222.609 186.027 222.994L186.06 224.388C186.073 224.966 186.552 225.423 187.13 225.409L196.454 225.192C196.959 225.18 197.272 225.291 197.526 224.855C198.364 223.411 196.42 222.053 194.751 222.092Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 246.546L186.708 246.734C186.323 246.743 186.018 247.063 186.027 247.448L186.06 248.842C186.073 249.42 186.552 249.877 187.13 249.864L196.454 249.646C196.959 249.634 197.272 249.745 197.526 249.309C198.364 247.866 196.42 246.507 194.751 246.546Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.089 271.009L186.07 271.219C185.639 271.229 185.297 271.588 185.307 272.019L185.343 273.583C185.359 274.23 185.896 274.743 186.544 274.728L196.999 274.484C197.565 274.471 197.915 274.596 198.2 274.106C199.14 272.488 196.96 270.965 195.089 271.009Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.376 295.876L185.358 296.087C184.926 296.097 184.584 296.455 184.594 296.887L184.631 298.45C184.646 299.098 185.183 299.611 185.831 299.596L196.286 299.352C196.852 299.338 197.203 299.463 197.487 298.974C198.428 297.355 196.248 295.833 194.376 295.876Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.411 319.8L185.393 320.011C184.961 320.021 184.619 320.379 184.629 320.811L184.666 322.375C184.681 323.022 185.218 323.535 185.866 323.52L196.321 323.276C196.887 323.263 197.238 323.387 197.522 322.898C198.463 321.28 196.283 319.757 194.411 319.8Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.169 45.5248L186.094 45.2709C185.659 45.2588 185.297 45.6011 185.285 46.0355L185.241 47.6088C185.223 48.2605 185.736 48.8036 186.388 48.8218L196.908 49.1162C197.478 49.1321 197.824 49.2757 198.135 48.7983C199.164 47.2205 197.052 45.5775 195.169 45.5248Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 68.8994L186.094 68.6455C185.659 68.6333 185.297 68.9756 185.285 69.4101L185.241 70.9834C185.223 71.635 185.736 72.1781 186.388 72.1963L196.908 72.4907C197.478 72.5066 197.824 72.6502 198.135 72.1729C199.164 70.5951 197.052 68.952 195.169 68.8994Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 92.2724L186.094 92.0185C185.659 92.0063 185.297 92.3487 185.285 92.7831L185.241 94.3564C185.223 95.0081 185.736 95.5511 186.388 95.5694L196.908 95.8637C197.478 95.8797 197.824 96.0233 198.135 95.5459C199.164 93.9681 197.052 92.3251 195.169 92.2724Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 113.085L186.094 112.831C185.659 112.819 185.297 113.161 185.285 113.596L185.241 115.169C185.223 115.821 185.736 116.364 186.388 116.382L196.908 116.676C197.478 116.692 197.824 116.836 198.135 116.359C199.164 114.781 197.052 113.138 195.169 113.085Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 228.589L186.77 228.662C186.385 228.666 186.075 228.981 186.079 229.366L186.092 230.761C186.097 231.339 186.57 231.803 187.147 231.797L196.474 231.712C196.979 231.707 197.29 231.823 197.55 231.39C198.409 229.959 196.484 228.573 194.815 228.589Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 253.043L186.77 253.116C186.385 253.12 186.075 253.435 186.079 253.82L186.092 255.215C186.097 255.793 186.57 256.257 187.147 256.251L196.474 256.166C196.979 256.162 197.29 256.277 197.55 255.844C198.409 254.413 196.484 253.028 194.815 253.043Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.161 278.295L186.14 278.377C185.708 278.381 185.361 278.735 185.365 279.167L185.38 280.73C185.385 281.378 185.915 281.899 186.563 281.893L197.021 281.797C197.587 281.792 197.936 281.922 198.227 281.436C199.191 279.831 197.032 278.278 195.161 278.295Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.448 303.162L185.427 303.245C184.995 303.249 184.648 303.602 184.652 304.034L184.667 305.598C184.673 306.246 185.203 306.766 185.85 306.76L196.308 306.664C196.874 306.659 197.223 306.789 197.514 306.304C198.478 304.699 196.319 303.145 194.448 303.162Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M132.762 33.3081C129.525 33.3081 128.934 34.5994 129.07 35.5061C129.11 35.7709 129.18 36.0319 129.18 36.2997V45.4493C129.18 47.36 131.236 47.9704 132.265 48.0368C146.297 49.0983 174.878 51.2412 176.948 51.3209C178.541 51.3821 179.49 50.8579 179.948 50.4013C180.168 50.1822 180.232 49.8655 180.232 49.555V40.3684C180.232 40.0451 180.349 39.7301 180.372 39.4077C180.474 37.9904 177.572 37.0214 175.953 36.6917C163.115 35.5638 136.504 33.3081 132.762 33.3081Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.762 57.9873C129.525 57.9873 128.934 59.2786 129.07 60.1853C129.11 60.4501 129.18 60.7111 129.18 60.9788V70.1285C129.18 72.0392 131.236 72.6496 132.265 72.7159C146.297 73.7775 174.878 75.9204 176.948 76C178.541 76.0613 179.49 75.537 179.948 75.0805C180.168 74.8614 180.232 74.5446 180.232 74.2341V65.0476C180.232 64.7243 180.349 64.4093 180.372 64.0869C180.474 62.6696 177.572 61.7006 175.953 61.3709C163.115 60.243 136.504 57.9873 132.762 57.9873Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.792 82.668C129.763 82.668 129.05 83.5907 129.081 84.3165C129.095 84.6363 129.207 84.9488 129.207 85.2688V92.5929C129.207 94.1548 131.265 94.6538 132.294 94.708C146.334 95.5758 174.931 97.3275 177.003 97.3926C178.474 97.4389 179.396 97.0772 179.89 96.7277C180.191 96.5149 180.288 96.1401 180.288 95.7716V88.6233C180.288 88.2406 180.487 87.8572 180.422 87.4801C180.238 86.4163 177.544 85.6897 176.007 85.4339C163.162 84.5119 136.536 82.668 132.792 82.668Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.646 103.221C129.618 103.283 128.924 104.22 128.97 104.945C128.99 105.265 129.109 105.575 129.115 105.895L129.265 113.217C129.297 114.779 131.364 115.236 132.394 115.269C146.449 115.85 175.076 117.018 177.148 117.041C178.62 117.057 179.535 116.677 180.021 116.317C180.318 116.098 180.408 115.721 180.4 115.353L180.254 108.206C180.247 107.824 180.437 107.436 180.364 107.061C180.159 106.001 177.451 105.329 175.909 105.105C163.047 104.445 136.389 103.145 132.646 103.221Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.408 223.379C129.385 223.552 128.725 224.513 128.798 225.236C128.829 225.555 128.959 225.86 128.978 226.18L129.394 233.492C129.483 235.052 131.566 235.433 132.597 235.428C146.663 235.496 175.314 235.617 177.385 235.564C178.857 235.527 179.757 235.113 180.23 234.736C180.518 234.506 180.595 234.127 180.574 233.759L180.167 226.622C180.145 226.24 180.321 225.846 180.235 225.473C179.991 224.421 177.26 223.849 175.711 223.681C162.834 223.492 136.146 223.166 132.408 223.379Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 247.139C129.022 247.437 128.516 248.683 128.709 249.529C128.772 249.802 128.875 250.067 128.901 250.346L129.709 258.97C129.879 260.78 131.982 261.165 133.012 261.132C147.085 260.827 175.748 260.187 177.817 260.069C179.38 259.98 180.274 259.415 180.7 258.945C180.918 258.705 180.958 258.368 180.928 258.045L180.121 249.438C180.09 249.102 180.192 248.761 180.169 248.424C180.081 247.103 177.151 246.469 175.527 246.31C162.638 246.441 135.928 246.79 132.201 247.139Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 271.821C129.022 272.119 128.516 273.365 128.709 274.211C128.772 274.484 128.875 274.749 128.901 275.028L129.709 283.652C129.879 285.462 131.982 285.848 133.012 285.814C147.085 285.509 175.748 284.869 177.817 284.751C179.38 284.662 180.274 284.097 180.7 283.627C180.918 283.387 180.958 283.051 180.928 282.728L180.121 274.12C180.09 273.784 180.192 273.443 180.169 273.106C180.081 271.785 177.151 271.151 175.527 270.992C162.638 271.123 135.928 271.472 132.201 271.821Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 296.499C129.022 296.797 128.516 298.043 128.709 298.889C128.772 299.162 128.875 299.427 128.901 299.706L129.709 308.33C129.879 310.139 131.982 310.525 133.012 310.492C147.085 310.187 175.748 309.547 177.817 309.429C179.38 309.34 180.274 308.775 180.7 308.305C180.918 308.065 180.958 307.728 180.928 307.405L180.121 298.798C180.09 298.462 180.192 298.121 180.169 297.784C180.081 296.463 177.151 295.829 175.527 295.669C162.638 295.8 135.928 296.15 132.201 296.499Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.179 322.772C129.171 323.054 128.542 324.029 128.636 324.744C128.678 325.063 128.821 325.365 128.851 325.686L129.53 332.925C129.675 334.47 131.77 334.771 132.799 334.729C146.858 334.277 175.494 333.341 177.562 333.212C179.027 333.12 179.911 332.679 180.371 332.288C180.653 332.048 180.717 331.664 180.682 331.295L180.021 324.237C179.985 323.854 180.149 323.451 180.045 323.081C179.754 322.05 177.012 321.584 175.461 321.475C162.587 321.762 135.906 322.423 132.179 322.772Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M238.273 105.994C240.501 104.561 242.73 103.128 245.299 101.695C248.631 101.75 250.401 103.333 251.417 106.054C251.913 107.38 252.521 108.761 253.436 109.807C254.321 110.82 255.665 111.435 256.792 112.384C257.351 113.159 257.813 114.041 258.521 114.335C260.231 115.043 262.055 115.477 263.786 116.193C262.917 118.985 262.071 121.598 261.298 124.232C261.17 124.668 261.176 125.46 261.435 125.641C263.422 127.029 263.196 129.103 263.339 131.1C263.577 134.406 265.13 136.144 267.818 136.216C271.646 136.319 271.646 136.319 272.548 139.97C272.164 140.834 271.614 141.535 271.544 142.281C271.325 144.628 269.773 145.637 267.909 146.672C265.079 148.244 262.417 150.117 259.564 151.92C259.094 152.243 258.745 152.509 258.266 152.8C257.943 153.092 257.751 153.358 257.564 153.64C257.568 153.656 257.535 153.655 257.365 153.662C253.741 154.532 252.868 153.954 252.28 150.355C252.106 149.289 252.018 148.21 251.881 147.138C251.577 144.765 251.492 142.337 250.908 140.034C249.923 136.147 248.655 132.329 247.441 128.502C245.917 123.698 244.518 118.841 242.694 114.151C241.582 111.292 239.77 108.704 238.273 105.994Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M238.12 106.03C239.77 108.705 241.582 111.294 242.694 114.152C244.518 118.843 245.917 123.7 247.441 128.504C248.655 132.33 249.923 136.149 250.908 140.036C251.492 142.338 251.577 144.767 251.881 147.139C252.018 148.211 252.106 149.291 252.28 150.357C252.868 153.955 253.741 154.534 257.322 153.808C255.119 157.519 253.544 161.378 252.622 165.556C251.811 169.234 250.705 172.847 249.551 176.46C247.066 175.692 244.759 174.952 242.332 174.166C241.701 173.775 241.191 173.43 240.858 173.025C242.949 172.357 242.13 170.614 242.386 169.409C242.7 167.931 242.606 166.343 242.516 164.812C242.451 163.707 242.008 162.627 241.903 161.52C241.707 159.455 241.766 157.36 241.474 155.312C241.14 152.967 240.129 150.659 240.131 148.335C240.134 141.622 237.342 135.533 236.137 129.096C235.336 124.812 233.5 120.728 232.251 116.517C231.152 112.813 231.228 112.791 227.632 112.514C229.11 111.394 230.512 110.152 232.085 109.184C233.97 108.022 236 107.094 238.12 106.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.3\" d=\"M227.482 112.53C231.228 112.788 231.152 112.81 232.251 116.514C233.5 120.725 235.336 124.809 236.137 129.094C237.342 135.53 240.134 141.619 240.131 148.332C240.129 150.656 241.14 152.964 241.474 155.309C241.766 157.357 241.707 159.452 241.903 161.517C242.008 162.624 242.451 163.704 242.516 164.81C242.606 166.34 242.7 167.928 242.386 169.406C242.13 170.611 242.949 172.354 240.715 172.99C237.452 171.232 234.51 169.446 231.607 167.463C232.44 164.827 232.734 162.434 232.256 159.808C231.638 156.417 231.61 152.921 231.279 149.475C230.9 145.527 230.67 141.55 230.007 137.648C229.163 132.674 227.981 127.756 226.877 122.829C226.55 121.366 225.889 119.975 225.568 118.51C225.029 116.058 222.864 117.488 221.624 116.752C221.5 116.679 221.356 116.638 221.266 116.46C221.408 116.097 221.506 115.856 221.605 115.615C222.089 115.34 222.573 115.065 223.338 114.777C223.844 114.529 224.069 114.296 224.293 114.062C225.306 113.558 226.319 113.053 227.482 112.53Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.5\" d=\"M256.807 112.225C255.665 111.435 254.321 110.82 253.436 109.808C252.521 108.762 251.913 107.381 251.417 106.055C250.401 103.334 248.631 101.75 245.461 101.685C246.485 100.705 247.608 99.6078 248.909 98.7923C251.648 97.0763 254.479 95.5079 257.612 93.8596C259.109 94.2596 261.149 94.5069 261.271 95.1278C261.776 97.702 263.573 97.7951 265.282 97.9719C265.887 97.438 266.34 96.8559 266.935 96.5531C268.033 95.9948 269.241 95.6537 270.355 95.1227C271.452 94.5996 271.629 95.1439 271.518 96.1475C266.528 98.6965 263.838 102.93 261.79 107.849C260.834 108.543 259.99 109.157 259.24 109.87C258.771 110.316 258.445 110.91 257.955 111.512C257.506 111.798 257.156 112.012 256.807 112.225Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M271.616 96.0383C271.628 95.1433 271.452 94.5991 270.355 95.1221C269.241 95.6531 268.033 95.9943 266.935 96.5525C266.34 96.8554 265.887 97.4374 265.282 97.9714C263.573 97.7945 261.776 97.7014 261.271 95.1272C261.149 94.5064 259.109 94.259 257.766 93.8367C257.827 93.5005 258 93.0262 258.331 92.8559C261.799 91.07 265.231 89.1895 268.812 87.6597C270.067 87.124 272.12 86.973 273.58 86.869C275.4 86.7393 276.804 87.0832 278.774 86.869C278.949 89.1587 278.971 91.4866 278.827 94.0522C277.343 94.4573 276.279 94.5587 274.874 94.6091C274.403 94.7165 273.767 95.0067 273.275 95.3213C272.649 95.6205 272.133 95.8294 271.616 96.0383Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.2\" d=\"M219.86 117.117C220.24 116.885 220.599 116.786 221.09 116.635C221.356 116.641 221.5 116.681 221.624 116.755C222.864 117.49 225.029 116.06 225.568 118.513C225.889 119.978 226.549 121.368 226.877 122.832C227.981 127.759 229.163 132.677 230.007 137.65C230.67 141.552 230.9 145.529 231.279 149.477C231.61 152.923 231.638 156.419 232.256 159.811C232.734 162.437 232.44 164.83 231.453 167.385C230.436 167.71 229.612 167.916 228.788 168.121C229.243 168.822 229.68 169.537 230.166 170.217C230.323 170.435 230.611 170.56 230.834 170.888C230.39 172.317 230.527 173.246 232.093 173.591C232.452 173.67 232.947 174.288 232.943 174.655C232.926 176.7 232.752 178.744 232.674 180.79C232.6 182.766 232.512 184.745 232.557 186.72C232.58 187.792 232.867 188.857 232.85 189.938C230.738 189.578 228.821 189.145 226.883 188.851C225.007 188.568 223.109 188.429 221.097 188.166C220.611 187.726 220.248 187.347 219.87 186.778C219.723 185.733 219.47 184.877 219.473 184.022C219.563 161.853 219.679 139.683 219.791 117.514C219.807 117.426 219.823 117.338 219.86 117.117Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path d=\"M233.837 215.69C230.867 213.771 227.101 211.854 224.12 209.952C223.165 209.343 221.771 208.204 220.637 207.663C220.465 207.205 220.652 208.532 220.637 207.663C220.79 205.349 220.66 204.228 220.935 202.389C227.899 207.362 234.719 209.718 242.56 212.358C241.198 213.577 239.791 213.717 238.199 213.279C236.756 212.881 235.436 212.896 235.123 214.897C235.072 215.22 234.278 215.418 233.837 215.69C234.56 215.233 233.11 216.139 233.837 215.69Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M258.905 213.087C263.188 210.206 265.372 205.85 266.73 201.164C268.695 194.386 270.242 187.488 272.147 180.459C272.828 179.842 273.33 179.407 273.819 179.173C273.8 180.706 273.792 182.038 273.678 183.493C273.552 184.271 273.533 184.926 273.483 185.781C272.961 191.156 272.851 196.402 271.882 201.487C270.683 207.774 268.775 213.928 267.165 220.138C266.814 221.491 266.424 222.833 265.851 224.25C260.775 224.476 261.102 224.214 260.543 227.665C259.978 230.028 261.122 225.133 260.543 227.665C258.153 226.55 258.905 227.566 255.468 225.774C244.421 222.789 248.847 224.892 245.814 222.49C249.145 222.912 246.611 220.138 249.397 217.614C249.839 215.44 250.289 216.421 251.548 214.356C251.756 214.258 251.844 214.167 251.902 214.047C253.596 213.969 255.29 213.891 257.344 213.849C258.104 213.619 258.505 213.353 258.905 213.087Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.5\" d=\"M251.785 214.03C250.614 216.057 250.009 216.235 249.568 218.409C248.302 220.3 249.011 222.944 245.615 222.389C242.09 220.025 237.23 218.192 233.837 215.688C233.109 216.137 234.515 215.094 233.837 215.688C234.277 215.416 235.072 215.217 235.122 214.895C235.436 212.894 236.755 212.879 238.199 213.276C239.791 213.714 241.197 213.575 242.559 212.355C244.885 212.7 247.11 213.159 249.568 213.807C251.089 213.807 251.089 213.807 251.785 214.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M208.266 180.999C206.409 181.518 204.56 181.839 202.448 182.185C201.868 181.964 201.551 181.717 201.205 181.301C198.833 179.24 200.093 176.676 199.921 174.505C199.613 170.612 200.245 166.665 200.364 162.737C200.435 160.386 200.239 158.029 200.23 155.675C200.199 147.197 200.196 138.719 200.182 130.241C200.806 129.937 201.429 129.633 202.1 129.204C203.067 128.594 203.987 128.11 204.959 127.5C206.119 126.889 207.228 126.401 208.491 125.858C208.527 132.38 208.338 138.958 208.305 145.536C208.245 157.291 208.28 169.046 208.266 180.999Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M230.835 170.888C233.253 172.403 235.715 174.014 238.04 175.802C238.549 176.193 238.759 177.21 238.778 177.947C238.841 180.375 239.949 182.08 242.166 183.313C241.754 186.413 244.373 187.33 246.115 188.983C245.843 191.408 244.626 192.337 242.135 191.733C239.242 191.03 236.283 190.6 233.194 189.988C232.867 188.857 232.581 187.792 232.557 186.72C232.513 184.745 232.6 182.766 232.675 180.79C232.752 178.744 232.926 176.7 232.944 174.655C232.947 174.288 232.452 173.67 232.093 173.591C230.527 173.246 230.391 172.317 230.835 170.888Z\" fill=\"#B8C5FF\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M186.203 138.265C187.014 137.652 187.847 137.065 188.627 136.418C189.262 135.891 189.833 135.292 190.495 134.592C193.788 132.922 197.019 131.386 200.398 129.839C200.56 138.368 200.562 146.907 200.591 155.446C200.599 157.817 200.78 160.191 200.714 162.559C200.605 166.515 200.023 170.49 200.306 174.411C200.465 176.598 199.305 179.18 201.33 181.191C198.939 179.785 196.679 178.273 194.443 176.588C194.852 175.68 195.545 174.954 195.568 174.208C195.672 170.875 195.602 167.536 195.563 164.2C195.512 159.754 195.379 155.309 195.388 150.863C195.392 148.758 195.736 146.655 195.764 144.549C195.795 142.285 193.408 139.142 191.371 138.781C189.673 138.48 187.928 138.428 186.203 138.265Z\" fill=\"#DDD4E1\"/>\r\n <path opacity=\"0.2\" d=\"M220.333 117.101C220.381 145.336 220.625 174.232 220.534 202.435C220.53 203.523 220.854 205.565 220.834 206.866C219.48 206.441 217.342 204.751 216.184 204.01C213.469 202.272 210.79 200.443 208.105 198.39C208.117 182.635 208.085 167.141 208.14 151.647C208.171 142.976 208.029 134.507 208.14 125.837C208.14 125.837 208.467 125.447 208.491 125.357C211.323 123.186 214.115 121.072 216.948 119.046C217.808 118.431 219.253 117.552 220.333 117.101Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M197.515 182.331C196.94 181.924 196.513 181.553 195.939 181.166C195.091 180.679 194.39 180.208 193.465 179.615C191.772 178.426 190.301 177.36 188.798 176.309C188.766 176.322 188.835 176.314 188.773 176.183C187.94 175.413 187.168 174.774 186.354 173.981C186.919 171.828 187.935 173.861 188.822 173.676C190.749 174.738 192.572 175.707 194.394 176.677C196.666 178.232 198.938 179.787 201.369 181.409C201.821 181.731 202.114 181.987 202.498 182.327C202.228 182.789 201.795 183.533 201.517 183.479C200.209 183.229 198.944 182.759 197.515 182.331Z\" fill=\"#462D5C\"/>\r\n <path d=\"M245.624 336.046C245.962 327.813 246.346 319.777 246.684 311.4C246.601 310.873 246.565 310.688 246.663 310.391C247.032 309.078 247.336 307.886 247.489 306.675C248.181 301.227 248.697 295.754 249.53 290.328C250.462 284.267 251.752 278.262 252.733 272.208C254.063 264.004 255.233 255.774 256.502 247.56C257.131 243.486 257.827 239.422 258.507 235.183C259.086 232.651 259.651 230.288 260.411 227.928C262.843 228.075 265.081 228.355 267.317 228.337C270.98 228.306 274.64 228.026 278.304 227.951C282.808 227.86 282.66 228.499 282.756 223.553C283.677 223.526 284.412 223.51 285.137 223.663C284.48 226.914 285.322 227.82 288.398 227.467C290.12 227.27 291.87 227.292 293.58 227.033C294.837 226.842 296.049 226.356 297.523 225.932C298.584 226.113 300.054 226.551 301.529 226.572C303.471 226.599 305.417 226.299 307.451 226.266C307.979 227.996 308.469 229.588 308.846 231.206C310.305 237.477 310.102 243.842 309.802 250.382C309.747 251.164 309.745 251.771 309.682 252.401C309.538 252.525 309.441 252.608 309.143 252.706C308.242 252.699 307.434 252.424 306.828 252.662C303.893 253.81 300.916 254.913 298.144 256.387C295.736 257.668 293.693 259.63 291.282 260.905C289.341 261.932 288.398 263.455 287.828 265.345C285.949 271.571 284.118 277.812 282.286 284.052C281.59 286.424 280.604 288.802 281.993 291.246C280.641 295.2 279.446 299.128 278.144 303.14C278.033 303.478 278.028 303.732 277.966 304.16C277.722 305.8 277.534 307.266 277.228 308.848C276.504 312.627 275.9 316.29 275.247 320.151C274.92 324.956 274.642 329.565 274.288 334.325C274.077 335.647 273.945 336.818 273.773 338.168C273.547 340.053 273.337 341.757 273.178 343.466C272.791 347.608 272.428 351.753 271.988 356.041C271.903 356.827 271.885 357.468 271.822 358.285C271.734 359.064 271.692 359.668 271.552 360.389C271.419 361.016 271.385 361.525 271.307 362.203C271.24 362.834 271.217 363.297 271.106 363.886C270.963 364.516 270.907 365.02 270.807 365.663C270.763 365.996 270.764 366.19 270.676 366.49C270.476 366.947 270.364 367.298 270.266 367.67C270.281 367.691 270.262 367.644 270.126 367.68C269.435 368.021 268.881 368.326 268.139 368.61C266.225 368.289 264.508 367.846 262.769 367.725C260.617 367.576 258.446 367.694 256.278 367.518C256.298 365.112 254.81 365.467 253.396 365.65C250.297 366.049 247.239 366.167 244.519 364.218C244.63 360.843 244.741 357.468 244.952 353.79C245.022 353.103 244.991 352.719 244.96 352.336C245.081 349.722 245.201 347.108 245.402 344.193C245.443 343.648 245.405 343.404 245.366 343.161C245.467 340.855 245.568 338.549 245.624 336.046Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M244.856 352.393C244.991 352.719 245.022 353.102 244.941 353.587C244.803 353.276 244.778 352.864 244.856 352.393Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M245.278 343.21C245.404 343.404 245.443 343.648 245.393 343.987C245.267 343.809 245.228 343.534 245.278 343.21Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M290.412 98.4989C288.412 98.2111 286.383 97.4599 284.337 97.4119C278.439 97.2734 273.438 101.042 271.562 106.692C270.776 109.062 269.977 111.427 269.02 114.284C273.356 115.211 277.21 116.242 281.132 116.816C285.138 117.402 289.208 117.589 293.257 117.834C294.139 117.888 295.051 117.449 296.059 117.107C296.592 117.408 297.32 117.82 297.348 118.275C297.374 118.69 296.708 119.418 296.228 119.539C295.053 119.835 293.81 119.86 292.202 120.018C290.156 119.965 288.483 120.015 286.851 119.784C281.099 118.971 275.36 118.061 269.499 117.114C267.533 116.7 265.683 116.361 263.834 116.022C262.056 115.477 260.231 115.044 258.522 114.336C257.814 114.042 257.351 113.16 256.792 112.385C257.157 112.012 257.507 111.798 258.133 111.525C260.886 111.493 261.937 110.153 261.942 107.811C263.838 102.93 266.528 98.6968 271.519 96.1477C272.133 95.8302 272.65 95.6213 273.422 95.3326C274.021 95.0994 274.365 94.9461 274.709 94.7927C276.027 94.6254 277.344 94.4581 278.835 94.2534C283.202 94.4925 287.247 95.1754 290.412 98.4989Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M269.616 117.189C275.36 118.061 281.098 118.971 286.85 119.784C288.483 120.015 290.156 119.965 292.013 120.046C291.283 122.546 290.349 125.042 289.42 127.54C289.198 128.138 288.99 128.74 288.813 129.499C288.801 129.976 288.75 130.294 288.515 130.8C284.557 131.856 281.291 130.888 278.375 128.396C277.579 127.715 276.549 127.305 275.778 126.859C276.105 125.13 276.673 123.062 276.792 120.969C276.831 120.276 275.804 119.066 275.097 118.926C274.477 118.802 273.466 119.72 272.915 120.407C272.304 121.169 272.018 122.191 271.59 123.1C271.314 123.061 271.037 123.021 270.761 122.982C270.379 121.051 269.998 119.12 269.616 117.189Z\" fill=\"#442857\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"white\" fill-opacity=\"0.8\"/>\r\n <path d=\"M269.499 117.113C269.998 119.119 270.379 121.05 270.761 122.981C271.037 123.021 271.313 123.06 271.59 123.1C272.018 122.191 272.304 121.169 272.915 120.406C273.466 119.72 274.477 118.802 275.097 118.925C275.804 119.066 276.831 120.276 276.792 120.969C276.673 123.062 276.105 125.13 275.778 126.858C276.549 127.305 277.578 127.714 278.375 128.395C281.291 130.888 284.557 131.855 288.504 130.961C288.822 132.259 288.967 133.583 288.96 135.101C288.624 135.319 288.439 135.342 288.155 135.361C288.056 135.357 287.861 135.397 287.705 135.389C287.344 135.408 287.138 135.434 286.793 135.428C286.319 135.521 285.984 135.645 285.498 135.761C285.146 135.769 284.945 135.786 284.584 135.79C283.905 136.045 283.386 136.314 282.697 136.568C281.958 136.592 281.39 136.63 280.677 136.675C280.041 136.959 279.549 137.235 278.929 137.516C278.595 137.662 278.39 137.802 278.018 137.947C276.101 138.578 274.352 139.203 272.603 139.828C271.646 136.319 271.646 136.319 267.818 136.217C265.13 136.145 263.577 134.407 263.34 131.1C263.196 129.104 263.422 127.03 261.435 125.641C261.176 125.46 261.17 124.668 261.298 124.233C262.071 121.598 262.918 118.985 263.787 116.193C265.683 116.36 267.532 116.7 269.499 117.113Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.548 139.971C274.352 139.203 276.101 138.578 278.012 138.115C278.005 138.57 277.866 139.097 277.663 139.123C275.536 139.392 275.266 140.613 275.83 142.375C275.899 142.591 275.652 142.909 275.551 143.179C275.55 143.255 275.549 143.332 275.621 143.625C275.315 144.638 275.139 145.873 274.524 146.153C271.996 147.302 269.252 147.994 266.763 149.212C265.802 149.683 264.957 151.037 264.746 152.121C264.632 152.703 265.975 153.567 266.66 154.304C266.857 154.22 267.053 154.136 267.25 154.052C267.102 154.649 266.954 155.246 266.806 155.843C265.674 154.949 264.614 153.934 263.386 153.199C262.378 152.596 261.168 152.326 259.866 151.885C262.417 150.118 265.079 148.245 267.909 146.673C269.773 145.638 271.325 144.629 271.545 142.282C271.614 141.536 272.164 140.835 272.548 139.971Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M249.551 176.46C248.633 180.593 247.538 184.697 246.21 188.861C244.373 187.33 241.754 186.413 242.437 183.367C243.608 182.366 244.633 181.401 245.789 180.313C245.23 179.788 244.876 179.324 244.41 179.046C243.172 178.306 241.825 177.734 240.652 176.91C240.207 176.598 239.856 175.725 239.962 175.21C240.039 174.836 240.925 174.598 241.478 174.365C241.772 174.241 242.126 174.259 242.453 174.212C244.76 174.952 247.066 175.692 249.551 176.46Z\" fill=\"#CD938D\"/>\r\n <path d=\"M242.333 174.166C242.126 174.258 241.772 174.241 241.478 174.365C240.925 174.597 240.039 174.836 239.962 175.209C239.856 175.725 240.207 176.598 240.652 176.91C241.825 177.733 243.173 178.305 244.41 179.045C244.876 179.324 245.23 179.788 245.789 180.312C244.633 181.4 243.608 182.365 242.311 183.277C239.949 182.08 238.841 180.375 238.779 177.947C238.76 177.21 238.549 176.193 238.04 175.802C235.715 174.014 233.253 172.403 230.839 170.728C230.612 170.56 230.323 170.435 230.167 170.217C229.68 169.537 229.244 168.822 228.788 168.121C229.612 167.915 230.437 167.71 231.415 167.583C234.51 169.449 237.452 171.234 240.537 173.052C241.191 173.43 241.702 173.775 242.333 174.166Z\" fill=\"#462D5C\"/>\r\n <path opacity=\"0.5\" d=\"M261.79 107.849C261.937 110.154 260.886 111.494 258.232 111.452C258.445 110.911 258.771 110.317 259.24 109.871C259.99 109.158 260.834 108.544 261.79 107.849Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M270.126 367.681C269.774 368.604 269.286 369.563 268.687 370.629C268.484 370.14 268.392 369.543 268.314 368.789C268.881 368.327 269.436 368.022 270.126 367.681Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M285.199 223.1C285.199 223.1 285.202 223.301 285.175 223.398C284.412 223.511 283.676 223.527 282.756 223.554C282.571 223.565 282.564 223.4 282.686 223.228C283.605 223.071 284.402 223.085 285.199 223.1Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M271.988 356.041C272.078 356.592 272.1 357.288 271.995 358.046C271.885 357.467 271.903 356.826 271.988 356.041Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.106 363.887C271.17 364.322 271.146 364.884 270.987 365.485C270.907 365.02 270.962 364.517 271.106 363.887Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.551 360.391C271.638 360.831 271.625 361.39 271.482 361.992C271.385 361.527 271.419 361.018 271.551 360.391Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M270.676 366.49C270.688 366.804 270.612 367.225 270.394 367.647C270.364 367.298 270.476 366.947 270.676 366.49Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M278.144 303.141C278.239 303.341 278.228 303.625 278.119 303.948C278.027 303.733 278.033 303.478 278.144 303.141Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M296.656 378.556C297.801 378.443 299.021 378.466 300.38 378.589C299.256 378.69 297.993 378.691 296.656 378.556Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M290.511 378.069C291.664 377.97 292.883 378.015 294.244 378.157C293.115 378.24 291.846 378.227 290.511 378.069Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M285.239 377.568C285.981 377.467 286.772 377.511 287.695 377.658C286.98 377.745 286.134 377.728 285.239 377.568Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M306.375 378.769C306.89 378.543 307.513 378.418 308.298 378.326C307.801 378.53 307.141 378.7 306.375 378.769Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M283.027 377.259C283.222 377.163 283.456 377.163 283.787 377.239C283.611 377.328 283.338 377.342 283.027 377.259Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M311.858 376.416C311.795 376.211 311.828 375.975 311.961 375.661C312.025 375.85 311.991 376.118 311.858 376.416Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.415 378.329C309.546 378.116 309.752 377.984 310.084 377.859C309.97 378.049 309.731 378.229 309.415 378.329Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M200.724 192.653C200.338 191.644 200.06 190.728 199.739 189.5C198.92 186.891 198.144 184.593 197.515 182.332C198.943 182.76 200.209 183.23 201.516 183.481C201.795 183.534 202.228 182.79 202.742 182.302C204.604 181.859 206.314 181.526 208.024 181.193C210.682 182.602 213.326 184.04 216.006 185.406C217.148 185.988 218.366 186.422 219.718 186.945C220.248 187.347 221.514 188.06 222 188.5C221.398 192.064 220.252 195.332 219.5 199C216.892 198.818 213.831 198.36 211.248 198.033C210.316 197.915 209.375 197.875 208.061 197.793C207.184 197.785 206.684 197.783 206.185 197.78C204.401 196.103 202.617 194.425 200.724 192.653Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.93 170.13C272.866 171.07 272.798 171.863 272.612 172.776C272.411 171.383 272.327 169.871 272.355 168.222C272.612 168.293 272.756 168.501 272.917 168.945C272.933 169.181 272.933 169.394 272.933 169.394C272.931 169.591 272.928 169.787 272.93 170.13Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M271.253 163.849C271.604 164.499 271.949 165.311 272.194 166.228C271.811 165.558 271.529 164.784 271.253 163.849Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M272.29 175.081C272.389 175.697 272.342 176.362 272.181 177.145C272.093 176.551 272.119 175.84 272.29 175.081Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M280.677 136.675C280.3 137.019 279.777 137.369 279.156 137.615C279.549 137.235 280.041 136.959 280.677 136.675Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M284.585 135.792C284.224 136.067 283.704 136.33 283.026 136.588C283.386 136.315 283.905 136.047 284.585 135.792Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M286.793 135.43C286.562 135.632 286.191 135.802 285.735 135.872C285.984 135.648 286.319 135.523 286.793 135.43Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M288.155 135.362C288.254 135.366 288.126 135.513 288.126 135.513C288.126 135.513 287.944 135.5 287.903 135.449C287.861 135.398 288.056 135.358 288.155 135.362Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M309.101 273.918C309.311 275.714 309.437 277.665 309.445 279.752C309.224 277.949 309.12 276.012 309.101 273.918Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M309.886 293.605C310.115 295.065 310.301 296.721 310.378 298.515C310.128 297.035 309.985 295.418 309.886 293.605Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M288.106 344.837C287.878 343.36 287.723 341.692 287.677 339.887C287.918 341.383 288.048 343.015 288.106 344.837Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.536 287.03C309.733 287.938 309.877 289.025 309.915 290.236C309.7 289.31 309.592 288.26 309.536 287.03Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.968 255.924C309.121 256.785 309.115 257.731 309.025 258.811C308.897 257.967 308.853 256.988 308.968 255.924Z\" fill=\"#633870\"/>\r\n <path d=\"M310.326 301.447C310.548 302.209 310.73 303.149 310.81 304.21C310.567 303.429 310.427 302.527 310.326 301.447Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.745 267.323C308.984 267.594 309.119 267.941 309.174 268.425C308.943 268.174 308.793 267.787 308.745 267.323Z\" fill=\"#633870\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.771 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.77 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M316.309 184.256C316.483 188.727 316.853 193.203 316.757 197.669C316.699 200.367 315.918 203.049 315.44 205.905C314.77 206.887 314.122 207.703 313.253 208.665C312.81 209.05 312.588 209.288 312.366 209.526C311.595 209.979 310.825 210.432 309.913 210.946C309.65 209.312 309.293 207.597 309.443 205.927C310.379 195.498 311.441 185.079 312.427 174.654C312.624 172.57 312.675 170.472 312.795 168.162C313.389 169.691 314.034 171.422 314.557 173.19C314.919 174.411 315.111 175.682 315.422 177.097C315.474 177.588 315.483 177.912 315.496 178.54C315.621 179.193 315.742 179.542 315.862 179.891C315.907 180.92 315.951 181.948 315.997 183.287C316.103 183.817 316.206 184.037 316.309 184.256Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M312.448 209.628C312.587 209.287 312.809 209.049 313.151 208.776C313.025 209.07 312.778 209.4 312.448 209.628Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M314.729 210.202C314.552 210.156 314.445 210.043 314.337 209.93C314.384 209.886 314.469 209.8 314.472 209.803C314.586 209.909 314.692 210.023 314.729 210.202Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M268.115 224.198C268.52 223.994 269.082 223.872 269.75 223.832C269.328 224.036 268.8 224.158 268.115 224.198Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M274.663 223.758C274.836 223.592 275.135 223.499 275.495 223.493C275.3 223.663 275.044 223.747 274.663 223.758Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M298.93 222.81C300.45 222.61 302.1 222.531 303.915 222.513C302.406 222.693 300.734 222.812 298.93 222.81Z\" fill=\"#633870\"/>\r\n <path d=\"M296.585 222.961C296.919 222.775 297.261 222.723 297.769 222.729C297.668 223.126 297.402 223.467 297.136 223.807C296.955 223.57 296.774 223.333 296.585 222.961Z\" fill=\"#633870\"/>\r\n <path d=\"M312.363 165.456C312.239 164.958 312.14 164.479 312.041 164.001C312.205 163.97 312.368 163.939 312.532 163.909C312.629 164.334 312.726 164.759 312.721 165.339C312.619 165.494 312.433 165.516 312.433 165.516C312.433 165.516 312.387 165.475 312.363 165.456Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M272.997 169.356C272.933 169.397 272.933 169.183 272.934 169.076C272.977 169.085 273.019 169.2 272.997 169.356Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M315.97 179.808C315.741 179.544 315.621 179.195 315.524 178.702C315.724 178.946 315.901 179.335 315.97 179.808Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M316.401 184.188C316.206 184.036 316.103 183.817 316.036 183.475C316.213 183.608 316.353 183.864 316.401 184.188Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.error-common .error-image-container{display:flex}.error-common .error-image-container .error-image{width:fit-content}.error-common .error-content .error-content-main{max-width:468px}.error-common .error-content .error-content-main .break{height:1px;background-color:#e9e9e9}.error-common .error-content .error-content-main button.link1{border:none;background:transparent}.error-common .error-content .error-content-main .error-reference{align-items:flex-end}.error-common .error-content .error-content-main .error-reference button:focus{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px!important}.error-common .error-content .error-content-main .error-reference button.copy{background:#fafafa!important}.error-common .error-content .error-content-main .error-reference button.copy:hover{background:#f5f5f5!important}.error-common .error-content .error-content-main .error-reference button.copied{cursor:default!important;pointer-events:none!important;background:var(--success-color-A100-parts)!important;color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied:hover{background:var(--success-color-A100-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied i{color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .reference-data{background:#fafafa;border-radius:8px;gap:8px}.error-common .error-content .error-content-main .reference-data .code1{font-family:Roboto Mono;font-size:14px;font-style:normal;font-weight:500;line-height:normal;letter-spacing:.28px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FlexLayoutModule }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i1$4.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
|
|
7194
7194
|
}
|
|
7195
7195
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofErrorCommonComponent, decorators: [{
|
|
7196
7196
|
type: Component,
|
|
@@ -7200,7 +7200,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
7200
7200
|
TranslateModule,
|
|
7201
7201
|
MatButtonModule,
|
|
7202
7202
|
RouterModule
|
|
7203
|
-
], template: "<div \r\n fxLayout=\"row\" \r\n fxLayout.lt-md=\"column-reverse\" \r\n fxLayoutGap=\"80px\"\r\n class=\"error-common\">\r\n <div \r\n class=\"error-image-container\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"end\" fxLayoutAlign.lt-md=\"center\">\r\n @if (imageUrl) {\r\n <div class=\"m-v-auto error-image\">\r\n <!-- Note: empty 'alt' attribute is best practice for WCAG (will ignore this presentation only image) -->\r\n <img [src]=\"imageUrl\" alt=\"\" class=\"m-l-auto\">\r\n </div>\r\n } @else {\r\n <div class=\"m-v-auto error-image\">\r\n <ng-container *ngTemplateOutlet=\"errorCommonSvg\"></ng-container>\r\n </div>\r\n }\r\n </div>\r\n <div \r\n class=\"error-content\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"start\" fxLayoutAlign.lt-md=\"center\">\r\n <div class=\"error-content-main\">\r\n <h1>{{'armature.error-common.title' | translate}}</h1>\r\n <h3 class=\"text-medium-emphasis m-t-8\">\r\n {{'armature.error-common.description' | translate}}\r\n </h3>\r\n <button\r\n id=\"error-common-return-button\"\r\n mat-flat-button \r\n class=\"sof-button-v2 m-t-24\" \r\n [class.m-b-24]=\"showLogout\"\r\n theme=\"primary\" emphasis=\"solid\"\r\n [routerLink]=\"returnUrl ? [returnUrl] : ['/']\">\r\n {{'armature.error-common.return-button-label' | translate}}\r\n </button>\r\n @if (showLogout) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.logout.0' | translate}}\r\n <button id=\"error-common-logout-button\" (click)=\"logout()\" class=\"link1 p-a-0\">\r\n {{'armature.error-common.logout.1' | translate}}\r\n </button>\r\n {{'armature.error-common.logout.2' | translate}}\r\n </p>\r\n }\r\n <div class=\"break m-v-24\"></div>\r\n @if (contactInfo?.email || contactInfo?.phone) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.contact-support.0' | translate}}\r\n @if (contactInfo?.email) {\r\n <a [href]=\"'mailto:'+contactInfo?.email\" id=\"error-common-contact-support-email\" class=\"link1 m-r-4\">\r\n {{contactInfo?.email}}\r\n </a>\r\n }\r\n @if (contactInfo?.email && contactInfo?.phone) {\r\n or\r\n }\r\n @if (contactInfo?.phone) {\r\n <a [href]=\"'tel:'+contactInfo?.phone\" id=\"error-common-contact-support-email\" class=\"link1 m-r-4\">\r\n {{contactInfo?.phone}}\r\n </a>\r\n }\r\n {{'armature.error-common.contact-support.1' | translate}}\r\n </p>\r\n }\r\n <div class=\"error-reference m-t-16\" fxLayout=\"row\">\r\n <p class=\"body2 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.title' | translate}}\r\n </p>\r\n <button\r\n mat-flat-button\r\n [disableRipple]=\"true\"\r\n [disabled]=\"disableCopy\"\r\n (click)=\"copyErrorReferenceDataEvent()\"\r\n class=\"sof-button-v2 mini m-l-auto\"\r\n [class]=\"copyErrorReferenceDataButton?.class\"\r\n id=\"copy-error-reference-data-button\"\r\n aria-label=\"copy error reference\">\r\n <i class=\"ph-bold ph-{{copyErrorReferenceDataButton?.icon}}\" aria-hidden=\"true\"></i>\r\n {{copyErrorReferenceDataButton?.text | translate}}\r\n </button>\r\n </div>\r\n <div fxLayout=\"column\" class=\"reference-data p-a-16 m-t-8\">\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.timestamp' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.timestamp ? errorReference?.timestamp : '--'}}\r\n </span>\r\n </p>\r\n @if (errorReference?.sessionId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.session-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.sessionId}}</span>\r\n </p>\r\n }\r\n @if (errorReference?.errorId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.error-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.errorId}}</span>\r\n </p>\r\n }\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.page-title' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.pageTitle ? (errorReference?.pageTitle | translate) : '--'}}\r\n </span>\r\n </p>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- Svg from Figma (w/ primary palette variables added to certain paths for branding, per design) -->\r\n<ng-template #errorCommonSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"393\" height=\"388\" viewBox=\"0 0 393 388\" fill=\"none\">\r\n <path d=\"M190.094 364.84C189.155 364.84 188.985 361.348 189.001 358.521C189.012 356.501 190.624 354.891 192.64 354.765L200.626 354.266C202.928 354.122 204.875 355.95 204.875 358.257V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M190.094 364.84C188.517 364.84 189.109 354.985 189.109 354.985L204.875 354V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M91.7917 19.7826C92.9064 19.7659 93.51 19.9892 93.8611 20.3793C94.2277 20.7867 94.4357 21.5 94.4382 22.7523C94.4586 32.6471 94.4476 42.5416 94.447 52.4379C94.4421 138.806 94.4364 225.174 94.4314 311.542C94.4308 321.18 94.4352 330.817 94.4285 340.453C94.428 341.117 94.3986 341.618 94.323 342.001C94.2481 342.38 94.1356 342.602 93.9988 342.745C93.8648 342.884 93.6595 342.998 93.2996 343.068C92.9322 343.139 92.4399 343.158 91.7712 343.13C87.8652 342.967 83.9832 342.533 80.0515 342.205C77.0101 341.952 73.9713 341.691 70.9285 341.435C64.2721 340.874 57.6092 340.274 50.9421 339.767C48.4341 339.576 45.922 339.436 43.4177 339.292C40.9116 339.148 38.412 338.999 35.9187 338.791C28.2193 338.149 20.5367 337.384 12.6628 336.668C11.7845 333.029 11.5772 329.353 11.5789 325.641C11.5805 321.852 11.8037 317.921 11.7253 314.093C11.5348 304.787 11.6918 295.482 11.6912 286.154C11.689 256.258 11.6825 226.36 11.6794 196.464C11.678 182.662 11.6822 168.859 11.6824 155.057C11.6827 135.353 11.679 115.649 11.6824 95.9457C11.6851 79.8065 11.7036 63.6658 11.6931 47.5258C11.6917 45.2648 11.5639 43.0078 11.3894 40.639L11.3884 40.6283L11.3875 40.6185C11.295 39.8075 11.2975 39.1066 11.3035 38.2054C11.3486 38.0549 11.3932 37.9324 11.4412 37.806C11.4949 37.6644 11.5554 37.5079 11.6111 37.3168L11.6277 37.2601L11.6306 37.2006C11.7019 35.6606 11.7198 34.5268 11.8093 33.6342C11.8986 32.744 12.0518 32.2022 12.3279 31.8236C12.5944 31.4582 13.0279 31.174 13.8474 30.931C14.6742 30.6859 15.8246 30.5018 17.4568 30.2894C25.1666 29.2861 32.8607 28.1644 40.5496 27.0443C42.777 26.7198 44.9987 26.3599 47.2156 26.0004C49.4338 25.6406 51.6478 25.2821 53.866 24.9594C59.3344 24.1638 64.7835 23.4777 70.2664 22.7006C73.0016 22.3129 75.7346 21.909 78.4656 21.5052C81.1971 21.1014 83.9271 20.697 86.6589 20.309C88.392 20.0628 90.0953 19.8081 91.7917 19.7826ZM83.0515 166.273C81.0879 166.354 79.1541 166.296 77.1501 166.32C76.478 166.328 75.9067 166.365 75.4343 166.469C74.956 166.575 74.5435 166.758 74.2244 167.082C73.9059 167.406 73.7278 167.824 73.6257 168.308C73.5248 168.787 73.4906 169.368 73.4871 170.055C73.4587 175.587 73.4602 181.121 73.446 187.087V187.088C73.447 192.259 73.4732 197.422 73.4324 202.586C73.4267 203.306 73.5218 204.008 73.9089 204.538C74.3193 205.101 74.9738 205.366 75.8328 205.393C78.349 205.472 80.9444 205.675 83.5076 205.591C83.7621 205.583 84.0123 205.494 84.2273 205.384C84.4477 205.272 84.663 205.122 84.8562 204.955C85.2234 204.639 85.5928 204.19 85.7048 203.732C86.0603 202.275 86.0668 200.726 86.072 199.287C86.108 189.346 86.1003 179.394 86.1287 169.455C86.1313 168.542 85.9776 167.7 85.4626 167.1C84.9285 166.478 84.1084 166.229 83.0515 166.273Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M10.8046 38.1268C10.9183 37.7277 11.0325 37.5152 11.1309 37.1772C11.4116 31.1118 10.8786 30.6414 17.392 29.7938C25.0976 28.791 32.7881 27.67 40.4777 26.5499C44.9234 25.9022 49.3482 25.1109 53.7941 24.4641C59.2554 23.6696 64.732 22.9797 70.1964 22.2052C75.6636 21.4304 81.1215 20.5909 86.5884 19.8143C88.3121 19.5694 90.0497 19.3086 91.7844 19.2825C94.1145 19.2476 94.9332 20.1945 94.9384 22.751C94.9588 32.6466 94.9472 42.5422 94.9466 52.4379C94.9417 138.806 94.9366 225.174 94.9316 311.542C94.931 321.179 94.9352 330.816 94.9285 340.453C94.9266 343.137 94.4727 343.743 91.7503 343.63C87.8307 343.467 83.9226 343.03 80.01 342.704C76.9686 342.451 73.928 342.189 70.8868 341.933C64.2265 341.372 57.569 340.772 50.9045 340.265C45.8996 339.884 40.8784 339.707 35.8771 339.29C28.0599 338.637 20.2534 337.859 12.2616 337.134C10.3321 329.514 11.3822 321.781 11.225 314.103C11.0343 304.79 11.1923 295.47 11.1916 286.153C11.1895 256.257 11.183 226.361 11.1799 196.465C11.1785 182.662 11.1817 168.86 11.1819 155.057C11.1822 135.353 11.179 115.65 11.1824 95.9457C11.1851 79.8058 11.2033 63.6659 11.1929 47.526C11.1914 45.2829 11.0649 43.0398 10.8907 40.6755C10.7918 39.8073 10.7984 39.0603 10.8046 38.1268ZM73.9462 187.088C73.9471 192.255 73.9731 197.423 73.9323 202.59C73.9213 203.976 74.3184 204.845 75.8488 204.893C78.3974 204.973 80.9488 205.174 83.4913 205.091C84.108 205.071 85.0682 204.233 85.2194 203.613C85.5585 202.223 85.5672 200.734 85.5725 199.286C85.6084 189.342 85.6003 179.398 85.6286 169.454C85.6337 167.701 85.0224 166.692 83.0725 166.773C81.1031 166.854 79.1283 166.796 77.1561 166.82C74.4998 166.852 74.0014 167.344 73.9875 170.058C73.9591 175.589 73.9603 181.12 73.9462 187.088Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M186.004 144.468C186.004 144.468 149.182 144.07 139.629 143.572C136.245 143.396 135.549 147.653 135.549 147.653C135.549 148.847 135.628 175.418 135.549 177.011C135.469 178.603 137.373 180.46 138.335 181.19C153.462 180.958 183.914 181.19 185.307 181.19C186.698 181.19 188.625 179.034 189.487 177.608C189.255 168.286 189.487 150.041 189.487 149.145C189.487 148.461 188.393 144.468 186.004 144.468Z\" fill=\"white\"/>\r\n <path d=\"M374.345 245.945C375.012 255.951 375.552 265.967 376.385 275.959C377.152 285.153 378.234 294.32 379.167 303.806C379.238 304.344 379.32 304.574 379.401 304.805C379.464 305.543 379.526 306.282 379.437 307.307C379.36 308.5 379.316 309.435 379.528 310.309C381.051 316.587 382.106 322.916 381.858 329.408C381.855 329.504 382.049 329.608 382.15 329.708C382.267 330.611 382.384 331.513 382.393 332.703C382.453 333.791 382.62 334.593 382.787 335.394C382.848 335.854 382.909 336.313 382.855 337.043C382.879 337.839 383.018 338.366 383.157 338.893C383.241 339.776 383.324 340.659 383.303 341.818C383.327 342.355 383.455 342.616 383.62 343.043C383.749 344.517 383.84 345.826 383.788 347.235C383.578 349.18 383.485 351.024 383.461 352.869C383.453 353.478 383.712 354.093 383.692 354.7C383.661 355.645 383.495 356.587 383.231 357.579C382.288 357.921 381.5 358.214 380.524 358.513C377.815 358.474 375.294 358.393 372.774 358.396C369.453 358.401 366.132 358.472 362.698 358.523C362.51 358.527 362.435 358.523 362.286 358.398C361.594 357.726 360.975 357.174 360.339 356.455C360.256 355.729 360.191 355.17 360.157 354.421C359.861 352.607 359.534 350.983 359.198 349.203C359.139 348.742 359.089 348.437 359.097 347.973C359.01 347.315 358.863 346.814 358.711 346.156C358.662 345.69 358.617 345.381 358.639 344.917C358.568 344.257 358.43 343.753 358.29 343.094C358.223 342.639 358.157 342.339 358.147 341.905C358.003 341.456 357.802 341.142 357.63 340.643C357.278 337.525 356.884 334.592 356.525 331.656C356.377 330.44 355.67 330.082 354.529 330.02C354.484 326.25 354.486 322.689 354.445 319.128C354.434 318.119 354.438 317.076 354.197 316.107C351.673 306.002 349.052 295.921 346.557 285.81C343.833 274.777 341.201 263.722 338.553 252.672C336.885 245.709 335.222 238.744 333.642 231.762C333.252 230.038 333.192 228.24 332.939 226.135C333.617 226.032 334.505 225.789 335.396 225.781C340.429 225.735 345.463 225.713 350.496 225.759C352.057 225.773 352.853 225.256 352.702 223.616C352.648 223.039 352.679 222.454 352.789 221.837C352.988 221.788 353.069 221.776 353.231 221.874C353.699 221.917 354.086 221.85 354.627 221.789C354.982 221.831 355.184 221.866 355.312 222.033C354.171 224.995 354.387 225.321 357.38 225.332C359.926 225.341 362.473 225.334 365.021 225.511C364.586 227.345 364.282 228.987 365.363 230.49C364.284 231.211 362.805 231.766 362.598 232.625C362.119 234.608 361.774 236.857 362.249 238.784C363.128 242.358 364.88 245.618 367.999 247.907C368.71 248.428 369.389 248.994 370.082 249.539C370.547 248.753 371.11 248.006 371.452 247.17C371.861 246.17 371.971 245.043 372.426 244.071C372.683 243.522 373.372 243.174 373.954 242.904C374.082 243.704 374.122 244.336 374.076 245.033C374.108 245.381 374.226 245.663 374.345 245.945Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M382.835 335.221C382.62 334.591 382.453 333.79 382.392 332.872C382.626 333.521 382.755 334.285 382.835 335.221Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.218 338.742C383.018 338.365 382.879 337.838 382.843 337.216C383.057 337.612 383.168 338.102 383.218 338.742Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.868 342.709C383.926 342.831 383.758 342.881 383.67 342.878C383.455 342.614 383.327 342.353 383.294 342.008C383.529 342.144 383.67 342.365 383.868 342.709Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M386.55 387.009C386.753 386.948 387.036 386.989 387.342 387.145C387.12 387.21 386.875 387.161 386.55 387.009Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M374.077 245.032C374.239 244.963 374.315 244.96 374.506 244.96C374.584 245.189 374.548 245.414 374.428 245.792C374.227 245.662 374.109 245.38 374.077 245.032Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M379.5 304.747C379.32 304.572 379.239 304.341 379.214 303.993C379.38 304.147 379.489 304.419 379.5 304.747Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M365.364 230.488C368.266 233.048 370.99 235.637 373.809 238.355C373.925 239.792 373.946 241.1 373.917 242.571C373.373 243.173 372.683 243.521 372.426 244.069C371.971 245.041 371.861 246.169 371.452 247.168C371.11 248.004 370.548 248.751 370.083 249.538C369.389 248.992 368.711 248.427 368 247.905C364.88 245.616 363.128 242.356 362.249 238.783C361.775 236.855 362.119 234.607 362.598 232.624C362.806 231.764 364.284 231.21 365.364 230.488Z\" fill=\"#6E4446\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M360.157 354.422C359.753 352.947 359.38 351.282 359.107 349.488C359.534 350.983 359.861 352.608 360.157 354.422Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M362.287 358.395C361.66 357.991 360.96 357.467 360.308 356.781C360.975 357.172 361.594 357.723 362.287 358.395Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M358.64 344.914C358.425 344.531 358.277 343.993 358.21 343.351C358.43 343.751 358.568 344.255 358.64 344.914Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M359.097 347.972C358.877 347.594 358.716 347.059 358.635 346.418C358.863 346.812 359.01 347.313 359.097 347.972Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M353.231 221.874C353.532 221.706 353.915 221.649 354.385 221.687C354.086 221.849 353.699 221.917 353.231 221.874Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M357.576 341.616C357.538 341.415 357.55 341.298 357.582 341.003C357.802 341.14 358.003 341.455 358.147 341.904C357.936 341.925 357.781 341.812 357.576 341.616Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M334.393 121.861C333.061 121.528 331.702 121.273 330.41 120.825C329.81 120.617 329.341 120.034 328.812 119.621C329.269 119.144 329.724 118.259 330.183 118.257C332.606 118.247 333.279 116.553 333.921 114.765C335.464 110.461 338.079 107.021 342.144 104.564C342.568 104.308 342.915 104.168 343.56 103.965C345.212 103.492 346.567 103.081 347.921 102.67C349.771 102.675 351.621 102.679 353.731 102.817C354.443 103.109 354.896 103.268 355.349 103.428C356.206 103.933 357.063 104.438 357.806 105.066C354.434 105.12 350.988 104.34 347.958 105.134C342.154 106.654 338.586 110.939 336.968 116.715C336.253 119.267 336.402 119.628 339.01 120.086C346.807 121.453 354.619 122.739 362.443 123.949C363.539 124.118 364.729 123.682 366.044 123.533C366.66 123.585 367.107 123.629 367.554 123.674C368.315 126.119 368.012 126.535 365.449 126.546C364.739 126.549 364.029 126.539 363.029 126.399C362.197 126.074 361.668 125.796 361.11 125.712C354.657 124.738 348.199 123.794 341.602 122.75C339.106 122.392 336.75 122.127 334.393 121.861Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M368.637 370.073C369.155 369.831 369.789 369.678 370.591 369.581C370.09 369.811 369.421 369.986 368.637 370.073Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M365.095 370.461C365.372 370.273 365.741 370.178 366.211 370.158C365.937 370.34 365.562 370.447 365.095 370.461Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M332.159 218.766C332.6 218.765 333.04 218.764 333.644 218.766C333.237 221.467 335.722 220.627 336.914 221.508C333.876 221.707 330.764 221.745 327.654 221.841C326.806 221.868 325.962 222.07 324.943 222.222C324.628 222.177 324.486 222.102 324.404 221.794C326.24 221.359 328.014 221.011 329.791 220.997C331.432 220.984 332.306 220.502 332.159 218.766Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M366.239 222.247C365.547 222.268 364.942 222.149 364.227 221.924C365.011 221.277 365.906 220.737 366.802 220.197C366.925 220.286 367.049 220.375 367.172 220.464C366.89 221.012 366.608 221.56 366.239 222.247Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M386.463 170.42C386.68 170.651 386.897 171.028 387.008 171.496C386.756 171.247 386.61 170.907 386.463 170.42Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M323.784 253.025C323.843 251.889 323.903 250.957 324.078 249.9C324.409 253.965 324.641 258.155 324.84 262.346C325.028 266.329 325.182 270.314 325.29 274.495C324.9 273.475 324.329 272.268 324.279 271.039C324.038 265.106 323.937 259.166 323.784 253.025Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.758 299.812C325.459 298.007 325.611 295.871 326.231 293.582C326.489 295.513 326.644 297.562 326.758 299.812Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.268 290.645C326.033 288.894 325.84 286.943 325.746 284.867C325.999 286.643 326.154 288.544 326.268 290.645Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M325.811 283.227C325.567 281.784 325.37 280.145 325.261 278.36C325.519 279.82 325.688 281.425 325.811 283.227Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M327.126 305.077C326.916 304.173 326.755 303.088 326.701 301.877C326.93 302.799 327.052 303.848 327.126 305.077Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M324.288 248.332C324.131 247.794 324.057 247.14 324.092 246.381C324.257 246.922 324.314 247.569 324.288 248.332Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M330.087 336.658C329.796 336.337 329.635 335.993 329.5 335.504C329.757 335.785 329.987 336.209 330.087 336.658Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M324.847 227.057C324.696 226.726 324.677 226.367 324.728 225.841C324.858 226.125 324.919 226.577 324.847 227.057Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M324.476 229.694C324.35 229.342 324.353 228.949 324.47 228.458C324.591 228.79 324.597 229.222 324.476 229.694Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M351.704 357.263C351.689 356.89 351.795 356.484 352.052 356.008C352.078 356.368 351.951 356.799 351.704 357.263Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M341.742 122.844C348.199 123.796 354.657 124.74 361.11 125.714C361.668 125.798 362 126 363 126.379C362.82 127.689 362.378 128.885 362.065 130.232C361.674 131.205 361.318 132.004 360.843 133.052C360.506 133.819 360.286 134.337 360.066 134.854C359.897 135.252 359.774 135.61 359.317 135.74C356.443 136.556 355.011 135.607 354.394 132.613C353.971 131.968 353.596 131.466 353.209 130.788C353.224 130.253 353.166 129.861 353.289 129.538C353.844 128.081 353.457 126.601 352.082 126.379C351.229 126.241 350.062 127.51 349.177 128.304C348.736 128.699 348.711 129.523 348.32 130.012C347.928 130.503 347.155 131.243 346.834 131.123C346.216 130.89 345.692 130.187 345.339 129.562C345.12 129.174 345.234 128.563 345.292 128.063C345.582 125.59 345.22 123.58 342.136 123.339C341.992 123.328 341.873 123.016 341.742 122.844Z\" fill=\"#382857\"/>\r\n <path d=\"M365.875 123.529C364.729 123.684 363.539 124.12 362.443 123.951C354.62 122.741 346.807 121.455 339.01 120.087C336.402 119.63 336.253 119.269 336.968 116.717C338.586 110.941 342.154 106.656 347.958 105.136C350.988 104.342 354.434 105.121 357.892 105.192C359.812 106.657 361.76 107.928 363.202 109.625C365.846 112.738 366.156 116.59 365.879 120.896C365.876 122.034 365.875 122.781 365.875 123.529Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M342.922 144.213C341.481 144.155 340.036 144.145 338.601 144.026C336.29 143.834 334.109 143.372 333.179 140.651C333.041 138.954 332.934 137.366 332.979 135.781C333.018 134.375 333.037 133.16 331.569 132.25C331.107 131.963 330.966 130.549 331.217 129.84C332.137 127.247 333.284 124.734 334.369 122.027C336.75 122.127 339.106 122.393 341.602 122.751C341.873 123.015 341.992 123.327 342.136 123.338C345.22 123.579 345.582 125.589 345.292 128.062C345.234 128.562 345.12 129.173 345.339 129.56C345.692 130.186 346.216 130.889 346.834 131.121C347.155 131.242 347.928 130.502 348.32 130.011C348.711 129.522 348.736 128.698 349.177 128.302C350.062 127.508 351.229 126.239 352.082 126.377C353.457 126.6 353.844 128.08 353.289 129.537C353.166 129.86 353.224 130.251 353.184 130.954C353.018 132.059 352.866 132.823 352.715 133.585C352.716 133.584 352.718 133.582 352.563 133.604C351.487 135.214 350.566 136.802 349.647 138.389C349.647 138.388 349.648 138.387 349.517 138.455C348.078 139.753 346.792 141.006 345.454 142.201C344.651 142.918 343.768 143.546 342.922 144.213Z\" fill=\"#6E4446\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M321.864 217.996C322.261 218.661 322.563 219.434 322.85 220.372C322.48 219.726 322.124 218.915 321.864 217.996Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M321.953 211.853C322.107 212.284 322.149 212.806 322.074 213.415C321.918 212.983 321.879 212.463 321.953 211.853Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M354.442 132.756C355.011 135.607 356.496 136.561 359.314 135.741C359.848 137.924 360.563 140.59 361 143C355.053 146.773 349.893 152.484 345 157.5C344.498 155.646 344.395 152.763 343.958 150.779C343.806 150.088 343.654 149.397 343.431 148.533C343.36 148.36 343.457 148.348 343.636 148.383C347.571 146.121 349.075 142.523 349.648 138.388C349.648 138.388 349.647 138.39 349.801 138.37C350.875 136.761 351.797 135.172 352.718 133.583C352.718 133.583 352.716 133.585 352.84 133.52C353.456 133.221 353.949 132.989 354.442 132.756Z\" fill=\"#6E4446\"/>\r\n <path d=\"M354.661 132.608C354.216 132.983 353.095 133.628 352.5 133.628C352.527 132.931 353.13 131.43 353.307 130.5C353.707 130.836 354.238 131.963 354.661 132.608Z\" fill=\"#382857\"/>\r\n <path d=\"M350 138C350.482 142.043 347.571 146.121 343.656 148.428C343.305 147.146 343.191 145.466 343 144C343.848 143.158 344.698 142.717 345.5 142C346.838 140.804 348.561 139.297 350 138Z\" fill=\"#382857\"/>\r\n <path d=\"M352.618 133.541C353 133.5 349.618 138.541 349.118 140.041C349.118 138.541 351.542 135.151 352.618 133.541Z\" fill=\"#382857\"/>\r\n <path d=\"M119.423 10.3316C126.735 10.5908 141.577 12.5721 164.607 14.2994C184.511 15.7921 198.643 19.1764 207.6 21.3658C210.217 22.0056 211.565 23.2196 212.239 24.3726C212.566 24.9312 212.417 25.4763 212.025 25.8433H212.974C213.172 26.1753 212.95 27.212 213.472 27.8336C215.561 30.35 218.151 334.742 211.979 340.917C211.782 341.113 211.393 341.31 211.382 341.315C210.951 341.779 209.252 342.469 205.51 343.106C208.892 339.724 209.195 338.432 209.192 338.628C210.909 237.541 211.867 42.5867 208.839 26.0845L117.719 15.7945C116.708 15.6801 115.909 14.8052 116.211 13.8336C116.736 12.145 117.916 10.9748 118.675 10.5025C118.899 10.363 119.159 10.3223 119.423 10.3316Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M119.425 10.332C126.738 10.5931 141.579 12.5853 164.607 14.3223C184.511 15.8236 198.643 19.2268 207.6 21.4287C209.817 21.9738 211.121 22.9344 211.879 23.9199H212.974C213.173 24.2536 212.949 25.2966 213.472 25.9219C215.562 28.431 218.152 334.589 211.979 340.798C211.782 340.995 211.394 341.192 211.382 341.198C210.951 341.665 209.252 342.359 205.51 343C208.893 339.597 209.196 338.299 209.192 338.496C210.856 239.968 211.805 52.7698 209.106 26.2041L117.718 15.8252C116.707 15.7104 115.91 14.8365 116.208 13.8643C116.731 12.1615 117.913 10.9805 118.673 10.5039C118.898 10.3629 119.16 10.3226 119.425 10.332Z\" fill=\"black\" fill-opacity=\"0.2\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 222.738C122.466 222.738 122.961 223.233 122.961 223.844V231.679C122.961 232.27 122.718 232.922 122.339 233.38C121.959 233.837 121.385 234.155 120.749 233.906C120.644 233.865 120.555 233.802 120.489 233.716C120.424 233.63 120.394 233.536 120.38 233.451C120.367 233.368 120.368 233.284 120.371 233.212C120.372 233.175 120.374 233.137 120.377 233.101C120.379 233.065 120.381 233.031 120.382 232.997L120.751 223.8C120.774 223.207 121.262 222.738 121.855 222.738Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 101.524C122.466 101.524 122.961 102.019 122.961 102.63V110.465C122.961 111.056 122.718 111.708 122.339 112.166C121.959 112.623 121.385 112.941 120.749 112.692C120.644 112.651 120.555 112.589 120.489 112.502C120.424 112.416 120.394 112.323 120.38 112.237C120.367 112.154 120.368 112.07 120.371 111.998C120.372 111.961 120.374 111.923 120.377 111.888C120.379 111.852 120.381 111.817 120.382 111.783L120.751 102.586C120.774 101.993 121.262 101.524 121.855 101.524Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 82.6164C122.466 82.6164 122.961 83.1113 122.961 83.7219V91.5568C122.961 92.1484 122.718 92.8004 122.339 93.258C121.959 93.7152 121.385 94.0335 120.749 93.7844C120.644 93.7432 120.555 93.6807 120.489 93.5939C120.424 93.5084 120.394 93.4147 120.38 93.3293C120.367 93.2462 120.368 93.1625 120.371 93.09C120.372 93.0531 120.374 93.0149 120.377 92.9797C120.379 92.9437 120.381 92.9094 120.382 92.8752L120.751 83.6779C120.774 83.0851 121.262 82.6164 121.855 82.6164Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 59.9263C122.466 59.9263 122.961 60.4213 122.961 61.0318V68.8668C122.961 69.4584 122.718 70.1103 122.339 70.5679C121.959 71.0251 121.385 71.3435 120.749 71.0943C120.644 71.0531 120.555 70.9907 120.489 70.9039C120.424 70.8184 120.394 70.7246 120.38 70.6392C120.367 70.5562 120.368 70.4724 120.371 70.4C120.372 70.363 120.374 70.3248 120.377 70.2896C120.379 70.2536 120.381 70.2194 120.382 70.1851L120.751 60.9879C120.774 60.395 121.262 59.9264 121.855 59.9263Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 35.6439C122.466 35.6439 122.961 36.1389 122.961 36.7494V44.5844C122.961 45.176 122.718 45.8279 122.339 46.2855C121.959 46.7427 121.385 47.0611 120.749 46.8119C120.644 46.7707 120.555 46.7082 120.489 46.6215C120.424 46.536 120.394 46.4422 120.38 46.3568C120.367 46.2738 120.368 46.19 120.371 46.1176C120.372 46.0806 120.374 46.0424 120.377 46.0072C120.379 45.9712 120.381 45.937 120.382 45.9027L120.751 36.7054C120.774 36.1126 121.262 35.644 121.855 35.6439Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 247.817C122.466 247.817 122.961 248.312 122.961 248.922V256.757C122.961 257.349 122.718 258.001 122.339 258.459C121.959 258.916 121.385 259.234 120.749 258.985C120.644 258.944 120.555 258.881 120.489 258.794C120.424 258.709 120.394 258.615 120.38 258.53C120.367 258.447 120.368 258.363 120.371 258.291C120.372 258.254 120.374 258.215 120.377 258.18C120.379 258.144 120.381 258.11 120.382 258.076L120.751 248.878C120.774 248.286 121.262 247.817 121.855 247.817Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 272.893C122.466 272.893 122.961 273.388 122.961 273.998V281.833C122.961 282.425 122.718 283.077 122.339 283.534C121.959 283.991 121.385 284.31 120.749 284.061C120.644 284.02 120.555 283.957 120.489 283.87C120.424 283.785 120.394 283.691 120.38 283.606C120.367 283.523 120.368 283.439 120.371 283.366C120.372 283.329 120.374 283.291 120.377 283.256C120.379 283.22 120.381 283.186 120.382 283.151L120.751 273.954C120.774 273.361 121.262 272.893 121.855 272.893Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 297.973C122.466 297.973 122.961 298.468 122.961 299.079V306.913C122.961 307.505 122.718 308.157 122.339 308.615C121.959 309.072 121.385 309.39 120.749 309.141C120.644 309.1 120.555 309.037 120.489 308.951C120.424 308.865 120.394 308.771 120.38 308.686C120.367 308.603 120.368 308.519 120.371 308.447C120.372 308.41 120.374 308.372 120.377 308.336C120.379 308.3 120.381 308.266 120.382 308.232L120.751 299.035C120.774 298.442 121.262 297.973 121.855 297.973Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 323.052C122.466 323.052 122.961 323.547 122.961 324.157V331.992C122.961 332.584 122.718 333.236 122.339 333.693C121.959 334.151 121.385 334.469 120.749 334.22C120.644 334.179 120.555 334.116 120.489 334.029C120.424 333.944 120.394 333.85 120.38 333.765C120.367 333.682 120.368 333.598 120.371 333.526C120.372 333.489 120.374 333.45 120.377 333.415C120.379 333.379 120.381 333.345 120.382 333.311L120.751 324.113C120.774 323.521 121.262 323.052 121.855 323.052Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M195.122 38.87L186.048 38.6161C185.613 38.6039 185.251 38.9463 185.239 39.3807L185.195 40.954C185.177 41.6057 185.69 42.1488 186.342 42.167L196.862 42.4613C197.432 42.4773 197.778 42.6209 198.089 42.1435C199.118 40.5657 197.005 38.9227 195.122 38.87Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 62.2446L186.048 61.9906C185.613 61.9785 185.251 62.3208 185.239 62.7553L185.195 64.3286C185.177 64.9802 185.69 65.5233 186.342 65.5415L196.862 65.8359C197.432 65.8518 197.778 65.9954 198.089 65.5181C199.118 63.9403 197.005 62.2972 195.122 62.2446Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 85.6176L186.048 85.3637C185.613 85.3515 185.251 85.6938 185.239 86.1283L185.195 87.7016C185.177 88.3532 185.69 88.8963 186.342 88.9145L196.862 89.2089C197.432 89.2248 197.778 89.3684 198.089 88.8911C199.118 87.3133 197.005 85.6702 195.122 85.6176Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 106.429L186.048 106.175C185.613 106.163 185.251 106.505 185.239 106.94L185.195 108.513C185.177 109.164 185.69 109.708 186.342 109.726L196.862 110.02C197.432 110.036 197.778 110.18 198.089 109.702C199.118 108.124 197.005 106.481 195.122 106.429Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 222.092L186.708 222.28C186.323 222.289 186.018 222.609 186.027 222.994L186.06 224.388C186.073 224.966 186.552 225.423 187.13 225.409L196.454 225.192C196.959 225.18 197.272 225.291 197.526 224.855C198.364 223.411 196.42 222.053 194.751 222.092Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 246.546L186.708 246.734C186.323 246.743 186.018 247.063 186.027 247.448L186.06 248.842C186.073 249.42 186.552 249.877 187.13 249.864L196.454 249.646C196.959 249.634 197.272 249.745 197.526 249.309C198.364 247.866 196.42 246.507 194.751 246.546Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.089 271.009L186.07 271.219C185.639 271.229 185.297 271.588 185.307 272.019L185.343 273.583C185.359 274.23 185.896 274.743 186.544 274.728L196.999 274.484C197.565 274.471 197.915 274.596 198.2 274.106C199.14 272.488 196.96 270.965 195.089 271.009Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.376 295.876L185.358 296.087C184.926 296.097 184.584 296.455 184.594 296.887L184.631 298.45C184.646 299.098 185.183 299.611 185.831 299.596L196.286 299.352C196.852 299.338 197.203 299.463 197.487 298.974C198.428 297.355 196.248 295.833 194.376 295.876Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.411 319.8L185.393 320.011C184.961 320.021 184.619 320.379 184.629 320.811L184.666 322.375C184.681 323.022 185.218 323.535 185.866 323.52L196.321 323.276C196.887 323.263 197.238 323.387 197.522 322.898C198.463 321.28 196.283 319.757 194.411 319.8Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.169 45.5248L186.094 45.2709C185.659 45.2588 185.297 45.6011 185.285 46.0355L185.241 47.6088C185.223 48.2605 185.736 48.8036 186.388 48.8218L196.908 49.1162C197.478 49.1321 197.824 49.2757 198.135 48.7983C199.164 47.2205 197.052 45.5775 195.169 45.5248Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 68.8994L186.094 68.6455C185.659 68.6333 185.297 68.9756 185.285 69.4101L185.241 70.9834C185.223 71.635 185.736 72.1781 186.388 72.1963L196.908 72.4907C197.478 72.5066 197.824 72.6502 198.135 72.1729C199.164 70.5951 197.052 68.952 195.169 68.8994Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 92.2724L186.094 92.0185C185.659 92.0063 185.297 92.3487 185.285 92.7831L185.241 94.3564C185.223 95.0081 185.736 95.5511 186.388 95.5694L196.908 95.8637C197.478 95.8797 197.824 96.0233 198.135 95.5459C199.164 93.9681 197.052 92.3251 195.169 92.2724Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 113.085L186.094 112.831C185.659 112.819 185.297 113.161 185.285 113.596L185.241 115.169C185.223 115.821 185.736 116.364 186.388 116.382L196.908 116.676C197.478 116.692 197.824 116.836 198.135 116.359C199.164 114.781 197.052 113.138 195.169 113.085Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 228.589L186.77 228.662C186.385 228.666 186.075 228.981 186.079 229.366L186.092 230.761C186.097 231.339 186.57 231.803 187.147 231.797L196.474 231.712C196.979 231.707 197.29 231.823 197.55 231.39C198.409 229.959 196.484 228.573 194.815 228.589Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 253.043L186.77 253.116C186.385 253.12 186.075 253.435 186.079 253.82L186.092 255.215C186.097 255.793 186.57 256.257 187.147 256.251L196.474 256.166C196.979 256.162 197.29 256.277 197.55 255.844C198.409 254.413 196.484 253.028 194.815 253.043Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.161 278.295L186.14 278.377C185.708 278.381 185.361 278.735 185.365 279.167L185.38 280.73C185.385 281.378 185.915 281.899 186.563 281.893L197.021 281.797C197.587 281.792 197.936 281.922 198.227 281.436C199.191 279.831 197.032 278.278 195.161 278.295Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.448 303.162L185.427 303.245C184.995 303.249 184.648 303.602 184.652 304.034L184.667 305.598C184.673 306.246 185.203 306.766 185.85 306.76L196.308 306.664C196.874 306.659 197.223 306.789 197.514 306.304C198.478 304.699 196.319 303.145 194.448 303.162Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M132.762 33.3081C129.525 33.3081 128.934 34.5994 129.07 35.5061C129.11 35.7709 129.18 36.0319 129.18 36.2997V45.4493C129.18 47.36 131.236 47.9704 132.265 48.0368C146.297 49.0983 174.878 51.2412 176.948 51.3209C178.541 51.3821 179.49 50.8579 179.948 50.4013C180.168 50.1822 180.232 49.8655 180.232 49.555V40.3684C180.232 40.0451 180.349 39.7301 180.372 39.4077C180.474 37.9904 177.572 37.0214 175.953 36.6917C163.115 35.5638 136.504 33.3081 132.762 33.3081Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.762 57.9873C129.525 57.9873 128.934 59.2786 129.07 60.1853C129.11 60.4501 129.18 60.7111 129.18 60.9788V70.1285C129.18 72.0392 131.236 72.6496 132.265 72.7159C146.297 73.7775 174.878 75.9204 176.948 76C178.541 76.0613 179.49 75.537 179.948 75.0805C180.168 74.8614 180.232 74.5446 180.232 74.2341V65.0476C180.232 64.7243 180.349 64.4093 180.372 64.0869C180.474 62.6696 177.572 61.7006 175.953 61.3709C163.115 60.243 136.504 57.9873 132.762 57.9873Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.792 82.668C129.763 82.668 129.05 83.5907 129.081 84.3165C129.095 84.6363 129.207 84.9488 129.207 85.2688V92.5929C129.207 94.1548 131.265 94.6538 132.294 94.708C146.334 95.5758 174.931 97.3275 177.003 97.3926C178.474 97.4389 179.396 97.0772 179.89 96.7277C180.191 96.5149 180.288 96.1401 180.288 95.7716V88.6233C180.288 88.2406 180.487 87.8572 180.422 87.4801C180.238 86.4163 177.544 85.6897 176.007 85.4339C163.162 84.5119 136.536 82.668 132.792 82.668Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.646 103.221C129.618 103.283 128.924 104.22 128.97 104.945C128.99 105.265 129.109 105.575 129.115 105.895L129.265 113.217C129.297 114.779 131.364 115.236 132.394 115.269C146.449 115.85 175.076 117.018 177.148 117.041C178.62 117.057 179.535 116.677 180.021 116.317C180.318 116.098 180.408 115.721 180.4 115.353L180.254 108.206C180.247 107.824 180.437 107.436 180.364 107.061C180.159 106.001 177.451 105.329 175.909 105.105C163.047 104.445 136.389 103.145 132.646 103.221Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.408 223.379C129.385 223.552 128.725 224.513 128.798 225.236C128.829 225.555 128.959 225.86 128.978 226.18L129.394 233.492C129.483 235.052 131.566 235.433 132.597 235.428C146.663 235.496 175.314 235.617 177.385 235.564C178.857 235.527 179.757 235.113 180.23 234.736C180.518 234.506 180.595 234.127 180.574 233.759L180.167 226.622C180.145 226.24 180.321 225.846 180.235 225.473C179.991 224.421 177.26 223.849 175.711 223.681C162.834 223.492 136.146 223.166 132.408 223.379Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 247.139C129.022 247.437 128.516 248.683 128.709 249.529C128.772 249.802 128.875 250.067 128.901 250.346L129.709 258.97C129.879 260.78 131.982 261.165 133.012 261.132C147.085 260.827 175.748 260.187 177.817 260.069C179.38 259.98 180.274 259.415 180.7 258.945C180.918 258.705 180.958 258.368 180.928 258.045L180.121 249.438C180.09 249.102 180.192 248.761 180.169 248.424C180.081 247.103 177.151 246.469 175.527 246.31C162.638 246.441 135.928 246.79 132.201 247.139Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 271.821C129.022 272.119 128.516 273.365 128.709 274.211C128.772 274.484 128.875 274.749 128.901 275.028L129.709 283.652C129.879 285.462 131.982 285.848 133.012 285.814C147.085 285.509 175.748 284.869 177.817 284.751C179.38 284.662 180.274 284.097 180.7 283.627C180.918 283.387 180.958 283.051 180.928 282.728L180.121 274.12C180.09 273.784 180.192 273.443 180.169 273.106C180.081 271.785 177.151 271.151 175.527 270.992C162.638 271.123 135.928 271.472 132.201 271.821Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 296.499C129.022 296.797 128.516 298.043 128.709 298.889C128.772 299.162 128.875 299.427 128.901 299.706L129.709 308.33C129.879 310.139 131.982 310.525 133.012 310.492C147.085 310.187 175.748 309.547 177.817 309.429C179.38 309.34 180.274 308.775 180.7 308.305C180.918 308.065 180.958 307.728 180.928 307.405L180.121 298.798C180.09 298.462 180.192 298.121 180.169 297.784C180.081 296.463 177.151 295.829 175.527 295.669C162.638 295.8 135.928 296.15 132.201 296.499Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.179 322.772C129.171 323.054 128.542 324.029 128.636 324.744C128.678 325.063 128.821 325.365 128.851 325.686L129.53 332.925C129.675 334.47 131.77 334.771 132.799 334.729C146.858 334.277 175.494 333.341 177.562 333.212C179.027 333.12 179.911 332.679 180.371 332.288C180.653 332.048 180.717 331.664 180.682 331.295L180.021 324.237C179.985 323.854 180.149 323.451 180.045 323.081C179.754 322.05 177.012 321.584 175.461 321.475C162.587 321.762 135.906 322.423 132.179 322.772Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M238.273 105.994C240.501 104.561 242.73 103.128 245.299 101.695C248.631 101.75 250.401 103.333 251.417 106.054C251.913 107.38 252.521 108.761 253.436 109.807C254.321 110.82 255.665 111.435 256.792 112.384C257.351 113.159 257.813 114.041 258.521 114.335C260.231 115.043 262.055 115.477 263.786 116.193C262.917 118.985 262.071 121.598 261.298 124.232C261.17 124.668 261.176 125.46 261.435 125.641C263.422 127.029 263.196 129.103 263.339 131.1C263.577 134.406 265.13 136.144 267.818 136.216C271.646 136.319 271.646 136.319 272.548 139.97C272.164 140.834 271.614 141.535 271.544 142.281C271.325 144.628 269.773 145.637 267.909 146.672C265.079 148.244 262.417 150.117 259.564 151.92C259.094 152.243 258.745 152.509 258.266 152.8C257.943 153.092 257.751 153.358 257.564 153.64C257.568 153.656 257.535 153.655 257.365 153.662C253.741 154.532 252.868 153.954 252.28 150.355C252.106 149.289 252.018 148.21 251.881 147.138C251.577 144.765 251.492 142.337 250.908 140.034C249.923 136.147 248.655 132.329 247.441 128.502C245.917 123.698 244.518 118.841 242.694 114.151C241.582 111.292 239.77 108.704 238.273 105.994Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M238.12 106.03C239.77 108.705 241.582 111.294 242.694 114.152C244.518 118.843 245.917 123.7 247.441 128.504C248.655 132.33 249.923 136.149 250.908 140.036C251.492 142.338 251.577 144.767 251.881 147.139C252.018 148.211 252.106 149.291 252.28 150.357C252.868 153.955 253.741 154.534 257.322 153.808C255.119 157.519 253.544 161.378 252.622 165.556C251.811 169.234 250.705 172.847 249.551 176.46C247.066 175.692 244.759 174.952 242.332 174.166C241.701 173.775 241.191 173.43 240.858 173.025C242.949 172.357 242.13 170.614 242.386 169.409C242.7 167.931 242.606 166.343 242.516 164.812C242.451 163.707 242.008 162.627 241.903 161.52C241.707 159.455 241.766 157.36 241.474 155.312C241.14 152.967 240.129 150.659 240.131 148.335C240.134 141.622 237.342 135.533 236.137 129.096C235.336 124.812 233.5 120.728 232.251 116.517C231.152 112.813 231.228 112.791 227.632 112.514C229.11 111.394 230.512 110.152 232.085 109.184C233.97 108.022 236 107.094 238.12 106.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.3\" d=\"M227.482 112.53C231.228 112.788 231.152 112.81 232.251 116.514C233.5 120.725 235.336 124.809 236.137 129.094C237.342 135.53 240.134 141.619 240.131 148.332C240.129 150.656 241.14 152.964 241.474 155.309C241.766 157.357 241.707 159.452 241.903 161.517C242.008 162.624 242.451 163.704 242.516 164.81C242.606 166.34 242.7 167.928 242.386 169.406C242.13 170.611 242.949 172.354 240.715 172.99C237.452 171.232 234.51 169.446 231.607 167.463C232.44 164.827 232.734 162.434 232.256 159.808C231.638 156.417 231.61 152.921 231.279 149.475C230.9 145.527 230.67 141.55 230.007 137.648C229.163 132.674 227.981 127.756 226.877 122.829C226.55 121.366 225.889 119.975 225.568 118.51C225.029 116.058 222.864 117.488 221.624 116.752C221.5 116.679 221.356 116.638 221.266 116.46C221.408 116.097 221.506 115.856 221.605 115.615C222.089 115.34 222.573 115.065 223.338 114.777C223.844 114.529 224.069 114.296 224.293 114.062C225.306 113.558 226.319 113.053 227.482 112.53Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.5\" d=\"M256.807 112.225C255.665 111.435 254.321 110.82 253.436 109.808C252.521 108.762 251.913 107.381 251.417 106.055C250.401 103.334 248.631 101.75 245.461 101.685C246.485 100.705 247.608 99.6078 248.909 98.7923C251.648 97.0763 254.479 95.5079 257.612 93.8596C259.109 94.2596 261.149 94.5069 261.271 95.1278C261.776 97.702 263.573 97.7951 265.282 97.9719C265.887 97.438 266.34 96.8559 266.935 96.5531C268.033 95.9948 269.241 95.6537 270.355 95.1227C271.452 94.5996 271.629 95.1439 271.518 96.1475C266.528 98.6965 263.838 102.93 261.79 107.849C260.834 108.543 259.99 109.157 259.24 109.87C258.771 110.316 258.445 110.91 257.955 111.512C257.506 111.798 257.156 112.012 256.807 112.225Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M271.616 96.0383C271.628 95.1433 271.452 94.5991 270.355 95.1221C269.241 95.6531 268.033 95.9943 266.935 96.5525C266.34 96.8554 265.887 97.4374 265.282 97.9714C263.573 97.7945 261.776 97.7014 261.271 95.1272C261.149 94.5064 259.109 94.259 257.766 93.8367C257.827 93.5005 258 93.0262 258.331 92.8559C261.799 91.07 265.231 89.1895 268.812 87.6597C270.067 87.124 272.12 86.973 273.58 86.869C275.4 86.7393 276.804 87.0832 278.774 86.869C278.949 89.1587 278.971 91.4866 278.827 94.0522C277.343 94.4573 276.279 94.5587 274.874 94.6091C274.403 94.7165 273.767 95.0067 273.275 95.3213C272.649 95.6205 272.133 95.8294 271.616 96.0383Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.2\" d=\"M219.86 117.117C220.24 116.885 220.599 116.786 221.09 116.635C221.356 116.641 221.5 116.681 221.624 116.755C222.864 117.49 225.029 116.06 225.568 118.513C225.889 119.978 226.549 121.368 226.877 122.832C227.981 127.759 229.163 132.677 230.007 137.65C230.67 141.552 230.9 145.529 231.279 149.477C231.61 152.923 231.638 156.419 232.256 159.811C232.734 162.437 232.44 164.83 231.453 167.385C230.436 167.71 229.612 167.916 228.788 168.121C229.243 168.822 229.68 169.537 230.166 170.217C230.323 170.435 230.611 170.56 230.834 170.888C230.39 172.317 230.527 173.246 232.093 173.591C232.452 173.67 232.947 174.288 232.943 174.655C232.926 176.7 232.752 178.744 232.674 180.79C232.6 182.766 232.512 184.745 232.557 186.72C232.58 187.792 232.867 188.857 232.85 189.938C230.738 189.578 228.821 189.145 226.883 188.851C225.007 188.568 223.109 188.429 221.097 188.166C220.611 187.726 220.248 187.347 219.87 186.778C219.723 185.733 219.47 184.877 219.473 184.022C219.563 161.853 219.679 139.683 219.791 117.514C219.807 117.426 219.823 117.338 219.86 117.117Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path d=\"M233.837 215.69C230.867 213.771 227.101 211.854 224.12 209.952C223.165 209.343 221.771 208.204 220.637 207.663C220.465 207.205 220.652 208.532 220.637 207.663C220.79 205.349 220.66 204.228 220.935 202.389C227.899 207.362 234.719 209.718 242.56 212.358C241.198 213.577 239.791 213.717 238.199 213.279C236.756 212.881 235.436 212.896 235.123 214.897C235.072 215.22 234.278 215.418 233.837 215.69C234.56 215.233 233.11 216.139 233.837 215.69Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M258.905 213.087C263.188 210.206 265.372 205.85 266.73 201.164C268.695 194.386 270.242 187.488 272.147 180.459C272.828 179.842 273.33 179.407 273.819 179.173C273.8 180.706 273.792 182.038 273.678 183.493C273.552 184.271 273.533 184.926 273.483 185.781C272.961 191.156 272.851 196.402 271.882 201.487C270.683 207.774 268.775 213.928 267.165 220.138C266.814 221.491 266.424 222.833 265.851 224.25C260.775 224.476 261.102 224.214 260.543 227.665C259.978 230.028 261.122 225.133 260.543 227.665C258.153 226.55 258.905 227.566 255.468 225.774C244.421 222.789 248.847 224.892 245.814 222.49C249.145 222.912 246.611 220.138 249.397 217.614C249.839 215.44 250.289 216.421 251.548 214.356C251.756 214.258 251.844 214.167 251.902 214.047C253.596 213.969 255.29 213.891 257.344 213.849C258.104 213.619 258.505 213.353 258.905 213.087Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.5\" d=\"M251.785 214.03C250.614 216.057 250.009 216.235 249.568 218.409C248.302 220.3 249.011 222.944 245.615 222.389C242.09 220.025 237.23 218.192 233.837 215.688C233.109 216.137 234.515 215.094 233.837 215.688C234.277 215.416 235.072 215.217 235.122 214.895C235.436 212.894 236.755 212.879 238.199 213.276C239.791 213.714 241.197 213.575 242.559 212.355C244.885 212.7 247.11 213.159 249.568 213.807C251.089 213.807 251.089 213.807 251.785 214.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M208.266 180.999C206.409 181.518 204.56 181.839 202.448 182.185C201.868 181.964 201.551 181.717 201.205 181.301C198.833 179.24 200.093 176.676 199.921 174.505C199.613 170.612 200.245 166.665 200.364 162.737C200.435 160.386 200.239 158.029 200.23 155.675C200.199 147.197 200.196 138.719 200.182 130.241C200.806 129.937 201.429 129.633 202.1 129.204C203.067 128.594 203.987 128.11 204.959 127.5C206.119 126.889 207.228 126.401 208.491 125.858C208.527 132.38 208.338 138.958 208.305 145.536C208.245 157.291 208.28 169.046 208.266 180.999Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M230.835 170.888C233.253 172.403 235.715 174.014 238.04 175.802C238.549 176.193 238.759 177.21 238.778 177.947C238.841 180.375 239.949 182.08 242.166 183.313C241.754 186.413 244.373 187.33 246.115 188.983C245.843 191.408 244.626 192.337 242.135 191.733C239.242 191.03 236.283 190.6 233.194 189.988C232.867 188.857 232.581 187.792 232.557 186.72C232.513 184.745 232.6 182.766 232.675 180.79C232.752 178.744 232.926 176.7 232.944 174.655C232.947 174.288 232.452 173.67 232.093 173.591C230.527 173.246 230.391 172.317 230.835 170.888Z\" fill=\"#B8C5FF\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M186.203 138.265C187.014 137.652 187.847 137.065 188.627 136.418C189.262 135.891 189.833 135.292 190.495 134.592C193.788 132.922 197.019 131.386 200.398 129.839C200.56 138.368 200.562 146.907 200.591 155.446C200.599 157.817 200.78 160.191 200.714 162.559C200.605 166.515 200.023 170.49 200.306 174.411C200.465 176.598 199.305 179.18 201.33 181.191C198.939 179.785 196.679 178.273 194.443 176.588C194.852 175.68 195.545 174.954 195.568 174.208C195.672 170.875 195.602 167.536 195.563 164.2C195.512 159.754 195.379 155.309 195.388 150.863C195.392 148.758 195.736 146.655 195.764 144.549C195.795 142.285 193.408 139.142 191.371 138.781C189.673 138.48 187.928 138.428 186.203 138.265Z\" fill=\"#DDD4E1\"/>\r\n <path opacity=\"0.2\" d=\"M220.333 117.101C220.381 145.336 220.625 174.232 220.534 202.435C220.53 203.523 220.854 205.565 220.834 206.866C219.48 206.441 217.342 204.751 216.184 204.01C213.469 202.272 210.79 200.443 208.105 198.39C208.117 182.635 208.085 167.141 208.14 151.647C208.171 142.976 208.029 134.507 208.14 125.837C208.14 125.837 208.467 125.447 208.491 125.357C211.323 123.186 214.115 121.072 216.948 119.046C217.808 118.431 219.253 117.552 220.333 117.101Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M197.515 182.331C196.94 181.924 196.513 181.553 195.939 181.166C195.091 180.679 194.39 180.208 193.465 179.615C191.772 178.426 190.301 177.36 188.798 176.309C188.766 176.322 188.835 176.314 188.773 176.183C187.94 175.413 187.168 174.774 186.354 173.981C186.919 171.828 187.935 173.861 188.822 173.676C190.749 174.738 192.572 175.707 194.394 176.677C196.666 178.232 198.938 179.787 201.369 181.409C201.821 181.731 202.114 181.987 202.498 182.327C202.228 182.789 201.795 183.533 201.517 183.479C200.209 183.229 198.944 182.759 197.515 182.331Z\" fill=\"#462D5C\"/>\r\n <path d=\"M245.624 336.046C245.962 327.813 246.346 319.777 246.684 311.4C246.601 310.873 246.565 310.688 246.663 310.391C247.032 309.078 247.336 307.886 247.489 306.675C248.181 301.227 248.697 295.754 249.53 290.328C250.462 284.267 251.752 278.262 252.733 272.208C254.063 264.004 255.233 255.774 256.502 247.56C257.131 243.486 257.827 239.422 258.507 235.183C259.086 232.651 259.651 230.288 260.411 227.928C262.843 228.075 265.081 228.355 267.317 228.337C270.98 228.306 274.64 228.026 278.304 227.951C282.808 227.86 282.66 228.499 282.756 223.553C283.677 223.526 284.412 223.51 285.137 223.663C284.48 226.914 285.322 227.82 288.398 227.467C290.12 227.27 291.87 227.292 293.58 227.033C294.837 226.842 296.049 226.356 297.523 225.932C298.584 226.113 300.054 226.551 301.529 226.572C303.471 226.599 305.417 226.299 307.451 226.266C307.979 227.996 308.469 229.588 308.846 231.206C310.305 237.477 310.102 243.842 309.802 250.382C309.747 251.164 309.745 251.771 309.682 252.401C309.538 252.525 309.441 252.608 309.143 252.706C308.242 252.699 307.434 252.424 306.828 252.662C303.893 253.81 300.916 254.913 298.144 256.387C295.736 257.668 293.693 259.63 291.282 260.905C289.341 261.932 288.398 263.455 287.828 265.345C285.949 271.571 284.118 277.812 282.286 284.052C281.59 286.424 280.604 288.802 281.993 291.246C280.641 295.2 279.446 299.128 278.144 303.14C278.033 303.478 278.028 303.732 277.966 304.16C277.722 305.8 277.534 307.266 277.228 308.848C276.504 312.627 275.9 316.29 275.247 320.151C274.92 324.956 274.642 329.565 274.288 334.325C274.077 335.647 273.945 336.818 273.773 338.168C273.547 340.053 273.337 341.757 273.178 343.466C272.791 347.608 272.428 351.753 271.988 356.041C271.903 356.827 271.885 357.468 271.822 358.285C271.734 359.064 271.692 359.668 271.552 360.389C271.419 361.016 271.385 361.525 271.307 362.203C271.24 362.834 271.217 363.297 271.106 363.886C270.963 364.516 270.907 365.02 270.807 365.663C270.763 365.996 270.764 366.19 270.676 366.49C270.476 366.947 270.364 367.298 270.266 367.67C270.281 367.691 270.262 367.644 270.126 367.68C269.435 368.021 268.881 368.326 268.139 368.61C266.225 368.289 264.508 367.846 262.769 367.725C260.617 367.576 258.446 367.694 256.278 367.518C256.298 365.112 254.81 365.467 253.396 365.65C250.297 366.049 247.239 366.167 244.519 364.218C244.63 360.843 244.741 357.468 244.952 353.79C245.022 353.103 244.991 352.719 244.96 352.336C245.081 349.722 245.201 347.108 245.402 344.193C245.443 343.648 245.405 343.404 245.366 343.161C245.467 340.855 245.568 338.549 245.624 336.046Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M244.856 352.393C244.991 352.719 245.022 353.102 244.941 353.587C244.803 353.276 244.778 352.864 244.856 352.393Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M245.278 343.21C245.404 343.404 245.443 343.648 245.393 343.987C245.267 343.809 245.228 343.534 245.278 343.21Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M290.412 98.4989C288.412 98.2111 286.383 97.4599 284.337 97.4119C278.439 97.2734 273.438 101.042 271.562 106.692C270.776 109.062 269.977 111.427 269.02 114.284C273.356 115.211 277.21 116.242 281.132 116.816C285.138 117.402 289.208 117.589 293.257 117.834C294.139 117.888 295.051 117.449 296.059 117.107C296.592 117.408 297.32 117.82 297.348 118.275C297.374 118.69 296.708 119.418 296.228 119.539C295.053 119.835 293.81 119.86 292.202 120.018C290.156 119.965 288.483 120.015 286.851 119.784C281.099 118.971 275.36 118.061 269.499 117.114C267.533 116.7 265.683 116.361 263.834 116.022C262.056 115.477 260.231 115.044 258.522 114.336C257.814 114.042 257.351 113.16 256.792 112.385C257.157 112.012 257.507 111.798 258.133 111.525C260.886 111.493 261.937 110.153 261.942 107.811C263.838 102.93 266.528 98.6968 271.519 96.1477C272.133 95.8302 272.65 95.6213 273.422 95.3326C274.021 95.0994 274.365 94.9461 274.709 94.7927C276.027 94.6254 277.344 94.4581 278.835 94.2534C283.202 94.4925 287.247 95.1754 290.412 98.4989Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M269.616 117.189C275.36 118.061 281.098 118.971 286.85 119.784C288.483 120.015 290.156 119.965 292.013 120.046C291.283 122.546 290.349 125.042 289.42 127.54C289.198 128.138 288.99 128.74 288.813 129.499C288.801 129.976 288.75 130.294 288.515 130.8C284.557 131.856 281.291 130.888 278.375 128.396C277.579 127.715 276.549 127.305 275.778 126.859C276.105 125.13 276.673 123.062 276.792 120.969C276.831 120.276 275.804 119.066 275.097 118.926C274.477 118.802 273.466 119.72 272.915 120.407C272.304 121.169 272.018 122.191 271.59 123.1C271.314 123.061 271.037 123.021 270.761 122.982C270.379 121.051 269.998 119.12 269.616 117.189Z\" fill=\"#442857\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"white\" fill-opacity=\"0.8\"/>\r\n <path d=\"M269.499 117.113C269.998 119.119 270.379 121.05 270.761 122.981C271.037 123.021 271.313 123.06 271.59 123.1C272.018 122.191 272.304 121.169 272.915 120.406C273.466 119.72 274.477 118.802 275.097 118.925C275.804 119.066 276.831 120.276 276.792 120.969C276.673 123.062 276.105 125.13 275.778 126.858C276.549 127.305 277.578 127.714 278.375 128.395C281.291 130.888 284.557 131.855 288.504 130.961C288.822 132.259 288.967 133.583 288.96 135.101C288.624 135.319 288.439 135.342 288.155 135.361C288.056 135.357 287.861 135.397 287.705 135.389C287.344 135.408 287.138 135.434 286.793 135.428C286.319 135.521 285.984 135.645 285.498 135.761C285.146 135.769 284.945 135.786 284.584 135.79C283.905 136.045 283.386 136.314 282.697 136.568C281.958 136.592 281.39 136.63 280.677 136.675C280.041 136.959 279.549 137.235 278.929 137.516C278.595 137.662 278.39 137.802 278.018 137.947C276.101 138.578 274.352 139.203 272.603 139.828C271.646 136.319 271.646 136.319 267.818 136.217C265.13 136.145 263.577 134.407 263.34 131.1C263.196 129.104 263.422 127.03 261.435 125.641C261.176 125.46 261.17 124.668 261.298 124.233C262.071 121.598 262.918 118.985 263.787 116.193C265.683 116.36 267.532 116.7 269.499 117.113Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.548 139.971C274.352 139.203 276.101 138.578 278.012 138.115C278.005 138.57 277.866 139.097 277.663 139.123C275.536 139.392 275.266 140.613 275.83 142.375C275.899 142.591 275.652 142.909 275.551 143.179C275.55 143.255 275.549 143.332 275.621 143.625C275.315 144.638 275.139 145.873 274.524 146.153C271.996 147.302 269.252 147.994 266.763 149.212C265.802 149.683 264.957 151.037 264.746 152.121C264.632 152.703 265.975 153.567 266.66 154.304C266.857 154.22 267.053 154.136 267.25 154.052C267.102 154.649 266.954 155.246 266.806 155.843C265.674 154.949 264.614 153.934 263.386 153.199C262.378 152.596 261.168 152.326 259.866 151.885C262.417 150.118 265.079 148.245 267.909 146.673C269.773 145.638 271.325 144.629 271.545 142.282C271.614 141.536 272.164 140.835 272.548 139.971Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M249.551 176.46C248.633 180.593 247.538 184.697 246.21 188.861C244.373 187.33 241.754 186.413 242.437 183.367C243.608 182.366 244.633 181.401 245.789 180.313C245.23 179.788 244.876 179.324 244.41 179.046C243.172 178.306 241.825 177.734 240.652 176.91C240.207 176.598 239.856 175.725 239.962 175.21C240.039 174.836 240.925 174.598 241.478 174.365C241.772 174.241 242.126 174.259 242.453 174.212C244.76 174.952 247.066 175.692 249.551 176.46Z\" fill=\"#CD938D\"/>\r\n <path d=\"M242.333 174.166C242.126 174.258 241.772 174.241 241.478 174.365C240.925 174.597 240.039 174.836 239.962 175.209C239.856 175.725 240.207 176.598 240.652 176.91C241.825 177.733 243.173 178.305 244.41 179.045C244.876 179.324 245.23 179.788 245.789 180.312C244.633 181.4 243.608 182.365 242.311 183.277C239.949 182.08 238.841 180.375 238.779 177.947C238.76 177.21 238.549 176.193 238.04 175.802C235.715 174.014 233.253 172.403 230.839 170.728C230.612 170.56 230.323 170.435 230.167 170.217C229.68 169.537 229.244 168.822 228.788 168.121C229.612 167.915 230.437 167.71 231.415 167.583C234.51 169.449 237.452 171.234 240.537 173.052C241.191 173.43 241.702 173.775 242.333 174.166Z\" fill=\"#462D5C\"/>\r\n <path opacity=\"0.5\" d=\"M261.79 107.849C261.937 110.154 260.886 111.494 258.232 111.452C258.445 110.911 258.771 110.317 259.24 109.871C259.99 109.158 260.834 108.544 261.79 107.849Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M270.126 367.681C269.774 368.604 269.286 369.563 268.687 370.629C268.484 370.14 268.392 369.543 268.314 368.789C268.881 368.327 269.436 368.022 270.126 367.681Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M285.199 223.1C285.199 223.1 285.202 223.301 285.175 223.398C284.412 223.511 283.676 223.527 282.756 223.554C282.571 223.565 282.564 223.4 282.686 223.228C283.605 223.071 284.402 223.085 285.199 223.1Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M271.988 356.041C272.078 356.592 272.1 357.288 271.995 358.046C271.885 357.467 271.903 356.826 271.988 356.041Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.106 363.887C271.17 364.322 271.146 364.884 270.987 365.485C270.907 365.02 270.962 364.517 271.106 363.887Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.551 360.391C271.638 360.831 271.625 361.39 271.482 361.992C271.385 361.527 271.419 361.018 271.551 360.391Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M270.676 366.49C270.688 366.804 270.612 367.225 270.394 367.647C270.364 367.298 270.476 366.947 270.676 366.49Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M278.144 303.141C278.239 303.341 278.228 303.625 278.119 303.948C278.027 303.733 278.033 303.478 278.144 303.141Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M296.656 378.556C297.801 378.443 299.021 378.466 300.38 378.589C299.256 378.69 297.993 378.691 296.656 378.556Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M290.511 378.069C291.664 377.97 292.883 378.015 294.244 378.157C293.115 378.24 291.846 378.227 290.511 378.069Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M285.239 377.568C285.981 377.467 286.772 377.511 287.695 377.658C286.98 377.745 286.134 377.728 285.239 377.568Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M306.375 378.769C306.89 378.543 307.513 378.418 308.298 378.326C307.801 378.53 307.141 378.7 306.375 378.769Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M283.027 377.259C283.222 377.163 283.456 377.163 283.787 377.239C283.611 377.328 283.338 377.342 283.027 377.259Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M311.858 376.416C311.795 376.211 311.828 375.975 311.961 375.661C312.025 375.85 311.991 376.118 311.858 376.416Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.415 378.329C309.546 378.116 309.752 377.984 310.084 377.859C309.97 378.049 309.731 378.229 309.415 378.329Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M200.724 192.653C200.338 191.644 200.06 190.728 199.739 189.5C198.92 186.891 198.144 184.593 197.515 182.332C198.943 182.76 200.209 183.23 201.516 183.481C201.795 183.534 202.228 182.79 202.742 182.302C204.604 181.859 206.314 181.526 208.024 181.193C210.682 182.602 213.326 184.04 216.006 185.406C217.148 185.988 218.366 186.422 219.718 186.945C220.248 187.347 221.514 188.06 222 188.5C221.398 192.064 220.252 195.332 219.5 199C216.892 198.818 213.831 198.36 211.248 198.033C210.316 197.915 209.375 197.875 208.061 197.793C207.184 197.785 206.684 197.783 206.185 197.78C204.401 196.103 202.617 194.425 200.724 192.653Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.93 170.13C272.866 171.07 272.798 171.863 272.612 172.776C272.411 171.383 272.327 169.871 272.355 168.222C272.612 168.293 272.756 168.501 272.917 168.945C272.933 169.181 272.933 169.394 272.933 169.394C272.931 169.591 272.928 169.787 272.93 170.13Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M271.253 163.849C271.604 164.499 271.949 165.311 272.194 166.228C271.811 165.558 271.529 164.784 271.253 163.849Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M272.29 175.081C272.389 175.697 272.342 176.362 272.181 177.145C272.093 176.551 272.119 175.84 272.29 175.081Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M280.677 136.675C280.3 137.019 279.777 137.369 279.156 137.615C279.549 137.235 280.041 136.959 280.677 136.675Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M284.585 135.792C284.224 136.067 283.704 136.33 283.026 136.588C283.386 136.315 283.905 136.047 284.585 135.792Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M286.793 135.43C286.562 135.632 286.191 135.802 285.735 135.872C285.984 135.648 286.319 135.523 286.793 135.43Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M288.155 135.362C288.254 135.366 288.126 135.513 288.126 135.513C288.126 135.513 287.944 135.5 287.903 135.449C287.861 135.398 288.056 135.358 288.155 135.362Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M309.101 273.918C309.311 275.714 309.437 277.665 309.445 279.752C309.224 277.949 309.12 276.012 309.101 273.918Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M309.886 293.605C310.115 295.065 310.301 296.721 310.378 298.515C310.128 297.035 309.985 295.418 309.886 293.605Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M288.106 344.837C287.878 343.36 287.723 341.692 287.677 339.887C287.918 341.383 288.048 343.015 288.106 344.837Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.536 287.03C309.733 287.938 309.877 289.025 309.915 290.236C309.7 289.31 309.592 288.26 309.536 287.03Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.968 255.924C309.121 256.785 309.115 257.731 309.025 258.811C308.897 257.967 308.853 256.988 308.968 255.924Z\" fill=\"#633870\"/>\r\n <path d=\"M310.326 301.447C310.548 302.209 310.73 303.149 310.81 304.21C310.567 303.429 310.427 302.527 310.326 301.447Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.745 267.323C308.984 267.594 309.119 267.941 309.174 268.425C308.943 268.174 308.793 267.787 308.745 267.323Z\" fill=\"#633870\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.771 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.77 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M316.309 184.256C316.483 188.727 316.853 193.203 316.757 197.669C316.699 200.367 315.918 203.049 315.44 205.905C314.77 206.887 314.122 207.703 313.253 208.665C312.81 209.05 312.588 209.288 312.366 209.526C311.595 209.979 310.825 210.432 309.913 210.946C309.65 209.312 309.293 207.597 309.443 205.927C310.379 195.498 311.441 185.079 312.427 174.654C312.624 172.57 312.675 170.472 312.795 168.162C313.389 169.691 314.034 171.422 314.557 173.19C314.919 174.411 315.111 175.682 315.422 177.097C315.474 177.588 315.483 177.912 315.496 178.54C315.621 179.193 315.742 179.542 315.862 179.891C315.907 180.92 315.951 181.948 315.997 183.287C316.103 183.817 316.206 184.037 316.309 184.256Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M312.448 209.628C312.587 209.287 312.809 209.049 313.151 208.776C313.025 209.07 312.778 209.4 312.448 209.628Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M314.729 210.202C314.552 210.156 314.445 210.043 314.337 209.93C314.384 209.886 314.469 209.8 314.472 209.803C314.586 209.909 314.692 210.023 314.729 210.202Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M268.115 224.198C268.52 223.994 269.082 223.872 269.75 223.832C269.328 224.036 268.8 224.158 268.115 224.198Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M274.663 223.758C274.836 223.592 275.135 223.499 275.495 223.493C275.3 223.663 275.044 223.747 274.663 223.758Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M298.93 222.81C300.45 222.61 302.1 222.531 303.915 222.513C302.406 222.693 300.734 222.812 298.93 222.81Z\" fill=\"#633870\"/>\r\n <path d=\"M296.585 222.961C296.919 222.775 297.261 222.723 297.769 222.729C297.668 223.126 297.402 223.467 297.136 223.807C296.955 223.57 296.774 223.333 296.585 222.961Z\" fill=\"#633870\"/>\r\n <path d=\"M312.363 165.456C312.239 164.958 312.14 164.479 312.041 164.001C312.205 163.97 312.368 163.939 312.532 163.909C312.629 164.334 312.726 164.759 312.721 165.339C312.619 165.494 312.433 165.516 312.433 165.516C312.433 165.516 312.387 165.475 312.363 165.456Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M272.997 169.356C272.933 169.397 272.933 169.183 272.934 169.076C272.977 169.085 273.019 169.2 272.997 169.356Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M315.97 179.808C315.741 179.544 315.621 179.195 315.524 178.702C315.724 178.946 315.901 179.335 315.97 179.808Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M316.401 184.188C316.206 184.036 316.103 183.817 316.036 183.475C316.213 183.608 316.353 183.864 316.401 184.188Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.error-common .error-image-container{display:flex}.error-common .error-image-container .error-image{width:fit-content}.error-common .error-content .error-content-main{max-width:468px}.error-common .error-content .error-content-main .break{height:1px;background-color:#e9e9e9}.error-common .error-content .error-content-main button.link1{border:none;background:transparent}.error-common .error-content .error-content-main .error-reference{align-items:flex-end}.error-common .error-content .error-content-main .error-reference button:focus{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px!important}.error-common .error-content .error-content-main .error-reference button.copy{background:#fafafa!important}.error-common .error-content .error-content-main .error-reference button.copy:hover{background:#f5f5f5!important}.error-common .error-content .error-content-main .error-reference button.copied{cursor:default!important;pointer-events:none!important;background:var(--success-color-A100-parts)!important;color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied:hover{background:var(--success-color-A100-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied i{color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .reference-data{background:#fafafa;border-radius:8px;gap:8px}.error-common .error-content .error-content-main .reference-data .code1{font-family:Roboto Mono;font-size:14px;font-style:normal;font-weight:500;line-height:normal;letter-spacing:.28px}\n"] }]
|
|
7203
|
+
], template: "<div \r\n fxLayout=\"row\" \r\n fxLayout.lt-md=\"column-reverse\" \r\n fxLayoutGap=\"80px\"\r\n class=\"error-common\">\r\n <div \r\n class=\"error-image-container\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"end\" fxLayoutAlign.lt-md=\"center\">\r\n @if (imageUrl) {\r\n <div class=\"m-v-auto error-image\">\r\n <!-- Note: empty 'alt' attribute is best practice for WCAG (will ignore this presentation only image) -->\r\n <img [src]=\"imageUrl\" alt=\"\" class=\"m-l-auto\">\r\n </div>\r\n } @else {\r\n <div class=\"m-v-auto error-image\">\r\n <ng-container *ngTemplateOutlet=\"errorCommonSvg\"></ng-container>\r\n </div>\r\n }\r\n </div>\r\n <div \r\n class=\"error-content\" \r\n fxFlex.gt-md=\"50%\" fxFlex.lt-md=\"100%\" \r\n fxLayoutAlign.gt-md=\"start\" fxLayoutAlign.lt-md=\"center\">\r\n <div class=\"error-content-main\">\r\n <h1>{{'armature.error-common.title' | translate}}</h1>\r\n <h3 class=\"text-medium-emphasis m-t-8\">\r\n {{'armature.error-common.description' | translate}}\r\n </h3>\r\n <button\r\n id=\"error-common-return-button\"\r\n mat-flat-button \r\n class=\"sof-button-v2 m-t-24\" \r\n [class.m-b-24]=\"showLogout\"\r\n theme=\"primary\" emphasis=\"solid\"\r\n [routerLink]=\"returnUrl ? [returnUrl] : ['/']\">\r\n {{'armature.error-common.return-button-label' | translate}}\r\n </button>\r\n @if (showLogout) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.logout.0' | translate}}\r\n <button id=\"error-common-logout-button\" (click)=\"logout()\" class=\"link1 p-a-0\">\r\n {{'armature.error-common.logout.1' | translate}}\r\n </button>\r\n {{'armature.error-common.logout.2' | translate}}\r\n </p>\r\n }\r\n <div class=\"break m-v-24\"></div>\r\n @if (contactInfo?.email || contactInfo?.phone) {\r\n <p class=\"body1 m-a-0\">{{'armature.error-common.contact-support.0' | translate}}\r\n @if (contactInfo?.email) {\r\n <a [href]=\"'mailto:'+contactInfo?.email\" id=\"error-common-contact-support-email\" class=\"link1\">\r\n {{contactInfo?.email}}\r\n </a>\r\n }\r\n @if (contactInfo?.email && contactInfo?.phone) {\r\n or\r\n }\r\n @if (contactInfo?.phone) {\r\n <a [href]=\"'tel:'+contactInfo?.phone\" id=\"error-common-contact-support-email\" class=\"link1\">\r\n {{contactInfo?.phone}}\r\n </a>\r\n }\r\n {{'armature.error-common.contact-support.1' | translate}}\r\n </p>\r\n }\r\n <div class=\"error-reference m-t-16\" fxLayout=\"row\">\r\n <p class=\"body2 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.title' | translate}}\r\n </p>\r\n <button\r\n mat-flat-button\r\n [disableRipple]=\"true\"\r\n [disabled]=\"disableCopy\"\r\n (click)=\"copyErrorReferenceDataEvent()\"\r\n class=\"sof-button-v2 mini m-l-auto\"\r\n [class]=\"copyErrorReferenceDataButton?.class\"\r\n id=\"copy-error-reference-data-button\"\r\n aria-label=\"copy error reference\">\r\n <i class=\"ph-bold ph-{{copyErrorReferenceDataButton?.icon}}\" aria-hidden=\"true\"></i>\r\n {{copyErrorReferenceDataButton?.text | translate}}\r\n </button>\r\n </div>\r\n <div fxLayout=\"column\" class=\"reference-data p-a-16 m-t-8\">\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.timestamp' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.timestamp ? errorReference?.timestamp : '--'}}\r\n </span>\r\n </p>\r\n @if (errorReference?.sessionId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.session-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.sessionId}}</span>\r\n </p>\r\n }\r\n @if (errorReference?.errorId) {\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.error-id' | translate}}\r\n <span class=\"text-high-emphasis\">{{errorReference?.errorId}}</span>\r\n </p>\r\n }\r\n <p class=\"code1 text-medium-emphasis m-a-0\">\r\n {{'armature.error-common.error-reference.page-title' | translate}}\r\n <span class=\"text-high-emphasis\">\r\n {{errorReference?.pageTitle ? (errorReference?.pageTitle | translate) : '--'}}\r\n </span>\r\n </p>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- Svg from Figma (w/ primary palette variables added to certain paths for branding, per design) -->\r\n<ng-template #errorCommonSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"393\" height=\"388\" viewBox=\"0 0 393 388\" fill=\"none\">\r\n <path d=\"M190.094 364.84C189.155 364.84 188.985 361.348 189.001 358.521C189.012 356.501 190.624 354.891 192.64 354.765L200.626 354.266C202.928 354.122 204.875 355.95 204.875 358.257V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M190.094 364.84C188.517 364.84 189.109 354.985 189.109 354.985L204.875 354V363.854C204.875 364.84 192.065 364.84 190.094 364.84Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M103.489 1.28498C104.695 0.939444 106.364 0.925396 107.541 1.15002C108.317 1.29807 108.885 1.35905 108.148 1.64455C107.29 1.97753 106.001 2.93188 105.338 5.48494C104.784 7.6177 107.309 356.292 106.323 358.263C105.728 359.453 108.841 360.344 111.674 360.851C113.21 361.125 114.517 362.182 114.605 363.74C114.706 365.527 114.583 367.633 114.418 369.299C114.306 370.431 113.665 371.434 112.718 372.065L112.425 372.261C111.665 372.768 110.756 372.999 109.846 372.917C105.994 372.571 100.122 372.059 99.4254 372.059C98.44 372.059 98.44 366.146 98.44 365.161C98.44 364.85 98.3381 364.326 98.1944 363.743C97.8118 362.193 96.4327 361.132 94.8418 360.995C71.1299 358.965 28.0245 355.307 26.5055 355.307C25.3956 355.307 25.1972 357.911 25.2917 360.37C25.3568 362.065 24.4329 363.549 22.738 363.608C19.0384 363.737 13.193 363.19 11.7244 363.19C10.6215 363.19 10.4187 360.296 10.5089 357.546C10.5707 355.661 9.43051 353.999 7.62219 353.463C5.41303 352.808 3.19597 351.723 1.8705 348.409C0.295418 344.471 1.21188 138.902 1.86865 36.3214C1.86992 36.1235 1.85658 35.9381 1.8302 35.742C1.19352 31.0099 0.75282 20.9573 3.84131 16.3245C6.97136 11.6294 70.0066 4.92752 102.098 1.61629C102.578 1.56677 103.025 1.41786 103.489 1.28498Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M91.7917 19.7826C92.9064 19.7659 93.51 19.9892 93.8611 20.3793C94.2277 20.7867 94.4357 21.5 94.4382 22.7523C94.4586 32.6471 94.4476 42.5416 94.447 52.4379C94.4421 138.806 94.4364 225.174 94.4314 311.542C94.4308 321.18 94.4352 330.817 94.4285 340.453C94.428 341.117 94.3986 341.618 94.323 342.001C94.2481 342.38 94.1356 342.602 93.9988 342.745C93.8648 342.884 93.6595 342.998 93.2996 343.068C92.9322 343.139 92.4399 343.158 91.7712 343.13C87.8652 342.967 83.9832 342.533 80.0515 342.205C77.0101 341.952 73.9713 341.691 70.9285 341.435C64.2721 340.874 57.6092 340.274 50.9421 339.767C48.4341 339.576 45.922 339.436 43.4177 339.292C40.9116 339.148 38.412 338.999 35.9187 338.791C28.2193 338.149 20.5367 337.384 12.6628 336.668C11.7845 333.029 11.5772 329.353 11.5789 325.641C11.5805 321.852 11.8037 317.921 11.7253 314.093C11.5348 304.787 11.6918 295.482 11.6912 286.154C11.689 256.258 11.6825 226.36 11.6794 196.464C11.678 182.662 11.6822 168.859 11.6824 155.057C11.6827 135.353 11.679 115.649 11.6824 95.9457C11.6851 79.8065 11.7036 63.6658 11.6931 47.5258C11.6917 45.2648 11.5639 43.0078 11.3894 40.639L11.3884 40.6283L11.3875 40.6185C11.295 39.8075 11.2975 39.1066 11.3035 38.2054C11.3486 38.0549 11.3932 37.9324 11.4412 37.806C11.4949 37.6644 11.5554 37.5079 11.6111 37.3168L11.6277 37.2601L11.6306 37.2006C11.7019 35.6606 11.7198 34.5268 11.8093 33.6342C11.8986 32.744 12.0518 32.2022 12.3279 31.8236C12.5944 31.4582 13.0279 31.174 13.8474 30.931C14.6742 30.6859 15.8246 30.5018 17.4568 30.2894C25.1666 29.2861 32.8607 28.1644 40.5496 27.0443C42.777 26.7198 44.9987 26.3599 47.2156 26.0004C49.4338 25.6406 51.6478 25.2821 53.866 24.9594C59.3344 24.1638 64.7835 23.4777 70.2664 22.7006C73.0016 22.3129 75.7346 21.909 78.4656 21.5052C81.1971 21.1014 83.9271 20.697 86.6589 20.309C88.392 20.0628 90.0953 19.8081 91.7917 19.7826ZM83.0515 166.273C81.0879 166.354 79.1541 166.296 77.1501 166.32C76.478 166.328 75.9067 166.365 75.4343 166.469C74.956 166.575 74.5435 166.758 74.2244 167.082C73.9059 167.406 73.7278 167.824 73.6257 168.308C73.5248 168.787 73.4906 169.368 73.4871 170.055C73.4587 175.587 73.4602 181.121 73.446 187.087V187.088C73.447 192.259 73.4732 197.422 73.4324 202.586C73.4267 203.306 73.5218 204.008 73.9089 204.538C74.3193 205.101 74.9738 205.366 75.8328 205.393C78.349 205.472 80.9444 205.675 83.5076 205.591C83.7621 205.583 84.0123 205.494 84.2273 205.384C84.4477 205.272 84.663 205.122 84.8562 204.955C85.2234 204.639 85.5928 204.19 85.7048 203.732C86.0603 202.275 86.0668 200.726 86.072 199.287C86.108 189.346 86.1003 179.394 86.1287 169.455C86.1313 168.542 85.9776 167.7 85.4626 167.1C84.9285 166.478 84.1084 166.229 83.0515 166.273Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M10.8046 38.1268C10.9183 37.7277 11.0325 37.5152 11.1309 37.1772C11.4116 31.1118 10.8786 30.6414 17.392 29.7938C25.0976 28.791 32.7881 27.67 40.4777 26.5499C44.9234 25.9022 49.3482 25.1109 53.7941 24.4641C59.2554 23.6696 64.732 22.9797 70.1964 22.2052C75.6636 21.4304 81.1215 20.5909 86.5884 19.8143C88.3121 19.5694 90.0497 19.3086 91.7844 19.2825C94.1145 19.2476 94.9332 20.1945 94.9384 22.751C94.9588 32.6466 94.9472 42.5422 94.9466 52.4379C94.9417 138.806 94.9366 225.174 94.9316 311.542C94.931 321.179 94.9352 330.816 94.9285 340.453C94.9266 343.137 94.4727 343.743 91.7503 343.63C87.8307 343.467 83.9226 343.03 80.01 342.704C76.9686 342.451 73.928 342.189 70.8868 341.933C64.2265 341.372 57.569 340.772 50.9045 340.265C45.8996 339.884 40.8784 339.707 35.8771 339.29C28.0599 338.637 20.2534 337.859 12.2616 337.134C10.3321 329.514 11.3822 321.781 11.225 314.103C11.0343 304.79 11.1923 295.47 11.1916 286.153C11.1895 256.257 11.183 226.361 11.1799 196.465C11.1785 182.662 11.1817 168.86 11.1819 155.057C11.1822 135.353 11.179 115.65 11.1824 95.9457C11.1851 79.8058 11.2033 63.6659 11.1929 47.526C11.1914 45.2829 11.0649 43.0398 10.8907 40.6755C10.7918 39.8073 10.7984 39.0603 10.8046 38.1268ZM73.9462 187.088C73.9471 192.255 73.9731 197.423 73.9323 202.59C73.9213 203.976 74.3184 204.845 75.8488 204.893C78.3974 204.973 80.9488 205.174 83.4913 205.091C84.108 205.071 85.0682 204.233 85.2194 203.613C85.5585 202.223 85.5672 200.734 85.5725 199.286C85.6084 189.342 85.6003 179.398 85.6286 169.454C85.6337 167.701 85.0224 166.692 83.0725 166.773C81.1031 166.854 79.1283 166.796 77.1561 166.82C74.4998 166.852 74.0014 167.344 73.9875 170.058C73.9591 175.589 73.9603 181.12 73.9462 187.088Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M73.9482 186.868C73.9608 181.119 73.9596 175.588 73.9879 170.057C74.0018 167.343 74.5002 166.851 77.1566 166.819C79.1287 166.795 81.1036 166.853 83.0729 166.772C85.0229 166.691 85.6341 167.7 85.6291 169.452C85.6007 179.396 85.6089 189.34 85.5729 199.284C85.5677 200.733 85.5589 202.222 85.2198 203.612C85.0687 204.231 84.1085 205.07 83.4918 205.09C80.9492 205.173 78.3979 204.972 75.8492 204.892C74.3188 204.844 73.9218 203.975 73.9327 202.589C73.9736 197.422 73.9475 192.254 73.9482 186.868Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M82.8739 15.6656C90.0723 14.6124 96.5442 20.1555 96.6102 27.4302L99.4042 335.667C99.4679 342.725 93.4549 348.313 86.4198 347.734L18.7391 342.161C12.5149 341.648 7.72449 336.446 7.72449 330.201V37.0347C7.72457 31.0785 12.0938 26.0241 17.9872 25.1617L82.8739 15.6656ZM11.7245 330.201C11.7245 334.364 14.9186 337.833 19.0682 338.174L86.7479 343.748C91.2917 344.122 95.1958 340.637 95.3964 336.14L95.4042 335.703L92.6112 27.4664C92.5671 22.6166 88.2519 18.9215 83.453 19.6236L18.5663 29.1197L18.201 29.1812C14.4581 29.9052 11.7246 33.1879 11.7245 37.0347V330.201Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M216.517 15.163C210.505 9.69393 142.753 3.81755 109.279 1.54259C105.338 1.26779 105.009 7.99751 105.338 11.3967C105.338 116.179 105.141 328.503 104.352 339.539C103.367 353.335 104.352 358.262 108.294 360.233C112.235 362.204 210.776 357.277 216.688 352.35C222.601 347.423 219.645 37.0175 219.645 27.1633C219.645 19.8175 217.933 16.4646 216.903 15.51C216.768 15.3856 216.652 15.2862 216.517 15.163Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M211.318 23.0523C206.039 17.9268 148.462 12.4271 119.552 10.26C119.243 10.2368 118.941 10.2803 118.667 10.426C115.68 12.0194 115.434 16.4544 115.704 19.5206C115.704 118.356 115.534 318.628 114.856 329.038C114.009 342.051 114.856 346.698 118.247 348.557C121.637 350.416 206.401 345.769 211.487 341.122C216.573 336.474 214.03 43.6871 214.03 34.3923C214.03 27.5186 212.581 24.3515 211.692 23.4224C211.565 23.2892 211.45 23.1808 211.318 23.0523Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M195.002 122.687C195.002 122.687 143.013 120.696 129.292 120.696C120.892 120.696 123.511 129.641 123.511 129.641C123.511 132.295 123.623 191.455 123.511 194.993C123.398 198.53 126.722 198.379 128.085 200C149.518 199.484 192.191 200 194.165 200C196.135 200 198.715 199.489 199.937 196.319C199.608 175.608 199.937 135.069 199.937 133.079C199.937 131.557 198.386 122.687 195.002 122.687Z\" fill=\"white\" fill-opacity=\"0.6\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M139.585 192.826L129.723 192.55C129.408 192.541 129.145 192.79 129.136 193.105L129.104 194.248C129.091 194.721 129.464 195.115 129.937 195.128L140.965 195.437C141.37 195.448 141.63 195.533 141.909 195.24C142.95 194.144 141.096 192.868 139.585 192.826Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M147.35 124.366L130.616 123.898C129.862 123.877 129.235 124.47 129.214 125.223L129.137 127.951C129.106 129.081 129.996 130.023 131.126 130.054L148.942 130.553C149.56 130.57 150.202 130.461 150.519 129.93C150.855 129.365 151.15 128.494 151.229 127.534C151.392 125.537 149.352 124.422 147.35 124.366Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M191.451 137.888C191.451 137.888 145.936 137.322 134.127 136.614C129.944 136.363 129.083 142.42 129.083 142.42C129.083 144.12 129.181 181.933 129.083 184.199C128.985 186.465 131.338 189.108 132.527 190.147C151.226 189.816 188.868 190.147 190.59 190.147C192.309 190.147 194.691 187.078 195.757 185.048C195.47 171.783 195.757 145.819 195.757 144.545C195.757 143.57 194.404 137.888 191.451 137.888Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M186.004 144.468C186.004 144.468 149.182 144.07 139.629 143.572C136.245 143.396 135.549 147.653 135.549 147.653C135.549 148.847 135.628 175.418 135.549 177.011C135.469 178.603 137.373 180.46 138.335 181.19C153.462 180.958 183.914 181.19 185.307 181.19C186.698 181.19 188.625 179.034 189.487 177.608C189.255 168.286 189.487 150.041 189.487 149.145C189.487 148.461 188.393 144.468 186.004 144.468Z\" fill=\"white\"/>\r\n <path d=\"M374.345 245.945C375.012 255.951 375.552 265.967 376.385 275.959C377.152 285.153 378.234 294.32 379.167 303.806C379.238 304.344 379.32 304.574 379.401 304.805C379.464 305.543 379.526 306.282 379.437 307.307C379.36 308.5 379.316 309.435 379.528 310.309C381.051 316.587 382.106 322.916 381.858 329.408C381.855 329.504 382.049 329.608 382.15 329.708C382.267 330.611 382.384 331.513 382.393 332.703C382.453 333.791 382.62 334.593 382.787 335.394C382.848 335.854 382.909 336.313 382.855 337.043C382.879 337.839 383.018 338.366 383.157 338.893C383.241 339.776 383.324 340.659 383.303 341.818C383.327 342.355 383.455 342.616 383.62 343.043C383.749 344.517 383.84 345.826 383.788 347.235C383.578 349.18 383.485 351.024 383.461 352.869C383.453 353.478 383.712 354.093 383.692 354.7C383.661 355.645 383.495 356.587 383.231 357.579C382.288 357.921 381.5 358.214 380.524 358.513C377.815 358.474 375.294 358.393 372.774 358.396C369.453 358.401 366.132 358.472 362.698 358.523C362.51 358.527 362.435 358.523 362.286 358.398C361.594 357.726 360.975 357.174 360.339 356.455C360.256 355.729 360.191 355.17 360.157 354.421C359.861 352.607 359.534 350.983 359.198 349.203C359.139 348.742 359.089 348.437 359.097 347.973C359.01 347.315 358.863 346.814 358.711 346.156C358.662 345.69 358.617 345.381 358.639 344.917C358.568 344.257 358.43 343.753 358.29 343.094C358.223 342.639 358.157 342.339 358.147 341.905C358.003 341.456 357.802 341.142 357.63 340.643C357.278 337.525 356.884 334.592 356.525 331.656C356.377 330.44 355.67 330.082 354.529 330.02C354.484 326.25 354.486 322.689 354.445 319.128C354.434 318.119 354.438 317.076 354.197 316.107C351.673 306.002 349.052 295.921 346.557 285.81C343.833 274.777 341.201 263.722 338.553 252.672C336.885 245.709 335.222 238.744 333.642 231.762C333.252 230.038 333.192 228.24 332.939 226.135C333.617 226.032 334.505 225.789 335.396 225.781C340.429 225.735 345.463 225.713 350.496 225.759C352.057 225.773 352.853 225.256 352.702 223.616C352.648 223.039 352.679 222.454 352.789 221.837C352.988 221.788 353.069 221.776 353.231 221.874C353.699 221.917 354.086 221.85 354.627 221.789C354.982 221.831 355.184 221.866 355.312 222.033C354.171 224.995 354.387 225.321 357.38 225.332C359.926 225.341 362.473 225.334 365.021 225.511C364.586 227.345 364.282 228.987 365.363 230.49C364.284 231.211 362.805 231.766 362.598 232.625C362.119 234.608 361.774 236.857 362.249 238.784C363.128 242.358 364.88 245.618 367.999 247.907C368.71 248.428 369.389 248.994 370.082 249.539C370.547 248.753 371.11 248.006 371.452 247.17C371.861 246.17 371.971 245.043 372.426 244.071C372.683 243.522 373.372 243.174 373.954 242.904C374.082 243.704 374.122 244.336 374.076 245.033C374.108 245.381 374.226 245.663 374.345 245.945Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M382.835 335.221C382.62 334.591 382.453 333.79 382.392 332.872C382.626 333.521 382.755 334.285 382.835 335.221Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.218 338.742C383.018 338.365 382.879 337.838 382.843 337.216C383.057 337.612 383.168 338.102 383.218 338.742Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M383.868 342.709C383.926 342.831 383.758 342.881 383.67 342.878C383.455 342.614 383.327 342.353 383.294 342.008C383.529 342.144 383.67 342.365 383.868 342.709Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M386.55 387.009C386.753 386.948 387.036 386.989 387.342 387.145C387.12 387.21 386.875 387.161 386.55 387.009Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M374.077 245.032C374.239 244.963 374.315 244.96 374.506 244.96C374.584 245.189 374.548 245.414 374.428 245.792C374.227 245.662 374.109 245.38 374.077 245.032Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M379.5 304.747C379.32 304.572 379.239 304.341 379.214 303.993C379.38 304.147 379.489 304.419 379.5 304.747Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M390.374 187.322C391.244 192.375 392.249 197.411 392.918 202.49C393.186 204.531 392.717 206.668 392.588 208.95C390.664 216.874 386.383 223.427 382.019 229.931C380.446 232.277 378.863 234.631 377.082 236.818C376.436 237.612 375.201 237.93 373.975 238.345C370.99 235.636 368.266 233.047 365.541 230.459C364.282 228.985 364.586 227.343 365.125 225.405C365.535 224.211 365.843 223.299 366.239 222.247C366.608 221.559 366.89 221.011 367.172 220.463C367.048 220.374 366.925 220.285 366.802 220.196C365.906 220.736 365.011 221.276 363.91 221.828C360.932 221.859 358.159 221.879 355.385 221.898C355.184 221.863 354.982 221.828 354.539 221.692C353.915 221.648 353.532 221.704 353.15 221.761C353.069 221.773 352.988 221.786 352.589 221.815C347.176 221.77 342.081 221.708 336.914 221.506C335.722 220.625 333.237 221.465 333.822 218.571C334.302 214.21 334.688 210.034 335.247 205.882C336.345 197.722 337.447 189.561 338.721 181.428C339.838 174.304 340.955 167.192 345.7 161.226C349.408 156.565 348.524 156.443 351.846 161.859C352.847 163.491 353.693 163.762 354.902 162.184C357.971 158.182 360.959 154.115 363.866 149.994C364.276 149.412 364.047 148.383 364.114 147.422C364.108 147.097 364.104 146.912 364.237 146.781C366.623 148.25 368.871 149.665 371.195 151.207C372.243 151.833 373.215 152.331 374.283 152.936C374.751 153.11 375.122 153.177 375.523 153.39C378.014 156.061 380.476 158.587 382.937 161.113C383.447 162.213 383.957 163.314 384.591 164.679C385.297 166.72 385.88 168.496 386.463 170.419C386.61 170.905 386.756 171.246 386.904 171.766C387.494 174.444 388.081 176.944 388.687 179.617C389.262 182.301 389.818 184.812 390.374 187.322ZM375.815 201C375.25 200.094 375.22 200.072 374.643 200.859C373.927 201.835 373.266 202.853 372.554 203.893C368.414 193.393 366.912 182.706 365.797 171.897C365.469 175.383 365.754 178.805 365.829 182.232C365.995 189.715 368.414 196.729 370.447 203.792C370.973 205.621 370.998 207.193 370.533 208.792C369.791 211.349 368.716 213.809 367.827 216.326C367.693 216.704 367.808 217.17 367.808 217.804C370.52 212.104 373.096 206.689 375.815 201ZM348.605 177.692C350.859 177.703 353.116 177.778 355.365 177.686C356.064 177.657 357.239 177.293 357.343 176.873C357.697 175.441 357.7 173.916 357.737 172.423C357.74 172.3 357 172.065 356.595 172.04C353.846 171.872 351.095 171.683 348.343 171.626C346.172 171.581 345.848 172.359 345.655 175.569C345.528 177.698 346.664 177.792 348.605 177.692Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M336.987 221.647C342.082 221.709 347.176 221.771 352.472 221.852C352.68 222.453 352.649 223.038 352.702 223.615C352.854 225.255 352.058 225.772 350.496 225.758C345.464 225.711 340.43 225.734 335.397 225.779C334.506 225.787 333.617 226.031 332.939 226.134C333.192 228.239 333.252 230.036 333.643 231.76C335.223 238.743 336.885 245.707 338.554 252.67C341.202 263.721 343.834 274.776 346.557 285.808C349.053 295.92 351.674 306.001 354.197 316.106C354.439 317.074 354.435 318.117 354.446 319.127C354.487 322.687 354.485 326.248 354.49 330.206C354.373 334.246 354.265 337.889 354.104 341.715C353.881 345.696 353.781 349.501 353.485 353.291C353.422 354.092 352.642 354.838 351.984 355.57C350.264 355.653 348.74 355.963 347.244 355.863C341.909 355.507 336.584 355.017 331.256 354.566C329.97 354.457 329.992 353.71 330.316 352.717C330.71 351.505 331.359 350.213 329.959 349.154C330 349.123 330.1 349.117 330.317 349.048C330.698 348.744 331.008 348.507 331.005 348.274C330.958 345.07 330.894 341.864 330.754 338.662C330.737 338.279 330.253 337.915 329.949 337.401C329.928 337.067 329.943 336.875 330.088 336.657C329.987 336.209 329.758 335.785 329.503 335.172C329.34 333.791 329.203 332.599 329.077 331.206C329.069 329.717 329.171 328.414 329.004 327.146C328.694 324.799 328.226 322.472 327.84 319.961C327.855 319.323 327.856 318.861 327.874 318.201C327.849 316.944 327.807 315.885 327.783 314.651C327.606 313.561 327.411 312.647 327.253 311.547C327.271 310.478 327.251 309.595 327.252 308.519C327.208 307.304 327.143 306.281 327.126 305.078C327.053 303.849 326.93 302.8 326.824 301.576C326.799 300.939 326.758 300.475 326.758 299.811C326.644 297.561 326.49 295.511 326.356 293.275C326.327 292.341 326.276 291.593 326.268 290.646C326.155 288.545 325.999 286.644 325.879 284.578C325.865 284.083 325.815 283.753 325.811 283.227C325.688 281.424 325.519 279.819 325.384 278.018C325.355 276.779 325.293 275.735 325.29 274.495C325.182 270.314 325.029 266.329 324.84 262.346C324.642 258.154 324.409 253.964 324.23 249.61C324.248 249.113 324.227 248.78 324.288 248.331C324.314 247.569 324.258 246.922 324.238 246.072C324.299 240.491 324.324 235.113 324.476 229.694C324.598 229.222 324.591 228.79 324.599 228.199C324.647 227.721 324.681 227.403 324.848 227.058C324.919 226.578 324.858 226.126 324.779 225.485C324.765 224.282 324.768 223.266 324.944 222.221C325.963 222.069 326.806 221.866 327.655 221.84C330.765 221.744 333.876 221.706 336.987 221.647Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M365.002 370.368C362.963 370.381 360.909 370.547 358.89 370.352C357.642 370.23 356.447 369.559 355.082 368.879C354.303 365.957 354.516 363.445 356.458 361.183C357.362 360.937 358.139 360.808 358.832 360.496C360.183 359.889 361.487 359.18 362.811 358.514C366.132 358.471 369.453 358.4 372.774 358.395C375.295 358.392 377.815 358.474 380.515 358.713C380.713 360.379 380.731 361.85 380.71 363.429C380.687 363.611 380.704 363.685 380.722 363.76C380.631 367.29 380.166 367.881 376.654 368.605C374.821 368.984 372.962 369.241 370.768 369.539C369.789 369.679 369.155 369.832 368.522 369.985C367.889 370.051 367.257 370.117 366.368 370.133C365.741 370.179 365.372 370.273 365.002 370.368Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M365.364 230.488C368.266 233.048 370.99 235.637 373.809 238.355C373.925 239.792 373.946 241.1 373.917 242.571C373.373 243.173 372.683 243.521 372.426 244.069C371.971 245.041 371.861 246.169 371.452 247.168C371.11 248.004 370.548 248.751 370.083 249.538C369.389 248.992 368.711 248.427 368 247.905C364.88 245.616 363.128 242.356 362.249 238.783C361.775 236.855 362.119 234.607 362.598 232.624C362.806 231.764 364.284 231.21 365.364 230.488Z\" fill=\"#6E4446\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M355.313 222.032C358.159 221.88 360.932 221.861 364.021 221.936C364.942 222.15 365.547 222.269 366.151 222.387C365.843 223.3 365.535 224.212 365.123 225.229C362.473 225.333 359.926 225.339 357.38 225.33C354.387 225.32 354.171 224.994 355.313 222.032Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M360.157 354.422C359.753 352.947 359.38 351.282 359.107 349.488C359.534 350.983 359.861 352.608 360.157 354.422Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M362.287 358.395C361.66 357.991 360.96 357.467 360.308 356.781C360.975 357.172 361.594 357.723 362.287 358.395Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M358.64 344.914C358.425 344.531 358.277 343.993 358.21 343.351C358.43 343.751 358.568 344.255 358.64 344.914Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M359.097 347.972C358.877 347.594 358.716 347.059 358.635 346.418C358.863 346.812 359.01 347.313 359.097 347.972Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M353.231 221.874C353.532 221.706 353.915 221.649 354.385 221.687C354.086 221.849 353.699 221.917 353.231 221.874Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M357.576 341.616C357.538 341.415 357.55 341.298 357.582 341.003C357.802 341.14 358.003 341.455 358.147 341.904C357.936 341.925 357.781 341.812 357.576 341.616Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M334.393 121.861C333.061 121.528 331.702 121.273 330.41 120.825C329.81 120.617 329.341 120.034 328.812 119.621C329.269 119.144 329.724 118.259 330.183 118.257C332.606 118.247 333.279 116.553 333.921 114.765C335.464 110.461 338.079 107.021 342.144 104.564C342.568 104.308 342.915 104.168 343.56 103.965C345.212 103.492 346.567 103.081 347.921 102.67C349.771 102.675 351.621 102.679 353.731 102.817C354.443 103.109 354.896 103.268 355.349 103.428C356.206 103.933 357.063 104.438 357.806 105.066C354.434 105.12 350.988 104.34 347.958 105.134C342.154 106.654 338.586 110.939 336.968 116.715C336.253 119.267 336.402 119.628 339.01 120.086C346.807 121.453 354.619 122.739 362.443 123.949C363.539 124.118 364.729 123.682 366.044 123.533C366.66 123.585 367.107 123.629 367.554 123.674C368.315 126.119 368.012 126.535 365.449 126.546C364.739 126.549 364.029 126.539 363.029 126.399C362.197 126.074 361.668 125.796 361.11 125.712C354.657 124.738 348.199 123.794 341.602 122.75C339.106 122.392 336.75 122.127 334.393 121.861Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M368.637 370.073C369.155 369.831 369.789 369.678 370.591 369.581C370.09 369.811 369.421 369.986 368.637 370.073Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M365.095 370.461C365.372 370.273 365.741 370.178 366.211 370.158C365.937 370.34 365.562 370.447 365.095 370.461Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.115 147.562C364.048 148.384 364.276 149.413 363.866 149.994C360.96 154.115 357.971 158.182 354.902 162.185C353.693 163.762 352.848 163.491 351.846 161.86C348.524 156.443 349.408 156.565 345.701 161.227C340.955 167.193 339.838 174.305 338.722 181.429C337.447 189.562 336.345 197.723 335.247 205.882C334.688 210.035 334.302 214.21 333.659 218.569C333.04 218.762 332.6 218.764 332.169 218.583C332.765 214.043 333.365 209.688 333.933 205.328C334.659 199.746 335.371 194.163 336.063 188.577C336.426 185.64 336.539 182.658 337.112 179.764C337.904 175.757 339.103 171.831 339.954 167.833C340.232 166.529 339.896 165.106 339.964 163.744C340.058 161.875 340.56 159.977 340.343 158.155C340.143 156.468 339.085 154.798 338.5 153C340.083 151.326 341.793 149.875 343.431 148.532C343.654 149.396 343.806 150.087 343.958 150.778C344.395 152.762 344.831 154.746 345.272 156.875C345.894 157.76 345.894 157.76 346.976 156.533C348.378 154.943 349.121 154.992 350.303 156.703C351.314 158.167 352.363 159.604 353.74 161.537C357.343 156.684 360.729 152.123 364.115 147.562Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M364.135 147.543C360.75 152.244 357.364 156.805 353.761 161.658C352.384 159.725 351.335 158.288 350.324 156.824C349.142 155.113 348.4 155.064 346.997 156.654C345.915 157.881 345.915 157.881 345.359 156.866C350.247 151.705 354.756 146.464 360.881 142.893C361.9 143.795 362.78 144.668 363.661 145.54C363.777 145.89 363.893 146.24 364.065 146.719C364.125 147.033 364.13 147.219 364.135 147.543Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M375.744 201.138C373.096 206.69 370.52 212.105 367.809 217.805C367.809 217.171 367.694 216.705 367.827 216.327C368.716 213.81 369.792 211.35 370.534 208.793C370.998 207.194 370.974 205.622 370.447 203.793C368.414 196.73 365.995 189.716 365.83 182.233C365.754 178.806 365.469 175.384 365.797 171.898C366.913 182.707 368.414 193.394 372.554 203.894C373.266 202.854 373.927 201.837 374.643 200.86C375.22 200.073 375.25 200.095 375.744 201.138Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M348.396 177.692C346.664 177.793 345.528 177.699 345.656 175.57C345.848 172.36 346.172 171.582 348.343 171.627C351.096 171.684 353.846 171.873 356.595 172.041C357 172.066 357.74 172.301 357.737 172.424C357.7 173.917 357.697 175.442 357.343 176.874C357.239 177.294 356.064 177.658 355.365 177.687C353.116 177.779 350.859 177.704 348.396 177.692Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M332.159 218.766C332.6 218.765 333.04 218.764 333.644 218.766C333.237 221.467 335.722 220.627 336.914 221.508C333.876 221.707 330.764 221.745 327.654 221.841C326.806 221.868 325.962 222.07 324.943 222.222C324.628 222.177 324.486 222.102 324.404 221.794C326.24 221.359 328.014 221.011 329.791 220.997C331.432 220.984 332.306 220.502 332.159 218.766Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M366.239 222.247C365.547 222.268 364.942 222.149 364.227 221.924C365.011 221.277 365.906 220.737 366.802 220.197C366.925 220.286 367.049 220.375 367.172 220.464C366.89 221.012 366.608 221.56 366.239 222.247Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M386.463 170.42C386.68 170.651 386.897 171.028 387.008 171.496C386.756 171.247 386.61 170.907 386.463 170.42Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M351.885 360.504C351.292 364.824 351.136 364.949 346.894 365.024C339.745 365.15 332.596 365.34 325.446 365.4C322.24 365.427 319.03 365.233 315.826 365.069C315.239 365.039 314.67 364.67 314.059 364.121C314.527 360.791 316.284 359.023 319.257 358.386C320.466 358.127 321.652 357.76 322.848 357.438C327.095 356.294 329.659 353.718 329.919 349.183C331.359 350.211 330.71 351.504 330.315 352.715C329.992 353.709 329.97 354.456 331.256 354.565C336.584 355.015 341.909 355.506 347.243 355.862C348.74 355.962 350.263 355.652 351.983 355.569C352.192 355.608 352.235 355.77 352.068 355.923C351.796 356.482 351.69 356.888 351.584 357.294C351.65 358.318 351.715 359.342 351.885 360.504Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M323.784 253.025C323.843 251.889 323.903 250.957 324.078 249.9C324.409 253.965 324.641 258.155 324.84 262.346C325.028 266.329 325.182 270.314 325.29 274.495C324.9 273.475 324.329 272.268 324.279 271.039C324.038 265.106 323.937 259.166 323.784 253.025Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.758 299.812C325.459 298.007 325.611 295.871 326.231 293.582C326.489 295.513 326.644 297.562 326.758 299.812Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M326.268 290.645C326.033 288.894 325.84 286.943 325.746 284.867C325.999 286.643 326.154 288.544 326.268 290.645Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M325.811 283.227C325.567 281.784 325.37 280.145 325.261 278.36C325.519 279.82 325.688 281.425 325.811 283.227Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M327.126 305.077C326.916 304.173 326.755 303.088 326.701 301.877C326.93 302.799 327.052 303.848 327.126 305.077Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M324.288 248.332C324.131 247.794 324.057 247.14 324.092 246.381C324.257 246.922 324.314 247.569 324.288 248.332Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M330.087 336.658C329.796 336.337 329.635 335.993 329.5 335.504C329.757 335.785 329.987 336.209 330.087 336.658Z\" fill=\"var(--primary-color-700-parts, #0E5BF3)\"/>\r\n <path d=\"M324.847 227.057C324.696 226.726 324.677 226.367 324.728 225.841C324.858 226.125 324.919 226.577 324.847 227.057Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M324.476 229.694C324.35 229.342 324.353 228.949 324.47 228.458C324.591 228.79 324.597 229.222 324.476 229.694Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M351.704 357.263C351.689 356.89 351.795 356.484 352.052 356.008C352.078 356.368 351.951 356.799 351.704 357.263Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M341.742 122.844C348.199 123.796 354.657 124.74 361.11 125.714C361.668 125.798 362 126 363 126.379C362.82 127.689 362.378 128.885 362.065 130.232C361.674 131.205 361.318 132.004 360.843 133.052C360.506 133.819 360.286 134.337 360.066 134.854C359.897 135.252 359.774 135.61 359.317 135.74C356.443 136.556 355.011 135.607 354.394 132.613C353.971 131.968 353.596 131.466 353.209 130.788C353.224 130.253 353.166 129.861 353.289 129.538C353.844 128.081 353.457 126.601 352.082 126.379C351.229 126.241 350.062 127.51 349.177 128.304C348.736 128.699 348.711 129.523 348.32 130.012C347.928 130.503 347.155 131.243 346.834 131.123C346.216 130.89 345.692 130.187 345.339 129.562C345.12 129.174 345.234 128.563 345.292 128.063C345.582 125.59 345.22 123.58 342.136 123.339C341.992 123.328 341.873 123.016 341.742 122.844Z\" fill=\"#382857\"/>\r\n <path d=\"M365.875 123.529C364.729 123.684 363.539 124.12 362.443 123.951C354.62 122.741 346.807 121.455 339.01 120.087C336.402 119.63 336.253 119.269 336.968 116.717C338.586 110.941 342.154 106.656 347.958 105.136C350.988 104.342 354.434 105.121 357.892 105.192C359.812 106.657 361.76 107.928 363.202 109.625C365.846 112.738 366.156 116.59 365.879 120.896C365.876 122.034 365.875 122.781 365.875 123.529Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M342.922 144.213C341.481 144.155 340.036 144.145 338.601 144.026C336.29 143.834 334.109 143.372 333.179 140.651C333.041 138.954 332.934 137.366 332.979 135.781C333.018 134.375 333.037 133.16 331.569 132.25C331.107 131.963 330.966 130.549 331.217 129.84C332.137 127.247 333.284 124.734 334.369 122.027C336.75 122.127 339.106 122.393 341.602 122.751C341.873 123.015 341.992 123.327 342.136 123.338C345.22 123.579 345.582 125.589 345.292 128.062C345.234 128.562 345.12 129.173 345.339 129.56C345.692 130.186 346.216 130.889 346.834 131.121C347.155 131.242 347.928 130.502 348.32 130.011C348.711 129.522 348.736 128.698 349.177 128.302C350.062 127.508 351.229 126.239 352.082 126.377C353.457 126.6 353.844 128.08 353.289 129.537C353.166 129.86 353.224 130.251 353.184 130.954C353.018 132.059 352.866 132.823 352.715 133.585C352.716 133.584 352.718 133.582 352.563 133.604C351.487 135.214 350.566 136.802 349.647 138.389C349.647 138.388 349.648 138.387 349.517 138.455C348.078 139.753 346.792 141.006 345.454 142.201C344.651 142.918 343.768 143.546 342.922 144.213Z\" fill=\"#6E4446\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M328.644 171.556C329.333 169.527 330.131 167.528 330.686 165.463C331.587 162.112 332.925 159.035 335.386 156.507C336.407 155.458 337.342 154.325 338.471 153.227C339.228 154.865 340.143 156.468 340.343 158.155C340.56 159.977 340.058 161.875 339.964 163.744C339.896 165.107 340.231 166.529 339.954 167.833C339.103 171.831 337.904 175.757 337.112 179.764C336.539 182.658 336.426 185.64 336.063 188.578C335.371 194.164 334.658 199.747 333.932 205.328C333.365 209.688 332.765 214.044 332.169 218.583C332.306 220.501 331.433 220.983 329.791 220.996C328.014 221.009 326.24 221.358 324.351 221.682C323.799 221.474 323.362 221.144 322.895 220.512C322.563 219.435 322.261 218.662 321.959 217.889C321.962 216.559 321.965 215.23 322.08 213.614C322.149 212.806 322.107 212.284 322.066 211.762C322.342 209.554 322.618 207.347 323.009 204.832C324.965 193.535 326.804 182.545 328.644 171.556Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M321.864 217.996C322.261 218.661 322.563 219.434 322.85 220.372C322.48 219.726 322.124 218.915 321.864 217.996Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M321.953 211.853C322.107 212.284 322.149 212.806 322.074 213.415C321.918 212.983 321.879 212.463 321.953 211.853Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M354.442 132.756C355.011 135.607 356.496 136.561 359.314 135.741C359.848 137.924 360.563 140.59 361 143C355.053 146.773 349.893 152.484 345 157.5C344.498 155.646 344.395 152.763 343.958 150.779C343.806 150.088 343.654 149.397 343.431 148.533C343.36 148.36 343.457 148.348 343.636 148.383C347.571 146.121 349.075 142.523 349.648 138.388C349.648 138.388 349.647 138.39 349.801 138.37C350.875 136.761 351.797 135.172 352.718 133.583C352.718 133.583 352.716 133.585 352.84 133.52C353.456 133.221 353.949 132.989 354.442 132.756Z\" fill=\"#6E4446\"/>\r\n <path d=\"M354.661 132.608C354.216 132.983 353.095 133.628 352.5 133.628C352.527 132.931 353.13 131.43 353.307 130.5C353.707 130.836 354.238 131.963 354.661 132.608Z\" fill=\"#382857\"/>\r\n <path d=\"M350 138C350.482 142.043 347.571 146.121 343.656 148.428C343.305 147.146 343.191 145.466 343 144C343.848 143.158 344.698 142.717 345.5 142C346.838 140.804 348.561 139.297 350 138Z\" fill=\"#382857\"/>\r\n <path d=\"M352.618 133.541C353 133.5 349.618 138.541 349.118 140.041C349.118 138.541 351.542 135.151 352.618 133.541Z\" fill=\"#382857\"/>\r\n <path d=\"M119.423 10.3316C126.735 10.5908 141.577 12.5721 164.607 14.2994C184.511 15.7921 198.643 19.1764 207.6 21.3658C210.217 22.0056 211.565 23.2196 212.239 24.3726C212.566 24.9312 212.417 25.4763 212.025 25.8433H212.974C213.172 26.1753 212.95 27.212 213.472 27.8336C215.561 30.35 218.151 334.742 211.979 340.917C211.782 341.113 211.393 341.31 211.382 341.315C210.951 341.779 209.252 342.469 205.51 343.106C208.892 339.724 209.195 338.432 209.192 338.628C210.909 237.541 211.867 42.5867 208.839 26.0845L117.719 15.7945C116.708 15.6801 115.909 14.8052 116.211 13.8336C116.736 12.145 117.916 10.9748 118.675 10.5025C118.899 10.363 119.159 10.3223 119.423 10.3316Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M119.425 10.332C126.738 10.5931 141.579 12.5853 164.607 14.3223C184.511 15.8236 198.643 19.2268 207.6 21.4287C209.817 21.9738 211.121 22.9344 211.879 23.9199H212.974C213.173 24.2536 212.949 25.2966 213.472 25.9219C215.562 28.431 218.152 334.589 211.979 340.798C211.782 340.995 211.394 341.192 211.382 341.198C210.951 341.665 209.252 342.359 205.51 343C208.893 339.597 209.196 338.299 209.192 338.496C210.856 239.968 211.805 52.7698 209.106 26.2041L117.718 15.8252C116.707 15.7104 115.91 14.8365 116.208 13.8643C116.731 12.1615 117.913 10.9805 118.673 10.5039C118.898 10.3629 119.16 10.3226 119.425 10.332Z\" fill=\"black\" fill-opacity=\"0.2\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <rect x=\"200.733\" y=\"33.3079\" width=\"302.136\" height=\"0.796143\" rx=\"0.398071\" transform=\"rotate(90 200.733 33.3079)\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M122.711 231.679V223.844C122.711 223.371 122.328 222.988 121.855 222.988C121.396 222.988 121.019 223.351 121 223.809L120.632 233.007C120.62 233.306 120.562 233.564 120.84 233.673C121.83 234.061 122.711 232.742 122.711 231.679Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 222.738C122.466 222.738 122.961 223.233 122.961 223.844V231.679C122.961 232.27 122.718 232.922 122.339 233.38C121.959 233.837 121.385 234.155 120.749 233.906C120.644 233.865 120.555 233.802 120.489 233.716C120.424 233.63 120.394 233.536 120.38 233.451C120.367 233.368 120.368 233.284 120.371 233.212C120.372 233.175 120.374 233.137 120.377 233.101C120.379 233.065 120.381 233.031 120.382 232.997L120.751 223.8C120.774 223.207 121.262 222.738 121.855 222.738Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 110.465V102.63C122.711 102.157 122.328 101.774 121.855 101.774C121.396 101.774 121.019 102.137 121 102.596L120.632 111.793C120.62 112.092 120.562 112.35 120.84 112.459C121.83 112.847 122.711 111.528 122.711 110.465Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 101.524C122.466 101.524 122.961 102.019 122.961 102.63V110.465C122.961 111.056 122.718 111.708 122.339 112.166C121.959 112.623 121.385 112.941 120.749 112.692C120.644 112.651 120.555 112.589 120.489 112.502C120.424 112.416 120.394 112.323 120.38 112.237C120.367 112.154 120.368 112.07 120.371 111.998C120.372 111.961 120.374 111.923 120.377 111.888C120.379 111.852 120.381 111.817 120.382 111.783L120.751 102.586C120.774 101.993 121.262 101.524 121.855 101.524Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 91.5571V83.7219C122.711 83.2494 122.328 82.8664 121.855 82.8664C121.396 82.8664 121.019 83.2289 121 83.6877L120.632 92.8853C120.62 93.1838 120.562 93.4426 120.84 93.5516C121.83 93.9392 122.711 92.6199 122.711 91.5571Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 82.6164C122.466 82.6164 122.961 83.1113 122.961 83.7219V91.5568C122.961 92.1484 122.718 92.8004 122.339 93.258C121.959 93.7152 121.385 94.0335 120.749 93.7844C120.644 93.7432 120.555 93.6807 120.489 93.5939C120.424 93.5084 120.394 93.4147 120.38 93.3293C120.367 93.2462 120.368 93.1625 120.371 93.09C120.372 93.0531 120.374 93.0149 120.377 92.9797C120.379 92.9437 120.381 92.9094 120.382 92.8752L120.751 83.6779C120.774 83.0851 121.262 82.6164 121.855 82.6164Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 68.867V61.0318C122.711 60.5594 122.328 60.1763 121.855 60.1763C121.396 60.1763 121.019 60.5388 121 60.9976L120.632 70.1952C120.62 70.4938 120.562 70.7525 120.84 70.8615C121.83 71.2491 122.711 69.9298 122.711 68.867Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 59.9263C122.466 59.9263 122.961 60.4213 122.961 61.0318V68.8668C122.961 69.4584 122.718 70.1103 122.339 70.5679C121.959 71.0251 121.385 71.3435 120.749 71.0943C120.644 71.0531 120.555 70.9907 120.489 70.9039C120.424 70.8184 120.394 70.7246 120.38 70.6392C120.367 70.5562 120.368 70.4724 120.371 70.4C120.372 70.363 120.374 70.3248 120.377 70.2896C120.379 70.2536 120.381 70.2194 120.382 70.1851L120.751 60.9879C120.774 60.395 121.262 59.9264 121.855 59.9263Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 44.5846V36.7494C122.711 36.2769 122.328 35.8939 121.855 35.8939C121.396 35.8939 121.019 36.2564 121 36.7152L120.632 45.9128C120.62 46.2114 120.562 46.4701 120.84 46.5791C121.83 46.9667 122.711 45.6474 122.711 44.5846Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 35.6439C122.466 35.6439 122.961 36.1389 122.961 36.7494V44.5844C122.961 45.176 122.718 45.8279 122.339 46.2855C121.959 46.7427 121.385 47.0611 120.749 46.8119C120.644 46.7707 120.555 46.7082 120.489 46.6215C120.424 46.536 120.394 46.4422 120.38 46.3568C120.367 46.2738 120.368 46.19 120.371 46.1176C120.372 46.0806 120.374 46.0424 120.377 46.0072C120.379 45.9712 120.381 45.937 120.382 45.9027L120.751 36.7054C120.774 36.1126 121.262 35.644 121.855 35.6439Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 256.758V248.922C122.711 248.45 122.328 248.067 121.855 248.067C121.396 248.067 121.019 248.429 121 248.888L120.632 258.086C120.62 258.384 120.562 258.643 120.84 258.752C121.83 259.14 122.711 257.82 122.711 256.758Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 247.817C122.466 247.817 122.961 248.312 122.961 248.922V256.757C122.961 257.349 122.718 258.001 122.339 258.459C121.959 258.916 121.385 259.234 120.749 258.985C120.644 258.944 120.555 258.881 120.489 258.794C120.424 258.709 120.394 258.615 120.38 258.53C120.367 258.447 120.368 258.363 120.371 258.291C120.372 258.254 120.374 258.215 120.377 258.18C120.379 258.144 120.381 258.11 120.382 258.076L120.751 248.878C120.774 248.286 121.262 247.817 121.855 247.817Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 281.833V273.998C122.711 273.526 122.328 273.143 121.855 273.143C121.396 273.143 121.019 273.505 121 273.964L120.632 283.162C120.62 283.46 120.562 283.719 120.84 283.828C121.83 284.215 122.711 282.896 122.711 281.833Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 272.893C122.466 272.893 122.961 273.388 122.961 273.998V281.833C122.961 282.425 122.718 283.077 122.339 283.534C121.959 283.991 121.385 284.31 120.749 284.061C120.644 284.02 120.555 283.957 120.489 283.87C120.424 283.785 120.394 283.691 120.38 283.606C120.367 283.523 120.368 283.439 120.371 283.366C120.372 283.329 120.374 283.291 120.377 283.256C120.379 283.22 120.381 283.186 120.382 283.151L120.751 273.954C120.774 273.361 121.262 272.893 121.855 272.893Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 306.914V299.079C122.711 298.606 122.328 298.223 121.855 298.223C121.396 298.223 121.019 298.586 121 299.044L120.632 308.242C120.62 308.54 120.562 308.799 120.84 308.908C121.83 309.296 122.711 307.977 122.711 306.914Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 297.973C122.466 297.973 122.961 298.468 122.961 299.079V306.913C122.961 307.505 122.718 308.157 122.339 308.615C121.959 309.072 121.385 309.39 120.749 309.141C120.644 309.1 120.555 309.037 120.489 308.951C120.424 308.865 120.394 308.771 120.38 308.686C120.367 308.603 120.368 308.519 120.371 308.447C120.372 308.41 120.374 308.372 120.377 308.336C120.379 308.3 120.381 308.266 120.382 308.232L120.751 299.035C120.774 298.442 121.262 297.973 121.855 297.973Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M122.711 331.993V324.157C122.711 323.685 122.328 323.302 121.855 323.302C121.396 323.302 121.019 323.664 121 324.123L120.632 333.321C120.62 333.619 120.562 333.878 120.84 333.987C121.83 334.375 122.711 333.055 122.711 331.993Z\" fill=\"white\" fill-opacity=\"0.1\"/>\r\n <path d=\"M121.855 323.052C122.466 323.052 122.961 323.547 122.961 324.157V331.992C122.961 332.584 122.718 333.236 122.339 333.693C121.959 334.151 121.385 334.469 120.749 334.22C120.644 334.179 120.555 334.116 120.489 334.029C120.424 333.944 120.394 333.85 120.38 333.765C120.367 333.682 120.368 333.598 120.371 333.526C120.372 333.489 120.374 333.45 120.377 333.415C120.379 333.379 120.381 333.345 120.382 333.311L120.751 324.113C120.774 323.521 121.262 323.052 121.855 323.052Z\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\r\n <path d=\"M195.122 38.87L186.048 38.6161C185.613 38.6039 185.251 38.9463 185.239 39.3807L185.195 40.954C185.177 41.6057 185.69 42.1488 186.342 42.167L196.862 42.4613C197.432 42.4773 197.778 42.6209 198.089 42.1435C199.118 40.5657 197.005 38.9227 195.122 38.87Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 62.2446L186.048 61.9906C185.613 61.9785 185.251 62.3208 185.239 62.7553L185.195 64.3286C185.177 64.9802 185.69 65.5233 186.342 65.5415L196.862 65.8359C197.432 65.8518 197.778 65.9954 198.089 65.5181C199.118 63.9403 197.005 62.2972 195.122 62.2446Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 85.6176L186.048 85.3637C185.613 85.3515 185.251 85.6938 185.239 86.1283L185.195 87.7016C185.177 88.3532 185.69 88.8963 186.342 88.9145L196.862 89.2089C197.432 89.2248 197.778 89.3684 198.089 88.8911C199.118 87.3133 197.005 85.6702 195.122 85.6176Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.122 106.429L186.048 106.175C185.613 106.163 185.251 106.505 185.239 106.94L185.195 108.513C185.177 109.164 185.69 109.708 186.342 109.726L196.862 110.02C197.432 110.036 197.778 110.18 198.089 109.702C199.118 108.124 197.005 106.481 195.122 106.429Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 222.092L186.708 222.28C186.323 222.289 186.018 222.609 186.027 222.994L186.06 224.388C186.073 224.966 186.552 225.423 187.13 225.409L196.454 225.192C196.959 225.18 197.272 225.291 197.526 224.855C198.364 223.411 196.42 222.053 194.751 222.092Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.751 246.546L186.708 246.734C186.323 246.743 186.018 247.063 186.027 247.448L186.06 248.842C186.073 249.42 186.552 249.877 187.13 249.864L196.454 249.646C196.959 249.634 197.272 249.745 197.526 249.309C198.364 247.866 196.42 246.507 194.751 246.546Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.089 271.009L186.07 271.219C185.639 271.229 185.297 271.588 185.307 272.019L185.343 273.583C185.359 274.23 185.896 274.743 186.544 274.728L196.999 274.484C197.565 274.471 197.915 274.596 198.2 274.106C199.14 272.488 196.96 270.965 195.089 271.009Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.376 295.876L185.358 296.087C184.926 296.097 184.584 296.455 184.594 296.887L184.631 298.45C184.646 299.098 185.183 299.611 185.831 299.596L196.286 299.352C196.852 299.338 197.203 299.463 197.487 298.974C198.428 297.355 196.248 295.833 194.376 295.876Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M194.411 319.8L185.393 320.011C184.961 320.021 184.619 320.379 184.629 320.811L184.666 322.375C184.681 323.022 185.218 323.535 185.866 323.52L196.321 323.276C196.887 323.263 197.238 323.387 197.522 322.898C198.463 321.28 196.283 319.757 194.411 319.8Z\" fill=\"#F6EBE5\"/>\r\n <path d=\"M195.169 45.5248L186.094 45.2709C185.659 45.2588 185.297 45.6011 185.285 46.0355L185.241 47.6088C185.223 48.2605 185.736 48.8036 186.388 48.8218L196.908 49.1162C197.478 49.1321 197.824 49.2757 198.135 48.7983C199.164 47.2205 197.052 45.5775 195.169 45.5248Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 68.8994L186.094 68.6455C185.659 68.6333 185.297 68.9756 185.285 69.4101L185.241 70.9834C185.223 71.635 185.736 72.1781 186.388 72.1963L196.908 72.4907C197.478 72.5066 197.824 72.6502 198.135 72.1729C199.164 70.5951 197.052 68.952 195.169 68.8994Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 92.2724L186.094 92.0185C185.659 92.0063 185.297 92.3487 185.285 92.7831L185.241 94.3564C185.223 95.0081 185.736 95.5511 186.388 95.5694L196.908 95.8637C197.478 95.8797 197.824 96.0233 198.135 95.5459C199.164 93.9681 197.052 92.3251 195.169 92.2724Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.169 113.085L186.094 112.831C185.659 112.819 185.297 113.161 185.285 113.596L185.241 115.169C185.223 115.821 185.736 116.364 186.388 116.382L196.908 116.676C197.478 116.692 197.824 116.836 198.135 116.359C199.164 114.781 197.052 113.138 195.169 113.085Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 228.589L186.77 228.662C186.385 228.666 186.075 228.981 186.079 229.366L186.092 230.761C186.097 231.339 186.57 231.803 187.147 231.797L196.474 231.712C196.979 231.707 197.29 231.823 197.55 231.39C198.409 229.959 196.484 228.573 194.815 228.589Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.815 253.043L186.77 253.116C186.385 253.12 186.075 253.435 186.079 253.82L186.092 255.215C186.097 255.793 186.57 256.257 187.147 256.251L196.474 256.166C196.979 256.162 197.29 256.277 197.55 255.844C198.409 254.413 196.484 253.028 194.815 253.043Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M195.161 278.295L186.14 278.377C185.708 278.381 185.361 278.735 185.365 279.167L185.38 280.73C185.385 281.378 185.915 281.899 186.563 281.893L197.021 281.797C197.587 281.792 197.936 281.922 198.227 281.436C199.191 279.831 197.032 278.278 195.161 278.295Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.448 303.162L185.427 303.245C184.995 303.249 184.648 303.602 184.652 304.034L184.667 305.598C184.673 306.246 185.203 306.766 185.85 306.76L196.308 306.664C196.874 306.659 197.223 306.789 197.514 306.304C198.478 304.699 196.319 303.145 194.448 303.162Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M194.483 327.087L185.462 327.169C185.03 327.173 184.683 327.526 184.687 327.958L184.702 329.522C184.708 330.17 185.238 330.69 185.885 330.684L196.343 330.589C196.909 330.584 197.258 330.713 197.549 330.228C198.513 328.623 196.355 327.07 194.483 327.087Z\" fill=\"#E9E9E9\"/>\r\n <path d=\"M132.762 33.3081C129.525 33.3081 128.934 34.5994 129.07 35.5061C129.11 35.7709 129.18 36.0319 129.18 36.2997V45.4493C129.18 47.36 131.236 47.9704 132.265 48.0368C146.297 49.0983 174.878 51.2412 176.948 51.3209C178.541 51.3821 179.49 50.8579 179.948 50.4013C180.168 50.1822 180.232 49.8655 180.232 49.555V40.3684C180.232 40.0451 180.349 39.7301 180.372 39.4077C180.474 37.9904 177.572 37.0214 175.953 36.6917C163.115 35.5638 136.504 33.3081 132.762 33.3081Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.762 57.9873C129.525 57.9873 128.934 59.2786 129.07 60.1853C129.11 60.4501 129.18 60.7111 129.18 60.9788V70.1285C129.18 72.0392 131.236 72.6496 132.265 72.7159C146.297 73.7775 174.878 75.9204 176.948 76C178.541 76.0613 179.49 75.537 179.948 75.0805C180.168 74.8614 180.232 74.5446 180.232 74.2341V65.0476C180.232 64.7243 180.349 64.4093 180.372 64.0869C180.474 62.6696 177.572 61.7006 175.953 61.3709C163.115 60.243 136.504 57.9873 132.762 57.9873Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.792 82.668C129.763 82.668 129.05 83.5907 129.081 84.3165C129.095 84.6363 129.207 84.9488 129.207 85.2688V92.5929C129.207 94.1548 131.265 94.6538 132.294 94.708C146.334 95.5758 174.931 97.3275 177.003 97.3926C178.474 97.4389 179.396 97.0772 179.89 96.7277C180.191 96.5149 180.288 96.1401 180.288 95.7716V88.6233C180.288 88.2406 180.487 87.8572 180.422 87.4801C180.238 86.4163 177.544 85.6897 176.007 85.4339C163.162 84.5119 136.536 82.668 132.792 82.668Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.646 103.221C129.618 103.283 128.924 104.22 128.97 104.945C128.99 105.265 129.109 105.575 129.115 105.895L129.265 113.217C129.297 114.779 131.364 115.236 132.394 115.269C146.449 115.85 175.076 117.018 177.148 117.041C178.62 117.057 179.535 116.677 180.021 116.317C180.318 116.098 180.408 115.721 180.4 115.353L180.254 108.206C180.247 107.824 180.437 107.436 180.364 107.061C180.159 106.001 177.451 105.329 175.909 105.105C163.047 104.445 136.389 103.145 132.646 103.221Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.408 223.379C129.385 223.552 128.725 224.513 128.798 225.236C128.829 225.555 128.959 225.86 128.978 226.18L129.394 233.492C129.483 235.052 131.566 235.433 132.597 235.428C146.663 235.496 175.314 235.617 177.385 235.564C178.857 235.527 179.757 235.113 180.23 234.736C180.518 234.506 180.595 234.127 180.574 233.759L180.167 226.622C180.145 226.24 180.321 225.846 180.235 225.473C179.991 224.421 177.26 223.849 175.711 223.681C162.834 223.492 136.146 223.166 132.408 223.379Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 247.139C129.022 247.437 128.516 248.683 128.709 249.529C128.772 249.802 128.875 250.067 128.901 250.346L129.709 258.97C129.879 260.78 131.982 261.165 133.012 261.132C147.085 260.827 175.748 260.187 177.817 260.069C179.38 259.98 180.274 259.415 180.7 258.945C180.918 258.705 180.958 258.368 180.928 258.045L180.121 249.438C180.09 249.102 180.192 248.761 180.169 248.424C180.081 247.103 177.151 246.469 175.527 246.31C162.638 246.441 135.928 246.79 132.201 247.139Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 271.821C129.022 272.119 128.516 273.365 128.709 274.211C128.772 274.484 128.875 274.749 128.901 275.028L129.709 283.652C129.879 285.462 131.982 285.848 133.012 285.814C147.085 285.509 175.748 284.869 177.817 284.751C179.38 284.662 180.274 284.097 180.7 283.627C180.918 283.387 180.958 283.051 180.928 282.728L180.121 274.12C180.09 273.784 180.192 273.443 180.169 273.106C180.081 271.785 177.151 271.151 175.527 270.992C162.638 271.123 135.928 271.472 132.201 271.821Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.201 296.499C129.022 296.797 128.516 298.043 128.709 298.889C128.772 299.162 128.875 299.427 128.901 299.706L129.709 308.33C129.879 310.139 131.982 310.525 133.012 310.492C147.085 310.187 175.748 309.547 177.817 309.429C179.38 309.34 180.274 308.775 180.7 308.305C180.918 308.065 180.958 307.728 180.928 307.405L180.121 298.798C180.09 298.462 180.192 298.121 180.169 297.784C180.081 296.463 177.151 295.829 175.527 295.669C162.638 295.8 135.928 296.15 132.201 296.499Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.179 322.772C129.171 323.054 128.542 324.029 128.636 324.744C128.678 325.063 128.821 325.365 128.851 325.686L129.53 332.925C129.675 334.47 131.77 334.771 132.799 334.729C146.858 334.277 175.494 333.341 177.562 333.212C179.027 333.12 179.911 332.679 180.371 332.288C180.653 332.048 180.717 331.664 180.682 331.295L180.021 324.237C179.985 323.854 180.149 323.451 180.045 323.081C179.754 322.05 177.012 321.584 175.461 321.475C162.587 321.762 135.906 322.423 132.179 322.772Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M131.281 330.874C131.269 330.356 131.54 329.925 131.886 329.91L177.428 328.012C177.774 327.998 178.064 328.406 178.076 328.923C178.088 329.441 177.817 329.872 177.471 329.886L131.93 331.785C131.583 331.799 131.293 331.391 131.281 330.874Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 306.246C131.269 305.728 131.54 305.297 131.886 305.282L177.428 303.384C177.774 303.37 178.064 303.777 178.076 304.295C178.088 304.813 177.817 305.244 177.471 305.258L131.93 307.157C131.583 307.171 131.293 306.763 131.281 306.246Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 281.617C131.269 281.1 131.54 280.669 131.886 280.654L177.428 278.756C177.774 278.741 178.064 279.149 178.076 279.667C178.088 280.184 177.817 280.616 177.471 280.63L131.93 282.528C131.583 282.543 131.293 282.135 131.281 281.617Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.281 256.885C131.269 256.367 131.54 255.936 131.886 255.921L177.428 254.023C177.774 254.009 178.064 254.417 178.076 254.934C178.088 255.452 177.817 255.883 177.471 255.897L131.93 257.796C131.583 257.81 131.293 257.402 131.281 256.885Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.175 231.976C131.183 231.458 131.47 231.038 131.816 231.037L177.397 230.896C177.744 230.895 178.018 231.314 178.01 231.831C178.002 232.349 177.715 232.769 177.368 232.77L131.787 232.911C131.441 232.912 131.167 232.494 131.175 231.976Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M130.868 111.83C130.883 111.313 131.176 110.896 131.523 110.9L177.101 111.391C177.448 111.395 177.716 111.817 177.701 112.335C177.686 112.852 177.393 113.269 177.046 113.265L131.468 112.774C131.121 112.77 130.853 112.348 130.868 111.83Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.119 91.844C132.141 91.3268 132.44 90.9144 132.786 90.923L178.354 92.046C178.7 92.0546 178.963 92.4808 178.94 92.998C178.918 93.5153 178.619 93.9277 178.273 93.9191L132.706 92.796C132.359 92.7875 132.097 92.3613 132.119 91.844Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.228 67.71C132.271 67.1942 132.587 66.7944 132.932 66.8171L178.415 69.8067C178.761 69.8294 179.006 70.266 178.963 70.7819C178.919 71.2978 178.604 71.6976 178.258 71.6748L132.775 68.6853C132.429 68.6625 132.184 68.2259 132.228 67.71Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.353 43.7444C131.392 43.2282 131.705 42.8259 132.051 42.8459L177.556 45.4744C177.902 45.4944 178.15 45.9291 178.111 46.4453C178.071 46.9615 177.759 47.3638 177.413 47.3438L131.908 44.7153C131.562 44.6953 131.314 44.2606 131.353 43.7444Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 326.158C131.285 325.64 131.559 325.211 131.906 325.199L177.461 323.649C177.807 323.637 178.094 324.048 178.102 324.565C178.11 325.083 177.836 325.512 177.49 325.524L131.935 327.074C131.588 327.086 131.301 326.675 131.293 326.158Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 301.53C131.285 301.012 131.559 300.583 131.906 300.571L177.461 299.021C177.807 299.009 178.094 299.419 178.102 299.937C178.11 300.455 177.836 300.884 177.49 300.896L131.935 302.446C131.588 302.457 131.301 302.047 131.293 301.53Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 276.902C131.285 276.384 131.559 275.955 131.906 275.943L177.461 274.393C177.807 274.381 178.094 274.791 178.102 275.309C178.11 275.827 177.836 276.256 177.49 276.268L131.935 277.817C131.588 277.829 131.301 277.419 131.293 276.902Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.293 252.169C131.285 251.651 131.559 251.222 131.906 251.21L177.461 249.66C177.807 249.648 178.094 250.059 178.102 250.576C178.11 251.094 177.836 251.523 177.49 251.535L131.935 253.085C131.588 253.097 131.301 252.686 131.293 252.169Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.368 227.264C131.38 226.746 131.671 226.328 132.017 226.33L177.598 226.537C177.945 226.539 178.216 226.96 178.204 227.477C178.192 227.995 177.901 228.413 177.555 228.412L131.974 228.204C131.628 228.202 131.357 227.782 131.368 227.264Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.127 107.121C131.146 106.604 131.443 106.19 131.789 106.196L177.363 107.036C177.709 107.042 177.974 107.467 177.955 107.984C177.936 108.501 177.64 108.916 177.293 108.909L131.72 108.07C131.373 108.063 131.108 107.639 131.127 107.121Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.443 87.1392C132.47 86.6221 132.772 86.2121 133.118 86.2232L178.675 87.6949C179.022 87.7061 179.281 88.1343 179.255 88.6513C179.228 89.1684 178.926 89.5784 178.58 89.5673L133.023 88.0956C132.676 88.0844 132.417 87.6562 132.443 87.1392Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M132.745 63.0224C132.792 62.5068 133.111 62.1095 133.456 62.1349L178.915 65.4723C179.261 65.4976 179.502 65.9361 179.455 66.4517C179.407 66.9672 179.089 67.3646 178.743 67.3392L133.284 64.0018C132.939 63.9764 132.697 63.5379 132.745 63.0224Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M131.543 38.8686C131.58 38.3522 131.89 37.9483 132.236 37.9665L177.754 40.3646C178.1 40.3828 178.351 40.8162 178.314 41.3326C178.277 41.849 177.967 42.2529 177.621 42.2347L132.103 39.8366C131.757 39.8184 131.506 39.385 131.543 38.8686Z\" fill=\"white\" fill-opacity=\"0.4\"/>\r\n <path d=\"M120.736 317.513C120.727 317.074 121.076 316.71 121.516 316.702L199.125 315.158C199.564 315.15 199.928 315.499 199.936 315.938C199.945 316.378 199.596 316.741 199.156 316.75L121.548 318.293C121.108 318.302 120.745 317.953 120.736 317.513Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.73 289.633C120.726 289.193 121.079 288.834 121.518 288.829L199.139 288.096C199.578 288.092 199.938 288.445 199.942 288.885C199.947 289.325 199.594 289.684 199.154 289.689L121.533 290.422C121.094 290.426 120.734 290.073 120.73 289.633Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.735 266.519C120.727 266.08 121.076 265.717 121.516 265.708L199.126 264.245C199.566 264.237 199.929 264.587 199.937 265.026C199.945 265.466 199.596 265.829 199.156 265.837L121.546 267.3C121.106 267.309 120.743 266.959 120.735 266.519Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 242.624C120.726 242.185 121.079 241.825 121.519 241.821L199.14 241.159C199.58 241.156 199.939 241.509 199.943 241.949C199.946 242.388 199.593 242.748 199.153 242.752L121.532 243.414C121.093 243.417 120.733 243.064 120.729 242.624Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.729 215.712C120.726 215.272 121.08 214.913 121.519 214.91L199.141 214.331C199.581 214.328 199.94 214.682 199.943 215.121C199.946 215.561 199.593 215.92 199.153 215.924L121.531 216.502C121.092 216.505 120.732 216.152 120.729 215.712Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 98.7896C120.792 98.3504 121.164 98.011 121.604 98.0315L199.143 101.65C199.582 101.671 199.922 102.044 199.901 102.483C199.881 102.922 199.508 103.261 199.069 103.241L121.529 99.622C121.09 99.6015 120.751 99.2289 120.771 98.7896Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 78.0899C120.792 77.6507 121.164 77.3112 121.604 77.3317L199.143 80.9506C199.582 80.9711 199.922 81.3438 199.901 81.783C199.881 82.2222 199.508 82.5617 199.069 82.5412L121.529 78.9223C121.09 78.9018 120.751 78.5291 120.771 78.0899Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path d=\"M120.771 52.2152C120.792 51.776 121.164 51.4366 121.604 51.4571L199.143 55.076C199.582 55.0965 199.922 55.4691 199.901 55.9084C199.881 56.3476 199.508 56.687 199.069 56.6665L121.529 53.0476C121.09 53.0271 120.751 52.6545 120.771 52.2152Z\" fill=\"white\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M238.273 105.994C240.501 104.561 242.73 103.128 245.299 101.695C248.631 101.75 250.401 103.333 251.417 106.054C251.913 107.38 252.521 108.761 253.436 109.807C254.321 110.82 255.665 111.435 256.792 112.384C257.351 113.159 257.813 114.041 258.521 114.335C260.231 115.043 262.055 115.477 263.786 116.193C262.917 118.985 262.071 121.598 261.298 124.232C261.17 124.668 261.176 125.46 261.435 125.641C263.422 127.029 263.196 129.103 263.339 131.1C263.577 134.406 265.13 136.144 267.818 136.216C271.646 136.319 271.646 136.319 272.548 139.97C272.164 140.834 271.614 141.535 271.544 142.281C271.325 144.628 269.773 145.637 267.909 146.672C265.079 148.244 262.417 150.117 259.564 151.92C259.094 152.243 258.745 152.509 258.266 152.8C257.943 153.092 257.751 153.358 257.564 153.64C257.568 153.656 257.535 153.655 257.365 153.662C253.741 154.532 252.868 153.954 252.28 150.355C252.106 149.289 252.018 148.21 251.881 147.138C251.577 144.765 251.492 142.337 250.908 140.034C249.923 136.147 248.655 132.329 247.441 128.502C245.917 123.698 244.518 118.841 242.694 114.151C241.582 111.292 239.77 108.704 238.273 105.994Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M238.12 106.03C239.77 108.705 241.582 111.294 242.694 114.152C244.518 118.843 245.917 123.7 247.441 128.504C248.655 132.33 249.923 136.149 250.908 140.036C251.492 142.338 251.577 144.767 251.881 147.139C252.018 148.211 252.106 149.291 252.28 150.357C252.868 153.955 253.741 154.534 257.322 153.808C255.119 157.519 253.544 161.378 252.622 165.556C251.811 169.234 250.705 172.847 249.551 176.46C247.066 175.692 244.759 174.952 242.332 174.166C241.701 173.775 241.191 173.43 240.858 173.025C242.949 172.357 242.13 170.614 242.386 169.409C242.7 167.931 242.606 166.343 242.516 164.812C242.451 163.707 242.008 162.627 241.903 161.52C241.707 159.455 241.766 157.36 241.474 155.312C241.14 152.967 240.129 150.659 240.131 148.335C240.134 141.622 237.342 135.533 236.137 129.096C235.336 124.812 233.5 120.728 232.251 116.517C231.152 112.813 231.228 112.791 227.632 112.514C229.11 111.394 230.512 110.152 232.085 109.184C233.97 108.022 236 107.094 238.12 106.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.3\" d=\"M227.482 112.53C231.228 112.788 231.152 112.81 232.251 116.514C233.5 120.725 235.336 124.809 236.137 129.094C237.342 135.53 240.134 141.619 240.131 148.332C240.129 150.656 241.14 152.964 241.474 155.309C241.766 157.357 241.707 159.452 241.903 161.517C242.008 162.624 242.451 163.704 242.516 164.81C242.606 166.34 242.7 167.928 242.386 169.406C242.13 170.611 242.949 172.354 240.715 172.99C237.452 171.232 234.51 169.446 231.607 167.463C232.44 164.827 232.734 162.434 232.256 159.808C231.638 156.417 231.61 152.921 231.279 149.475C230.9 145.527 230.67 141.55 230.007 137.648C229.163 132.674 227.981 127.756 226.877 122.829C226.55 121.366 225.889 119.975 225.568 118.51C225.029 116.058 222.864 117.488 221.624 116.752C221.5 116.679 221.356 116.638 221.266 116.46C221.408 116.097 221.506 115.856 221.605 115.615C222.089 115.34 222.573 115.065 223.338 114.777C223.844 114.529 224.069 114.296 224.293 114.062C225.306 113.558 226.319 113.053 227.482 112.53Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.5\" d=\"M256.807 112.225C255.665 111.435 254.321 110.82 253.436 109.808C252.521 108.762 251.913 107.381 251.417 106.055C250.401 103.334 248.631 101.75 245.461 101.685C246.485 100.705 247.608 99.6078 248.909 98.7923C251.648 97.0763 254.479 95.5079 257.612 93.8596C259.109 94.2596 261.149 94.5069 261.271 95.1278C261.776 97.702 263.573 97.7951 265.282 97.9719C265.887 97.438 266.34 96.8559 266.935 96.5531C268.033 95.9948 269.241 95.6537 270.355 95.1227C271.452 94.5996 271.629 95.1439 271.518 96.1475C266.528 98.6965 263.838 102.93 261.79 107.849C260.834 108.543 259.99 109.157 259.24 109.87C258.771 110.316 258.445 110.91 257.955 111.512C257.506 111.798 257.156 112.012 256.807 112.225Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.5\" d=\"M271.616 96.0383C271.628 95.1433 271.452 94.5991 270.355 95.1221C269.241 95.6531 268.033 95.9943 266.935 96.5525C266.34 96.8554 265.887 97.4374 265.282 97.9714C263.573 97.7945 261.776 97.7014 261.271 95.1272C261.149 94.5064 259.109 94.259 257.766 93.8367C257.827 93.5005 258 93.0262 258.331 92.8559C261.799 91.07 265.231 89.1895 268.812 87.6597C270.067 87.124 272.12 86.973 273.58 86.869C275.4 86.7393 276.804 87.0832 278.774 86.869C278.949 89.1587 278.971 91.4866 278.827 94.0522C277.343 94.4573 276.279 94.5587 274.874 94.6091C274.403 94.7165 273.767 95.0067 273.275 95.3213C272.649 95.6205 272.133 95.8294 271.616 96.0383Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path opacity=\"0.2\" d=\"M219.86 117.117C220.24 116.885 220.599 116.786 221.09 116.635C221.356 116.641 221.5 116.681 221.624 116.755C222.864 117.49 225.029 116.06 225.568 118.513C225.889 119.978 226.549 121.368 226.877 122.832C227.981 127.759 229.163 132.677 230.007 137.65C230.67 141.552 230.9 145.529 231.279 149.477C231.61 152.923 231.638 156.419 232.256 159.811C232.734 162.437 232.44 164.83 231.453 167.385C230.436 167.71 229.612 167.916 228.788 168.121C229.243 168.822 229.68 169.537 230.166 170.217C230.323 170.435 230.611 170.56 230.834 170.888C230.39 172.317 230.527 173.246 232.093 173.591C232.452 173.67 232.947 174.288 232.943 174.655C232.926 176.7 232.752 178.744 232.674 180.79C232.6 182.766 232.512 184.745 232.557 186.72C232.58 187.792 232.867 188.857 232.85 189.938C230.738 189.578 228.821 189.145 226.883 188.851C225.007 188.568 223.109 188.429 221.097 188.166C220.611 187.726 220.248 187.347 219.87 186.778C219.723 185.733 219.47 184.877 219.473 184.022C219.563 161.853 219.679 139.683 219.791 117.514C219.807 117.426 219.823 117.338 219.86 117.117Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path d=\"M233.837 215.69C230.867 213.771 227.101 211.854 224.12 209.952C223.165 209.343 221.771 208.204 220.637 207.663C220.465 207.205 220.652 208.532 220.637 207.663C220.79 205.349 220.66 204.228 220.935 202.389C227.899 207.362 234.719 209.718 242.56 212.358C241.198 213.577 239.791 213.717 238.199 213.279C236.756 212.881 235.436 212.896 235.123 214.897C235.072 215.22 234.278 215.418 233.837 215.69C234.56 215.233 233.11 216.139 233.837 215.69Z\" fill=\"#88ADCC\" fill-opacity=\"0.2\"/>\r\n <path opacity=\"0.5\" d=\"M258.905 213.087C263.188 210.206 265.372 205.85 266.73 201.164C268.695 194.386 270.242 187.488 272.147 180.459C272.828 179.842 273.33 179.407 273.819 179.173C273.8 180.706 273.792 182.038 273.678 183.493C273.552 184.271 273.533 184.926 273.483 185.781C272.961 191.156 272.851 196.402 271.882 201.487C270.683 207.774 268.775 213.928 267.165 220.138C266.814 221.491 266.424 222.833 265.851 224.25C260.775 224.476 261.102 224.214 260.543 227.665C259.978 230.028 261.122 225.133 260.543 227.665C258.153 226.55 258.905 227.566 255.468 225.774C244.421 222.789 248.847 224.892 245.814 222.49C249.145 222.912 246.611 220.138 249.397 217.614C249.839 215.44 250.289 216.421 251.548 214.356C251.756 214.258 251.844 214.167 251.902 214.047C253.596 213.969 255.29 213.891 257.344 213.849C258.104 213.619 258.505 213.353 258.905 213.087Z\" fill=\"#88ADCC\" fill-opacity=\"0.4\"/>\r\n <path opacity=\"0.5\" d=\"M251.785 214.03C250.614 216.057 250.009 216.235 249.568 218.409C248.302 220.3 249.011 222.944 245.615 222.389C242.09 220.025 237.23 218.192 233.837 215.688C233.109 216.137 234.515 215.094 233.837 215.688C234.277 215.416 235.072 215.217 235.122 214.895C235.436 212.894 236.755 212.879 238.199 213.276C239.791 213.714 241.197 213.575 242.559 212.355C244.885 212.7 247.11 213.159 249.568 213.807C251.089 213.807 251.089 213.807 251.785 214.03Z\" fill=\"#88ADCC\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M208.266 180.999C206.409 181.518 204.56 181.839 202.448 182.185C201.868 181.964 201.551 181.717 201.205 181.301C198.833 179.24 200.093 176.676 199.921 174.505C199.613 170.612 200.245 166.665 200.364 162.737C200.435 160.386 200.239 158.029 200.23 155.675C200.199 147.197 200.196 138.719 200.182 130.241C200.806 129.937 201.429 129.633 202.1 129.204C203.067 128.594 203.987 128.11 204.959 127.5C206.119 126.889 207.228 126.401 208.491 125.858C208.527 132.38 208.338 138.958 208.305 145.536C208.245 157.291 208.28 169.046 208.266 180.999Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M230.835 170.888C233.253 172.403 235.715 174.014 238.04 175.802C238.549 176.193 238.759 177.21 238.778 177.947C238.841 180.375 239.949 182.08 242.166 183.313C241.754 186.413 244.373 187.33 246.115 188.983C245.843 191.408 244.626 192.337 242.135 191.733C239.242 191.03 236.283 190.6 233.194 189.988C232.867 188.857 232.581 187.792 232.557 186.72C232.513 184.745 232.6 182.766 232.675 180.79C232.752 178.744 232.926 176.7 232.944 174.655C232.947 174.288 232.452 173.67 232.093 173.591C230.527 173.246 230.391 172.317 230.835 170.888Z\" fill=\"#B8C5FF\" fill-opacity=\"0.3\"/>\r\n <path opacity=\"0.2\" d=\"M186.203 138.265C187.014 137.652 187.847 137.065 188.627 136.418C189.262 135.891 189.833 135.292 190.495 134.592C193.788 132.922 197.019 131.386 200.398 129.839C200.56 138.368 200.562 146.907 200.591 155.446C200.599 157.817 200.78 160.191 200.714 162.559C200.605 166.515 200.023 170.49 200.306 174.411C200.465 176.598 199.305 179.18 201.33 181.191C198.939 179.785 196.679 178.273 194.443 176.588C194.852 175.68 195.545 174.954 195.568 174.208C195.672 170.875 195.602 167.536 195.563 164.2C195.512 159.754 195.379 155.309 195.388 150.863C195.392 148.758 195.736 146.655 195.764 144.549C195.795 142.285 193.408 139.142 191.371 138.781C189.673 138.48 187.928 138.428 186.203 138.265Z\" fill=\"#DDD4E1\"/>\r\n <path opacity=\"0.2\" d=\"M220.333 117.101C220.381 145.336 220.625 174.232 220.534 202.435C220.53 203.523 220.854 205.565 220.834 206.866C219.48 206.441 217.342 204.751 216.184 204.01C213.469 202.272 210.79 200.443 208.105 198.39C208.117 182.635 208.085 167.141 208.14 151.647C208.171 142.976 208.029 134.507 208.14 125.837C208.14 125.837 208.467 125.447 208.491 125.357C211.323 123.186 214.115 121.072 216.948 119.046C217.808 118.431 219.253 117.552 220.333 117.101Z\" fill=\"#DDD4E1\"/>\r\n <path d=\"M197.515 182.331C196.94 181.924 196.513 181.553 195.939 181.166C195.091 180.679 194.39 180.208 193.465 179.615C191.772 178.426 190.301 177.36 188.798 176.309C188.766 176.322 188.835 176.314 188.773 176.183C187.94 175.413 187.168 174.774 186.354 173.981C186.919 171.828 187.935 173.861 188.822 173.676C190.749 174.738 192.572 175.707 194.394 176.677C196.666 178.232 198.938 179.787 201.369 181.409C201.821 181.731 202.114 181.987 202.498 182.327C202.228 182.789 201.795 183.533 201.517 183.479C200.209 183.229 198.944 182.759 197.515 182.331Z\" fill=\"#462D5C\"/>\r\n <path d=\"M245.624 336.046C245.962 327.813 246.346 319.777 246.684 311.4C246.601 310.873 246.565 310.688 246.663 310.391C247.032 309.078 247.336 307.886 247.489 306.675C248.181 301.227 248.697 295.754 249.53 290.328C250.462 284.267 251.752 278.262 252.733 272.208C254.063 264.004 255.233 255.774 256.502 247.56C257.131 243.486 257.827 239.422 258.507 235.183C259.086 232.651 259.651 230.288 260.411 227.928C262.843 228.075 265.081 228.355 267.317 228.337C270.98 228.306 274.64 228.026 278.304 227.951C282.808 227.86 282.66 228.499 282.756 223.553C283.677 223.526 284.412 223.51 285.137 223.663C284.48 226.914 285.322 227.82 288.398 227.467C290.12 227.27 291.87 227.292 293.58 227.033C294.837 226.842 296.049 226.356 297.523 225.932C298.584 226.113 300.054 226.551 301.529 226.572C303.471 226.599 305.417 226.299 307.451 226.266C307.979 227.996 308.469 229.588 308.846 231.206C310.305 237.477 310.102 243.842 309.802 250.382C309.747 251.164 309.745 251.771 309.682 252.401C309.538 252.525 309.441 252.608 309.143 252.706C308.242 252.699 307.434 252.424 306.828 252.662C303.893 253.81 300.916 254.913 298.144 256.387C295.736 257.668 293.693 259.63 291.282 260.905C289.341 261.932 288.398 263.455 287.828 265.345C285.949 271.571 284.118 277.812 282.286 284.052C281.59 286.424 280.604 288.802 281.993 291.246C280.641 295.2 279.446 299.128 278.144 303.14C278.033 303.478 278.028 303.732 277.966 304.16C277.722 305.8 277.534 307.266 277.228 308.848C276.504 312.627 275.9 316.29 275.247 320.151C274.92 324.956 274.642 329.565 274.288 334.325C274.077 335.647 273.945 336.818 273.773 338.168C273.547 340.053 273.337 341.757 273.178 343.466C272.791 347.608 272.428 351.753 271.988 356.041C271.903 356.827 271.885 357.468 271.822 358.285C271.734 359.064 271.692 359.668 271.552 360.389C271.419 361.016 271.385 361.525 271.307 362.203C271.24 362.834 271.217 363.297 271.106 363.886C270.963 364.516 270.907 365.02 270.807 365.663C270.763 365.996 270.764 366.19 270.676 366.49C270.476 366.947 270.364 367.298 270.266 367.67C270.281 367.691 270.262 367.644 270.126 367.68C269.435 368.021 268.881 368.326 268.139 368.61C266.225 368.289 264.508 367.846 262.769 367.725C260.617 367.576 258.446 367.694 256.278 367.518C256.298 365.112 254.81 365.467 253.396 365.65C250.297 366.049 247.239 366.167 244.519 364.218C244.63 360.843 244.741 357.468 244.952 353.79C245.022 353.103 244.991 352.719 244.96 352.336C245.081 349.722 245.201 347.108 245.402 344.193C245.443 343.648 245.405 343.404 245.366 343.161C245.467 340.855 245.568 338.549 245.624 336.046Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M268.789 377.71C268.407 379.208 268.323 380.941 265.831 381.097C264.455 381.298 263.396 381.418 262.336 381.537C253.66 381.478 244.983 381.435 236.307 381.35C233.608 381.324 230.906 381.253 228.215 381.07C226.067 380.924 225.566 380.14 226.131 378.072C227.005 374.872 229.337 373.503 232.446 372.833C235.42 372.193 238.36 371.311 241.217 370.271C242.253 369.895 243.008 368.753 244.179 367.836C248.406 367.707 252.345 367.702 256.283 367.697C258.446 367.695 260.617 367.577 262.769 367.726C264.508 367.847 266.225 368.29 268.127 368.768C268.392 369.543 268.483 370.139 268.551 370.926C268.595 372.003 268.662 372.891 268.678 373.97C268.682 375.345 268.735 376.528 268.789 377.71Z\" fill=\"black\" fill-opacity=\"0.5\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M265 367.658C258.153 367.985 251.296 367.994 244.091 368C243.891 366.081 244.04 364.164 244.358 362C249.263 365.24 254.587 365.029 259.982 364.314C262.443 363.988 265.034 363.353 265 367.658Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M244.856 352.393C244.991 352.719 245.022 353.102 244.941 353.587C244.803 353.276 244.778 352.864 244.856 352.393Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M245.278 343.21C245.404 343.404 245.443 343.648 245.393 343.987C245.267 343.809 245.228 343.534 245.278 343.21Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M290.449 98.6408C293.724 101.21 295.373 104.651 295.703 108.715C295.917 111.352 295.92 114.005 295.983 116.944C295.051 117.449 294.139 117.888 293.257 117.834C289.208 117.589 285.138 117.402 281.132 116.816C277.21 116.242 273.356 115.211 269.02 114.284C269.977 111.427 270.775 109.061 271.562 106.692C273.438 101.042 278.439 97.273 284.336 97.4115C286.382 97.4596 288.412 98.2107 290.449 98.6408Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M290.412 98.4989C288.412 98.2111 286.383 97.4599 284.337 97.4119C278.439 97.2734 273.438 101.042 271.562 106.692C270.776 109.062 269.977 111.427 269.02 114.284C273.356 115.211 277.21 116.242 281.132 116.816C285.138 117.402 289.208 117.589 293.257 117.834C294.139 117.888 295.051 117.449 296.059 117.107C296.592 117.408 297.32 117.82 297.348 118.275C297.374 118.69 296.708 119.418 296.228 119.539C295.053 119.835 293.81 119.86 292.202 120.018C290.156 119.965 288.483 120.015 286.851 119.784C281.099 118.971 275.36 118.061 269.499 117.114C267.533 116.7 265.683 116.361 263.834 116.022C262.056 115.477 260.231 115.044 258.522 114.336C257.814 114.042 257.351 113.16 256.792 112.385C257.157 112.012 257.507 111.798 258.133 111.525C260.886 111.493 261.937 110.153 261.942 107.811C263.838 102.93 266.528 98.6968 271.519 96.1477C272.133 95.8302 272.65 95.6213 273.422 95.3326C274.021 95.0994 274.365 94.9461 274.709 94.7927C276.027 94.6254 277.344 94.4581 278.835 94.2534C283.202 94.4925 287.247 95.1754 290.412 98.4989Z\" fill=\"#E7E9E6\"/>\r\n <path d=\"M269.616 117.189C275.36 118.061 281.098 118.971 286.85 119.784C288.483 120.015 290.156 119.965 292.013 120.046C291.283 122.546 290.349 125.042 289.42 127.54C289.198 128.138 288.99 128.74 288.813 129.499C288.801 129.976 288.75 130.294 288.515 130.8C284.557 131.856 281.291 130.888 278.375 128.396C277.579 127.715 276.549 127.305 275.778 126.859C276.105 125.13 276.673 123.062 276.792 120.969C276.831 120.276 275.804 119.066 275.097 118.926C274.477 118.802 273.466 119.72 272.915 120.407C272.304 121.169 272.018 122.191 271.59 123.1C271.314 123.061 271.037 123.021 270.761 122.982C270.379 121.051 269.998 119.12 269.616 117.189Z\" fill=\"#442857\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M220.255 201.919C219.831 201.076 219.529 200.323 219.244 199.247C219.985 195.421 220.71 191.918 221.435 188.415C223.324 188.617 225.222 188.756 227.098 189.04C229.036 189.333 230.953 189.767 233.223 190.189C236.497 190.788 239.456 191.219 242.349 191.921C244.84 192.526 246.057 191.596 246.562 189.112C247.752 184.885 248.848 180.781 249.943 176.677C250.919 173.035 252.025 169.422 252.837 165.744C253.759 161.566 255.333 157.706 257.706 153.99C257.749 153.845 257.783 153.846 257.92 153.82C258.241 153.517 258.426 153.241 258.61 152.965C258.959 152.699 259.309 152.433 259.96 152.132C261.383 152.514 262.592 152.784 263.6 153.387C264.829 154.123 265.888 155.138 267.093 156.163C269.128 158.524 271.12 160.739 271.467 164.039C271.744 164.974 272.026 165.748 272.319 166.672C272.448 167.306 272.564 167.791 272.57 168.411C272.542 170.06 272.625 171.573 272.707 173.264C272.686 174.035 272.668 174.628 272.504 175.27C272.333 176.029 272.307 176.741 272.269 177.642C272.25 178.717 272.243 179.602 272.209 180.659C270.457 187.677 268.909 194.575 266.945 201.353C265.587 206.038 263.402 210.394 258.976 213.282C258.414 213.524 257.996 213.761 257.389 214C255.505 214.08 253.81 214.158 251.965 214.169C251.174 214.046 250.534 213.991 249.722 213.873C247.325 213.35 245.1 212.89 242.875 212.43C234.933 209.906 227.219 206.892 220.255 201.919Z\" fill=\"white\" fill-opacity=\"0.8\"/>\r\n <path d=\"M269.499 117.113C269.998 119.119 270.379 121.05 270.761 122.981C271.037 123.021 271.313 123.06 271.59 123.1C272.018 122.191 272.304 121.169 272.915 120.406C273.466 119.72 274.477 118.802 275.097 118.925C275.804 119.066 276.831 120.276 276.792 120.969C276.673 123.062 276.105 125.13 275.778 126.858C276.549 127.305 277.578 127.714 278.375 128.395C281.291 130.888 284.557 131.855 288.504 130.961C288.822 132.259 288.967 133.583 288.96 135.101C288.624 135.319 288.439 135.342 288.155 135.361C288.056 135.357 287.861 135.397 287.705 135.389C287.344 135.408 287.138 135.434 286.793 135.428C286.319 135.521 285.984 135.645 285.498 135.761C285.146 135.769 284.945 135.786 284.584 135.79C283.905 136.045 283.386 136.314 282.697 136.568C281.958 136.592 281.39 136.63 280.677 136.675C280.041 136.959 279.549 137.235 278.929 137.516C278.595 137.662 278.39 137.802 278.018 137.947C276.101 138.578 274.352 139.203 272.603 139.828C271.646 136.319 271.646 136.319 267.818 136.217C265.13 136.145 263.577 134.407 263.34 131.1C263.196 129.104 263.422 127.03 261.435 125.641C261.176 125.46 261.17 124.668 261.298 124.233C262.071 121.598 262.918 118.985 263.787 116.193C265.683 116.36 267.532 116.7 269.499 117.113Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.548 139.971C274.352 139.203 276.101 138.578 278.012 138.115C278.005 138.57 277.866 139.097 277.663 139.123C275.536 139.392 275.266 140.613 275.83 142.375C275.899 142.591 275.652 142.909 275.551 143.179C275.55 143.255 275.549 143.332 275.621 143.625C275.315 144.638 275.139 145.873 274.524 146.153C271.996 147.302 269.252 147.994 266.763 149.212C265.802 149.683 264.957 151.037 264.746 152.121C264.632 152.703 265.975 153.567 266.66 154.304C266.857 154.22 267.053 154.136 267.25 154.052C267.102 154.649 266.954 155.246 266.806 155.843C265.674 154.949 264.614 153.934 263.386 153.199C262.378 152.596 261.168 152.326 259.866 151.885C262.417 150.118 265.079 148.245 267.909 146.673C269.773 145.638 271.325 144.629 271.545 142.282C271.614 141.536 272.164 140.835 272.548 139.971Z\" fill=\"var(--primary-color-50-parts, #EDF4FF)\"/>\r\n <path d=\"M249.551 176.46C248.633 180.593 247.538 184.697 246.21 188.861C244.373 187.33 241.754 186.413 242.437 183.367C243.608 182.366 244.633 181.401 245.789 180.313C245.23 179.788 244.876 179.324 244.41 179.046C243.172 178.306 241.825 177.734 240.652 176.91C240.207 176.598 239.856 175.725 239.962 175.21C240.039 174.836 240.925 174.598 241.478 174.365C241.772 174.241 242.126 174.259 242.453 174.212C244.76 174.952 247.066 175.692 249.551 176.46Z\" fill=\"#CD938D\"/>\r\n <path d=\"M242.333 174.166C242.126 174.258 241.772 174.241 241.478 174.365C240.925 174.597 240.039 174.836 239.962 175.209C239.856 175.725 240.207 176.598 240.652 176.91C241.825 177.733 243.173 178.305 244.41 179.045C244.876 179.324 245.23 179.788 245.789 180.312C244.633 181.4 243.608 182.365 242.311 183.277C239.949 182.08 238.841 180.375 238.779 177.947C238.76 177.21 238.549 176.193 238.04 175.802C235.715 174.014 233.253 172.403 230.839 170.728C230.612 170.56 230.323 170.435 230.167 170.217C229.68 169.537 229.244 168.822 228.788 168.121C229.612 167.915 230.437 167.71 231.415 167.583C234.51 169.449 237.452 171.234 240.537 173.052C241.191 173.43 241.702 173.775 242.333 174.166Z\" fill=\"#462D5C\"/>\r\n <path opacity=\"0.5\" d=\"M261.79 107.849C261.937 110.154 260.886 111.494 258.232 111.452C258.445 110.911 258.771 110.317 259.24 109.871C259.99 109.158 260.834 108.544 261.79 107.849Z\" fill=\"#88ADCC\" fill-opacity=\"0.5\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.267 378.667C304.486 378.649 302.705 378.631 300.582 378.552C299.021 378.468 297.801 378.444 296.582 378.421C295.972 378.35 295.362 378.279 294.428 378.134C292.883 378.016 291.664 377.971 290.444 377.926C289.697 377.859 288.949 377.793 287.883 377.641C286.772 377.511 285.981 377.468 285.189 377.424C284.864 377.376 284.538 377.328 283.952 377.222C283.457 377.164 283.222 377.164 282.987 377.164C281.86 376.849 280.733 376.533 279.379 376.019C279.093 374.561 279.032 373.301 279.05 371.91C280.353 370.832 281.469 369.667 282.83 368.993C284.505 368.164 286.423 367.835 288.151 367.092C288.697 366.857 289.339 365.968 289.31 365.411C288.952 358.613 288.478 351.822 288.106 344.838C288.048 343.016 287.918 341.384 287.807 339.581C287.776 338.958 287.725 338.505 287.725 337.858C287.71 336.364 287.645 335.066 287.637 333.568C287.409 328.836 287.131 324.304 286.819 319.773C286.804 319.548 286.49 319.344 286.308 318.938C286.219 317.591 286.138 316.436 286.152 315.22C286.116 314.895 285.987 314.632 285.798 314.191C285.391 312.544 285.042 311.075 284.72 309.411C284.679 308.052 284.611 306.887 284.698 305.627C285.252 304.448 284.258 304.534 284.258 302.493C284.236 302.204 284.249 302.037 284.294 301.686C284.111 300.981 283.893 300.46 283.675 299.811C283.701 299.515 283.728 299.347 283.886 299.087C283.756 298.008 283.495 297.021 283.165 295.861C282.781 294.199 282.465 292.711 282.149 291.223C280.603 288.803 281.59 286.425 282.286 284.053C284.118 277.813 285.949 271.572 287.828 265.346C288.398 263.456 289.341 261.933 291.282 260.906C293.693 259.631 295.736 257.669 298.144 256.388C300.916 254.914 303.893 253.81 306.827 252.663C307.434 252.425 308.242 252.7 309.142 252.909C309.26 253.999 309.194 254.919 308.968 255.925C308.853 256.988 308.897 257.967 308.977 259.147C309.013 261.687 309.014 264.026 308.937 266.499C308.856 266.837 308.852 267.042 308.745 267.324C308.793 267.788 308.943 268.175 309.094 268.761C309.124 270.562 309.155 272.163 309.101 273.92C309.12 276.013 309.224 277.951 309.306 280.092C309.385 282.481 309.487 284.666 309.536 287.03C309.591 288.26 309.699 289.31 309.786 290.551C309.82 291.631 309.875 292.52 309.886 293.606C309.985 295.419 310.128 297.035 310.247 298.839C310.271 299.774 310.319 300.522 310.326 301.447C310.427 302.527 310.567 303.429 310.69 304.534C310.802 306.191 310.933 307.645 310.998 309.246C311.044 310.009 311.157 310.626 311.227 311.44C311.303 312.992 311.421 314.347 311.525 315.862C311.629 316.646 311.748 317.27 311.79 318.011C311.786 318.781 311.86 319.433 311.923 320.283C312.079 323.884 312.232 327.287 312.43 330.688C312.462 331.235 312.694 331.77 312.799 332.502C312.788 334.899 312.811 337.104 312.779 339.508C312.817 347.839 312.911 355.973 312.974 364.301C312.62 366.337 312.61 368.316 311.878 369.979C311.226 371.458 311.299 372.533 312.109 373.748C312.084 374.237 312.058 374.726 311.947 375.477C311.829 375.975 311.795 376.212 311.761 376.448C311.324 376.86 310.887 377.272 310.204 377.767C309.752 377.984 309.546 378.116 309.34 378.249C309.141 378.256 308.943 378.263 308.44 378.282C307.512 378.418 306.89 378.542 306.267 378.667Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M260.411 227.928C260.775 224.476 260.775 224.476 266.01 224.261C266.898 224.174 267.428 224.144 268.116 224.197C268.8 224.157 269.328 224.036 270.054 223.899C271.681 223.818 273.109 223.752 274.663 223.757C275.044 223.746 275.3 223.663 275.76 223.561C278.182 223.443 280.399 223.343 282.59 223.321C282.564 223.399 282.571 223.564 282.571 223.564C282.66 228.5 282.808 227.861 278.304 227.952C274.64 228.027 270.98 228.307 267.317 228.337C265.081 228.356 262.843 228.076 260.411 227.928Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M306.552 222.887C306.819 223.856 307.086 224.826 307.357 225.968C305.417 226.299 303.471 226.599 301.529 226.572C300.054 226.551 298.584 226.114 297.523 225.932C296.049 226.356 294.837 226.842 293.58 227.033C291.87 227.292 290.12 227.27 288.398 227.468C285.322 227.82 284.48 226.915 285.164 223.567C285.202 223.301 285.199 223.1 285.385 223.08C289.239 222.982 292.908 222.904 296.585 222.961C296.774 223.333 296.955 223.57 297.136 223.807C297.402 223.467 297.668 223.127 298.075 222.741C298.409 222.694 298.604 222.69 298.93 222.809C300.734 222.811 302.406 222.691 304.256 222.532C305.139 222.624 305.846 222.756 306.552 222.887Z\" fill=\"black\" fill-opacity=\"0.4\"/>\r\n <path d=\"M270.126 367.681C269.774 368.604 269.286 369.563 268.687 370.629C268.484 370.14 268.392 369.543 268.314 368.789C268.881 368.327 269.436 368.022 270.126 367.681Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M285.199 223.1C285.199 223.1 285.202 223.301 285.175 223.398C284.412 223.511 283.676 223.527 282.756 223.554C282.571 223.565 282.564 223.4 282.686 223.228C283.605 223.071 284.402 223.085 285.199 223.1Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M271.988 356.041C272.078 356.592 272.1 357.288 271.995 358.046C271.885 357.467 271.903 356.826 271.988 356.041Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.106 363.887C271.17 364.322 271.146 364.884 270.987 365.485C270.907 365.02 270.962 364.517 271.106 363.887Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M271.551 360.391C271.638 360.831 271.625 361.39 271.482 361.992C271.385 361.527 271.419 361.018 271.551 360.391Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M270.676 366.49C270.688 366.804 270.612 367.225 270.394 367.647C270.364 367.298 270.476 366.947 270.676 366.49Z\" fill=\"#D6CDD9\"/>\r\n <path d=\"M278.144 303.141C278.239 303.341 278.228 303.625 278.119 303.948C278.027 303.733 278.033 303.478 278.144 303.141Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M296.656 378.556C297.801 378.443 299.021 378.466 300.38 378.589C299.256 378.69 297.993 378.691 296.656 378.556Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M290.511 378.069C291.664 377.97 292.883 378.015 294.244 378.157C293.115 378.24 291.846 378.227 290.511 378.069Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M285.239 377.568C285.981 377.467 286.772 377.511 287.695 377.658C286.98 377.745 286.134 377.728 285.239 377.568Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M306.375 378.769C306.89 378.543 307.513 378.418 308.298 378.326C307.801 378.53 307.141 378.7 306.375 378.769Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M283.027 377.259C283.222 377.163 283.456 377.163 283.787 377.239C283.611 377.328 283.338 377.342 283.027 377.259Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M311.858 376.416C311.795 376.211 311.828 375.975 311.961 375.661C312.025 375.85 311.991 376.118 311.858 376.416Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.415 378.329C309.546 378.116 309.752 377.984 310.084 377.859C309.97 378.049 309.731 378.229 309.415 378.329Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M266.879 155.974C266.954 155.246 267.102 154.649 267.25 154.052C267.053 154.136 266.857 154.22 266.661 154.304C265.975 153.567 264.632 152.703 264.746 152.121C264.957 151.037 265.802 149.683 266.763 149.212C269.252 147.994 271.996 147.302 274.524 146.153C275.139 145.873 275.316 144.638 275.625 143.739C280.064 142.987 284.589 142.436 289.074 141.657C292.989 140.976 296.617 141.12 299.892 143.727C301.974 145.384 304.211 146.849 306.534 148.58C307.268 149.739 307.751 150.79 308.441 151.683C311.322 155.405 313.143 159.593 314.101 164.165C314.29 165.068 314.185 165.975 312.835 165.799C312.815 165.699 312.806 165.496 312.814 165.339C312.726 164.757 312.629 164.332 312.532 163.907C312.368 163.938 312.204 163.969 312.04 163.999C312.14 164.478 312.239 164.957 312.155 165.447C311.186 165.602 310.406 165.818 309.613 165.877C304.855 166.23 300.021 166.136 295.352 166.969C287.905 168.296 280.117 167.287 272.93 170.131C272.928 169.787 272.931 169.591 272.997 169.354C273.019 169.199 272.977 169.084 272.918 168.839C272.756 168.501 272.612 168.294 272.467 168.087C272.35 167.602 272.233 167.118 272.205 166.379C271.949 165.313 271.604 164.501 271.259 163.689C270.906 160.55 268.913 158.336 266.879 155.974Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M275.717 143.164C275.652 142.909 275.9 142.591 275.83 142.375C275.267 140.613 275.537 139.392 277.664 139.123C277.866 139.097 278.005 138.57 278.18 138.11C278.39 137.803 278.595 137.662 279.027 137.622C279.777 137.37 280.3 137.019 280.823 136.668C281.391 136.631 281.959 136.593 282.855 136.573C283.704 136.329 284.224 136.066 284.745 135.804C284.946 135.787 285.146 135.77 285.584 135.861C286.192 135.8 286.562 135.631 286.932 135.461C287.138 135.435 287.344 135.409 287.747 135.441C287.944 135.5 288.126 135.512 288.126 135.512L288.254 135.366C288.439 135.342 288.624 135.319 288.948 135.289C291.422 135.699 292.874 137.143 293.778 138.952C287.746 140.366 281.814 141.757 275.717 143.164Z\" fill=\"white\" fill-opacity=\"0.7\"/>\r\n <path d=\"M200.724 192.653C200.338 191.644 200.06 190.728 199.739 189.5C198.92 186.891 198.144 184.593 197.515 182.332C198.943 182.76 200.209 183.23 201.516 183.481C201.795 183.534 202.228 182.79 202.742 182.302C204.604 181.859 206.314 181.526 208.024 181.193C210.682 182.602 213.326 184.04 216.006 185.406C217.148 185.988 218.366 186.422 219.718 186.945C220.248 187.347 221.514 188.06 222 188.5C221.398 192.064 220.252 195.332 219.5 199C216.892 198.818 213.831 198.36 211.248 198.033C210.316 197.915 209.375 197.875 208.061 197.793C207.184 197.785 206.684 197.783 206.185 197.78C204.401 196.103 202.617 194.425 200.724 192.653Z\" fill=\"#CD938D\"/>\r\n <path d=\"M272.93 170.13C272.866 171.07 272.798 171.863 272.612 172.776C272.411 171.383 272.327 169.871 272.355 168.222C272.612 168.293 272.756 168.501 272.917 168.945C272.933 169.181 272.933 169.394 272.933 169.394C272.931 169.591 272.928 169.787 272.93 170.13Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M271.253 163.849C271.604 164.499 271.949 165.311 272.194 166.228C271.811 165.558 271.529 164.784 271.253 163.849Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M272.29 175.081C272.389 175.697 272.342 176.362 272.181 177.145C272.093 176.551 272.119 175.84 272.29 175.081Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M280.677 136.675C280.3 137.019 279.777 137.369 279.156 137.615C279.549 137.235 280.041 136.959 280.677 136.675Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M284.585 135.792C284.224 136.067 283.704 136.33 283.026 136.588C283.386 136.315 283.905 136.047 284.585 135.792Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M286.793 135.43C286.562 135.632 286.191 135.802 285.735 135.872C285.984 135.648 286.319 135.523 286.793 135.43Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M288.155 135.362C288.254 135.366 288.126 135.513 288.126 135.513C288.126 135.513 287.944 135.5 287.903 135.449C287.861 135.398 288.056 135.358 288.155 135.362Z\" fill=\"#D4C4DD\"/>\r\n <path d=\"M309.101 273.918C309.311 275.714 309.437 277.665 309.445 279.752C309.224 277.949 309.12 276.012 309.101 273.918Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M309.886 293.605C310.115 295.065 310.301 296.721 310.378 298.515C310.128 297.035 309.985 295.418 309.886 293.605Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M288.106 344.837C287.878 343.36 287.723 341.692 287.677 339.887C287.918 341.383 288.048 343.015 288.106 344.837Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M309.536 287.03C309.733 287.938 309.877 289.025 309.915 290.236C309.7 289.31 309.592 288.26 309.536 287.03Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.968 255.924C309.121 256.785 309.115 257.731 309.025 258.811C308.897 257.967 308.853 256.988 308.968 255.924Z\" fill=\"#633870\"/>\r\n <path d=\"M310.326 301.447C310.548 302.209 310.73 303.149 310.81 304.21C310.567 303.429 310.427 302.527 310.326 301.447Z\" fill=\"var(--primary-color-200-parts, #8AB7FB)\"/>\r\n <path d=\"M308.745 267.323C308.984 267.594 309.119 267.941 309.174 268.425C308.943 268.174 308.793 267.787 308.745 267.323Z\" fill=\"#633870\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.771 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"var(--primary-color-500-parts, #146EF6)\"/>\r\n <path d=\"M271.835 179.229C271.995 177.599 272.231 176.173 272.27 174.741C272.34 172.207 273.982 170.641 276.571 170.476C279.744 170.274 282.903 169.877 286.068 169.565C289.335 169.243 292.604 168.939 295.868 168.592C297.534 168.415 298.172 168.959 298.162 170.638C298.146 173.455 298.692 176.286 298.527 179.087C298.077 186.731 297.375 194.362 296.782 201.999C296.665 203.507 299.722 167.785 299.61 169.565C301.238 169.919 300.172 173.663 300.291 172.433C300.609 169.126 298.757 198.226 299.61 195.047C299.61 189.152 300.043 183.807 300.405 178.204C300.515 176.499 300.524 174.773 300.366 173.075C300.287 172.224 300.027 170.582 299.61 169.565C300.866 167.233 302.924 167.491 305.778 167.695C307.842 167.841 309.927 167.726 312.221 167.732C312.549 167.77 312.647 167.824 312.79 168.175C312.723 170.541 312.669 172.636 312.462 174.717C311.424 185.127 310.306 195.53 309.322 205.945C309.164 207.612 309.54 209.325 309.669 211.017C309.214 213.132 308.849 215.269 308.276 217.355C307.789 219.126 307.062 220.837 306.36 222.727C305.536 222.749 304.793 222.618 303.691 222.466C301.595 222.524 299.858 222.603 298.121 222.681C297.916 222.684 297.711 222.687 297.184 222.678C296.502 222.717 296.143 222.769 295.783 222.82C291.922 222.898 288.061 222.975 284.005 223.073C282.971 223.079 282.133 223.064 281.193 223.143C278.759 223.335 276.425 223.435 273.813 223.466C273.219 223.491 272.905 223.584 272.59 223.677C271.087 223.743 269.584 223.81 267.761 223.809C266.85 223.863 266.258 223.985 265.667 224.106C265.109 224.135 264.552 224.165 263.828 224.183C264.052 222.826 264.463 221.485 264.832 220.134C266.527 213.934 268.534 207.789 269.796 201.51C270.816 196.434 270.931 191.195 271.622 185.777C271.797 184.824 271.797 184.122 271.799 183.42C271.806 182.09 271.814 180.76 271.835 179.229Z\" fill=\"white\" fill-opacity=\"0.5\"/>\r\n <path d=\"M316.309 184.256C316.483 188.727 316.853 193.203 316.757 197.669C316.699 200.367 315.918 203.049 315.44 205.905C314.77 206.887 314.122 207.703 313.253 208.665C312.81 209.05 312.588 209.288 312.366 209.526C311.595 209.979 310.825 210.432 309.913 210.946C309.65 209.312 309.293 207.597 309.443 205.927C310.379 195.498 311.441 185.079 312.427 174.654C312.624 172.57 312.675 170.472 312.795 168.162C313.389 169.691 314.034 171.422 314.557 173.19C314.919 174.411 315.111 175.682 315.422 177.097C315.474 177.588 315.483 177.912 315.496 178.54C315.621 179.193 315.742 179.542 315.862 179.891C315.907 180.92 315.951 181.948 315.997 183.287C316.103 183.817 316.206 184.037 316.309 184.256Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M312.448 209.628C312.587 209.287 312.809 209.049 313.151 208.776C313.025 209.07 312.778 209.4 312.448 209.628Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M314.729 210.202C314.552 210.156 314.445 210.043 314.337 209.93C314.384 209.886 314.469 209.8 314.472 209.803C314.586 209.909 314.692 210.023 314.729 210.202Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M268.115 224.198C268.52 223.994 269.082 223.872 269.75 223.832C269.328 224.036 268.8 224.158 268.115 224.198Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M274.663 223.758C274.836 223.592 275.135 223.499 275.495 223.493C275.3 223.663 275.044 223.747 274.663 223.758Z\" fill=\"var(--primary-color-300-parts, #5B9AF9)\"/>\r\n <path d=\"M298.93 222.81C300.45 222.61 302.1 222.531 303.915 222.513C302.406 222.693 300.734 222.812 298.93 222.81Z\" fill=\"#633870\"/>\r\n <path d=\"M296.585 222.961C296.919 222.775 297.261 222.723 297.769 222.729C297.668 223.126 297.402 223.467 297.136 223.807C296.955 223.57 296.774 223.333 296.585 222.961Z\" fill=\"#633870\"/>\r\n <path d=\"M312.363 165.456C312.239 164.958 312.14 164.479 312.041 164.001C312.205 163.97 312.368 163.939 312.532 163.909C312.629 164.334 312.726 164.759 312.721 165.339C312.619 165.494 312.433 165.516 312.433 165.516C312.433 165.516 312.387 165.475 312.363 165.456Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M272.997 169.356C272.933 169.397 272.933 169.183 272.934 169.076C272.977 169.085 273.019 169.2 272.997 169.356Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M315.97 179.808C315.741 179.544 315.621 179.195 315.524 178.702C315.724 178.946 315.901 179.335 315.97 179.808Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n <path d=\"M316.401 184.188C316.206 184.036 316.103 183.817 316.036 183.475C316.213 183.608 316.353 183.864 316.401 184.188Z\" fill=\"var(--primary-color-100-parts, #B9D4FC)\"/>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.error-common .error-image-container{display:flex}.error-common .error-image-container .error-image{width:fit-content}.error-common .error-content .error-content-main{max-width:468px}.error-common .error-content .error-content-main .break{height:1px;background-color:#e9e9e9}.error-common .error-content .error-content-main button.link1{border:none;background:transparent}.error-common .error-content .error-content-main .error-reference{align-items:flex-end}.error-common .error-content .error-content-main .error-reference button:focus{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px!important}.error-common .error-content .error-content-main .error-reference button.copy{background:#fafafa!important}.error-common .error-content .error-content-main .error-reference button.copy:hover{background:#f5f5f5!important}.error-common .error-content .error-content-main .error-reference button.copied{cursor:default!important;pointer-events:none!important;background:var(--success-color-A100-parts)!important;color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied:hover{background:var(--success-color-A100-parts)!important}.error-common .error-content .error-content-main .error-reference button.copied i{color:var(--success-color-500-parts)!important}.error-common .error-content .error-content-main .reference-data{background:#fafafa;border-radius:8px;gap:8px}.error-common .error-content .error-content-main .reference-data .code1{font-family:Roboto Mono;font-size:14px;font-style:normal;font-weight:500;line-height:normal;letter-spacing:.28px}\n"] }]
|
|
7204
7204
|
}], propDecorators: { imageUrl: [{
|
|
7205
7205
|
type: Input,
|
|
7206
7206
|
args: ['imageUrl']
|
|
@@ -7319,6 +7319,544 @@ var SiteMapDirection;
|
|
|
7319
7319
|
|
|
7320
7320
|
/** Public api for the footer module */
|
|
7321
7321
|
|
|
7322
|
+
/**
|
|
7323
|
+
* The sof-chip component
|
|
7324
|
+
*/
|
|
7325
|
+
class SofChipComponent {
|
|
7326
|
+
constructor() {
|
|
7327
|
+
/**
|
|
7328
|
+
* Can the chip be removed
|
|
7329
|
+
* @optional
|
|
7330
|
+
* @default true
|
|
7331
|
+
*/
|
|
7332
|
+
this.canRemove = true;
|
|
7333
|
+
/**
|
|
7334
|
+
* Theme for the chip
|
|
7335
|
+
* @optional
|
|
7336
|
+
* @default 'neutral'
|
|
7337
|
+
*/
|
|
7338
|
+
this.theme = "neutral";
|
|
7339
|
+
/**
|
|
7340
|
+
* The id for the remove button
|
|
7341
|
+
* @optional needed if canRemove is true
|
|
7342
|
+
* @note Can simply be the index of the <Chip> array
|
|
7343
|
+
*/
|
|
7344
|
+
this.removeButtonId = "";
|
|
7345
|
+
/** Event to emit the chip's label for removal */
|
|
7346
|
+
this.removeEvent = new EventEmitter();
|
|
7347
|
+
}
|
|
7348
|
+
/** If canRemove is null|undefined onChanges, set to true */
|
|
7349
|
+
ngOnChanges(changes) {
|
|
7350
|
+
if (changes.canRemove) {
|
|
7351
|
+
const canRemove = changes.canRemove.currentValue ?? true;
|
|
7352
|
+
this.canRemove = canRemove;
|
|
7353
|
+
}
|
|
7354
|
+
}
|
|
7355
|
+
/** Emit the chip's label for removal */
|
|
7356
|
+
onRemove(event) {
|
|
7357
|
+
event.preventDefault();
|
|
7358
|
+
event.stopPropagation();
|
|
7359
|
+
this.removeEvent.emit(this.label);
|
|
7360
|
+
}
|
|
7361
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7362
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: SofChipComponent, isStandalone: true, selector: "sof-chip", inputs: { label: "label", canRemove: "canRemove", theme: "theme", iconClass: "iconClass", removeButtonId: "removeButtonId" }, outputs: { removeEvent: "removeEvent" }, usesOnChanges: true, ngImport: i0, template: "<div \r\n class=\"sof-chip\" \r\n [class.no-remove]=\"!canRemove\"\r\n [attr.theme]=\"theme ?? 'neutral'\">\r\n @if (iconClass) {\r\n <i [class]=\"iconClass\" aria-hidden=\"true\"></i>\r\n }\r\n <span class=\"body3 fw-500 text-high-emphasis\">{{ label | translate }}</span>\r\n @if (canRemove) {\r\n <button \r\n (click)=\"onRemove($event)\"\r\n (keydown.enter)=\"onRemove($event)\"\r\n [attr.aria-label]=\"'Remove ' + label\"\r\n [id]=\"'sof-chip-remove-btn-' + removeButtonId\"\r\n class=\"chip-remove\">\r\n <i class=\"ph-fill ph-x-circle\" aria-hidden=\"true\"></i>\r\n </button>\r\n }\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.sof-chip{display:flex;align-items:center;height:24px;width:fit-content;border-radius:4px;padding-left:4px;background-color:var(--neutral-color-A100-parts)}.sof-chip:not(.no-remove):has(.chip-remove:hover),.sof-chip:not(.no-remove):has(.chip-remove:focus){background-color:var(--neutral-color-A200-parts)}.sof-chip *{box-sizing:border-box}.sof-chip.no-remove{padding-right:4px}.sof-chip[theme=neutral]{background-color:var(--neutral-color-A100-parts)}.sof-chip[theme=neutral]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=neutral]:not(.no-remove):has(.chip-remove:focus){background-color:var(--neutral-color-A200-parts)}.sof-chip[theme=info]{background-color:var(--info-color-A100-parts)}.sof-chip[theme=info]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=info]:not(.no-remove):has(.chip-remove:focus){background-color:var(--info-color-A200-parts)}.sof-chip[theme=primary]{background-color:var(--primary-color-A100-parts)}.sof-chip[theme=primary]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=primary]:not(.no-remove):has(.chip-remove:focus){background-color:var(--primary-color-A200-parts)}.sof-chip i{margin-right:4px}.sof-chip span{text-transform:capitalize}.sof-chip span,.sof-chip i{cursor:default}.sof-chip .chip-remove{border:none;background:transparent;height:100%;padding:0;display:flex;align-items:center;justify-content:center;width:24px;cursor:pointer}.sof-chip .chip-remove:focus{outline:none}.sof-chip .chip-remove:focus i{color:var(--neutral-color-700-parts)}.sof-chip .chip-remove i{margin:0;font-size:16px;cursor:pointer;color:var(--neutral-color-500-parts);border-radius:50%}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7363
|
+
}
|
|
7364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofChipComponent, decorators: [{
|
|
7365
|
+
type: Component,
|
|
7366
|
+
args: [{ selector: 'sof-chip', changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslateModule], template: "<div \r\n class=\"sof-chip\" \r\n [class.no-remove]=\"!canRemove\"\r\n [attr.theme]=\"theme ?? 'neutral'\">\r\n @if (iconClass) {\r\n <i [class]=\"iconClass\" aria-hidden=\"true\"></i>\r\n }\r\n <span class=\"body3 fw-500 text-high-emphasis\">{{ label | translate }}</span>\r\n @if (canRemove) {\r\n <button \r\n (click)=\"onRemove($event)\"\r\n (keydown.enter)=\"onRemove($event)\"\r\n [attr.aria-label]=\"'Remove ' + label\"\r\n [id]=\"'sof-chip-remove-btn-' + removeButtonId\"\r\n class=\"chip-remove\">\r\n <i class=\"ph-fill ph-x-circle\" aria-hidden=\"true\"></i>\r\n </button>\r\n }\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.sof-chip{display:flex;align-items:center;height:24px;width:fit-content;border-radius:4px;padding-left:4px;background-color:var(--neutral-color-A100-parts)}.sof-chip:not(.no-remove):has(.chip-remove:hover),.sof-chip:not(.no-remove):has(.chip-remove:focus){background-color:var(--neutral-color-A200-parts)}.sof-chip *{box-sizing:border-box}.sof-chip.no-remove{padding-right:4px}.sof-chip[theme=neutral]{background-color:var(--neutral-color-A100-parts)}.sof-chip[theme=neutral]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=neutral]:not(.no-remove):has(.chip-remove:focus){background-color:var(--neutral-color-A200-parts)}.sof-chip[theme=info]{background-color:var(--info-color-A100-parts)}.sof-chip[theme=info]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=info]:not(.no-remove):has(.chip-remove:focus){background-color:var(--info-color-A200-parts)}.sof-chip[theme=primary]{background-color:var(--primary-color-A100-parts)}.sof-chip[theme=primary]:not(.no-remove):has(.chip-remove:hover),.sof-chip[theme=primary]:not(.no-remove):has(.chip-remove:focus){background-color:var(--primary-color-A200-parts)}.sof-chip i{margin-right:4px}.sof-chip span{text-transform:capitalize}.sof-chip span,.sof-chip i{cursor:default}.sof-chip .chip-remove{border:none;background:transparent;height:100%;padding:0;display:flex;align-items:center;justify-content:center;width:24px;cursor:pointer}.sof-chip .chip-remove:focus{outline:none}.sof-chip .chip-remove:focus i{color:var(--neutral-color-700-parts)}.sof-chip .chip-remove i{margin:0;font-size:16px;cursor:pointer;color:var(--neutral-color-500-parts);border-radius:50%}\n"] }]
|
|
7367
|
+
}], propDecorators: { label: [{
|
|
7368
|
+
type: Input,
|
|
7369
|
+
args: [{ required: true }]
|
|
7370
|
+
}], canRemove: [{
|
|
7371
|
+
type: Input
|
|
7372
|
+
}], theme: [{
|
|
7373
|
+
type: Input
|
|
7374
|
+
}], iconClass: [{
|
|
7375
|
+
type: Input
|
|
7376
|
+
}], removeButtonId: [{
|
|
7377
|
+
type: Input
|
|
7378
|
+
}], removeEvent: [{
|
|
7379
|
+
type: Output
|
|
7380
|
+
}] } });
|
|
7381
|
+
|
|
7382
|
+
/**
|
|
7383
|
+
* @description
|
|
7384
|
+
* - This component can be used as a single select or multi-select.
|
|
7385
|
+
* - Can be used with a reactive formControlName.
|
|
7386
|
+
* - Can be used with [(ngModal)] binding.
|
|
7387
|
+
* - Can be used without a form using the (selectionChange) output event.
|
|
7388
|
+
*/
|
|
7389
|
+
class SofSelectComponent {
|
|
7390
|
+
/** Select options */
|
|
7391
|
+
set options(value) {
|
|
7392
|
+
this._options.set(value ?? []);
|
|
7393
|
+
}
|
|
7394
|
+
/** The derived form control */
|
|
7395
|
+
get derivedFormControl() {
|
|
7396
|
+
return this._ngControl?.control;
|
|
7397
|
+
}
|
|
7398
|
+
/**
|
|
7399
|
+
* Constructor.
|
|
7400
|
+
* @param control The ng control
|
|
7401
|
+
*/
|
|
7402
|
+
constructor(_ngControl, _host, _cdr, _zone, _translate) {
|
|
7403
|
+
this._ngControl = _ngControl;
|
|
7404
|
+
this._host = _host;
|
|
7405
|
+
this._cdr = _cdr;
|
|
7406
|
+
this._zone = _zone;
|
|
7407
|
+
this._translate = _translate;
|
|
7408
|
+
/** Select options local signal */
|
|
7409
|
+
this._options = signal([]);
|
|
7410
|
+
/** Readonly select options signal */
|
|
7411
|
+
this.readOptions = this._options.asReadonly();
|
|
7412
|
+
/**
|
|
7413
|
+
* Is multi-select ?
|
|
7414
|
+
* @default false
|
|
7415
|
+
*/
|
|
7416
|
+
this.multiple = false;
|
|
7417
|
+
/**
|
|
7418
|
+
* Show select all option (if multiple only)
|
|
7419
|
+
* @default false
|
|
7420
|
+
*/
|
|
7421
|
+
this.showSelectAll = false;
|
|
7422
|
+
/**
|
|
7423
|
+
* Is disabled ?
|
|
7424
|
+
* @default false
|
|
7425
|
+
* @note a Form control marked as disabled will also set this if not directly passed
|
|
7426
|
+
*/
|
|
7427
|
+
this.isDisabled = false;
|
|
7428
|
+
/**
|
|
7429
|
+
* Component width
|
|
7430
|
+
* @type `'full' | 'fixed'`
|
|
7431
|
+
* @default `'fixed'``
|
|
7432
|
+
* @description
|
|
7433
|
+
* - 'fixed' = width: 300px;
|
|
7434
|
+
* - 'full' = width: 100%;
|
|
7435
|
+
*/
|
|
7436
|
+
this.width = 'fixed';
|
|
7437
|
+
/**
|
|
7438
|
+
* Should the select have a white background ?
|
|
7439
|
+
* @description
|
|
7440
|
+
* By default the select will have a background of $surface-color-level-one-light (#FAFAFA);\
|
|
7441
|
+
* In the case that the page or container background is the same or darker set this to true
|
|
7442
|
+
* to have the select use a white background.
|
|
7443
|
+
* @default false
|
|
7444
|
+
*/
|
|
7445
|
+
this.useWhiteBackground = false;
|
|
7446
|
+
/**
|
|
7447
|
+
* Error Messages ( Forms only )
|
|
7448
|
+
* @default required: 'armature.select.errors.required'
|
|
7449
|
+
* @example
|
|
7450
|
+
* ```
|
|
7451
|
+
* this.errorMessages = {
|
|
7452
|
+
* required: 'armature.select.errors.required',
|
|
7453
|
+
* minSelected: 'armature.select.errors.min-selected'
|
|
7454
|
+
* };
|
|
7455
|
+
*
|
|
7456
|
+
* form = this.fb.group({
|
|
7457
|
+
* fruits: [[], [Validators.required, minSelectedValidator(2)]]
|
|
7458
|
+
* });
|
|
7459
|
+
*
|
|
7460
|
+
* ...
|
|
7461
|
+
* export function minSelectedValidator(min: number) {
|
|
7462
|
+
* return (control: AbstractControl): ValidationErrors | null => {
|
|
7463
|
+
* const value = control.value;
|
|
7464
|
+
* if (Array.isArray(value) && value.length < min) {
|
|
7465
|
+
* return { minSelected: { required: min, actual: value.length } };
|
|
7466
|
+
* }
|
|
7467
|
+
* return null;
|
|
7468
|
+
* };
|
|
7469
|
+
*}
|
|
7470
|
+
* ```
|
|
7471
|
+
*/
|
|
7472
|
+
this.errorMessages = {
|
|
7473
|
+
required: 'armature.select.errors.required'
|
|
7474
|
+
};
|
|
7475
|
+
/** Selection change output if no form control */
|
|
7476
|
+
this.selectionChange = new EventEmitter();
|
|
7477
|
+
/** Validation errors */
|
|
7478
|
+
this._errors = signal(null);
|
|
7479
|
+
/** Current validation error */
|
|
7480
|
+
this.errorMessage = computed(() => {
|
|
7481
|
+
const errs = this._errors();
|
|
7482
|
+
if (!errs)
|
|
7483
|
+
return null;
|
|
7484
|
+
for (const key of Object.keys(errs)) {
|
|
7485
|
+
if (this.errorMessages && this.errorMessages[key]) {
|
|
7486
|
+
return this.errorMessages[key];
|
|
7487
|
+
}
|
|
7488
|
+
}
|
|
7489
|
+
return 'armature.select.errors.invalid';
|
|
7490
|
+
});
|
|
7491
|
+
/** Is expanded ? */
|
|
7492
|
+
this.expanded = signal(false);
|
|
7493
|
+
/** Active selection index */
|
|
7494
|
+
this.activeIndex = -1;
|
|
7495
|
+
/** Selected item / item's values */
|
|
7496
|
+
this.selected = signal(this.multiple ? [] : null);
|
|
7497
|
+
/** Keyboard typeahead buffer */
|
|
7498
|
+
this._typeaheadBuffer = "";
|
|
7499
|
+
/** onChange form control method */
|
|
7500
|
+
this._onChange = () => { };
|
|
7501
|
+
/** onTouched form control method */
|
|
7502
|
+
this._onTouched = () => { };
|
|
7503
|
+
/** Is the form control have required validator ? */
|
|
7504
|
+
this.isRequired = signal(undefined);
|
|
7505
|
+
/** Destroy ref to unsubscribe */
|
|
7506
|
+
this._destroyRef = inject(DestroyRef);
|
|
7507
|
+
/** Options input as Map */
|
|
7508
|
+
this._valueToLabelMap = computed(() => {
|
|
7509
|
+
const opts = this.readOptions();
|
|
7510
|
+
return new Map(opts?.map(opt => [opt?.value, opt?.label]));
|
|
7511
|
+
});
|
|
7512
|
+
/**
|
|
7513
|
+
* The selected item label
|
|
7514
|
+
* @note for single select
|
|
7515
|
+
*/
|
|
7516
|
+
this.selectedLabelSingle = computed(() => {
|
|
7517
|
+
const selected = this.selected();
|
|
7518
|
+
const valueToLabelMap = this._valueToLabelMap();
|
|
7519
|
+
if (!selected || (Array.isArray(selected) ? selected?.length === 0 : !selected?.length)) {
|
|
7520
|
+
return this.label;
|
|
7521
|
+
}
|
|
7522
|
+
const selectedValue = selected;
|
|
7523
|
+
return valueToLabelMap.get(selectedValue) ?? selectedValue;
|
|
7524
|
+
});
|
|
7525
|
+
/**
|
|
7526
|
+
* The selected item's [item's label's]
|
|
7527
|
+
* @note for multi select
|
|
7528
|
+
*/
|
|
7529
|
+
this.selectedLabelsMultiple = computed(() => {
|
|
7530
|
+
const selected = this.selected();
|
|
7531
|
+
const valueToLabelMap = this._valueToLabelMap();
|
|
7532
|
+
if (!selected || (Array.isArray(selected) ? selected?.length === 0 : !selected?.length)) {
|
|
7533
|
+
return [this.label];
|
|
7534
|
+
}
|
|
7535
|
+
const selectedArray = selected;
|
|
7536
|
+
return selectedArray.map(value => valueToLabelMap.get(value) ?? value);
|
|
7537
|
+
});
|
|
7538
|
+
/**
|
|
7539
|
+
* The selected item's [item's label's] visible chips
|
|
7540
|
+
* @note for multi select chip container
|
|
7541
|
+
*/
|
|
7542
|
+
this.visibleChips = signal([]);
|
|
7543
|
+
/** The number of hidden chips */
|
|
7544
|
+
this.hiddenChipsCount = signal(0);
|
|
7545
|
+
/** Are all items selected ? (multiple select) */
|
|
7546
|
+
this.isAllSelected = computed(() => this.multiple &&
|
|
7547
|
+
Array.isArray(this.selected()) &&
|
|
7548
|
+
this.selected().length === this.readOptions().length);
|
|
7549
|
+
/** Is the option selected ? */
|
|
7550
|
+
this.isSelected = (optionValue) => computed(() => this.multiple ?
|
|
7551
|
+
(this.selected() ?? []).includes(optionValue) :
|
|
7552
|
+
this.selected() === optionValue);
|
|
7553
|
+
/** The form control name */
|
|
7554
|
+
this.controlName = "";
|
|
7555
|
+
if (this._ngControl) {
|
|
7556
|
+
this._ngControl.valueAccessor = this;
|
|
7557
|
+
setTimeout(() => {
|
|
7558
|
+
this.controlName = this._ngControl.name;
|
|
7559
|
+
});
|
|
7560
|
+
}
|
|
7561
|
+
effect(() => {
|
|
7562
|
+
if (this.multiple && this.selectedLabelsMultiple()[0] !== this.label) {
|
|
7563
|
+
this.updateVisibleChips();
|
|
7564
|
+
}
|
|
7565
|
+
});
|
|
7566
|
+
}
|
|
7567
|
+
/** Component init */
|
|
7568
|
+
ngOnInit() {
|
|
7569
|
+
if (this.multiple && !Array.isArray(this.selected())) {
|
|
7570
|
+
this.selected.set([]);
|
|
7571
|
+
}
|
|
7572
|
+
if (!!this.derivedFormControl) {
|
|
7573
|
+
this.isRequired.set(this.derivedFormControl?.hasValidator(Validators.required) ||
|
|
7574
|
+
this._host?.nativeElement?.hasAttribute('required'));
|
|
7575
|
+
}
|
|
7576
|
+
this.derivedFormControl?.statusChanges?.pipe(takeUntilDestroyed(this._destroyRef), tap((_) => {
|
|
7577
|
+
this.isRequired.set(this.derivedFormControl?.hasValidator(Validators.required) ||
|
|
7578
|
+
this._host?.nativeElement?.hasAttribute('required'));
|
|
7579
|
+
if (this.derivedFormControl?.touched) {
|
|
7580
|
+
this.validate();
|
|
7581
|
+
}
|
|
7582
|
+
})).subscribe();
|
|
7583
|
+
}
|
|
7584
|
+
/** After dom renders */
|
|
7585
|
+
ngAfterViewInit() {
|
|
7586
|
+
if (this.multiple) {
|
|
7587
|
+
const chipContainer = this.multiChipContainer?.nativeElement;
|
|
7588
|
+
this._zone.runOutsideAngular(() => {
|
|
7589
|
+
this._resizeObserver = new ResizeObserver(() => {
|
|
7590
|
+
this._zone.run(() => { this.updateVisibleChips(); });
|
|
7591
|
+
});
|
|
7592
|
+
this._resizeObserver.observe(chipContainer);
|
|
7593
|
+
});
|
|
7594
|
+
}
|
|
7595
|
+
}
|
|
7596
|
+
/** Component destroy */
|
|
7597
|
+
ngOnDestroy() {
|
|
7598
|
+
if (this._resizeObserver) {
|
|
7599
|
+
this._resizeObserver.disconnect();
|
|
7600
|
+
}
|
|
7601
|
+
}
|
|
7602
|
+
/** Toggle the select panel open/close */
|
|
7603
|
+
togglePanel() {
|
|
7604
|
+
this.expanded.update(v => !v);
|
|
7605
|
+
}
|
|
7606
|
+
/** Closes the select panel */
|
|
7607
|
+
closePanel() {
|
|
7608
|
+
this.expanded.set(false);
|
|
7609
|
+
this.activeIndex = -1;
|
|
7610
|
+
this._onTouched();
|
|
7611
|
+
if ((!this.selected()?.length || this.multiple) && !!this.derivedFormControl) {
|
|
7612
|
+
this.validate();
|
|
7613
|
+
}
|
|
7614
|
+
}
|
|
7615
|
+
/**
|
|
7616
|
+
* Option click event
|
|
7617
|
+
* @param option the option or all
|
|
7618
|
+
*/
|
|
7619
|
+
onOptionClick(option) {
|
|
7620
|
+
if (option === 'ALL') {
|
|
7621
|
+
if (this.isAllSelected()) {
|
|
7622
|
+
this.selected.set([]);
|
|
7623
|
+
}
|
|
7624
|
+
else {
|
|
7625
|
+
this.selected.set(this.readOptions().map(o => o.value));
|
|
7626
|
+
}
|
|
7627
|
+
}
|
|
7628
|
+
else {
|
|
7629
|
+
if (this.multiple) {
|
|
7630
|
+
const arr = this.selected() || [];
|
|
7631
|
+
this.selected.set(this.isSelected(option.value)() ?
|
|
7632
|
+
arr.filter(v => v !== option.value) :
|
|
7633
|
+
[...arr, option.value]);
|
|
7634
|
+
}
|
|
7635
|
+
else {
|
|
7636
|
+
this.selected.set(option.value);
|
|
7637
|
+
this.closePanel();
|
|
7638
|
+
}
|
|
7639
|
+
}
|
|
7640
|
+
this._propagateValue();
|
|
7641
|
+
}
|
|
7642
|
+
/** Update the form or emit the selection change */
|
|
7643
|
+
_propagateValue() {
|
|
7644
|
+
this._onChange(this.selected());
|
|
7645
|
+
this.selectionChange.emit(this.selected());
|
|
7646
|
+
}
|
|
7647
|
+
/** Updates the visible chips */
|
|
7648
|
+
updateVisibleChips() {
|
|
7649
|
+
if (!this.multiChipContainer?.nativeElement || !this.selectedLabelsMultiple()?.length || this.isAllSelected()) {
|
|
7650
|
+
this.visibleChips.set([...this.selectedLabelsMultiple()]);
|
|
7651
|
+
this.hiddenChipsCount.set(0);
|
|
7652
|
+
return;
|
|
7653
|
+
}
|
|
7654
|
+
this.visibleChips.set([...this.selectedLabelsMultiple()]);
|
|
7655
|
+
this.hiddenChipsCount.set(0);
|
|
7656
|
+
this._cdr.detectChanges();
|
|
7657
|
+
setTimeout(() => {
|
|
7658
|
+
const container = this.multiChipContainer.nativeElement;
|
|
7659
|
+
const containerWidth = container.offsetWidth;
|
|
7660
|
+
let totalWidth = 0;
|
|
7661
|
+
const chipElements = container.querySelectorAll('.visible-chip');
|
|
7662
|
+
for (let i = 0; i < chipElements.length; i++) {
|
|
7663
|
+
const chipWidth = chipElements[i].offsetWidth + 8;
|
|
7664
|
+
if (totalWidth + chipWidth > containerWidth - 24) {
|
|
7665
|
+
this.visibleChips.set(this.selectedLabelsMultiple().slice(0, i));
|
|
7666
|
+
this.hiddenChipsCount.set(this.selectedLabelsMultiple().length - i);
|
|
7667
|
+
this._cdr.detectChanges();
|
|
7668
|
+
break;
|
|
7669
|
+
}
|
|
7670
|
+
totalWidth += chipWidth;
|
|
7671
|
+
}
|
|
7672
|
+
});
|
|
7673
|
+
}
|
|
7674
|
+
/** Remove chip */
|
|
7675
|
+
removeChip(label) {
|
|
7676
|
+
if (this.isAllSelected()) {
|
|
7677
|
+
this.onOptionClick('ALL');
|
|
7678
|
+
return;
|
|
7679
|
+
}
|
|
7680
|
+
const option = this.readOptions().find((option) => option.label === label);
|
|
7681
|
+
this.onOptionClick(option);
|
|
7682
|
+
}
|
|
7683
|
+
/** Close the panel if clicked outside */
|
|
7684
|
+
onDocumentClick(event) {
|
|
7685
|
+
if (this.expanded() && !this._host.nativeElement.contains(event.target)) {
|
|
7686
|
+
this.closePanel();
|
|
7687
|
+
}
|
|
7688
|
+
}
|
|
7689
|
+
/**
|
|
7690
|
+
* Keyboard support
|
|
7691
|
+
* @param event keyboard event
|
|
7692
|
+
* @description
|
|
7693
|
+
* #### When focused on the select trigger
|
|
7694
|
+
* - the enter key or down arrow will open the panel;
|
|
7695
|
+
* #### When the panel is open
|
|
7696
|
+
* - escape key will close the panel;
|
|
7697
|
+
* - up/down arrows cycle through the options;
|
|
7698
|
+
* - enter or space key will select/deselect the option;
|
|
7699
|
+
*/
|
|
7700
|
+
handleKeydown(event) {
|
|
7701
|
+
if (!this.expanded()) {
|
|
7702
|
+
if (['ArrowDown', 'Enter', ' '].includes(event.key)) {
|
|
7703
|
+
event.preventDefault();
|
|
7704
|
+
this.togglePanel();
|
|
7705
|
+
}
|
|
7706
|
+
return;
|
|
7707
|
+
}
|
|
7708
|
+
const totalOptions = (this.multiple && this.showSelectAll) ? this.readOptions().length + 1 : this.readOptions().length;
|
|
7709
|
+
switch (event.key) {
|
|
7710
|
+
case 'ArrowDown':
|
|
7711
|
+
event.preventDefault();
|
|
7712
|
+
this.activeIndex = (this.activeIndex + 1) % totalOptions;
|
|
7713
|
+
this._scrollIntoView();
|
|
7714
|
+
break;
|
|
7715
|
+
case 'ArrowUp':
|
|
7716
|
+
event.preventDefault();
|
|
7717
|
+
this.activeIndex = (this.activeIndex - 1 + totalOptions) % totalOptions;
|
|
7718
|
+
this._scrollIntoView();
|
|
7719
|
+
break;
|
|
7720
|
+
case 'Enter':
|
|
7721
|
+
case ' ':
|
|
7722
|
+
event.preventDefault();
|
|
7723
|
+
if (this.activeIndex >= 0) {
|
|
7724
|
+
if ((this.multiple && this.showSelectAll) && this.activeIndex === 0) {
|
|
7725
|
+
this.onOptionClick('ALL');
|
|
7726
|
+
}
|
|
7727
|
+
else {
|
|
7728
|
+
const realIndex = (this.multiple && this.showSelectAll) ? this.activeIndex - 1 : this.activeIndex;
|
|
7729
|
+
this.onOptionClick(this.readOptions()[realIndex]);
|
|
7730
|
+
}
|
|
7731
|
+
}
|
|
7732
|
+
break;
|
|
7733
|
+
case 'Escape':
|
|
7734
|
+
this.closePanel();
|
|
7735
|
+
break;
|
|
7736
|
+
default:
|
|
7737
|
+
this._handleTypeahead(event.key);
|
|
7738
|
+
}
|
|
7739
|
+
}
|
|
7740
|
+
/**
|
|
7741
|
+
* Typeahead search
|
|
7742
|
+
* @param char
|
|
7743
|
+
* @description Will focus on the option if the key char matches
|
|
7744
|
+
*/
|
|
7745
|
+
_handleTypeahead(char) {
|
|
7746
|
+
if (char.length !== 1 || !/[a-zA-Z0-9]/.test(char))
|
|
7747
|
+
return;
|
|
7748
|
+
this._typeaheadBuffer += char.toLowerCase();
|
|
7749
|
+
const matchIndex = this.readOptions().findIndex(o => this._translate.instant(o.label).toLowerCase().startsWith(this._typeaheadBuffer));
|
|
7750
|
+
if (matchIndex >= 0) {
|
|
7751
|
+
this.activeIndex = (this.multiple && this.showSelectAll) ? matchIndex + 1 : matchIndex;
|
|
7752
|
+
this._scrollIntoView();
|
|
7753
|
+
}
|
|
7754
|
+
clearTimeout(this._typeaheadTimeout);
|
|
7755
|
+
this._typeaheadTimeout = setTimeout(() => (this._typeaheadBuffer = ''), 500);
|
|
7756
|
+
}
|
|
7757
|
+
/** Scrolls to the active option index */
|
|
7758
|
+
_scrollIntoView() {
|
|
7759
|
+
const listbox = this.listboxRef?.nativeElement;
|
|
7760
|
+
if (!listbox)
|
|
7761
|
+
return;
|
|
7762
|
+
const active = listbox.children[this.activeIndex];
|
|
7763
|
+
if (active)
|
|
7764
|
+
active.scrollIntoView({ block: 'nearest' });
|
|
7765
|
+
const activeOptions = listbox.querySelectorAll('li');
|
|
7766
|
+
const lastActiveId = activeOptions[this.activeIndex]?.id;
|
|
7767
|
+
if (lastActiveId) {
|
|
7768
|
+
listbox.setAttribute('aria-activedescendant', lastActiveId);
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
/**
|
|
7772
|
+
* Triggered when the form control value is set outside the component
|
|
7773
|
+
* @param value
|
|
7774
|
+
*/
|
|
7775
|
+
writeValue(value) {
|
|
7776
|
+
this.selected.set(value ?? (this.multiple ? [] : null));
|
|
7777
|
+
}
|
|
7778
|
+
/**
|
|
7779
|
+
* Triggered when the form control is changed
|
|
7780
|
+
* @param fn The callback function.
|
|
7781
|
+
*/
|
|
7782
|
+
registerOnChange(fn) {
|
|
7783
|
+
this._onChange = fn;
|
|
7784
|
+
}
|
|
7785
|
+
/**
|
|
7786
|
+
* Triggered when the form control is touched
|
|
7787
|
+
* @param fn The callback function.
|
|
7788
|
+
*/
|
|
7789
|
+
registerOnTouched(fn) {
|
|
7790
|
+
this._onTouched = fn;
|
|
7791
|
+
}
|
|
7792
|
+
/** Called by the forms API when the control status changes to or from 'DISABLED' */
|
|
7793
|
+
setDisabledState(isDisabled) {
|
|
7794
|
+
this.isDisabled = isDisabled;
|
|
7795
|
+
}
|
|
7796
|
+
/** Runs the form control validator */
|
|
7797
|
+
validate() {
|
|
7798
|
+
this._errors.set(this.derivedFormControl?.errors);
|
|
7799
|
+
return this.derivedFormControl?.errors;
|
|
7800
|
+
}
|
|
7801
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofSelectComponent, deps: [{ token: i1$7.NgControl, host: true, optional: true, self: true }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i2$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7802
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: SofSelectComponent, isStandalone: true, selector: "sof-select", inputs: { id: "id", options: "options", label: "label", helpText: "helpText", multiple: "multiple", showSelectAll: "showSelectAll", isDisabled: "isDisabled", width: "width", useWhiteBackground: "useWhiteBackground", errorMessages: "errorMessages" }, outputs: { selectionChange: "selectionChange" }, host: { listeners: { "document:click": "onDocumentClick($event)", "keydown": "handleKeydown($event)" }, properties: { "class.full-width": "this.width === \"full\"" } }, viewQueries: [{ propertyName: "listboxRef", first: true, predicate: ["listboxRef"], descendants: true }, { propertyName: "multiChipContainer", first: true, predicate: ["multiChipContainer"], descendants: true }], ngImport: i0, template: "<div \r\n class=\"sof-select-field\"\r\n [class.full-width]=\"width === 'full'\">\r\n @if ((selected()?.length || 0) > 0) {\r\n <!-- TODO: put back classes if floating label not working out: class=\"body3 fw-500 text-medium-emphasis\" -->\r\n <label \r\n [for]=\"id + '-select-trigger'\"\r\n [class.text-low-emphasis]=\"isDisabled\"\r\n [class.has-error]=\"errorMessage()?.length\">\r\n {{label | translate}}{{isRequired() ? '*':''}}\r\n </label>\r\n }\r\n <div class=\"relative-container\">\r\n <button \r\n [id]=\"id + '-select-trigger'\" \r\n [name]=\"controlName\"\r\n class=\"trigger p-v-8 p-h-16\" \r\n [class.has-error]=\"errorMessage()?.length\"\r\n [class.expanded]=\"expanded()\"\r\n [class.white-bg]=\"useWhiteBackground\"\r\n [disabled]=\"isDisabled\"\r\n type=\"button\" \r\n role=\"combobox\" \r\n [attr.aria-expanded]=\"expanded()\" \r\n [attr.aria-controls]=\"'listbox'\"\r\n aria-haspopup=\"listbox\" \r\n (click)=\"togglePanel()\">\r\n @if (multiple) {\r\n <div #multiChipContainer class=\"multi-chip-container\">\r\n @if (selected()?.length) {\r\n @if (isAllSelected()) {\r\n <sof-chip \r\n class=\"visible-chip\"\r\n theme=\"primary\"\r\n [label]=\"'armature.select.all'\"\r\n [removeButtonId]=\"`${id}-select-chip-remove-all`\"\r\n (removeEvent)=\"removeChip($event)\"\r\n />\r\n } @else {\r\n @for (label of visibleChips(); let i = $index; track i) {\r\n <sof-chip \r\n class=\"visible-chip\"\r\n theme=\"primary\"\r\n [label]=\"label\"\r\n [removeButtonId]=\"`${id}-select-chip-remove-${i}`\"\r\n (removeEvent)=\"removeChip($event)\"\r\n />\r\n }\r\n @if (hiddenChipsCount()) {\r\n <sof-chip \r\n theme=\"primary\"\r\n [label]=\"`+${hiddenChipsCount()}`\"\r\n [canRemove]=\"false\"\r\n m-l-auto\r\n />\r\n }\r\n }\r\n } @else {\r\n <span class=\"body1 text-high-emphasis\">\r\n {{selectedLabelsMultiple()[0] | translate}}{{(!selected()?.length && isRequired()) ? '*':''}}\r\n </span>\r\n }\r\n </div>\r\n } @else {\r\n <span class=\"body1 text-high-emphasis\">\r\n {{selectedLabelSingle() | translate}}{{(!selected()?.length && isRequired()) ? '*':''}}\r\n </span>\r\n }\r\n @if (errorMessage()?.length && !expanded()) {\r\n <i class=\"ph-bold ph-warning-circle error-icon color-error m-l-auto\"></i>\r\n }\r\n <i \r\n class=\"ph-bold ph-caret-{{expanded() ? 'up':'down'}} arrow-icon\" \r\n [class.m-l-auto]=\"!errorMessage()?.length || (errorMessage()?.length && expanded())\">\r\n </i>\r\n </button>\r\n @if (expanded()) {\r\n <div \r\n class=\"options-list-wrap\"\r\n [class.white-bg]=\"useWhiteBackground\"\r\n [class.has-error]=\"errorMessage()?.length\">\r\n <ul \r\n #listboxRef \r\n id=\"listbox\" \r\n class=\"options-list\"\r\n role=\"listbox\" \r\n tabindex=\"0\"\r\n [attr.aria-multiselectable]=\"multiple\">\r\n @if (multiple && showSelectAll) {\r\n <li \r\n [id]=\"id + '-list-option-all'\"\r\n role=\"option\" \r\n [attr.aria-selected]=\"isAllSelected()\" \r\n class=\"p-v-8 p-r-16 p-l-12\"\r\n [class.active]=\"activeIndex === 0\"\r\n [class.selected]=\"isAllSelected()\" \r\n (click)=\"onOptionClick('ALL')\">\r\n @if (isAllSelected()) {\r\n <ng-container *ngTemplateOutlet=\"checkedSvg\"></ng-container>\r\n } @else if (selected().length) {\r\n <ng-container *ngTemplateOutlet=\"selectAllIndeterminateSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"uncheckedSvg\"></ng-container>\r\n }\r\n <span class=\"option-label body1 text-high-emphasis\">\r\n {{'armature.select.all' | translate}}\r\n </span>\r\n </li>\r\n }\r\n @for (option of readOptions(); let i = $index; track i) {\r\n <li \r\n [id]=\"`${id}-list-option-${i}`\"\r\n role=\"option\" \r\n [attr.aria-selected]=\"isSelected(option.value)()\" \r\n class=\"p-v-8 p-r-16 p-l-12\"\r\n [class.active]=\"i + ((multiple && showSelectAll) ? 1 : 0) === activeIndex\"\r\n [class.selected]=\"isSelected(option.value)()\"\r\n [class.disabled]=\"option.isDisabled\"\r\n (click)=\"onOptionClick(option)\">\r\n @if (multiple) {\r\n @if (isSelected(option.value)()) {\r\n @if (option.isDisabled) {\r\n <ng-container *ngTemplateOutlet=\"checkedDisabledSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"checkedSvg\"></ng-container>\r\n }\r\n } @else {\r\n @if (option.isDisabled) {\r\n <ng-container *ngTemplateOutlet=\"uncheckedDisabledSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"uncheckedSvg\"></ng-container>\r\n }\r\n }\r\n }\r\n <span class=\"option-label body1 text-high-emphasis text-overflow-ellipsis\">\r\n {{option.label | translate}}\r\n </span>\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n @if (errorMessage()?.length) {\r\n <span class=\"error-message color-error body3 fw-500\">\r\n {{errorMessage() | translate}}\r\n </span>\r\n } @else {\r\n @if (helpText?.length) {\r\n <span \r\n class=\"help-message body3 fw-500 text-medium-emphasis\"\r\n [class.text-low-emphasis]=\"isDisabled\">\r\n {{helpText | translate}}\r\n </span>\r\n }\r\n }\r\n</div>\r\n\r\n<ng-template #checkedSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_1718)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.25 12.75L10.5 15L15.75 9.75\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_1718\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #checkedDisabledSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_5591)\">\r\n <path d=\"M19.6055 3C20.5594 3 21.333 3.77359 21.333 4.72754V19.2725C21.333 20.2264 20.5594 21 19.6055 21H5.06055C4.1066 21 3.33301 20.2264 3.33301 19.2725V4.72754C3.33301 3.77359 4.1066 3 5.06055 3H19.6055Z\" stroke=\"var(--neutral-color-300-parts, #B0B0B0)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.58301 12.75L10.833 15L16.083 9.75\" stroke=\"var(--neutral-color-300-parts, #B0B0B0)\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_5591\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.333008)\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #uncheckedSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_3289)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" stroke=\"var(--neutral-color-500-parts, #515151)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_3289\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #uncheckedDisabledSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19094_3763)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" stroke=\"#515151\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19094_3763\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #selectAllIndeterminateSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19094_3054)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" fill=\"#146EF6\" stroke=\"#146EF6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.25 12H15.75\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19094_3054\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes floatingLabel{0%{transform:translate(16px,32px);opacity:0}to{transform:translate(0);opacity:1}}:host{display:inline-block;width:300px}:host *{box-sizing:border-box}.sof-select-field{display:flex;flex-direction:column}.sof-select-field label{display:inline-block;line-height:8px;margin-bottom:8px;position:relative;z-index:1;font-size:12px;font-weight:500!important;color:#0009;transform:none;opacity:1;animation:floatingLabel .2s ease-in}.sof-select-field label.has-error{color:var(--error-color-500-parts)}.sof-select-field .relative-container{position:relative}.sof-select-field .relative-container .trigger{min-height:40px;height:40px;max-height:40px;display:flex;align-items:center;gap:8px;width:100%;border-radius:8px;background:#fafafa;border:2px solid transparent;cursor:pointer}.sof-select-field .relative-container .trigger.white-bg{background:#fff}.sof-select-field .relative-container .trigger.expanded{box-shadow:0 10px 10px #0000001a}.sof-select-field .relative-container .trigger.has-error{border-color:var(--error-color-500-parts)}.sof-select-field .relative-container .trigger:focus{outline:3px solid var(--primary-color-A500-parts);outline-offset:2px}.sof-select-field .relative-container .trigger:disabled{cursor:default}.sof-select-field .relative-container .trigger:disabled span.body1,.sof-select-field .relative-container .trigger:disabled .arrow-icon{color:#00000061}.sof-select-field .relative-container .trigger span.body1{line-height:24px}.sof-select-field .relative-container .trigger .arrow-icon,.sof-select-field .relative-container .trigger .error-icon{pointer-events:none;font-size:20px}.sof-select-field .relative-container .trigger .error-icon{animation:fadeIn .2s ease-in}.sof-select-field .relative-container .trigger .arrow-icon{color:#333}.sof-select-field .relative-container .trigger .multi-chip-container{display:flex;gap:8px;width:100%;overflow:hidden}.sof-select-field .relative-container .options-list-wrap{position:absolute;z-index:10;top:32px;width:100%;padding-top:6px;border-radius:0 0 8px 8px;background:#fafafa}.sof-select-field .relative-container .options-list-wrap.white-bg{background:#fff}.sof-select-field .relative-container .options-list-wrap.has-error{border:2px solid var(--error-color-500-parts);border-top:none}.sof-select-field .relative-container .options-list-wrap:focus-visible{outline:none}.sof-select-field .relative-container .options-list-wrap .options-list{max-height:200px;overflow-y:auto;overflow-x:hidden;margin:0;padding:0;list-style:none;border-radius:0 0 8px 8px;box-shadow:0 10px 10px #0000001a;scrollbar-color:#E9E9E9 transparent}.sof-select-field .relative-container .options-list-wrap .options-list:focus-visible{outline:none}.sof-select-field .relative-container .options-list-wrap .options-list li{cursor:pointer;border-left:4px solid transparent;display:flex;align-items:center;gap:8px}.sof-select-field .relative-container .options-list-wrap .options-list li:hover,.sof-select-field .relative-container .options-list-wrap .options-list li.active{background-color:var(--neutral-color-A50-parts);border-color:var(--primary-color-500-parts)}.sof-select-field .relative-container .options-list-wrap .options-list li.selected{font-weight:500;border-color:var(--primary-color-500-parts)}.sof-select-field .relative-container .options-list-wrap .options-list li.disabled{pointer-events:none;color:#00000061}.sof-select-field .relative-container .options-list-wrap .options-list li svg{pointer-events:none;min-height:24px;min-width:24px;height:24px;width:24px;max-height:24px;max-width:24px}.sof-select-field .relative-container .options-list-wrap .options-list li .option-label{line-height:24px}.sof-select-field .help-message,.sof-select-field .error-message{display:inline-block;line-height:8px;margin-top:8px;animation:fadeIn .2s ease-in}.visible-chip{animation:fadeIn .2s ease-in}:host ::ng-deep .sof-chip span{cursor:pointer!important}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule$1 }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: SofChipComponent, selector: "sof-chip", inputs: ["label", "canRemove", "theme", "iconClass", "removeButtonId"], outputs: ["removeEvent"] }] }); }
|
|
7803
|
+
}
|
|
7804
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofSelectComponent, decorators: [{
|
|
7805
|
+
type: Component,
|
|
7806
|
+
args: [{ selector: 'sof-select', imports: [
|
|
7807
|
+
FormsModule$1,
|
|
7808
|
+
ReactiveFormsModule,
|
|
7809
|
+
TranslateModule,
|
|
7810
|
+
CommonModule,
|
|
7811
|
+
SofChipComponent
|
|
7812
|
+
], host: {
|
|
7813
|
+
'[class.full-width]': 'this.width === "full"'
|
|
7814
|
+
}, template: "<div \r\n class=\"sof-select-field\"\r\n [class.full-width]=\"width === 'full'\">\r\n @if ((selected()?.length || 0) > 0) {\r\n <!-- TODO: put back classes if floating label not working out: class=\"body3 fw-500 text-medium-emphasis\" -->\r\n <label \r\n [for]=\"id + '-select-trigger'\"\r\n [class.text-low-emphasis]=\"isDisabled\"\r\n [class.has-error]=\"errorMessage()?.length\">\r\n {{label | translate}}{{isRequired() ? '*':''}}\r\n </label>\r\n }\r\n <div class=\"relative-container\">\r\n <button \r\n [id]=\"id + '-select-trigger'\" \r\n [name]=\"controlName\"\r\n class=\"trigger p-v-8 p-h-16\" \r\n [class.has-error]=\"errorMessage()?.length\"\r\n [class.expanded]=\"expanded()\"\r\n [class.white-bg]=\"useWhiteBackground\"\r\n [disabled]=\"isDisabled\"\r\n type=\"button\" \r\n role=\"combobox\" \r\n [attr.aria-expanded]=\"expanded()\" \r\n [attr.aria-controls]=\"'listbox'\"\r\n aria-haspopup=\"listbox\" \r\n (click)=\"togglePanel()\">\r\n @if (multiple) {\r\n <div #multiChipContainer class=\"multi-chip-container\">\r\n @if (selected()?.length) {\r\n @if (isAllSelected()) {\r\n <sof-chip \r\n class=\"visible-chip\"\r\n theme=\"primary\"\r\n [label]=\"'armature.select.all'\"\r\n [removeButtonId]=\"`${id}-select-chip-remove-all`\"\r\n (removeEvent)=\"removeChip($event)\"\r\n />\r\n } @else {\r\n @for (label of visibleChips(); let i = $index; track i) {\r\n <sof-chip \r\n class=\"visible-chip\"\r\n theme=\"primary\"\r\n [label]=\"label\"\r\n [removeButtonId]=\"`${id}-select-chip-remove-${i}`\"\r\n (removeEvent)=\"removeChip($event)\"\r\n />\r\n }\r\n @if (hiddenChipsCount()) {\r\n <sof-chip \r\n theme=\"primary\"\r\n [label]=\"`+${hiddenChipsCount()}`\"\r\n [canRemove]=\"false\"\r\n m-l-auto\r\n />\r\n }\r\n }\r\n } @else {\r\n <span class=\"body1 text-high-emphasis\">\r\n {{selectedLabelsMultiple()[0] | translate}}{{(!selected()?.length && isRequired()) ? '*':''}}\r\n </span>\r\n }\r\n </div>\r\n } @else {\r\n <span class=\"body1 text-high-emphasis\">\r\n {{selectedLabelSingle() | translate}}{{(!selected()?.length && isRequired()) ? '*':''}}\r\n </span>\r\n }\r\n @if (errorMessage()?.length && !expanded()) {\r\n <i class=\"ph-bold ph-warning-circle error-icon color-error m-l-auto\"></i>\r\n }\r\n <i \r\n class=\"ph-bold ph-caret-{{expanded() ? 'up':'down'}} arrow-icon\" \r\n [class.m-l-auto]=\"!errorMessage()?.length || (errorMessage()?.length && expanded())\">\r\n </i>\r\n </button>\r\n @if (expanded()) {\r\n <div \r\n class=\"options-list-wrap\"\r\n [class.white-bg]=\"useWhiteBackground\"\r\n [class.has-error]=\"errorMessage()?.length\">\r\n <ul \r\n #listboxRef \r\n id=\"listbox\" \r\n class=\"options-list\"\r\n role=\"listbox\" \r\n tabindex=\"0\"\r\n [attr.aria-multiselectable]=\"multiple\">\r\n @if (multiple && showSelectAll) {\r\n <li \r\n [id]=\"id + '-list-option-all'\"\r\n role=\"option\" \r\n [attr.aria-selected]=\"isAllSelected()\" \r\n class=\"p-v-8 p-r-16 p-l-12\"\r\n [class.active]=\"activeIndex === 0\"\r\n [class.selected]=\"isAllSelected()\" \r\n (click)=\"onOptionClick('ALL')\">\r\n @if (isAllSelected()) {\r\n <ng-container *ngTemplateOutlet=\"checkedSvg\"></ng-container>\r\n } @else if (selected().length) {\r\n <ng-container *ngTemplateOutlet=\"selectAllIndeterminateSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"uncheckedSvg\"></ng-container>\r\n }\r\n <span class=\"option-label body1 text-high-emphasis\">\r\n {{'armature.select.all' | translate}}\r\n </span>\r\n </li>\r\n }\r\n @for (option of readOptions(); let i = $index; track i) {\r\n <li \r\n [id]=\"`${id}-list-option-${i}`\"\r\n role=\"option\" \r\n [attr.aria-selected]=\"isSelected(option.value)()\" \r\n class=\"p-v-8 p-r-16 p-l-12\"\r\n [class.active]=\"i + ((multiple && showSelectAll) ? 1 : 0) === activeIndex\"\r\n [class.selected]=\"isSelected(option.value)()\"\r\n [class.disabled]=\"option.isDisabled\"\r\n (click)=\"onOptionClick(option)\">\r\n @if (multiple) {\r\n @if (isSelected(option.value)()) {\r\n @if (option.isDisabled) {\r\n <ng-container *ngTemplateOutlet=\"checkedDisabledSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"checkedSvg\"></ng-container>\r\n }\r\n } @else {\r\n @if (option.isDisabled) {\r\n <ng-container *ngTemplateOutlet=\"uncheckedDisabledSvg\"></ng-container>\r\n } @else {\r\n <ng-container *ngTemplateOutlet=\"uncheckedSvg\"></ng-container>\r\n }\r\n }\r\n }\r\n <span class=\"option-label body1 text-high-emphasis text-overflow-ellipsis\">\r\n {{option.label | translate}}\r\n </span>\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n @if (errorMessage()?.length) {\r\n <span class=\"error-message color-error body3 fw-500\">\r\n {{errorMessage() | translate}}\r\n </span>\r\n } @else {\r\n @if (helpText?.length) {\r\n <span \r\n class=\"help-message body3 fw-500 text-medium-emphasis\"\r\n [class.text-low-emphasis]=\"isDisabled\">\r\n {{helpText | translate}}\r\n </span>\r\n }\r\n }\r\n</div>\r\n\r\n<ng-template #checkedSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_1718)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" fill=\"var(--primary-color-500-parts, #146EF6)\" stroke=\"var(--primary-color-500-parts, #146EF6)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.25 12.75L10.5 15L15.75 9.75\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_1718\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #checkedDisabledSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_5591)\">\r\n <path d=\"M19.6055 3C20.5594 3 21.333 3.77359 21.333 4.72754V19.2725C21.333 20.2264 20.5594 21 19.6055 21H5.06055C4.1066 21 3.33301 20.2264 3.33301 19.2725V4.72754C3.33301 3.77359 4.1066 3 5.06055 3H19.6055Z\" stroke=\"var(--neutral-color-300-parts, #B0B0B0)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.58301 12.75L10.833 15L16.083 9.75\" stroke=\"var(--neutral-color-300-parts, #B0B0B0)\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_5591\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.333008)\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #uncheckedSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19053_3289)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" stroke=\"var(--neutral-color-500-parts, #515151)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19053_3289\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #uncheckedDisabledSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19094_3763)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" stroke=\"#515151\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19094_3763\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n\r\n<ng-template #selectAllIndeterminateSvg>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\r\n <g clip-path=\"url(#clip0_19094_3054)\">\r\n <path d=\"M19.2725 3C20.2264 3 21 3.77359 21 4.72754V19.2725C21 20.2264 20.2264 21 19.2725 21H4.72754C3.77359 21 3 20.2264 3 19.2725V4.72754C3 3.77359 3.77359 3 4.72754 3H19.2725Z\" fill=\"#146EF6\" stroke=\"#146EF6\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M8.25 12H15.75\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_19094_3054\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\"/>\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n</ng-template>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes floatingLabel{0%{transform:translate(16px,32px);opacity:0}to{transform:translate(0);opacity:1}}:host{display:inline-block;width:300px}:host *{box-sizing:border-box}.sof-select-field{display:flex;flex-direction:column}.sof-select-field label{display:inline-block;line-height:8px;margin-bottom:8px;position:relative;z-index:1;font-size:12px;font-weight:500!important;color:#0009;transform:none;opacity:1;animation:floatingLabel .2s ease-in}.sof-select-field label.has-error{color:var(--error-color-500-parts)}.sof-select-field .relative-container{position:relative}.sof-select-field .relative-container .trigger{min-height:40px;height:40px;max-height:40px;display:flex;align-items:center;gap:8px;width:100%;border-radius:8px;background:#fafafa;border:2px solid transparent;cursor:pointer}.sof-select-field .relative-container .trigger.white-bg{background:#fff}.sof-select-field .relative-container .trigger.expanded{box-shadow:0 10px 10px #0000001a}.sof-select-field .relative-container .trigger.has-error{border-color:var(--error-color-500-parts)}.sof-select-field .relative-container .trigger:focus{outline:3px solid var(--primary-color-A500-parts);outline-offset:2px}.sof-select-field .relative-container .trigger:disabled{cursor:default}.sof-select-field .relative-container .trigger:disabled span.body1,.sof-select-field .relative-container .trigger:disabled .arrow-icon{color:#00000061}.sof-select-field .relative-container .trigger span.body1{line-height:24px}.sof-select-field .relative-container .trigger .arrow-icon,.sof-select-field .relative-container .trigger .error-icon{pointer-events:none;font-size:20px}.sof-select-field .relative-container .trigger .error-icon{animation:fadeIn .2s ease-in}.sof-select-field .relative-container .trigger .arrow-icon{color:#333}.sof-select-field .relative-container .trigger .multi-chip-container{display:flex;gap:8px;width:100%;overflow:hidden}.sof-select-field .relative-container .options-list-wrap{position:absolute;z-index:10;top:32px;width:100%;padding-top:6px;border-radius:0 0 8px 8px;background:#fafafa}.sof-select-field .relative-container .options-list-wrap.white-bg{background:#fff}.sof-select-field .relative-container .options-list-wrap.has-error{border:2px solid var(--error-color-500-parts);border-top:none}.sof-select-field .relative-container .options-list-wrap:focus-visible{outline:none}.sof-select-field .relative-container .options-list-wrap .options-list{max-height:200px;overflow-y:auto;overflow-x:hidden;margin:0;padding:0;list-style:none;border-radius:0 0 8px 8px;box-shadow:0 10px 10px #0000001a;scrollbar-color:#E9E9E9 transparent}.sof-select-field .relative-container .options-list-wrap .options-list:focus-visible{outline:none}.sof-select-field .relative-container .options-list-wrap .options-list li{cursor:pointer;border-left:4px solid transparent;display:flex;align-items:center;gap:8px}.sof-select-field .relative-container .options-list-wrap .options-list li:hover,.sof-select-field .relative-container .options-list-wrap .options-list li.active{background-color:var(--neutral-color-A50-parts);border-color:var(--primary-color-500-parts)}.sof-select-field .relative-container .options-list-wrap .options-list li.selected{font-weight:500;border-color:var(--primary-color-500-parts)}.sof-select-field .relative-container .options-list-wrap .options-list li.disabled{pointer-events:none;color:#00000061}.sof-select-field .relative-container .options-list-wrap .options-list li svg{pointer-events:none;min-height:24px;min-width:24px;height:24px;width:24px;max-height:24px;max-width:24px}.sof-select-field .relative-container .options-list-wrap .options-list li .option-label{line-height:24px}.sof-select-field .help-message,.sof-select-field .error-message{display:inline-block;line-height:8px;margin-top:8px;animation:fadeIn .2s ease-in}.visible-chip{animation:fadeIn .2s ease-in}:host ::ng-deep .sof-chip span{cursor:pointer!important}\n"] }]
|
|
7815
|
+
}], ctorParameters: () => [{ type: i1$7.NgControl, decorators: [{
|
|
7816
|
+
type: Self
|
|
7817
|
+
}, {
|
|
7818
|
+
type: Optional
|
|
7819
|
+
}, {
|
|
7820
|
+
type: Host
|
|
7821
|
+
}] }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i2$1.TranslateService }], propDecorators: { id: [{
|
|
7822
|
+
type: Input,
|
|
7823
|
+
args: [{ required: true }]
|
|
7824
|
+
}], options: [{
|
|
7825
|
+
type: Input,
|
|
7826
|
+
args: [{ required: true }]
|
|
7827
|
+
}], label: [{
|
|
7828
|
+
type: Input,
|
|
7829
|
+
args: [{ required: true }]
|
|
7830
|
+
}], helpText: [{
|
|
7831
|
+
type: Input
|
|
7832
|
+
}], multiple: [{
|
|
7833
|
+
type: Input
|
|
7834
|
+
}], showSelectAll: [{
|
|
7835
|
+
type: Input
|
|
7836
|
+
}], isDisabled: [{
|
|
7837
|
+
type: Input
|
|
7838
|
+
}], width: [{
|
|
7839
|
+
type: Input
|
|
7840
|
+
}], useWhiteBackground: [{
|
|
7841
|
+
type: Input
|
|
7842
|
+
}], errorMessages: [{
|
|
7843
|
+
type: Input
|
|
7844
|
+
}], selectionChange: [{
|
|
7845
|
+
type: Output
|
|
7846
|
+
}], listboxRef: [{
|
|
7847
|
+
type: ViewChild,
|
|
7848
|
+
args: ['listboxRef']
|
|
7849
|
+
}], multiChipContainer: [{
|
|
7850
|
+
type: ViewChild,
|
|
7851
|
+
args: ['multiChipContainer']
|
|
7852
|
+
}], onDocumentClick: [{
|
|
7853
|
+
type: HostListener,
|
|
7854
|
+
args: ['document:click', ['$event']]
|
|
7855
|
+
}], handleKeydown: [{
|
|
7856
|
+
type: HostListener,
|
|
7857
|
+
args: ['keydown', ['$event']]
|
|
7858
|
+
}] } });
|
|
7859
|
+
|
|
7322
7860
|
/** Public API surface for the forms */
|
|
7323
7861
|
|
|
7324
7862
|
/** The breadcrumbs hierarchy component */
|
|
@@ -7336,7 +7874,7 @@ class SofBreadcrumbsHierarchyComponent {
|
|
|
7336
7874
|
this.navAriaLabel = "'breadcrumbs'";
|
|
7337
7875
|
/** The breadcrumbs array signal */
|
|
7338
7876
|
this.breadcrumbs = signal([]);
|
|
7339
|
-
this.router.events.pipe(takeUntilDestroyed(), filter((event) => event instanceof NavigationEnd), distinctUntilChanged(), tap((_) => {
|
|
7877
|
+
this.router.events.pipe(takeUntilDestroyed(), filter((event) => event instanceof NavigationEnd), distinctUntilChanged(), tap$1((_) => {
|
|
7340
7878
|
this.buildBreadCrumbs(this.activatedRoute.root);
|
|
7341
7879
|
})).subscribe();
|
|
7342
7880
|
}
|
|
@@ -7683,7 +8221,7 @@ class SofBreadcrumbsHistoryComponent {
|
|
|
7683
8221
|
if (!this.breadcrumbs().length && !!this.activatedRoute.root.firstChild) {
|
|
7684
8222
|
this.buildBreadCrumbs(this.activatedRoute.root.firstChild);
|
|
7685
8223
|
}
|
|
7686
|
-
this.router.events.pipe(takeUntilDestroyed(), filter((event) => event instanceof NavigationEnd), distinctUntilChanged(), tap((_) => {
|
|
8224
|
+
this.router.events.pipe(takeUntilDestroyed(), filter((event) => event instanceof NavigationEnd), distinctUntilChanged(), tap$1((_) => {
|
|
7687
8225
|
this.buildBreadCrumbs(this.activatedRoute.firstChild);
|
|
7688
8226
|
})).subscribe();
|
|
7689
8227
|
}
|
|
@@ -8883,64 +9421,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
8883
9421
|
args: ['window:resize']
|
|
8884
9422
|
}] } });
|
|
8885
9423
|
|
|
8886
|
-
/**
|
|
8887
|
-
* The sof-chip component
|
|
8888
|
-
*/
|
|
8889
|
-
class SofChipComponent {
|
|
8890
|
-
constructor() {
|
|
8891
|
-
/**
|
|
8892
|
-
* Can the chip be removed
|
|
8893
|
-
* @optional
|
|
8894
|
-
* @default true
|
|
8895
|
-
*/
|
|
8896
|
-
this.canRemove = true;
|
|
8897
|
-
/**
|
|
8898
|
-
* Theme for the chip
|
|
8899
|
-
* @optional
|
|
8900
|
-
* @default 'neutral'
|
|
8901
|
-
*/
|
|
8902
|
-
this.theme = "neutral";
|
|
8903
|
-
/**
|
|
8904
|
-
* The id for the remove button
|
|
8905
|
-
* @optional needed if canRemove is true
|
|
8906
|
-
* @note Can simply be the index of the <Chip> array
|
|
8907
|
-
*/
|
|
8908
|
-
this.removeButtonId = "";
|
|
8909
|
-
/** Event to emit the chip's label for removal */
|
|
8910
|
-
this.removeEvent = new EventEmitter();
|
|
8911
|
-
}
|
|
8912
|
-
/** If canRemove is null|undefined onChanges, set to true */
|
|
8913
|
-
ngOnChanges(changes) {
|
|
8914
|
-
if (changes.canRemove) {
|
|
8915
|
-
const canRemove = changes.canRemove.currentValue ?? true;
|
|
8916
|
-
this.canRemove = canRemove;
|
|
8917
|
-
}
|
|
8918
|
-
}
|
|
8919
|
-
/** Emit the chip's label for removal */
|
|
8920
|
-
onRemove() {
|
|
8921
|
-
this.removeEvent.emit(this.label);
|
|
8922
|
-
}
|
|
8923
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8924
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: SofChipComponent, isStandalone: true, selector: "sof-chip", inputs: { label: "label", canRemove: "canRemove", theme: "theme", iconClass: "iconClass", removeButtonId: "removeButtonId" }, outputs: { removeEvent: "removeEvent" }, usesOnChanges: true, ngImport: i0, template: "<div \r\n class=\"sof-chip\" \r\n [class.no-remove]=\"!canRemove\"\r\n [attr.theme]=\"theme ?? 'neutral'\">\r\n @if (iconClass) {\r\n <i [class]=\"iconClass\" aria-hidden=\"true\"></i>\r\n }\r\n <span>{{ label | translate }}</span>\r\n @if (canRemove) {\r\n <button \r\n (click)=\"onRemove()\"\r\n [attr.aria-label]=\"'Remove ' + label\"\r\n [id]=\"'sof-chip-remove-btn-' + removeButtonId\">\r\n <i class=\"ph-fill ph-x-circle\" aria-hidden=\"true\"></i>\r\n </button>\r\n }\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.sof-chip{display:flex;align-items:center;height:24px;width:fit-content;border-radius:4px;padding-left:4px;background-color:var(--neutral-color-A100-parts)}.sof-chip:hover:not(.no-remove){background-color:var(--neutral-color-A200-parts)}.sof-chip *{box-sizing:border-box}.sof-chip.no-remove{padding-right:4px}.sof-chip[theme=neutral]{background-color:var(--neutral-color-A100-parts)}.sof-chip[theme=neutral]:hover:not(.no-remove){background-color:var(--neutral-color-A200-parts)}.sof-chip[theme=info]{background-color:var(--info-color-A100-parts)}.sof-chip[theme=info]:hover:not(.no-remove){background-color:var(--info-color-A200-parts)}.sof-chip[theme=primary]{background-color:var(--primary-color-A100-parts)}.sof-chip[theme=primary]:hover:not(.no-remove){background-color:var(--primary-color-A200-parts)}.sof-chip:focus-within{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px}.sof-chip i{margin-right:4px}.sof-chip span{text-transform:capitalize;font-weight:500}.sof-chip span,.sof-chip i{font-size:12px;color:#000000de;cursor:default}.sof-chip button{border:none;background:transparent;height:100%;padding:0;display:flex;align-items:center;justify-content:center;width:24px;cursor:pointer}.sof-chip button:focus{outline:none}.sof-chip button i{margin:0;font-size:16px;cursor:pointer;color:var(--neutral-color-500-parts)}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2$1.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8925
|
-
}
|
|
8926
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: SofChipComponent, decorators: [{
|
|
8927
|
-
type: Component,
|
|
8928
|
-
args: [{ selector: 'sof-chip', changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslateModule], template: "<div \r\n class=\"sof-chip\" \r\n [class.no-remove]=\"!canRemove\"\r\n [attr.theme]=\"theme ?? 'neutral'\">\r\n @if (iconClass) {\r\n <i [class]=\"iconClass\" aria-hidden=\"true\"></i>\r\n }\r\n <span>{{ label | translate }}</span>\r\n @if (canRemove) {\r\n <button \r\n (click)=\"onRemove()\"\r\n [attr.aria-label]=\"'Remove ' + label\"\r\n [id]=\"'sof-chip-remove-btn-' + removeButtonId\">\r\n <i class=\"ph-fill ph-x-circle\" aria-hidden=\"true\"></i>\r\n </button>\r\n }\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:root{--primary-color-50-parts: #edf4ff;--primary-color-100-parts: #b9d4fc;--primary-color-200-parts: #8ab7fb;--primary-color-300-parts: #5b9af9;--primary-color-400-parts: #3784f7;--primary-color-500-parts: #146ef6;--primary-color-600-parts: #1266f5;--primary-color-700-parts: #0e5bf3;--primary-color-800-parts: #0b51f2;--primary-color-900-parts: #063fef;--primary-color-A50-parts: rgba(20, 110, 246, .04);--primary-color-A100-parts: rgba(20, 110, 246, .08);--primary-color-A200-parts: rgba(20, 110, 246, .16);--primary-color-A300-parts: rgba(20, 110, 246, .24);--primary-color-A400-parts: rgba(20, 110, 246, .32);--primary-color-A500-parts: rgba(20, 110, 246, .4);--primary-color-A600-parts: rgba(20, 110, 246, .48);--primary-color-A700-parts: rgba(20, 110, 246, .56);--primary-color-A800-parts: rgba(20, 110, 246, .64);--primary-color-A900-parts: rgba(20, 110, 246, .72);--primary-color-contrast-50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-500-parts: rgba(255, 255, 255, 1);--primary-color-contrast-600-parts: rgba(255, 255, 255, 1);--primary-color-contrast-700-parts: rgba(255, 255, 255, 1);--primary-color-contrast-800-parts: rgba(255, 255, 255, 1);--primary-color-contrast-900-parts: rgba(255, 255, 255, 1);--primary-color-contrast-A50-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A100-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A200-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A300-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A400-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A500-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A600-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A700-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A800-parts: rgba(0, 0, 0, .87);--primary-color-contrast-A900-parts: rgba(0, 0, 0, .87);--primary-color-50-parts-rgb: 237, 244, 255;--primary-color-100-parts-rgb: 185, 212, 252;--primary-color-200-parts-rgb: 138, 183, 251;--primary-color-300-parts-rgb: 91, 154, 249;--primary-color-400-parts-rgb: 55, 132, 247;--primary-color-500-parts-rgb: 20, 110, 246;--primary-color-600-parts-rgb: 18, 102, 245;--primary-color-700-parts-rgb: 14, 91, 243;--primary-color-800-parts-rgb: 11, 81, 242;--primary-color-900-parts-rgb: 6, 63, 239;--accent-color-50-parts: #e0f2f1;--accent-color-100-parts: #b2dfdb;--accent-color-200-parts: #80cbc4;--accent-color-300-parts: #4db6ac;--accent-color-400-parts: #26a69a;--accent-color-500-parts: #009688;--accent-color-600-parts: #00897b;--accent-color-700-parts: #00796b;--accent-color-800-parts: #00695c;--accent-color-900-parts: #004d40;--accent-color-A50-parts: rgba(0, 150, 136, .04);--accent-color-A100-parts: rgba(0, 150, 136, .08);--accent-color-A200-parts: rgba(0, 150, 136, .16);--accent-color-A300-parts: rgba(0, 150, 136, .24);--accent-color-A400-parts: rgba(0, 150, 136, .32);--accent-color-A500-parts: rgba(0, 150, 136, .4);--accent-color-A600-parts: rgba(0, 150, 136, .48);--accent-color-A700-parts: rgba(0, 150, 136, .56);--accent-color-A800-parts: rgba(0, 150, 136, .64);--accent-color-A900-parts: rgba(0, 150, 136, .72);--accent-color-contrast-50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-500-parts: rgba(255, 255, 255, 1);--accent-color-contrast-600-parts: rgba(255, 255, 255, 1);--accent-color-contrast-700-parts: rgba(255, 255, 255, 1);--accent-color-contrast-800-parts: rgba(255, 255, 255, 1);--accent-color-contrast-900-parts: rgba(255, 255, 255, 1);--accent-color-contrast-A50-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A100-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A200-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A300-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A400-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A500-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A600-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A700-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A800-parts: rgba(0, 0, 0, .87);--accent-color-contrast-A900-parts: rgba(0, 0, 0, .87);--accent-color-50-parts-rgb: 224, 242, 241;--accent-color-100-parts-rgb: 178, 223, 219;--accent-color-200-parts-rgb: 128, 203, 196;--accent-color-300-parts-rgb: 77, 182, 172;--accent-color-400-parts-rgb: 38, 166, 154;--accent-color-500-parts-rgb: 0, 150, 136;--accent-color-600-parts-rgb: 0, 137, 123;--accent-color-700-parts-rgb: 0, 121, 107;--accent-color-800-parts-rgb: 0, 105, 92;--accent-color-900-parts-rgb: 0, 77, 64;--warn-color-50-parts: #fceee3;--warn-color-100-parts: #f8d4b9;--warn-color-200-parts: #f4b78b;--warn-color-300-parts: #ef9a5d;--warn-color-400-parts: #eb843a;--warn-color-500-parts: #e86e17;--warn-color-600-parts: #e56614;--warn-color-700-parts: #e25b11;--warn-color-800-parts: #de510d;--warn-color-900-parts: #d83f07;--warn-color-A50-parts: rgba(232, 110, 23, .04);--warn-color-A100-parts: rgba(232, 110, 23, .08);--warn-color-A200-parts: rgba(232, 110, 23, .16);--warn-color-A300-parts: rgba(232, 110, 23, .24);--warn-color-A400-parts: rgba(232, 110, 23, .32);--warn-color-A500-parts: rgba(232, 110, 23, .4);--warn-color-A600-parts: rgba(232, 110, 23, .48);--warn-color-A700-parts: rgba(232, 110, 23, .56);--warn-color-A800-parts: rgba(232, 110, 23, .64);--warn-color-A900-parts: rgba(232, 110, 23, .72);--warn-color-contrast-50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-900-parts: rgba(255, 255, 255, 1);--warn-color-contrast-A50-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A100-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A200-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A300-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A400-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A500-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A600-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A700-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A800-parts: rgba(0, 0, 0, .87);--warn-color-contrast-A900-parts: rgba(0, 0, 0, .87);--warn-color-50-parts-rgb: 252, 238, 227;--warn-color-100-parts-rgb: 248, 212, 185;--warn-color-200-parts-rgb: 244, 183, 139;--warn-color-300-parts-rgb: 239, 154, 93;--warn-color-400-parts-rgb: 235, 132, 58;--warn-color-500-parts-rgb: 232, 110, 23;--warn-color-600-parts-rgb: 229, 102, 20;--warn-color-700-parts-rgb: 226, 91, 17;--warn-color-800-parts-rgb: 222, 81, 13;--warn-color-900-parts-rgb: 216, 63, 7;--info-color-50-parts: #edf4ff;--info-color-100-parts: #b9d4fc;--info-color-200-parts: #8ab7fb;--info-color-300-parts: #5b9af9;--info-color-400-parts: #3784f7;--info-color-500-parts: #146ef6;--info-color-600-parts: #1266f5;--info-color-700-parts: #0e5bf3;--info-color-800-parts: #0b51f2;--info-color-900-parts: #063fef;--info-color-A50-parts: rgba(20, 110, 246, .04);--info-color-A100-parts: rgba(20, 110, 246, .08);--info-color-A200-parts: rgba(20, 110, 246, .16);--info-color-A300-parts: rgba(20, 110, 246, .24);--info-color-A400-parts: rgba(20, 110, 246, .32);--info-color-A500-parts: rgba(20, 110, 246, .4);--info-color-A600-parts: rgba(20, 110, 246, .48);--info-color-A700-parts: rgba(20, 110, 246, .56);--info-color-A800-parts: rgba(20, 110, 246, .64);--info-color-A900-parts: rgba(20, 110, 246, .72);--info-color-contrast-50-parts: rgba(0, 0, 0, .87);--info-color-contrast-100-parts: rgba(0, 0, 0, .87);--info-color-contrast-200-parts: rgba(0, 0, 0, .87);--info-color-contrast-300-parts: rgba(0, 0, 0, .87);--info-color-contrast-400-parts: rgba(0, 0, 0, .87);--info-color-contrast-500-parts: rgba(255, 255, 255, 1);--info-color-contrast-600-parts: rgba(255, 255, 255, 1);--info-color-contrast-700-parts: rgba(255, 255, 255, 1);--info-color-contrast-800-parts: rgba(255, 255, 255, 1);--info-color-contrast-900-parts: rgba(255, 255, 255, 1);--info-color-contrast-A50-parts: rgba(0, 0, 0, .87);--info-color-contrast-A100-parts: rgba(0, 0, 0, .87);--info-color-contrast-A200-parts: rgba(0, 0, 0, .87);--info-color-contrast-A300-parts: rgba(0, 0, 0, .87);--info-color-contrast-A400-parts: rgba(0, 0, 0, .87);--info-color-contrast-A500-parts: rgba(0, 0, 0, .87);--info-color-contrast-A600-parts: rgba(0, 0, 0, .87);--info-color-contrast-A700-parts: rgba(0, 0, 0, .87);--info-color-contrast-A800-parts: rgba(0, 0, 0, .87);--info-color-contrast-A900-parts: rgba(0, 0, 0, .87);--info-color-50-parts-rgb: 237, 244, 255;--info-color-100-parts-rgb: 185, 212, 252;--info-color-200-parts-rgb: 138, 183, 251;--info-color-300-parts-rgb: 91, 154, 249;--info-color-400-parts-rgb: 55, 132, 247;--info-color-500-parts-rgb: 20, 110, 246;--info-color-600-parts-rgb: 18, 102, 245;--info-color-700-parts-rgb: 14, 91, 243;--info-color-800-parts-rgb: 11, 81, 242;--info-color-900-parts-rgb: 6, 63, 239;--success-color-50-parts: #e7f0e6;--success-color-100-parts: #c4dac1;--success-color-200-parts: #9cc198;--success-color-300-parts: #74a86e;--success-color-400-parts: #57954f;--success-color-500-parts: #398230;--success-color-600-parts: #337a2b;--success-color-700-parts: #2c6f24;--success-color-800-parts: #24651e;--success-color-900-parts: #175213;--success-color-A50-parts: rgba(57, 130, 48, .04);--success-color-A100-parts: rgba(57, 130, 48, .08);--success-color-A200-parts: rgba(57, 130, 48, .16);--success-color-A300-parts: rgba(57, 130, 48, .24);--success-color-A400-parts: rgba(57, 130, 48, .32);--success-color-A500-parts: rgba(57, 130, 48, .4);--success-color-A600-parts: rgba(57, 130, 48, .48);--success-color-A700-parts: rgba(57, 130, 48, .56);--success-color-A800-parts: rgba(57, 130, 48, .64);--success-color-A900-parts: rgba(57, 130, 48, .72);--success-color-contrast-50-parts: rgba(0, 0, 0, .87);--success-color-contrast-100-parts: rgba(0, 0, 0, .87);--success-color-contrast-200-parts: rgba(0, 0, 0, .87);--success-color-contrast-300-parts: rgba(0, 0, 0, .87);--success-color-contrast-400-parts: rgba(0, 0, 0, .87);--success-color-contrast-500-parts: rgba(255, 255, 255, 1);--success-color-contrast-600-parts: rgba(255, 255, 255, 1);--success-color-contrast-700-parts: rgba(255, 255, 255, 1);--success-color-contrast-800-parts: rgba(255, 255, 255, 1);--success-color-contrast-900-parts: rgba(255, 255, 255, 1);--success-color-contrast-A50-parts: rgba(0, 0, 0, .87);--success-color-contrast-A100-parts: rgba(0, 0, 0, .87);--success-color-contrast-A200-parts: rgba(0, 0, 0, .87);--success-color-contrast-A300-parts: rgba(0, 0, 0, .87);--success-color-contrast-A400-parts: rgba(0, 0, 0, .87);--success-color-contrast-A500-parts: rgba(0, 0, 0, .87);--success-color-contrast-A600-parts: rgba(0, 0, 0, .87);--success-color-contrast-A700-parts: rgba(0, 0, 0, .87);--success-color-contrast-A800-parts: rgba(0, 0, 0, .87);--success-color-contrast-A900-parts: rgba(0, 0, 0, .87);--success-color-50-parts-rgb: 231, 240, 230;--success-color-100-parts-rgb: 196, 218, 193;--success-color-200-parts-rgb: 156, 193, 152;--success-color-300-parts-rgb: 116, 168, 110;--success-color-400-parts-rgb: 87, 149, 79;--success-color-500-parts-rgb: 57, 130, 48;--success-color-600-parts-rgb: 51, 122, 43;--success-color-700-parts-rgb: 44, 111, 36;--success-color-800-parts-rgb: 36, 101, 30;--success-color-900-parts-rgb: 23, 82, 19;--error-color-50-parts: #fae5e4;--error-color-100-parts: #f3bdba;--error-color-200-parts: #eb928d;--error-color-300-parts: #e3665f;--error-color-400-parts: #dd453c;--error-color-500-parts: #d7241a;--error-color-600-parts: #d32017;--error-color-700-parts: #cd1b13;--error-color-800-parts: #c7160f;--error-color-900-parts: #be0d08;--error-color-A50-parts: rgba(215, 36, 26, .04);--error-color-A100-parts: rgba(215, 36, 26, .08);--error-color-A200-parts: rgba(215, 36, 26, .16);--error-color-A300-parts: rgba(215, 36, 26, .24);--error-color-A400-parts: rgba(215, 36, 26, .32);--error-color-A500-parts: rgba(215, 36, 26, .4);--error-color-A600-parts: rgba(215, 36, 26, .48);--error-color-A700-parts: rgba(215, 36, 26, .56);--error-color-A800-parts: rgba(215, 36, 26, .64);--error-color-A900-parts: rgba(215, 36, 26, .72);--error-color-contrast-50-parts: rgba(0, 0, 0, .87);--error-color-contrast-100-parts: rgba(0, 0, 0, .87);--error-color-contrast-200-parts: rgba(0, 0, 0, .87);--error-color-contrast-300-parts: rgba(0, 0, 0, .87);--error-color-contrast-400-parts: rgba(0, 0, 0, .87);--error-color-contrast-500-parts: rgba(255, 255, 255, 1);--error-color-contrast-600-parts: rgba(255, 255, 255, 1);--error-color-contrast-700-parts: rgba(255, 255, 255, 1);--error-color-contrast-800-parts: rgba(255, 255, 255, 1);--error-color-contrast-900-parts: rgba(255, 255, 255, 1);--error-color-contrast-A50-parts: rgba(0, 0, 0, .87);--error-color-contrast-A100-parts: rgba(0, 0, 0, .87);--error-color-contrast-A200-parts: rgba(0, 0, 0, .87);--error-color-contrast-A300-parts: rgba(0, 0, 0, .87);--error-color-contrast-A400-parts: rgba(0, 0, 0, .87);--error-color-contrast-A500-parts: rgba(0, 0, 0, .87);--error-color-contrast-A600-parts: rgba(0, 0, 0, .87);--error-color-contrast-A700-parts: rgba(0, 0, 0, .87);--error-color-contrast-A800-parts: rgba(0, 0, 0, .87);--error-color-contrast-A900-parts: rgba(0, 0, 0, .87);--error-color-50-parts-rgb: 250, 229, 228;--error-color-100-parts-rgb: 243, 189, 186;--error-color-200-parts-rgb: 235, 146, 141;--error-color-300-parts-rgb: 227, 102, 95;--error-color-400-parts-rgb: 221, 69, 60;--error-color-500-parts-rgb: 215, 36, 26;--error-color-600-parts-rgb: 211, 32, 23;--error-color-700-parts-rgb: 205, 27, 19;--error-color-800-parts-rgb: 199, 22, 15;--error-color-900-parts-rgb: 190, 13, 8;--neutral-color-50-parts: #e9e9e9;--neutral-color-100-parts: #dddddd;--neutral-color-200-parts: #cccccc;--neutral-color-300-parts: #b0b0b0;--neutral-color-400-parts: #909090;--neutral-color-500-parts: #515151;--neutral-color-600-parts: #424242;--neutral-color-700-parts: #333333;--neutral-color-800-parts: #212121;--neutral-color-900-parts: #141414;--neutral-color-A50-parts: rgba(81, 81, 81, .04);--neutral-color-A100-parts: rgba(81, 81, 81, .08);--neutral-color-A200-parts: rgba(81, 81, 81, .16);--neutral-color-A300-parts: rgba(81, 81, 81, .24);--neutral-color-A400-parts: rgba(81, 81, 81, .32);--neutral-color-A500-parts: rgba(81, 81, 81, .4);--neutral-color-A600-parts: rgba(81, 81, 81, .48);--neutral-color-A700-parts: rgba(81, 81, 81, .56);--neutral-color-A800-parts: rgba(81, 81, 81, .64);--neutral-color-A900-parts: rgba(81, 81, 81, .72);--neutral-color-contrast-50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-400-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-500-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-600-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-700-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-800-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-900-parts: rgba(255, 255, 255, 1);--neutral-color-contrast-A50-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A100-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A200-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A300-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A400-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A500-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A600-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A700-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A800-parts: rgba(0, 0, 0, .87);--neutral-color-contrast-A900-parts: rgba(0, 0, 0, .87);--neutral-color-50-parts-rgb: 233, 233, 233;--neutral-color-100-parts-rgb: 221, 221, 221;--neutral-color-200-parts-rgb: 204, 204, 204;--neutral-color-300-parts-rgb: 176, 176, 176;--neutral-color-400-parts-rgb: 144, 144, 144;--neutral-color-500-parts-rgb: 81, 81, 81;--neutral-color-600-parts-rgb: 66, 66, 66;--neutral-color-700-parts-rgb: 51, 51, 51;--neutral-color-800-parts-rgb: 33, 33, 33;--neutral-color-900-parts-rgb: 20, 20, 20;--help-color-50-parts: #EFE3FE;--help-color-100-parts: #E0CAFD;--help-color-200-parts: #C194FB;--help-color-300-parts: #994FF8;--help-color-400-parts: #8831F7;--help-color-500-parts: #7714F6;--help-color-600-parts: #6809E3;--help-color-700-parts: #5B08C5;--help-color-800-parts: #4D06A8;--help-color-900-parts: #40058A;--help-color-A50-parts: rgba(119, 20, 246, .04);--help-color-A100-parts: rgba(119, 20, 246, .08);--help-color-A200-parts: rgba(119, 20, 246, .16);--help-color-A300-parts: rgba(119, 20, 246, .24);--help-color-A400-parts: rgba(119, 20, 246, .32);--help-color-A500-parts: rgba(119, 20, 246, .4);--help-color-A600-parts: rgba(119, 20, 246, .48);--help-color-A700-parts: rgba(119, 20, 246, .56);--help-color-A800-parts: rgba(119, 20, 246, .64);--help-color-A900-parts: rgba(119, 20, 246, .72);--help-color-contrast-50-parts: rgba(0, 0, 0, .87);--help-color-contrast-100-parts: rgba(0, 0, 0, .87);--help-color-contrast-200-parts: rgba(0, 0, 0, .87);--help-color-contrast-300-parts: rgba(255, 255, 255, 1);--help-color-contrast-400-parts: rgba(255, 255, 255, 1);--help-color-contrast-500-parts: rgba(255, 255, 255, 1);--help-color-contrast-600-parts: rgba(255, 255, 255, 1);--help-color-contrast-700-parts: rgba(255, 255, 255, 1);--help-color-contrast-800-parts: rgba(255, 255, 255, 1);--help-color-contrast-900-parts: rgba(255, 255, 255, 1);--help-color-contrast-A50-parts: rgba(0, 0, 0, .87);--help-color-contrast-A100-parts: rgba(0, 0, 0, .87);--help-color-contrast-A200-parts: rgba(0, 0, 0, .87);--help-color-contrast-A300-parts: rgba(0, 0, 0, .87);--help-color-contrast-A400-parts: rgba(0, 0, 0, .87);--help-color-contrast-A500-parts: rgba(0, 0, 0, .87);--help-color-contrast-A600-parts: rgba(0, 0, 0, .87);--help-color-contrast-A700-parts: rgba(0, 0, 0, .87);--help-color-contrast-A800-parts: rgba(0, 0, 0, .87);--help-color-contrast-A900-parts: rgba(0, 0, 0, .87);--help-color-50-parts-rgb: 239, 227, 254;--help-color-100-parts-rgb: 224, 202, 253;--help-color-200-parts-rgb: 193, 148, 251;--help-color-300-parts-rgb: 153, 79, 248;--help-color-400-parts-rgb: 136, 49, 247;--help-color-500-parts-rgb: 119, 20, 246;--help-color-600-parts-rgb: 104, 9, 227;--help-color-700-parts-rgb: 91, 8, 197;--help-color-800-parts-rgb: 77, 6, 168;--help-color-900-parts-rgb: 64, 5, 138}.sof-chip{display:flex;align-items:center;height:24px;width:fit-content;border-radius:4px;padding-left:4px;background-color:var(--neutral-color-A100-parts)}.sof-chip:hover:not(.no-remove){background-color:var(--neutral-color-A200-parts)}.sof-chip *{box-sizing:border-box}.sof-chip.no-remove{padding-right:4px}.sof-chip[theme=neutral]{background-color:var(--neutral-color-A100-parts)}.sof-chip[theme=neutral]:hover:not(.no-remove){background-color:var(--neutral-color-A200-parts)}.sof-chip[theme=info]{background-color:var(--info-color-A100-parts)}.sof-chip[theme=info]:hover:not(.no-remove){background-color:var(--info-color-A200-parts)}.sof-chip[theme=primary]{background-color:var(--primary-color-A100-parts)}.sof-chip[theme=primary]:hover:not(.no-remove){background-color:var(--primary-color-A200-parts)}.sof-chip:focus-within{outline:3px solid var(--primary-color-A500-parts)!important;outline-offset:2px}.sof-chip i{margin-right:4px}.sof-chip span{text-transform:capitalize;font-weight:500}.sof-chip span,.sof-chip i{font-size:12px;color:#000000de;cursor:default}.sof-chip button{border:none;background:transparent;height:100%;padding:0;display:flex;align-items:center;justify-content:center;width:24px;cursor:pointer}.sof-chip button:focus{outline:none}.sof-chip button i{margin:0;font-size:16px;cursor:pointer;color:var(--neutral-color-500-parts)}\n"] }]
|
|
8929
|
-
}], propDecorators: { label: [{
|
|
8930
|
-
type: Input,
|
|
8931
|
-
args: [{ required: true }]
|
|
8932
|
-
}], canRemove: [{
|
|
8933
|
-
type: Input
|
|
8934
|
-
}], theme: [{
|
|
8935
|
-
type: Input
|
|
8936
|
-
}], iconClass: [{
|
|
8937
|
-
type: Input
|
|
8938
|
-
}], removeButtonId: [{
|
|
8939
|
-
type: Input
|
|
8940
|
-
}], removeEvent: [{
|
|
8941
|
-
type: Output
|
|
8942
|
-
}] } });
|
|
8943
|
-
|
|
8944
9424
|
/** SSN Pipe */
|
|
8945
9425
|
class SofSsnPipe {
|
|
8946
9426
|
/**
|
|
@@ -9780,7 +10260,7 @@ class TextOverflowEllipsisTooltipDirective {
|
|
|
9780
10260
|
this.tooltip.show();
|
|
9781
10261
|
}
|
|
9782
10262
|
}
|
|
9783
|
-
/**
|
|
10263
|
+
/** Hide the tooltip on mouseleave */
|
|
9784
10264
|
onMouseLeave() {
|
|
9785
10265
|
this.tooltip.hide();
|
|
9786
10266
|
}
|
|
@@ -10091,5 +10571,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
10091
10571
|
* Generated bundle index. Do not edit.
|
|
10092
10572
|
*/
|
|
10093
10573
|
|
|
10094
|
-
export { ALERT_BANNER_CONFIG, AbstractSamlEntryService, AbstractSamlService, AbstractStartupService, AccessTokenClaims, AlertBannerComponent, AlertBannerModule, AlertBannerService, AlertService, AlphaNumericDirective, AppTemplateComponent, ApplicationUserModel, ArRoleNavService, ArmError, ArmatureFooterComponent, ArmatureFooterModule, ArmatureHeaderComponent, ArmatureHeaderModule, ArmatureModule, ArmatureNavigationComponent, ArmatureResizePanelsModule, Attribute, AuthorizationService, B2bNavComponent, BannerService, BannerType, BaseComponentModule, BaseConfigService, CacheExpirationType, ComponentSavePrintComponent, ComponentSavePrintService, Configuration, ConfirmAddressData, CoverageDetail, CssOverride, CssOverrideDirective, CustomAuthConfigService, DISABLE_ACCESS_FOR_NO_PAGES_ROLE, DISTRIBUTED_CACHE_BASE_PATH, DataStoreConfig, DateInputFilterDirective, DecodedAccessToken, DefaultConfigService, DialogResult, DistributedCacheModule, ENTITY_SESSION_STORAGE_PREFIX, ENTITY_SS_CONFIG_PREFIX, EntityBaseComponent, EntityHelperService, EntityInjectWrapperComponent, FAQ, FAQConfig, FEDERATED_MODULE_ID, FaqComponent, FaqModule, FeedbackToolComponent, FeedbackToolModule, FooterConfig, FormsModule, HYBRID_SAML_OAUTH_CONFIG, HeaderAuthSettings, HybridSamlOAuthConfig, HybridSamlOauthService, InputTrimDirective, LINE_OF_COVERAGE, LettersCharactersDirective, LettersOnlyDirective, MfeModule, MobileHeaderMenuComponent, ModalData, NavigationModule, NumbersOnlyDirective, Oauth2RoleService, OauthModule, PhoneFormatPipe, PolicyPerson, RBAC_CONFIG, RbacActionDirective, RbacConfig, RbacModule, RedirectSamlComponent, RedirectSamlRequest, RedirectSessionConfigs, ResizePanelsComponent, RoleAccess, RoleNavService, RoutePath, RumConfig, RumModule, RumService, SESSION_CONFIG, SOF_BLANK_LANGUAGE_OVERRIDE, SOF_DATE_PIPE_FORMATS, STATUS, SamlModule, SamlService, ServerCacheService, SessionConfig, SessionService, SharedErrorService, SiteMapComponent, SiteMapDirection, SnackbarService, SofAddressComponent, SofAlertComponent, SofArComponentSavePrintModule, SofBadgeComponent, SofBannerComponent, SofBlankPipe, SofBottomSheetComponent, SofBreadcrumbsHierarchyComponent, SofBreadcrumbsHistoryComponent, SofButtonToggleGroupComponent, SofCalloutComponent, SofChipComponent, SofCompareAddressPipe, SofConfirmAddressComponent, SofConfirmAddressCountyChangeComponent, SofContextComponent, SofDatePipe, SofDropdownButtonComponent, SofErrorCommonComponent, SofHandleComponent, SofHeaderComponent, SofImageCheckboxComponent, SofInputStepperComponent, SofModalComponent, SofNavPanelComponent, SofPipeModule, SofProgressBarComponent, SofRadioCardComponent, SofSegmentedControlComponent, SofSimpleAlertComponent, SofSnackbarComponent, SofSsnPipe, SofStarRatingComponent, SofSubNavigationComponent, SofTabsComponent, SofUtilityButtonComponent, SoftheonErrorHandlerService, SsoGatewayEntryService, SsoGatewayModel, States, TextOverflowEllipsisTooltipDirective, ThemeModule, ThemeService, TypedSession, USER_ENTITY_SERVICE_CONFIG, UserEntityService, UserEntityServiceConfig, ValidationKeys, WINDOW, httpVerb, initializerFactory, keyPathPrefix, languageStorageKey, newGuid, pascalToCamel, preSignInRouteStorageKey, removeMenuRole, routeToPreLoginRoute, sessionBasePathFactory, userInitialsPipe };
|
|
10574
|
+
export { ALERT_BANNER_CONFIG, AbstractSamlEntryService, AbstractSamlService, AbstractStartupService, AccessTokenClaims, AlertBannerComponent, AlertBannerModule, AlertBannerService, AlertService, AlphaNumericDirective, AppTemplateComponent, ApplicationUserModel, ArRoleNavService, ArmError, ArmatureFooterComponent, ArmatureFooterModule, ArmatureHeaderComponent, ArmatureHeaderModule, ArmatureModule, ArmatureNavigationComponent, ArmatureResizePanelsModule, Attribute, AuthorizationService, B2bNavComponent, BannerService, BannerType, BaseComponentModule, BaseConfigService, CacheExpirationType, ComponentSavePrintComponent, ComponentSavePrintService, Configuration, ConfirmAddressData, CoverageDetail, CssOverride, CssOverrideDirective, CustomAuthConfigService, DISABLE_ACCESS_FOR_NO_PAGES_ROLE, DISTRIBUTED_CACHE_BASE_PATH, DataStoreConfig, DateInputFilterDirective, DecodedAccessToken, DefaultConfigService, DialogResult, DistributedCacheModule, ENTITY_SESSION_STORAGE_PREFIX, ENTITY_SS_CONFIG_PREFIX, EntityBaseComponent, EntityHelperService, EntityInjectWrapperComponent, FAQ, FAQConfig, FEDERATED_MODULE_ID, FaqComponent, FaqModule, FeedbackToolComponent, FeedbackToolModule, FooterConfig, FormsModule, HYBRID_SAML_OAUTH_CONFIG, HeaderAuthSettings, HybridSamlOAuthConfig, HybridSamlOauthService, InputTrimDirective, LINE_OF_COVERAGE, LettersCharactersDirective, LettersOnlyDirective, MfeModule, MobileHeaderMenuComponent, ModalData, NavigationModule, NumbersOnlyDirective, Oauth2RoleService, OauthModule, PhoneFormatPipe, PolicyPerson, RBAC_CONFIG, RbacActionDirective, RbacConfig, RbacModule, RedirectSamlComponent, RedirectSamlRequest, RedirectSessionConfigs, ResizePanelsComponent, RoleAccess, RoleNavService, RoutePath, RumConfig, RumModule, RumService, SESSION_CONFIG, SOF_BLANK_LANGUAGE_OVERRIDE, SOF_DATE_PIPE_FORMATS, STATUS, SamlModule, SamlService, ServerCacheService, SessionConfig, SessionService, SharedErrorService, SiteMapComponent, SiteMapDirection, SnackbarService, SofAddressComponent, SofAlertComponent, SofArComponentSavePrintModule, SofBadgeComponent, SofBannerComponent, SofBlankPipe, SofBottomSheetComponent, SofBreadcrumbsHierarchyComponent, SofBreadcrumbsHistoryComponent, SofButtonToggleGroupComponent, SofCalloutComponent, SofChipComponent, SofCompareAddressPipe, SofConfirmAddressComponent, SofConfirmAddressCountyChangeComponent, SofContextComponent, SofDatePipe, SofDropdownButtonComponent, SofErrorCommonComponent, SofHandleComponent, SofHeaderComponent, SofImageCheckboxComponent, SofInputStepperComponent, SofModalComponent, SofNavPanelComponent, SofPipeModule, SofProgressBarComponent, SofRadioCardComponent, SofSegmentedControlComponent, SofSelectComponent, SofSimpleAlertComponent, SofSnackbarComponent, SofSsnPipe, SofStarRatingComponent, SofSubNavigationComponent, SofTabsComponent, SofUtilityButtonComponent, SoftheonErrorHandlerService, SsoGatewayEntryService, SsoGatewayModel, States, TextOverflowEllipsisTooltipDirective, ThemeModule, ThemeService, TypedSession, USER_ENTITY_SERVICE_CONFIG, UserEntityService, UserEntityServiceConfig, ValidationKeys, WINDOW, httpVerb, initializerFactory, keyPathPrefix, languageStorageKey, newGuid, pascalToCamel, preSignInRouteStorageKey, removeMenuRole, routeToPreLoginRoute, sessionBasePathFactory, userInitialsPipe };
|
|
10095
10575
|
//# sourceMappingURL=softheon-armature.mjs.map
|