tango-app-ui-auth 3.1.5-dev → 3.1.7-dev

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.
@@ -1 +1 @@
1
- {"version":3,"file":"tango-app-ui-auth.mjs","sources":["../../../projects/tango-auth/src/lib/components/tango-auth/tango-auth.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth/tango-auth.component.html","../../../projects/tango-auth/src/lib/services/auth.service.ts","../../../projects/tango-auth/src/lib/components/tango-auth-login/tango-auth-login.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-login/tango-auth-login.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/services/conversion.service.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step1/step1.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step1/step1.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/modal-content/modal-content.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/modal-content/modal-content.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step2/step2.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step2/step2.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step3/step3.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step3/step3.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/vertical/vertical.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/vertical/vertical.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/tango-auth-signup.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/tango-auth-signup.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component.html","../../../projects/tango-auth/src/lib/tango-auth-routing.module.ts","../../../projects/tango-auth/src/lib/tango-auth.module.ts","../../../projects/tango-auth/src/lib/guards/auth.guard.ts","../../../projects/tango-auth/src/public-api.ts","../../../projects/tango-auth/src/tango-app-ui-auth.ts"],"sourcesContent":["import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-tango-auth',\r\n templateUrl: './tango-auth.component.html',\r\n styleUrl: './tango-auth.component.scss'\r\n})\r\nexport class TangoAuthComponent {\r\n\r\n}\r\n","<router-outlet></router-outlet>\r\n","import { HttpClient } from \"@angular/common/http\";\r\nimport { Injectable } from \"@angular/core\";\r\nimport { Router } from \"@angular/router\";\r\nimport {\r\n BehaviorSubject,\r\n Observable,\r\n catchError,\r\n map,\r\n of,\r\n throwError,\r\n} from \"rxjs\";\r\nimport { GlobalStateService } from \"tango-app-ui-global\";\r\n\r\n@Injectable({\r\n providedIn: \"root\",\r\n})\r\nexport class AuthService {\r\n aboutFormData = new BehaviorSubject<any>(null);\r\n pricingFormData = new BehaviorSubject<any>(null);\r\n currentUserSubject = new BehaviorSubject<any>(null);\r\n leadApiUrl: string = \"\";\r\n middlewareApiUrl: string = \"\";\r\n userApiUrl: string = \"\";\r\n authlocalStorageToken: string;\r\n paymentSubscriptionApiUrl: string;\r\n get currentUserValue(): any {\r\n return this.currentUserSubject.value;\r\n }\r\n constructor(\r\n private router: Router,\r\n private http: HttpClient,\r\n private gs: GlobalStateService\r\n ) {\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.leadApiUrl = env.leadApiUrl;\r\n this.middlewareApiUrl = env.middlewareApiUrl;\r\n this.paymentSubscriptionApiUrl = env.paymentSubscriptionApiUrl;\r\n (this.userApiUrl = env.userApiUrl),\r\n (this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`);\r\n }\r\n });\r\n }\r\n\r\n getHeaders() {\r\n const user: any = JSON.parse(\r\n localStorage.getItem(this.authlocalStorageToken) || \"{}\"\r\n );\r\n const headers = {\r\n Authorization: \"Bearer \" + user.authenticationToken,\r\n };\r\n\r\n return headers;\r\n }\r\n\r\n logout() {\r\n localStorage.removeItem(this.authlocalStorageToken);\r\n this.router.navigate([\"/auth/login\"], {\r\n queryParams: {},\r\n });\r\n }\r\n\r\n sendSignupOtp(data: any): Observable<any> {\r\n return this.http.post(`${this.middlewareApiUrl}/signup-otp`, data);\r\n }\r\n\r\n signup(data: any): Observable<any> {\r\n return this.http.post(`${this.leadApiUrl}/signup`, data);\r\n }\r\n\r\n requestCallback(data: any): Observable<any> {\r\n return this.http.post(`${this.middlewareApiUrl}/request-callback`, data);\r\n }\r\n\r\n isClientnameTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?clientName=${data}`);\r\n }\r\n\r\n isEmailTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?corporateEmail=${data}`);\r\n }\r\n\r\n isMobileTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?mobileNumber=${data}`);\r\n }\r\n\r\n getCountryCodes(): Observable<any> {\r\n return this.http.get(`${this.middlewareApiUrl}/country-code`);\r\n }\r\n\r\n login(data: any): Observable<any> {\r\n return this.http.post(`${this.userApiUrl}/login`, data);\r\n }\r\n\r\n userProfileDet(): Observable<any> {\r\n const user: any = localStorage.getItem(\"user-info\");\r\n if (user) return of(JSON.parse(user));\r\n return this.http\r\n .get(`${this.userApiUrl}/profile`, { headers: this.getHeaders() })\r\n .pipe(\r\n map((response: any) => {\r\n localStorage.setItem(\"user-info\", JSON.stringify(response.data));\r\n return response;\r\n }),\r\n catchError(this.handleError)\r\n );\r\n }\r\n\r\n getAllCountries(): Observable<any> {\r\n return this.http.get(`${this.middlewareApiUrl}/get-countries`);\r\n }\r\n\r\n handleError(res: any) {\r\n return throwError(res.error);\r\n }\r\n\r\n getPricing(data: any): Observable<any> {\r\n return this.http.post(\r\n `${this.paymentSubscriptionApiUrl}/basePricing`,\r\n data\r\n );\r\n }\r\n\r\n forgotPasswordTrigger(params: any): Observable<any> {\r\n return this.http\r\n .get(`${this.userApiUrl}/forgot-password-email`, { params: params })\r\n .pipe(\r\n map((response: any) => response),\r\n catchError(this.handleError)\r\n );\r\n }\r\n\r\n forgotPassword(data: any): Observable<any> {\r\n return this.http\r\n .post(`${this.userApiUrl}/forgot-password-update`, data )\r\n .pipe(\r\n map((response: any) => response),\r\n catchError(this.handleError)\r\n );\r\n }\r\n}\r\n","import { ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild, inject } from '@angular/core';\r\nimport { FormBuilder, Validators } from '@angular/forms';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { Subject, first, takeUntil } from 'rxjs';\r\nimport Swal from 'sweetalert2';\r\nimport { AuthService } from '../../services/auth.service';\r\nimport { GlobalStateService, PageInfoService } from 'tango-app-ui-global'\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n@Component({\r\n selector: \"lib-tango-auth-login\",\r\n templateUrl: \"./tango-auth-login.component.html\",\r\n styleUrl: \"./tango-auth-login.component.scss\",\r\n})\r\nexport class TangoAuthLoginComponent implements OnInit, OnDestroy {\r\n defaultAuth: any = {\r\n email: \"admin@demo.com\",\r\n password: \"demo\",\r\n };\r\n hasError: boolean;\r\n returnUrl: string;\r\n show: boolean = false;\r\n loginForm: any;\r\n credentials: any = {\r\n email: null,\r\n password: null,\r\n };\r\n isLoading: boolean;\r\n isloader :boolean =true;\r\n @ViewChild('emailInput') emailInputRef!: ElementRef;\r\n @ViewChild('passwordInput') passwordInputRef!: ElementRef;\r\n private authlocalStorageToken: any;\r\n private readonly destroy$ = new Subject();\r\n\r\n constructor(\r\n private router: Router,\r\n private route: ActivatedRoute,\r\n private fb: FormBuilder,\r\n private service: AuthService,\r\n private gs: GlobalStateService,private cd :ChangeDetectorRef,\r\n private toastService: ToastService,private pageInfo:PageInfoService\r\n ) {\r\n this.gs.environment.pipe(takeUntil(this.destroy$)).subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n });\r\n if (this.service.currentUserValue) {\r\n this.router.navigate([\"/\"]);\r\n }\r\n }\r\n ngOnInit(): void {\r\n this.initForm();\r\n // this.userProfile();\r\n // get return url from route parameters or default to '/'\r\n if(this.authlocalStorageToken) {\r\n this.router.navigate(['/manage']);\r\n }\r\n this.returnUrl =\r\n this.route.snapshot.queryParams[\"returnUrl\".toString()] || \"/\";\r\n if (this.emailInputRef?.nativeElement.value || this.passwordInputRef?.nativeElement.value) {\r\n // Clear the fields if autofilled\r\n this.emailInputRef.nativeElement.value = '';\r\n this.passwordInputRef.nativeElement.value = '';\r\n }\r\n this.pageInfo.setTitle('Login')\r\n }\r\n \r\n ngOnDestroy(): void {\r\n this.destroy$.next(true);\r\n this.destroy$.complete();\r\n }\r\n\r\n initForm() {\r\n this.isloader = false;\r\n this.loginForm = this.fb.group({\r\n email: [\r\n this.defaultAuth.email,\r\n Validators.compose([\r\n Validators.required,\r\n Validators.email,\r\n Validators.minLength(3),\r\n Validators.maxLength(320),\r\n ]),\r\n ],\r\n password: [\r\n this.defaultAuth.password,\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n });\r\n }\r\n onLogin() {\r\n // localStorage.clear();\r\n this.hasError = false;\r\n this.isLoading = true;\r\n this.show = false;\r\n this.service.login(this.credentials).pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (res) => {\r\n if(res && res?.code === 200){\r\n let loginToken: any =\r\n localStorage.getItem(this.authlocalStorageToken);\r\n if (loginToken) {\r\n loginToken = JSON.parse(loginToken);\r\n }\r\n localStorage.setItem(\r\n this.authlocalStorageToken,\r\n JSON.stringify(res?.data?.result)\r\n );\r\n this.userProfile();\r\n } else if (!res || res?.code == 401) {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n } else {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n }\r\n \r\n },\r\n error: (err) => {\r\n this.hasError = true;\r\n this.toastService.getErrorToast(err?.error?.error ? err?.error?.error :'The user has been unauthorized to login');\r\n },\r\n });\r\n }\r\n\r\n userProfile() {\r\n this.service.userProfileDet().pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (res) => {\r\n if (res&& res.code ==200) {\r\n this.gs.userAccess.next(res.data?.permission)\r\n this.cd.detectChanges()\r\n this.router.navigate(['/manage']);\r\n } else if (!res || res.code == 401) {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n } else {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n }\r\n },\r\n error: (err) => {\r\n this.hasError = true;\r\n this.toastService.getErrorToast(err.error.error);\r\n localStorage.clear();\r\n },\r\n });\r\n }\r\n\r\n showPassword() {\r\n this.show = !this.show;\r\n }\r\n}\r\n","<!-- <div class=\"row justify-content-center logotext px-0\">\r\n <img src=\"./assets/tango/Icons/login-background.svg\" alt=\"\">\r\n </div> -->\r\n\r\n<!-- \r\n<button (click)=\"onClick()\">Log In</button> -->\r\n\r\n<div *ngIf=\"isloader\" class=\"container mt-20\">\r\n <div class=\"text-center mt-20\">\r\n <img src=\"./assets/tango/Icons/favicon.png\" alt=\"Tango logo\" />\r\n <div>Loading ...</div>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"!isloader\" class=\"container\">\r\n <!-- style=\"padding: 96px 142px 96px 142px;\" -->\r\n <div class=\"row position-absolute\" >\r\n <div class=\"col-md-6 pe-10 d-flex justify-content-center align-items-center \">\r\n <img src=\"./assets/tango/Icons/LHS.svg\" alt=\"Image\" class=\"img-fluid w-100\">\r\n </div>\r\n <div class=\"col-md-6 px-10 d-flex justify-content-center align-items-center\"> \r\n <div class=\"card card-flush w-lg-600px ms-20 py-3\">\r\n <div class=\"login-form login-signin\">\r\n \r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-10 ms-10\">\r\n <h3 class=\"login-title\">Log in</h3>\r\n <p class=\"login-sub-title\">Welcome back! Please enter your details.</p>\r\n </div>\r\n <form #loginForm=\"ngForm\" class=\"w-100 title-padding\" novalidate=\"novalidate\">\r\n <div class=\"mb-5 \">\r\n <label for=\"Email\" class=\"form-label\">Email</label>\r\n <input type=\"email\" class=\"form-control\" id=\"Email\" name=\"Email\" autocomplete=\"off\" required [(ngModel)]=\"credentials.email\" autocomplete=\"off\" #emailInput>\r\n </div>\r\n <div class=\"mb-5 \">\r\n <label for=\"Password\" class=\"form-label\">Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input class=\"form-control\" id=\"Password\" [type]=\"show ? 'text' : 'password'\"\r\n placeholder=\"\" name=\"password\" autocomplete=\"off\" required #passwordInput\r\n [(ngModel)]=\"credentials.password\">\r\n <span (click)=\"showPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"show\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!show\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div *ngIf=\"hasError\" class=\"text-danger\" style=\"color: #ffffff !important;\">\r\n Email Id / Mobile Number or Password is incorrect\r\n </div>\r\n </div>\r\n<div class=\"text-center\">\r\n <h6 class=\"forgot cursor-pointer\" routerLink=\"/auth/forgot-password\">Forgot Password</h6>\r\n\r\n</div>\r\n <button class=\"btn btn-primary w-100 mt-3\" [disabled]=\"!loginForm.valid || (!credentials.email || !credentials.password)\" (click)=\"onLogin()\">Sign in</button>\r\n\r\n <!-- <button class=\"btn btn-outline w-100 mt-3 not-allowed coming-soon\" >\r\n <svg xmlns=\"http://www.w3.org/2000/svg\"\r\n width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_3727_17759)\">\r\n <path\r\n d=\"M24.2663 12.9767C24.2663 12.161 24.2001 11.3408 24.059 10.5383H12.7402V15.1593H19.222C18.953 16.6497 18.0888 17.9681 16.8233 18.8058V21.8042H20.6903C22.9611 19.7142 24.2663 16.6276 24.2663 12.9767Z\"\r\n fill=\"#4285F4\" />\r\n <path\r\n d=\"M12.7401 24.701C15.9766 24.701 18.7059 23.6384 20.6945 21.8041L16.8276 18.8057C15.7517 19.5377 14.3627 19.9522 12.7445 19.9522C9.61388 19.9522 6.95946 17.8401 6.00705 15.0005H2.0166V18.0914C4.05371 22.1436 8.2029 24.701 12.7401 24.701Z\"\r\n fill=\"#34A853\" />\r\n <path\r\n d=\"M6.00277 15.0004C5.50011 13.5101 5.50011 11.8962 6.00277 10.4059V7.31494H2.01674C0.314734 10.7057 0.314734 14.7006 2.01674 18.0913L6.00277 15.0004Z\"\r\n fill=\"#FBBC04\" />\r\n <path\r\n d=\"M12.7401 5.44986C14.4509 5.4234 16.1044 6.06716 17.3434 7.24886L20.7695 3.82281C18.6001 1.7857 15.7208 0.665729 12.7401 0.701004C8.2029 0.701004 4.05371 3.25842 2.0166 7.315L6.00264 10.4059C6.95064 7.56193 9.60947 5.44986 12.7401 5.44986Z\"\r\n fill=\"#EA4335\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_3727_17759\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.5 0.700195)\" />\r\n </clipPath>\r\n </defs>\r\n </svg><span class=\"mx-2\">Sign in with Google</span> \r\n <span class=\"tooltip\">Coming Soon</span>\r\n </button>\r\n <button class=\"btn btn-outline w-100 mt-3 not-allowed coming-soon\" ><svg xmlns=\"http://www.w3.org/2000/svg\"\r\n width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_3727_6141)\">\r\n <path d=\"M11.9057 12.104H0.5V0.700195H11.9057V12.104Z\" fill=\"#F1511B\" />\r\n <path d=\"M24.5004 12.104H13.0938V0.700195H24.4994V12.104H24.5004Z\" fill=\"#80CC28\" />\r\n <path d=\"M11.9057 24.7002H0.5V13.2964H11.9057V24.7002Z\" fill=\"#00ADEF\" />\r\n <path d=\"M24.5004 24.7002H13.0938V13.2964H24.4994V24.7002H24.5004Z\" fill=\"#FBBC09\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_3727_6141\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.5 0.700195)\" />\r\n </clipPath>\r\n </defs>\r\n </svg><span class=\"mx-2\">Sign in with Microsoft</span> <span class=\"tooltip\">Coming Soon</span></button> -->\r\n </form>\r\n\r\n <div class=\"mt-3 text-center ms-75px\"><span class=\"signup-default\"></span>Don’t have an account?<span class=\"signup-primary ms-2 cursor-pointer\" routerLink=\"/auth/signup\">Sign up</span></div>\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack py-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer text-decoration-underline cursor-pointer\">&#64;Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"mailto:support@tangotech.co.in?subject=Subject%20Here&body=Body%20Here\" class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\" stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n \r\n </ul>\r\n </div>\r\n </div>\r\n \r\n\r\n\r\n\r\n </div>\r\n </div>\r\n </div>\r\n<img src=\"./assets/tango/Icons/login-background1.svg\" alt=\"Image\" class=\"background-image\">\r\n</div>","import { Injectable, EventEmitter } from '@angular/core';\r\nimport { Subject } from 'rxjs';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ConversionService {\r\n private filtersSubject = new Subject<any>();\r\n public $filters = this.filtersSubject.asObservable();\r\n\r\n public $stepper: EventEmitter<any>;\r\n \r\n\r\n constructor() {\r\n this.$stepper = new EventEmitter();\r\n \r\n }\r\n apply(options: any): void {\r\n this.filtersSubject.next(options);\r\n }\r\n completeStepper(data: any): void {\r\n this.$stepper.emit(data);\r\n console.log(data)\r\n }\r\n\r\n \r\n}\r\n","import { ChangeDetectorRef, Component, OnDestroy } from '@angular/core';\r\nimport { ConversionService } from '../services/conversion.service';\r\nimport { AbstractControl, FormBuilder, FormGroup, Validators } from '@angular/forms';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { Subscription } from 'rxjs';\r\n@Component({\r\n selector: 'lib-step1',\r\n templateUrl: './step1.component.html',\r\n styleUrl: './step1.component.scss'\r\n})\r\nexport class Step1Component implements OnDestroy {\r\n aboutForm: FormGroup\r\n passwordStrength:string = '0%'\r\n confirmPasswordStrength:string = '0%'\r\n isClientNameTaken: any;\r\n isEmailTaken: any;\r\n isMobileTaken: any;\r\n subscriptions:Subscription[] = []\r\n countryList: any;\r\n passwordShow: boolean=false;\r\n confirmPasswordShow: boolean=false;\r\n constructor(private setterservice: ConversionService, private fb: FormBuilder, private authService:AuthService, private cd:ChangeDetectorRef) {\r\n this.initForm()\r\n this.subscriptions.push(this.authService.aboutFormData.subscribe((data)=>{if(data){ \r\n this.aboutForm.patchValue({\r\n clientName:data.clientName,\r\n firstName:data.firstName,\r\n lastName:data.lastName,\r\n corporateEmail:data.corporateEmail,\r\n countryCode:data.countryCode,\r\n mobileNumber:data.mobileNumber,\r\n password:data.password,\r\n confirmPassword:data.confirmPassword\r\n })\r\n this.reinitializePasswordValidation(data.password, data.confirmPassword)\r\n }}))\r\n this.getCountryCodes()\r\n }\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{subscription.unsubscribe()})\r\n }\r\n\r\n initForm() {\r\n this.aboutForm = this.fb.group({\r\n clientName: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n firstName: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(50),\r\n ]),\r\n ],\r\n lastName: ['', Validators.compose([\r\n // Validators.required,\r\n // Validators.minLength(3),\r\n // Validators.maxLength(50),\r\n ]),\r\n ],\r\n corporateEmail: ['', Validators.compose([\r\n Validators.required,\r\n Validators.pattern(\"^[a-zA-Z0-9]+([.-_]?[a-zA-Z0-9]+)*@[a-zA-Z0-9]+([.-_]?[a-zA-Z]+)*[.]{1}[a-zA-Z]{2,}$\"),\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n countryCode: ['91', Validators.compose([\r\n Validators.required\r\n ]),\r\n ],\r\n mobileNumber: ['', Validators.compose([\r\n Validators.required,\r\n Validators.min(999),\r\n Validators.max(999999999999),\r\n ]),\r\n ],\r\n password: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator\r\n ]),\r\n ],\r\n confirmPassword: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator,\r\n this.validateAreEqual.bind(this),\r\n ]),\r\n ,\r\n ],\r\n\r\n\r\n });\r\n\r\n this.aboutForm.get('password')?.valueChanges.subscribe(() => {\r\n this.aboutForm.get('confirmPassword')?.updateValueAndValidity();\r\n });\r\n }\r\n noSpaceValidator(control: AbstractControl): { [key: string]: any } | null {\r\n if (control.value && control.value.indexOf(' ') >= 0) {\r\n return { 'noSpaces': true };\r\n }\r\n return null;\r\n }\r\n validateAreEqual(fieldControl: AbstractControl<any>) {\r\n return fieldControl?.value === this.aboutForm?.get('password')!.value ? null : {\r\n NotEqual: true,\r\n };\r\n }\r\n\r\n async checkPasswordStrength(val:string){ \r\n const numbers = new Promise((resolve, reject)=>{\r\n if(/[0-9]/g.test(val)){\r\n resolve({mesage:'numbers passed'})\r\n }else{\r\n reject({mesage:'numbers failed'})\r\n }\r\n })\r\n const capital = new Promise((resolve, reject)=>{\r\n if(/[a-z]/g.test(val)){\r\n resolve({mesage:'capital passed'})\r\n }else{\r\n reject({mesage:'capital failed'})\r\n }\r\n })\r\n const small = new Promise((resolve, reject)=>{\r\n if(/[A-Z]/g.test(val)){\r\n resolve({mesage:'small passed'})\r\n }else{\r\n reject({mesage:'small failed'})\r\n }\r\n })\r\n const length = new Promise((resolve, reject)=>{\r\n if(val.length > 7){\r\n resolve({mesage:'length passed'})\r\n }else{\r\n reject({mesage:'length failed'})\r\n }\r\n })\r\n\r\n \r\n const percentage = await (Promise as any).allSettled([numbers, capital, small, length])\r\n .then((res:any)=>{\r\n var percentage = 0\r\n res.forEach((element:any) => {\r\n if(element.status === 'fulfilled'){\r\n percentage+=25\r\n }\r\n });\r\n return percentage\r\n }) \r\n\r\n return percentage + '%'\r\n }\r\n\r\n async onPasswordChange(event:any){\r\n this.passwordStrength = await this.checkPasswordStrength(event.target.value)\r\n }\r\n\r\n async onConfirmPasswordChange(event:any){\r\n this.confirmPasswordStrength = await this.checkPasswordStrength(event.target.value)\r\n }\r\n\r\n async reinitializePasswordValidation(password:string, confirmPassword:string){\r\n this.passwordStrength = await this.checkPasswordStrength(password)\r\n this.confirmPasswordStrength = await this.checkPasswordStrength(confirmPassword)\r\n this.cd.detectChanges()\r\n }\r\n\r\n getCountryCodes(){\r\n this.subscriptions.push(\r\n this.authService.getAllCountries().subscribe({\r\n next:(res)=>{\r\n this.countryList = res.data\r\n this.cd.detectChanges()\r\n },\r\n error:(err)=>{\r\n console.log(err);\r\n \r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onClientNameBlur(){\r\n this.subscriptions.push(\r\n this.authService.isClientnameTaken(this.aboutForm?.get('clientName')?.value).subscribe({\r\n next:(res)=>{\r\n this.isClientNameTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onEmailBlur(){\r\n this.subscriptions.push(\r\n this.authService.isEmailTaken(this.aboutForm?.get('corporateEmail')?.value).subscribe({\r\n next:(res)=>{\r\n this.isEmailTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onMobileNumberBlur(){\r\n this.subscriptions.push(\r\n this.authService.isMobileTaken(this.aboutForm?.get('mobileNumber')?.value).subscribe({\r\n next:(res)=>{\r\n this.isMobileTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n\r\n\r\n nextStep() {\r\n this.authService.aboutFormData.next(this.aboutForm.value)\r\n this.setterservice.completeStepper({ step: 2 });\r\n }\r\n showPassword() {\r\n this.passwordShow = !this.passwordShow;\r\n}\r\nshowConfirmPassword(){\r\n this.confirmPasswordShow = !this.confirmPasswordShow;\r\n}\r\nomit_special_char(event: any) {\r\n var k;\r\n k = event.charCode; // k = event.keyCode; (Both can be used)\r\n return k == 8 || k == 32 || (k >= 48 && k <= 57);\r\n}\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div class=\"h-100 px-10 mx-5 my-7\">\r\n <!-- <div>\r\n <img class=\"bubble\" src=\"../../../../../../../assets/Icons/Signup-bubble-icon.svg\"\r\n alt=\"\" srcset=\"\"> -->\r\n <div class=\"mobileshow\">\r\n <h3 class=\"title1 pt-4\">AI co-pilot to boost your sales conversion</h3>\r\n <p class=\"subtext pb-4\">Join the leading global brands in understanding footfall and shopper behavior to\r\n boost\r\n sales.</p>\r\n\r\n\r\n <div class=\"d-flex justify-content-between\">\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/Lenskart-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/nykaa-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/giva-logo3.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/Duroflex-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/loccitone-logo.svg\" alt=\"\">\r\n </div>\r\n <div class=\"me-20\">\r\n <h4 class=\"icon-more\">30 +</h4>\r\n </div>\r\n\r\n </div>\r\n <div class=\"mt-12 card-title\">\r\n <h6 class=\"card-label mb-7\">Create an Account</h6>\r\n <form [formGroup]=\"aboutForm\" novalidate=\"novalidate\">\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"Brand\" class=\"form-label\">Brand Name <span class=\"alert-required\">*</span></label>\r\n <input (blur)=\"onClientNameBlur()\" (input)=\"isClientNameTaken = 0\" formControlName=\"clientName\" type=\"type\" class=\"form-control\" id=\"Brand\" \r\n [ngClass]=\"{ 'is-invalid': aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('required') }\" autocomplete=\"off\" >\r\n \r\n \r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('minlength')\">\r\n Brand name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('maxlength')\">\r\n Brand name must be maximum of 100 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('required')\">\r\n Brand name is required\r\n </small>\r\n <small \r\n *ngIf=\"isClientNameTaken\">\r\n Brand Name already exists\r\n </small>\r\n </div>\r\n </div>\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"firstname\" class=\"form-label\">First Name <span class=\"alert-required\">*</span></label>\r\n <input formControlName=\"firstName\" type=\"type\" class=\"form-control\" id=\"firstname\" autocomplete=\"off\"\r\n [ngClass]=\"{ 'is-invalid': aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('required') }\">\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('minlength')\">\r\n First name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('maxlength')\">\r\n First name must be maximum of 50 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('required')\">\r\n First name is required\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"lastname\" class=\"form-label\">Last Name</label>\r\n <input formControlName=\"lastName\" type=\"type\" class=\"form-control\" id=\"lastname\" autocomplete=\"off\">\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('minlength')\">\r\n Last name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('maxlength')\">\r\n Last name must be maximum of 50 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('required')\">\r\n Last name is required\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"email\" class=\"form-label\">Corporate Email <span class=\"alert-required\">*</span></label>\r\n <input (blur)=\"onEmailBlur()\" (input)=\"isEmailTaken = 0\" formControlName=\"corporateEmail\" type=\"email\" class=\"form-control\" id=\"email\" [ngClass]=\"{ 'is-invalid': aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('required') }\"\r\n autocomplete=\"off\">\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('minlength')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('maxlength')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('required')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('pattern')\">\r\n Enter valid email ID\r\n </small>\r\n <small \r\n *ngIf=\"isEmailTaken\">\r\n Email already exists\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n\r\n <label for=\"phonenumber\" class=\"form-label\">Phone number <span class=\"alert-required\">*</span></label>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-4 col-xl-4\">\r\n <!-- <div class=\"input-group mb-3\">\r\n <div class=\"input-group-append\"> -->\r\n <!-- <select\r\n class=\"form-select form-select-solid select2-hidden-accessible form-label text-dark fs-4\"\r\n name=\"dialCode\" #dialCode=\"ngModel\"\r\n [ngModelOptions]=\"{standalone: true}\" matNativeControl required\r\n [(ngModel)]=\"countryCodes\" (click)=\"chooseCountry(countryCodes)\">\r\n <option [value]=\"country.dial_code\" *ngFor=\"let country of countryCodeList\"><span\r\n class=\"fw-bolder text-dark ps-3\">\r\n {{ country.name }}</span><span class=\"text-muted\">({{ country.dial_code\r\n }})</span>\r\n </option>\r\n </select> -->\r\n <select formControlName=\"countryCode\" class=\"form-select ps-3 pe-8\" \r\n id=\"inputGroupSelect01\">\r\n <option *ngFor=\"let country of countryList\" class=\"mx-2\" [value]=\"country.phonecode\">{{country.name}}<span class=\"text-muted\">({{ country.phonecode\r\n }})</span></option>\r\n </select>\r\n </div>\r\n <div class=\"col-md-12 col-lg-8 col-xl-8\">\r\n <!-- <input [value]=\"aboutForm.get('countryCode')?.value\" type=\"text\" [ngClass]=\"{ 'code-is-invalid': aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required') }\"\r\n class=\"form-control border-disabled\" readonly> -->\r\n <input (blur)=\"onMobileNumberBlur()\" (input)=\"isMobileTaken = 0\" formControlName=\"mobileNumber\" type=\"text\" class=\"form-control\" (keypress)=\"omit_special_char($event)\" [ngClass]=\"{ ' is-invalid': aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required') }\"\r\n id=\"phonenumber\" autocomplete=\"off\" minlength=\"7\" maxlength=\"15\">\r\n </div>\r\n </div>\r\n <small \r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required')\">\r\n Phone number is required\r\n </small>\r\n <small *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('pattern')\">\r\n Enter a valid phone number\r\n </small>\r\n <small\r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('min')\">\r\n Enter a valid phone number\r\n </small>\r\n <small\r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('max')\">\r\n Enter a valid phone number\r\n </small>\r\n <small \r\n *ngIf=\"isMobileTaken\">\r\n Phone Number already exists\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"password\" class=\"form-label\">Password <span class=\"alert-required\">*</span></label>\r\n <div class=\"position-relative mb-3\">\r\n <input (input)=\"onPasswordChange($event)\" formControlName=\"password\" [type]=\"passwordShow ? 'text' : 'password'\" [ngClass]=\"{ 'is-invalid': aboutForm.get('password')?.touched && aboutForm.get('password')?.hasError('required') }\"\r\n class=\"form-control\" id=\"password\" autocomplete=\"new-password\">\r\n <span (click)=\"showPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"passwordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!passwordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div class=\"progressbar-wrapper mt-2\">\r\n <span [style.width]=\"passwordStrength\"\r\n [ngStyle]=\"{'background-color': passwordStrength === '0%' ? '' : (passwordStrength === '25%' ? 'red' : (passwordStrength === '50%' ? 'orange': (passwordStrength === '75%' ? 'yellow' : (passwordStrength === '100%' ? 'green' : '')))) }\"\r\n class=\"progressbar-inner\"></span>\r\n </div>\r\n <div class=\"password-note mt-2\">The password must contain atleast one capital letter and number.</div>\r\n <div>\r\n <small *ngIf=\"aboutForm.get('password')?.hasError('required') && aboutForm.get('password')?.touched\">Password is required</small>\r\n </div>\r\n <div >\r\n <small *ngIf=\"aboutForm.get('password')?.hasError('noSpaces') && aboutForm.get('password')?.touched\">Password cannot contain spaces.</small> \r\n </div>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"confirm\" class=\"form-label\">Confirm Password <span class=\"alert-required\">*</span></label>\r\n <div class=\"position-relative mb-3\">\r\n <input (input)=\"onConfirmPasswordChange($event)\" formControlName=\"confirmPassword\" [type]=\"confirmPasswordShow ? 'text' : 'password'\" class=\"form-control\" [ngClass]=\"{ 'is-invalid': aboutForm.get('confirmPassword')?.touched && aboutForm.get('confirmPassword')?.hasError('required') }\"\r\n id=\"confirm\" autocomplete=\"off\">\r\n <span (click)=\"showConfirmPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"confirmPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!confirmPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div class=\"progressbar-wrapper mt-2\">\r\n <span [style.width]=\"confirmPasswordStrength\"\r\n [ngStyle]=\"{'background-color': confirmPasswordStrength === '0%' ? '' : (confirmPasswordStrength === '25%' ? 'red' : (confirmPasswordStrength === '50%' ? 'orange': (confirmPasswordStrength === '75%' ? 'yellow' : (confirmPasswordStrength === '100%' ? 'green' : '')))) }\"\r\n class=\"progressbar-inner\"></span>\r\n </div>\r\n <div class=\"password-note mt-2\">The password must contain atleast one capital letter and number.</div>\r\n <div>\r\n <small *ngIf=\"aboutForm.get('confirmPassword')?.hasError('required') && aboutForm.get('confirmPassword')?.touched\">Confirm password is required</small>\r\n <small \r\n *ngIf=\"aboutForm.get('confirmPassword')?.touched && aboutForm.get('confirmPassword')?.hasError('NotEqual') && !aboutForm.get('confirmPassword')?.hasError('required')\">Password\r\n does not match</small>\r\n <small *ngIf=\"aboutForm.get('confirmPassword')?.hasError('noSpaces') && !aboutForm.get('confirmPassword')?.hasError('NotEqual') && aboutForm.get('confirmPassword')?.touched\">Password cannot contain spaces.</small> \r\n\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n <!-- <ng-container *ngIf=\"currentStep$.value == 1\"> -->\r\n <div class=\"text-end\">\r\n <button [disabled]=\"aboutForm.invalid || isMobileTaken || isEmailTaken || isClientNameTaken\" type=\"button\" class=\"btn btn-lg btn-primary\" (click)=\"nextStep()\">\r\n <span class=\"indicator-label px-5\">\r\n <ng-container>\r\n Next <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"\r\n fill=\"none\">\r\n <path d=\"M7.5 15L12.5 10L7.5 5\" stroke=\"white\" stroke-width=\"1.67\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n </ng-container>\r\n\r\n </span>\r\n </button>\r\n </div>\r\n <!-- </ng-container> -->\r\n </div>\r\n\r\n </div>\r\n <!-- </div> -->\r\n </div>\r\n <div class=\"mb-3 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">© 2024 </span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer\">Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div>\r\n</div>","import { Component, Input, OnInit } from '@angular/core';\r\nimport { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';\r\n\r\n@Component({\r\n selector: 'lib-modal-content',\r\n templateUrl: './modal-content.component.html',\r\n styleUrl: './modal-content.component.scss'\r\n})\r\nexport class ModalContentComponent implements OnInit{\r\n @Input() user: string;\r\n @Input() width: string;\r\n @Input() height: string;\r\n expandDetails: any = {\r\n traffic: false,\r\n zone: false,\r\n revops: false,\r\n sop: false,\r\n support: false,\r\n };\r\n constructor(\r\n public activeModal: NgbActiveModal\r\n ) { }\r\n ngOnInit() {\r\n this.expandDetails[this.user] = true\r\n\r\n }\r\n expandPlan(key: any) {\r\n const keys = Object.keys(this.expandDetails)\r\n keys.forEach((ele: any) => {\r\n if (key === ele) this.expandDetails[ele] = !this.expandDetails[ele]\r\n else this.expandDetails[ele] = false\r\n })\r\n }\r\n passBack() {\r\n this.activeModal.close(this.user);\r\n }\r\n}\r\n","<div >\r\n<div class=\"modal-header border-bottom-0\">\r\n <!-- <h4 class=\"modal-title\" id=\"modal-basic-title\">Simple modal</h4> -->\r\n <div class=\"col-12 text-end \">\r\n <div class=\"btn btn-sm btn-icon btn-active-color-primary\" data-bs-dismiss=\"modal\">\r\n <i (click)=\"activeModal.dismiss('Cross click')\" class=\"ki-duotone ki-cross fs-1\"><span class=\"path1\"></span><span\r\n class=\"path2\"></span></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"modal-body pt-0\">\r\n <div class=\"row mx-5\">\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 md-offset-3\">\r\n <div class=\"align-items-center border-0 mt-4\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 text-gray-800 mb-2 \">Product Offerings</span>\r\n </h3>\r\n </div>\r\n <div class=\"\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('traffic')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.traffic\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.traffic\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Traffic\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.traffic\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Footfall Analysis.</li>\r\n <li>Bounced vs Engager Analysis</li>\r\n <li>Missed Opportunity Vs Conversion Rate.</li>\r\n <li>Footfall Image Directory by the hour.</li>\r\n <li>Infra tracking ticketing system.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('zone')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.zone\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.zone\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Zone\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.zone\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Heatmap Analysis.</li>\r\n <li>Concentration % of each of your zone.</li>\r\n <li>Customer trajectory during their visit to your store.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n <!-- <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('revops')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.revops\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.revops\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Revops\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.revops\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Identifying missed opportunities across reasons like Pricing, Store, Product, Staff\r\n etc.</li>\r\n <li>Customer database solution for retargeting.</li>\r\n <li>POS integration to capture conversion.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div> -->\r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('sop')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.sop\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.sop\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango SOP\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.sop\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Daily store operation.</li>\r\n <li> Extensive summary of data points like store open and close time.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n \r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('support')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.support\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.support\"><svg width=\"24\"\r\n height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Priority Support\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.support\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li> 24*7 CCTV monitoring of all the cameras in a single screen.</li>\r\n <li>Live and Recap video option for the entire day.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n </div>\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 \">\r\n <div class=\"card-header\">\r\n <video class=\"video-width\" muted autoplay controls style=\"border-radius: 20px;\">\r\n <source src=\"https://tangoeye-dashboard-video.objectstore.e2enetworks.net/tango-main-video%201.mp4\"\r\n type=\"video/mp4\">\r\n <!-- https://tango-staticsite.s3.ap-south-1.amazonaws.com/Tango+Eye_720p_with+music_Trim.mp4\" -->\r\n </video>\r\n </div>\r\n <div class=\"card-header align-items-center border-0 mt-4\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 text-gray-800\">Product Walk-Through</span>\r\n </h3>\r\n </div>\r\n <div class=\"card-header align-items-center border-0 my-2 ms-6\" ><span\r\n class=\"sub\">We transform your existing CCTV cameras into a powerful store analytics tool.\r\n Our industry-first Al and computer vision technology help brands identify missed sale\r\n opportunities and focus on improving conversion rates across stores.</span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n","import { Component, Input, NgZone, OnDestroy, OnInit } from '@angular/core';\r\nimport { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';\r\ndeclare global { interface Window { Calendly: any; } } \r\n\r\n\r\n@Component({\r\n selector: 'lib-calendly-modal',\r\n templateUrl: './calendly-modal.component.html',\r\n styleUrl: './calendly-modal.component.scss'\r\n})\r\nexport class CalendlyModalComponent implements OnInit, OnDestroy {\r\n\r\n @Input() userData: any\r\n\r\n\r\n constructor(private modalRef:NgbActiveModal){}\r\n \r\n ngOnInit(): void { \r\n window.addEventListener('message', this.messageHandler.bind(this))\r\n window.Calendly.initInlineWidget({\r\n url: `https://calendly.com/hello-tango/connect_tango_eye?name=${this.userData?.name}&email=${this.userData?.email}`,\r\n parentElement: document.querySelector('.calendly-inline-widget'),\r\n });\r\n\r\n }\r\n\r\n ngOnDestroy(): void {\r\n window.removeEventListener('message', this.messageHandler.bind(this));\r\n }\r\n\r\n messageHandler(event: MessageEvent): void {\r\n if(event?.origin === 'https://calendly.com' && event.data.event === \"calendly.event_scheduled\"){\r\n this.modalRef.close({type:'scheduled'})\r\n }\r\n }\r\n \r\n}\r\n","<div class=\"calendly-inline-widget\"></div>\r\n","import { ChangeDetectorRef, Component, Input, OnDestroy, OnInit } from '@angular/core';\r\nimport { NgbModal, NgbModalOptions } from '@ng-bootstrap/ng-bootstrap';\r\nimport { ModalContentComponent } from '../modal-content/modal-content.component';\r\nimport { ConversionService } from '../services/conversion.service';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\r\nimport { Subscription } from 'rxjs';\r\nimport { CalendlyModalComponent } from '../calendly-modal/calendly-modal.component';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n@Component({\r\n selector: \"lib-step2\",\r\n templateUrl: \"./step2.component.html\",\r\n styleUrl: \"./step2.component.scss\",\r\n})\r\nexport class Step2Component implements OnDestroy, OnInit {\r\n storeCounts: any = [\r\n {\r\n text: \"1 (Free)\",\r\n active: false,\r\n value: \"1\",\r\n },\r\n {\r\n text: \"2-25\",\r\n active: false,\r\n value: \"2-25\",\r\n },\r\n {\r\n text: \"26-50\",\r\n active: false,\r\n value: \"26-50\",\r\n },\r\n {\r\n text: \"51-75\",\r\n active: false,\r\n value: \"51-75\",\r\n },\r\n {\r\n text: \"76-100\",\r\n active: false,\r\n value: \"76-100\",\r\n },\r\n {\r\n text: \"101+\",\r\n active: false,\r\n value: \"101-150\",\r\n },\r\n ];\r\n featAreaOptions: any = [\r\n {\r\n text: \"50-500 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"50-500\",\r\n cameras: \"2\",\r\n },\r\n {\r\n text: \"500-750 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"500-750\",\r\n cameras: \"2\",\r\n },\r\n {\r\n text: \"750-1000 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"750-1000\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"1000-1500 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"1000-1500\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"1500-2000 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"1500-2000\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"2000+ sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"2000+\",\r\n cameras: \"3\",\r\n },\r\n ];\r\n selectedCounts: any;\r\n countOfStore: any;\r\n featArea: any;\r\n storedetials: boolean = false;\r\n textval: string;\r\n pricevalue: boolean = false;\r\n\r\n showmore: boolean;\r\n freeplan: string;\r\n plan: any = \"monthly\";\r\n requestpopup: boolean;\r\n popup: boolean;\r\n timevalue: any = \"time\";\r\n featAreaCamera: any;\r\n planName: any;\r\n productForm: FormGroup;\r\n callbackPreferredTiming: string = \"\";\r\n callbackDescription = new FormControl();\r\n aboutFormData: any;\r\n pricingFormData: any;\r\n subscriptions: Subscription[] = [];\r\n selectedFeetArea: any;\r\n pricingData: any;\r\n enable: boolean;\r\n currency: any='rupees';\r\n\r\n constructor(\r\n public modalService: NgbModal,\r\n private setterservice: ConversionService,\r\n private authservice: AuthService,\r\n private fb: FormBuilder,\r\n private cd: ChangeDetectorRef,\r\n private toastService: ToastService\r\n ) {\r\n this.initForm();\r\n this.subscriptions.push(\r\n this.authservice.aboutFormData.subscribe((res) => {\r\n if (res) {\r\n this.aboutFormData = res;\r\n }\r\n })\r\n );\r\n }\r\n ngOnInit(): void {\r\n this.subscriptions.push(\r\n this.authservice.pricingFormData.subscribe((res) => {\r\n if (res) {\r\n if (res.totalStores) {\r\n this.activeStoreCount(res.totalStores);\r\n this.storeCounts.forEach((element: any) => {\r\n if (element.value === res.totalStores.value) {\r\n element.active = true;\r\n }\r\n });\r\n }\r\n if (res.storeSize) {\r\n this.activefeatArea(res.storeSize);\r\n this.featAreaOptions.forEach((element: any) => {\r\n if (element.value === res.storeSize.value) {\r\n element.active = true;\r\n }\r\n });\r\n }\r\n\r\n this.plan = res.subscriptionPeriod;\r\n this.planName = res.subscriptionType;\r\n this.productForm.patchValue({\r\n tangoTraffic: res.product.tangoTraffic,\r\n tangoZone: res.product.tangoZone,\r\n tangoSop: res.product.tangoSop,\r\n prioritySupport: res.product.prioritySupport,\r\n });\r\n this.getPricingData();\r\n }\r\n })\r\n );\r\n }\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription) => {\r\n subscription.unsubscribe();\r\n });\r\n }\r\n\r\n initForm() {\r\n this.productForm = this.fb.group({\r\n tangoTraffic: [true],\r\n tangoZone: [false],\r\n tangoSop: [false],\r\n prioritySupport: [false],\r\n });\r\n }\r\n\r\n activeStoreCount(data: any) {\r\n this.storeCounts.forEach((val: any) => {\r\n val.active = false;\r\n });\r\n this.selectedCounts = data;\r\n data.active = true;\r\n this.countOfStore = data.value;\r\n this.storedetials = true;\r\n this.getPricingData();\r\n if (data.value == 1) {\r\n // Disable the last three options in featAreaOptions\r\n for (\r\n let i = this.featAreaOptions.length - 1;\r\n i >= this.featAreaOptions.length - 3;\r\n i--\r\n ) {\r\n this.featAreaOptions[i].disabled = true;\r\n this.featAreaOptions[i].active = false;\r\n // this.featAreaCamera='' \r\n }\r\n } else {\r\n for (\r\n let i = this.featAreaOptions.length - 1;\r\n i >= this.featAreaOptions.length - 3;\r\n i--\r\n ) {\r\n this.featAreaOptions[i].disabled = false;\r\n }\r\n }\r\n }\r\n activefeatArea(data: any) {\r\n this.selectedFeetArea = data;\r\n this.featAreaOptions.forEach((val: any) => {\r\n val.active = false;\r\n });\r\n data.active = true;\r\n this.featArea = data.value;\r\n this.featAreaCamera = data.cameras;\r\n this.pricevalue = true;\r\n this.getPricingData();\r\n }\r\n\r\n showViewMore(data: any) {\r\n const modalRef = this.modalService.open(ModalContentComponent, {\r\n size: \"lg\",\r\n centered: true,\r\n });\r\n modalRef.componentInstance.user = data;\r\n // modalRef.componentInstance.width = '1000px'; // Set custom width\r\n modalRef.result.then((result) => {\r\n if (result) {\r\n }\r\n });\r\n }\r\n\r\n prevStep() {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.setterservice.completeStepper({ step: 1, prev: true });\r\n }\r\n plandet(type: any) {\r\n this.planName = type;\r\n if (type === \"enterprise\") {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.popup = true;\r\n document.body.classList.add(\"overlay-open\");\r\n } else {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.setterservice.completeStepper({ step: 3 });\r\n }\r\n }\r\n\r\n selectPlan(type: any) {\r\n this.plan = type;\r\n this.getPricingData();\r\n }\r\n\r\n checkvalue(type: any) {\r\n this.timevalue = type;\r\n }\r\n submitvalue() {\r\n if (this.timevalue === \"call back\") {\r\n let data = {\r\n planName: this.planName,\r\n clientName: this.aboutFormData.clientName,\r\n timeSlot: this.callbackPreferredTiming,\r\n contactNumber: this.aboutFormData.mobileNumber?.toString(),\r\n description: this.callbackDescription.value,\r\n };\r\n\r\n this.subscriptions.push(\r\n this.authservice.requestCallback(data).subscribe({\r\n next: (res) => {\r\n if (res) {\r\n this.popup = false;\r\n this.requestpopup = true;\r\n this.cd.detectChanges();\r\n }\r\n },\r\n error: (err) => {\r\n if (err) {\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n })\r\n );\r\n } else if (this.timevalue === \"time\") {\r\n this.openCalendlyModal();\r\n }\r\n }\r\n close() {\r\n this.popup = false;\r\n document.body.classList.remove(\"overlay-open\");\r\n }\r\n\r\n continuesignup() {\r\n this.requestpopup = false;\r\n document.body.classList.remove(\"overlay-open\");\r\n this.setterservice.completeStepper({ step: 3 });\r\n }\r\n\r\n openCalendlyModal() {\r\n const modalRef = this.modalService.open(CalendlyModalComponent, {\r\n centered: true,\r\n size: \"xl\",\r\n scrollable: true,\r\n });\r\n let userData = {\r\n name: encodeURIComponent(\r\n `${this.aboutFormData?.firstName} ${this.aboutFormData?.lastName}`\r\n ),\r\n email: encodeURIComponent(`${this.aboutFormData.corporateEmail}`),\r\n };\r\n modalRef.componentInstance.userData = userData;\r\n modalRef.result.then((result) => {\r\n if (result.type === \"scheduled\") {\r\n this.popup = false;\r\n this.requestpopup = true;\r\n this.cd.detectChanges();\r\n }\r\n });\r\n }\r\n\r\n getPricingData() {\r\nif(this.aboutFormData.countryCode ==='91'){\r\n this.currency ='rupees'\r\n} else {\r\n this.currency ='dollar'\r\n}\r\n let data = {\r\n camaraPerSqft: this.selectedFeetArea?.value,\r\n storesCount: this.selectedCounts?.value,\r\n planName: this.plan,\r\n products: this.getTrueKeys(this.productForm.value),\r\n currencyType: this.currency,\r\n };\r\n this.subscriptions.push(\r\n this.authservice.getPricing(data).subscribe((e) => {\r\n if (e) {\r\n this.pricingData = e.data;\r\n this.cd.detectChanges();\r\n }\r\n })\r\n );\r\n }\r\n\r\n getTrueKeys(obj: any) {\r\n return Object.keys(obj).filter((key) => obj[key] === true);\r\n }\r\n\r\n onPriceChange() {\r\n this.getPricingData();\r\n }\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div class=\"h-100 px-5 mx-5 mt-7\">\r\n <!-- <img class=\"bubble\" src=\"./assets/tango/Icons/Signup-bubble-icon.svg\"\r\n alt=\"\" srcset=\"\"> -->\r\n\r\n <div class=\"d-flex flex-column beforeChoosing my-12\">\r\n <h1 class=\"heading mb-5\">How many stores do you have?</h1>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-9 col-xl-8 col-xxl-8 w-auto\">\r\n <div class=\"d-flex align-items-center bg-gray\">\r\n <div class=\"d-flex align-items-center justify-content-center activeClass cursor-pointer \"\r\n *ngFor=\"let count of storeCounts\" (click)=\"activeStoreCount(count)\" \r\n [class.activeClass]=\"count.active\">\r\n <div class=\"d-flex align-items-center mx-2\">\r\n <div class=\"fs-4 fw-bold\" [ngClass]=\"count.active === true? 'store-primary':'text-color'\">{{ count.text }}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"storedetials\">\r\n <h2 class=\"heading mt-10 mb-5 \">What's the average size of your store?</h2>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 w-auto\">\r\n <div class=\"d-flex align-items-center bg-gray\">\r\n <div class=\"d-flex align-items-center justify-content-center activeClass cursor-pointer\"\r\n [class.activeClass]=\"i.active\" [class.disabled]=\"i.disabled\" *ngFor=\"let i of featAreaOptions\"\r\n (click)=\"activefeatArea(i)\">\r\n <div class=\"d-flex align-items-center mx-2\">\r\n <div class=\"fs-4 fw-bold\" [ngClass]=\"i.active === true? 'store-primary':'text-color'\">{{ i.text }}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"featAreaCamera\" class=\"notice d-flex mt-5\">\r\n <div class=\"d-flex justify-content-center align-items-center gap-16px\">\r\n <span class=\"border-store\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\"\r\n fill=\"none\">\r\n <path\r\n d=\"M1.3335 9.66667L8.00016 13L14.6668 9.66667M8.00016 3L1.3335 6.33333L8.00016 9.66667L14.6668 6.33333L8.00016 3Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <div class=\"featareaval ms-4\">Maximum {{featAreaCamera}} Cameras are permitted in stores with\r\n square feet between\r\n {{featArea}}.</div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"pricevalue\">\r\n <div class=\"card-body px-0 mt-10\">\r\n <!--begin::Plans-->\r\n <div class=\"d-flex flex-column\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-10 text-start\">\r\n <h1 class=\"heading mb-5\">Plan Details</h1>\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Nav group-->\r\n <div class=\"nav-group nav-group-outline mx-auto mb-15\">\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3 me-2\"\r\n [ngClass]=\"plan === 'monthly'? 'activePlanBtn':'inactivePlanBtn'\" data-kt-plan=\"month\"\r\n (click)=\"selectPlan('monthly')\">\r\n Monthly\r\n </button>\r\n\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3\"\r\n [ngClass]=\"plan === 'quarterly'? 'activePlanBtn':'inactivePlanBtn'\"\r\n data-kt-plan=\"Quarterly\" (click)=\"selectPlan('quarterly')\">\r\n Quarterly - 10%\r\n </button>\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3\"\r\n [ngClass]=\"plan === 'annual'? 'activePlanBtn':'inactivePlanBtn'\" data-kt-plan=\"annual\"\r\n (click)=\"selectPlan('annual')\">\r\n Annual - 15%\r\n </button>\r\n </div>\r\n <!--end::Nav group-->\r\n\r\n <!--begin::Row-->\r\n <div class=\"row g-10\">\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 py-15 px-10\"\r\n [ngClass]=\"countOfStore === '1'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Free <span\r\n class=\"life-title fw-semibold mx-2\">Lifetime</span></h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solution for single store owners\r\n </div>\r\n <!--end::Description-->\r\n\r\n <!--begin::Price-->\r\n <div class=\"text-start \">\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode==='91'\">₹</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode !=='91'\">$</span>\r\n <span class=\"fs-3x fw-bold text-primary text-val\">0 </span>\r\n </div>\r\n <!--end::Price-->\r\n <div class=\"fw-semibold\">\r\n <span class=\"period\">per store per month</span>\r\n </div>\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Features-->\r\n <div class=\"w-100\">\r\n <div class=\"d-flex flex-stack mb-10\"><span\r\n class=\"plan-head me-2 fs-14px\">Tango Traffic</span>\r\n <div class=\"form-check form-switch\">\r\n <input class=\"form-check-input\" type=\"checkbox\" role=\"switch\"\r\n id=\"tangotraffic\" checked=\"\" disabled=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-center mb-10\">\r\n <span class=\"plan-head\">\r\n To accurately measure traffic and map shopper’s in-store journey\r\n </span>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Footfall Analysis </span>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Bounced vs Engager Analysis </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Missed Opportunity Vs Conversion Rate </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Footfall Image Directory by the hour. </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n <!--begin::Select-->\r\n <button [disabled]=\"selectedCounts.value !== '1'\" class=\"btn btn-sm btn-primary w-100 button-size\"\r\n (click)=\"plandet('free')\">Get Started</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 text-container py-15 px-10\"\r\n [ngClass]=\"countOfStore === '2-25' || countOfStore === '26-50' || countOfStore === '26-50' || countOfStore === '51-75' || countOfStore === '76-100'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start text-container\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Premium</h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solution for Growing Business\r\n </div>\r\n <!--end::Description-->\r\n <button\r\n class=\"top-right btn-margin btn btn-lg btn-primary btn-height py-1 cursor-auto mt-3\">Recommended</button>\r\n <!--begin::Price-->\r\n <div class=\"text-start mt-15\">\r\n <span class=\"price-sub-head\">Starts from</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode==='91'\">₹</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode !=='91'\">$</span>\r\n <span class=\"pricecodesize\" ><b\r\n class=\"pricecodecolor text-set mx-2\"> {{pricingData?.OriginalPrice}}\r\n </b>\r\n </span>\r\n <span class=\"fs-3x fw-bold text-primary text-val\">{{pricingData?.price}}</span>\r\n </div>\r\n <!--end::Price-->\r\n <div class=\"fw-semibold\">\r\n <span class=\"period\">per store per month</span>\r\n </div>\r\n </div>\r\n <!--end::Heading-->\r\n <form [formGroup]=\"productForm\" action=\"\" class=\"w-100 mb-3\">\r\n <!--begin::Features-->\r\n <div class=\"w-100\">\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mt-10 mb-5\"><span\r\n class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('traffic')\">Tango Traffic\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" style=\"pointer-events: none; background-color: #6BCAFF !important; border-color: #6BCAFF !important;\" formControlName=\"tangoTraffic\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangotraffic\" checked=\"\">\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('zone')\">Tango Zone\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"tangoZone\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangozone\" checked=\"\">\r\n </div>\r\n </div>\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('sop')\">Tango SOP\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"tangoSop\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangosop\" checked=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('support')\">Priority Support\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"prioritySupport\"\r\n class=\"form-check-input\" type=\"checkbox\" role=\"switch\"\r\n id=\"support\" checked=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n </form>\r\n\r\n\r\n <!--begin::Select-->\r\n <button class=\"btn btn-sm btn-primary button-size w-100\"\r\n (click)=\"plandet('premium')\">Start 14 day trial</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 py-15 px-10\"\r\n [ngClass]=\"countOfStore === '101-150'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Enterprise</h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solutions for Larger Business\r\n </div>\r\n <!--end::Description-->\r\n\r\n <!--begin::Price-->\r\n <div class=\"text-start mt-12\">\r\n\r\n <span class=\"fs-3x fw-bold text-primary text-val\">\r\n Let’s Talk!</span>\r\n\r\n </div>\r\n <!--end::Price-->\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Features-->\r\n <div class=\"w-100 h-239px mb-10\">\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"price-sub-head fw-semibold \">\r\n Do you have more than 100 stores?</span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"price-sub-head fw-semibold \">\r\n Rest assured, our dedicated account managers are here to support you\r\n every\r\n step of the way.</span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n\r\n <!--begin::Select-->\r\n <button class=\"btn btn-sm btn-primary button-size w-100\"\r\n (click)=\"plandet('enterprise')\">Request Call Back</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n </div>\r\n <!--end::Row-->\r\n </div>\r\n <!--end::Plans-->\r\n </div>\r\n </div>\r\n <div class=\"row mt-12\">\r\n <div class=\"col-md-2\">\r\n <button type=\"button\" class=\"btn btn-lg text-nowrap btn-set me-5\" (click)=\"prevStep()\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\r\n <path d=\"M13 15L8 10L13 5\" stroke=\"#009BF3\" stroke-width=\"1.67\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg> Previous\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"mb-3 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">© 2024 </span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer\">Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n<div class=\"overlay\" *ngIf=\"popup\">\r\n <div class=\"popup\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" fill=\"#DAF1FF\" />\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" stroke=\"#EAF8FF\" stroke-width=\"8\" />\r\n <path d=\"M38 18L27 29M38 18L31 38L27 29M38 18L18 25L27 29\" stroke=\"#00A3FF\" stroke-width=\"2\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n <h3 class=\"fw-bold get-touch my-5\">Get In Touch</h3>\r\n <div class=\"fw-normal get-sub mb-5\">Have questions? We’re here to help. Send us a message, and we’ll respond\r\n within\r\n 24 hours.</div>\r\n <div class=\"notice d-flex bg-light-primary rounded border-primary cursor-pointer my-4\"\r\n (click)=\"checkvalue('time')\" [ngClass]=\"timevalue === 'time'? 'touch-primary':'untouch-primary'\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\" stroke-width=\"4\" />\r\n <path d=\"M25.3332 14.6663L20.6665 17.9997L25.3332 21.333V14.6663Z\" stroke=\"#00A3FF\"\r\n stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n <path\r\n d=\"M19.3332 13.333H11.9998C11.2635 13.333 10.6665 13.93 10.6665 14.6663V21.333C10.6665 22.0694 11.2635 22.6663 11.9998 22.6663H19.3332C20.0695 22.6663 20.6665 22.0694 20.6665 21.333V14.6663C20.6665 13.93 20.0695 13.333 19.3332 13.333Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n <div class=\"d-flex flex-stack flex-grow-1 flex-wrap flex-md-nowrap\">\r\n <div class=\"mb-3 mb-md-0 \">\r\n <h4 class=\"fw-semibold\" [ngClass]=\"timevalue === 'time'? 'video-title':'untouch-title'\">Schedule\r\n with\r\n Calendly</h4>\r\n <div class=\"fw-normal pe-7\" [ngClass]=\"timevalue === 'time'? 'video-sub':'untouch-sub'\">Choose your\r\n time\r\n slot in the next step.</div>\r\n </div><span *ngIf=\"timevalue ==='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"#00A3FF\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#00A3FF\" />\r\n <path d=\"M11.3332 5.5L6.74984 10.0833L4.6665 8\" stroke=\"white\" stroke-width=\"1.66667\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg></span>\r\n <span *ngIf=\"timevalue !=='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"white\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#D0D5DD\" />\r\n </svg></span>\r\n\r\n </div>\r\n </div>\r\n <div class=\"notice d-flex bg-light-primary rounded border-primary cursor-pointer my-4\"\r\n (click)=\"checkvalue('call back')\" [ngClass]=\"timevalue === 'call back'? 'touch-primary':'untouch-primary'\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\" stroke-width=\"4\" />\r\n <g clip-path=\"url(#clip0_1731_70116)\">\r\n <path\r\n d=\"M24.6665 21.2797V23.2797C24.6672 23.4654 24.6292 23.6492 24.5548 23.8193C24.4804 23.9894 24.3713 24.1421 24.2345 24.2676C24.0977 24.3932 23.9362 24.4887 23.7603 24.5482C23.5844 24.6077 23.398 24.6298 23.2131 24.6131C21.1617 24.3902 19.1911 23.6892 17.4598 22.5664C15.849 21.5428 14.4834 20.1772 13.4598 18.5664C12.3331 16.8272 11.632 14.8471 11.4131 12.7864C11.3965 12.6021 11.4184 12.4162 11.4775 12.2408C11.5365 12.0654 11.6315 11.9042 11.7563 11.7675C11.8811 11.6308 12.033 11.5215 12.2023 11.4468C12.3716 11.372 12.5547 11.3332 12.7398 11.3331H14.7398C15.0633 11.3299 15.377 11.4445 15.6223 11.6554C15.8676 11.8664 16.0278 12.1594 16.0731 12.4797C16.1575 13.1198 16.3141 13.7482 16.5398 14.3531C16.6295 14.5917 16.6489 14.851 16.5957 15.1003C16.5426 15.3496 16.419 15.5785 16.2398 15.7597L15.3931 16.6064C16.3422 18.2754 17.7241 19.6574 19.3931 20.6064L20.2398 19.7597C20.4211 19.5805 20.6499 19.457 20.8992 19.4038C21.1485 19.3506 21.4078 19.37 21.6465 19.4597C22.2513 19.6854 22.8797 19.842 23.5198 19.9264C23.8436 19.9721 24.1394 20.1352 24.3508 20.3847C24.5622 20.6343 24.6746 20.9528 24.6665 21.2797Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1731_70116\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(10 10)\" />\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n <div class=\"d-flex flex-stack flex-grow-1 flex-wrap flex-md-nowrap\">\r\n <div class=\"mb-3 mb-md-0 \">\r\n <h4 class=\"fw-semibold\" [ngClass]=\"timevalue === 'call back'? 'video-title':'untouch-title'\">Request\r\n a\r\n call back</h4>\r\n <div class=\"fw-normal pe-7\" [ngClass]=\"timevalue === 'call back'? 'video-title':'untouch-sub'\">We’ll\r\n call\r\n you on +91 987-654-3219</div>\r\n </div><span *ngIf=\"timevalue ==='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"white\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#D0D5DD\" />\r\n </svg></span>\r\n <span *ngIf=\"timevalue !=='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"#00A3FF\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#00A3FF\" />\r\n <path d=\"M11.3332 5.5L6.74984 10.0833L4.6665 8\" stroke=\"white\" stroke-width=\"1.66667\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg></span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"timevalue === 'call back'\">\r\n\r\n <h3 class=\"title-val fw-semibold my-3\">Select Preferred Timing</h3>\r\n <div class=\"btn-group\" role=\"group\" aria-label=\"Basic example\">\r\n <button [ngClass]=\"callbackPreferredTiming === '9am -12pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '9am -12pm'\" type=\"button\" class=\"btn btn-secondary\">9am -12pm</button>\r\n <button [ngClass]=\"callbackPreferredTiming === '12pm - 5pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '12pm - 5pm'\" type=\"button\" class=\"btn btn-secondary\">12pm - 5pm</button>\r\n <button [ngClass]=\"callbackPreferredTiming === '5pm - 8pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '5pm - 8pm'\" type=\"button\" class=\"btn btn-secondary\">5pm - 8pm</button>\r\n </div>\r\n <h5 class=\"title-sub fw-normal my-3\">We'll call you back in next 24 business hours</h5>\r\n <textarea [formControl]=\"callbackDescription\" class=\"form-control text-area fw-normal\" placeholder=\"Be more specific...\" row=\"2\"></textarea>\r\n\r\n </div>\r\n <div class=\"row mt-10 mb-7\">\r\n <div class=\"col-md-6\">\r\n <button class=\"btn btn-default fw-bold w-100\" (click)=\"close()\">Cancel</button>\r\n </div>\r\n <div class=\"col-md-6\">\r\n <button class=\"btn btn-primary submit fw-bold w-100\" (click)=\"submitvalue()\">Confirm</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"overlay\" *ngIf=\"requestpopup\">\r\n <div class=\"popup\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <g id=\"Featured icon\">\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" fill=\"#DAF1FF\"/>\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" stroke=\"#EAF8FF\" stroke-width=\"8\"/>\r\n <g id=\"Check icon\">\r\n <rect x=\"16\" y=\"16\" width=\"24\" height=\"24\" rx=\"10\" fill=\"#DAF1FF\"/>\r\n <g id=\"Icon\">\r\n <mask id=\"path-3-inside-1_4346_82646\" fill=\"white\">\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.0965 23.3897L25.9365 30.2997L24.0365 28.2697C23.6865 27.9397 23.1365 27.9197 22.7365 28.1997C22.3465 28.4897 22.2365 28.9997 22.4765 29.4097L24.7265 33.0697C24.9465 33.4097 25.3265 33.6197 25.7565 33.6197C26.1665 33.6197 26.5565 33.4097 26.7765 33.0697C27.1365 32.5997 34.0065 24.4097 34.0065 24.4097C34.9065 23.4897 33.8165 22.6797 33.0965 23.3797V23.3897Z\"/>\r\n </mask>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.0965 23.3897L25.9365 30.2997L24.0365 28.2697C23.6865 27.9397 23.1365 27.9197 22.7365 28.1997C22.3465 28.4897 22.2365 28.9997 22.4765 29.4097L24.7265 33.0697C24.9465 33.4097 25.3265 33.6197 25.7565 33.6197C26.1665 33.6197 26.5565 33.4097 26.7765 33.0697C27.1365 32.5997 34.0065 24.4097 34.0065 24.4097C34.9065 23.4897 33.8165 22.6797 33.0965 23.3797V23.3897Z\" fill=\"#33B5FF\" stroke=\"#00A3FF\" stroke-width=\"4\" mask=\"url(#path-3-inside-1_4346_82646)\"/>\r\n </g>\r\n </g>\r\n </g>\r\n </svg>\r\n \r\n <h3 class=\"fw-bold get-touch my-5\">Thanks for your request!</h3>\r\n <div class=\"fw-normal get-sub mb-5\">Our team will get back to you shortly. Meanwhile explore more about us.\r\n </div>\r\n <div class=\"row mt-10 mb-7\">\r\n <div class=\"col-md-12\">\r\n <button class=\"btn btn-primary fw-bold w-100\" (click)=\"continuesignup()\">Continue Signing Up</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>","import { ChangeDetectorRef, Component, OnDestroy, OnInit, ViewChild } from '@angular/core';\r\nimport { NgbModal } from '@ng-bootstrap/ng-bootstrap';\r\nimport { Subscription, timer } from 'rxjs';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { GlobalStateService } from 'tango-app-ui-global';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n\r\ninterface InputStyles {\r\n [key: string]: string; // Define key-value pairs where keys are strings and values are strings\r\n}\r\n@Component({\r\n selector: 'lib-step3',\r\n templateUrl: './step3.component.html',\r\n styleUrl: './step3.component.scss'\r\n})\r\nexport class Step3Component implements OnInit, OnDestroy {\r\n inputValue: string = ''; // Initial input value\r\n isActive: boolean = false; // Flag for active state\r\n isHovered: boolean = false; // Flag for hover state\r\n isDisabled: boolean = false; // Flag for disabled state\r\n authlocalStorageToken: string;\r\n onMouseEnter() {\r\n this.isHovered = true;\r\n }\r\n\r\n // Function to handle mouse leave event\r\n onMouseLeave() {\r\n this.isHovered = false;\r\n }\r\n // Function to handle input change event\r\n onInputChange(value: string) {\r\n this.inputValue = value;\r\n }\r\n\r\n // Function to get input styles dynamically\r\n getInputStyles(): InputStyles {\r\n let styles: InputStyles = {}; // Define styles object with type InputStyles\r\n if (this.isActive) {\r\n styles['border-color'] = 'blue'; // Border color when input is active\r\n } else if (this.isHovered) {\r\n styles['border-color'] = 'green'; // Border color when input is hovered\r\n } else if (this.isDisabled) {\r\n styles['border-color'] = '#ccc'; // Border color when input is disabled\r\n styles['color'] = '#999'; // Text color when input is disabled\r\n } else {\r\n styles['border-color'] = '#ccc'; // Default border color\r\n styles['color'] = '#333'; // Default text color\r\n }\r\n return styles;\r\n }\r\n panelOpenState = false;\r\n termsandcondition: any;\r\n type: any;\r\n accountData: any;\r\n terms: any;\r\n idvalue: any;\r\n email: any;\r\n showvalue: boolean =false;\r\n @ViewChild('ngOtpInput') ngOtpInputRef: any;\r\n counter: number;\r\n tick: number;\r\n resend: boolean =true;\r\n countDown: any;\r\n otp: any;\r\n aboutFormData: any;\r\n pricingFormData: any;\r\n returnUrl: any;\r\n invalidOtp:boolean = false\r\n subscriptions:Subscription[] = []\r\n constructor(\r\n public modalService: NgbModal, private authService:AuthService, private router:Router, private route:ActivatedRoute, private cd:ChangeDetectorRef,\r\n private gs: GlobalStateService, private toastService:ToastService\r\n){\r\n this.subscriptions.push(\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n })\r\n )\r\n\r\n this.subscriptions.push(this.authService.aboutFormData.subscribe((data)=>{if(data){this.aboutFormData = data}}))\r\n this.subscriptions.push(this.authService.pricingFormData.subscribe((data)=>{if(data){this.pricingFormData = data}}))\r\n}\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\nngOnInit(): void {\r\n // get return url from route parameters or default to '/'\r\n this.returnUrl = this.route.snapshot.queryParams['returnUrl'.toString()] || '/'; \r\n}\r\n updateterms(evt: any) {\r\n this.terms = evt.target.checked\r\n }\r\n\r\n enterpriseactivate(){\r\n let data = {\r\n name:this.aboutFormData?.firstName,\r\n email:this.aboutFormData?.corporateEmail\r\n }\r\n this.subscriptions.push(\r\n this.authService.sendSignupOtp(data).subscribe(\r\n {\r\n next:(res)=>{\r\n if(res){\r\n this.counter = 60;\r\n this.tick = 1000;\r\n \r\n this.resend = false;\r\n \r\n this.countDown = timer(0, this.tick).subscribe(() => {\r\n if (this.counter == 0) {\r\n this.resend = true;\r\n this.countDown.unsubscribe()\r\n } else {\r\n this.counter = this.counter - 1;\r\n }\r\n this.cd.detectChanges()\r\n });\r\n document.body.classList.add('overlay-open');\r\n this.showvalue =true \r\n this.cd.detectChanges()\r\n }\r\n },\r\n error:(err)=>{\r\n if(err){\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n }\r\n ) \r\n )\r\n\r\n }\r\n\r\n resendOTP() {\r\n let data = {\r\n name:this.aboutFormData?.firstName,\r\n email:this.aboutFormData?.corporateEmail\r\n }\r\n this.subscriptions.push(\r\n this.authService.sendSignupOtp(data).subscribe(\r\n {\r\n next:(res)=>{\r\n if(res){\r\n this.ngOtpInputRef.setValue('');\r\n this.counter = 60;\r\n this.tick = 1000;\r\n \r\n this.resend = false;\r\n \r\n this.countDown = timer(0, this.tick).subscribe(() => {\r\n if (this.counter == 0) {\r\n this.resend = true;\r\n this.countDown.unsubscribe()\r\n } else {\r\n this.counter = this.counter - 1;\r\n }\r\n this.cd.detectChanges()\r\n });\r\n }\r\n },\r\n error:(err)=>{\r\n if(err){\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n }\r\n ) \r\n )\r\n\r\n }\r\n otpsubmit(){\r\n let data = {\r\n clientName: this.aboutFormData?.clientName,\r\n firstName: this.aboutFormData?.firstName,\r\n lastName: this.aboutFormData?.lastName,\r\n corporateEmail: this.aboutFormData?.corporateEmail,\r\n mobileNumber: this.aboutFormData?.mobileNumber,\r\n countryCode: this.aboutFormData?.countryCode,\r\n password: this.aboutFormData?.password,\r\n totalStores: this.pricingFormData?.totalStores.value,\r\n storeSize:this.pricingFormData?.storeSize.value,\r\n totalCamera: this.pricingFormData?.storeSize?.cameras,\r\n subscriptionPeriod: this.pricingFormData?.subscriptionPeriod,\r\n subscriptionType: this.pricingFormData?.subscriptionType,\r\n product: this.getTrueKeys(this.pricingFormData?.product),\r\n otp:this.otp\r\n }\r\n \r\n this.subscriptions.push(\r\n this.authService.signup(data).subscribe({\r\n next:(res)=>{\r\n if(res){\r\n this.authService.aboutFormData.next(null)\r\n this.authService.pricingFormData.next(null)\r\n \r\n document.body.classList.remove('overlay-open');\r\n this.showvalue =false \r\n this.cd.detectChanges()\r\n let loginToken: any =\r\n localStorage.getItem(this.authlocalStorageToken);\r\n if (loginToken) {\r\n loginToken = JSON.parse(loginToken);\r\n }\r\n \r\n localStorage.setItem(\r\n this.authlocalStorageToken,\r\n JSON.stringify(res?.data?.result)\r\n );\r\n \r\n this.userProfile();\r\n }\r\n },\r\n error:(res)=>{\r\n if(res){\r\n this.invalidOtp = true\r\n this.cd.detectChanges()\r\n }\r\n },\r\n }) \r\n )\r\n\r\n \r\n\r\n }\r\n\r\n onOtpChange(event:any){\r\n this.invalidOtp = false\r\n this.otp = event\r\n }\r\n\r\n getTrueKeys(obj: any) {\r\n return Object.keys(obj).filter(key => obj[key] === true);\r\n }\r\n\r\n userProfile() {\r\n this.subscriptions.push(\r\n this.authService.userProfileDet().subscribe({\r\n next: (res) => {\r\n if (res&& res.code ==200) {\r\n this.gs.userAccess.next(res.data?.permission)\r\n this.cd.detectChanges()\r\n this.router.navigate(['/manage/brands']);\r\n // this.router.navigateByUrl(this.returnUrl);\r\n } \r\n },\r\n error: (err) => {\r\n this.toastService.getErrorToast(err.error.error);\r\n localStorage.clear();\r\n },\r\n })\r\n )\r\n \r\n }\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div id=\"kt_content_container\" class=\"container-xxl font h-100 mx-10 pe-15 my-7\">\r\n <div class=\"h-550px sticky\">\r\n <div class=\"row\">\r\n <div class=\"col-lg-12 col-md-12 col-sm-12\">\r\n <div class=\"card-header align-items-center border-0 mt-5 px-0\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 mb-4 text-gray-800\">General Terms and Conditions-SAAS\r\n Agreement</span><span class=\" text-muted fw-semibold me-1 sub\">These terms and\r\n conditions (hereinafter collectively referred to as <span class=\"text-helight\">“SAAS\r\n Terms”)</span> shall govern your <span class=\"text-helight\">(“User”</span> or <span\r\n class=\"text-helight\">“You”</span> or <span class=\"text-helight\">“Your”</span>or\r\n <span class=\"text-helight\">“Customer”)</span> use of Services (as defined below) through\r\n this website https://tangoeye.ai/ <span class=\"text-helight\">(Website).</span></span>\r\n <span class=\" text-muted fw-semibold me-1 my-1 sub\">By accessing or using the Services\r\n through the Website or by executing an Order Form, that references these SAAS Terms, You\r\n agree to be bound by these SaaS Terms. If You are accessing or using the Software on\r\n behalf of a Company or other legal entity, You represent that You have the authority to\r\n bind such entity and its affiliates to these SAAS Terms in which case the terms “User”\r\n or “You” or “Your” or “Customer” shall refer to such entity and its affiliates.</span>\r\n </h3>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- <div class=\"card-body py-lg-2\"> -->\r\n <div class=\"text-align-justify\">\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-5\">\r\n <span class=\"termsheading\">1. Definition </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\"> “Order Form” means the each order form,\r\n proposal or statement of work referencing this Agreement wherever applicable. </li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\"> <span class=\"text-helight\">“Software”</span>\r\n means the data analytics and business intelligence software and its object code version\r\n which enables the Customer to identify, amongst others, customer footfalls,\r\n demographics, identify missed opportunities, including any updates or new versions.</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\"> <span\r\n class=\"text-helight\">“Services”</span>refer to the in-store AI driven analytics\r\n provided through the Software to the Customer that is hosted by Tango Eye and made\r\n available to Customer over a network whether on a trial or paid basis.</li>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\"> “Term” shall mean that period specified in a\r\n Schedule to be executed separately with the Customer during which Customer will have on-line\r\n access and use of the Services through the Website. </li> -->\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">2. Eligibility </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <span class=\"sub my-7\">In order to use the Services, You must:</span>\r\n <!-- <li class=\"text-muted fw-semibold sub my-7\"> Be above 18 years of age; </li> -->\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">Complete the account registration process to access\r\n the Services through the Website;</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">You will provide correct, upto date information\r\n during the registration process, including billing address;</li>\r\n <li class=\"text-muted fw-semibold sub my-5\"> You will keep all your credentials and password\r\n confidential and also responsible to maintaining the safety and security of your personal\r\n information; </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You will provide all relevant and required hardware\r\n and software as suggested by Tango Eye at your designated location in order to enable Tango\r\n Eye to install the Software in order to provide the Services.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">3. Services </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\"> In consideration for payment of the fees, Tango Eye\r\n grants the Customer a non-exclusive, non-transferable, personal, revocable, licence to\r\n access and use the Services in accordance with Tango Eye’s intended purpose for the Services\r\n <span class=\"text-helight\">(Licence).</span></li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">The Services are not contingent on the delivery of\r\n any future functionality or features</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to change or remove features of the Services and or the Software from time to time. Where there is any material alteration to the Services and or the Software in accordance with this clause, Tango Eye will provide the Customer with 30 business days’ notice and the Customer agrees that any material alteration is at Tango Eye’s discretion.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Access to the Services shall be limited to authorized persons with valid credentials which is to be agreed at the time of providing access to the Services and the Website. If it is a single account access, such account shall not be used by multiple users at the same time.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to change, modify, amend, update, suspend or discontinue the whole or any portion of the Services, Website or the SaaS Terms at any time.</li>\r\n <li class=\"text-muted fw-semibold sub my-3\">You agree that Tango Eye:</li>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">a. will supply the Services on a non-exclusive basis;\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">b. does not make any warranty or representation as to\r\n the ability of the facilities or services of any third-party suppliers; and</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">c. is not liable for any failure in, fault with or\r\n degradation of the Services/Software if that failure, fault or degradation is attributable\r\n to or caused by any failure of the Customer environment or the facilities or services of any\r\n third party.</div>\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">4. License Restrictions </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-3\"> You must not access or use the Services and or the Software except as permitted by the License and may not do or authorize the commission of any act that would or might invalidate or be inconsistent with the Tango Eye’s intellectual property rights in the Services or Software. Without limiting the foregoing provisions, the Customer agrees and acknowledges that it must not and will not permit any person to:</li>\r\n\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">a. resell, assign, transfer, distribute or provide others\r\n with access to the Services;</div>\r\n\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">b. “frame”, “mirror” or serve any of the Services/Software\r\n on any web server or other computer server over the internet or any other network;</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">c. copy, alter, modify, create derivative works from,\r\n reproduce, resell, transfer to a third party, reverse assemble, reverse engineer, reverse\r\n compile or enhance the Services or Software; or </div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">d .alter, remove or tamper with any trademarks, any patent\r\n or copyright notices, or any confidentiality legend or notice, or any numbers, or other means of\r\n identification used on or in relation to the Services or Software.</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer must not use the Services in any way which\r\n is in breach of any statute, regulation, law or legal right of any person within the Republic of\r\n India or the jurisdiction in which the Customer or its personnel are located. </li>\r\n\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">5. Prohibited Use </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub mt-7\">You agree to use the Website and the Services/Software\r\n accessed through it for the purpose enumerated under these SaaS Terms and agree not to undertake\r\n the following:</li>\r\n\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> a. Use of the Website and the Services to violate any\r\n applicable laws of any jurisdiction from which You access the Services.</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> b. Use the Services for competitive benchmarking or\r\n for developing a competitive product or services.</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> c. To upload or otherwise disseminate any computer\r\n viruses or other software that may the Software of Tango Eye;</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> d. To unlawfully gather information about others and\r\n use in in an unlawful manner;</div>\r\n <div class=\"text-muted fw-semibold sub mb-5 ms-5\"> e. To solicit others to perform or participate in any\r\n unlawful acts.</div>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\"> resell, assign, transfer, distribute or provide others\r\n with access to the Services;</li> -->\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">You acknowledge that Tango Eye will not be liable for\r\n any information that is relayed and stored in its cloud servers which is accessed through your\r\n systems. You shall always be responsible for the same at all times.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You agree to comply with all applicable laws statutes\r\n and regulations of the country you are accessing the Website/Software and the Services\r\n concerning the use of the information/video footage which is relayed through your cctv camera to\r\n the cloud storage of Tango Eye. </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You acknowledge that the Services has not been designed\r\n to collect or process any sensitive information and accordingly you agree not to use the\r\n Services to collect, process or store any sensitive personal data once you access the reports\r\n generated by Tango Eye in pursuance to the Services. Tango Eye specifically disclaim any\r\n liability that may result from your use of the Services to collect, process and store sensitive\r\n personal information.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to monitor the use of the\r\n Website/Services/Software by You to ensure compliance of these SaaS Terms and applicable law.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">In the event of violation of these SaaS Terms,\r\n applicable laws and regulations, Tango Eye shall have the right to investigate such breaches and\r\n take appropriate actions which shall include but not be limited to providing warning to first\r\n time offenders, suspending and or even terminating the Services and access to the Website.</li>\r\n </ul>\r\n </h3>\r\n\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">6. Invoicing: </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-7\">Invoices will be issued on the basis of the number of deployed stores in existence on the invoice date and shall be issued in accordance with the Payment Terms in the commercial terms above. Tango Eye shall bill Customer for applicable taxes as a separate line item on each invoice. Customer shall be responsible for payment of all sales and use taxes, Goods and Services tax, or similar charges relating to Customer’s purchase and use of the Services.</div>\r\n </ul>\r\n\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">7. Payment: </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Payment shall be made in accordance with the Payment\r\n Terms in the commercial terms which shall be agreed to separately between Tango Eye and the\r\n Customer and which shall be read and be coterminous with these SaaS Terms <span class=\"text-helight\">(Payment Terms).</span>\r\n Except as expressly provided otherwise, payments are non-refundable. In the event the Customer\r\n fails to make the payment as per the payment terms, Tango Eye shall send a written notice to the\r\n Client to ensure that the payment is made within 30 (thirty) days (“Additional Period”) from the\r\n date of receipt such written notice. If the customer fails to make the payment within the\r\n Additional Period, the access to the web portal will be blocked and the Services shall be\r\n suspended 7 (seven) days after sending a reminder email to Customer from the expiry of the\r\n Additional Period.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Parties acknowledge that time is of the essence with\r\n respect to payments required under this clause. In the event of any delay in payment by the\r\n Customer, Tango Eye may require the Customer to pay Tango Eye a late payment penalty equal to\r\n twelve percent (12%) per annum on all outstanding payments.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">8.Intellectual Property</span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">All Tango Eye Software, including the Website and any\r\n updates thereto, and any other intellectual property created by Tango Eye in furtherance to the\r\n Software or any works, products, documents, materials created using, incorporating, comprising\r\n in, or relating to such intellectual property (“Tango Eye IP”) shall at all times remain the\r\n exclusive property of Tango Eye and/or its nominees or affiliates, as the case may be, and the\r\n Customer shall not have any right, title, claim etc. whatsoever over the same. Nothing contained\r\n herein shall be construed as a transfer, assignment or conveyance by Tango Eye to Customer of\r\n the ownership, interest or title to the intellectual property or intellectual property rights in\r\n or attached to the Tango Eye IP. The Customer is only authorized to receive a right to access\r\n Tango Eye IP for the term explicitly granted by Tango Eye to Customer and in accordance with the\r\n provisions of these SaaS Terms. This authorization is non-exclusive, non-transferable and\r\n non-sub-licensable, unless otherwise agreed under this Agreement. Customer shall not have any\r\n right to modify, adapt, incorporate, create any derivative using or incorporating Tango Eye IP\r\n or in any manner transfer, encumber, alienate, sell, share, assign, license or sub-let it to any\r\n third party.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">As between the parties, Customer retains all right,\r\n title and interest in and to – </li>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">a. all raw data generated from the use of the Software,\r\n including text, sound, video, or image files, but excluding any Business Data (“Generated\r\n Data”); and  </div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">b. raw data owned by and relating to the Customer, such as\r\n company information, store location and details of the zones, employee information, but\r\n excluding any Generated Data (“Business , that is provided to Tango Eye by, or on behalf of, the\r\n Customer through the Customer’s use of the Software (together, “Customer Data”).</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer hereby grants to Tango Eye a non-exclusive,\r\n worldwide, fully paid up and royalty free right and license to use the Generated Data for (i)\r\n the provision of Services and fulfillment of obligations under these SaaS Terms and; (ii)\r\n improving the Software. </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer hereby grants to Tango Eye a non-exclusive,\r\n worldwide, fully paid up and royalty free right and license to use the Business Data for (i) the\r\n provision of Services and fulfillment of obligations under these SaaS Terms; and (ii) improving\r\n the Software.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Customer agrees to provide comments or feedback, if any,\r\n to Tango Eye regarding the Software or future releases/ development to the Software and\r\n reference of the work carried out during this engagement with the Customer or any and all\r\n knowledge and information of generic nature, arising out of use of the Software by the Customer,\r\n without disclosing any Customer Confidential Information or Customer Data.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer undertakes to promptly inform Tango Eye of\r\n any infringement of Tango Eye IP rights by third parties, and shall permit Tango Eye to assume\r\n sole authority to take appropriate legal action. Customer shall not make any statement or\r\n admission in relation to such claim which may prejudicially affect the chances of settlement or\r\n defense of such claim, and shall provide information and assistance reasonably requested in\r\n connection with such claim or suit.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye hereby undertakes, in the event that third\r\n parties act against the Customer for any reason whatsoever in relation to the Software or any\r\n Tango Eye IP, to provide the documentation in their possession and otherwise do and execute all\r\n acts, things, matters and deeds as may be reasonably required by the Customer, from time to time\r\n to show ownership of such Tango Eye IP.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Customer hereby consents and opts in to receive communications that Tango Eye may send via call or message service relating to this Agreement, to Customer including its employees, staff and other representatives.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">9. Data Protection and Privacy </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Each Party shall at all times comply with its\r\n obligations under applicable privacy regulations in relation to the Generated Data, Business\r\n Data, and Customer Data that is collected, stored and/or processed by it in the course of\r\n performing its obligations under these SaaS Terms. Further each Party shall process such\r\n Generated Data, Business Data, and Customer Data only to the extent necessary for the purposes\r\n of performing their respective obligations under these SaaS Terms </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Each party shall take appropriate technical and\r\n organizational measures as required under applicable law against any data breach, unauthorized\r\n or unlawful processing of the personal data or its accidental loss, destruction or damage.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">10. Representations, Warranties and Disclaimers </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Each Party represents, warrants and covenants to the\r\n other that: (i) it is duly organized and validly existing and in good standing under the laws of\r\n the state of its incorporation or formation; (ii) it has the full right and authority to enter\r\n into these SaaS Terms and that these SaaS Terms constitutes a legal, valid and binding\r\n obligation; (iii) the execution, delivery and performance of these SaaS Terms does not and will\r\n not conflict with, or constitute a breach or default under, its charter of organization, or any\r\n contract or other instrument to which it is a party; (iv) it will comply with, and will ensure\r\n all of its personnel, third party agents, consultants etc., comply with all laws and regulations\r\n applicable to (i) the provision, or access and use of the Software; and (ii) performance of\r\n obligations under these SaaS Terms, including without limitation laws and regulations related to\r\n privacy, data protection, electronic communications, export and confidentiality.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye represents, warrants and covenants that (i)\r\n Tango Eye personnel shall provide the Services in a diligent and professional manner with due\r\n care (ii) Tango Eye IP does not and will not infringe, misappropriate or otherwise violate the\r\n intellectual property rights of any party within the territory of India and or any other country\r\n where its righst are registered; and (iii) all Services that are provided will be free from any\r\n known malicious code or instructions that may intentionally disrupt, damage or interfere with\r\n any use by Customer. Tango Eye further warrants and represents to the Customer that it holds,\r\n and will continue to hold, any and all licenses, permits or other authorizations required by any\r\n applicable law to perform the Services in accordance with these SaaS Terms.</li>\r\n <div class=\"text-muted fw-semibold sub my-5\"><span class=\"text-helight\">“Applicable law”</span> means any applicable law, statute,\r\n rule, regulation, ordinance, requirement, directions, guidelines, announcement or other binding\r\n action or requirement of any government or quasi government; department, agency or\r\n instrumentality of any government thereof, any court or arbitral tribunal applicable and\r\n existing under the republic of India.</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">THE SOFTWARE AND ANYTHING PROVIDED IN CONNECTION WITH\r\n THESE SaaS TERMS ARE PROVIDED “AS-IS”. EXCEPT FOR THE EXPRESS REPRESENTATIONS AND WARRANTIES IN\r\n THIS SECTION 6, TANGO EYE DOES NOT MAKE ANY REPRESENTATIONS OR WARRANTIES, EXPRESS, IMPLIED OR\r\n STATUTORY INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, QUALITY,\r\n FITNESS FOR A PARTICULAR PURPOSE, SYSTEM INTEGRATION, ERROR-FREE, UN-INTERRUPTION, SUPPORT\r\n CORRECTION OR REPAIR (UNLESS OTHERWISE AGREED) OR OTHERWISE THAT TANGO EYE SOFTWARE HEREUNDER\r\n WILL OPERATE IN EVERY COMBINATION OR ENVIRONMENT DESIRED BY CUSTOMER WITH ANY DATA, DEVICES,\r\n COMPUTER SYSTEMS AND PROGRAMS OF ITS CHOICE OR THAT THE REMEDYING OF ONE PROGRAM ERROR DOES NOT\r\n RESULT IN THE OCCURRENCE OF OTHER PROGRAM ERRORS. ALL SUCH REPRESENTATIONS AND WARRANTIES ARE\r\n HEREBY DISCLAIMED.</li>\r\n <li class=\"text-muted fw-semibold sub mt-5\">\r\n The Customer warrants that: </li>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> a. Customer Data does not and will not infringe,\r\n misappropriate or otherwise violate the intellectual property rights of any third party;</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">b. it will be responsible for any security\r\n vulnerabilities and the consequences of such vulnerabilities arising solely from the nature of\r\n Customer Data;</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> c. it shall be responsible for ensuring that End\r\n Users comply with all requirements under these SaaS Terms in relation to the use of the Software\r\n (to the extent applicable);</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> d. it shall immediately notify Tango Eye of (a)\r\n any account-related abuse; (b) the unauthorized disclosure, use and distribution of their\r\n account credentials by or to any third party; and</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> e. it shall not, and shall not permit any party\r\n or person to, access or use the Software except as expressly permitted by these SaaS TERMS.\r\n Without limiting the generality of the foregoing, Customer shall not, and shall not permit any\r\n party or person to:</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\"> 1. interfere with or disrupt the integrity or\r\n performance of the Software, or circumvent, bypass, delete or remove any form of protection, or\r\n usage, functionality or technical restrictions or limitations, or to enable functionality\r\n disabled by Tango Eye, in connection with the Software;</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\"> 2. access or use the Software provided under\r\n these SaaS Terms, in any manner or for any purpose that violates any applicable law, the rights\r\n of others, in a way that could harm the service.</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\">3. reverse engineer, disassemble, de-compile,\r\n recreate, copy or reproduce the source code or object code of the Software or perform any\r\n customizations (without Tango Eye’s prior written consent); and</div>\r\n\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">11. Customer’s Account </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">\r\n Customers are fully responsible to safeguard their access credentials - including in the sense\r\n of the combination of username and password.</div>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">12. Duration, Renewal and Termination </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Unless otherwise specified in the proposal, these SaaS Terms shall continue to be effective during\r\n the\r\n period\r\n the Customer uses and or continues to use the Software, unless terminated in accordance with the\r\n terms set\r\n out\r\n herein.\r\n </li>\r\n <div class=\"text-muted fw-semibold sub my-5\">\r\n Unless otherwise specified in the Order Form, fees shall be subject to automatic increment at the rate of 7% per annum after every 12 months.\r\n </div>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Either party may terminate their business relationship under these SaaS Terms immediately upon a\r\n material\r\n breach by the other party that has not been cured within thirty (30) days after receipt of notice of\r\n such\r\n breach.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Either party may also terminate this Agreement upon thirty (30) days written notice without\r\n assigning any\r\n reason. Customer will pay in full for the Software up to and including the last day on which the\r\n Software\r\n was used.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Effect of Termination.\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (a) Upon termination of these SaaS Terms, Tango Eye shall immediately cease providing access to the Software.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (b) Upon termination of these SaaS Terms, Tango Eye may delete the Generated Data, Business Data and Customer Data collected, stored and/or processed under these SaaS Terms for the purpose of providing the Software within 15 (fifteen) days of receipt of notice of termination of these SaaS Terms.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (c) If Tango Eye terminates these SaaS Terms due to a breach by Customer of any of the provisions contained under these SaaS Terms, then Customer shall immediately pay to Tango Eye all amounts then due under these SaaS Terms. If Customer terminates these SaaS Terms due to a breach by Tango Eye, then Tango Eye shall immediately repay to Customer all pre-paid amounts for any unperformed Services scheduled to be delivered after the termination date.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (d) Subject to the rights granted under these SaaS Terms, upon its termination and upon subsequent written request by the Disclosing Party, the Receiving Party of tangible Confidential Information shall immediately return such information or destroy such information and provide written certification of such destruction, provided that the receiving party may permit its legal counsel to retain one archival copy of such information in the event of a subsequent dispute between the parties.\r\nThe provisions relating to confidentiality, as well as for liability, applicable law and settlement of disputes shall survive the expiration or termination of these SaaS Terms.\r\n </div>\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Termination shall not affect any rights or obligations of the parties incurred prior to the date of termination, unless otherwise agreed between the parties.\r\n </li>\r\n </ul>\r\n </div>\r\n\r\n <!-- <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">13. Effect of Termination. </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Upon termination of these SaaS Terms, Tango Eye shall immediately cease providing access to the\r\n Software.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Upon termination of these SaaS Terms, Tango Eye shall delete the Generated Data, Business Data and\r\n Customer Data\r\n collected, stored and/or processed under these SaaS Terms for the purpose of providing the Software\r\n within 15\r\n (fifteen) days of receipt of notice of termination of these SaaS Terms.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n If Tango Eye terminates these SaaS Terms due to a breach by Customer of any of the provisions\r\n contained under these\r\n SaaS Terms, then Customer shall immediately pay to Tango Eye all amounts then due under these SaaS\r\n Terms. If\r\n Customer terminates these SaaS Terms due to a breach by Tango Eye, then Tango Eye shall immediately\r\n repay to\r\n Customer all pre-paid amounts for any unperformed Services scheduled to be delivered after the\r\n termination date.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Subject to the rights granted under these SaaS Terms, upon its termination and upon subsequent\r\n written request by\r\n the Disclosing Party, the Receiving Party of tangible Confidential Information shall immediately\r\n return such\r\n information or destroy such information and provide written certification of such destruction,\r\n provided that the\r\n receiving party may permit its legal counsel to retain one archival copy of such information in the\r\n event of a\r\n subsequent dispute between the parties.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n The provisions relating to confidentiality, as well as for liability, applicable law and settlement\r\n of disputes\r\n shall survive the expiration or termination of these SaaS Terms.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Termination shall not affect any rights or obligations of the parties incurred prior to the date of\r\n termination,\r\n unless otherwise agreed between the parties.\r\n </li>\r\n </ul>\r\n </div> -->\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">13. Access to Analytics via Web Portal & Excel Reports</span>\r\n </h3>\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">The analytics is designed for use with a) web-based\r\n application, b) excel reports sent via email or File Transfer Protocol.\r\n </div>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\">Training: All “Software” used in connection with the\r\n Services. For avoidance of doubt, it is clarified that Tango Eye agrees to provide sample dashboard\r\n and arrange for training sessions to the Customer as mutually agreed by the Parties.\r\n </li> -->\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">14. Training </span>\r\n </h3>\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">All “Software” used in connection with the Services. For avoidance of doubt, it is clarified that Tango Eye agrees to provide a sample dashboard and arrange for training sessions to the Customer as mutually agreed by the Parties.\r\n </div>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">15. Confidential Information </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">All proprietary or confidential information, technical data,\r\n or know-how and all other non-public information, material or data in whatever form or mode of\r\n communication, which is disclosed by a party (“Disclosing Party”) to the other party (“Receiving\r\n Party”) in connection with the Software access and usage whether marked as “confidential” or not at\r\n the time of disclosure, shall be treated as “Confidential Information”. Confidential Information\r\n shall include, but not be limited to, the terms and pricing/commercial terms under these SaaS Terms,\r\n the technical and other specifications of the Software, any information specific to the software\r\n license codes and content as well as the software and hardware architecture and components, and all\r\n other non-public information.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Receiving Party undertakes: (i) not to use Confidential\r\n Information otherwise than for the purpose for which it was disclosed or to permit the Receiving\r\n Party to exercise rights and licenses granted under these SaaS Terms ; (ii) not to disclose\r\n Confidential Information without the prior written consent of the Disclosing Party, other than to\r\n those employees, agents, contractors, subcontractors, licensees of the Receiving Party, its\r\n Affiliates or any other parties who have a need to know it in order to assist the Receiving Party in\r\n performing its obligations, or to permit the Receiving Party to exercise its rights  and licenses\r\n under this Agreement; (iii) to take all such steps to prevent unauthorized access to the Disclosing\r\n Party’s Confidential Information, as it takes to protect its own confidential or proprietary\r\n information of a similar nature, which steps shall in no event be less than a reasonable standard of\r\n care; and iv) to return to the Customer, or destroy, on request all Confidential Information that\r\n has been disclosed to them, including all copies thereof and to delete all information stored in a\r\n machine-readable form to the extent practically possible, subject to any rights or licenses granted\r\n under these SaaS Terms .\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The obligations in relation to Confidential Information\r\n under these SaaS Terms  shall not apply to Confidential Information, which (i) has become or becomes\r\n publicly available by means other than a breach of confidentiality obligations; (ii) was already\r\n known to the Receiving Party prior to disclosure; (iii) the Receiving Party is required to disclose\r\n in order to comply with applicable laws or regulations or with a court or administrative order; or\r\n (iv) is independently developed by the Receiving Party without reference to or use of any\r\n Confidential Information of the Disclosing Party.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Receiving Party shall promptly, and in any case within\r\n three (3) days advise the Disclosing Party in writing of any unauthorized disclosure,\r\n misappropriation or misuse of Confidential Information after it becomes aware of it and vice versa.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">If either party becomes aware that it will be required, or\r\n is likely to be required, to disclose Confidential Information in order to comply with applicable\r\n laws or regulations or with a court or administrative order, it shall, to the extent it is lawfully\r\n able to do so, prior to any such disclosure notify the other party, and comply with the other\r\n party’s instructions to protect the confidentiality of the information.\r\n </li>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">16. Indemnity and Limitation of Liability </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Without prejudice to any other right available in law or under equity, each party hereby agrees to\r\n compensate, indemnify, defend and hold harmless the other, its affiliates, directors, shareholders,\r\n officers and employees and agents, from and against any and all losses, liabilities, damages,\r\n deficiencies, demands, claims (including third party claims), actions, judgments or causes of\r\n action, assessments, interest, penalties and other costs or expenses (including, without limitation,\r\n reasonable attorneys' fees and expenses) based upon, arising out of, or in relation to or otherwise\r\n in respect of (i) any breach of its obligations under these SaaS Terms ; or (ii) any willful\r\n misconduct, fraud, or wrongful or negligent act or omission of a Party.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n In no event shall either Party be liable to the other for any indirect, incidental, punitive,\r\n exemplary, special or consequential damages, or damages for loss of profits, revenue, whether in an\r\n action in contract or tort, or otherwise (collectively referred to as “Indirect Losses”) even if\r\n advised of the possibility of such damages.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Each Party’s liability arising out of or in connection with the breach of any direct and actual\r\n liabilities, costs, losses, damages, suits, proceedings, costs, expenses or liabilities suffered or\r\n incurred due to resulting due to claims for breach of intellectual property of a Party or third\r\n party, breach of confidentiality obligation, data breach, breach of data privacy, fraud, willful\r\n negligence, gross misconduct or breach of applicable laws shall in no event exceed the annual total\r\n purchase price paid pursuant to grant of access and usage of the Services/Software by the Customer.\r\n </li>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">17. Force Majeure </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Each of the Parties is not responsible nor liable for any delays or failures in performance from any\r\n cause beyond its control, including, but not limited to acts of God, changes to law or regulations,\r\n embargoes, war, terrorist acts, acts or omissions of third party technology providers, riots, fires,\r\n earthquakes, floods, power blackouts, strikes, weather conditions, pandemic, epidemic, government\r\n lockdowns or any other unforeseeable event beyond its control (hereinafter collectively referred to\r\n as <span class=\"text-helight\">“Force Majeure Event”)</span>. Upon occurrence of any Force Majeure Event, either Party shall give\r\n notice to the other party of its inability to perform or of delay in completing its obligations and\r\n must act diligently to remedy the cause and restore performance, to the extent possible.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Where Force-Majeure Event continues for a period more than Sixty (60) continuous days, then the\r\n effected Party shall have the right to immediately terminate these SaaS Terms Agreement by providing\r\n a written notice.</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">18. Miscellaneous</span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n These SaaS Terms is drawn up in English, which language shall govern all documents, notices,\r\n meetings, proceedings and processes relative thereto.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Nothing in these SaaS Terms shall be deemed to constitute a joint venture, agency, partnership,\r\n interest grouping or any other kind of formal business grouping or entity between the Parties.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n No rights or obligations of the Parties arising from these SaaS Terms may be assigned,\r\n sub-contracted, or transferred, in whole or in part, to any third party without the other party’s\r\n prior written approval.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\"> In case of conflict terms between these SaaS Terms and Order Form, the Order Form will prevail.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Governing Law, Jurisdiction. These SaaS Terms shall be governed by the laws of India, and the\r\n Parties hereby agree to irrevocably submit to the exclusive jurisdiction of the courts of New Delhi\r\n in respect of all disputes arising out of these SaaS Terms.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n<div class=\"row g-0 mb-0 bg-terms\">\r\n <div class=\"col-md-10\">\r\n <label class=\"form-check form-check-custom form-check-solid form-check-inline \">\r\n <input class=\"form-check-input\" type=\"checkbox\" required name=\"toc\" value=\"1\"\r\n (click)=\"updateterms($event)\" />\r\n <span class=\"form-check-label fw-bold text-gray-700\">\r\n </span>\r\n <span class=\"textsize mt-3\">I agree to the terms and conditions.</span>\r\n </label>\r\n\r\n </div>\r\n <div class=\"col-md-2\">\r\n <button [disabled]=\"!terms\" type=\"button\" class=\"btn btn-lg btn-primary ms-15 me-5 text-nowrap\" (click)=\"enterpriseactivate()\">\r\n Sign Up\r\n </button>\r\n </div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"overlay\" *ngIf=\"showvalue\">\r\n\t<div class=\"popup\">\r\n\t\t<h1 class=\"a-o-i\">Verification Code</h1>\r\n <h5 class=\"sub-aoi\">An OTP has been sent to your mail. Please check & submit.</h5>\r\n <div class=\"otp-container d-flex\">\r\n <div class=\"otp-input d-flex\">\r\n <ng-otp-input #ngOtpInput (onInputChange)=\"onOtpChange($event)\" inputmode=\"numeric\" class=\"verification-code\" placeholder=\"0\" \r\n [config]=\"{ length: 4 ,allowNumbersOnly:true}\"></ng-otp-input>\r\n \r\n </div>\r\n </div>\r\n <span *ngIf=\"invalidOtp\" class=\"d-flex justify-content-center text-danger\" >\r\n Invalid OTP !\r\n </span>\r\n \r\n <div class=\"text-center\">\r\n <label *ngIf=\"resend\" class=\"small_lg cursor-pointer\" \r\n (click)=\"resendOTP()\"><b>Resend OTP</b></label>\r\n\r\n <label *ngIf=\"!resend\" class=\"small_lbl \" >Resend OTP ( {{counter\r\n }} )</label>\r\n </div>\r\n <div class=\"my-3\">\r\n <button type=\"button\" class=\"btn btn-lg btn-primary me-5 w-100 text-nowrap\" (click)=\"otpsubmit()\">\r\n Submit\r\n </button>\r\n </div>\r\n\t</div>\r\n</div>\r\n\r\n","import { Component, OnDestroy, OnInit } from '@angular/core';\r\nimport { BehaviorSubject, Subscription } from 'rxjs';\r\nimport { ConversionService } from '../step/services/conversion.service';\r\n\r\n@Component({\r\n selector: 'lib-vertical',\r\n templateUrl: './vertical.component.html',\r\n styleUrl: './vertical.component.scss'\r\n})\r\nexport class VerticalComponent implements OnInit, OnDestroy {\r\n formsCount = 3;\r\n account$: BehaviorSubject<any> =\r\n new BehaviorSubject<any>('');\r\n currentStep$: BehaviorSubject<number> = new BehaviorSubject(1);\r\n isCurrentFormValid$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(\r\n false\r\n );\r\n private unsubscribe: Subscription[] = [];\r\n prevStepdata: any;\r\n\r\n constructor(private setterService: ConversionService) {}\r\n ngOnDestroy(): void {\r\n this.unsubscribe.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\n ngOnInit(): void {\r\n this.unsubscribe.push(\r\n this.setterService.$stepper.subscribe((data: any) => {\r\n if (data?.prev){ \r\n this.prevStep();\r\n this.prevStepdata = data.data\r\n } \r\n else this.nextStep();\r\n })\r\n )\r\n\r\n\r\n }\r\n\r\n updateAccount = (part: Partial<any>, isFormValid: boolean) => {\r\n const currentAccount = this.account$.value;\r\n const updatedAccount = { ...currentAccount, ...part };\r\n this.account$.next(updatedAccount);\r\n this.isCurrentFormValid$.next(isFormValid);\r\n };\r\n\r\n nextStep() {\r\n const nextStep = this.currentStep$.value + 1;\r\n if (nextStep > this.formsCount) {\r\n return;\r\n }\r\n this.currentStep$.next(nextStep);\r\n }\r\n\r\n prevStep() {\r\n const prevStep = this.currentStep$.value - 1;\r\n if (prevStep === 0) {\r\n return;\r\n }\r\n this.currentStep$.next(prevStep);\r\n }\r\n}\r\n","\r\n<div class=\"linearGradient fixed-element h-100\">\r\n <div class=\"d-flex justify-content-center justify-content-xl-start flex-row-auto\">\r\n\r\n<div class=\"stepper stepper-pills stepper-column \r\n \" id=\"kt_create_account_stepper\">\r\n <!--begin::Aside-->\r\n \r\n <div class=\"row justify-content-center logotext my-20\">\r\n <img class=\"mt-10\" src=\"./assets/tango/Icons/TangoEye.svg\" style=\"max-width: 35%\" alt=\"\">\r\n </div>\r\n <div class=\"card-body px-6 px-lg-10 px-xxl-15\">\r\n <div class=\"stepper-nav\">\r\n\r\n <div class=\"stepper-item my-5 pe-15\" [class.brandbg]=\"currentStep$.value === 1\" [ngClass]=\"{\r\n current: currentStep$.value === 1,\r\n completed: currentStep$.value > 1\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">1</i>\r\n <span class=\"stepper-number\">1</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n About\r\n </h3>\r\n\r\n <div class=\"stepper-desc fw-semibold\">\r\n Provide brand details\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n \r\n </div>\r\n\r\n <div class=\"stepper-item my-5\" [class.brandbg]=\"currentStep$.value === 2\" [ngClass]=\"{\r\n current: currentStep$.value === 2,\r\n completed: currentStep$.value > 2\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">2</i>\r\n <span class=\"stepper-number\">2</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n Pricing \r\n </h3>\r\n <div class=\"stepper-desc fw-semibold\">\r\n Choose suitable plan\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n \r\n </div>\r\n\r\n <div class=\"stepper-item my-5\" [class.brandbg]=\"currentStep$.value === 3\" [ngClass]=\"{\r\n current: currentStep$.value === 3,\r\n completed: currentStep$.value > 3\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">3</i>\r\n <span class=\"stepper-number\">3</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n Sign Up\r\n </h3>\r\n <div class=\"stepper-desc fw-semibold\">\r\n Let's get started\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n </div>\r\n\r\n <div class=\"text-center\">\r\n <div class=\"footerleft text-center\" style=\" bottom: 3%;\"> Already\r\n have an\r\n Account? <a _ngcontent-skm-c153=\"\" href=\"/auth/login\" class=\"link-primary fw-bolder\"\r\n href=\"/auth/login\">Sign\r\n In</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </div>\r\n <!--begin::Aside-->\r\n </div>\r\n \r\n </div>\r\n\r\n\r\n\r\n ","import { Component, OnDestroy, OnInit } from '@angular/core';\r\nimport { ConversionService } from './step/services/conversion.service';\r\nimport { BehaviorSubject, Subscription } from 'rxjs';\r\nimport { PageInfoService } from 'tango-app-ui-global';\r\n\r\n@Component({\r\n selector: 'lib-tango-auth-signup',\r\n templateUrl: './tango-auth-signup.component.html',\r\n styleUrl: './tango-auth-signup.component.scss'\r\n})\r\nexport class TangoAuthSignupComponent implements OnInit, OnDestroy {\r\n\r\n formsCount = 3;\r\n account$: BehaviorSubject<any> =\r\n new BehaviorSubject<any>('');\r\n currentStep$: BehaviorSubject<number> = new BehaviorSubject(1);\r\n isCurrentFormValid$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(\r\n false\r\n );\r\n prevStepdata: any;\r\n subscriptions:Subscription[] = []\r\n constructor(\r\n private setterService: ConversionService,private pageInfo:PageInfoService){}\r\n\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\n ngOnInit(): void {\r\n this.subscriptions.push(\r\n this.setterService.$stepper.subscribe((data: any) => {\r\n if (data?.prev){ \r\n this.prevStep();\r\n this.prevStepdata = data.data\r\n } \r\n else this.nextStep();\r\n }) \r\n )\r\n this.pageInfo.setTitle('Signup')\r\n \r\n }\r\n updateAccount = (part: Partial<any>, isFormValid: boolean) => {\r\n const currentAccount = this.account$.value;\r\n const updatedAccount = { ...currentAccount, ...part };\r\n this.account$.next(updatedAccount);\r\n this.isCurrentFormValid$.next(isFormValid);\r\n };\r\n \r\n\r\n nextStep() {\r\n const nextStep = this.currentStep$.value + 1;\r\n if (nextStep > this.formsCount) {\r\n return;\r\n }\r\n this.currentStep$.next(nextStep);\r\n }\r\n\r\n prevStep() {\r\n const prevStep = this.currentStep$.value - 1;\r\n if (prevStep === 0) {\r\n return;\r\n }\r\n this.currentStep$.next(prevStep);\r\n }\r\n\r\n}\r\n","<div class=\"row me-0\">\r\n <lib-vertical class=\"col-lg-4 col-xl-3 col-xxl-3 p-0\"></lib-vertical>\r\n\r\n <!--begin::Content-->\r\n <div class=\" col-lg-8 col-xl-9 col-xxl-9 mb-10\">\r\n <div class=\"current\">\r\n <ng-container *ngIf=\"currentStep$.value === 1\">\r\n <lib-step1 class=\"w-100 \" [prevStepdata]='prevStepdata' [updateParentModel]=\"updateAccount\" [defaultValues]=\"account$.value\"></lib-step1>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentStep$.value === 2\">\r\n <lib-step2 class=\"w-100 \" [updateParentModel]=\"updateAccount\" [defaultValues]=\"account$.value\"></lib-step2>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentStep$.value === 3\">\r\n <lib-step3 class=\"w-100 \"></lib-step3>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- <div class=\"d-flex flex-stack py-2\">\r\n <div class=\"mr-2\">\r\n <ng-container *ngIf=\"currentStep$.value == 2\">\r\n <button type=\"button\" class=\"btn btn-lg btn-light-primary me-5\" (click)=\"prevStep()\">\r\n Previous\r\n </button>\r\n </ng-container>\r\n \r\n </div>\r\n\r\n </div> -->\r\n <!-- <div *ngIf=\"currentStep$.value !== 3\" class=\"my-5 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"text-muted fw-semibold me-1\">© 2024 </span>\r\n <a target=\"_blank\" class=\"text-gray-800 text-hover-primary\">Tango IT solutions</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-10\">\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div> -->\r\n </div>\r\n <!-- </div> -->\r\n </div>\r\n <!--end::Content-->\r\n<!-- </div> -->","import { Component } from '@angular/core';\r\nimport { AbstractControl, FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\nimport { AuthService } from '../../services/auth.service';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { PageInfoService } from 'tango-app-ui-global';\r\n\r\n@Component({\r\n selector: \"lib-tango-auth-forgot-password\",\r\n templateUrl: \"./tango-auth-forgot-password.component.html\",\r\n styleUrl: \"./tango-auth-forgot-password.component.scss\",\r\n})\r\nexport class TangoAuthForgotPasswordComponent {\r\n emailEnable: boolean = true;\r\n OTP: any;\r\n passwordEnable: boolean = false;\r\n newPasswordShow: boolean = false;\r\n verifyPasswordShow: boolean = false;\r\n confirmPasswordShow: boolean = false;\r\n email = new FormControl(\"\", [\r\n Validators.required,\r\n Validators.email,\r\n Validators.maxLength(100),\r\n Validators.minLength(3),\r\n ]);\r\n PasswordForm: FormGroup;\r\n\r\n constructor(\r\n private toast: ToastService,\r\n private authService: AuthService,\r\n private activatedRoute: ActivatedRoute,\r\n private fb: FormBuilder,\r\n private router: Router,private pageInfo:PageInfoService\r\n ) {\r\n \r\n this.PasswordForm = this.fb.group({\r\n password: [\r\n \"\",\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator\r\n ]),\r\n ],\r\n confirmPassword: [\r\n \"\",\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator,\r\n this.validateAreEqual.bind(this),\r\n ]),\r\n ],\r\n token: [\r\n \"\",\r\n Validators.required\r\n ]\r\n });\r\n\r\n \r\n this.activatedRoute.queryParams.subscribe({\r\n next: (qparams: any) => {\r\n if (qparams) {\r\n if (qparams.token) {\r\n this.passwordEnable = true;\r\n this.emailEnable = false;\r\n this.PasswordForm.get('token')?.setValue(qparams.token);\r\n } else {\r\n this.emailEnable = true;\r\n this.passwordEnable = false;\r\n }\r\n }\r\n },\r\n });\r\n\r\n this.PasswordForm.get('password')?.valueChanges.subscribe(() => {\r\n this.PasswordForm.get('confirmPassword')?.updateValueAndValidity();\r\n });\r\n \r\n }\r\n noSpaceValidator(control: AbstractControl): { [key: string]: any } | null {\r\n if (control.value && control.value.indexOf(' ') >= 0) {\r\n return { 'noSpaces': true };\r\n }\r\n return null;\r\n }\r\n validateAreEqual(fieldControl: AbstractControl<any>) {\r\n return fieldControl?.value === this.PasswordForm?.get(\"password\")!.value ? null : { NotEqual: true };\r\n }\r\n\r\n onSubmit() {\r\n this.authService\r\n .forgotPasswordTrigger({ email: this.email.value })\r\n .subscribe({\r\n next: (res: any) => {\r\n if (res && res.code == 200) {\r\n this.toast.getSuccessToast(\r\n `Reset password link sent to ${this.email.value}`\r\n );\r\n } else {\r\n this.toast.getErrorToast(\r\n `Unable to send reset password link to ${this.email.value}`\r\n );\r\n }\r\n },\r\n error: () => {\r\n this.toast.getErrorToast(\r\n `Unable to send reset password link to ${this.email.value}`\r\n );\r\n },\r\n });\r\n }\r\n\r\n showNewPassword() {\r\n this.newPasswordShow = !this.newPasswordShow;\r\n }\r\n\r\n showVerifyPassword() {\r\n this.verifyPasswordShow = !this.verifyPasswordShow;\r\n }\r\n\r\n showConfirmPassword() {\r\n this.confirmPasswordShow = !this.confirmPasswordShow;\r\n }\r\n\r\n onPasswordSubmit() {\r\n this.authService.forgotPassword(this.PasswordForm.value).subscribe({\r\n next: (res: any) => {\r\n if(res && res.code == 200) {\r\n this.toast.getSuccessToast(\"Password updated successfully.\");\r\n this.router.navigate(['auth/login']);\r\n } else {\r\n this.toast.getErrorToast('Unable to reset password! Please try again later.');\r\n }\r\n },\r\n error: () => {\r\n this.toast.getErrorToast('Unable to reset password! Please try again later.');\r\n },\r\n });\r\n }\r\n}\r\n","<div class=\"container\">\r\n <div class=\"row position-absolute\">\r\n <div class=\"col-md-6 pe-10 d-flex justify-content-center align-items-center \">\r\n <img src=\"./assets/tango/Icons/LHS.svg\" alt=\"Image\" class=\"img-fluid\">\r\n </div>\r\n @if (emailEnable) {\r\n <div class=\"col-md-6 ps-10 d-flex justify-content-center align-items-center\">\r\n <div class=\"card card-flush w-lg-600px ms-20 py-3 mt-20\">\r\n\r\n <div class=\"login-form login-signin w-100\">\r\n\r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-10 ms-10\">\r\n <h1 class=\"title my-4\"> Forgot Password\r\n </h1>\r\n <div class=\"title-subtitle mb-1\"> Enter the Email associated with your account and\r\n we'll send you a OTP to reset your password.\r\n </div>\r\n </div>\r\n <form class=\"w-100 title-padding\" novalidate=\"novalidate\">\r\n <div class=\"mb-1\">\r\n <label class=\"label\">Email</label>\r\n <input class=\"form-control my-3\" [formControl]=\"email\" type=\"email\" id=\"email\"\r\n name=\"email\">\r\n </div>\r\n </form>\r\n\r\n <div class=\"d-flex mt-5 mb-5 mx-10\" role=\"group\">\r\n\r\n <button class=\"btn btn-primary w-100\" id=\"alert-toast\" [disabled]=\"email.invalid\"\r\n (click)=\"onSubmit()\">Request reset link</button>\r\n </div>\r\n <a class=\"text-decoration-underline backtologin text-center my-3\" routerLink=\"/auth/login\">Back\r\n to\r\n login</a>\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-20\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\"\r\n class=\"footer text-decoration-underline cursor-pointer\">&#64;TangoITSolutions\r\n India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\"\r\n class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path\r\n d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\"\r\n stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n\r\n\r\n\r\n </div>\r\n </div>\r\n }\r\n @if(passwordEnable) {\r\n <div class=\"col-md-6 ps-10 d-flex justify-content-center align-items-center\">\r\n <div class=\"card card-flush w-lg-600px ms-20 py-3 mt-20\">\r\n\r\n <div class=\"login-form login-signin w-100\">\r\n\r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-5 ms-10\">\r\n\r\n <h1 class=\"title my-4\">Reset Password\r\n </h1>\r\n <div class=\"title-subtitle mb-7\">Enter a new password to reset the password on your account\r\n </div>\r\n <form [formGroup]=\"PasswordForm\" novalidate=\"novalidate\" class=\"\">\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 mb-7\">\r\n <label for=\"email\" class=\"form-label\">New Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input [type]=\"newPasswordShow ? 'text' : 'password'\" class=\"form-control\" id=\"password\"\r\n formControlName=\"password\"\r\n [ngClass]=\"{ 'is-invalid': PasswordForm.get('password')?.touched && PasswordForm.get('password')?.hasError('required') }\">\r\n <span (click)=\"showNewPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"newPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!newPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n @if(PasswordForm.get('password')?.touched) {\r\n @if (PasswordForm.get('password')?.hasError('required')) {\r\n <small>Password is required</small>\r\n } \r\n }\r\n <small *ngIf=\"PasswordForm.get('password')?.hasError('pattern')\">The password must contain atleast one capital letter and number.</small>\r\n <small *ngIf=\"PasswordForm.get('password')?.hasError('noSpaces') && !PasswordForm.get('password')?.hasError('pattern') && PasswordForm.get('password')?.touched\">Password cannot contain spaces.</small> \r\n </div>\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 mb-7\">\r\n <label for=\"contact\" class=\"form-label\">Confirm New Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input [type]=\"verifyPasswordShow ? 'text' : 'password'\" class=\"form-control\" id=\"confirmPassword\"\r\n formControlName=\"confirmPassword\"\r\n [ngClass]=\"{ 'is-invalid': PasswordForm.get('confirmPassword')?.touched && PasswordForm.get('confirmPassword')?.hasError('required') }\">\r\n <span (click)=\"showVerifyPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"verifyPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!verifyPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n @if(PasswordForm.get('confirmPassword')?.touched) {\r\n @if (PasswordForm.get('confirmPassword')?.hasError('required')) {\r\n <small>Confirm password is required</small>\r\n } @else {\r\n <!-- <small *ngIf=\"PasswordForm.get('confirmPassword')?.hasError('pattern')\">The confirm password must\r\n contain atleast one capital letter and number.</small> -->\r\n <small\r\n *ngIf=\"PasswordForm.get('confirmPassword')?.touched && PasswordForm.get('confirmPassword')?.hasError('NotEqual') && !PasswordForm.get('confirmPassword')?.hasError('required')\">Password\r\n does not match</small>\r\n }\r\n <small *ngIf=\"PasswordForm.get('confirmPassword')?.hasError('noSpaces') && !PasswordForm.get('confirmPassword')?.hasError('NotEqual') && PasswordForm.get('confirmPassword')?.touched\">Password cannot contain spaces.</small> \r\n }\r\n </div>\r\n </div>\r\n </form>\r\n <div class=\"d-flex mt-10 mb-5\" role=\"group\">\r\n <button class=\"btn btn-primary w-100 \" id=\"alert-toast\" [disabled]=\"PasswordForm.invalid\"\r\n (click)=\"onPasswordSubmit()\">Reset\r\n password</button>\r\n </div>\r\n </div>\r\n <a class=\"text-decoration-underline backtologin text-center\" routerLink=\"/auth/login\">Back to\r\n login</a>\r\n\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-20\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\"\r\n class=\"footer text-decoration-underline cursor-pointer\">&#64;TangoITSolutions\r\n India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\"\r\n class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path\r\n d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\"\r\n stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n\r\n </ul>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n }\r\n </div>\r\n <img src=\"./assets/tango/Icons/login-background1.svg\" alt=\"Image\" class=\"background-image\">\r\n</div>\r\n\r\n\r\n\r\n\r\n","import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\nimport { TangoAuthComponent } from './components/tango-auth/tango-auth.component';\r\nimport { TangoAuthLoginComponent } from './components/tango-auth-login/tango-auth-login.component';\r\nimport { TangoAuthSignupComponent } from './components/tango-auth-signup/tango-auth-signup.component';\r\nimport { TangoAuthForgotPasswordComponent } from './components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\n\r\nconst routes: Routes = [\r\n {\r\n path: '',\r\n component: TangoAuthComponent,\r\n children: [\r\n {\r\n path: '',\r\n redirectTo: 'login',\r\n pathMatch: 'full',\r\n },\r\n {\r\n path: 'login',\r\n component: TangoAuthLoginComponent,\r\n data: { returnUrl: window.location.pathname },\r\n\r\n },\r\n {\r\n path: 'signup',\r\n component: TangoAuthSignupComponent,\r\n },\r\n {\r\n path: 'forgot-password',\r\n component: TangoAuthForgotPasswordComponent,\r\n },\r\n { path: '', redirectTo: 'login', pathMatch: 'full' },\r\n { path: '**', redirectTo: 'login', pathMatch: 'full' },\r\n ],\r\n },\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class TangoAuthRoutingModule { }\r\n","import { NO_ERRORS_SCHEMA, NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nimport { TangoAuthRoutingModule } from './tango-auth-routing.module';\r\nimport { TangoAuthComponent } from './components/tango-auth/tango-auth.component';\r\nimport { TangoAuthLoginComponent } from './components/tango-auth-login/tango-auth-login.component';\r\nimport { TangoAuthSignupComponent } from './components/tango-auth-signup/tango-auth-signup.component';\r\nimport { TangoAuthForgotPasswordComponent } from './components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\nimport { ModalContentComponent } from './components/tango-auth-signup/step/modal-content/modal-content.component';\r\nimport { Step1Component } from './components/tango-auth-signup/step/step1/step1.component';\r\nimport { Step2Component } from './components/tango-auth-signup/step/step2/step2.component';\r\nimport { Step3Component } from './components/tango-auth-signup/step/step3/step3.component';\r\nimport { VerticalComponent } from './components/tango-auth-signup/vertical/vertical.component';\r\nimport { NgOtpInputModule } from 'ng-otp-input';\r\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\r\nimport { CalendlyModalComponent } from './components/tango-auth-signup/step/calendly-modal/calendly-modal.component';\r\n@NgModule({\r\n declarations: [\r\n TangoAuthComponent,\r\n TangoAuthLoginComponent,\r\n TangoAuthSignupComponent,\r\n TangoAuthForgotPasswordComponent,\r\n Step1Component,\r\n Step2Component,\r\n Step3Component,\r\n VerticalComponent,\r\n ModalContentComponent,\r\n CalendlyModalComponent,\r\n ],\r\n imports: [\r\n CommonModule,\r\n TangoAuthRoutingModule,\r\n NgOtpInputModule,\r\n ReactiveFormsModule,\r\n FormsModule,\r\n \r\n ],\r\n schemas:[NO_ERRORS_SCHEMA]\r\n})\r\nexport class TangoAuthModule { }\r\n","import { Injectable } from '@angular/core';\r\nimport { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';\r\nimport { AuthService } from '../services/auth.service';\r\nimport { GlobalStateService } from 'tango-app-ui-global';\r\n\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class AuthGuard {\r\n private authlocalStorageToken:any;\r\n constructor(private authService: AuthService,private gs:GlobalStateService,\r\n private route: Router) {\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n })\r\n }\r\n canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {\r\n\r\n // const currentUser = localStorage.getItem('isLoggedIn');\r\n const currentUser = localStorage.getItem(this.authlocalStorageToken);\r\n if (currentUser) {\r\n // this.route.navigate(['/manage']); \r\n return true; \r\n } else {\r\n this.route.navigate(['/auth/login']); \r\n\r\n return false;\r\n }\r\n }\r\n}\r\n","/*\r\n * Public API Surface of tango-auth\r\n */\r\n\r\nexport * from './lib/tango-auth.module';\r\n\r\n// components\r\nexport * from './lib/components/tango-auth/tango-auth.component';\r\nexport * from './lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\nexport * from './lib/components/tango-auth-login/tango-auth-login.component';\r\nexport * from './lib/components/tango-auth-signup/tango-auth-signup.component';\r\n\r\n\r\n// guards\r\nexport * from './lib/guards/auth.guard';\r\n\r\n// services\r\nexport * from './lib/services/auth.service';\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i3","i2","i3.AuthService","i1.ConversionService","i4","i2.ConversionService","i2.AuthService","i4.Step1Component","i5.Step2Component","i6.Step3Component","i7.VerticalComponent","i5","i1.AuthService"],"mappings":"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"}
1
+ {"version":3,"file":"tango-app-ui-auth.mjs","sources":["../../../projects/tango-auth/src/lib/components/tango-auth/tango-auth.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth/tango-auth.component.html","../../../projects/tango-auth/src/lib/services/auth.service.ts","../../../projects/tango-auth/src/lib/components/tango-auth-login/tango-auth-login.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-login/tango-auth-login.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/services/conversion.service.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step1/step1.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step1/step1.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/modal-content/modal-content.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/modal-content/modal-content.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/calendly-modal/calendly-modal.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step2/step2.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step2/step2.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step3/step3.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/step/step3/step3.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/vertical/vertical.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/vertical/vertical.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-signup/tango-auth-signup.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-signup/tango-auth-signup.component.html","../../../projects/tango-auth/src/lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component.ts","../../../projects/tango-auth/src/lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component.html","../../../projects/tango-auth/src/lib/tango-auth-routing.module.ts","../../../projects/tango-auth/src/lib/tango-auth.module.ts","../../../projects/tango-auth/src/lib/guards/auth.guard.ts","../../../projects/tango-auth/src/public-api.ts","../../../projects/tango-auth/src/tango-app-ui-auth.ts"],"sourcesContent":["import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-tango-auth',\r\n templateUrl: './tango-auth.component.html',\r\n styleUrl: './tango-auth.component.scss'\r\n})\r\nexport class TangoAuthComponent {\r\n\r\n}\r\n","<router-outlet></router-outlet>\r\n","import { HttpClient } from \"@angular/common/http\";\r\nimport { Injectable } from \"@angular/core\";\r\nimport { Router } from \"@angular/router\";\r\nimport {\r\n BehaviorSubject,\r\n Observable,\r\n catchError,\r\n map,\r\n of,\r\n throwError,\r\n} from \"rxjs\";\r\nimport { GlobalStateService } from \"tango-app-ui-global\";\r\n\r\n@Injectable({\r\n providedIn: \"root\",\r\n})\r\nexport class AuthService {\r\n aboutFormData = new BehaviorSubject<any>(null);\r\n pricingFormData = new BehaviorSubject<any>(null);\r\n currentUserSubject = new BehaviorSubject<any>(null);\r\n leadApiUrl: string = \"\";\r\n middlewareApiUrl: string = \"\";\r\n userApiUrl: string = \"\";\r\n authlocalStorageToken: string;\r\n paymentSubscriptionApiUrl: string;\r\n get currentUserValue(): any {\r\n return this.currentUserSubject.value;\r\n }\r\n constructor(\r\n private router: Router,\r\n private http: HttpClient,\r\n private gs: GlobalStateService\r\n ) {\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.leadApiUrl = env.leadApiUrl;\r\n this.middlewareApiUrl = env.middlewareApiUrl;\r\n this.paymentSubscriptionApiUrl = env.paymentSubscriptionApiUrl;\r\n (this.userApiUrl = env.userApiUrl),\r\n (this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`);\r\n }\r\n });\r\n }\r\n\r\n getHeaders() {\r\n const user: any = JSON.parse(\r\n localStorage.getItem(this.authlocalStorageToken) || \"{}\"\r\n );\r\n const headers = {\r\n Authorization: \"Bearer \" + user.authenticationToken,\r\n };\r\n\r\n return headers;\r\n }\r\n\r\n logout() {\r\n localStorage.removeItem(this.authlocalStorageToken);\r\n this.router.navigate([\"/auth/login\"], {\r\n queryParams: {},\r\n });\r\n }\r\n\r\n sendSignupOtp(data: any): Observable<any> {\r\n return this.http.post(`${this.middlewareApiUrl}/signup-otp`, data);\r\n }\r\n\r\n signup(data: any): Observable<any> {\r\n return this.http.post(`${this.leadApiUrl}/signup`, data);\r\n }\r\n\r\n requestCallback(data: any): Observable<any> {\r\n return this.http.post(`${this.middlewareApiUrl}/request-callback`, data);\r\n }\r\n\r\n isClientnameTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?clientName=${data}`);\r\n }\r\n\r\n isEmailTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?corporateEmail=${data}`);\r\n }\r\n\r\n isMobileTaken(data: string): Observable<any> {\r\n return this.http.get(`${this.leadApiUrl}/isExists?mobileNumber=${data}`);\r\n }\r\n\r\n getCountryCodes(): Observable<any> {\r\n return this.http.get(`${this.middlewareApiUrl}/country-code`);\r\n }\r\n\r\n login(data: any): Observable<any> {\r\n return this.http.post(`${this.userApiUrl}/login`, data);\r\n }\r\n\r\n userProfileDet(): Observable<any> {\r\n const user: any = localStorage.getItem(\"user-info\");\r\n if (user) return of(JSON.parse(user));\r\n return this.http\r\n .get(`${this.userApiUrl}/profile`, { headers: this.getHeaders() })\r\n .pipe(\r\n map((response: any) => {\r\n localStorage.setItem(\"user-info\", JSON.stringify(response.data));\r\n return response;\r\n }),\r\n catchError(this.handleError)\r\n );\r\n }\r\n\r\n getAllCountries(): Observable<any> {\r\n return this.http.get(`${this.middlewareApiUrl}/get-countries`);\r\n }\r\n\r\n handleError(res: any) {\r\n return throwError(res.error);\r\n }\r\n\r\n getPricing(data: any): Observable<any> {\r\n return this.http.post(\r\n `${this.paymentSubscriptionApiUrl}/basePricing`,\r\n data\r\n );\r\n }\r\n\r\n forgotPasswordTrigger(params: any): Observable<any> {\r\n return this.http\r\n .get(`${this.userApiUrl}/forgot-password-email`, { params: params })\r\n .pipe(\r\n map((response: any) => response),\r\n catchError(this.handleError)\r\n );\r\n }\r\n\r\n forgotPassword(data: any): Observable<any> {\r\n return this.http\r\n .post(`${this.userApiUrl}/forgot-password-update`, data )\r\n .pipe(\r\n map((response: any) => response),\r\n catchError(this.handleError)\r\n );\r\n }\r\n}\r\n","import { ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild, inject } from '@angular/core';\r\nimport { FormBuilder, Validators } from '@angular/forms';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { Subject, first, takeUntil } from 'rxjs';\r\nimport Swal from 'sweetalert2';\r\nimport { AuthService } from '../../services/auth.service';\r\nimport { GlobalStateService, PageInfoService } from 'tango-app-ui-global'\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n@Component({\r\n selector: \"lib-tango-auth-login\",\r\n templateUrl: \"./tango-auth-login.component.html\",\r\n styleUrl: \"./tango-auth-login.component.scss\",\r\n})\r\nexport class TangoAuthLoginComponent implements OnInit, OnDestroy {\r\n defaultAuth: any = {\r\n email: \"admin@demo.com\",\r\n password: \"demo\",\r\n };\r\n hasError: boolean;\r\n returnUrl: string;\r\n show: boolean = false;\r\n loginForm: any;\r\n credentials: any = {\r\n email: null,\r\n password: null,\r\n };\r\n isLoading: boolean;\r\n isloader :boolean =true;\r\n @ViewChild('emailInput') emailInputRef!: ElementRef;\r\n @ViewChild('passwordInput') passwordInputRef!: ElementRef;\r\n private authlocalStorageToken: any;\r\n private readonly destroy$ = new Subject();\r\n\r\n constructor(\r\n private router: Router,\r\n private route: ActivatedRoute,\r\n private fb: FormBuilder,\r\n private service: AuthService,\r\n private gs: GlobalStateService,private cd :ChangeDetectorRef,\r\n private toastService: ToastService,private pageInfo:PageInfoService\r\n ) {\r\n this.gs.environment.pipe(takeUntil(this.destroy$)).subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n });\r\n if (this.service.currentUserValue) {\r\n this.router.navigate([\"/\"]);\r\n }\r\n }\r\n ngOnInit(): void {\r\n // this.userProfile();\r\n // get return url from route parameters or default to '/'\r\n if(this.authlocalStorageToken) {\r\n this.router.navigate(['/manage']);\r\n }\r\n this.returnUrl =\r\n this.route.snapshot.queryParams[\"returnUrl\".toString()] || \"/\";\r\n if (this.emailInputRef?.nativeElement.value || this.passwordInputRef?.nativeElement.value) {\r\n // Clear the fields if autofilled\r\n this.emailInputRef.nativeElement.value = '';\r\n this.passwordInputRef.nativeElement.value = '';\r\n }\r\n this.pageInfo.setTitle('Login')\r\n this.initForm();\r\n\r\n }\r\n \r\n ngOnDestroy(): void {\r\n this.destroy$.next(true);\r\n this.destroy$.complete();\r\n }\r\n\r\n initForm() {\r\n this.loginForm = this.fb.group({\r\n email: [\r\n this.defaultAuth.email,\r\n Validators.compose([\r\n Validators.required,\r\n Validators.email,\r\n Validators.minLength(3),\r\n Validators.maxLength(320),\r\n ]),\r\n ],\r\n password: [\r\n this.defaultAuth.password,\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n });\r\n this.isloader = false;\r\n\r\n }\r\n onLogin() {\r\n // localStorage.clear();\r\n this.hasError = false;\r\n this.isLoading = true;\r\n this.show = false;\r\n this.service.login(this.credentials).pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (res) => {\r\n if(res && res?.code === 200){\r\n let loginToken: any =\r\n localStorage.getItem(this.authlocalStorageToken);\r\n if (loginToken) {\r\n loginToken = JSON.parse(loginToken);\r\n }\r\n localStorage.setItem(\r\n this.authlocalStorageToken,\r\n JSON.stringify(res?.data?.result)\r\n );\r\n this.userProfile();\r\n } else if (!res || res?.code == 401) {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n } else {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n }\r\n \r\n },\r\n error: (err) => {\r\n this.hasError = true;\r\n this.toastService.getErrorToast(err?.error?.error ? err?.error?.error :'The user has been unauthorized to login');\r\n },\r\n });\r\n }\r\n\r\n userProfile() {\r\n this.service.userProfileDet().pipe(takeUntil(this.destroy$)).subscribe({\r\n next: (res) => {\r\n if (res&& res.code ==200) {\r\n this.gs.userAccess.next(res.data?.permission)\r\n this.cd.detectChanges()\r\n this.router.navigate(['/manage']);\r\n } else if (!res || res.code == 401) {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n } else {\r\n this.toastService.getErrorToast('Enter Valid Credentials');\r\n }\r\n },\r\n error: (err) => {\r\n this.hasError = true;\r\n this.toastService.getErrorToast(err.error.error);\r\n localStorage.clear();\r\n },\r\n });\r\n }\r\n\r\n showPassword() {\r\n this.show = !this.show;\r\n }\r\n}\r\n","<!-- <div class=\"row justify-content-center logotext px-0\">\r\n <img src=\"./assets/tango/Icons/login-background.svg\" alt=\"\">\r\n </div> -->\r\n\r\n<!-- \r\n<button (click)=\"onClick()\">Log In</button> -->\r\n\r\n<div *ngIf=\"isloader\" class=\"container mt-20\">\r\n <div class=\"text-center mt-20\">\r\n <img src=\"./assets/tango/Icons/favicon.png\" alt=\"Tango logo\" />\r\n <div>Loading ...</div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"container\">\r\n <!-- style=\"padding: 96px 142px 96px 142px;\" -->\r\n <div class=\"row position-absolute\" >\r\n <div class=\"col-6 pe-10 \">\r\n <div *ngIf=\"isloader\" class=\"container mt-20\">\r\n <div class=\"text-center mt-20\">\r\n <img src=\"./assets/tango/Icons/favicon.png\" alt=\"Tango logo\" />\r\n <div>Loading ...</div>\r\n </div>\r\n </div>\r\n <svg class=\"img-fluid w-100\" width=\"587\" height=\"511\" viewBox=\"0 0 587 511\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <g clip-path=\"url(#clip0_3784_14918)\">\r\n <g filter=\"url(#filter0_d_3784_14918)\">\r\n <rect x=\"99.2637\" y=\"159.538\" width=\"389.798\" height=\"263.21\" rx=\"3.83388\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip1_3784_14918)\">\r\n <path d=\"M119.156 178.309C119.156 180.585 117.362 182.43 115.15 182.43C112.937 182.43 111.144 180.585 111.144 178.309C111.144 176.033 112.937 174.188 115.15 174.188C117.362 174.188 119.156 176.033 119.156 178.309ZM108.14 189.716C108.14 186.545 110.637 183.975 113.72 183.975H116.58C119.663 183.975 122.16 186.545 122.16 189.716C122.16 190.244 121.744 190.672 121.231 190.672H109.069C108.556 190.672 108.14 190.244 108.14 189.716Z\" fill=\"#009EF7\"/>\r\n <path d=\"M123.162 185.622C125.145 185.622 126.752 184.015 126.752 182.033C126.752 180.05 125.145 178.443 123.162 178.443C121.18 178.443 119.573 180.05 119.573 182.033C119.573 184.015 121.18 185.622 123.162 185.622ZM124.747 181.374L122.952 183.168C122.82 183.3 122.607 183.3 122.477 183.168L121.58 182.271C121.448 182.139 121.448 181.926 121.58 181.796C121.711 181.665 121.925 181.664 122.055 181.796L122.714 182.455L124.27 180.897C124.402 180.765 124.615 180.765 124.745 180.897C124.876 181.029 124.877 181.242 124.745 181.372L124.747 181.374Z\" fill=\"#009EF7\"/>\r\n </g>\r\n <path d=\"M138.605 174.63H137.287C137.249 174.414 137.18 174.223 137.079 174.056C136.978 173.887 136.852 173.743 136.701 173.626C136.551 173.508 136.38 173.42 136.187 173.361C135.997 173.3 135.791 173.27 135.57 173.27C135.178 173.27 134.83 173.368 134.527 173.566C134.224 173.761 133.986 174.048 133.815 174.426C133.643 174.802 133.557 175.261 133.557 175.804C133.557 176.356 133.643 176.822 133.815 177.2C133.989 177.576 134.226 177.86 134.527 178.053C134.83 178.243 135.176 178.339 135.567 178.339C135.783 178.339 135.985 178.31 136.173 178.254C136.363 178.195 136.533 178.109 136.684 177.997C136.837 177.884 136.965 177.745 137.068 177.581C137.174 177.416 137.247 177.228 137.287 177.017L138.605 177.024C138.556 177.367 138.449 177.689 138.284 177.99C138.122 178.29 137.909 178.556 137.646 178.786C137.383 179.014 137.075 179.193 136.723 179.322C136.37 179.449 135.979 179.512 135.549 179.512C134.914 179.512 134.348 179.365 133.85 179.072C133.352 178.778 132.959 178.354 132.673 177.799C132.386 177.245 132.243 176.58 132.243 175.804C132.243 175.026 132.387 174.361 132.676 173.809C132.965 173.255 133.359 172.83 133.857 172.537C134.355 172.243 134.919 172.096 135.549 172.096C135.951 172.096 136.324 172.152 136.67 172.265C137.015 172.378 137.323 172.544 137.593 172.762C137.864 172.978 138.086 173.244 138.259 173.559C138.436 173.871 138.551 174.229 138.605 174.63ZM142.108 179.519C141.579 179.519 141.121 179.403 140.733 179.17C140.345 178.938 140.044 178.612 139.831 178.194C139.619 177.776 139.513 177.287 139.513 176.728C139.513 176.168 139.619 175.678 139.831 175.258C140.044 174.837 140.345 174.511 140.733 174.278C141.121 174.045 141.579 173.929 142.108 173.929C142.636 173.929 143.095 174.045 143.482 174.278C143.87 174.511 144.17 174.837 144.381 175.258C144.595 175.678 144.702 176.168 144.702 176.728C144.702 177.287 144.595 177.776 144.381 178.194C144.17 178.612 143.87 178.938 143.482 179.17C143.095 179.403 142.636 179.519 142.108 179.519ZM142.115 178.497C142.401 178.497 142.641 178.418 142.834 178.261C143.027 178.101 143.17 177.887 143.264 177.619C143.36 177.352 143.408 177.053 143.408 176.724C143.408 176.393 143.36 176.093 143.264 175.825C143.17 175.555 143.027 175.34 142.834 175.18C142.641 175.02 142.401 174.941 142.115 174.941C141.821 174.941 141.577 175.02 141.382 175.18C141.189 175.34 141.044 175.555 140.948 175.825C140.854 176.093 140.807 176.393 140.807 176.724C140.807 177.053 140.854 177.352 140.948 177.619C141.044 177.887 141.189 178.101 141.382 178.261C141.577 178.418 141.821 178.497 142.115 178.497ZM147.061 176.241V179.414H145.785V173.999H147.005V174.919H147.068C147.193 174.616 147.391 174.375 147.664 174.197C147.939 174.018 148.278 173.929 148.682 173.929C149.056 173.929 149.381 174.009 149.659 174.169C149.938 174.328 150.155 174.56 150.307 174.863C150.462 175.166 150.539 175.534 150.536 175.966V179.414H149.26V176.164C149.26 175.802 149.166 175.519 148.978 175.314C148.793 175.11 148.536 175.008 148.207 175.008C147.983 175.008 147.785 175.057 147.611 175.156C147.439 175.252 147.304 175.392 147.205 175.575C147.109 175.758 147.061 175.98 147.061 176.241ZM156.476 173.999L154.548 179.414H153.138L151.21 173.999H152.57L153.815 178.021H153.871L155.119 173.999H156.476ZM159.571 179.519C159.029 179.519 158.56 179.407 158.165 179.181C157.773 178.953 157.471 178.631 157.259 178.215C157.048 177.797 156.942 177.305 156.942 176.738C156.942 176.181 157.048 175.693 157.259 175.272C157.473 174.849 157.771 174.52 158.154 174.285C158.537 174.048 158.987 173.929 159.504 173.929C159.838 173.929 160.153 173.983 160.449 174.091C160.748 174.197 161.011 174.361 161.239 174.585C161.469 174.808 161.65 175.092 161.782 175.438C161.913 175.781 161.979 176.19 161.979 176.664V177.055H157.541V176.195H160.756C160.753 175.951 160.701 175.734 160.597 175.543C160.494 175.351 160.349 175.199 160.164 175.089C159.98 174.978 159.766 174.923 159.522 174.923C159.261 174.923 159.032 174.986 158.835 175.113C158.637 175.238 158.483 175.402 158.373 175.607C158.265 175.809 158.21 176.031 158.207 176.273V177.024C158.207 177.339 158.265 177.609 158.38 177.834C158.495 178.058 158.656 178.229 158.863 178.349C159.07 178.467 159.312 178.525 159.589 178.525C159.775 178.525 159.943 178.499 160.093 178.448C160.244 178.394 160.374 178.315 160.484 178.212C160.595 178.108 160.678 177.98 160.735 177.827L161.926 177.961C161.851 178.276 161.707 178.551 161.496 178.786C161.287 179.019 161.019 179.2 160.692 179.329C160.366 179.456 159.992 179.519 159.571 179.519ZM163.058 179.414V173.999H164.296V174.902H164.352C164.451 174.589 164.62 174.348 164.86 174.179C165.102 174.008 165.378 173.922 165.688 173.922C165.758 173.922 165.837 173.925 165.924 173.932C166.013 173.937 166.087 173.945 166.146 173.957V175.131C166.092 175.112 166.006 175.096 165.889 175.082C165.774 175.065 165.662 175.057 165.554 175.057C165.321 175.057 165.112 175.107 164.927 175.208C164.743 175.307 164.599 175.445 164.493 175.621C164.387 175.797 164.334 176 164.334 176.231V179.414H163.058ZM171.273 175.431L170.11 175.557C170.077 175.44 170.019 175.329 169.937 175.226C169.857 175.123 169.749 175.039 169.613 174.976C169.476 174.912 169.31 174.881 169.112 174.881C168.847 174.881 168.623 174.938 168.443 175.053C168.264 175.169 168.176 175.318 168.178 175.501C168.176 175.658 168.233 175.787 168.351 175.885C168.471 175.984 168.668 176.065 168.943 176.128L169.867 176.326C170.379 176.436 170.76 176.611 171.009 176.851C171.26 177.091 171.387 177.404 171.389 177.792C171.387 178.133 171.287 178.434 171.09 178.695C170.895 178.953 170.623 179.155 170.275 179.301C169.928 179.446 169.528 179.519 169.077 179.519C168.414 179.519 167.881 179.381 167.477 179.103C167.073 178.824 166.832 178.435 166.754 177.937L167.998 177.817C168.055 178.061 168.175 178.246 168.358 178.37C168.541 178.495 168.78 178.557 169.073 178.557C169.377 178.557 169.62 178.495 169.803 178.37C169.989 178.246 170.082 178.092 170.082 177.908C170.082 177.753 170.022 177.625 169.902 177.524C169.784 177.423 169.601 177.346 169.352 177.292L168.428 177.098C167.909 176.99 167.525 176.808 167.276 176.551C167.027 176.293 166.903 175.966 166.906 175.572C166.903 175.238 166.994 174.949 167.177 174.704C167.363 174.458 167.62 174.267 167.949 174.133C168.28 173.997 168.662 173.929 169.095 173.929C169.729 173.929 170.228 174.064 170.593 174.334C170.959 174.605 171.186 174.97 171.273 175.431ZM172.441 179.414V173.999H173.717V179.414H172.441ZM173.083 173.231C172.881 173.231 172.707 173.164 172.561 173.03C172.416 172.894 172.343 172.731 172.343 172.54C172.343 172.347 172.416 172.184 172.561 172.05C172.707 171.914 172.881 171.846 173.083 171.846C173.287 171.846 173.461 171.914 173.605 172.05C173.75 172.184 173.823 172.347 173.823 172.54C173.823 172.731 173.75 172.894 173.605 173.03C173.461 173.164 173.287 173.231 173.083 173.231ZM177.391 179.519C176.862 179.519 176.404 179.403 176.017 179.17C175.629 178.938 175.328 178.612 175.114 178.194C174.903 177.776 174.797 177.287 174.797 176.728C174.797 176.168 174.903 175.678 175.114 175.258C175.328 174.837 175.629 174.511 176.017 174.278C176.404 174.045 176.862 173.929 177.391 173.929C177.92 173.929 178.378 174.045 178.766 174.278C179.154 174.511 179.453 174.837 179.665 175.258C179.879 175.678 179.985 176.168 179.985 176.728C179.985 177.287 179.879 177.776 179.665 178.194C179.453 178.612 179.154 178.938 178.766 179.17C178.378 179.403 177.92 179.519 177.391 179.519ZM177.398 178.497C177.685 178.497 177.925 178.418 178.117 178.261C178.31 178.101 178.453 177.887 178.547 177.619C178.644 177.352 178.692 177.053 178.692 176.724C178.692 176.393 178.644 176.093 178.547 175.825C178.453 175.555 178.31 175.34 178.117 175.18C177.925 175.02 177.685 174.941 177.398 174.941C177.105 174.941 176.86 175.02 176.665 175.18C176.472 175.34 176.328 175.555 176.232 175.825C176.138 176.093 176.091 176.393 176.091 176.724C176.091 177.053 176.138 177.352 176.232 177.619C176.328 177.887 176.472 178.101 176.665 178.261C176.86 178.418 177.105 178.497 177.398 178.497ZM182.344 176.241V179.414H181.068V173.999H182.288V174.919H182.352C182.476 174.616 182.675 174.375 182.947 174.197C183.222 174.018 183.562 173.929 183.966 173.929C184.34 173.929 184.665 174.009 184.942 174.169C185.222 174.328 185.438 174.56 185.591 174.863C185.746 175.166 185.822 175.534 185.82 175.966V179.414H184.544V176.164C184.544 175.802 184.45 175.519 184.262 175.314C184.076 175.11 183.819 175.008 183.49 175.008C183.267 175.008 183.068 175.057 182.894 175.156C182.723 175.252 182.588 175.392 182.489 175.575C182.393 175.758 182.344 175.98 182.344 176.241ZM189.636 179.414V172.195H194.26V173.291H190.943V175.251H193.943V176.347H190.943V179.414H189.636ZM196.671 172.195V179.414H195.395V172.195H196.671ZM200.345 179.519C199.816 179.519 199.358 179.403 198.97 179.17C198.582 178.938 198.282 178.612 198.068 178.194C197.856 177.776 197.751 177.287 197.751 176.728C197.751 176.168 197.856 175.678 198.068 175.258C198.282 174.837 198.582 174.511 198.97 174.278C199.358 174.045 199.816 173.929 200.345 173.929C200.874 173.929 201.332 174.045 201.72 174.278C202.107 174.511 202.407 174.837 202.618 175.258C202.832 175.678 202.939 176.168 202.939 176.728C202.939 177.287 202.832 177.776 202.618 178.194C202.407 178.612 202.107 178.938 201.72 179.17C201.332 179.403 200.874 179.519 200.345 179.519ZM200.352 178.497C200.639 178.497 200.878 178.418 201.071 178.261C201.264 178.101 201.407 177.887 201.501 177.619C201.597 177.352 201.646 177.053 201.646 176.724C201.646 176.393 201.597 176.093 201.501 175.825C201.407 175.555 201.264 175.34 201.071 175.18C200.878 175.02 200.639 174.941 200.352 174.941C200.058 174.941 199.814 175.02 199.619 175.18C199.426 175.34 199.282 175.555 199.185 175.825C199.091 176.093 199.044 176.393 199.044 176.724C199.044 177.053 199.091 177.352 199.185 177.619C199.282 177.887 199.426 178.101 199.619 178.261C199.814 178.418 200.058 178.497 200.352 178.497ZM204.984 179.414L203.455 173.999H204.755L205.707 177.806H205.756L206.729 173.999H208.016L208.989 177.785H209.041L209.979 173.999H211.283L209.75 179.414H208.421L207.406 175.755H207.332L206.317 179.414H204.984ZM216.998 179.519C216.457 179.519 215.993 179.401 215.606 179.163C215.22 178.926 214.923 178.598 214.714 178.18C214.507 177.759 214.404 177.275 214.404 176.728C214.404 176.178 214.509 175.693 214.721 175.272C214.932 174.849 215.231 174.52 215.616 174.285C216.004 174.048 216.462 173.929 216.991 173.929C217.43 173.929 217.819 174.01 218.158 174.172C218.498 174.332 218.77 174.559 218.972 174.852C219.174 175.144 219.289 175.485 219.317 175.875H218.098C218.048 175.614 217.931 175.396 217.745 175.223C217.562 175.046 217.316 174.958 217.008 174.958C216.748 174.958 216.519 175.029 216.321 175.17C216.124 175.308 215.97 175.508 215.859 175.769C215.751 176.03 215.697 176.342 215.697 176.707C215.697 177.075 215.751 177.393 215.859 177.658C215.967 177.921 216.119 178.125 216.314 178.268C216.511 178.409 216.743 178.479 217.008 178.479C217.196 178.479 217.364 178.444 217.513 178.374C217.663 178.301 217.789 178.196 217.89 178.06C217.991 177.924 218.06 177.758 218.098 177.563H219.317C219.287 177.946 219.174 178.286 218.979 178.582C218.784 178.875 218.518 179.106 218.182 179.273C217.846 179.437 217.451 179.519 216.998 179.519ZM221.641 176.241V179.414H220.365V172.195H221.613V174.919H221.676C221.803 174.614 221.999 174.373 222.265 174.197C222.533 174.018 222.873 173.929 223.287 173.929C223.663 173.929 223.991 174.008 224.27 174.165C224.55 174.323 224.766 174.553 224.919 174.856C225.074 175.159 225.152 175.529 225.152 175.966V179.414H223.876V176.164C223.876 175.799 223.782 175.516 223.594 175.314C223.408 175.11 223.147 175.008 222.811 175.008C222.586 175.008 222.384 175.057 222.205 175.156C222.029 175.252 221.89 175.392 221.789 175.575C221.69 175.758 221.641 175.98 221.641 176.241ZM228.01 179.523C227.667 179.523 227.358 179.462 227.083 179.34C226.811 179.215 226.595 179.032 226.435 178.79C226.277 178.548 226.199 178.249 226.199 177.894C226.199 177.589 226.255 177.336 226.368 177.137C226.481 176.937 226.634 176.777 226.83 176.657C227.025 176.537 227.244 176.447 227.489 176.386C227.735 176.322 227.99 176.276 228.254 176.248C228.571 176.215 228.828 176.186 229.025 176.16C229.223 176.132 229.366 176.09 229.456 176.033C229.547 175.975 229.593 175.884 229.593 175.762V175.741C229.593 175.475 229.514 175.27 229.357 175.124C229.199 174.978 228.973 174.905 228.677 174.905C228.364 174.905 228.116 174.973 227.933 175.11C227.752 175.246 227.63 175.407 227.566 175.593L226.375 175.423C226.469 175.094 226.624 174.82 226.84 174.599C227.056 174.375 227.321 174.209 227.633 174.098C227.946 173.985 228.291 173.929 228.669 173.929C228.93 173.929 229.19 173.959 229.448 174.021C229.707 174.082 229.943 174.183 230.157 174.324C230.371 174.462 230.542 174.652 230.672 174.891C230.803 175.131 230.869 175.431 230.869 175.79V179.414H229.642V178.67H229.6C229.522 178.82 229.413 178.961 229.272 179.093C229.134 179.222 228.959 179.327 228.747 179.407C228.538 179.484 228.292 179.523 228.01 179.523ZM228.342 178.585C228.598 178.585 228.82 178.535 229.008 178.434C229.196 178.33 229.34 178.194 229.441 178.025C229.545 177.856 229.597 177.671 229.597 177.471V176.833C229.557 176.866 229.488 176.897 229.392 176.925C229.298 176.953 229.192 176.978 229.075 176.999C228.957 177.02 228.841 177.039 228.726 177.055C228.611 177.072 228.511 177.086 228.426 177.098C228.236 177.124 228.066 177.166 227.915 177.225C227.765 177.283 227.646 177.366 227.559 177.471C227.472 177.575 227.429 177.709 227.429 177.873C227.429 178.108 227.515 178.286 227.686 178.405C227.858 178.525 228.076 178.585 228.342 178.585ZM232.152 179.414V173.999H233.389V174.902H233.446C233.544 174.589 233.713 174.348 233.953 174.179C234.195 174.008 234.471 173.922 234.782 173.922C234.852 173.922 234.931 173.925 235.018 173.932C235.107 173.937 235.181 173.945 235.24 173.957V175.131C235.186 175.112 235.1 175.096 234.982 175.082C234.867 175.065 234.756 175.057 234.648 175.057C234.415 175.057 234.206 175.107 234.02 175.208C233.837 175.307 233.692 175.445 233.587 175.621C233.481 175.797 233.428 176 233.428 176.231V179.414H232.152ZM239.082 173.999V174.986H235.969V173.999H239.082ZM236.738 172.702H238.014V177.785C238.014 177.957 238.04 178.088 238.091 178.18C238.145 178.269 238.216 178.33 238.303 178.363C238.39 178.396 238.486 178.413 238.592 178.413C238.672 178.413 238.745 178.407 238.81 178.395C238.879 178.383 238.93 178.373 238.965 178.363L239.181 179.361C239.112 179.384 239.015 179.41 238.888 179.438C238.763 179.466 238.611 179.483 238.43 179.488C238.11 179.497 237.822 179.449 237.566 179.343C237.31 179.235 237.107 179.068 236.956 178.843C236.808 178.617 236.735 178.335 236.738 177.997V172.702Z\" fill=\"#101828\"/>\r\n <g clip-path=\"url(#clip2_3784_14918)\">\r\n <path d=\"M249.64 177.568V175.914M249.64 174.259H249.644M253.775 175.914C253.775 178.198 251.924 180.049 249.64 180.049C247.356 180.049 245.504 178.198 245.504 175.914C245.504 173.629 247.356 171.778 249.64 171.778C251.924 171.778 253.775 173.629 253.775 175.914Z\" stroke=\"#98A2B3\" stroke-width=\"1.24074\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <path d=\"M134.453 192.414H132.408V186.097H134.517C135.136 186.097 135.668 186.224 136.112 186.476C136.556 186.727 136.896 187.088 137.133 187.559C137.371 188.028 137.491 188.59 137.491 189.246C137.491 189.904 137.37 190.469 137.13 190.942C136.891 191.415 136.546 191.779 136.093 192.034C135.641 192.287 135.094 192.414 134.453 192.414ZM133.361 191.581H134.4C134.881 191.581 135.281 191.49 135.6 191.309C135.919 191.126 136.157 190.862 136.316 190.517C136.474 190.169 136.553 189.746 136.553 189.246C136.553 188.751 136.474 188.33 136.316 187.985C136.159 187.639 135.926 187.377 135.615 187.198C135.305 187.019 134.919 186.93 134.459 186.93H133.361V191.581ZM139.98 192.518C139.68 192.518 139.409 192.463 139.166 192.352C138.923 192.239 138.731 192.075 138.589 191.861C138.45 191.648 138.38 191.386 138.38 191.075C138.38 190.808 138.431 190.588 138.534 190.415C138.637 190.242 138.775 190.106 138.95 190.005C139.125 189.904 139.32 189.828 139.536 189.777C139.752 189.725 139.972 189.686 140.196 189.659C140.48 189.626 140.71 189.6 140.887 189.579C141.064 189.557 141.192 189.521 141.273 189.471C141.353 189.422 141.393 189.342 141.393 189.231V189.209C141.393 188.94 141.317 188.731 141.165 188.583C141.015 188.435 140.79 188.361 140.492 188.361C140.182 188.361 139.937 188.43 139.758 188.568C139.581 188.703 139.459 188.854 139.391 189.021L138.525 188.824C138.627 188.536 138.778 188.303 138.975 188.127C139.174 187.948 139.404 187.818 139.663 187.738C139.922 187.656 140.194 187.615 140.48 187.615C140.669 187.615 140.87 187.637 141.081 187.682C141.295 187.726 141.495 187.806 141.68 187.923C141.867 188.04 142.02 188.208 142.139 188.426C142.259 188.642 142.318 188.922 142.318 189.268V192.414H141.418V191.766H141.381C141.321 191.885 141.232 192.002 141.112 192.117C140.993 192.233 140.84 192.328 140.653 192.404C140.466 192.48 140.241 192.518 139.98 192.518ZM140.181 191.778C140.436 191.778 140.654 191.728 140.835 191.627C141.018 191.526 141.156 191.395 141.251 191.232C141.348 191.068 141.396 190.892 141.396 190.705V190.094C141.363 190.127 141.299 190.158 141.205 190.187C141.112 190.213 141.006 190.237 140.887 190.258C140.768 190.276 140.652 190.294 140.539 190.31C140.426 190.325 140.331 190.337 140.255 190.347C140.076 190.37 139.913 190.408 139.764 190.461C139.618 190.515 139.501 190.592 139.413 190.693C139.326 190.791 139.283 190.923 139.283 191.087C139.283 191.316 139.368 191.488 139.536 191.606C139.705 191.721 139.92 191.778 140.181 191.778ZM145.758 187.676V188.416H143.17V187.676H145.758ZM143.864 186.541H144.786V191.023C144.786 191.201 144.813 191.336 144.867 191.427C144.92 191.515 144.989 191.576 145.073 191.609C145.16 191.639 145.253 191.655 145.354 191.655C145.428 191.655 145.493 191.65 145.548 191.639C145.604 191.629 145.647 191.621 145.678 191.615L145.844 192.377C145.791 192.397 145.715 192.418 145.616 192.438C145.517 192.461 145.394 192.473 145.246 192.475C145.003 192.479 144.777 192.436 144.567 192.346C144.358 192.255 144.188 192.115 144.058 191.926C143.929 191.737 143.864 191.5 143.864 191.214V186.541ZM148.769 192.509C148.302 192.509 147.9 192.409 147.563 192.21C147.228 192.009 146.969 191.726 146.786 191.362C146.605 190.996 146.514 190.567 146.514 190.076C146.514 189.59 146.605 189.163 146.786 188.793C146.969 188.423 147.224 188.134 147.551 187.926C147.88 187.718 148.264 187.615 148.704 187.615C148.971 187.615 149.23 187.659 149.481 187.747C149.732 187.836 149.957 187.974 150.157 188.164C150.356 188.353 150.513 188.598 150.629 188.901C150.744 189.201 150.801 189.566 150.801 189.996V190.322H147.036V189.632H149.898C149.898 189.389 149.848 189.174 149.75 188.987C149.651 188.798 149.512 188.649 149.333 188.54C149.156 188.431 148.949 188.376 148.71 188.376C148.451 188.376 148.225 188.44 148.032 188.568C147.84 188.693 147.692 188.857 147.588 189.061C147.485 189.263 147.433 189.482 147.433 189.718V190.258C147.433 190.574 147.489 190.844 147.6 191.066C147.713 191.288 147.87 191.457 148.072 191.575C148.273 191.69 148.509 191.747 148.778 191.747C148.953 191.747 149.112 191.723 149.256 191.673C149.4 191.622 149.524 191.546 149.629 191.445C149.734 191.344 149.814 191.22 149.87 191.072L150.743 191.229C150.673 191.486 150.547 191.711 150.366 191.905C150.188 192.096 149.962 192.245 149.691 192.352C149.422 192.457 149.114 192.509 148.769 192.509ZM153.598 192.506C153.216 192.506 152.874 192.408 152.574 192.213C152.276 192.016 152.041 191.735 151.871 191.371C151.702 191.005 151.618 190.566 151.618 190.054C151.618 189.542 151.703 189.104 151.874 188.74C152.047 188.376 152.283 188.098 152.583 187.904C152.883 187.711 153.224 187.615 153.604 187.615C153.898 187.615 154.135 187.664 154.314 187.763C154.494 187.859 154.634 187.972 154.733 188.102C154.834 188.231 154.912 188.345 154.967 188.444H155.023V186.097H155.945V192.414H155.044V191.676H154.967C154.912 191.777 154.832 191.892 154.727 192.022C154.624 192.151 154.482 192.265 154.301 192.361C154.12 192.458 153.886 192.506 153.598 192.506ZM153.802 191.72C154.067 191.72 154.291 191.65 154.474 191.51C154.659 191.368 154.799 191.172 154.893 190.921C154.99 190.67 155.038 190.378 155.038 190.045C155.038 189.716 154.991 189.428 154.896 189.181C154.802 188.935 154.663 188.742 154.48 188.605C154.297 188.467 154.071 188.398 153.802 188.398C153.524 188.398 153.293 188.47 153.108 188.614C152.923 188.758 152.783 188.954 152.688 189.203C152.596 189.452 152.549 189.732 152.549 190.045C152.549 190.362 152.597 190.646 152.691 190.899C152.786 191.152 152.926 191.353 153.111 191.501C153.298 191.647 153.528 191.72 153.802 191.72ZM157.869 192.472C157.7 192.472 157.555 192.413 157.434 192.293C157.313 192.172 157.252 192.026 157.252 191.855C157.252 191.687 157.313 191.543 157.434 191.424C157.555 191.302 157.7 191.242 157.869 191.242C158.037 191.242 158.182 191.302 158.304 191.424C158.425 191.543 158.486 191.687 158.486 191.855C158.486 191.968 158.457 192.072 158.399 192.167C158.344 192.259 158.27 192.333 158.177 192.389C158.085 192.444 157.982 192.472 157.869 192.472ZM157.869 189.024C157.7 189.024 157.555 188.963 157.434 188.842C157.313 188.721 157.252 188.576 157.252 188.407C157.252 188.239 157.313 188.095 157.434 187.975C157.555 187.854 157.7 187.793 157.869 187.793C158.037 187.793 158.182 187.854 158.304 187.975C158.425 188.095 158.486 188.239 158.486 188.407C158.486 188.52 158.457 188.624 158.399 188.719C158.344 188.811 158.27 188.885 158.177 188.941C158.085 188.996 157.982 189.024 157.869 189.024ZM162.627 192.414H161.615L163.888 186.097H164.99L167.263 192.414H166.251L164.465 187.244H164.416L162.627 192.414ZM162.797 189.94H166.078V190.742H162.797V189.94ZM171.102 190.449V187.676H172.027V192.414H171.12V191.593H171.071C170.962 191.846 170.787 192.057 170.547 192.225C170.308 192.392 170.011 192.475 169.655 192.475C169.351 192.475 169.082 192.408 168.847 192.275C168.615 192.139 168.432 191.939 168.298 191.673C168.167 191.408 168.101 191.08 168.101 190.689V187.676H169.023V190.578C169.023 190.901 169.112 191.158 169.291 191.35C169.47 191.541 169.702 191.636 169.988 191.636C170.161 191.636 170.333 191.593 170.503 191.507C170.676 191.42 170.819 191.29 170.932 191.115C171.047 190.94 171.104 190.718 171.102 190.449ZM175.252 194.289C174.876 194.289 174.552 194.239 174.281 194.141C174.011 194.042 173.791 193.911 173.621 193.749C173.45 193.587 173.323 193.409 173.238 193.215L174.031 192.889C174.086 192.979 174.16 193.075 174.253 193.175C174.348 193.278 174.475 193.366 174.635 193.438C174.798 193.51 175.007 193.545 175.262 193.545C175.611 193.545 175.9 193.46 176.128 193.289C176.356 193.121 176.471 192.852 176.471 192.481V191.55H176.412C176.356 191.651 176.276 191.763 176.171 191.886C176.069 192.01 175.927 192.116 175.746 192.207C175.565 192.297 175.329 192.343 175.039 192.343C174.665 192.343 174.328 192.255 174.028 192.08C173.73 191.904 173.493 191.644 173.318 191.3C173.146 190.955 173.059 190.53 173.059 190.026C173.059 189.523 173.145 189.091 173.315 188.731C173.488 188.371 173.725 188.096 174.025 187.904C174.325 187.711 174.665 187.615 175.046 187.615C175.34 187.615 175.577 187.664 175.758 187.763C175.939 187.859 176.08 187.972 176.181 188.102C176.283 188.231 176.363 188.345 176.418 188.444H176.486V187.676H177.39V192.518C177.39 192.926 177.295 193.26 177.106 193.521C176.917 193.782 176.661 193.975 176.338 194.101C176.017 194.226 175.655 194.289 175.252 194.289ZM175.243 191.578C175.508 191.578 175.732 191.516 175.915 191.393C176.1 191.267 176.24 191.088 176.335 190.856C176.431 190.622 176.48 190.341 176.48 190.014C176.48 189.695 176.433 189.415 176.338 189.172C176.243 188.929 176.105 188.74 175.922 188.605C175.739 188.467 175.512 188.398 175.243 188.398C174.965 188.398 174.734 188.47 174.549 188.614C174.364 188.756 174.224 188.949 174.13 189.194C174.037 189.438 173.991 189.712 173.991 190.014C173.991 190.325 174.038 190.597 174.133 190.831C174.227 191.066 174.367 191.249 174.552 191.38C174.739 191.512 174.97 191.578 175.243 191.578ZM180.913 192.414V191.723L183.05 189.508C183.278 189.268 183.466 189.057 183.614 188.876C183.764 188.693 183.877 188.519 183.951 188.355C184.025 188.19 184.062 188.015 184.062 187.83C184.062 187.621 184.012 187.44 183.914 187.288C183.815 187.133 183.68 187.015 183.51 186.933C183.339 186.849 183.147 186.806 182.933 186.806C182.707 186.806 182.509 186.853 182.341 186.945C182.172 187.038 182.042 187.168 181.952 187.337C181.862 187.506 181.816 187.703 181.816 187.929H180.906C180.906 187.545 180.995 187.208 181.172 186.921C181.349 186.633 181.591 186.41 181.9 186.251C182.208 186.091 182.559 186.011 182.951 186.011C183.348 186.011 183.698 186.09 184 186.248C184.304 186.404 184.542 186.618 184.712 186.89C184.883 187.159 184.968 187.463 184.968 187.803C184.968 188.037 184.924 188.266 184.836 188.49C184.749 188.715 184.598 188.964 184.382 189.24C184.166 189.513 183.866 189.845 183.482 190.236L182.226 191.55V191.596H185.07V192.414H180.913ZM188.438 192.518C187.951 192.516 187.534 192.388 187.189 192.133C186.844 191.878 186.579 191.507 186.396 191.02C186.213 190.532 186.122 189.945 186.122 189.258C186.122 188.574 186.213 187.989 186.396 187.503C186.581 187.018 186.847 186.648 187.192 186.393C187.54 186.138 187.955 186.011 188.438 186.011C188.921 186.011 189.336 186.139 189.681 186.396C190.026 186.651 190.291 187.021 190.474 187.507C190.659 187.99 190.751 188.574 190.751 189.258C190.751 189.947 190.66 190.535 190.477 191.023C190.294 191.508 190.03 191.879 189.684 192.136C189.339 192.391 188.923 192.518 188.438 192.518ZM188.438 191.695C188.866 191.695 189.2 191.486 189.44 191.069C189.683 190.651 189.804 190.048 189.804 189.258C189.804 188.734 189.749 188.291 189.638 187.929C189.529 187.565 189.372 187.29 189.166 187.103C188.962 186.913 188.72 186.819 188.438 186.819C188.012 186.819 187.678 187.029 187.436 187.448C187.193 187.867 187.071 188.471 187.069 189.258C187.069 189.785 187.123 190.23 187.232 190.594C187.343 190.956 187.501 191.23 187.704 191.417C187.908 191.602 188.152 191.695 188.438 191.695ZM192.829 191.55L192.782 191.886C192.751 192.133 192.699 192.39 192.625 192.657C192.553 192.927 192.478 193.176 192.4 193.407C192.324 193.637 192.261 193.82 192.212 193.956H191.558C191.585 193.828 191.622 193.655 191.669 193.438C191.716 193.222 191.762 192.98 191.808 192.713C191.853 192.445 191.887 192.173 191.909 191.895L191.94 191.55H192.829ZM196.315 192.414V191.723L198.453 189.508C198.681 189.268 198.869 189.057 199.017 188.876C199.167 188.693 199.279 188.519 199.353 188.355C199.427 188.19 199.464 188.015 199.464 187.83C199.464 187.621 199.415 187.44 199.316 187.288C199.217 187.133 199.083 187.015 198.912 186.933C198.741 186.849 198.549 186.806 198.335 186.806C198.109 186.806 197.912 186.853 197.743 186.945C197.575 187.038 197.445 187.168 197.355 187.337C197.264 187.506 197.219 187.703 197.219 187.929H196.309C196.309 187.545 196.397 187.208 196.574 186.921C196.751 186.633 196.994 186.41 197.302 186.251C197.611 186.091 197.961 186.011 198.354 186.011C198.751 186.011 199.1 186.09 199.403 186.248C199.707 186.404 199.944 186.618 200.115 186.89C200.286 187.159 200.371 187.463 200.371 187.803C200.371 188.037 200.327 188.266 200.238 188.49C200.152 188.715 200.001 188.964 199.785 189.24C199.569 189.513 199.269 189.845 198.884 190.236L197.629 191.55V191.596H200.473V192.414H196.315ZM203.841 192.518C203.353 192.516 202.937 192.388 202.592 192.133C202.246 191.878 201.982 191.507 201.799 191.02C201.616 190.532 201.524 189.945 201.524 189.258C201.524 188.574 201.616 187.989 201.799 187.503C201.984 187.018 202.249 186.648 202.595 186.393C202.942 186.138 203.358 186.011 203.841 186.011C204.324 186.011 204.738 186.139 205.084 186.396C205.429 186.651 205.693 187.021 205.876 187.507C206.061 187.99 206.154 188.574 206.154 189.258C206.154 189.947 206.062 190.535 205.879 191.023C205.696 191.508 205.432 191.879 205.087 192.136C204.741 192.391 204.326 192.518 203.841 192.518ZM203.841 191.695C204.268 191.695 204.603 191.486 204.843 191.069C205.086 190.651 205.207 190.048 205.207 189.258C205.207 188.734 205.152 188.291 205.04 187.929C204.932 187.565 204.774 187.29 204.569 187.103C204.365 186.913 204.122 186.819 203.841 186.819C203.415 186.819 203.081 187.029 202.838 187.448C202.596 187.867 202.473 188.471 202.471 189.258C202.471 189.785 202.526 190.23 202.635 190.594C202.746 190.956 202.903 191.23 203.107 191.417C203.31 191.602 203.555 191.695 203.841 191.695ZM207.248 192.414V191.723L209.385 189.508C209.614 189.268 209.802 189.057 209.95 188.876C210.1 188.693 210.212 188.519 210.286 188.355C210.36 188.19 210.397 188.015 210.397 187.83C210.397 187.621 210.348 187.44 210.249 187.288C210.15 187.133 210.016 187.015 209.845 186.933C209.674 186.849 209.482 186.806 209.268 186.806C209.042 186.806 208.845 186.853 208.676 186.945C208.507 187.038 208.378 187.168 208.287 187.337C208.197 187.506 208.152 187.703 208.152 187.929H207.242C207.242 187.545 207.33 187.208 207.507 186.921C207.684 186.633 207.927 186.41 208.235 186.251C208.543 186.091 208.894 186.011 209.287 186.011C209.684 186.011 210.033 186.09 210.335 186.248C210.64 186.404 210.877 186.618 211.048 186.89C211.218 187.159 211.304 187.463 211.304 187.803C211.304 188.037 211.26 188.266 211.171 188.49C211.085 188.715 210.934 188.964 210.718 189.24C210.502 189.513 210.202 189.845 209.817 190.236L208.562 191.55V191.596H211.406V192.414H207.248ZM214.774 192.5C214.35 192.5 213.972 192.427 213.639 192.281C213.307 192.135 213.045 191.932 212.852 191.673C212.661 191.412 212.558 191.11 212.544 190.767H213.512C213.524 190.954 213.587 191.116 213.7 191.254C213.815 191.39 213.965 191.494 214.151 191.568C214.336 191.643 214.541 191.68 214.767 191.68C215.016 191.68 215.236 191.636 215.427 191.55C215.621 191.464 215.772 191.343 215.881 191.189C215.99 191.033 216.044 190.853 216.044 190.649C216.044 190.438 215.99 190.252 215.881 190.091C215.774 189.929 215.617 189.801 215.409 189.709C215.203 189.616 214.954 189.57 214.662 189.57H214.129V188.793H214.662C214.897 188.793 215.102 188.751 215.279 188.666C215.458 188.582 215.598 188.465 215.699 188.315C215.8 188.162 215.85 187.985 215.85 187.781C215.85 187.586 215.806 187.416 215.717 187.272C215.631 187.126 215.508 187.012 215.347 186.93C215.189 186.848 215.002 186.806 214.786 186.806C214.58 186.806 214.388 186.844 214.209 186.921C214.032 186.995 213.888 187.102 213.777 187.241C213.666 187.379 213.607 187.545 213.598 187.738H212.676C212.687 187.397 212.787 187.096 212.978 186.837C213.172 186.578 213.427 186.376 213.743 186.23C214.06 186.084 214.412 186.011 214.798 186.011C215.203 186.011 215.553 186.09 215.847 186.248C216.143 186.404 216.371 186.613 216.532 186.874C216.694 187.135 216.774 187.421 216.772 187.732C216.774 188.085 216.675 188.386 216.476 188.632C216.279 188.879 216.015 189.045 215.686 189.129V189.178C216.106 189.242 216.431 189.409 216.661 189.678C216.893 189.947 217.009 190.281 217.006 190.68C217.009 191.028 216.912 191.339 216.717 191.615C216.523 191.89 216.259 192.107 215.924 192.266C215.589 192.422 215.205 192.5 214.774 192.5Z\" fill=\"#98A2B3\"/>\r\n <rect width=\"313.286\" height=\"116.629\" transform=\"translate(165.213 229.961)\" fill=\"url(#pattern0)\"/>\r\n <path d=\"M165.03 342.549V236.532L111.678 214.166V364.915L165.03 342.549Z\" fill=\"#ACDCE7\"/>\r\n <path d=\"M138.856 310.953L138.856 312.462L138.474 312.462L138.474 310.953C138.474 310.638 138.423 310.382 138.321 310.186C138.217 309.987 138.077 309.843 137.9 309.753C137.723 309.661 137.524 309.615 137.304 309.615C137.088 309.615 136.889 309.661 136.707 309.753C136.526 309.843 136.38 309.987 136.271 310.186C136.16 310.382 136.104 310.638 136.104 310.953L136.104 312.305L141.011 312.305L141.011 312.752L135.719 312.752L135.719 310.953C135.719 310.565 135.785 310.239 135.919 309.975C136.052 309.709 136.237 309.508 136.475 309.372C136.712 309.236 136.986 309.168 137.296 309.168C137.621 309.168 137.901 309.236 138.136 309.372C138.369 309.508 138.547 309.707 138.67 309.972C138.794 310.236 138.856 310.563 138.856 310.953ZM140.306 305.919L138.278 305.919C138.091 305.919 137.93 305.957 137.794 306.035C137.659 306.112 137.554 306.226 137.482 306.377C137.409 306.527 137.373 306.712 137.373 306.933C137.373 307.136 137.409 307.318 137.482 307.478C137.552 307.635 137.648 307.76 137.769 307.852C137.888 307.942 138.02 307.987 138.165 307.987L138.161 308.423C138.014 308.423 137.871 308.387 137.732 308.314C137.594 308.241 137.471 308.138 137.362 308.005C137.253 307.872 137.167 307.713 137.104 307.529C137.038 307.342 137.005 307.138 137.005 306.915C137.005 306.633 137.053 306.386 137.147 306.173C137.242 305.957 137.384 305.789 137.573 305.668C137.762 305.547 137.999 305.486 138.285 305.486L140.186 305.486C140.322 305.486 140.462 305.476 140.608 305.457C140.753 305.435 140.873 305.405 140.968 305.366L141.011 305.366L141.011 305.828C140.924 305.857 140.815 305.88 140.684 305.897C140.551 305.911 140.425 305.919 140.306 305.919ZM138.721 305.817L139.056 305.81L139.056 306.664C139.056 306.887 139.076 307.087 139.117 307.264C139.156 307.438 139.214 307.586 139.292 307.707C139.367 307.828 139.458 307.921 139.565 307.987C139.671 308.05 139.792 308.081 139.928 308.081C140.069 308.081 140.197 308.046 140.313 307.976C140.43 307.903 140.523 307.801 140.593 307.671C140.661 307.537 140.695 307.38 140.695 307.198C140.695 306.956 140.65 306.743 140.56 306.558C140.471 306.372 140.353 306.218 140.208 306.097C140.063 305.976 139.904 305.894 139.732 305.853L139.983 305.664C140.104 305.696 140.228 305.754 140.357 305.839C140.483 305.921 140.602 306.029 140.713 306.162C140.822 306.295 140.912 306.453 140.982 306.635C141.05 306.814 141.084 307.018 141.084 307.245C141.084 307.502 141.035 307.726 140.939 307.918C140.842 308.107 140.71 308.255 140.542 308.361C140.373 308.465 140.181 308.518 139.968 308.518C139.774 308.518 139.601 308.476 139.448 308.394C139.293 308.312 139.162 308.193 139.056 308.038C138.947 307.88 138.864 307.691 138.808 307.471C138.75 307.248 138.721 306.998 138.721 306.722L138.721 305.817ZM140.008 301.964C139.901 301.964 139.796 301.99 139.692 302.044C139.588 302.097 139.492 302.2 139.405 302.353C139.317 302.503 139.243 302.725 139.183 303.018C139.134 303.236 139.08 303.431 139.019 303.603C138.959 303.773 138.886 303.916 138.801 304.032C138.716 304.148 138.615 304.237 138.496 304.297C138.377 304.358 138.237 304.388 138.074 304.388C137.929 304.388 137.792 304.357 137.663 304.294C137.533 304.228 137.419 304.136 137.322 304.017C137.222 303.896 137.145 303.751 137.089 303.581C137.033 303.409 137.005 303.217 137.005 303.003C137.005 302.7 137.058 302.441 137.162 302.225C137.264 302.007 137.403 301.841 137.58 301.727C137.757 301.611 137.957 301.553 138.18 301.553L138.18 301.986C138.044 301.986 137.915 302.026 137.794 302.105C137.673 302.183 137.574 302.298 137.496 302.451C137.419 302.601 137.38 302.785 137.38 303.003C137.38 303.229 137.414 303.412 137.482 303.552C137.55 303.693 137.636 303.796 137.74 303.861C137.844 303.924 137.952 303.956 138.063 303.956C138.151 303.956 138.23 303.942 138.303 303.916C138.373 303.887 138.439 303.836 138.499 303.763C138.56 303.688 138.617 303.581 138.67 303.443C138.724 303.305 138.776 303.126 138.827 302.905C138.897 302.588 138.983 302.328 139.085 302.127C139.184 301.924 139.308 301.773 139.455 301.677C139.601 301.58 139.778 301.531 139.986 301.531C140.149 301.531 140.298 301.565 140.433 301.633C140.567 301.701 140.682 301.799 140.779 301.927C140.876 302.053 140.951 302.206 141.004 302.385C141.057 302.562 141.084 302.761 141.084 302.982C141.084 303.314 141.029 303.595 140.92 303.825C140.809 304.053 140.663 304.226 140.484 304.345C140.302 304.461 140.11 304.519 139.906 304.519L139.906 304.087C140.11 304.072 140.271 304.008 140.39 303.894C140.506 303.78 140.588 303.641 140.637 303.476C140.685 303.309 140.71 303.144 140.71 302.982C140.71 302.759 140.677 302.572 140.611 302.422C140.546 302.271 140.46 302.158 140.353 302.08C140.247 302.002 140.132 301.964 140.008 301.964ZM140.008 298.191C139.901 298.191 139.796 298.217 139.692 298.271C139.588 298.324 139.492 298.427 139.405 298.58C139.317 298.73 139.243 298.952 139.183 299.245C139.134 299.463 139.08 299.658 139.019 299.83C138.959 300 138.886 300.143 138.801 300.259C138.716 300.375 138.615 300.464 138.496 300.524C138.377 300.585 138.237 300.615 138.074 300.615C137.929 300.615 137.792 300.584 137.663 300.521C137.533 300.455 137.419 300.363 137.322 300.244C137.222 300.123 137.145 299.978 137.089 299.808C137.033 299.636 137.005 299.443 137.005 299.23C137.005 298.927 137.058 298.668 137.162 298.452C137.264 298.234 137.403 298.068 137.58 297.954C137.757 297.838 137.957 297.78 138.18 297.78L138.18 298.212C138.044 298.212 137.915 298.252 137.794 298.332C137.673 298.41 137.574 298.525 137.496 298.678C137.419 298.828 137.38 299.012 137.38 299.23C137.38 299.456 137.414 299.639 137.482 299.779C137.55 299.92 137.636 300.023 137.74 300.088C137.844 300.151 137.952 300.183 138.063 300.183C138.151 300.183 138.23 300.169 138.303 300.143C138.373 300.114 138.439 300.063 138.499 299.99C138.56 299.915 138.617 299.808 138.67 299.67C138.724 299.532 138.776 299.353 138.827 299.132C138.897 298.815 138.983 298.555 139.085 298.354C139.184 298.151 139.308 298 139.455 297.903C139.601 297.807 139.778 297.758 139.986 297.758C140.149 297.758 140.298 297.792 140.433 297.86C140.567 297.928 140.682 298.026 140.779 298.154C140.876 298.28 140.951 298.433 141.004 298.612C141.057 298.789 141.084 298.988 141.084 299.208C141.084 299.54 141.029 299.822 140.92 300.052C140.809 300.28 140.663 300.453 140.484 300.572C140.302 300.688 140.11 300.746 139.906 300.746L139.906 300.313C140.11 300.299 140.271 300.235 140.39 300.121C140.506 300.007 140.588 299.868 140.637 299.703C140.685 299.536 140.71 299.371 140.71 299.208C140.71 298.985 140.677 298.799 140.611 298.649C140.546 298.498 140.46 298.384 140.353 298.307C140.247 298.229 140.132 298.191 140.008 298.191ZM141.084 295.254C141.084 295.51 141.037 295.747 140.942 295.962C140.848 296.176 140.714 296.362 140.542 296.522C140.37 296.68 140.167 296.802 139.932 296.889C139.694 296.974 139.435 297.017 139.154 297.017L138.997 297.017C138.695 297.017 138.421 296.972 138.176 296.882C137.931 296.792 137.722 296.669 137.547 296.511C137.373 296.354 137.239 296.174 137.147 295.973C137.053 295.77 137.005 295.556 137.005 295.334C137.005 295.084 137.05 294.862 137.14 294.668C137.227 294.474 137.352 294.312 137.514 294.181C137.674 294.048 137.865 293.947 138.085 293.88C138.303 293.812 138.544 293.778 138.808 293.778L139.074 293.778L139.074 296.755L138.703 296.755L138.703 294.21L138.652 294.21C138.432 294.215 138.226 294.26 138.034 294.345C137.84 294.427 137.683 294.551 137.562 294.716C137.44 294.88 137.38 295.086 137.38 295.334C137.38 295.518 137.419 295.687 137.496 295.842C137.574 295.995 137.685 296.127 137.831 296.239C137.974 296.348 138.144 296.433 138.343 296.493C138.539 296.551 138.758 296.58 138.997 296.58L139.154 296.58C139.372 296.58 139.575 296.549 139.764 296.486C139.951 296.42 140.116 296.328 140.259 296.21C140.402 296.088 140.513 295.945 140.593 295.781C140.673 295.616 140.713 295.434 140.713 295.235C140.713 295.003 140.671 294.797 140.586 294.617C140.499 294.438 140.362 294.277 140.175 294.134L140.386 293.861C140.512 293.946 140.628 294.053 140.735 294.181C140.842 294.307 140.926 294.459 140.989 294.636C141.052 294.813 141.084 295.018 141.084 295.254ZM137.729 292.487L141.011 292.487L141.011 292.92L137.078 292.92L137.078 292.498L137.729 292.487ZM137.049 291.095L137.449 291.106C137.442 291.155 137.436 291.202 137.431 291.248C137.426 291.294 137.424 291.344 137.424 291.397C137.424 291.586 137.459 291.752 137.529 291.895C137.597 292.035 137.692 292.154 137.816 292.251C137.937 292.348 138.08 292.422 138.245 292.473C138.407 292.524 138.582 292.553 138.768 292.56L138.83 292.72C138.573 292.72 138.335 292.693 138.114 292.64C137.894 292.587 137.701 292.506 137.536 292.396C137.369 292.285 137.239 292.146 137.147 291.978C137.053 291.809 137.005 291.61 137.005 291.382C137.005 291.327 137.01 291.272 137.02 291.219C137.027 291.163 137.037 291.122 137.049 291.095ZM138.489 289.06L138.863 289.06L138.863 290.801L138.489 290.801L138.489 289.06ZM138.467 286.352L138.467 287.842L138.089 287.849L138.089 286.566C138.089 286.304 138.051 286.081 137.976 285.897C137.901 285.713 137.789 285.574 137.642 285.479C137.491 285.382 137.307 285.334 137.089 285.334C136.866 285.334 136.682 285.381 136.537 285.475C136.389 285.57 136.28 285.712 136.209 285.901C136.139 286.09 136.104 286.327 136.104 286.613L136.104 287.726L141.011 287.726L141.011 288.173L135.719 288.173L135.719 286.613C135.719 286.344 135.745 286.103 135.799 285.89C135.852 285.677 135.936 285.495 136.049 285.345C136.163 285.194 136.308 285.08 136.482 285.003C136.654 284.923 136.86 284.883 137.1 284.883C137.318 284.883 137.516 284.931 137.692 285.028C137.867 285.125 138.01 285.262 138.121 285.439C138.23 285.614 138.298 285.823 138.325 286.068L138.467 286.352ZM141.011 286.384L141.011 287.984L140.63 287.755L140.63 286.384C140.63 286.123 140.586 285.9 140.499 285.715C140.409 285.529 140.282 285.386 140.117 285.286C139.952 285.187 139.756 285.137 139.528 285.137C139.327 285.137 139.146 285.181 138.987 285.268C138.827 285.356 138.701 285.489 138.609 285.668C138.514 285.847 138.467 286.075 138.467 286.352L138.467 287.278L138.089 287.271L138.089 285.959L138.223 285.879C138.247 285.641 138.321 285.434 138.445 285.257C138.566 285.078 138.72 284.94 138.907 284.843C139.093 284.744 139.298 284.694 139.521 284.694C139.841 284.694 140.112 284.765 140.335 284.908C140.556 285.049 140.724 285.246 140.84 285.501C140.954 285.753 141.011 286.047 141.011 286.384ZM140.619 282.542L137.078 281.317L137.078 280.848L141.644 282.513C141.733 282.547 141.833 282.591 141.942 282.644C142.051 282.695 142.155 282.763 142.254 282.847C142.356 282.93 142.439 283.034 142.502 283.16C142.567 283.284 142.6 283.435 142.6 283.614C142.6 283.66 142.594 283.72 142.582 283.792C142.572 283.863 142.562 283.914 142.552 283.945L142.185 283.949C142.193 283.922 142.199 283.883 142.204 283.832C142.208 283.782 142.211 283.746 142.211 283.727C142.211 283.57 142.184 283.437 142.131 283.331C142.077 283.222 141.998 283.131 141.891 283.058C141.787 282.986 141.656 282.921 141.498 282.866L140.619 282.542ZM137.078 283.687L140.455 282.433L140.909 282.317L141.088 282.633L137.078 284.16L137.078 283.687ZM140.746 278.464C140.661 278.464 140.59 278.437 140.531 278.384C140.471 278.328 140.441 278.253 140.441 278.158C140.441 278.061 140.47 277.985 140.528 277.929C140.586 277.874 140.659 277.846 140.746 277.846C140.828 277.846 140.899 277.874 140.957 277.929C141.015 277.985 141.044 278.061 141.044 278.158C141.044 278.253 141.015 278.328 140.957 278.384C140.899 278.437 140.828 278.464 140.746 278.464ZM137.391 278.453C137.306 278.453 137.234 278.426 137.176 278.373C137.116 278.317 137.085 278.242 137.085 278.147C137.085 278.05 137.115 277.974 137.173 277.918C137.231 277.863 137.304 277.835 137.391 277.835C137.473 277.835 137.543 277.863 137.602 277.918C137.66 277.974 137.689 278.05 137.689 278.147C137.689 278.242 137.66 278.317 137.602 278.373C137.543 278.426 137.473 278.453 137.391 278.453ZM140.637 271.728L141.011 271.728L141.011 275.039L140.673 275.039L138.707 273.306C138.462 273.09 138.247 272.918 138.063 272.789C137.877 272.661 137.707 272.569 137.554 272.513C137.399 272.455 137.249 272.426 137.104 272.426C136.89 272.426 136.703 272.468 136.54 272.553C136.378 272.636 136.251 272.759 136.159 272.924C136.066 273.089 136.02 273.292 136.02 273.535C136.02 273.777 136.073 273.988 136.177 274.167C136.281 274.346 136.426 274.485 136.613 274.581C136.797 274.676 137.007 274.723 137.242 274.723L137.242 275.156C136.951 275.156 136.684 275.092 136.442 274.963C136.2 274.832 136.007 274.646 135.864 274.403C135.719 274.161 135.646 273.871 135.646 273.535C135.646 273.215 135.703 272.94 135.817 272.709C135.928 272.479 136.089 272.302 136.3 272.179C136.511 272.053 136.766 271.99 137.064 271.99C137.224 271.99 137.385 272.019 137.547 272.077C137.709 272.133 137.872 272.21 138.034 272.31C138.194 272.407 138.353 272.518 138.51 272.644C138.668 272.768 138.823 272.897 138.976 273.033L140.637 274.509L140.637 271.728ZM135.697 268.889L141.011 268.889L141.011 269.322L136.246 269.322L136.78 270.761L136.369 270.761L135.697 268.962L135.697 268.889Z\" fill=\"black\"/>\r\n <rect x=\"130.676\" y=\"378.797\" width=\"305.842\" height=\"35.361\" fill=\"white\"/>\r\n <path d=\"M151.233 389.305H149.819V388.734H151.233C151.507 388.734 151.728 388.69 151.898 388.603C152.068 388.516 152.191 388.395 152.269 388.24C152.349 388.085 152.389 387.908 152.389 387.709C152.389 387.527 152.349 387.356 152.269 387.197C152.191 387.037 152.068 386.908 151.898 386.811C151.728 386.712 151.507 386.662 151.233 386.662H149.982V391.38H149.281V386.088H151.233C151.633 386.088 151.971 386.157 152.247 386.295C152.523 386.433 152.733 386.625 152.876 386.869C153.019 387.112 153.09 387.389 153.09 387.702C153.09 388.041 153.019 388.331 152.876 388.571C152.733 388.81 152.523 388.993 152.247 389.119C151.971 389.243 151.633 389.305 151.233 389.305ZM156.151 390.708V388.683C156.151 388.528 156.119 388.394 156.056 388.28C155.996 388.163 155.904 388.074 155.78 388.011C155.657 387.948 155.504 387.916 155.322 387.916C155.153 387.916 155.003 387.945 154.875 388.003C154.749 388.062 154.65 388.138 154.577 388.232C154.507 388.327 154.472 388.429 154.472 388.538H153.799C153.799 388.397 153.835 388.258 153.908 388.12C153.981 387.982 154.085 387.857 154.221 387.745C154.359 387.631 154.524 387.542 154.715 387.476C154.909 387.409 155.125 387.375 155.362 387.375C155.648 387.375 155.9 387.423 156.118 387.52C156.339 387.617 156.511 387.764 156.634 387.96C156.76 388.154 156.823 388.397 156.823 388.69V390.523C156.823 390.653 156.834 390.793 156.856 390.941C156.88 391.088 156.915 391.216 156.962 391.322V391.38H156.26C156.226 391.303 156.199 391.2 156.18 391.071C156.161 390.941 156.151 390.819 156.151 390.708ZM156.267 388.996L156.275 389.468H155.595C155.403 389.468 155.232 389.484 155.082 389.516C154.932 389.545 154.806 389.59 154.704 389.65C154.602 389.711 154.525 389.787 154.472 389.879C154.418 389.969 154.392 390.074 154.392 390.195C154.392 390.319 154.419 390.432 154.475 390.533C154.531 390.635 154.615 390.716 154.726 390.777C154.84 390.835 154.979 390.864 155.144 390.864C155.35 390.864 155.532 390.821 155.689 390.733C155.847 390.646 155.972 390.539 156.064 390.413C156.158 390.287 156.209 390.165 156.216 390.046L156.504 390.37C156.487 390.472 156.441 390.584 156.365 390.708C156.29 390.831 156.19 390.95 156.064 391.064C155.94 391.176 155.792 391.269 155.62 391.344C155.451 391.417 155.259 391.453 155.046 391.453C154.779 391.453 154.545 391.401 154.344 391.297C154.146 391.193 153.991 391.053 153.879 390.879C153.77 390.702 153.715 390.504 153.715 390.286C153.715 390.075 153.757 389.89 153.839 389.73C153.921 389.568 154.04 389.433 154.195 389.327C154.35 389.218 154.537 389.135 154.755 389.079C154.973 389.024 155.217 388.996 155.486 388.996H156.267ZM160.171 390.337C160.171 390.24 160.149 390.151 160.106 390.068C160.065 389.983 159.979 389.907 159.848 389.839C159.719 389.769 159.525 389.708 159.266 389.657C159.048 389.611 158.85 389.557 158.674 389.494C158.499 389.431 158.35 389.354 158.226 389.265C158.105 389.175 158.012 389.07 157.947 388.949C157.881 388.827 157.848 388.686 157.848 388.523C157.848 388.368 157.882 388.222 157.95 388.083C158.021 387.945 158.119 387.823 158.245 387.716C158.373 387.61 158.527 387.526 158.706 387.466C158.886 387.405 159.086 387.375 159.306 387.375C159.621 387.375 159.89 387.43 160.113 387.542C160.336 387.653 160.507 387.802 160.626 387.989C160.744 388.173 160.804 388.378 160.804 388.603H160.131C160.131 388.494 160.099 388.389 160.033 388.287C159.97 388.183 159.877 388.097 159.753 388.029C159.632 387.961 159.483 387.927 159.306 387.927C159.119 387.927 158.968 387.956 158.852 388.014C158.738 388.07 158.654 388.142 158.601 388.229C158.55 388.316 158.525 388.408 158.525 388.505C158.525 388.578 158.537 388.643 158.561 388.701C158.588 388.757 158.634 388.809 158.699 388.858C158.764 388.904 158.857 388.947 158.975 388.989C159.094 389.03 159.245 389.071 159.43 389.112C159.752 389.185 160.017 389.272 160.226 389.374C160.434 389.476 160.589 389.6 160.691 389.748C160.793 389.896 160.844 390.075 160.844 390.286C160.844 390.458 160.807 390.616 160.735 390.759C160.664 390.902 160.561 391.025 160.426 391.13C160.292 391.231 160.132 391.311 159.946 391.369C159.762 391.425 159.554 391.453 159.324 391.453C158.978 391.453 158.684 391.391 158.445 391.268C158.205 391.144 158.023 390.984 157.899 390.788C157.776 390.592 157.714 390.384 157.714 390.166H158.39C158.4 390.35 158.453 390.497 158.55 390.606C158.647 390.713 158.766 390.789 158.906 390.835C159.047 390.879 159.186 390.901 159.324 390.901C159.508 390.901 159.662 390.876 159.786 390.828C159.912 390.779 160.008 390.713 160.073 390.628C160.138 390.543 160.171 390.446 160.171 390.337ZM164.017 390.337C164.017 390.24 163.995 390.151 163.952 390.068C163.91 389.983 163.824 389.907 163.693 389.839C163.565 389.769 163.371 389.708 163.112 389.657C162.894 389.611 162.696 389.557 162.519 389.494C162.345 389.431 162.196 389.354 162.072 389.265C161.951 389.175 161.858 389.07 161.792 388.949C161.727 388.827 161.694 388.686 161.694 388.523C161.694 388.368 161.728 388.222 161.796 388.083C161.866 387.945 161.964 387.823 162.09 387.716C162.219 387.61 162.373 387.526 162.552 387.466C162.731 387.405 162.931 387.375 163.152 387.375C163.467 387.375 163.736 387.43 163.959 387.542C164.182 387.653 164.353 387.802 164.471 387.989C164.59 388.173 164.649 388.378 164.649 388.603H163.977C163.977 388.494 163.944 388.389 163.879 388.287C163.816 388.183 163.723 388.097 163.599 388.029C163.478 387.961 163.329 387.927 163.152 387.927C162.965 387.927 162.814 387.956 162.698 388.014C162.584 388.07 162.5 388.142 162.447 388.229C162.396 388.316 162.37 388.408 162.37 388.505C162.37 388.578 162.382 388.643 162.407 388.701C162.433 388.757 162.479 388.809 162.545 388.858C162.61 388.904 162.702 388.947 162.821 388.989C162.94 389.03 163.091 389.071 163.275 389.112C163.598 389.185 163.863 389.272 164.072 389.374C164.28 389.476 164.435 389.6 164.537 389.748C164.639 389.896 164.689 390.075 164.689 390.286C164.689 390.458 164.653 390.616 164.58 390.759C164.51 390.902 164.407 391.025 164.271 391.13C164.138 391.231 163.978 391.311 163.792 391.369C163.607 391.425 163.4 391.453 163.17 391.453C162.824 391.453 162.53 391.391 162.29 391.268C162.05 391.144 161.869 390.984 161.745 390.788C161.622 390.592 161.56 390.384 161.56 390.166H162.236C162.246 390.35 162.299 390.497 162.396 390.606C162.493 390.713 162.611 390.789 162.752 390.835C162.893 390.879 163.032 390.901 163.17 390.901C163.354 390.901 163.508 390.876 163.632 390.828C163.758 390.779 163.853 390.713 163.919 390.628C163.984 390.543 164.017 390.446 164.017 390.337ZM167.205 391.453C166.931 391.453 166.683 391.407 166.46 391.315C166.239 391.22 166.049 391.088 165.889 390.919C165.732 390.749 165.61 390.548 165.526 390.315C165.441 390.083 165.398 389.828 165.398 389.552V389.399C165.398 389.079 165.446 388.795 165.54 388.545C165.635 388.293 165.763 388.08 165.925 387.905C166.088 387.731 166.272 387.599 166.478 387.509C166.684 387.419 166.897 387.375 167.118 387.375C167.399 387.375 167.641 387.423 167.845 387.52C168.051 387.617 168.219 387.753 168.35 387.927C168.481 388.099 168.578 388.303 168.641 388.538C168.704 388.77 168.735 389.025 168.735 389.301V389.603H165.798V389.054H168.063V389.003C168.053 388.829 168.017 388.659 167.954 388.494C167.893 388.329 167.796 388.194 167.663 388.087C167.53 387.98 167.348 387.927 167.118 387.927C166.965 387.927 166.824 387.96 166.696 388.025C166.568 388.088 166.457 388.183 166.365 388.309C166.273 388.435 166.202 388.589 166.151 388.77C166.1 388.952 166.074 389.162 166.074 389.399V389.552C166.074 389.739 166.1 389.914 166.151 390.079C166.204 390.241 166.28 390.384 166.38 390.508C166.482 390.632 166.604 390.728 166.747 390.799C166.892 390.869 167.057 390.904 167.241 390.904C167.479 390.904 167.68 390.856 167.845 390.759C168.009 390.662 168.154 390.532 168.277 390.37L168.684 390.693C168.6 390.822 168.492 390.944 168.361 391.06C168.23 391.177 168.069 391.271 167.877 391.344C167.688 391.417 167.464 391.453 167.205 391.453ZM170.193 388.065V391.38H169.52V387.447H170.175L170.193 388.065ZM171.421 387.426L171.418 388.051C171.362 388.039 171.309 388.031 171.258 388.029C171.209 388.024 171.154 388.022 171.091 388.022C170.936 388.022 170.799 388.046 170.68 388.094C170.561 388.143 170.461 388.211 170.378 388.298C170.296 388.385 170.23 388.489 170.182 388.611C170.136 388.729 170.106 388.86 170.091 389.003L169.902 389.112C169.902 388.875 169.925 388.652 169.971 388.443C170.02 388.235 170.093 388.051 170.193 387.891C170.292 387.728 170.418 387.602 170.571 387.513C170.726 387.421 170.91 387.375 171.123 387.375C171.172 387.375 171.228 387.381 171.291 387.393C171.354 387.402 171.397 387.413 171.421 387.426ZM173.442 388.854V389.407H171.669V388.854H173.442ZM176.089 388.905H174.747L174.74 388.342H175.958C176.159 388.342 176.335 388.308 176.485 388.24C176.635 388.172 176.752 388.075 176.834 387.949C176.919 387.821 176.961 387.668 176.961 387.491C176.961 387.297 176.924 387.14 176.848 387.018C176.776 386.895 176.663 386.805 176.51 386.749C176.36 386.691 176.169 386.662 175.936 386.662H174.904V391.38H174.202V386.088H175.936C176.208 386.088 176.45 386.116 176.663 386.171C176.876 386.225 177.057 386.31 177.205 386.426C177.355 386.54 177.469 386.685 177.546 386.862C177.624 387.039 177.663 387.251 177.663 387.498C177.663 387.716 177.607 387.914 177.495 388.091C177.384 388.265 177.229 388.408 177.03 388.52C176.834 388.631 176.604 388.703 176.34 388.734L176.089 388.905ZM176.056 391.38H174.471L174.867 390.81H176.056C176.279 390.81 176.468 390.771 176.623 390.693C176.781 390.616 176.901 390.507 176.983 390.366C177.065 390.223 177.107 390.055 177.107 389.861C177.107 389.665 177.071 389.495 177.001 389.352C176.931 389.209 176.821 389.099 176.67 389.021C176.52 388.944 176.326 388.905 176.089 388.905H175.089L175.096 388.342H176.463L176.612 388.545C176.867 388.567 177.082 388.64 177.259 388.763C177.436 388.884 177.571 389.039 177.663 389.228C177.757 389.417 177.804 389.626 177.804 389.854C177.804 390.183 177.732 390.462 177.586 390.69C177.443 390.915 177.241 391.087 176.979 391.206C176.718 391.322 176.41 391.38 176.056 391.38ZM179.844 390.973L180.938 387.447H181.658L180.08 391.987C180.044 392.084 179.995 392.189 179.935 392.3C179.876 392.414 179.801 392.522 179.709 392.624C179.617 392.725 179.506 392.808 179.375 392.871C179.246 392.936 179.092 392.969 178.913 392.969C178.86 392.969 178.792 392.962 178.71 392.947C178.627 392.933 178.569 392.92 178.535 392.911L178.531 392.365C178.551 392.368 178.581 392.37 178.622 392.373C178.666 392.378 178.696 392.38 178.713 392.38C178.866 392.38 178.996 392.359 179.102 392.318C179.209 392.279 179.298 392.213 179.371 392.118C179.446 392.026 179.51 391.899 179.564 391.737L179.844 390.973ZM179.04 387.447L180.062 390.501L180.236 391.21L179.753 391.457L178.306 387.447H179.04ZM184.082 391.024C184.082 390.91 184.117 390.815 184.187 390.737C184.26 390.657 184.364 390.617 184.5 390.617C184.636 390.617 184.739 390.657 184.809 390.737C184.882 390.815 184.918 390.91 184.918 391.024C184.918 391.136 184.882 391.23 184.809 391.308C184.739 391.385 184.636 391.424 184.5 391.424C184.364 391.424 184.26 391.385 184.187 391.308C184.117 391.23 184.082 391.136 184.082 391.024ZM184.086 387.814C184.086 387.701 184.121 387.605 184.191 387.527C184.264 387.447 184.368 387.407 184.504 387.407C184.639 387.407 184.742 387.447 184.813 387.527C184.885 387.605 184.922 387.701 184.922 387.814C184.922 387.926 184.885 388.02 184.813 388.098C184.742 388.176 184.639 388.214 184.504 388.214C184.368 388.214 184.264 388.176 184.191 388.098C184.121 388.02 184.086 387.926 184.086 387.814ZM191.156 390.828V391.38H187.692V390.897L189.425 388.967C189.639 388.729 189.804 388.528 189.92 388.363C190.039 388.196 190.121 388.047 190.167 387.916C190.215 387.783 190.24 387.647 190.24 387.509C190.24 387.335 190.203 387.177 190.131 387.037C190.06 386.894 189.956 386.78 189.818 386.695C189.68 386.61 189.513 386.568 189.316 386.568C189.081 386.568 188.885 386.614 188.728 386.706C188.572 386.795 188.456 386.921 188.379 387.084C188.301 387.246 188.262 387.433 188.262 387.644H187.59C187.59 387.346 187.655 387.073 187.786 386.826C187.917 386.579 188.111 386.382 188.368 386.237C188.625 386.089 188.941 386.015 189.316 386.015C189.651 386.015 189.937 386.075 190.174 386.193C190.412 386.31 190.594 386.474 190.72 386.688C190.848 386.898 190.912 387.146 190.912 387.429C190.912 387.584 190.886 387.742 190.832 387.902C190.781 388.059 190.71 388.217 190.618 388.374C190.528 388.532 190.423 388.687 190.302 388.84C190.183 388.992 190.056 389.142 189.92 389.29L188.502 390.828H191.156ZM194.086 386.059V391.38H193.413V386.898L192.057 387.393V386.786L193.98 386.059H194.086Z\" fill=\"#4B4B4B\"/>\r\n <rect x=\"133.778\" y=\"381.899\" width=\"12.4074\" height=\"12.4074\" rx=\"3.10185\" fill=\"#ACDCE7\"/>\r\n <rect width=\"161.296\" height=\"12.4074\" transform=\"translate(232.417 381.899)\" fill=\"url(#pattern1)\"/>\r\n <rect width=\"65.7591\" height=\"13.6481\" transform=\"translate(231.796 398.028)\" fill=\"url(#pattern2)\"/>\r\n <rect width=\"83.7499\" height=\"12.4074\" transform=\"translate(133.778 399.27)\" fill=\"url(#pattern3)\"/>\r\n </g>\r\n <g filter=\"url(#filter1_dd_3784_14918)\">\r\n <rect x=\"99.2637\" y=\"159.538\" width=\"389.798\" height=\"263.21\" rx=\"3.83388\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip3_3784_14918)\">\r\n <path d=\"M119.156 178.309C119.156 180.585 117.362 182.43 115.15 182.43C112.937 182.43 111.144 180.585 111.144 178.309C111.144 176.033 112.937 174.188 115.15 174.188C117.362 174.188 119.156 176.033 119.156 178.309ZM108.14 189.716C108.14 186.545 110.637 183.975 113.72 183.975H116.58C119.663 183.975 122.16 186.545 122.16 189.716C122.16 190.244 121.744 190.672 121.231 190.672H109.069C108.556 190.672 108.14 190.244 108.14 189.716Z\" fill=\"#009EF7\"/>\r\n <path d=\"M123.162 185.622C125.145 185.622 126.752 184.015 126.752 182.033C126.752 180.05 125.145 178.443 123.162 178.443C121.18 178.443 119.573 180.05 119.573 182.033C119.573 184.015 121.18 185.622 123.162 185.622ZM124.747 181.374L122.952 183.168C122.82 183.3 122.607 183.3 122.477 183.168L121.58 182.271C121.448 182.139 121.448 181.926 121.58 181.796C121.711 181.665 121.925 181.664 122.055 181.796L122.714 182.455L124.27 180.897C124.402 180.765 124.615 180.765 124.745 180.897C124.876 181.029 124.877 181.242 124.745 181.372L124.747 181.374Z\" fill=\"#009EF7\"/>\r\n </g>\r\n <path d=\"M138.605 174.63H137.287C137.249 174.414 137.18 174.223 137.079 174.056C136.978 173.887 136.852 173.743 136.701 173.626C136.551 173.508 136.38 173.42 136.187 173.361C135.997 173.3 135.791 173.27 135.57 173.27C135.178 173.27 134.83 173.368 134.527 173.566C134.224 173.761 133.986 174.048 133.815 174.426C133.643 174.802 133.557 175.261 133.557 175.804C133.557 176.356 133.643 176.822 133.815 177.2C133.989 177.576 134.226 177.86 134.527 178.053C134.83 178.243 135.176 178.339 135.567 178.339C135.783 178.339 135.985 178.31 136.173 178.254C136.363 178.195 136.533 178.109 136.684 177.997C136.837 177.884 136.965 177.745 137.068 177.581C137.174 177.416 137.247 177.228 137.287 177.017L138.605 177.024C138.556 177.367 138.449 177.689 138.284 177.99C138.122 178.29 137.909 178.556 137.646 178.786C137.383 179.014 137.075 179.193 136.723 179.322C136.37 179.449 135.979 179.512 135.549 179.512C134.914 179.512 134.348 179.365 133.85 179.072C133.352 178.778 132.959 178.354 132.673 177.799C132.386 177.245 132.243 176.58 132.243 175.804C132.243 175.026 132.387 174.361 132.676 173.809C132.965 173.255 133.359 172.83 133.857 172.537C134.355 172.243 134.919 172.096 135.549 172.096C135.951 172.096 136.324 172.152 136.67 172.265C137.015 172.378 137.323 172.544 137.593 172.762C137.864 172.978 138.086 173.244 138.259 173.559C138.436 173.871 138.551 174.229 138.605 174.63ZM142.108 179.519C141.579 179.519 141.121 179.403 140.733 179.17C140.345 178.938 140.044 178.612 139.831 178.194C139.619 177.776 139.513 177.287 139.513 176.728C139.513 176.168 139.619 175.678 139.831 175.258C140.044 174.837 140.345 174.511 140.733 174.278C141.121 174.045 141.579 173.929 142.108 173.929C142.636 173.929 143.095 174.045 143.482 174.278C143.87 174.511 144.17 174.837 144.381 175.258C144.595 175.678 144.702 176.168 144.702 176.728C144.702 177.287 144.595 177.776 144.381 178.194C144.17 178.612 143.87 178.938 143.482 179.17C143.095 179.403 142.636 179.519 142.108 179.519ZM142.115 178.497C142.401 178.497 142.641 178.418 142.834 178.261C143.027 178.101 143.17 177.887 143.264 177.619C143.36 177.352 143.408 177.053 143.408 176.724C143.408 176.393 143.36 176.093 143.264 175.825C143.17 175.555 143.027 175.34 142.834 175.18C142.641 175.02 142.401 174.941 142.115 174.941C141.821 174.941 141.577 175.02 141.382 175.18C141.189 175.34 141.044 175.555 140.948 175.825C140.854 176.093 140.807 176.393 140.807 176.724C140.807 177.053 140.854 177.352 140.948 177.619C141.044 177.887 141.189 178.101 141.382 178.261C141.577 178.418 141.821 178.497 142.115 178.497ZM147.061 176.241V179.414H145.785V173.999H147.005V174.919H147.068C147.193 174.616 147.391 174.375 147.664 174.197C147.939 174.018 148.278 173.929 148.682 173.929C149.056 173.929 149.381 174.009 149.659 174.169C149.938 174.328 150.155 174.56 150.307 174.863C150.462 175.166 150.539 175.534 150.536 175.966V179.414H149.26V176.164C149.26 175.802 149.166 175.519 148.978 175.314C148.793 175.11 148.536 175.008 148.207 175.008C147.983 175.008 147.785 175.057 147.611 175.156C147.439 175.252 147.304 175.392 147.205 175.575C147.109 175.758 147.061 175.98 147.061 176.241ZM156.476 173.999L154.548 179.414H153.138L151.21 173.999H152.57L153.815 178.021H153.871L155.119 173.999H156.476ZM159.571 179.519C159.029 179.519 158.56 179.407 158.165 179.181C157.773 178.953 157.471 178.631 157.259 178.215C157.048 177.797 156.942 177.305 156.942 176.738C156.942 176.181 157.048 175.693 157.259 175.272C157.473 174.849 157.771 174.52 158.154 174.285C158.537 174.048 158.987 173.929 159.504 173.929C159.838 173.929 160.153 173.983 160.449 174.091C160.748 174.197 161.011 174.361 161.239 174.585C161.469 174.808 161.65 175.092 161.782 175.438C161.913 175.781 161.979 176.19 161.979 176.664V177.055H157.541V176.195H160.756C160.753 175.951 160.701 175.734 160.597 175.543C160.494 175.351 160.349 175.199 160.164 175.089C159.98 174.978 159.766 174.923 159.522 174.923C159.261 174.923 159.032 174.986 158.835 175.113C158.637 175.238 158.483 175.402 158.373 175.607C158.265 175.809 158.21 176.031 158.207 176.273V177.024C158.207 177.339 158.265 177.609 158.38 177.834C158.495 178.058 158.656 178.229 158.863 178.349C159.07 178.467 159.312 178.525 159.589 178.525C159.775 178.525 159.943 178.499 160.093 178.448C160.244 178.394 160.374 178.315 160.484 178.212C160.595 178.108 160.678 177.98 160.735 177.827L161.926 177.961C161.851 178.276 161.707 178.551 161.496 178.786C161.287 179.019 161.019 179.2 160.692 179.329C160.366 179.456 159.992 179.519 159.571 179.519ZM163.058 179.414V173.999H164.296V174.902H164.352C164.451 174.589 164.62 174.348 164.86 174.179C165.102 174.008 165.378 173.922 165.688 173.922C165.758 173.922 165.837 173.925 165.924 173.932C166.013 173.937 166.087 173.945 166.146 173.957V175.131C166.092 175.112 166.006 175.096 165.889 175.082C165.774 175.065 165.662 175.057 165.554 175.057C165.321 175.057 165.112 175.107 164.927 175.208C164.743 175.307 164.599 175.445 164.493 175.621C164.387 175.797 164.334 176 164.334 176.231V179.414H163.058ZM171.273 175.431L170.11 175.557C170.077 175.44 170.019 175.329 169.937 175.226C169.857 175.123 169.749 175.039 169.613 174.976C169.476 174.912 169.31 174.881 169.112 174.881C168.847 174.881 168.623 174.938 168.443 175.053C168.264 175.169 168.176 175.318 168.178 175.501C168.176 175.658 168.233 175.787 168.351 175.885C168.471 175.984 168.668 176.065 168.943 176.128L169.867 176.326C170.379 176.436 170.76 176.611 171.009 176.851C171.26 177.091 171.387 177.404 171.389 177.792C171.387 178.133 171.287 178.434 171.09 178.695C170.895 178.953 170.623 179.155 170.275 179.301C169.928 179.446 169.528 179.519 169.077 179.519C168.414 179.519 167.881 179.381 167.477 179.103C167.073 178.824 166.832 178.435 166.754 177.937L167.998 177.817C168.055 178.061 168.175 178.246 168.358 178.37C168.541 178.495 168.78 178.557 169.073 178.557C169.377 178.557 169.62 178.495 169.803 178.37C169.989 178.246 170.082 178.092 170.082 177.908C170.082 177.753 170.022 177.625 169.902 177.524C169.784 177.423 169.601 177.346 169.352 177.292L168.428 177.098C167.909 176.99 167.525 176.808 167.276 176.551C167.027 176.293 166.903 175.966 166.906 175.572C166.903 175.238 166.994 174.949 167.177 174.704C167.363 174.458 167.62 174.267 167.949 174.133C168.28 173.997 168.662 173.929 169.095 173.929C169.729 173.929 170.228 174.064 170.593 174.334C170.959 174.605 171.186 174.97 171.273 175.431ZM172.441 179.414V173.999H173.717V179.414H172.441ZM173.083 173.231C172.881 173.231 172.707 173.164 172.561 173.03C172.416 172.894 172.343 172.731 172.343 172.54C172.343 172.347 172.416 172.184 172.561 172.05C172.707 171.914 172.881 171.846 173.083 171.846C173.287 171.846 173.461 171.914 173.605 172.05C173.75 172.184 173.823 172.347 173.823 172.54C173.823 172.731 173.75 172.894 173.605 173.03C173.461 173.164 173.287 173.231 173.083 173.231ZM177.391 179.519C176.862 179.519 176.404 179.403 176.017 179.17C175.629 178.938 175.328 178.612 175.114 178.194C174.903 177.776 174.797 177.287 174.797 176.728C174.797 176.168 174.903 175.678 175.114 175.258C175.328 174.837 175.629 174.511 176.017 174.278C176.404 174.045 176.862 173.929 177.391 173.929C177.92 173.929 178.378 174.045 178.766 174.278C179.154 174.511 179.453 174.837 179.665 175.258C179.879 175.678 179.985 176.168 179.985 176.728C179.985 177.287 179.879 177.776 179.665 178.194C179.453 178.612 179.154 178.938 178.766 179.17C178.378 179.403 177.92 179.519 177.391 179.519ZM177.398 178.497C177.685 178.497 177.925 178.418 178.117 178.261C178.31 178.101 178.453 177.887 178.547 177.619C178.644 177.352 178.692 177.053 178.692 176.724C178.692 176.393 178.644 176.093 178.547 175.825C178.453 175.555 178.31 175.34 178.117 175.18C177.925 175.02 177.685 174.941 177.398 174.941C177.105 174.941 176.86 175.02 176.665 175.18C176.472 175.34 176.328 175.555 176.232 175.825C176.138 176.093 176.091 176.393 176.091 176.724C176.091 177.053 176.138 177.352 176.232 177.619C176.328 177.887 176.472 178.101 176.665 178.261C176.86 178.418 177.105 178.497 177.398 178.497ZM182.344 176.241V179.414H181.068V173.999H182.288V174.919H182.352C182.476 174.616 182.675 174.375 182.947 174.197C183.222 174.018 183.562 173.929 183.966 173.929C184.34 173.929 184.665 174.009 184.942 174.169C185.222 174.328 185.438 174.56 185.591 174.863C185.746 175.166 185.822 175.534 185.82 175.966V179.414H184.544V176.164C184.544 175.802 184.45 175.519 184.262 175.314C184.076 175.11 183.819 175.008 183.49 175.008C183.267 175.008 183.068 175.057 182.894 175.156C182.723 175.252 182.588 175.392 182.489 175.575C182.393 175.758 182.344 175.98 182.344 176.241ZM189.636 179.414V172.195H194.26V173.291H190.943V175.251H193.943V176.347H190.943V179.414H189.636ZM196.671 172.195V179.414H195.395V172.195H196.671ZM200.345 179.519C199.816 179.519 199.358 179.403 198.97 179.17C198.582 178.938 198.282 178.612 198.068 178.194C197.856 177.776 197.751 177.287 197.751 176.728C197.751 176.168 197.856 175.678 198.068 175.258C198.282 174.837 198.582 174.511 198.97 174.278C199.358 174.045 199.816 173.929 200.345 173.929C200.874 173.929 201.332 174.045 201.72 174.278C202.107 174.511 202.407 174.837 202.618 175.258C202.832 175.678 202.939 176.168 202.939 176.728C202.939 177.287 202.832 177.776 202.618 178.194C202.407 178.612 202.107 178.938 201.72 179.17C201.332 179.403 200.874 179.519 200.345 179.519ZM200.352 178.497C200.639 178.497 200.878 178.418 201.071 178.261C201.264 178.101 201.407 177.887 201.501 177.619C201.597 177.352 201.646 177.053 201.646 176.724C201.646 176.393 201.597 176.093 201.501 175.825C201.407 175.555 201.264 175.34 201.071 175.18C200.878 175.02 200.639 174.941 200.352 174.941C200.058 174.941 199.814 175.02 199.619 175.18C199.426 175.34 199.282 175.555 199.185 175.825C199.091 176.093 199.044 176.393 199.044 176.724C199.044 177.053 199.091 177.352 199.185 177.619C199.282 177.887 199.426 178.101 199.619 178.261C199.814 178.418 200.058 178.497 200.352 178.497ZM204.984 179.414L203.455 173.999H204.755L205.707 177.806H205.756L206.729 173.999H208.016L208.989 177.785H209.041L209.979 173.999H211.283L209.75 179.414H208.421L207.406 175.755H207.332L206.317 179.414H204.984ZM216.998 179.519C216.457 179.519 215.993 179.401 215.606 179.163C215.22 178.926 214.923 178.598 214.714 178.18C214.507 177.759 214.404 177.275 214.404 176.728C214.404 176.178 214.509 175.693 214.721 175.272C214.932 174.849 215.231 174.52 215.616 174.285C216.004 174.048 216.462 173.929 216.991 173.929C217.43 173.929 217.819 174.01 218.158 174.172C218.498 174.332 218.77 174.559 218.972 174.852C219.174 175.144 219.289 175.485 219.317 175.875H218.098C218.048 175.614 217.931 175.396 217.745 175.223C217.562 175.046 217.316 174.958 217.008 174.958C216.748 174.958 216.519 175.029 216.321 175.17C216.124 175.308 215.97 175.508 215.859 175.769C215.751 176.03 215.697 176.342 215.697 176.707C215.697 177.075 215.751 177.393 215.859 177.658C215.967 177.921 216.119 178.125 216.314 178.268C216.511 178.409 216.743 178.479 217.008 178.479C217.196 178.479 217.364 178.444 217.513 178.374C217.663 178.301 217.789 178.196 217.89 178.06C217.991 177.924 218.06 177.758 218.098 177.563H219.317C219.287 177.946 219.174 178.286 218.979 178.582C218.784 178.875 218.518 179.106 218.182 179.273C217.846 179.437 217.451 179.519 216.998 179.519ZM221.641 176.241V179.414H220.365V172.195H221.613V174.919H221.676C221.803 174.614 221.999 174.373 222.265 174.197C222.533 174.018 222.873 173.929 223.287 173.929C223.663 173.929 223.991 174.008 224.27 174.165C224.55 174.323 224.766 174.553 224.919 174.856C225.074 175.159 225.152 175.529 225.152 175.966V179.414H223.876V176.164C223.876 175.799 223.782 175.516 223.594 175.314C223.408 175.11 223.147 175.008 222.811 175.008C222.586 175.008 222.384 175.057 222.205 175.156C222.029 175.252 221.89 175.392 221.789 175.575C221.69 175.758 221.641 175.98 221.641 176.241ZM228.01 179.523C227.667 179.523 227.358 179.462 227.083 179.34C226.811 179.215 226.595 179.032 226.435 178.79C226.277 178.548 226.199 178.249 226.199 177.894C226.199 177.589 226.255 177.336 226.368 177.137C226.481 176.937 226.634 176.777 226.83 176.657C227.025 176.537 227.244 176.447 227.489 176.386C227.735 176.322 227.99 176.276 228.254 176.248C228.571 176.215 228.828 176.186 229.025 176.16C229.223 176.132 229.366 176.09 229.456 176.033C229.547 175.975 229.593 175.884 229.593 175.762V175.741C229.593 175.475 229.514 175.27 229.357 175.124C229.199 174.978 228.973 174.905 228.677 174.905C228.364 174.905 228.116 174.973 227.933 175.11C227.752 175.246 227.63 175.407 227.566 175.593L226.375 175.423C226.469 175.094 226.624 174.82 226.84 174.599C227.056 174.375 227.321 174.209 227.633 174.098C227.946 173.985 228.291 173.929 228.669 173.929C228.93 173.929 229.19 173.959 229.448 174.021C229.707 174.082 229.943 174.183 230.157 174.324C230.371 174.462 230.542 174.652 230.672 174.891C230.803 175.131 230.869 175.431 230.869 175.79V179.414H229.642V178.67H229.6C229.522 178.82 229.413 178.961 229.272 179.093C229.134 179.222 228.959 179.327 228.747 179.407C228.538 179.484 228.292 179.523 228.01 179.523ZM228.342 178.585C228.598 178.585 228.82 178.535 229.008 178.434C229.196 178.33 229.34 178.194 229.441 178.025C229.545 177.856 229.597 177.671 229.597 177.471V176.833C229.557 176.866 229.488 176.897 229.392 176.925C229.298 176.953 229.192 176.978 229.075 176.999C228.957 177.02 228.841 177.039 228.726 177.055C228.611 177.072 228.511 177.086 228.426 177.098C228.236 177.124 228.066 177.166 227.915 177.225C227.765 177.283 227.646 177.366 227.559 177.471C227.472 177.575 227.429 177.709 227.429 177.873C227.429 178.108 227.515 178.286 227.686 178.405C227.858 178.525 228.076 178.585 228.342 178.585ZM232.152 179.414V173.999H233.389V174.902H233.446C233.544 174.589 233.713 174.348 233.953 174.179C234.195 174.008 234.471 173.922 234.782 173.922C234.852 173.922 234.931 173.925 235.018 173.932C235.107 173.937 235.181 173.945 235.24 173.957V175.131C235.186 175.112 235.1 175.096 234.982 175.082C234.867 175.065 234.756 175.057 234.648 175.057C234.415 175.057 234.206 175.107 234.02 175.208C233.837 175.307 233.692 175.445 233.587 175.621C233.481 175.797 233.428 176 233.428 176.231V179.414H232.152ZM239.082 173.999V174.986H235.969V173.999H239.082ZM236.738 172.702H238.014V177.785C238.014 177.957 238.04 178.088 238.091 178.18C238.145 178.269 238.216 178.33 238.303 178.363C238.39 178.396 238.486 178.413 238.592 178.413C238.672 178.413 238.745 178.407 238.81 178.395C238.879 178.383 238.93 178.373 238.965 178.363L239.181 179.361C239.112 179.384 239.015 179.41 238.888 179.438C238.763 179.466 238.611 179.483 238.43 179.488C238.11 179.497 237.822 179.449 237.566 179.343C237.31 179.235 237.107 179.068 236.956 178.843C236.808 178.617 236.735 178.335 236.738 177.997V172.702Z\" fill=\"#101828\"/>\r\n <g clip-path=\"url(#clip4_3784_14918)\">\r\n <path d=\"M249.64 177.568V175.914M249.64 174.259H249.644M253.775 175.914C253.775 178.198 251.924 180.049 249.64 180.049C247.356 180.049 245.504 178.198 245.504 175.914C245.504 173.629 247.356 171.778 249.64 171.778C251.924 171.778 253.775 173.629 253.775 175.914Z\" stroke=\"#98A2B3\" stroke-width=\"1.24074\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <path d=\"M134.453 192.414H132.408V186.097H134.517C135.136 186.097 135.668 186.224 136.112 186.476C136.556 186.727 136.896 187.088 137.133 187.559C137.371 188.028 137.491 188.59 137.491 189.246C137.491 189.904 137.37 190.469 137.13 190.942C136.891 191.415 136.546 191.779 136.093 192.034C135.641 192.287 135.094 192.414 134.453 192.414ZM133.361 191.581H134.4C134.881 191.581 135.281 191.49 135.6 191.309C135.919 191.126 136.157 190.862 136.316 190.517C136.474 190.169 136.553 189.746 136.553 189.246C136.553 188.751 136.474 188.33 136.316 187.985C136.159 187.639 135.926 187.377 135.615 187.198C135.305 187.019 134.919 186.93 134.459 186.93H133.361V191.581ZM139.98 192.518C139.68 192.518 139.409 192.463 139.166 192.352C138.923 192.239 138.731 192.075 138.589 191.861C138.45 191.648 138.38 191.386 138.38 191.075C138.38 190.808 138.431 190.588 138.534 190.415C138.637 190.242 138.775 190.106 138.95 190.005C139.125 189.904 139.32 189.828 139.536 189.777C139.752 189.725 139.972 189.686 140.196 189.659C140.48 189.626 140.71 189.6 140.887 189.579C141.064 189.557 141.192 189.521 141.273 189.471C141.353 189.422 141.393 189.342 141.393 189.231V189.209C141.393 188.94 141.317 188.731 141.165 188.583C141.015 188.435 140.79 188.361 140.492 188.361C140.182 188.361 139.937 188.43 139.758 188.568C139.581 188.703 139.459 188.854 139.391 189.021L138.525 188.824C138.627 188.536 138.778 188.303 138.975 188.127C139.174 187.948 139.404 187.818 139.663 187.738C139.922 187.656 140.194 187.615 140.48 187.615C140.669 187.615 140.87 187.637 141.081 187.682C141.295 187.726 141.495 187.806 141.68 187.923C141.867 188.04 142.02 188.208 142.139 188.426C142.259 188.642 142.318 188.922 142.318 189.268V192.414H141.418V191.766H141.381C141.321 191.885 141.232 192.002 141.112 192.117C140.993 192.233 140.84 192.328 140.653 192.404C140.466 192.48 140.241 192.518 139.98 192.518ZM140.181 191.778C140.436 191.778 140.654 191.728 140.835 191.627C141.018 191.526 141.156 191.395 141.251 191.232C141.348 191.068 141.396 190.892 141.396 190.705V190.094C141.363 190.127 141.299 190.158 141.205 190.187C141.112 190.213 141.006 190.237 140.887 190.258C140.768 190.276 140.652 190.294 140.539 190.31C140.426 190.325 140.331 190.337 140.255 190.347C140.076 190.37 139.913 190.408 139.764 190.461C139.618 190.515 139.501 190.592 139.413 190.693C139.326 190.791 139.283 190.923 139.283 191.087C139.283 191.316 139.368 191.488 139.536 191.606C139.705 191.721 139.92 191.778 140.181 191.778ZM145.758 187.676V188.416H143.17V187.676H145.758ZM143.864 186.541H144.786V191.023C144.786 191.201 144.813 191.336 144.867 191.427C144.92 191.515 144.989 191.576 145.073 191.609C145.16 191.639 145.253 191.655 145.354 191.655C145.428 191.655 145.493 191.65 145.548 191.639C145.604 191.629 145.647 191.621 145.678 191.615L145.844 192.377C145.791 192.397 145.715 192.418 145.616 192.438C145.517 192.461 145.394 192.473 145.246 192.475C145.003 192.479 144.777 192.436 144.567 192.346C144.358 192.255 144.188 192.115 144.058 191.926C143.929 191.737 143.864 191.5 143.864 191.214V186.541ZM148.769 192.509C148.302 192.509 147.9 192.409 147.563 192.21C147.228 192.009 146.969 191.726 146.786 191.362C146.605 190.996 146.514 190.567 146.514 190.076C146.514 189.59 146.605 189.163 146.786 188.793C146.969 188.423 147.224 188.134 147.551 187.926C147.88 187.718 148.264 187.615 148.704 187.615C148.971 187.615 149.23 187.659 149.481 187.747C149.732 187.836 149.957 187.974 150.157 188.164C150.356 188.353 150.513 188.598 150.629 188.901C150.744 189.201 150.801 189.566 150.801 189.996V190.322H147.036V189.632H149.898C149.898 189.389 149.848 189.174 149.75 188.987C149.651 188.798 149.512 188.649 149.333 188.54C149.156 188.431 148.949 188.376 148.71 188.376C148.451 188.376 148.225 188.44 148.032 188.568C147.84 188.693 147.692 188.857 147.588 189.061C147.485 189.263 147.433 189.482 147.433 189.718V190.258C147.433 190.574 147.489 190.844 147.6 191.066C147.713 191.288 147.87 191.457 148.072 191.575C148.273 191.69 148.509 191.747 148.778 191.747C148.953 191.747 149.112 191.723 149.256 191.673C149.4 191.622 149.524 191.546 149.629 191.445C149.734 191.344 149.814 191.22 149.87 191.072L150.743 191.229C150.673 191.486 150.547 191.711 150.366 191.905C150.188 192.096 149.962 192.245 149.691 192.352C149.422 192.457 149.114 192.509 148.769 192.509ZM153.598 192.506C153.216 192.506 152.874 192.408 152.574 192.213C152.276 192.016 152.041 191.735 151.871 191.371C151.702 191.005 151.618 190.566 151.618 190.054C151.618 189.542 151.703 189.104 151.874 188.74C152.047 188.376 152.283 188.098 152.583 187.904C152.883 187.711 153.224 187.615 153.604 187.615C153.898 187.615 154.135 187.664 154.314 187.763C154.494 187.859 154.634 187.972 154.733 188.102C154.834 188.231 154.912 188.345 154.967 188.444H155.023V186.097H155.945V192.414H155.044V191.676H154.967C154.912 191.777 154.832 191.892 154.727 192.022C154.624 192.151 154.482 192.265 154.301 192.361C154.12 192.458 153.886 192.506 153.598 192.506ZM153.802 191.72C154.067 191.72 154.291 191.65 154.474 191.51C154.659 191.368 154.799 191.172 154.893 190.921C154.99 190.67 155.038 190.378 155.038 190.045C155.038 189.716 154.991 189.428 154.896 189.181C154.802 188.935 154.663 188.742 154.48 188.605C154.297 188.467 154.071 188.398 153.802 188.398C153.524 188.398 153.293 188.47 153.108 188.614C152.923 188.758 152.783 188.954 152.688 189.203C152.596 189.452 152.549 189.732 152.549 190.045C152.549 190.362 152.597 190.646 152.691 190.899C152.786 191.152 152.926 191.353 153.111 191.501C153.298 191.647 153.528 191.72 153.802 191.72ZM157.869 192.472C157.7 192.472 157.555 192.413 157.434 192.293C157.313 192.172 157.252 192.026 157.252 191.855C157.252 191.687 157.313 191.543 157.434 191.424C157.555 191.302 157.7 191.242 157.869 191.242C158.037 191.242 158.182 191.302 158.304 191.424C158.425 191.543 158.486 191.687 158.486 191.855C158.486 191.968 158.457 192.072 158.399 192.167C158.344 192.259 158.27 192.333 158.177 192.389C158.085 192.444 157.982 192.472 157.869 192.472ZM157.869 189.024C157.7 189.024 157.555 188.963 157.434 188.842C157.313 188.721 157.252 188.576 157.252 188.407C157.252 188.239 157.313 188.095 157.434 187.975C157.555 187.854 157.7 187.793 157.869 187.793C158.037 187.793 158.182 187.854 158.304 187.975C158.425 188.095 158.486 188.239 158.486 188.407C158.486 188.52 158.457 188.624 158.399 188.719C158.344 188.811 158.27 188.885 158.177 188.941C158.085 188.996 157.982 189.024 157.869 189.024ZM162.627 192.414H161.615L163.888 186.097H164.99L167.263 192.414H166.251L164.465 187.244H164.416L162.627 192.414ZM162.797 189.94H166.078V190.742H162.797V189.94ZM171.102 190.449V187.676H172.027V192.414H171.12V191.593H171.071C170.962 191.846 170.787 192.057 170.547 192.225C170.308 192.392 170.011 192.475 169.655 192.475C169.351 192.475 169.082 192.408 168.847 192.275C168.615 192.139 168.432 191.939 168.298 191.673C168.167 191.408 168.101 191.08 168.101 190.689V187.676H169.023V190.578C169.023 190.901 169.112 191.158 169.291 191.35C169.47 191.541 169.702 191.636 169.988 191.636C170.161 191.636 170.333 191.593 170.503 191.507C170.676 191.42 170.819 191.29 170.932 191.115C171.047 190.94 171.104 190.718 171.102 190.449ZM175.252 194.289C174.876 194.289 174.552 194.239 174.281 194.141C174.011 194.042 173.791 193.911 173.621 193.749C173.45 193.587 173.323 193.409 173.238 193.215L174.031 192.889C174.086 192.979 174.16 193.075 174.253 193.175C174.348 193.278 174.475 193.366 174.635 193.438C174.798 193.51 175.007 193.545 175.262 193.545C175.611 193.545 175.9 193.46 176.128 193.289C176.356 193.121 176.471 192.852 176.471 192.481V191.55H176.412C176.356 191.651 176.276 191.763 176.171 191.886C176.069 192.01 175.927 192.116 175.746 192.207C175.565 192.297 175.329 192.343 175.039 192.343C174.665 192.343 174.328 192.255 174.028 192.08C173.73 191.904 173.493 191.644 173.318 191.3C173.146 190.955 173.059 190.53 173.059 190.026C173.059 189.523 173.145 189.091 173.315 188.731C173.488 188.371 173.725 188.096 174.025 187.904C174.325 187.711 174.665 187.615 175.046 187.615C175.34 187.615 175.577 187.664 175.758 187.763C175.939 187.859 176.08 187.972 176.181 188.102C176.283 188.231 176.363 188.345 176.418 188.444H176.486V187.676H177.39V192.518C177.39 192.926 177.295 193.26 177.106 193.521C176.917 193.782 176.661 193.975 176.338 194.101C176.017 194.226 175.655 194.289 175.252 194.289ZM175.243 191.578C175.508 191.578 175.732 191.516 175.915 191.393C176.1 191.267 176.24 191.088 176.335 190.856C176.431 190.622 176.48 190.341 176.48 190.014C176.48 189.695 176.433 189.415 176.338 189.172C176.243 188.929 176.105 188.74 175.922 188.605C175.739 188.467 175.512 188.398 175.243 188.398C174.965 188.398 174.734 188.47 174.549 188.614C174.364 188.756 174.224 188.949 174.13 189.194C174.037 189.438 173.991 189.712 173.991 190.014C173.991 190.325 174.038 190.597 174.133 190.831C174.227 191.066 174.367 191.249 174.552 191.38C174.739 191.512 174.97 191.578 175.243 191.578ZM180.913 192.414V191.723L183.05 189.508C183.278 189.268 183.466 189.057 183.614 188.876C183.764 188.693 183.877 188.519 183.951 188.355C184.025 188.19 184.062 188.015 184.062 187.83C184.062 187.621 184.012 187.44 183.914 187.288C183.815 187.133 183.68 187.015 183.51 186.933C183.339 186.849 183.147 186.806 182.933 186.806C182.707 186.806 182.509 186.853 182.341 186.945C182.172 187.038 182.042 187.168 181.952 187.337C181.862 187.506 181.816 187.703 181.816 187.929H180.906C180.906 187.545 180.995 187.208 181.172 186.921C181.349 186.633 181.591 186.41 181.9 186.251C182.208 186.091 182.559 186.011 182.951 186.011C183.348 186.011 183.698 186.09 184 186.248C184.304 186.404 184.542 186.618 184.712 186.89C184.883 187.159 184.968 187.463 184.968 187.803C184.968 188.037 184.924 188.266 184.836 188.49C184.749 188.715 184.598 188.964 184.382 189.24C184.166 189.513 183.866 189.845 183.482 190.236L182.226 191.55V191.596H185.07V192.414H180.913ZM188.438 192.518C187.951 192.516 187.534 192.388 187.189 192.133C186.844 191.878 186.579 191.507 186.396 191.02C186.213 190.532 186.122 189.945 186.122 189.258C186.122 188.574 186.213 187.989 186.396 187.503C186.581 187.018 186.847 186.648 187.192 186.393C187.54 186.138 187.955 186.011 188.438 186.011C188.921 186.011 189.336 186.139 189.681 186.396C190.026 186.651 190.291 187.021 190.474 187.507C190.659 187.99 190.751 188.574 190.751 189.258C190.751 189.947 190.66 190.535 190.477 191.023C190.294 191.508 190.03 191.879 189.684 192.136C189.339 192.391 188.923 192.518 188.438 192.518ZM188.438 191.695C188.866 191.695 189.2 191.486 189.44 191.069C189.683 190.651 189.804 190.048 189.804 189.258C189.804 188.734 189.749 188.291 189.638 187.929C189.529 187.565 189.372 187.29 189.166 187.103C188.962 186.913 188.72 186.819 188.438 186.819C188.012 186.819 187.678 187.029 187.436 187.448C187.193 187.867 187.071 188.471 187.069 189.258C187.069 189.785 187.123 190.23 187.232 190.594C187.343 190.956 187.501 191.23 187.704 191.417C187.908 191.602 188.152 191.695 188.438 191.695ZM192.829 191.55L192.782 191.886C192.751 192.133 192.699 192.39 192.625 192.657C192.553 192.927 192.478 193.176 192.4 193.407C192.324 193.637 192.261 193.82 192.212 193.956H191.558C191.585 193.828 191.622 193.655 191.669 193.438C191.716 193.222 191.762 192.98 191.808 192.713C191.853 192.445 191.887 192.173 191.909 191.895L191.94 191.55H192.829ZM196.315 192.414V191.723L198.453 189.508C198.681 189.268 198.869 189.057 199.017 188.876C199.167 188.693 199.279 188.519 199.353 188.355C199.427 188.19 199.464 188.015 199.464 187.83C199.464 187.621 199.415 187.44 199.316 187.288C199.217 187.133 199.083 187.015 198.912 186.933C198.741 186.849 198.549 186.806 198.335 186.806C198.109 186.806 197.912 186.853 197.743 186.945C197.575 187.038 197.445 187.168 197.355 187.337C197.264 187.506 197.219 187.703 197.219 187.929H196.309C196.309 187.545 196.397 187.208 196.574 186.921C196.751 186.633 196.994 186.41 197.302 186.251C197.611 186.091 197.961 186.011 198.354 186.011C198.751 186.011 199.1 186.09 199.403 186.248C199.707 186.404 199.944 186.618 200.115 186.89C200.286 187.159 200.371 187.463 200.371 187.803C200.371 188.037 200.327 188.266 200.238 188.49C200.152 188.715 200.001 188.964 199.785 189.24C199.569 189.513 199.269 189.845 198.884 190.236L197.629 191.55V191.596H200.473V192.414H196.315ZM203.841 192.518C203.353 192.516 202.937 192.388 202.592 192.133C202.246 191.878 201.982 191.507 201.799 191.02C201.616 190.532 201.524 189.945 201.524 189.258C201.524 188.574 201.616 187.989 201.799 187.503C201.984 187.018 202.249 186.648 202.595 186.393C202.942 186.138 203.358 186.011 203.841 186.011C204.324 186.011 204.738 186.139 205.084 186.396C205.429 186.651 205.693 187.021 205.876 187.507C206.061 187.99 206.154 188.574 206.154 189.258C206.154 189.947 206.062 190.535 205.879 191.023C205.696 191.508 205.432 191.879 205.087 192.136C204.741 192.391 204.326 192.518 203.841 192.518ZM203.841 191.695C204.268 191.695 204.603 191.486 204.843 191.069C205.086 190.651 205.207 190.048 205.207 189.258C205.207 188.734 205.152 188.291 205.04 187.929C204.932 187.565 204.774 187.29 204.569 187.103C204.365 186.913 204.122 186.819 203.841 186.819C203.415 186.819 203.081 187.029 202.838 187.448C202.596 187.867 202.473 188.471 202.471 189.258C202.471 189.785 202.526 190.23 202.635 190.594C202.746 190.956 202.903 191.23 203.107 191.417C203.31 191.602 203.555 191.695 203.841 191.695ZM207.248 192.414V191.723L209.385 189.508C209.614 189.268 209.802 189.057 209.95 188.876C210.1 188.693 210.212 188.519 210.286 188.355C210.36 188.19 210.397 188.015 210.397 187.83C210.397 187.621 210.348 187.44 210.249 187.288C210.15 187.133 210.016 187.015 209.845 186.933C209.674 186.849 209.482 186.806 209.268 186.806C209.042 186.806 208.845 186.853 208.676 186.945C208.507 187.038 208.378 187.168 208.287 187.337C208.197 187.506 208.152 187.703 208.152 187.929H207.242C207.242 187.545 207.33 187.208 207.507 186.921C207.684 186.633 207.927 186.41 208.235 186.251C208.543 186.091 208.894 186.011 209.287 186.011C209.684 186.011 210.033 186.09 210.335 186.248C210.64 186.404 210.877 186.618 211.048 186.89C211.218 187.159 211.304 187.463 211.304 187.803C211.304 188.037 211.26 188.266 211.171 188.49C211.085 188.715 210.934 188.964 210.718 189.24C210.502 189.513 210.202 189.845 209.817 190.236L208.562 191.55V191.596H211.406V192.414H207.248ZM214.774 192.5C214.35 192.5 213.972 192.427 213.639 192.281C213.307 192.135 213.045 191.932 212.852 191.673C212.661 191.412 212.558 191.11 212.544 190.767H213.512C213.524 190.954 213.587 191.116 213.7 191.254C213.815 191.39 213.965 191.494 214.151 191.568C214.336 191.643 214.541 191.68 214.767 191.68C215.016 191.68 215.236 191.636 215.427 191.55C215.621 191.464 215.772 191.343 215.881 191.189C215.99 191.033 216.044 190.853 216.044 190.649C216.044 190.438 215.99 190.252 215.881 190.091C215.774 189.929 215.617 189.801 215.409 189.709C215.203 189.616 214.954 189.57 214.662 189.57H214.129V188.793H214.662C214.897 188.793 215.102 188.751 215.279 188.666C215.458 188.582 215.598 188.465 215.699 188.315C215.8 188.162 215.85 187.985 215.85 187.781C215.85 187.586 215.806 187.416 215.717 187.272C215.631 187.126 215.508 187.012 215.347 186.93C215.189 186.848 215.002 186.806 214.786 186.806C214.58 186.806 214.388 186.844 214.209 186.921C214.032 186.995 213.888 187.102 213.777 187.241C213.666 187.379 213.607 187.545 213.598 187.738H212.676C212.687 187.397 212.787 187.096 212.978 186.837C213.172 186.578 213.427 186.376 213.743 186.23C214.06 186.084 214.412 186.011 214.798 186.011C215.203 186.011 215.553 186.09 215.847 186.248C216.143 186.404 216.371 186.613 216.532 186.874C216.694 187.135 216.774 187.421 216.772 187.732C216.774 188.085 216.675 188.386 216.476 188.632C216.279 188.879 216.015 189.045 215.686 189.129V189.178C216.106 189.242 216.431 189.409 216.661 189.678C216.893 189.947 217.009 190.281 217.006 190.68C217.009 191.028 216.912 191.339 216.717 191.615C216.523 191.89 216.259 192.107 215.924 192.266C215.589 192.422 215.205 192.5 214.774 192.5Z\" fill=\"#98A2B3\"/>\r\n <rect width=\"313.286\" height=\"116.629\" transform=\"translate(165.213 229.961)\" fill=\"url(#pattern4)\"/>\r\n <path d=\"M165.03 342.549V236.532L111.678 214.166V364.915L165.03 342.549Z\" fill=\"#ACDCE7\"/>\r\n <path d=\"M138.856 310.953L138.856 312.462L138.474 312.462L138.474 310.953C138.474 310.638 138.423 310.382 138.321 310.186C138.217 309.987 138.077 309.843 137.9 309.753C137.723 309.661 137.524 309.615 137.304 309.615C137.088 309.615 136.889 309.661 136.707 309.753C136.526 309.843 136.38 309.987 136.271 310.186C136.16 310.382 136.104 310.638 136.104 310.953L136.104 312.305L141.011 312.305L141.011 312.752L135.719 312.752L135.719 310.953C135.719 310.565 135.785 310.239 135.919 309.975C136.052 309.709 136.237 309.508 136.475 309.372C136.712 309.236 136.986 309.168 137.296 309.168C137.621 309.168 137.901 309.236 138.136 309.372C138.369 309.508 138.547 309.707 138.67 309.972C138.794 310.236 138.856 310.563 138.856 310.953ZM140.306 305.919L138.278 305.919C138.091 305.919 137.93 305.957 137.794 306.035C137.659 306.112 137.554 306.226 137.482 306.377C137.409 306.527 137.373 306.712 137.373 306.933C137.373 307.136 137.409 307.318 137.482 307.478C137.552 307.635 137.648 307.76 137.769 307.852C137.888 307.942 138.02 307.987 138.165 307.987L138.161 308.423C138.014 308.423 137.871 308.387 137.732 308.314C137.594 308.241 137.471 308.138 137.362 308.005C137.253 307.872 137.167 307.713 137.104 307.529C137.038 307.342 137.005 307.138 137.005 306.915C137.005 306.633 137.053 306.386 137.147 306.173C137.242 305.957 137.384 305.789 137.573 305.668C137.762 305.547 137.999 305.486 138.285 305.486L140.186 305.486C140.322 305.486 140.462 305.476 140.608 305.457C140.753 305.435 140.873 305.405 140.968 305.366L141.011 305.366L141.011 305.828C140.924 305.857 140.815 305.88 140.684 305.897C140.551 305.911 140.425 305.919 140.306 305.919ZM138.721 305.817L139.056 305.81L139.056 306.664C139.056 306.887 139.076 307.087 139.117 307.264C139.156 307.438 139.214 307.586 139.292 307.707C139.367 307.828 139.458 307.921 139.565 307.987C139.671 308.05 139.792 308.081 139.928 308.081C140.069 308.081 140.197 308.046 140.313 307.976C140.43 307.903 140.523 307.801 140.593 307.671C140.661 307.537 140.695 307.38 140.695 307.198C140.695 306.956 140.65 306.743 140.56 306.558C140.471 306.372 140.353 306.218 140.208 306.097C140.063 305.976 139.904 305.894 139.732 305.853L139.983 305.664C140.104 305.696 140.228 305.754 140.357 305.839C140.483 305.921 140.602 306.029 140.713 306.162C140.822 306.295 140.912 306.453 140.982 306.635C141.05 306.814 141.084 307.018 141.084 307.245C141.084 307.502 141.035 307.726 140.939 307.918C140.842 308.107 140.71 308.255 140.542 308.361C140.373 308.465 140.181 308.518 139.968 308.518C139.774 308.518 139.601 308.476 139.448 308.394C139.293 308.312 139.162 308.193 139.056 308.038C138.947 307.88 138.864 307.691 138.808 307.471C138.75 307.248 138.721 306.998 138.721 306.722L138.721 305.817ZM140.008 301.964C139.901 301.964 139.796 301.99 139.692 302.044C139.588 302.097 139.492 302.2 139.405 302.353C139.317 302.503 139.243 302.725 139.183 303.018C139.134 303.236 139.08 303.431 139.019 303.603C138.959 303.773 138.886 303.916 138.801 304.032C138.716 304.148 138.615 304.237 138.496 304.297C138.377 304.358 138.237 304.388 138.074 304.388C137.929 304.388 137.792 304.357 137.663 304.294C137.533 304.228 137.419 304.136 137.322 304.017C137.222 303.896 137.145 303.751 137.089 303.581C137.033 303.409 137.005 303.217 137.005 303.003C137.005 302.7 137.058 302.441 137.162 302.225C137.264 302.007 137.403 301.841 137.58 301.727C137.757 301.611 137.957 301.553 138.18 301.553L138.18 301.986C138.044 301.986 137.915 302.026 137.794 302.105C137.673 302.183 137.574 302.298 137.496 302.451C137.419 302.601 137.38 302.785 137.38 303.003C137.38 303.229 137.414 303.412 137.482 303.552C137.55 303.693 137.636 303.796 137.74 303.861C137.844 303.924 137.952 303.956 138.063 303.956C138.151 303.956 138.23 303.942 138.303 303.916C138.373 303.887 138.439 303.836 138.499 303.763C138.56 303.688 138.617 303.581 138.67 303.443C138.724 303.305 138.776 303.126 138.827 302.905C138.897 302.588 138.983 302.328 139.085 302.127C139.184 301.924 139.308 301.773 139.455 301.677C139.601 301.58 139.778 301.531 139.986 301.531C140.149 301.531 140.298 301.565 140.433 301.633C140.567 301.701 140.682 301.799 140.779 301.927C140.876 302.053 140.951 302.206 141.004 302.385C141.057 302.562 141.084 302.761 141.084 302.982C141.084 303.314 141.029 303.595 140.92 303.825C140.809 304.053 140.663 304.226 140.484 304.345C140.302 304.461 140.11 304.519 139.906 304.519L139.906 304.087C140.11 304.072 140.271 304.008 140.39 303.894C140.506 303.78 140.588 303.641 140.637 303.476C140.685 303.309 140.71 303.144 140.71 302.982C140.71 302.759 140.677 302.572 140.611 302.422C140.546 302.271 140.46 302.158 140.353 302.08C140.247 302.002 140.132 301.964 140.008 301.964ZM140.008 298.191C139.901 298.191 139.796 298.217 139.692 298.271C139.588 298.324 139.492 298.427 139.405 298.58C139.317 298.73 139.243 298.952 139.183 299.245C139.134 299.463 139.08 299.658 139.019 299.83C138.959 300 138.886 300.143 138.801 300.259C138.716 300.375 138.615 300.464 138.496 300.524C138.377 300.585 138.237 300.615 138.074 300.615C137.929 300.615 137.792 300.584 137.663 300.521C137.533 300.455 137.419 300.363 137.322 300.244C137.222 300.123 137.145 299.978 137.089 299.808C137.033 299.636 137.005 299.443 137.005 299.23C137.005 298.927 137.058 298.668 137.162 298.452C137.264 298.234 137.403 298.068 137.58 297.954C137.757 297.838 137.957 297.78 138.18 297.78L138.18 298.212C138.044 298.212 137.915 298.252 137.794 298.332C137.673 298.41 137.574 298.525 137.496 298.678C137.419 298.828 137.38 299.012 137.38 299.23C137.38 299.456 137.414 299.639 137.482 299.779C137.55 299.92 137.636 300.023 137.74 300.088C137.844 300.151 137.952 300.183 138.063 300.183C138.151 300.183 138.23 300.169 138.303 300.143C138.373 300.114 138.439 300.063 138.499 299.99C138.56 299.915 138.617 299.808 138.67 299.67C138.724 299.532 138.776 299.353 138.827 299.132C138.897 298.815 138.983 298.555 139.085 298.354C139.184 298.151 139.308 298 139.455 297.903C139.601 297.807 139.778 297.758 139.986 297.758C140.149 297.758 140.298 297.792 140.433 297.86C140.567 297.928 140.682 298.026 140.779 298.154C140.876 298.28 140.951 298.433 141.004 298.612C141.057 298.789 141.084 298.988 141.084 299.208C141.084 299.54 141.029 299.822 140.92 300.052C140.809 300.28 140.663 300.453 140.484 300.572C140.302 300.688 140.11 300.746 139.906 300.746L139.906 300.313C140.11 300.299 140.271 300.235 140.39 300.121C140.506 300.007 140.588 299.868 140.637 299.703C140.685 299.536 140.71 299.371 140.71 299.208C140.71 298.985 140.677 298.799 140.611 298.649C140.546 298.498 140.46 298.384 140.353 298.307C140.247 298.229 140.132 298.191 140.008 298.191ZM141.084 295.254C141.084 295.51 141.037 295.747 140.942 295.962C140.848 296.176 140.714 296.362 140.542 296.522C140.37 296.68 140.167 296.802 139.932 296.889C139.694 296.974 139.435 297.017 139.154 297.017L138.997 297.017C138.695 297.017 138.421 296.972 138.176 296.882C137.931 296.792 137.722 296.669 137.547 296.511C137.373 296.354 137.239 296.174 137.147 295.973C137.053 295.77 137.005 295.556 137.005 295.334C137.005 295.084 137.05 294.862 137.14 294.668C137.227 294.474 137.352 294.312 137.514 294.181C137.674 294.048 137.865 293.947 138.085 293.88C138.303 293.812 138.544 293.778 138.808 293.778L139.074 293.778L139.074 296.755L138.703 296.755L138.703 294.21L138.652 294.21C138.432 294.215 138.226 294.26 138.034 294.345C137.84 294.427 137.683 294.551 137.562 294.716C137.44 294.88 137.38 295.086 137.38 295.334C137.38 295.518 137.419 295.687 137.496 295.842C137.574 295.995 137.685 296.127 137.831 296.239C137.974 296.348 138.144 296.433 138.343 296.493C138.539 296.551 138.758 296.58 138.997 296.58L139.154 296.58C139.372 296.58 139.575 296.549 139.764 296.486C139.951 296.42 140.116 296.328 140.259 296.21C140.402 296.088 140.513 295.945 140.593 295.781C140.673 295.616 140.713 295.434 140.713 295.235C140.713 295.003 140.671 294.797 140.586 294.617C140.499 294.438 140.362 294.277 140.175 294.134L140.386 293.861C140.512 293.946 140.628 294.053 140.735 294.181C140.842 294.307 140.926 294.459 140.989 294.636C141.052 294.813 141.084 295.018 141.084 295.254ZM137.729 292.487L141.011 292.487L141.011 292.92L137.078 292.92L137.078 292.498L137.729 292.487ZM137.049 291.095L137.449 291.106C137.442 291.155 137.436 291.202 137.431 291.248C137.426 291.294 137.424 291.344 137.424 291.397C137.424 291.586 137.459 291.752 137.529 291.895C137.597 292.035 137.692 292.154 137.816 292.251C137.937 292.348 138.08 292.422 138.245 292.473C138.407 292.524 138.582 292.553 138.768 292.56L138.83 292.72C138.573 292.72 138.335 292.693 138.114 292.64C137.894 292.587 137.701 292.506 137.536 292.396C137.369 292.285 137.239 292.146 137.147 291.978C137.053 291.809 137.005 291.61 137.005 291.382C137.005 291.327 137.01 291.272 137.02 291.219C137.027 291.163 137.037 291.122 137.049 291.095ZM138.489 289.06L138.863 289.06L138.863 290.801L138.489 290.801L138.489 289.06ZM138.467 286.352L138.467 287.842L138.089 287.849L138.089 286.566C138.089 286.304 138.051 286.081 137.976 285.897C137.901 285.713 137.789 285.574 137.642 285.479C137.491 285.382 137.307 285.334 137.089 285.334C136.866 285.334 136.682 285.381 136.537 285.475C136.389 285.57 136.28 285.712 136.209 285.901C136.139 286.09 136.104 286.327 136.104 286.613L136.104 287.726L141.011 287.726L141.011 288.173L135.719 288.173L135.719 286.613C135.719 286.344 135.745 286.103 135.799 285.89C135.852 285.677 135.936 285.495 136.049 285.345C136.163 285.194 136.308 285.08 136.482 285.003C136.654 284.923 136.86 284.883 137.1 284.883C137.318 284.883 137.516 284.931 137.692 285.028C137.867 285.125 138.01 285.262 138.121 285.439C138.23 285.614 138.298 285.823 138.325 286.068L138.467 286.352ZM141.011 286.384L141.011 287.984L140.63 287.755L140.63 286.384C140.63 286.123 140.586 285.9 140.499 285.715C140.409 285.529 140.282 285.386 140.117 285.286C139.952 285.187 139.756 285.137 139.528 285.137C139.327 285.137 139.146 285.181 138.987 285.268C138.827 285.356 138.701 285.489 138.609 285.668C138.514 285.847 138.467 286.075 138.467 286.352L138.467 287.278L138.089 287.271L138.089 285.959L138.223 285.879C138.247 285.641 138.321 285.434 138.445 285.257C138.566 285.078 138.72 284.94 138.907 284.843C139.093 284.744 139.298 284.694 139.521 284.694C139.841 284.694 140.112 284.765 140.335 284.908C140.556 285.049 140.724 285.246 140.84 285.501C140.954 285.753 141.011 286.047 141.011 286.384ZM140.619 282.542L137.078 281.317L137.078 280.848L141.644 282.513C141.733 282.547 141.833 282.591 141.942 282.644C142.051 282.695 142.155 282.763 142.254 282.847C142.356 282.93 142.439 283.034 142.502 283.16C142.567 283.284 142.6 283.435 142.6 283.614C142.6 283.66 142.594 283.72 142.582 283.792C142.572 283.863 142.562 283.914 142.552 283.945L142.185 283.949C142.193 283.922 142.199 283.883 142.204 283.832C142.208 283.782 142.211 283.746 142.211 283.727C142.211 283.57 142.184 283.437 142.131 283.331C142.077 283.222 141.998 283.131 141.891 283.058C141.787 282.986 141.656 282.921 141.498 282.866L140.619 282.542ZM137.078 283.687L140.455 282.433L140.909 282.317L141.088 282.633L137.078 284.16L137.078 283.687ZM140.746 278.464C140.661 278.464 140.59 278.437 140.531 278.384C140.471 278.328 140.441 278.253 140.441 278.158C140.441 278.061 140.47 277.985 140.528 277.929C140.586 277.874 140.659 277.846 140.746 277.846C140.828 277.846 140.899 277.874 140.957 277.929C141.015 277.985 141.044 278.061 141.044 278.158C141.044 278.253 141.015 278.328 140.957 278.384C140.899 278.437 140.828 278.464 140.746 278.464ZM137.391 278.453C137.306 278.453 137.234 278.426 137.176 278.373C137.116 278.317 137.085 278.242 137.085 278.147C137.085 278.05 137.115 277.974 137.173 277.918C137.231 277.863 137.304 277.835 137.391 277.835C137.473 277.835 137.543 277.863 137.602 277.918C137.66 277.974 137.689 278.05 137.689 278.147C137.689 278.242 137.66 278.317 137.602 278.373C137.543 278.426 137.473 278.453 137.391 278.453ZM140.637 271.728L141.011 271.728L141.011 275.039L140.673 275.039L138.707 273.306C138.462 273.09 138.247 272.918 138.063 272.789C137.877 272.661 137.707 272.569 137.554 272.513C137.399 272.455 137.249 272.426 137.104 272.426C136.89 272.426 136.703 272.468 136.54 272.553C136.378 272.636 136.251 272.759 136.159 272.924C136.066 273.089 136.02 273.292 136.02 273.535C136.02 273.777 136.073 273.988 136.177 274.167C136.281 274.346 136.426 274.485 136.613 274.581C136.797 274.676 137.007 274.723 137.242 274.723L137.242 275.156C136.951 275.156 136.684 275.092 136.442 274.963C136.2 274.832 136.007 274.646 135.864 274.403C135.719 274.161 135.646 273.871 135.646 273.535C135.646 273.215 135.703 272.94 135.817 272.709C135.928 272.479 136.089 272.302 136.3 272.179C136.511 272.053 136.766 271.99 137.064 271.99C137.224 271.99 137.385 272.019 137.547 272.077C137.709 272.133 137.872 272.21 138.034 272.31C138.194 272.407 138.353 272.518 138.51 272.644C138.668 272.768 138.823 272.897 138.976 273.033L140.637 274.509L140.637 271.728ZM135.697 268.889L141.011 268.889L141.011 269.322L136.246 269.322L136.78 270.761L136.369 270.761L135.697 268.962L135.697 268.889Z\" fill=\"black\"/>\r\n <rect x=\"130.676\" y=\"378.797\" width=\"305.842\" height=\"35.361\" fill=\"white\"/>\r\n <path d=\"M151.233 389.305H149.819V388.734H151.233C151.507 388.734 151.728 388.69 151.898 388.603C152.068 388.516 152.191 388.395 152.269 388.24C152.349 388.085 152.389 387.908 152.389 387.709C152.389 387.527 152.349 387.356 152.269 387.197C152.191 387.037 152.068 386.908 151.898 386.811C151.728 386.712 151.507 386.662 151.233 386.662H149.982V391.38H149.281V386.088H151.233C151.633 386.088 151.971 386.157 152.247 386.295C152.523 386.433 152.733 386.625 152.876 386.869C153.019 387.112 153.09 387.389 153.09 387.702C153.09 388.041 153.019 388.331 152.876 388.571C152.733 388.81 152.523 388.993 152.247 389.119C151.971 389.243 151.633 389.305 151.233 389.305ZM156.151 390.708V388.683C156.151 388.528 156.119 388.394 156.056 388.28C155.996 388.163 155.904 388.074 155.78 388.011C155.657 387.948 155.504 387.916 155.322 387.916C155.153 387.916 155.003 387.945 154.875 388.003C154.749 388.062 154.65 388.138 154.577 388.232C154.507 388.327 154.472 388.429 154.472 388.538H153.799C153.799 388.397 153.835 388.258 153.908 388.12C153.981 387.982 154.085 387.857 154.221 387.745C154.359 387.631 154.524 387.542 154.715 387.476C154.909 387.409 155.125 387.375 155.362 387.375C155.648 387.375 155.9 387.423 156.118 387.52C156.339 387.617 156.511 387.764 156.634 387.96C156.76 388.154 156.823 388.397 156.823 388.69V390.523C156.823 390.653 156.834 390.793 156.856 390.941C156.88 391.088 156.915 391.216 156.962 391.322V391.38H156.26C156.226 391.303 156.199 391.2 156.18 391.071C156.161 390.941 156.151 390.819 156.151 390.708ZM156.267 388.996L156.275 389.468H155.595C155.403 389.468 155.232 389.484 155.082 389.516C154.932 389.545 154.806 389.59 154.704 389.65C154.602 389.711 154.525 389.787 154.472 389.879C154.418 389.969 154.392 390.074 154.392 390.195C154.392 390.319 154.419 390.432 154.475 390.533C154.531 390.635 154.615 390.716 154.726 390.777C154.84 390.835 154.979 390.864 155.144 390.864C155.35 390.864 155.532 390.821 155.689 390.733C155.847 390.646 155.972 390.539 156.064 390.413C156.158 390.287 156.209 390.165 156.216 390.046L156.504 390.37C156.487 390.472 156.441 390.584 156.365 390.708C156.29 390.831 156.19 390.95 156.064 391.064C155.94 391.176 155.792 391.269 155.62 391.344C155.451 391.417 155.259 391.453 155.046 391.453C154.779 391.453 154.545 391.401 154.344 391.297C154.146 391.193 153.991 391.053 153.879 390.879C153.77 390.702 153.715 390.504 153.715 390.286C153.715 390.075 153.757 389.89 153.839 389.73C153.921 389.568 154.04 389.433 154.195 389.327C154.35 389.218 154.537 389.135 154.755 389.079C154.973 389.024 155.217 388.996 155.486 388.996H156.267ZM160.171 390.337C160.171 390.24 160.149 390.151 160.106 390.068C160.065 389.983 159.979 389.907 159.848 389.839C159.719 389.769 159.525 389.708 159.266 389.657C159.048 389.611 158.85 389.557 158.674 389.494C158.499 389.431 158.35 389.354 158.226 389.265C158.105 389.175 158.012 389.07 157.947 388.949C157.881 388.827 157.848 388.686 157.848 388.523C157.848 388.368 157.882 388.222 157.95 388.083C158.021 387.945 158.119 387.823 158.245 387.716C158.373 387.61 158.527 387.526 158.706 387.466C158.886 387.405 159.086 387.375 159.306 387.375C159.621 387.375 159.89 387.43 160.113 387.542C160.336 387.653 160.507 387.802 160.626 387.989C160.744 388.173 160.804 388.378 160.804 388.603H160.131C160.131 388.494 160.099 388.389 160.033 388.287C159.97 388.183 159.877 388.097 159.753 388.029C159.632 387.961 159.483 387.927 159.306 387.927C159.119 387.927 158.968 387.956 158.852 388.014C158.738 388.07 158.654 388.142 158.601 388.229C158.55 388.316 158.525 388.408 158.525 388.505C158.525 388.578 158.537 388.643 158.561 388.701C158.588 388.757 158.634 388.809 158.699 388.858C158.764 388.904 158.857 388.947 158.975 388.989C159.094 389.03 159.245 389.071 159.43 389.112C159.752 389.185 160.017 389.272 160.226 389.374C160.434 389.476 160.589 389.6 160.691 389.748C160.793 389.896 160.844 390.075 160.844 390.286C160.844 390.458 160.807 390.616 160.735 390.759C160.664 390.902 160.561 391.025 160.426 391.13C160.292 391.231 160.132 391.311 159.946 391.369C159.762 391.425 159.554 391.453 159.324 391.453C158.978 391.453 158.684 391.391 158.445 391.268C158.205 391.144 158.023 390.984 157.899 390.788C157.776 390.592 157.714 390.384 157.714 390.166H158.39C158.4 390.35 158.453 390.497 158.55 390.606C158.647 390.713 158.766 390.789 158.906 390.835C159.047 390.879 159.186 390.901 159.324 390.901C159.508 390.901 159.662 390.876 159.786 390.828C159.912 390.779 160.008 390.713 160.073 390.628C160.138 390.543 160.171 390.446 160.171 390.337ZM164.017 390.337C164.017 390.24 163.995 390.151 163.952 390.068C163.91 389.983 163.824 389.907 163.693 389.839C163.565 389.769 163.371 389.708 163.112 389.657C162.894 389.611 162.696 389.557 162.519 389.494C162.345 389.431 162.196 389.354 162.072 389.265C161.951 389.175 161.858 389.07 161.792 388.949C161.727 388.827 161.694 388.686 161.694 388.523C161.694 388.368 161.728 388.222 161.796 388.083C161.866 387.945 161.964 387.823 162.09 387.716C162.219 387.61 162.373 387.526 162.552 387.466C162.731 387.405 162.931 387.375 163.152 387.375C163.467 387.375 163.736 387.43 163.959 387.542C164.182 387.653 164.353 387.802 164.471 387.989C164.59 388.173 164.649 388.378 164.649 388.603H163.977C163.977 388.494 163.944 388.389 163.879 388.287C163.816 388.183 163.723 388.097 163.599 388.029C163.478 387.961 163.329 387.927 163.152 387.927C162.965 387.927 162.814 387.956 162.698 388.014C162.584 388.07 162.5 388.142 162.447 388.229C162.396 388.316 162.37 388.408 162.37 388.505C162.37 388.578 162.382 388.643 162.407 388.701C162.433 388.757 162.479 388.809 162.545 388.858C162.61 388.904 162.702 388.947 162.821 388.989C162.94 389.03 163.091 389.071 163.275 389.112C163.598 389.185 163.863 389.272 164.072 389.374C164.28 389.476 164.435 389.6 164.537 389.748C164.639 389.896 164.689 390.075 164.689 390.286C164.689 390.458 164.653 390.616 164.58 390.759C164.51 390.902 164.407 391.025 164.271 391.13C164.138 391.231 163.978 391.311 163.792 391.369C163.607 391.425 163.4 391.453 163.17 391.453C162.824 391.453 162.53 391.391 162.29 391.268C162.05 391.144 161.869 390.984 161.745 390.788C161.622 390.592 161.56 390.384 161.56 390.166H162.236C162.246 390.35 162.299 390.497 162.396 390.606C162.493 390.713 162.611 390.789 162.752 390.835C162.893 390.879 163.032 390.901 163.17 390.901C163.354 390.901 163.508 390.876 163.632 390.828C163.758 390.779 163.853 390.713 163.919 390.628C163.984 390.543 164.017 390.446 164.017 390.337ZM167.205 391.453C166.931 391.453 166.683 391.407 166.46 391.315C166.239 391.22 166.049 391.088 165.889 390.919C165.732 390.749 165.61 390.548 165.526 390.315C165.441 390.083 165.398 389.828 165.398 389.552V389.399C165.398 389.079 165.446 388.795 165.54 388.545C165.635 388.293 165.763 388.08 165.925 387.905C166.088 387.731 166.272 387.599 166.478 387.509C166.684 387.419 166.897 387.375 167.118 387.375C167.399 387.375 167.641 387.423 167.845 387.52C168.051 387.617 168.219 387.753 168.35 387.927C168.481 388.099 168.578 388.303 168.641 388.538C168.704 388.77 168.735 389.025 168.735 389.301V389.603H165.798V389.054H168.063V389.003C168.053 388.829 168.017 388.659 167.954 388.494C167.893 388.329 167.796 388.194 167.663 388.087C167.53 387.98 167.348 387.927 167.118 387.927C166.965 387.927 166.824 387.96 166.696 388.025C166.568 388.088 166.457 388.183 166.365 388.309C166.273 388.435 166.202 388.589 166.151 388.77C166.1 388.952 166.074 389.162 166.074 389.399V389.552C166.074 389.739 166.1 389.914 166.151 390.079C166.204 390.241 166.28 390.384 166.38 390.508C166.482 390.632 166.604 390.728 166.747 390.799C166.892 390.869 167.057 390.904 167.241 390.904C167.479 390.904 167.68 390.856 167.845 390.759C168.009 390.662 168.154 390.532 168.277 390.37L168.684 390.693C168.6 390.822 168.492 390.944 168.361 391.06C168.23 391.177 168.069 391.271 167.877 391.344C167.688 391.417 167.464 391.453 167.205 391.453ZM170.193 388.065V391.38H169.52V387.447H170.175L170.193 388.065ZM171.421 387.426L171.418 388.051C171.362 388.039 171.309 388.031 171.258 388.029C171.209 388.024 171.154 388.022 171.091 388.022C170.936 388.022 170.799 388.046 170.68 388.094C170.561 388.143 170.461 388.211 170.378 388.298C170.296 388.385 170.23 388.489 170.182 388.611C170.136 388.729 170.106 388.86 170.091 389.003L169.902 389.112C169.902 388.875 169.925 388.652 169.971 388.443C170.02 388.235 170.093 388.051 170.193 387.891C170.292 387.728 170.418 387.602 170.571 387.513C170.726 387.421 170.91 387.375 171.123 387.375C171.172 387.375 171.228 387.381 171.291 387.393C171.354 387.402 171.397 387.413 171.421 387.426ZM173.442 388.854V389.407H171.669V388.854H173.442ZM176.089 388.905H174.747L174.74 388.342H175.958C176.159 388.342 176.335 388.308 176.485 388.24C176.635 388.172 176.752 388.075 176.834 387.949C176.919 387.821 176.961 387.668 176.961 387.491C176.961 387.297 176.924 387.14 176.848 387.018C176.776 386.895 176.663 386.805 176.51 386.749C176.36 386.691 176.169 386.662 175.936 386.662H174.904V391.38H174.202V386.088H175.936C176.208 386.088 176.45 386.116 176.663 386.171C176.876 386.225 177.057 386.31 177.205 386.426C177.355 386.54 177.469 386.685 177.546 386.862C177.624 387.039 177.663 387.251 177.663 387.498C177.663 387.716 177.607 387.914 177.495 388.091C177.384 388.265 177.229 388.408 177.03 388.52C176.834 388.631 176.604 388.703 176.34 388.734L176.089 388.905ZM176.056 391.38H174.471L174.867 390.81H176.056C176.279 390.81 176.468 390.771 176.623 390.693C176.781 390.616 176.901 390.507 176.983 390.366C177.065 390.223 177.107 390.055 177.107 389.861C177.107 389.665 177.071 389.495 177.001 389.352C176.931 389.209 176.821 389.099 176.67 389.021C176.52 388.944 176.326 388.905 176.089 388.905H175.089L175.096 388.342H176.463L176.612 388.545C176.867 388.567 177.082 388.64 177.259 388.763C177.436 388.884 177.571 389.039 177.663 389.228C177.757 389.417 177.804 389.626 177.804 389.854C177.804 390.183 177.732 390.462 177.586 390.69C177.443 390.915 177.241 391.087 176.979 391.206C176.718 391.322 176.41 391.38 176.056 391.38ZM179.844 390.973L180.938 387.447H181.658L180.08 391.987C180.044 392.084 179.995 392.189 179.935 392.3C179.876 392.414 179.801 392.522 179.709 392.624C179.617 392.725 179.506 392.808 179.375 392.871C179.246 392.936 179.092 392.969 178.913 392.969C178.86 392.969 178.792 392.962 178.71 392.947C178.627 392.933 178.569 392.92 178.535 392.911L178.531 392.365C178.551 392.368 178.581 392.37 178.622 392.373C178.666 392.378 178.696 392.38 178.713 392.38C178.866 392.38 178.996 392.359 179.102 392.318C179.209 392.279 179.298 392.213 179.371 392.118C179.446 392.026 179.51 391.899 179.564 391.737L179.844 390.973ZM179.04 387.447L180.062 390.501L180.236 391.21L179.753 391.457L178.306 387.447H179.04ZM184.082 391.024C184.082 390.91 184.117 390.815 184.187 390.737C184.26 390.657 184.364 390.617 184.5 390.617C184.636 390.617 184.739 390.657 184.809 390.737C184.882 390.815 184.918 390.91 184.918 391.024C184.918 391.136 184.882 391.23 184.809 391.308C184.739 391.385 184.636 391.424 184.5 391.424C184.364 391.424 184.26 391.385 184.187 391.308C184.117 391.23 184.082 391.136 184.082 391.024ZM184.086 387.814C184.086 387.701 184.121 387.605 184.191 387.527C184.264 387.447 184.368 387.407 184.504 387.407C184.639 387.407 184.742 387.447 184.813 387.527C184.885 387.605 184.922 387.701 184.922 387.814C184.922 387.926 184.885 388.02 184.813 388.098C184.742 388.176 184.639 388.214 184.504 388.214C184.368 388.214 184.264 388.176 184.191 388.098C184.121 388.02 184.086 387.926 184.086 387.814ZM191.156 390.828V391.38H187.692V390.897L189.425 388.967C189.639 388.729 189.804 388.528 189.92 388.363C190.039 388.196 190.121 388.047 190.167 387.916C190.215 387.783 190.24 387.647 190.24 387.509C190.24 387.335 190.203 387.177 190.131 387.037C190.06 386.894 189.956 386.78 189.818 386.695C189.68 386.61 189.513 386.568 189.316 386.568C189.081 386.568 188.885 386.614 188.728 386.706C188.572 386.795 188.456 386.921 188.379 387.084C188.301 387.246 188.262 387.433 188.262 387.644H187.59C187.59 387.346 187.655 387.073 187.786 386.826C187.917 386.579 188.111 386.382 188.368 386.237C188.625 386.089 188.941 386.015 189.316 386.015C189.651 386.015 189.937 386.075 190.174 386.193C190.412 386.31 190.594 386.474 190.72 386.688C190.848 386.898 190.912 387.146 190.912 387.429C190.912 387.584 190.886 387.742 190.832 387.902C190.781 388.059 190.71 388.217 190.618 388.374C190.528 388.532 190.423 388.687 190.302 388.84C190.183 388.992 190.056 389.142 189.92 389.29L188.502 390.828H191.156ZM194.086 386.059V391.38H193.413V386.898L192.057 387.393V386.786L193.98 386.059H194.086Z\" fill=\"#4B4B4B\"/>\r\n <rect x=\"133.778\" y=\"381.899\" width=\"12.4074\" height=\"12.4074\" rx=\"3.10185\" fill=\"#ACDCE7\"/>\r\n <rect width=\"161.296\" height=\"12.4074\" transform=\"translate(232.417 381.899)\" fill=\"url(#pattern5)\"/>\r\n <rect width=\"65.7591\" height=\"13.6481\" transform=\"translate(231.796 398.028)\" fill=\"url(#pattern6)\"/>\r\n <rect width=\"83.7499\" height=\"12.4074\" transform=\"translate(133.778 399.27)\" fill=\"url(#pattern7)\"/>\r\n </g>\r\n <rect x=\"469.544\" y=\"148.279\" width=\"113.256\" height=\"23.7519\" rx=\"11.8759\" fill=\"#33B5FF\"/>\r\n <path d=\"M487.867 158.856H486.558C486.508 158.576 486.414 158.33 486.277 158.117C486.14 157.905 485.972 157.724 485.773 157.576C485.575 157.428 485.352 157.316 485.106 157.241C484.863 157.165 484.604 157.127 484.33 157.127C483.835 157.127 483.391 157.252 483 157.501C482.611 157.75 482.303 158.115 482.077 158.596C481.853 159.077 481.741 159.664 481.741 160.358C481.741 161.057 481.853 161.648 482.077 162.129C482.303 162.61 482.612 162.974 483.004 163.22C483.396 163.466 483.836 163.589 484.326 163.589C484.597 163.589 484.854 163.553 485.098 163.48C485.344 163.404 485.566 163.294 485.765 163.148C485.963 163.003 486.131 162.825 486.268 162.616C486.408 162.403 486.505 162.16 486.558 161.885L487.867 161.89C487.797 162.312 487.661 162.701 487.46 163.056C487.261 163.409 487.005 163.713 486.692 163.971C486.382 164.225 486.026 164.423 485.626 164.562C485.226 164.702 484.79 164.772 484.317 164.772C483.573 164.772 482.91 164.596 482.328 164.244C481.747 163.888 481.288 163.381 480.952 162.72C480.619 162.06 480.453 161.273 480.453 160.358C480.453 159.441 480.621 158.653 480.956 157.996C481.292 157.336 481.751 156.829 482.333 156.477C482.914 156.122 483.576 155.944 484.317 155.944C484.773 155.944 485.198 156.01 485.593 156.141C485.99 156.27 486.347 156.46 486.663 156.712C486.979 156.961 487.24 157.266 487.447 157.627C487.654 157.985 487.794 158.394 487.867 158.856ZM492.033 164.785C491.428 164.785 490.901 164.646 490.451 164.369C490 164.093 489.651 163.705 489.402 163.207C489.153 162.709 489.028 162.127 489.028 161.462C489.028 160.793 489.153 160.208 489.402 159.708C489.651 159.207 490 158.818 490.451 158.541C490.901 158.264 491.428 158.126 492.033 158.126C492.637 158.126 493.164 158.264 493.614 158.541C494.065 158.818 494.414 159.207 494.663 159.708C494.912 160.208 495.037 160.793 495.037 161.462C495.037 162.127 494.912 162.709 494.663 163.207C494.414 163.705 494.065 164.093 493.614 164.369C493.164 164.646 492.637 164.785 492.033 164.785ZM492.037 163.732C492.428 163.732 492.753 163.628 493.01 163.421C493.268 163.214 493.458 162.939 493.581 162.595C493.707 162.251 493.77 161.871 493.77 161.457C493.77 161.046 493.707 160.669 493.581 160.325C493.458 159.978 493.268 159.699 493.01 159.49C492.753 159.28 492.428 159.175 492.037 159.175C491.642 159.175 491.315 159.28 491.055 159.49C490.798 159.699 490.606 159.978 490.48 160.325C490.357 160.669 490.295 161.046 490.295 161.457C490.295 161.871 490.357 162.251 490.48 162.595C490.606 162.939 490.798 163.214 491.055 163.421C491.315 163.628 491.642 163.732 492.037 163.732ZM497.692 160.828V164.655H496.437V158.21H497.642V159.259H497.721C497.869 158.918 498.102 158.643 498.418 158.436C498.737 158.229 499.138 158.126 499.622 158.126C500.061 158.126 500.446 158.218 500.776 158.403C501.106 158.585 501.362 158.856 501.544 159.217C501.726 159.578 501.816 160.024 501.816 160.555V164.655H500.562V160.706C500.562 160.239 500.44 159.874 500.197 159.611C499.953 159.346 499.619 159.213 499.194 159.213C498.903 159.213 498.644 159.276 498.418 159.401C498.194 159.527 498.016 159.712 497.885 159.955C497.756 160.196 497.692 160.487 497.692 160.828ZM508.782 158.21L506.445 164.655H505.102L502.761 158.21H504.107L505.74 163.169H505.807L507.435 158.21H508.782ZM512.519 164.785C511.884 164.785 511.337 164.649 510.879 164.378C510.423 164.104 510.07 163.719 509.821 163.224C509.575 162.726 509.452 162.143 509.452 161.474C509.452 160.814 509.575 160.232 509.821 159.729C510.07 159.225 510.417 158.832 510.862 158.55C511.309 158.267 511.833 158.126 512.431 158.126C512.795 158.126 513.147 158.186 513.489 158.306C513.83 158.427 514.136 158.615 514.407 158.873C514.679 159.13 514.893 159.464 515.049 159.876C515.206 160.284 515.284 160.781 515.284 161.365V161.81H510.161V160.87H514.055C514.055 160.54 513.988 160.248 513.854 159.993C513.719 159.736 513.531 159.533 513.287 159.385C513.047 159.236 512.764 159.162 512.44 159.162C512.087 159.162 511.779 159.249 511.516 159.422C511.256 159.593 511.055 159.817 510.912 160.094C510.772 160.368 510.702 160.666 510.702 160.988V161.722C510.702 162.153 510.778 162.519 510.929 162.821C511.083 163.123 511.297 163.354 511.571 163.513C511.845 163.67 512.165 163.748 512.532 163.748C512.77 163.748 512.986 163.715 513.182 163.648C513.378 163.578 513.547 163.474 513.69 163.337C513.833 163.2 513.942 163.031 514.017 162.83L515.205 163.044C515.11 163.393 514.939 163.7 514.693 163.962C514.449 164.223 514.143 164.425 513.774 164.571C513.407 164.714 512.989 164.785 512.519 164.785ZM516.676 164.655V158.21H517.889V159.234H517.956C518.074 158.887 518.281 158.614 518.577 158.415C518.877 158.214 519.215 158.113 519.593 158.113C519.671 158.113 519.763 158.116 519.87 158.122C519.979 158.127 520.064 158.134 520.126 158.143V159.343C520.075 159.329 519.986 159.313 519.857 159.297C519.728 159.277 519.6 159.267 519.471 159.267C519.174 159.267 518.91 159.33 518.678 159.456C518.449 159.579 518.267 159.751 518.132 159.972C517.998 160.19 517.931 160.439 517.931 160.719V164.655H516.676ZM526.041 159.783L524.904 159.985C524.856 159.839 524.781 159.701 524.677 159.569C524.576 159.438 524.439 159.33 524.266 159.246C524.092 159.162 523.876 159.12 523.615 159.12C523.26 159.12 522.964 159.2 522.726 159.359C522.488 159.516 522.369 159.719 522.369 159.968C522.369 160.183 522.449 160.357 522.608 160.488C522.768 160.62 523.025 160.727 523.381 160.811L524.404 161.046C524.997 161.183 525.439 161.395 525.73 161.68C526.021 161.965 526.167 162.336 526.167 162.792C526.167 163.178 526.055 163.522 525.831 163.824C525.61 164.123 525.301 164.358 524.904 164.529C524.509 164.7 524.052 164.785 523.532 164.785C522.81 164.785 522.221 164.631 521.765 164.323C521.309 164.013 521.029 163.572 520.926 163.002L522.139 162.817C522.214 163.133 522.369 163.372 522.604 163.534C522.839 163.694 523.146 163.774 523.523 163.774C523.934 163.774 524.263 163.688 524.509 163.518C524.755 163.344 524.878 163.133 524.878 162.884C524.878 162.683 524.803 162.513 524.652 162.376C524.504 162.239 524.276 162.136 523.968 162.066L522.877 161.827C522.276 161.69 521.831 161.471 521.543 161.172C521.257 160.873 521.115 160.494 521.115 160.035C521.115 159.655 521.221 159.322 521.434 159.036C521.646 158.751 521.94 158.529 522.315 158.369C522.69 158.207 523.119 158.126 523.603 158.126C524.299 158.126 524.848 158.277 525.248 158.579C525.648 158.878 525.912 159.28 526.041 159.783ZM527.546 164.655V158.21H528.801V164.655H527.546ZM528.18 157.215C527.961 157.215 527.774 157.143 527.617 156.997C527.464 156.849 527.387 156.673 527.387 156.468C527.387 156.261 527.464 156.085 527.617 155.94C527.774 155.792 527.961 155.717 528.18 155.717C528.398 155.717 528.584 155.792 528.738 155.94C528.894 156.085 528.973 156.261 528.973 156.468C528.973 156.673 528.894 156.849 528.738 156.997C528.584 157.143 528.398 157.215 528.18 157.215ZM533.203 164.785C532.599 164.785 532.072 164.646 531.621 164.369C531.171 164.093 530.821 163.705 530.572 163.207C530.323 162.709 530.199 162.127 530.199 161.462C530.199 160.793 530.323 160.208 530.572 159.708C530.821 159.207 531.171 158.818 531.621 158.541C532.072 158.264 532.599 158.126 533.203 158.126C533.807 158.126 534.335 158.264 534.785 158.541C535.235 158.818 535.585 159.207 535.834 159.708C536.083 160.208 536.208 160.793 536.208 161.462C536.208 162.127 536.083 162.709 535.834 163.207C535.585 163.705 535.235 164.093 534.785 164.369C534.335 164.646 533.807 164.785 533.203 164.785ZM533.207 163.732C533.599 163.732 533.924 163.628 534.181 163.421C534.438 163.214 534.628 162.939 534.752 162.595C534.877 162.251 534.94 161.871 534.94 161.457C534.94 161.046 534.877 160.669 534.752 160.325C534.628 159.978 534.438 159.699 534.181 159.49C533.924 159.28 533.599 159.175 533.207 159.175C532.813 159.175 532.486 159.28 532.226 159.49C531.968 159.699 531.777 159.978 531.651 160.325C531.528 160.669 531.466 161.046 531.466 161.457C531.466 161.871 531.528 162.251 531.651 162.595C531.777 162.939 531.968 163.214 532.226 163.421C532.486 163.628 532.813 163.732 533.207 163.732ZM538.863 160.828V164.655H537.608V158.21H538.812V159.259H538.892C539.04 158.918 539.272 158.643 539.588 158.436C539.907 158.229 540.309 158.126 540.793 158.126C541.232 158.126 541.616 158.218 541.947 158.403C542.277 158.585 542.533 158.856 542.714 159.217C542.896 159.578 542.987 160.024 542.987 160.555V164.655H541.733V160.706C541.733 160.239 541.611 159.874 541.368 159.611C541.124 159.346 540.79 159.213 540.365 159.213C540.074 159.213 539.815 159.276 539.588 159.401C539.365 159.527 539.187 159.712 539.056 159.955C538.927 160.196 538.863 160.487 538.863 160.828ZM547.897 164.655V156.061H550.961C551.626 156.061 552.179 156.176 552.618 156.406C553.06 156.635 553.39 156.952 553.608 157.358C553.826 157.761 553.935 158.227 553.935 158.755C553.935 159.281 553.825 159.744 553.604 160.144C553.386 160.541 553.056 160.85 552.614 161.071C552.175 161.292 551.622 161.403 550.956 161.403H548.636V160.287H550.839C551.258 160.287 551.6 160.227 551.863 160.106C552.128 159.986 552.323 159.811 552.446 159.582C552.569 159.353 552.63 159.077 552.63 158.755C552.63 158.431 552.568 158.15 552.442 157.912C552.319 157.674 552.124 157.492 551.858 157.366C551.595 157.238 551.25 157.173 550.822 157.173H549.194V164.655H547.897ZM552.14 160.778L554.263 164.655H552.786L550.705 160.778H552.14ZM557.288 164.797C556.88 164.797 556.51 164.722 556.18 164.571C555.85 164.417 555.589 164.195 555.396 163.904C555.205 163.613 555.11 163.256 555.11 162.834C555.11 162.47 555.18 162.171 555.32 161.936C555.46 161.701 555.649 161.515 555.887 161.378C556.124 161.241 556.39 161.137 556.684 161.067C556.978 160.997 557.277 160.944 557.582 160.908C557.968 160.863 558.281 160.827 558.522 160.799C558.762 160.768 558.937 160.719 559.046 160.652C559.155 160.585 559.21 160.476 559.21 160.325V160.295C559.21 159.929 559.106 159.645 558.899 159.443C558.695 159.242 558.39 159.141 557.985 159.141C557.562 159.141 557.229 159.235 556.986 159.422C556.745 159.607 556.579 159.813 556.487 160.039L555.308 159.771C555.447 159.379 555.652 159.063 555.92 158.822C556.191 158.579 556.503 158.403 556.856 158.294C557.208 158.182 557.579 158.126 557.968 158.126C558.225 158.126 558.498 158.157 558.786 158.218C559.077 158.277 559.348 158.386 559.6 158.545C559.855 158.705 560.063 158.933 560.225 159.229C560.387 159.523 560.469 159.905 560.469 160.375V164.655H559.243V163.774H559.193C559.112 163.936 558.99 164.095 558.828 164.252C558.666 164.409 558.457 164.539 558.203 164.642C557.948 164.746 557.643 164.797 557.288 164.797ZM557.561 163.79C557.908 163.79 558.204 163.722 558.45 163.585C558.699 163.448 558.888 163.269 559.017 163.048C559.148 162.824 559.214 162.585 559.214 162.33V161.499C559.169 161.544 559.082 161.586 558.954 161.625C558.828 161.662 558.684 161.694 558.522 161.722C558.359 161.747 558.201 161.771 558.047 161.793C557.894 161.813 557.765 161.83 557.661 161.843C557.418 161.874 557.196 161.926 556.994 161.999C556.796 162.071 556.636 162.176 556.516 162.313C556.398 162.448 556.34 162.627 556.34 162.851C556.34 163.161 556.454 163.396 556.684 163.555C556.913 163.712 557.205 163.79 557.561 163.79ZM565.148 158.21V159.217H561.628V158.21H565.148ZM562.572 156.666H563.826V162.762C563.826 163.006 563.863 163.189 563.935 163.312C564.008 163.432 564.102 163.515 564.217 163.56C564.334 163.602 564.461 163.623 564.598 163.623C564.699 163.623 564.787 163.616 564.863 163.602C564.938 163.588 564.997 163.576 565.039 163.568L565.266 164.604C565.193 164.632 565.089 164.66 564.955 164.688C564.821 164.719 564.653 164.736 564.452 164.739C564.121 164.744 563.814 164.686 563.528 164.562C563.243 164.439 563.012 164.249 562.836 163.992C562.66 163.734 562.572 163.411 562.572 163.023V156.666ZM569.244 164.785C568.609 164.785 568.063 164.649 567.604 164.378C567.148 164.104 566.795 163.719 566.546 163.224C566.3 162.726 566.177 162.143 566.177 161.474C566.177 160.814 566.3 160.232 566.546 159.729C566.795 159.225 567.142 158.832 567.587 158.55C568.035 158.267 568.558 158.126 569.156 158.126C569.52 158.126 569.872 158.186 570.214 158.306C570.555 158.427 570.861 158.615 571.133 158.873C571.404 159.13 571.618 159.464 571.775 159.876C571.931 160.284 572.009 160.781 572.009 161.365V161.81H566.886V160.87H570.78C570.78 160.54 570.713 160.248 570.579 159.993C570.444 159.736 570.256 159.533 570.012 159.385C569.772 159.236 569.489 159.162 569.165 159.162C568.812 159.162 568.504 159.249 568.242 159.422C567.981 159.593 567.78 159.817 567.637 160.094C567.497 160.368 567.428 160.666 567.428 160.988V161.722C567.428 162.153 567.503 162.519 567.654 162.821C567.808 163.123 568.022 163.354 568.296 163.513C568.57 163.67 568.891 163.748 569.257 163.748C569.495 163.748 569.712 163.715 569.907 163.648C570.103 163.578 570.272 163.474 570.415 163.337C570.558 163.2 570.667 163.031 570.742 162.83L571.93 163.044C571.835 163.393 571.664 163.7 571.418 163.962C571.175 164.223 570.868 164.425 570.499 164.571C570.133 164.714 569.714 164.785 569.244 164.785Z\" fill=\"white\"/>\r\n <rect x=\"484.61\" y=\"361.816\" width=\"77.2557\" height=\"23.7519\" rx=\"11.8759\" fill=\"#33B5FF\"/>\r\n <path d=\"M500.806 371.856C500.761 371.459 500.577 371.151 500.252 370.933C499.928 370.712 499.519 370.601 499.027 370.601C498.675 370.601 498.37 370.657 498.112 370.769C497.855 370.878 497.655 371.029 497.512 371.222C497.373 371.413 497.303 371.629 497.303 371.873C497.303 372.077 497.35 372.253 497.445 372.401C497.543 372.55 497.67 372.674 497.827 372.775C497.987 372.873 498.157 372.955 498.339 373.022C498.521 373.087 498.696 373.14 498.864 373.182L499.703 373.4C499.977 373.467 500.258 373.558 500.546 373.673C500.834 373.788 501.101 373.939 501.348 374.126C501.594 374.313 501.792 374.546 501.943 374.823C502.097 375.099 502.174 375.431 502.174 375.817C502.174 376.304 502.048 376.736 501.796 377.114C501.548 377.491 501.185 377.789 500.71 378.007C500.237 378.225 499.665 378.335 498.994 378.335C498.35 378.335 497.794 378.232 497.324 378.028C496.854 377.824 496.486 377.535 496.22 377.16C495.954 376.782 495.807 376.334 495.779 375.817H497.08C497.105 376.127 497.206 376.386 497.382 376.593C497.561 376.797 497.789 376.95 498.066 377.051C498.346 377.149 498.652 377.197 498.985 377.197C499.352 377.197 499.678 377.14 499.963 377.025C500.251 376.908 500.478 376.746 500.643 376.539C500.808 376.329 500.89 376.084 500.89 375.804C500.89 375.55 500.817 375.341 500.672 375.179C500.529 375.017 500.335 374.883 500.089 374.776C499.845 374.67 499.57 374.576 499.262 374.495L498.247 374.218C497.559 374.031 497.013 373.755 496.61 373.392C496.21 373.028 496.01 372.547 496.01 371.948C496.01 371.453 496.145 371.021 496.413 370.652C496.682 370.283 497.045 369.996 497.504 369.792C497.963 369.585 498.48 369.481 499.057 369.481C499.638 369.481 500.152 369.583 500.596 369.787C501.044 369.992 501.396 370.273 501.654 370.631C501.911 370.986 502.045 371.394 502.057 371.856H500.806ZM506.631 371.747V372.754H503.111V371.747H506.631ZM504.055 370.203H505.31V376.3C505.31 376.543 505.346 376.726 505.419 376.849C505.491 376.969 505.585 377.052 505.7 377.097C505.817 377.139 505.945 377.16 506.082 377.16C506.182 377.16 506.27 377.153 506.346 377.139C506.421 377.125 506.48 377.114 506.522 377.105L506.749 378.142C506.676 378.17 506.573 378.197 506.438 378.225C506.304 378.256 506.136 378.273 505.935 378.276C505.605 378.281 505.297 378.223 505.012 378.1C504.726 377.977 504.496 377.786 504.319 377.529C504.143 377.272 504.055 376.948 504.055 376.56V370.203ZM510.665 378.322C510.06 378.322 509.533 378.184 509.083 377.907C508.632 377.63 508.283 377.242 508.034 376.744C507.785 376.246 507.66 375.665 507.66 374.999C507.66 374.33 507.785 373.746 508.034 373.245C508.283 372.744 508.632 372.355 509.083 372.078C509.533 371.801 510.06 371.663 510.665 371.663C511.269 371.663 511.796 371.801 512.246 372.078C512.697 372.355 513.047 372.744 513.295 373.245C513.544 373.746 513.669 374.33 513.669 374.999C513.669 375.665 513.544 376.246 513.295 376.744C513.047 377.242 512.697 377.63 512.246 377.907C511.796 378.184 511.269 378.322 510.665 378.322ZM510.669 377.269C511.06 377.269 511.385 377.165 511.642 376.958C511.9 376.751 512.09 376.476 512.213 376.132C512.339 375.788 512.402 375.409 512.402 374.995C512.402 374.583 512.339 374.206 512.213 373.862C512.09 373.515 511.9 373.236 511.642 373.027C511.385 372.817 511.06 372.712 510.669 372.712C510.274 372.712 509.947 372.817 509.687 373.027C509.43 373.236 509.238 373.515 509.112 373.862C508.989 374.206 508.928 374.583 508.928 374.995C508.928 375.409 508.989 375.788 509.112 376.132C509.238 376.476 509.43 376.751 509.687 376.958C509.947 377.165 510.274 377.269 510.669 377.269ZM515.069 378.192V371.747H516.282V372.771H516.349C516.467 372.424 516.674 372.151 516.97 371.953C517.269 371.751 517.608 371.65 517.986 371.65C518.064 371.65 518.156 371.653 518.262 371.659C518.372 371.664 518.457 371.671 518.518 371.68V372.88C518.468 372.866 518.379 372.85 518.25 372.834C518.121 372.814 517.993 372.804 517.864 372.804C517.567 372.804 517.303 372.867 517.071 372.993C516.841 373.116 516.66 373.288 516.525 373.509C516.391 373.727 516.324 373.976 516.324 374.256V378.192H515.069ZM522.151 378.322C521.516 378.322 520.969 378.186 520.51 377.915C520.054 377.641 519.702 377.256 519.453 376.761C519.207 376.263 519.084 375.68 519.084 375.011C519.084 374.351 519.207 373.769 519.453 373.266C519.702 372.762 520.049 372.369 520.494 372.087C520.941 371.804 521.464 371.663 522.063 371.663C522.427 371.663 522.779 371.723 523.12 371.843C523.462 371.964 523.768 372.153 524.039 372.41C524.311 372.667 524.525 373.002 524.681 373.413C524.838 373.821 524.916 374.318 524.916 374.902V375.347H519.793V374.407H523.687C523.687 374.077 523.62 373.785 523.485 373.53C523.351 373.273 523.162 373.07 522.919 372.922C522.678 372.774 522.396 372.699 522.071 372.699C521.719 372.699 521.411 372.786 521.148 372.96C520.888 373.13 520.687 373.354 520.544 373.631C520.404 373.905 520.334 374.203 520.334 374.525V375.259C520.334 375.69 520.41 376.056 520.561 376.358C520.715 376.66 520.929 376.891 521.203 377.051C521.477 377.207 521.797 377.286 522.164 377.286C522.401 377.286 522.618 377.252 522.814 377.185C523.01 377.115 523.179 377.011 523.322 376.874C523.464 376.737 523.573 376.568 523.649 376.367L524.836 376.581C524.741 376.93 524.571 377.237 524.325 377.5C524.081 377.76 523.775 377.963 523.406 378.108C523.039 378.251 522.621 378.322 522.151 378.322ZM537.001 373.895C537.001 374.813 536.833 375.602 536.497 376.262C536.161 376.919 535.701 377.425 535.117 377.781C534.535 378.133 533.873 378.309 533.132 378.309C532.388 378.309 531.723 378.133 531.139 377.781C530.557 377.425 530.098 376.918 529.762 376.258C529.427 375.597 529.259 374.81 529.259 373.895C529.259 372.978 529.427 372.19 529.762 371.533C530.098 370.873 530.557 370.366 531.139 370.014C531.723 369.659 532.388 369.481 533.132 369.481C533.873 369.481 534.535 369.659 535.117 370.014C535.701 370.366 536.161 370.873 536.497 371.533C536.833 372.19 537.001 372.978 537.001 373.895ZM535.717 373.895C535.717 373.196 535.603 372.607 535.377 372.129C535.153 371.648 534.845 371.284 534.454 371.038C534.065 370.789 533.624 370.664 533.132 370.664C532.637 370.664 532.195 370.789 531.806 371.038C531.417 371.284 531.109 371.648 530.883 372.129C530.659 372.607 530.547 373.196 530.547 373.895C530.547 374.595 530.659 375.185 530.883 375.666C531.109 376.144 531.417 376.508 531.806 376.757C532.195 377.003 532.637 377.126 533.132 377.126C533.624 377.126 534.065 377.003 534.454 376.757C534.845 376.508 535.153 376.144 535.377 375.666C535.603 375.185 535.717 374.595 535.717 373.895ZM538.516 380.609V371.747H539.742V372.792H539.846C539.919 372.657 540.024 372.502 540.161 372.326C540.298 372.15 540.488 371.996 540.732 371.864C540.975 371.73 541.297 371.663 541.697 371.663C542.217 371.663 542.681 371.794 543.09 372.057C543.498 372.32 543.819 372.699 544.051 373.195C544.286 373.69 544.403 374.285 544.403 374.982C544.403 375.679 544.287 376.276 544.055 376.774C543.823 377.269 543.504 377.651 543.098 377.919C542.693 378.185 542.23 378.318 541.709 378.318C541.318 378.318 540.998 378.252 540.749 378.121C540.502 377.989 540.309 377.835 540.17 377.659C540.03 377.483 539.922 377.326 539.846 377.189H539.771V380.609H538.516ZM539.746 374.969C539.746 375.423 539.811 375.82 539.943 376.161C540.074 376.502 540.265 376.769 540.514 376.962C540.763 377.153 541.067 377.248 541.428 377.248C541.803 377.248 542.116 377.149 542.368 376.95C542.62 376.748 542.81 376.476 542.939 376.132C543.07 375.788 543.136 375.4 543.136 374.969C543.136 374.544 543.072 374.162 542.943 373.824C542.817 373.485 542.627 373.218 542.372 373.022C542.121 372.827 541.806 372.729 541.428 372.729C541.065 372.729 540.757 372.822 540.505 373.01C540.256 373.197 540.067 373.459 539.939 373.795C539.81 374.13 539.746 374.522 539.746 374.969ZM550.638 373.32L549.501 373.522C549.454 373.376 549.378 373.238 549.275 373.106C549.174 372.975 549.037 372.867 548.864 372.783C548.69 372.699 548.473 372.657 548.213 372.657C547.858 372.657 547.561 372.737 547.324 372.897C547.086 373.053 546.967 373.256 546.967 373.505C546.967 373.72 547.047 373.894 547.206 374.025C547.366 374.157 547.623 374.264 547.978 374.348L549.002 374.583C549.595 374.72 550.037 374.932 550.328 375.217C550.619 375.502 550.764 375.873 550.764 376.329C550.764 376.715 550.652 377.059 550.429 377.361C550.208 377.66 549.899 377.895 549.501 378.066C549.107 378.237 548.65 378.322 548.129 378.322C547.408 378.322 546.819 378.168 546.363 377.86C545.907 377.55 545.627 377.109 545.524 376.539L546.736 376.354C546.812 376.67 546.967 376.909 547.202 377.072C547.437 377.231 547.743 377.311 548.121 377.311C548.532 377.311 548.861 377.225 549.107 377.055C549.353 376.881 549.476 376.67 549.476 376.421C549.476 376.22 549.401 376.051 549.25 375.913C549.101 375.776 548.873 375.673 548.566 375.603L547.475 375.364C546.873 375.227 546.428 375.009 546.14 374.709C545.855 374.41 545.712 374.031 545.712 373.572C545.712 373.192 545.819 372.859 546.031 372.574C546.244 372.288 546.538 372.066 546.912 371.906C547.287 371.744 547.717 371.663 548.201 371.663C548.897 371.663 549.445 371.814 549.845 372.116C550.245 372.415 550.51 372.817 550.638 373.32Z\" fill=\"white\"/>\r\n <rect x=\"5.31934\" y=\"231.809\" width=\"92.2557\" height=\"23.7519\" rx=\"11.8759\" fill=\"#33B5FF\"/>\r\n <path d=\"M21.4693 241.849C21.4245 241.452 21.2399 241.144 20.9154 240.926C20.5909 240.705 20.1825 240.595 19.6902 240.595C19.3377 240.595 19.0328 240.651 18.7755 240.762C18.5181 240.872 18.3181 241.023 18.1755 241.216C18.0356 241.406 17.9657 241.623 17.9657 241.866C17.9657 242.07 18.0132 242.246 18.1083 242.395C18.2062 242.543 18.3335 242.667 18.4902 242.768C18.6496 242.866 18.8202 242.949 19.0021 243.016C19.1839 243.08 19.3587 243.133 19.5266 243.175L20.3658 243.393C20.6399 243.46 20.921 243.551 21.2091 243.666C21.4973 243.781 21.7644 243.932 22.0106 244.119C22.2567 244.307 22.4553 244.539 22.6064 244.816C22.7602 245.093 22.8372 245.424 22.8372 245.81C22.8372 246.297 22.7113 246.729 22.4595 247.107C22.2106 247.484 21.8483 247.782 21.3728 248C20.9 248.219 20.328 248.328 19.6566 248.328C19.0133 248.328 18.4566 248.226 17.9867 248.021C17.5167 247.817 17.1489 247.528 16.8831 247.153C16.6174 246.775 16.4705 246.328 16.4425 245.81H17.7433C17.7685 246.121 17.8692 246.379 18.0454 246.586C18.2244 246.791 18.4524 246.943 18.7293 247.044C19.0091 247.142 19.3154 247.191 19.6482 247.191C20.0147 247.191 20.3406 247.133 20.6259 247.019C20.914 246.901 21.1406 246.739 21.3057 246.532C21.4707 246.322 21.5532 246.077 21.5532 245.798C21.5532 245.543 21.4805 245.335 21.335 245.172C21.1924 245.01 20.9979 244.876 20.7518 244.77C20.5084 244.663 20.2329 244.57 19.9252 244.488L18.9098 244.211C18.2216 244.024 17.6762 243.749 17.2733 243.385C16.8733 243.021 16.6733 242.54 16.6733 241.941C16.6733 241.446 16.8076 241.014 17.0761 240.645C17.3447 240.276 17.7083 239.989 18.1671 239.785C18.6258 239.578 19.1433 239.474 19.7196 239.474C20.3014 239.474 20.8147 239.576 21.2595 239.781C21.7071 239.985 22.0595 240.266 22.3169 240.624C22.5742 240.979 22.7085 241.388 22.7197 241.849H21.4693ZM26.1614 248.328C25.753 248.328 25.3838 248.252 25.0537 248.101C24.7236 247.947 24.4621 247.725 24.269 247.434C24.0788 247.143 23.9837 246.786 23.9837 246.364C23.9837 246 24.0536 245.701 24.1935 245.466C24.3334 245.231 24.5222 245.045 24.76 244.908C24.9977 244.771 25.2635 244.667 25.5572 244.598C25.8509 244.528 26.1502 244.474 26.4551 244.438C26.8412 244.393 27.1545 244.357 27.395 244.329C27.6356 244.298 27.8104 244.249 27.9195 244.182C28.0286 244.115 28.0832 244.006 28.0832 243.855V243.825C28.0832 243.459 27.9797 243.175 27.7727 242.974C27.5685 242.772 27.2636 242.672 26.8579 242.672C26.4356 242.672 26.1027 242.765 25.8593 242.953C25.6187 243.137 25.4523 243.343 25.36 243.57L24.1809 243.301C24.3208 242.909 24.525 242.593 24.7935 242.353C25.0649 242.109 25.3768 241.933 25.7292 241.824C26.0817 241.712 26.4523 241.656 26.8412 241.656C27.0985 241.656 27.3712 241.687 27.6594 241.748C27.9503 241.807 28.2216 241.916 28.4734 242.076C28.7279 242.235 28.9363 242.463 29.0986 242.76C29.2608 243.053 29.3419 243.435 29.3419 243.905V248.185H28.1167V247.304H28.0664C27.9853 247.466 27.8636 247.626 27.7013 247.782C27.5391 247.939 27.3307 248.069 27.0761 248.172C26.8216 248.276 26.5167 248.328 26.1614 248.328ZM26.4342 247.321C26.781 247.321 27.0775 247.252 27.3237 247.115C27.5727 246.978 27.7615 246.799 27.8901 246.578C28.0216 246.354 28.0874 246.115 28.0874 245.861V245.03C28.0426 245.074 27.9559 245.116 27.8272 245.156C27.7013 245.192 27.5573 245.224 27.395 245.252C27.2328 245.277 27.0747 245.301 26.9209 245.323C26.767 245.343 26.6384 245.36 26.5349 245.374C26.2915 245.405 26.0691 245.456 25.8677 245.529C25.6691 245.602 25.5096 245.707 25.3894 245.844C25.2719 245.978 25.2131 246.157 25.2131 246.381C25.2131 246.691 25.3278 246.926 25.5572 247.086C25.7866 247.242 26.0789 247.321 26.4342 247.321ZM32.2676 239.592V248.185H31.013V239.592H32.2676ZM36.7331 248.315C36.0981 248.315 35.5513 248.179 35.0925 247.908C34.6365 247.634 34.2841 247.249 34.0351 246.754C33.789 246.256 33.6659 245.673 33.6659 245.005C33.6659 244.344 33.789 243.763 34.0351 243.259C34.2841 242.755 34.6309 242.362 35.0757 242.08C35.5233 241.797 36.0464 241.656 36.645 241.656C37.0086 241.656 37.3611 241.716 37.7024 241.837C38.0436 241.957 38.35 242.146 38.6213 242.403C38.8926 242.66 39.1066 242.995 39.2633 243.406C39.4199 243.814 39.4982 244.311 39.4982 244.895V245.34H34.375V244.4H38.2688C38.2688 244.07 38.2017 243.778 38.0674 243.523C37.9332 243.266 37.7443 243.063 37.501 242.915C37.2604 242.767 36.9779 242.693 36.6534 242.693C36.3009 242.693 35.9932 242.779 35.7303 242.953C35.4701 243.123 35.2687 243.347 35.1261 243.624C34.9862 243.898 34.9163 244.196 34.9163 244.518V245.252C34.9163 245.683 34.9918 246.049 35.1428 246.351C35.2967 246.654 35.5107 246.884 35.7848 247.044C36.059 247.2 36.3793 247.279 36.7457 247.279C36.9835 247.279 37.2003 247.245 37.3961 247.178C37.5919 247.108 37.7611 247.005 37.9038 246.868C38.0464 246.73 38.1555 246.561 38.2311 246.36L39.4185 246.574C39.3234 246.923 39.1528 247.23 38.9066 247.493C38.6633 247.753 38.3569 247.956 37.9877 248.101C37.6213 248.244 37.2031 248.315 36.7331 248.315ZM45.7198 243.314L44.5827 243.515C44.5351 243.37 44.4596 243.231 44.3561 243.1C44.2554 242.968 44.1183 242.86 43.9449 242.776C43.7715 242.693 43.5547 242.651 43.2945 242.651C42.9393 242.651 42.6428 242.73 42.405 242.89C42.1672 243.046 42.0483 243.249 42.0483 243.498C42.0483 243.714 42.1281 243.887 42.2875 244.018C42.4469 244.15 42.7043 244.258 43.0596 244.342L44.0834 244.577C44.6764 244.714 45.1184 244.925 45.4093 245.21C45.7002 245.495 45.8457 245.866 45.8457 246.322C45.8457 246.708 45.7338 247.052 45.51 247.354C45.289 247.654 44.9799 247.889 44.5827 248.059C44.1883 248.23 43.7309 248.315 43.2106 248.315C42.4889 248.315 41.9001 248.161 41.4441 247.854C40.9882 247.543 40.7084 247.103 40.6049 246.532L41.8176 246.347C41.8931 246.663 42.0483 246.902 42.2833 247.065C42.5183 247.224 42.8246 247.304 43.2022 247.304C43.6134 247.304 43.9421 247.219 44.1883 247.048C44.4344 246.875 44.5575 246.663 44.5575 246.414C44.5575 246.213 44.482 246.044 44.3309 245.907C44.1827 245.77 43.9547 245.666 43.647 245.596L42.556 245.357C41.9546 245.22 41.5099 245.002 41.2217 244.702C40.9364 244.403 40.7937 244.024 40.7937 243.565C40.7937 243.185 40.9 242.852 41.1126 242.567C41.3252 242.281 41.6189 242.059 41.9938 241.9C42.3686 241.737 42.798 241.656 43.2819 241.656C43.9785 241.656 44.5267 241.807 44.9268 242.109C45.3268 242.409 45.5911 242.81 45.7198 243.314ZM50.4528 248.185V239.592H55.7817V240.708H51.7494V243.326H55.3999V244.438H51.7494V248.185H50.4528ZM60.9542 245.512V241.74H62.213V248.185H60.9794V247.069H60.9123C60.764 247.413 60.5263 247.7 60.199 247.929C59.8745 248.156 59.4703 248.269 58.9863 248.269C58.5723 248.269 58.2059 248.178 57.887 247.996C57.5709 247.812 57.3219 247.539 57.1401 247.178C56.9611 246.817 56.8716 246.371 56.8716 245.84V241.74H58.1262V245.688C58.1262 246.128 58.2479 246.477 58.4912 246.737C58.7346 246.998 59.0507 247.128 59.4395 247.128C59.6745 247.128 59.9081 247.069 60.1402 246.951C60.3752 246.834 60.5696 246.656 60.7235 246.419C60.8801 246.181 60.957 245.879 60.9542 245.512ZM65.1533 244.358V248.185H63.8988V241.74H65.103V242.789H65.1827C65.331 242.448 65.5631 242.174 65.8792 241.967C66.1981 241.76 66.5995 241.656 67.0835 241.656C67.5227 241.656 67.9073 241.748 68.2374 241.933C68.5674 242.115 68.8234 242.386 69.0052 242.747C69.1871 243.108 69.278 243.554 69.278 244.086V248.185H68.0234V244.237C68.0234 243.77 67.9017 243.404 67.6583 243.142C67.415 242.876 67.0807 242.743 66.6555 242.743C66.3646 242.743 66.1058 242.806 65.8792 242.932C65.6555 243.058 65.4778 243.242 65.3464 243.486C65.2177 243.726 65.1533 244.017 65.1533 244.358ZM72.2151 244.358V248.185H70.9605V241.74H72.1648V242.789H72.2445C72.3928 242.448 72.6249 242.174 72.941 241.967C73.2599 241.76 73.6613 241.656 74.1453 241.656C74.5844 241.656 74.9691 241.748 75.2991 241.933C75.6292 242.115 75.8852 242.386 76.067 242.747C76.2488 243.108 76.3397 243.554 76.3397 244.086V248.185H75.0852V244.237C75.0852 243.77 74.9635 243.404 74.7201 243.142C74.4767 242.876 74.1425 242.743 73.7173 242.743C73.4264 242.743 73.1676 242.806 72.941 242.932C72.7172 243.058 72.5396 243.242 72.4081 243.486C72.2795 243.726 72.2151 244.017 72.2151 244.358ZM80.8 248.315C80.1651 248.315 79.6182 248.179 79.1594 247.908C78.7035 247.634 78.351 247.249 78.102 246.754C77.8559 246.256 77.7328 245.673 77.7328 245.005C77.7328 244.344 77.8559 243.763 78.102 243.259C78.351 242.755 78.6979 242.362 79.1426 242.08C79.5902 241.797 80.1133 241.656 80.7119 241.656C81.0756 241.656 81.428 241.716 81.7693 241.837C82.1106 241.957 82.4169 242.146 82.6882 242.403C82.9596 242.66 83.1736 242.995 83.3302 243.406C83.4868 243.814 83.5652 244.311 83.5652 244.895V245.34H78.4419V244.4H82.3358C82.3358 244.07 82.2686 243.778 82.1344 243.523C82.0001 243.266 81.8113 243.063 81.5679 242.915C81.3273 242.767 81.0448 242.693 80.7203 242.693C80.3679 242.693 80.0602 242.779 79.7972 242.953C79.5371 243.123 79.3357 243.347 79.193 243.624C79.0531 243.898 78.9832 244.196 78.9832 244.518V245.252C78.9832 245.683 79.0587 246.049 79.2098 246.351C79.3636 246.654 79.5776 246.884 79.8518 247.044C80.1259 247.2 80.4462 247.279 80.8126 247.279C81.0504 247.279 81.2672 247.245 81.463 247.178C81.6588 247.108 81.8281 247.005 81.9707 246.868C82.1134 246.73 82.2225 246.561 82.298 246.36L83.4855 246.574C83.3903 246.923 83.2197 247.23 82.9735 247.493C82.7302 247.753 82.4239 247.956 82.0546 248.101C81.6882 248.244 81.27 248.315 80.8 248.315ZM86.2118 239.592V248.185H84.9572V239.592H86.2118Z\" fill=\"white\"/>\r\n <g filter=\"url(#filter2_ddd_3784_14918)\">\r\n <g clip-path=\"url(#clip5_3784_14918)\">\r\n <rect x=\"3.89355\" y=\"112.944\" width=\"253.372\" height=\"105.379\" rx=\"6.75188\" fill=\"white\"/>\r\n <g filter=\"url(#filter3_d_3784_14918)\">\r\n <path d=\"M4.24449 118.559C4.24449 115.652 6.60124 113.295 9.50845 113.295H256.915V154.705H9.50846C6.60125 154.705 4.24449 152.348 4.24449 149.441V118.559Z\" fill=\"white\"/>\r\n <path d=\"M4.24449 118.559C4.24449 115.652 6.60124 113.295 9.50845 113.295H256.915V154.705H9.50846C6.60125 154.705 4.24449 152.348 4.24449 149.441V118.559Z\" stroke=\"#F2F4F7\" stroke-width=\"0.701862\"/>\r\n <rect x=\"9.5083\" y=\"118.559\" width=\"30.8819\" height=\"30.8819\" rx=\"8.42234\" fill=\"#EAF8FF\"/>\r\n <path d=\"M31.2747 126.981H26.4223C26.0064 126.981 25.7291 127.245 25.7291 127.641V134.9C25.7291 135.296 26.0064 135.56 26.4223 135.56H31.2747C31.6906 135.56 31.9678 135.296 31.9678 134.9V127.641C31.9678 127.245 31.6906 126.981 31.2747 126.981Z\" fill=\"#33B5FF\"/>\r\n <path d=\"M25.7603 140.239V137.899C25.7603 137.431 26.0362 137.119 26.45 137.119H31.2782C31.692 137.119 31.9679 137.431 31.9679 137.899V140.239C31.9679 140.707 31.692 141.019 31.2782 141.019H26.45C26.0362 141.019 25.7603 140.707 25.7603 140.239Z\" fill=\"#99DAFF\"/>\r\n <path d=\"M27.9281 138.767C27.9281 139.02 27.7456 139.226 27.5204 139.226C27.2953 139.226 27.1128 139.02 27.1128 138.767C27.1128 138.514 27.2953 138.309 27.5204 138.309C27.7456 138.309 27.9281 138.514 27.9281 138.767Z\" fill=\"white\"/>\r\n <path d=\"M29.1506 138.767C29.1506 139.02 28.9681 139.226 28.743 139.226C28.5179 139.226 28.3354 139.02 28.3354 138.767C28.3354 138.514 28.5179 138.309 28.743 138.309C28.9681 138.309 29.1506 138.514 29.1506 138.767Z\" fill=\"white\"/>\r\n <path d=\"M30.3745 138.767C30.3745 139.02 30.1921 139.226 29.9669 139.226C29.7418 139.226 29.5593 139.02 29.5593 138.767C29.5593 138.514 29.7418 138.309 29.9669 138.309C30.1921 138.309 30.3745 138.514 30.3745 138.767Z\" fill=\"white\"/>\r\n <path d=\"M18.6239 141.019H23.4762C24.1694 141.019 24.1694 140.755 24.1694 139.699V133.134C24.1694 132.75 23.8593 132.44 23.4762 132.44H18.6239C18.2079 132.44 17.9307 132.704 17.9307 133.1V140.359C17.9307 140.755 18.2079 141.019 18.6239 141.019Z\" fill=\"#33B5FF\"/>\r\n <path d=\"M18.6204 131.037H23.4486C23.8624 131.037 24.1383 130.725 24.1383 130.257V127.917C24.1383 127.449 23.8624 127.137 23.4486 127.137H18.6204C18.2066 127.137 17.9307 127.449 17.9307 127.917V130.257C17.9307 130.647 18.2066 131.037 18.6204 131.037Z\" fill=\"#99DAFF\"/>\r\n <path d=\"M20.2542 128.816C20.2542 129.069 20.0717 129.274 19.8465 129.274C19.6214 129.274 19.4389 129.069 19.4389 128.816C19.4389 128.563 19.6214 128.357 19.8465 128.357C20.0717 128.357 20.2542 128.563 20.2542 128.816Z\" fill=\"white\"/>\r\n <path d=\"M21.4767 128.816C21.4767 129.069 21.2942 129.274 21.0691 129.274C20.844 129.274 20.6615 129.069 20.6615 128.816C20.6615 128.563 20.844 128.357 21.0691 128.357C21.2942 128.357 21.4767 128.563 21.4767 128.816Z\" fill=\"white\"/>\r\n <path d=\"M22.7007 128.816C22.7007 129.069 22.5182 129.274 22.293 129.274C22.0679 129.274 21.8854 129.069 21.8854 128.816C21.8854 128.563 22.0679 128.357 22.293 128.357C22.5182 128.357 22.7007 128.563 22.7007 128.816Z\" fill=\"white\"/>\r\n <path d=\"M52.1226 130.207V128.812H59.4533V130.207H56.6134V138H54.9624V130.207H52.1226ZM61.84 138.139C61.4033 138.139 61.01 138.061 60.6601 137.906C60.3131 137.747 60.038 137.514 59.8346 137.206C59.6342 136.898 59.534 136.518 59.534 136.066C59.534 135.678 59.6058 135.356 59.7494 135.102C59.8929 134.848 60.0888 134.644 60.3371 134.492C60.5853 134.339 60.865 134.224 61.176 134.146C61.49 134.065 61.8146 134.007 62.1495 133.971C62.5533 133.929 62.8808 133.892 63.132 133.859C63.3833 133.823 63.5657 133.769 63.6794 133.698C63.796 133.623 63.8543 133.508 63.8543 133.352V133.325C63.8543 132.987 63.7541 132.726 63.5538 132.54C63.3534 132.355 63.0647 132.262 62.6879 132.262C62.2901 132.262 61.9746 132.349 61.7413 132.522C61.511 132.696 61.3555 132.901 61.2747 133.137L59.7583 132.921C59.878 132.503 60.0754 132.153 60.3505 131.872C60.6257 131.588 60.9622 131.375 61.3599 131.235C61.7577 131.091 62.1974 131.019 62.6789 131.019C63.0109 131.019 63.3414 131.058 63.6704 131.136C63.9994 131.214 64.3 131.342 64.5722 131.522C64.8443 131.698 65.0627 131.939 65.2272 132.244C65.3947 132.549 65.4784 132.93 65.4784 133.388V138H63.9172V137.053H63.8633C63.7646 137.245 63.6255 137.424 63.4461 137.592C63.2696 137.756 63.0468 137.889 62.7776 137.991C62.5114 138.09 62.1989 138.139 61.84 138.139ZM62.2617 136.946C62.5877 136.946 62.8703 136.881 63.1096 136.753C63.3489 136.621 63.5328 136.448 63.6614 136.232C63.793 136.017 63.8588 135.782 63.8588 135.528V134.716C63.808 134.758 63.7213 134.797 63.5986 134.833C63.479 134.869 63.3444 134.9 63.1949 134.927C63.0453 134.954 62.8973 134.978 62.7507 134.999C62.6042 135.02 62.477 135.038 62.3694 135.052C62.1271 135.085 61.9103 135.139 61.7189 135.214C61.5274 135.289 61.3764 135.393 61.2657 135.528C61.1551 135.66 61.0997 135.83 61.0997 136.039C61.0997 136.339 61.2089 136.564 61.4272 136.717C61.6456 136.869 61.9237 136.946 62.2617 136.946ZM68.7355 133.962V138H67.1114V131.109H68.6637V132.28H68.7444C68.903 131.894 69.1557 131.588 69.5026 131.36C69.8526 131.133 70.2848 131.019 70.7992 131.019C71.2747 131.019 71.689 131.121 72.0419 131.324C72.3978 131.528 72.673 131.822 72.8674 132.208C73.0648 132.594 73.162 133.062 73.159 133.612V138H71.5349V133.864C71.5349 133.403 71.4153 133.043 71.176 132.782C70.9398 132.522 70.6123 132.392 70.1935 132.392C69.9094 132.392 69.6567 132.455 69.4353 132.581C69.217 132.703 69.045 132.881 68.9194 133.114C68.7968 133.348 68.7355 133.63 68.7355 133.962ZM77.8068 140.728C77.2236 140.728 76.7226 140.648 76.3039 140.49C75.8852 140.334 75.5487 140.125 75.2945 139.862C75.0403 139.599 74.8638 139.307 74.7651 138.987L76.2276 138.633C76.2934 138.767 76.3892 138.9 76.5148 139.032C76.6404 139.166 76.8094 139.277 77.0217 139.364C77.2371 139.454 77.5077 139.498 77.8338 139.498C78.2944 139.498 78.6757 139.386 78.9778 139.162C79.2798 138.941 79.4309 138.576 79.4309 138.067V136.762H79.3501C79.2664 136.929 79.1438 137.101 78.9823 137.278C78.8237 137.454 78.6129 137.602 78.3497 137.722C78.0895 137.841 77.762 137.901 77.3672 137.901C76.8378 137.901 76.3578 137.777 75.9271 137.529C75.4994 137.278 75.1584 136.904 74.9042 136.407C74.6529 135.908 74.5273 135.283 74.5273 134.532C74.5273 133.775 74.6529 133.137 74.9042 132.616C75.1584 132.093 75.5009 131.697 75.9316 131.428C76.3622 131.155 76.8423 131.019 77.3717 131.019C77.7754 131.019 78.1074 131.088 78.3676 131.226C78.6308 131.36 78.8402 131.523 78.9957 131.715C79.1512 131.903 79.2694 132.081 79.3501 132.249H79.4399V131.109H81.0415V138.112C81.0415 138.701 80.9009 139.189 80.6198 139.575C80.3386 139.961 79.9543 140.249 79.4668 140.441C78.9793 140.632 78.426 140.728 77.8068 140.728ZM77.8203 136.627C78.1642 136.627 78.4574 136.543 78.6996 136.376C78.9419 136.208 79.1258 135.968 79.2514 135.654C79.3771 135.34 79.4399 134.963 79.4399 134.523C79.4399 134.089 79.3771 133.71 79.2514 133.384C79.1288 133.058 78.9464 132.805 78.7041 132.625C78.4648 132.443 78.1702 132.352 77.8203 132.352C77.4584 132.352 77.1563 132.446 76.9141 132.634C76.6718 132.823 76.4894 133.081 76.3667 133.41C76.2441 133.736 76.1828 134.107 76.1828 134.523C76.1828 134.945 76.2441 135.314 76.3667 135.631C76.4923 135.945 76.6763 136.191 76.9185 136.367C77.1638 136.54 77.4644 136.627 77.8203 136.627ZM85.7118 138.135C85.0388 138.135 84.4556 137.987 83.9621 137.69C83.4686 137.394 83.0858 136.98 82.8136 136.448C82.5444 135.915 82.4098 135.293 82.4098 134.581C82.4098 133.87 82.5444 133.246 82.8136 132.711C83.0858 132.175 83.4686 131.76 83.9621 131.463C84.4556 131.167 85.0388 131.019 85.7118 131.019C86.3847 131.019 86.9679 131.167 87.4614 131.463C87.9549 131.76 88.3363 132.175 88.6054 132.711C88.8776 133.246 89.0137 133.87 89.0137 134.581C89.0137 135.293 88.8776 135.915 88.6054 136.448C88.3363 136.98 87.9549 137.394 87.4614 137.69C86.9679 137.987 86.3847 138.135 85.7118 138.135ZM85.7207 136.834C86.0856 136.834 86.3907 136.733 86.6359 136.533C86.8812 136.33 87.0636 136.057 87.1833 135.716C87.3059 135.375 87.3672 134.996 87.3672 134.577C87.3672 134.155 87.3059 133.774 87.1833 133.433C87.0636 133.089 86.8812 132.815 86.6359 132.612C86.3907 132.409 86.0856 132.307 85.7207 132.307C85.3469 132.307 85.0358 132.409 84.7876 132.612C84.5423 132.815 84.3584 133.089 84.2357 133.433C84.1161 133.774 84.0563 134.155 84.0563 134.577C84.0563 134.996 84.1161 135.375 84.2357 135.716C84.3584 136.057 84.5423 136.33 84.7876 136.533C85.0358 136.733 85.3469 136.834 85.7207 136.834ZM93.1938 130.207V128.812H100.525V130.207H97.6847V138H96.0337V130.207H93.1938ZM101.15 138V131.109H102.725V132.257H102.797C102.922 131.86 103.138 131.553 103.443 131.338C103.751 131.119 104.102 131.01 104.497 131.01C104.587 131.01 104.687 131.015 104.798 131.024C104.911 131.03 105.006 131.04 105.08 131.055V132.549C105.012 132.525 104.902 132.504 104.753 132.486C104.606 132.465 104.464 132.455 104.327 132.455C104.031 132.455 103.764 132.519 103.528 132.648C103.295 132.773 103.111 132.948 102.976 133.173C102.842 133.397 102.774 133.656 102.774 133.949V138H101.15ZM108.019 138.139C107.582 138.139 107.189 138.061 106.839 137.906C106.492 137.747 106.217 137.514 106.014 137.206C105.813 136.898 105.713 136.518 105.713 136.066C105.713 135.678 105.785 135.356 105.928 135.102C106.072 134.848 106.268 134.644 106.516 134.492C106.764 134.339 107.044 134.224 107.355 134.146C107.669 134.065 107.993 134.007 108.328 133.971C108.732 133.929 109.06 133.892 109.311 133.859C109.562 133.823 109.745 133.769 109.858 133.698C109.975 133.623 110.033 133.508 110.033 133.352V133.325C110.033 132.987 109.933 132.726 109.733 132.54C109.532 132.355 109.244 132.262 108.867 132.262C108.469 132.262 108.154 132.349 107.92 132.522C107.69 132.696 107.534 132.901 107.454 133.137L105.937 132.921C106.057 132.503 106.254 132.153 106.529 131.872C106.805 131.588 107.141 131.375 107.539 131.235C107.937 131.091 108.376 131.019 108.858 131.019C109.19 131.019 109.52 131.058 109.849 131.136C110.178 131.214 110.479 131.342 110.751 131.522C111.023 131.698 111.242 131.939 111.406 132.244C111.574 132.549 111.657 132.93 111.657 133.388V138H110.096V137.053H110.042C109.944 137.245 109.804 137.424 109.625 137.592C109.449 137.756 109.226 137.889 108.957 137.991C108.69 138.09 108.378 138.139 108.019 138.139ZM108.441 136.946C108.767 136.946 109.049 136.881 109.289 136.753C109.528 136.621 109.712 136.448 109.84 136.232C109.972 136.017 110.038 135.782 110.038 135.528V134.716C109.987 134.758 109.9 134.797 109.778 134.833C109.658 134.869 109.523 134.9 109.374 134.927C109.224 134.954 109.076 134.978 108.93 134.999C108.783 135.02 108.656 135.038 108.548 135.052C108.306 135.085 108.089 135.139 107.898 135.214C107.706 135.289 107.555 135.393 107.445 135.528C107.334 135.66 107.279 135.83 107.279 136.039C107.279 136.339 107.388 136.564 107.606 136.717C107.825 136.869 108.103 136.946 108.441 136.946ZM116.781 131.109V132.365H112.707V131.109H116.781ZM113.726 138V130.458C113.726 129.995 113.821 129.609 114.013 129.301C114.207 128.993 114.467 128.763 114.793 128.61C115.119 128.458 115.481 128.381 115.879 128.381C116.16 128.381 116.41 128.404 116.628 128.449C116.847 128.493 117.008 128.534 117.113 128.57L116.79 129.826C116.721 129.805 116.634 129.784 116.529 129.763C116.425 129.739 116.308 129.727 116.18 129.727C115.877 129.727 115.664 129.8 115.538 129.947C115.415 130.091 115.354 130.297 115.354 130.566V138H113.726ZM121.543 131.109V132.365H117.469V131.109H121.543ZM118.488 138V130.458C118.488 129.995 118.583 129.609 118.775 129.301C118.969 128.993 119.23 128.763 119.556 128.61C119.882 128.458 120.243 128.381 120.641 128.381C120.922 128.381 121.172 128.404 121.39 128.449C121.609 128.493 121.77 128.534 121.875 128.57L121.552 129.826C121.483 129.805 121.396 129.784 121.292 129.763C121.187 129.739 121.07 129.727 120.942 129.727C120.64 129.727 120.426 129.8 120.3 129.947C120.178 130.091 120.116 130.297 120.116 130.566V138H118.488ZM122.815 138V131.109H124.439V138H122.815ZM123.631 130.131C123.374 130.131 123.153 130.046 122.967 129.875C122.782 129.702 122.689 129.494 122.689 129.252C122.689 129.006 122.782 128.799 122.967 128.628C123.153 128.455 123.374 128.368 123.631 128.368C123.892 128.368 124.113 128.455 124.295 128.628C124.481 128.799 124.573 129.006 124.573 129.252C124.573 129.494 124.481 129.702 124.295 129.875C124.113 130.046 123.892 130.131 123.631 130.131ZM129.115 138.135C128.427 138.135 127.836 137.984 127.343 137.681C126.852 137.379 126.474 136.962 126.208 136.43C125.944 135.894 125.813 135.278 125.813 134.581C125.813 133.882 125.947 133.264 126.217 132.729C126.486 132.19 126.866 131.771 127.356 131.472C127.85 131.17 128.433 131.019 129.106 131.019C129.665 131.019 130.16 131.122 130.591 131.329C131.024 131.532 131.37 131.821 131.627 132.195C131.884 132.566 132.031 132.999 132.067 133.496H130.515C130.452 133.164 130.302 132.887 130.066 132.666C129.833 132.441 129.52 132.329 129.128 132.329C128.796 132.329 128.505 132.419 128.253 132.598C128.002 132.775 127.806 133.029 127.666 133.361C127.528 133.693 127.459 134.091 127.459 134.554C127.459 135.024 127.528 135.428 127.666 135.766C127.803 136.101 127.996 136.359 128.244 136.542C128.496 136.721 128.79 136.811 129.128 136.811C129.368 136.811 129.581 136.766 129.77 136.677C129.961 136.584 130.121 136.451 130.25 136.277C130.378 136.104 130.467 135.893 130.515 135.645H132.067C132.028 136.132 131.884 136.564 131.636 136.941C131.388 137.315 131.05 137.608 130.622 137.821C130.194 138.03 129.692 138.135 129.115 138.135Z\" fill=\"#101828\"/>\r\n <g clip-path=\"url(#clip6_3784_14918)\">\r\n <path d=\"M143.85 135.872V134M143.85 132.129H143.855M148.529 134C148.529 136.585 146.434 138.679 143.85 138.679C141.266 138.679 139.171 136.585 139.171 134C139.171 131.416 141.266 129.321 143.85 129.321C146.434 129.321 148.529 131.416 148.529 134Z\" stroke=\"#98A2B3\" stroke-width=\"1.40372\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <path d=\"M4.24449 160.671C4.24449 157.764 6.60124 155.407 9.50845 155.407H256.915V217.972H9.50846C6.60125 217.972 4.24449 215.615 4.24449 212.708V160.671Z\" fill=\"white\"/>\r\n <path d=\"M4.24449 160.671C4.24449 157.764 6.60124 155.407 9.50845 155.407H256.915V217.972H9.50846C6.60125 217.972 4.24449 215.615 4.24449 212.708V160.671Z\" stroke=\"#F2F4F7\" stroke-width=\"0.701862\"/>\r\n <path d=\"M20.4712 183.454C19.6737 183.454 18.9598 183.304 18.3298 183.005C17.6997 182.702 17.1992 182.287 16.8283 181.761C16.4615 181.234 16.2661 180.632 16.2421 179.954H18.3956C18.4354 180.457 18.6528 180.868 19.0476 181.187C19.4424 181.502 19.9169 181.659 20.4712 181.659C20.9059 181.659 21.2927 181.559 21.6317 181.36C21.9707 181.161 22.2379 180.883 22.4333 180.529C22.6287 180.174 22.7244 179.769 22.7204 179.314C22.7244 178.852 22.6267 178.441 22.4273 178.082C22.2279 177.723 21.9547 177.442 21.6078 177.239C21.2608 177.031 20.8621 176.928 20.4114 176.928C20.0445 176.924 19.6836 176.991 19.3287 177.131C18.9738 177.27 18.6927 177.454 18.4853 177.681L16.4814 177.352L17.1214 171.035H24.2278V172.89H18.9579L18.6049 176.138H18.6767C18.904 175.871 19.225 175.649 19.6398 175.474C20.0545 175.294 20.5091 175.205 21.0036 175.205C21.7454 175.205 22.4073 175.38 22.9896 175.731C23.5718 176.078 24.0304 176.557 24.3654 177.167C24.7004 177.777 24.8678 178.475 24.8678 179.26C24.8678 180.07 24.6804 180.792 24.3056 181.426C23.9347 182.056 23.4183 182.552 22.7563 182.915C22.0983 183.274 21.3366 183.454 20.4712 183.454ZM29.0267 181.611L28.9489 182.269C28.8931 182.772 28.7934 183.282 28.6498 183.801C28.5103 184.323 28.3627 184.804 28.2072 185.242C28.0516 185.681 27.926 186.026 27.8303 186.277H26.3708C26.4266 186.034 26.5024 185.703 26.5981 185.284C26.6978 184.865 26.7935 184.395 26.8852 183.872C26.9769 183.35 27.0387 182.82 27.0706 182.281L27.1125 181.611H29.0267ZM31.207 181.013V179.248L36.4052 171.035H37.8767V173.548H36.9794L33.4801 179.093V179.189H40.736V181.013H31.207ZM37.0512 183.286V180.475L37.0752 179.685V171.035H39.1688V183.286H37.0512ZM47.0019 183.454C46.1126 183.454 45.323 183.304 44.6331 183.005C43.9472 182.706 43.4089 182.297 43.0181 181.779C42.6312 181.256 42.4398 180.664 42.4438 180.002C42.4398 179.488 42.5515 179.015 42.7788 178.584C43.0061 178.154 43.3132 177.795 43.7 177.508C44.0908 177.217 44.5255 177.031 45.004 176.951V176.868C44.3739 176.728 43.8635 176.407 43.4727 175.905C43.0858 175.398 42.8944 174.814 42.8984 174.152C42.8944 173.522 43.0699 172.96 43.4248 172.465C43.7797 171.971 44.2662 171.582 44.8844 171.299C45.5025 171.012 46.2083 170.868 47.0019 170.868C47.7875 170.868 48.4874 171.012 49.1015 171.299C49.7196 171.582 50.2062 171.971 50.5611 172.465C50.92 172.96 51.0994 173.522 51.0994 174.152C51.0994 174.814 50.902 175.398 50.5072 175.905C50.1164 176.407 49.612 176.728 48.9938 176.868V176.951C49.4724 177.031 49.9031 177.217 50.2859 177.508C50.6727 177.795 50.9798 178.154 51.2071 178.584C51.4384 179.015 51.554 179.488 51.554 180.002C51.554 180.664 51.3586 181.256 50.9678 181.779C50.577 182.297 50.0387 182.706 49.3528 183.005C48.6708 183.304 47.8872 183.454 47.0019 183.454ZM47.0019 181.743C47.4605 181.743 47.8593 181.665 48.1983 181.51C48.5372 181.35 48.8004 181.127 48.9879 180.84C49.1753 180.552 49.271 180.221 49.275 179.847C49.271 179.456 49.1693 179.111 48.9699 178.812C48.7745 178.509 48.5053 178.271 48.1624 178.1C47.8234 177.928 47.4366 177.843 47.0019 177.843C46.5633 177.843 46.1724 177.928 45.8295 178.1C45.4865 178.271 45.2154 178.509 45.016 178.812C44.8206 179.111 44.7249 179.456 44.7288 179.847C44.7249 180.221 44.8166 180.552 45.004 180.84C45.1914 181.123 45.4546 181.344 45.7936 181.504C46.1366 181.663 46.5393 181.743 47.0019 181.743ZM47.0019 176.162C47.3768 176.162 47.7078 176.086 47.9949 175.935C48.286 175.783 48.5153 175.572 48.6828 175.3C48.8503 175.029 48.936 174.716 48.94 174.361C48.936 174.01 48.8523 173.703 48.6888 173.44C48.5253 173.173 48.298 172.968 48.0069 172.824C47.7157 172.676 47.3808 172.603 47.0019 172.603C46.6151 172.603 46.2741 172.676 45.979 172.824C45.6879 172.968 45.4606 173.173 45.2971 173.44C45.1376 173.703 45.0598 174.01 45.0638 174.361C45.0598 174.716 45.1396 175.029 45.3031 175.3C45.4706 175.568 45.6999 175.779 45.991 175.935C46.2861 176.086 46.6231 176.162 47.0019 176.162ZM57.8753 183.454C56.986 183.454 56.1964 183.304 55.5065 183.005C54.8206 182.706 54.2822 182.297 53.8914 181.779C53.5046 181.256 53.3132 180.664 53.3172 180.002C53.3132 179.488 53.4248 179.015 53.6522 178.584C53.8795 178.154 54.1865 177.795 54.5733 177.508C54.9642 177.217 55.3988 177.031 55.8774 176.951V176.868C55.2473 176.728 54.7368 176.407 54.346 175.905C53.9592 175.398 53.7678 174.814 53.7718 174.152C53.7678 173.522 53.9433 172.96 54.2982 172.465C54.6531 171.971 55.1396 171.582 55.7577 171.299C56.3759 171.012 57.0817 170.868 57.8753 170.868C58.6609 170.868 59.3608 171.012 59.9749 171.299C60.593 171.582 61.0795 171.971 61.4344 172.465C61.7933 172.96 61.9728 173.522 61.9728 174.152C61.9728 174.814 61.7754 175.398 61.3806 175.905C60.9898 176.407 60.4853 176.728 59.8672 176.868V176.951C60.3458 177.031 60.7764 177.217 61.1593 177.508C61.5461 177.795 61.8532 178.154 62.0805 178.584C62.3118 179.015 62.4274 179.488 62.4274 180.002C62.4274 180.664 62.232 181.256 61.8412 181.779C61.4504 182.297 60.912 182.706 60.2261 183.005C59.5442 183.304 58.7606 183.454 57.8753 183.454ZM57.8753 181.743C58.3339 181.743 58.7327 181.665 59.0716 181.51C59.4106 181.35 59.6738 181.127 59.8612 180.84C60.0487 180.552 60.1444 180.221 60.1484 179.847C60.1444 179.456 60.0427 179.111 59.8433 178.812C59.6479 178.509 59.3787 178.271 59.0358 178.1C58.6968 177.928 58.31 177.843 57.8753 177.843C57.4366 177.843 57.0458 177.928 56.7029 178.1C56.3599 178.271 56.0887 178.509 55.8893 178.812C55.6939 179.111 55.5982 179.456 55.6022 179.847C55.5982 180.221 55.6899 180.552 55.8774 180.84C56.0648 181.123 56.328 181.344 56.667 181.504C57.0099 181.663 57.4127 181.743 57.8753 181.743ZM57.8753 176.162C58.2501 176.162 58.5811 176.086 58.8683 175.935C59.1594 175.783 59.3887 175.572 59.5562 175.3C59.7237 175.029 59.8094 174.716 59.8134 174.361C59.8094 174.01 59.7256 173.703 59.5621 173.44C59.3986 173.173 59.1713 172.968 58.8802 172.824C58.5891 172.676 58.2541 172.603 57.8753 172.603C57.4885 172.603 57.1475 172.676 56.8524 172.824C56.5613 172.968 56.334 173.173 56.1705 173.44C56.011 173.703 55.9332 174.01 55.9372 174.361C55.9332 174.716 56.013 175.029 56.1765 175.3C56.344 175.568 56.5733 175.779 56.8644 175.935C57.1595 176.086 57.4964 176.162 57.8753 176.162Z\" fill=\"#101828\"/>\r\n <path d=\"M16.5123 203.094H15.3678L17.9395 195.948H19.1852L21.7568 203.094H20.6123L18.592 197.246H18.5361L16.5123 203.094ZM16.7042 200.295H20.4169V201.203H16.7042V200.295ZM26.6184 197.734L24.6748 203.094H23.5582L21.6111 197.734H22.7312L24.0886 201.859H24.1444L25.4983 197.734H26.6184ZM29.6637 205.215C29.238 205.215 28.8716 205.159 28.5646 205.048C28.2598 204.936 28.0109 204.788 27.8179 204.605C27.6248 204.421 27.4806 204.22 27.3852 204.001L28.2819 203.631C28.3448 203.733 28.4285 203.842 28.5332 203.956C28.6402 204.072 28.7844 204.171 28.9659 204.252C29.1496 204.334 29.3858 204.374 29.6742 204.374C30.0697 204.374 30.3965 204.278 30.6547 204.085C30.9129 203.894 31.042 203.589 31.042 203.171V202.117H30.9757C30.9129 202.231 30.8222 202.357 30.7036 202.497C30.5873 202.637 30.4267 202.758 30.222 202.86C30.0173 202.962 29.751 203.013 29.423 203.013C28.9996 203.013 28.6181 202.915 28.2785 202.717C27.9412 202.517 27.6736 202.223 27.4759 201.834C27.2805 201.443 27.1828 200.963 27.1828 200.393C27.1828 199.823 27.2793 199.335 27.4724 198.927C27.6678 198.52 27.9353 198.209 28.275 197.992C28.6146 197.774 28.9996 197.664 29.4299 197.664C29.7626 197.664 30.0313 197.72 30.236 197.832C30.4407 197.941 30.6001 198.069 30.714 198.216C30.8303 198.362 30.9199 198.491 30.9827 198.603H31.0595V197.734H32.0819V203.212C32.0819 203.673 31.9749 204.051 31.7608 204.346C31.5468 204.642 31.2572 204.861 30.892 205.002C30.5291 205.144 30.1197 205.215 29.6637 205.215ZM29.6533 202.148C29.9534 202.148 30.2069 202.078 30.414 201.939C30.6233 201.797 30.7815 201.594 30.8885 201.332C30.9978 201.066 31.0525 200.749 31.0525 200.379C31.0525 200.018 30.999 199.701 30.892 199.426C30.785 199.152 30.628 198.938 30.4209 198.784C30.2139 198.629 29.958 198.551 29.6533 198.551C29.3392 198.551 29.0775 198.632 28.8682 198.795C28.6588 198.955 28.5006 199.174 28.3936 199.451C28.2889 199.728 28.2366 200.037 28.2366 200.379C28.2366 200.73 28.2901 201.039 28.3971 201.304C28.5041 201.569 28.6623 201.776 28.8716 201.925C29.0833 202.074 29.3439 202.148 29.6533 202.148ZM34.1685 203.16C33.9778 203.16 33.8138 203.093 33.6765 202.958C33.5393 202.82 33.4706 202.655 33.4706 202.462C33.4706 202.271 33.5393 202.109 33.6765 201.974C33.8138 201.836 33.9778 201.768 34.1685 201.768C34.3593 201.768 34.5233 201.836 34.6605 201.974C34.7978 202.109 34.8664 202.271 34.8664 202.462C34.8664 202.59 34.8338 202.708 34.7687 202.815C34.7059 202.919 34.6221 203.003 34.5174 203.066C34.4128 203.129 34.2965 203.16 34.1685 203.16ZM38.8329 203.094V195.948H43.2644V196.876H39.9111V199.053H42.9469V199.978H39.9111V203.094H38.8329ZM46.3708 203.202C45.8684 203.202 45.4299 203.087 45.0553 202.856C44.6808 202.626 44.39 202.304 44.183 201.89C43.976 201.476 43.8724 200.992 43.8724 200.438C43.8724 199.882 43.976 199.396 44.183 198.98C44.39 198.563 44.6808 198.24 45.0553 198.01C45.4299 197.779 45.8684 197.664 46.3708 197.664C46.8733 197.664 47.3118 197.779 47.6863 198.01C48.0609 198.24 48.3516 198.563 48.5587 198.98C48.7657 199.396 48.8692 199.882 48.8692 200.438C48.8692 200.992 48.7657 201.476 48.5587 201.89C48.3516 202.304 48.0609 202.626 47.6863 202.856C47.3118 203.087 46.8733 203.202 46.3708 203.202ZM46.3743 202.326C46.7 202.326 46.9698 202.24 47.1839 202.068C47.3979 201.896 47.5561 201.667 47.6584 201.38C47.7631 201.094 47.8154 200.779 47.8154 200.435C47.8154 200.093 47.7631 199.779 47.6584 199.493C47.5561 199.204 47.3979 198.973 47.1839 198.798C46.9698 198.624 46.7 198.537 46.3743 198.537C46.0463 198.537 45.7742 198.624 45.5578 198.798C45.3438 198.973 45.1844 199.204 45.0798 199.493C44.9774 199.779 44.9262 200.093 44.9262 200.435C44.9262 200.779 44.9774 201.094 45.0798 201.38C45.1844 201.667 45.3438 201.896 45.5578 202.068C45.7742 202.24 46.0463 202.326 46.3743 202.326ZM52.2914 203.202C51.789 203.202 51.3505 203.087 50.9759 202.856C50.6014 202.626 50.3106 202.304 50.1036 201.89C49.8966 201.476 49.793 200.992 49.793 200.438C49.793 199.882 49.8966 199.396 50.1036 198.98C50.3106 198.563 50.6014 198.24 50.9759 198.01C51.3505 197.779 51.789 197.664 52.2914 197.664C52.7939 197.664 53.2324 197.779 53.6069 198.01C53.9814 198.24 54.2722 198.563 54.4793 198.98C54.6863 199.396 54.7898 199.882 54.7898 200.438C54.7898 200.992 54.6863 201.476 54.4793 201.89C54.2722 202.304 53.9814 202.626 53.6069 202.856C53.2324 203.087 52.7939 203.202 52.2914 203.202ZM52.2949 202.326C52.6206 202.326 52.8904 202.24 53.1044 202.068C53.3185 201.896 53.4766 201.667 53.579 201.38C53.6837 201.094 53.736 200.779 53.736 200.435C53.736 200.093 53.6837 199.779 53.579 199.493C53.4766 199.204 53.3185 198.973 53.1044 198.798C52.8904 198.624 52.6206 198.537 52.2949 198.537C51.9669 198.537 51.6947 198.624 51.4784 198.798C51.2644 198.973 51.105 199.204 51.0004 199.493C50.898 199.779 50.8468 200.093 50.8468 200.435C50.8468 200.779 50.898 201.094 51.0004 201.38C51.105 201.667 51.2644 201.896 51.4784 202.068C51.6947 202.24 51.9669 202.326 52.2949 202.326ZM58.4563 197.734V198.572H55.5287V197.734H58.4563ZM56.3138 196.45H57.3571V201.52C57.3571 201.722 57.3874 201.875 57.4478 201.977C57.5083 202.077 57.5862 202.146 57.6816 202.183C57.7793 202.218 57.8852 202.235 57.9992 202.235C58.0829 202.235 58.1562 202.23 58.219 202.218C58.2818 202.206 58.3306 202.197 58.3655 202.19L58.554 203.052C58.4935 203.075 58.4074 203.098 58.2958 203.122C58.1841 203.147 58.0445 203.161 57.877 203.164C57.6025 203.168 57.3466 203.119 57.1094 203.017C56.8721 202.915 56.6802 202.756 56.5336 202.542C56.3871 202.328 56.3138 202.06 56.3138 201.736V196.45ZM62.1611 197.734V198.572H59.1323V197.734H62.1611ZM59.9628 203.094V197.113C59.9628 196.778 60.0361 196.5 60.1826 196.279C60.3292 196.056 60.5234 195.889 60.7654 195.78C61.0073 195.668 61.2702 195.613 61.554 195.613C61.7633 195.613 61.9424 195.63 62.0913 195.665C62.2402 195.697 62.3507 195.728 62.4228 195.756L62.1786 196.6C62.1297 196.586 62.0669 196.57 61.9901 196.551C61.9134 196.53 61.8203 196.52 61.711 196.52C61.4574 196.52 61.276 196.583 61.1666 196.708C61.0596 196.834 61.0061 197.015 61.0061 197.253V203.094H59.9628ZM64.6342 203.212C64.2946 203.212 63.9875 203.15 63.713 203.024C63.4385 202.896 63.221 202.711 63.0605 202.469C62.9023 202.227 62.8232 201.931 62.8232 201.579C62.8232 201.277 62.8814 201.028 62.9977 200.833C63.114 200.637 63.271 200.483 63.4687 200.369C63.6665 200.255 63.8875 200.168 64.1317 200.11C64.376 200.052 64.6249 200.008 64.8784 199.978C65.1995 199.941 65.46 199.91 65.6601 199.887C65.8601 199.861 66.0055 199.821 66.0962 199.765C66.187 199.709 66.2323 199.618 66.2323 199.493V199.468C66.2323 199.164 66.1463 198.927 65.9741 198.76C65.8043 198.592 65.5507 198.509 65.2134 198.509C64.8622 198.509 64.5853 198.587 64.383 198.743C64.1829 198.896 64.0445 199.067 63.9677 199.255L62.9872 199.032C63.1035 198.706 63.2733 198.444 63.4967 198.244C63.7223 198.041 63.9817 197.895 64.2748 197.804C64.5679 197.711 64.8761 197.664 65.1995 197.664C65.4135 197.664 65.6403 197.69 65.8799 197.741C66.1218 197.79 66.3475 197.881 66.5568 198.013C66.7685 198.146 66.9418 198.335 67.0768 198.582C67.2117 198.826 67.2791 199.144 67.2791 199.535V203.094H66.2602V202.361H66.2184C66.1509 202.496 66.0497 202.629 65.9148 202.759C65.7799 202.889 65.6066 202.997 65.3949 203.083C65.1832 203.169 64.9296 203.212 64.6342 203.212ZM64.861 202.375C65.1495 202.375 65.396 202.318 65.6007 202.204C65.8078 202.09 65.9648 201.941 66.0718 201.757C66.1811 201.571 66.2358 201.372 66.2358 201.161V200.47C66.1986 200.507 66.1265 200.542 66.0195 200.574C65.9148 200.605 65.795 200.631 65.6601 200.655C65.5251 200.676 65.3937 200.695 65.2658 200.714C65.1378 200.73 65.0308 200.744 64.9447 200.756C64.7424 200.781 64.5574 200.824 64.3899 200.885C64.2248 200.945 64.0922 201.033 63.9921 201.147C63.8944 201.258 63.8456 201.407 63.8456 201.593C63.8456 201.852 63.941 202.047 64.1317 202.18C64.3225 202.31 64.5656 202.375 64.861 202.375ZM69.7121 195.948V203.094H68.6688V195.948H69.7121ZM72.159 195.948V203.094H71.1157V195.948H72.159Z\" fill=\"#667085\"/>\r\n <g style=\"mix-blend-mode:multiply\">\r\n <rect x=\"207.98\" y=\"178.786\" width=\"38.0559\" height=\"15.8074\" rx=\"7.90372\" fill=\"#ECFDF3\"/>\r\n <path d=\"M216.402 189.146V184.233M216.402 184.233L213.946 186.69M216.402 184.233L218.859 186.69\" stroke=\"#12B76A\" stroke-width=\"1.05279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M226.642 183.065V189.19H225.715V183.992H225.679L224.213 184.949V184.064L225.742 183.065H226.642ZM230.431 189.274C230.021 189.274 229.654 189.203 229.331 189.061C229.01 188.92 228.756 188.723 228.568 188.472C228.383 188.219 228.283 187.926 228.269 187.593H229.208C229.22 187.774 229.281 187.932 229.391 188.065C229.502 188.197 229.648 188.299 229.827 188.37C230.007 188.442 230.206 188.478 230.425 188.478C230.667 188.478 230.88 188.436 231.066 188.352C231.253 188.269 231.399 188.152 231.505 188.003C231.611 187.851 231.664 187.677 231.664 187.479C231.664 187.274 231.611 187.093 231.505 186.938C231.401 186.78 231.249 186.657 231.048 186.567C230.848 186.477 230.607 186.432 230.324 186.432H229.806V185.679H230.324C230.551 185.679 230.75 185.638 230.922 185.556C231.095 185.474 231.231 185.361 231.329 185.215C231.426 185.068 231.475 184.895 231.475 184.698C231.475 184.508 231.432 184.344 231.347 184.204C231.263 184.063 231.143 183.952 230.988 183.872C230.834 183.792 230.653 183.753 230.443 183.753C230.244 183.753 230.058 183.789 229.884 183.863C229.713 183.935 229.573 184.039 229.465 184.174C229.358 184.308 229.3 184.468 229.292 184.656H228.398C228.408 184.325 228.505 184.034 228.691 183.782C228.878 183.531 229.125 183.335 229.432 183.193C229.74 183.052 230.081 182.981 230.455 182.981C230.848 182.981 231.187 183.058 231.472 183.211C231.759 183.363 231.981 183.565 232.136 183.818C232.294 184.072 232.372 184.349 232.37 184.65C232.372 184.993 232.276 185.284 232.082 185.523C231.891 185.762 231.636 185.923 231.317 186.005V186.052C231.724 186.114 232.039 186.276 232.262 186.537C232.487 186.798 232.599 187.122 232.597 187.509C232.599 187.846 232.505 188.148 232.316 188.415C232.128 188.682 231.872 188.893 231.547 189.046C231.222 189.198 230.85 189.274 230.431 189.274ZM236.925 188.041V187.718C236.925 187.487 236.973 187.276 237.068 187.084C237.166 186.891 237.307 186.736 237.493 186.621C237.68 186.503 237.907 186.444 238.172 186.444C238.443 186.444 238.67 186.502 238.854 186.618C239.037 186.733 239.176 186.888 239.27 187.081C239.365 187.275 239.413 187.487 239.413 187.718V188.041C239.413 188.273 239.365 188.485 239.27 188.678C239.174 188.87 239.033 189.024 238.848 189.142C238.664 189.258 238.439 189.316 238.172 189.316C237.903 189.316 237.675 189.258 237.49 189.142C237.304 189.024 237.164 188.87 237.068 188.678C236.973 188.485 236.925 188.273 236.925 188.041ZM237.622 187.718V188.041C237.622 188.213 237.662 188.368 237.744 188.508C237.826 188.648 237.968 188.717 238.172 188.717C238.373 188.717 238.514 188.648 238.594 188.508C238.673 188.368 238.713 188.213 238.713 188.041V187.718C238.713 187.547 238.674 187.391 238.597 187.252C238.521 187.112 238.379 187.042 238.172 187.042C237.972 187.042 237.831 187.112 237.747 187.252C237.663 187.391 237.622 187.547 237.622 187.718ZM233.844 184.536V184.213C233.844 183.982 233.892 183.769 233.988 183.576C234.085 183.383 234.227 183.228 234.412 183.112C234.6 182.997 234.826 182.939 235.091 182.939C235.362 182.939 235.59 182.997 235.773 183.112C235.957 183.228 236.095 183.383 236.189 183.576C236.283 183.769 236.329 183.982 236.329 184.213V184.536C236.329 184.767 236.282 184.98 236.186 185.173C236.092 185.365 235.953 185.519 235.767 185.637C235.584 185.752 235.358 185.81 235.091 185.81C234.82 185.81 234.592 185.752 234.406 185.637C234.223 185.519 234.083 185.365 233.988 185.173C233.892 184.98 233.844 184.767 233.844 184.536ZM234.544 184.213V184.536C234.544 184.708 234.584 184.863 234.664 185.003C234.745 185.142 234.888 185.212 235.091 185.212C235.291 185.212 235.43 185.142 235.51 185.003C235.592 184.863 235.633 184.708 235.633 184.536V184.213C235.633 184.042 235.594 183.886 235.516 183.747C235.438 183.607 235.297 183.537 235.091 183.537C234.892 183.537 234.75 183.607 234.667 183.747C234.585 183.886 234.544 184.042 234.544 184.213ZM234.128 189.19L238.339 183.065H239.054L234.843 189.19H234.128Z\" fill=\"#027A48\"/>\r\n </g>\r\n </g>\r\n </g>\r\n </g>\r\n <g filter=\"url(#filter4_ddd_3784_14918)\">\r\n <g clip-path=\"url(#clip7_3784_14918)\">\r\n <rect x=\"32.5889\" y=\"406.24\" width=\"144.322\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip8_3784_14918)\">\r\n <mask id=\"mask0_3784_14918\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"130\" y=\"400\" width=\"53\" height=\"53\">\r\n <path d=\"M182.869 400.348H130.686V452.097H182.869V400.348Z\" fill=\"white\"/>\r\n </mask>\r\n <g mask=\"url(#mask0_3784_14918)\">\r\n <path d=\"M182.868 443.472C182.868 448.235 178.974 452.097 174.171 452.097C169.367 452.097 165.474 448.235 165.474 443.472C165.474 438.709 169.367 434.848 174.171 434.848C178.974 434.848 182.868 438.709 182.868 443.472Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M171.997 422.988C171.997 427.156 168.59 430.535 164.387 430.535C160.184 430.535 156.777 427.156 156.777 422.988C156.777 418.82 160.184 415.441 164.387 415.441C168.59 415.441 171.997 418.82 171.997 422.988Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M156.777 439.159C156.777 446.304 150.936 452.097 143.731 452.097C136.527 452.097 130.686 446.304 130.686 439.159C130.686 432.014 136.527 426.222 143.731 426.222C150.936 426.222 156.777 432.014 156.777 439.159Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M152.429 411.129C152.429 417.083 147.562 421.91 141.557 421.91C135.553 421.91 130.686 417.083 130.686 411.129C130.686 405.175 135.553 400.348 141.557 400.348C147.562 400.348 152.429 405.175 152.429 411.129Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M182.872 406.816C182.872 410.389 179.951 413.285 176.348 413.285C172.746 413.285 169.826 410.389 169.826 406.816C169.826 403.244 172.746 400.348 176.348 400.348C179.951 400.348 182.872 403.244 182.872 406.816Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M180.695 428.378C180.695 429.569 179.722 430.534 178.521 430.534C177.32 430.534 176.347 429.569 176.347 428.378C176.347 427.187 177.32 426.222 178.521 426.222C179.722 426.222 180.695 427.187 180.695 428.378Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M164.388 407.894C164.388 409.681 162.927 411.129 161.126 411.129C159.325 411.129 157.865 409.681 157.865 407.894C157.865 406.108 159.325 404.66 161.126 404.66C162.927 404.66 164.388 406.108 164.388 407.894Z\" fill=\"#F1FAFF\"/>\r\n </g>\r\n </g>\r\n <path d=\"M53.5765 425.661C53.3446 425.76 53.0961 425.811 52.845 425.811C52.3381 425.811 51.852 425.604 51.4935 425.234C51.135 424.865 50.9337 424.364 50.9337 423.842C50.9337 423.32 51.135 422.819 51.4935 422.449C51.852 422.08 52.3381 421.873 52.845 421.873C53.0961 421.873 53.3446 421.923 53.5765 422.022C53.8084 422.121 54.0191 422.266 54.1966 422.449C54.3741 422.632 54.5149 422.849 54.6109 423.088C54.707 423.327 54.7564 423.583 54.7564 423.842C54.7564 424.1 54.707 424.357 54.6109 424.595C54.5149 424.834 54.3741 425.051 54.1966 425.234C54.0191 425.417 53.8084 425.562 53.5765 425.661Z\" fill=\"#009EF6\"/>\r\n <path d=\"M55.7285 430.381C55.7077 430.16 55.6837 429.948 55.6564 429.75H55.3025V441.284C55.3022 441.502 55.2202 441.711 55.0736 441.868C54.9271 442.025 54.7274 442.118 54.5162 442.126C54.305 442.135 54.0987 442.059 53.9404 441.915C53.7822 441.771 53.6842 441.569 53.6669 441.352L53.2027 435.376H52.4873L52.0232 441.352C52.0059 441.569 51.9079 441.771 51.7497 441.915C51.5914 442.059 51.3851 442.135 51.1739 442.126C50.9627 442.118 50.763 442.025 50.6164 441.868C50.4699 441.711 50.3879 441.502 50.3876 441.284V429.75H50.0331C50.0058 429.948 49.9818 430.16 49.9616 430.381C49.8415 431.644 49.8414 433.013 49.8414 433.407C49.8414 433.631 49.7551 433.846 49.6015 434.004C49.4479 434.162 49.2395 434.251 49.0223 434.251C48.805 434.251 48.5967 434.162 48.4431 434.004C48.2894 433.846 48.2031 433.631 48.2031 433.407V433.403C48.2031 433.005 48.2031 431.567 48.3298 430.217C48.3932 429.548 48.492 428.85 48.6564 428.301C48.7361 428.031 48.8497 427.737 49.0223 427.494C49.1949 427.249 49.5187 426.936 50.0107 426.936H55.6788C56.1703 426.936 56.4941 427.249 56.6673 427.493C56.8393 427.737 56.9529 428.031 57.0332 428.301C57.1975 428.85 57.2964 429.548 57.3592 430.217C57.487 431.567 57.487 433.005 57.487 433.403V433.407C57.487 433.631 57.4007 433.846 57.247 434.004C57.0934 434.162 56.8851 434.251 56.6678 434.251C56.4505 434.251 56.2422 434.162 56.0886 434.004C55.9349 433.846 55.8486 433.631 55.8486 433.407C55.8486 433.013 55.8486 431.644 55.7285 430.381Z\" fill=\"#009EF6\"/>\r\n <path d=\"M76.4285 439.858C75.7236 439.853 75.0355 439.731 74.3641 439.491C73.6928 439.246 73.0886 438.851 72.5515 438.304C72.0144 437.752 71.5876 437.021 71.2711 436.11C70.9546 435.194 70.7988 434.06 70.8036 432.708C70.8036 431.447 70.9378 430.322 71.2064 429.334C71.4749 428.346 71.8609 427.512 72.3645 426.831C72.868 426.145 73.4746 425.623 74.1843 425.263C74.8988 424.903 75.6972 424.723 76.5796 424.723C77.5051 424.723 78.3251 424.906 79.0396 425.27C79.7589 425.635 80.3392 426.133 80.7803 426.766C81.2215 427.394 81.4949 428.104 81.6004 428.895H78.9749C78.8406 428.33 78.5649 427.879 78.1477 427.543C77.7353 427.203 77.2126 427.032 76.5796 427.032C75.5582 427.032 74.7717 427.476 74.2203 428.363C73.6736 429.25 73.3979 430.468 73.3931 432.017H73.4938C73.7287 431.595 74.0333 431.233 74.4073 430.931C74.7813 430.629 75.2033 430.396 75.6733 430.233C76.148 430.066 76.6491 429.982 77.1766 429.982C78.0398 429.982 78.8142 430.188 79.5 430.6C80.1905 431.013 80.7372 431.581 81.14 432.305C81.5428 433.024 81.7418 433.849 81.737 434.779C81.7418 435.748 81.5212 436.618 81.0753 437.39C80.6293 438.158 80.0083 438.762 79.2123 439.203C78.4162 439.644 77.4883 439.862 76.4285 439.858ZM76.4142 437.7C76.9369 437.7 77.4044 437.573 77.8168 437.319C78.2292 437.064 78.5553 436.721 78.7951 436.29C79.0348 435.858 79.1523 435.374 79.1475 434.837C79.1523 434.309 79.0372 433.832 78.8023 433.405C78.5721 432.979 78.2532 432.641 77.8456 432.391C77.438 432.142 76.9728 432.017 76.4501 432.017C76.0617 432.017 75.6996 432.092 75.364 432.24C75.0283 432.389 74.7358 432.595 74.4864 432.859C74.2371 433.118 74.0404 433.42 73.8966 433.765C73.7575 434.106 73.6856 434.47 73.6808 434.858C73.6856 435.372 73.8055 435.844 74.0404 436.276C74.2754 436.707 74.5991 437.052 75.0115 437.311C75.4239 437.57 75.8915 437.7 76.4142 437.7ZM84.7078 439.656L90.9729 427.255V427.155H83.7007V424.925H93.735V427.205L87.4771 439.656H84.7078ZM103.933 436.894V436.117C103.933 435.547 104.053 435.022 104.293 434.542C104.537 434.062 104.892 433.676 105.357 433.384C105.822 433.091 106.386 432.945 107.048 432.945C107.729 432.945 108.299 433.091 108.76 433.384C109.22 433.672 109.568 434.055 109.803 434.535C110.042 435.014 110.162 435.542 110.162 436.117V436.894C110.162 437.465 110.042 437.99 109.803 438.469C109.563 438.949 109.21 439.335 108.745 439.627C108.285 439.92 107.719 440.066 107.048 440.066C106.376 440.066 105.808 439.92 105.343 439.627C104.878 439.335 104.525 438.949 104.285 438.469C104.05 437.99 103.933 437.465 103.933 436.894ZM105.81 436.117V436.894C105.81 437.273 105.902 437.621 106.084 437.937C106.266 438.254 106.587 438.412 107.048 438.412C107.513 438.412 107.832 438.256 108.004 437.944C108.182 437.628 108.27 437.278 108.27 436.894V436.117C108.27 435.734 108.186 435.384 108.019 435.067C107.851 434.746 107.527 434.585 107.048 434.585C106.597 434.585 106.278 434.746 106.091 435.067C105.904 435.384 105.81 435.734 105.81 436.117ZM96.445 428.464V427.687C96.445 427.112 96.5673 426.584 96.8119 426.105C97.0564 425.625 97.4113 425.241 97.8764 424.954C98.3416 424.661 98.9051 424.515 99.5668 424.515C100.243 424.515 100.811 424.661 101.272 424.954C101.737 425.241 102.087 425.625 102.322 426.105C102.557 426.584 102.674 427.112 102.674 427.687V428.464C102.674 429.039 102.554 429.567 102.315 430.046C102.08 430.521 101.73 430.902 101.264 431.19C100.799 431.478 100.233 431.622 99.5668 431.622C98.8907 431.622 98.32 431.478 97.8549 431.19C97.3945 430.902 97.0444 430.519 96.8047 430.039C96.5649 429.56 96.445 429.034 96.445 428.464ZM98.3368 427.687V428.464C98.3368 428.847 98.4255 429.198 98.6029 429.514C98.7852 429.826 99.1065 429.982 99.5668 429.982C100.027 429.982 100.344 429.826 100.516 429.514C100.694 429.198 100.782 428.847 100.782 428.464V427.687C100.782 427.303 100.699 426.953 100.531 426.637C100.363 426.316 100.042 426.155 99.5668 426.155C99.1113 426.155 98.7924 426.316 98.6101 426.637C98.4279 426.958 98.3368 427.308 98.3368 427.687ZM97.265 439.656L107.393 424.925H109.191L99.0633 439.656H97.265Z\" fill=\"#344054\"/>\r\n <path d=\"M43.526 454.729H44.8747L47.2197 460.455H47.306L49.6509 454.729H50.9996V462.095H49.9422V456.765H49.8739L47.7016 462.084H46.824L44.6517 456.761H44.5834V462.095H43.526V454.729ZM54.1367 462.217C53.7866 462.217 53.4701 462.152 53.1872 462.023C52.9043 461.891 52.6801 461.7 52.5146 461.451C52.3516 461.202 52.2701 460.896 52.2701 460.534C52.2701 460.222 52.33 459.966 52.4499 459.764C52.5698 459.563 52.7316 459.403 52.9354 459.286C53.1392 459.168 53.367 459.08 53.6188 459.02C53.8705 458.96 54.1271 458.914 54.3884 458.883C54.7193 458.845 54.9879 458.813 55.1941 458.79C55.4003 458.763 55.5501 458.721 55.6436 458.664C55.7371 458.606 55.7839 458.513 55.7839 458.383V458.358C55.7839 458.044 55.6952 457.8 55.5177 457.628C55.3427 457.455 55.0814 457.369 54.7337 457.369C54.3717 457.369 54.0863 457.449 53.8777 457.61C53.6715 457.768 53.5289 457.944 53.4497 458.139L52.4391 457.908C52.559 457.573 52.734 457.302 52.9642 457.096C53.1968 456.887 53.4641 456.736 53.7662 456.642C54.0683 456.546 54.386 456.499 54.7193 456.499C54.9399 456.499 55.1737 456.525 55.4206 456.578C55.67 456.628 55.9026 456.722 56.1184 456.858C56.3366 456.995 56.5152 457.19 56.6542 457.444C56.7933 457.696 56.8628 458.023 56.8628 458.426V462.095H55.8127V461.339H55.7695C55.7 461.479 55.5957 461.615 55.4566 461.749C55.3175 461.884 55.1389 461.995 54.9207 462.084C54.7025 462.173 54.4412 462.217 54.1367 462.217ZM54.3705 461.354C54.6678 461.354 54.9219 461.295 55.1329 461.178C55.3463 461.06 55.5082 460.907 55.6184 460.717C55.7311 460.525 55.7875 460.32 55.7875 460.102V459.39C55.7491 459.428 55.6748 459.464 55.5645 459.498C55.4566 459.529 55.3331 459.557 55.1941 459.581C55.055 459.602 54.9195 459.623 54.7876 459.642C54.6558 459.659 54.5455 459.673 54.4568 459.685C54.2482 459.711 54.0576 459.756 53.8849 459.818C53.7147 459.88 53.578 459.97 53.4749 460.088C53.3742 460.203 53.3239 460.356 53.3239 460.548C53.3239 460.814 53.4222 461.016 53.6188 461.152C53.8154 461.287 54.0659 461.354 54.3705 461.354ZM59.3705 454.729V462.095H58.2952V454.729H59.3705ZM63.1981 462.206C62.6539 462.206 62.1851 462.09 61.7919 461.857C61.4011 461.622 61.099 461.293 60.8856 460.868C60.6746 460.442 60.5691 459.942 60.5691 459.369C60.5691 458.803 60.6746 458.304 60.8856 457.872C61.099 457.441 61.3963 457.104 61.7775 456.862C62.1611 456.62 62.6095 456.499 63.1226 456.499C63.4343 456.499 63.7364 456.55 64.0289 456.653C64.3215 456.756 64.584 456.918 64.8166 457.139C65.0491 457.359 65.2326 457.646 65.3668 457.998C65.5011 458.348 65.5682 458.774 65.5682 459.275V459.656H61.1769V458.851H64.5145C64.5145 458.568 64.4569 458.317 64.3418 458.099C64.2267 457.878 64.0649 457.705 63.8563 457.577C63.6501 457.45 63.4079 457.387 63.1298 457.387C62.8277 457.387 62.5639 457.461 62.3386 457.61C62.1156 457.756 61.9429 457.948 61.8207 458.185C61.7008 458.42 61.6408 458.676 61.6408 458.951V459.581C61.6408 459.95 61.7056 460.264 61.8351 460.523C61.9669 460.782 62.1503 460.98 62.3853 461.116C62.6203 461.251 62.8948 461.318 63.2089 461.318C63.4127 461.318 63.5985 461.289 63.7664 461.232C63.9342 461.172 64.0793 461.083 64.2016 460.965C64.3238 460.848 64.4174 460.703 64.4821 460.53L65.4999 460.714C65.4184 461.013 65.2721 461.276 65.0611 461.501C64.8525 461.724 64.59 461.898 64.2735 462.023C63.9594 462.145 63.6009 462.206 63.1981 462.206ZM69.528 462.095V454.729H72.1535C72.7241 454.729 73.1977 454.827 73.5741 455.024C73.953 455.221 74.2359 455.493 74.4229 455.84C74.6099 456.186 74.7034 456.585 74.7034 457.038C74.7034 457.489 74.6087 457.886 74.4193 458.228C74.2323 458.569 73.9494 458.834 73.5705 459.023C73.1941 459.213 72.7205 459.307 72.1499 459.307H70.161V458.351H72.0492C72.4088 458.351 72.7014 458.299 72.9267 458.196C73.1545 458.093 73.3212 457.943 73.4267 457.747C73.5322 457.55 73.5849 457.314 73.5849 457.038C73.5849 456.76 73.531 456.519 73.4231 456.315C73.3176 456.111 73.1509 455.955 72.9232 455.848C72.6978 455.737 72.4017 455.682 72.0348 455.682H70.6394V462.095H69.528ZM73.1641 458.772L74.984 462.095H73.718L71.9341 458.772H73.1641ZM77.5771 462.217C77.227 462.217 76.9105 462.152 76.6276 462.023C76.3446 461.891 76.1205 461.7 75.955 461.451C75.792 461.202 75.7105 460.896 75.7105 460.534C75.7105 460.222 75.7704 459.966 75.8903 459.764C76.0102 459.563 76.172 459.403 76.3758 459.286C76.5796 459.168 76.8074 459.08 77.0592 459.02C77.3109 458.96 77.5675 458.914 77.8288 458.883C78.1597 458.845 78.4282 458.813 78.6344 458.79C78.8406 458.763 78.9905 458.721 79.084 458.664C79.1775 458.606 79.2243 458.513 79.2243 458.383V458.358C79.2243 458.044 79.1356 457.8 78.9581 457.628C78.7831 457.455 78.5217 457.369 78.1741 457.369C77.812 457.369 77.5267 457.449 77.3181 457.61C77.1119 457.768 76.9692 457.944 76.8901 458.139L75.8795 457.908C75.9994 457.573 76.1744 457.302 76.4046 457.096C76.6372 456.887 76.9045 456.736 77.2066 456.642C77.5087 456.546 77.8264 456.499 78.1597 456.499C78.3803 456.499 78.6141 456.525 78.861 456.578C79.1104 456.628 79.343 456.722 79.5587 456.858C79.7769 456.995 79.9556 457.19 80.0946 457.444C80.2337 457.696 80.3032 458.023 80.3032 458.426V462.095H79.253V461.339H79.2099C79.1404 461.479 79.0361 461.615 78.897 461.749C78.7579 461.884 78.5793 461.995 78.3611 462.084C78.1429 462.173 77.8816 462.217 77.5771 462.217ZM77.8108 461.354C78.1081 461.354 78.3623 461.295 78.5733 461.178C78.7867 461.06 78.9485 460.907 79.0588 460.717C79.1715 460.525 79.2279 460.32 79.2279 460.102V459.39C79.1895 459.428 79.1152 459.464 79.0049 459.498C78.897 459.529 78.7735 459.557 78.6344 459.581C78.4954 459.602 78.3599 459.623 78.228 459.642C78.0962 459.659 77.9859 459.673 77.8972 459.685C77.6886 459.711 77.4979 459.756 77.3253 459.818C77.1551 459.88 77.0184 459.97 76.9153 460.088C76.8146 460.203 76.7642 460.356 76.7642 460.548C76.7642 460.814 76.8626 461.016 77.0592 461.152C77.2558 461.287 77.5063 461.354 77.8108 461.354ZM84.3143 456.57V457.434H81.2968V456.57H84.3143ZM82.106 455.247H83.1814V460.473C83.1814 460.681 83.2125 460.838 83.2749 460.944C83.3372 461.047 83.4175 461.118 83.5158 461.156C83.6165 461.192 83.7256 461.21 83.8431 461.21C83.9294 461.21 84.005 461.204 84.0697 461.192C84.1344 461.18 84.1848 461.17 84.2208 461.163L84.415 462.052C84.3526 462.076 84.2639 462.1 84.1488 462.123C84.0337 462.15 83.8899 462.164 83.7172 462.167C83.4343 462.171 83.1706 462.121 82.926 462.016C82.6814 461.91 82.4836 461.747 82.3326 461.526C82.1815 461.306 82.106 461.029 82.106 460.696V455.247ZM87.8254 462.206C87.2811 462.206 86.8123 462.09 86.4191 461.857C86.0283 461.622 85.7262 461.293 85.5128 460.868C85.3018 460.442 85.1963 459.942 85.1963 459.369C85.1963 458.803 85.3018 458.304 85.5128 457.872C85.7262 457.441 86.0235 457.104 86.4047 456.862C86.7884 456.62 87.2367 456.499 87.7498 456.499C88.0615 456.499 88.3637 456.55 88.6562 456.653C88.9487 456.756 89.2112 456.918 89.4438 457.139C89.6764 457.359 89.8598 457.646 89.9941 457.998C90.1283 458.348 90.1955 458.774 90.1955 459.275V459.656H85.8041V458.851H89.1417C89.1417 458.568 89.0842 458.317 88.9691 458.099C88.854 457.878 88.6921 457.705 88.4835 457.577C88.2773 457.45 88.0352 457.387 87.757 457.387C87.4549 457.387 87.1912 457.461 86.9658 457.61C86.7428 457.756 86.5702 457.948 86.4479 458.185C86.328 458.42 86.2681 458.676 86.2681 458.951V459.581C86.2681 459.95 86.3328 460.264 86.4623 460.523C86.5942 460.782 86.7776 460.98 87.0126 461.116C87.2475 461.251 87.5221 461.318 87.8362 461.318C88.04 461.318 88.2258 461.289 88.3936 461.232C88.5615 461.172 88.7065 461.083 88.8288 460.965C88.9511 460.848 89.0446 460.703 89.1093 460.53L90.1271 460.714C90.0456 461.013 89.8994 461.276 89.6884 461.501C89.4798 461.724 89.2172 461.898 88.9007 462.023C88.5866 462.145 88.2282 462.206 87.8254 462.206Z\" fill=\"#98A2B3\"/>\r\n </g>\r\n <rect x=\"33.0109\" y=\"406.662\" width=\"143.478\" height=\"73.4268\" rx=\"6.32989\" stroke=\"#EAECF0\" stroke-width=\"0.843986\"/>\r\n </g>\r\n <g filter=\"url(#filter5_dd_3784_14918)\">\r\n <g clip-path=\"url(#clip9_3784_14918)\">\r\n <rect x=\"32.5889\" y=\"406.24\" width=\"144.322\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip10_3784_14918)\">\r\n <mask id=\"mask1_3784_14918\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"130\" y=\"400\" width=\"53\" height=\"53\">\r\n <path d=\"M182.869 400.348H130.686V452.097H182.869V400.348Z\" fill=\"white\"/>\r\n </mask>\r\n <g mask=\"url(#mask1_3784_14918)\">\r\n <path d=\"M182.868 443.472C182.868 448.235 178.974 452.097 174.171 452.097C169.367 452.097 165.474 448.235 165.474 443.472C165.474 438.709 169.367 434.848 174.171 434.848C178.974 434.848 182.868 438.709 182.868 443.472Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M171.997 422.988C171.997 427.156 168.59 430.535 164.387 430.535C160.184 430.535 156.777 427.156 156.777 422.988C156.777 418.82 160.184 415.441 164.387 415.441C168.59 415.441 171.997 418.82 171.997 422.988Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M156.777 439.159C156.777 446.304 150.936 452.097 143.731 452.097C136.527 452.097 130.686 446.304 130.686 439.159C130.686 432.014 136.527 426.222 143.731 426.222C150.936 426.222 156.777 432.014 156.777 439.159Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M152.429 411.129C152.429 417.083 147.562 421.91 141.557 421.91C135.553 421.91 130.686 417.083 130.686 411.129C130.686 405.175 135.553 400.348 141.557 400.348C147.562 400.348 152.429 405.175 152.429 411.129Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M182.872 406.816C182.872 410.389 179.951 413.285 176.348 413.285C172.746 413.285 169.826 410.389 169.826 406.816C169.826 403.244 172.746 400.348 176.348 400.348C179.951 400.348 182.872 403.244 182.872 406.816Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M180.695 428.378C180.695 429.569 179.722 430.534 178.521 430.534C177.32 430.534 176.347 429.569 176.347 428.378C176.347 427.187 177.32 426.222 178.521 426.222C179.722 426.222 180.695 427.187 180.695 428.378Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M164.388 407.894C164.388 409.681 162.927 411.129 161.126 411.129C159.325 411.129 157.865 409.681 157.865 407.894C157.865 406.108 159.325 404.66 161.126 404.66C162.927 404.66 164.388 406.108 164.388 407.894Z\" fill=\"#F1FAFF\"/>\r\n </g>\r\n </g>\r\n <path d=\"M53.5765 425.661C53.3446 425.76 53.0961 425.811 52.845 425.811C52.3381 425.811 51.852 425.604 51.4935 425.234C51.135 424.865 50.9337 424.364 50.9337 423.842C50.9337 423.32 51.135 422.819 51.4935 422.449C51.852 422.08 52.3381 421.873 52.845 421.873C53.0961 421.873 53.3446 421.923 53.5765 422.022C53.8084 422.121 54.0191 422.266 54.1966 422.449C54.3741 422.632 54.5149 422.849 54.6109 423.088C54.707 423.327 54.7564 423.583 54.7564 423.842C54.7564 424.1 54.707 424.357 54.6109 424.595C54.5149 424.834 54.3741 425.051 54.1966 425.234C54.0191 425.417 53.8084 425.562 53.5765 425.661Z\" fill=\"#009EF6\"/>\r\n <path d=\"M55.7285 430.381C55.7077 430.16 55.6837 429.948 55.6564 429.75H55.3025V441.284C55.3022 441.502 55.2202 441.711 55.0736 441.868C54.9271 442.025 54.7274 442.118 54.5162 442.126C54.305 442.135 54.0987 442.059 53.9404 441.915C53.7822 441.771 53.6842 441.569 53.6669 441.352L53.2027 435.376H52.4873L52.0232 441.352C52.0059 441.569 51.9079 441.771 51.7497 441.915C51.5914 442.059 51.3851 442.135 51.1739 442.126C50.9627 442.118 50.763 442.025 50.6164 441.868C50.4699 441.711 50.3879 441.502 50.3876 441.284V429.75H50.0331C50.0058 429.948 49.9818 430.16 49.9616 430.381C49.8415 431.644 49.8414 433.013 49.8414 433.407C49.8414 433.631 49.7551 433.846 49.6015 434.004C49.4479 434.162 49.2395 434.251 49.0223 434.251C48.805 434.251 48.5967 434.162 48.4431 434.004C48.2894 433.846 48.2031 433.631 48.2031 433.407V433.403C48.2031 433.005 48.2031 431.567 48.3298 430.217C48.3932 429.548 48.492 428.85 48.6564 428.301C48.7361 428.031 48.8497 427.737 49.0223 427.494C49.1949 427.249 49.5187 426.936 50.0107 426.936H55.6788C56.1703 426.936 56.4941 427.249 56.6673 427.493C56.8393 427.737 56.9529 428.031 57.0332 428.301C57.1975 428.85 57.2964 429.548 57.3592 430.217C57.487 431.567 57.487 433.005 57.487 433.403V433.407C57.487 433.631 57.4007 433.846 57.247 434.004C57.0934 434.162 56.8851 434.251 56.6678 434.251C56.4505 434.251 56.2422 434.162 56.0886 434.004C55.9349 433.846 55.8486 433.631 55.8486 433.407C55.8486 433.013 55.8486 431.644 55.7285 430.381Z\" fill=\"#009EF6\"/>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.2601 423.841C68.2601 424.364 68.0587 424.865 67.7003 425.234C67.3419 425.603 66.8558 425.811 66.349 425.811C65.8422 425.811 65.3561 425.603 64.9977 425.234C64.6393 424.865 64.4379 424.364 64.4379 423.841C64.4379 423.319 64.6393 422.818 64.9977 422.449C65.3561 422.08 65.8422 421.872 66.349 421.872C66.8558 421.872 67.3419 422.08 67.7003 422.449C68.0587 422.818 68.2601 423.319 68.2601 423.841ZM68.7334 426.962C68.6679 426.945 68.6006 426.936 68.5331 426.937H64.1638C64.0967 426.937 64.0301 426.946 63.9651 426.962C63.3568 427.12 62.9479 427.502 62.6912 428.023C62.4657 428.48 62.356 429.047 62.2654 429.611L61.7193 432.987C61.7003 433.097 61.7025 433.21 61.7261 433.319C61.7496 433.428 61.7938 433.531 61.8563 433.622C61.9188 433.714 61.9982 433.791 62.09 433.851C62.1818 433.91 62.2841 433.95 62.391 433.968C62.4979 433.987 62.6072 433.983 62.7127 433.958C62.8182 433.932 62.9178 433.885 63.0056 433.82C63.0934 433.754 63.1677 433.672 63.2243 433.576C63.2808 433.481 63.3185 433.375 63.335 433.265L63.881 429.889C63.9312 429.575 63.9782 429.336 64.0257 429.152L64.1649 430.875C64.1649 431.927 63.24 436.731 62.9129 438.397C62.8982 438.471 62.8982 438.548 62.9131 438.622C62.9279 438.696 62.9573 438.766 62.9994 438.828C63.0414 438.89 63.0953 438.943 63.1577 438.982C63.2201 439.022 63.2897 439.048 63.3623 439.06C65.613 439.405 67.085 439.394 69.3352 439.057C69.4078 439.046 69.4775 439.021 69.5401 438.981C69.6026 438.941 69.6567 438.889 69.6991 438.828C69.7414 438.766 69.7711 438.696 69.7864 438.622C69.8016 438.548 69.8021 438.471 69.7878 438.397C69.4629 436.704 68.5331 431.778 68.5331 430.875L68.6723 429.152C68.7198 429.336 68.7668 429.575 68.817 429.889L69.363 433.265C69.3988 433.486 69.5182 433.683 69.6951 433.813C69.7826 433.877 69.8816 433.923 69.9865 433.948C70.0913 433.973 70.1999 433.977 70.306 433.959C70.4121 433.94 70.5137 433.901 70.605 433.842C70.6962 433.783 70.7754 433.707 70.8379 433.616C70.9004 433.526 70.9451 433.424 70.9693 433.316C70.9936 433.208 70.9969 433.096 70.9792 432.987L70.4332 429.611C70.342 429.047 70.2323 428.479 70.0073 428.023C69.7496 427.501 69.3417 427.12 68.7334 426.962ZM64.4418 441.635L64.2365 439.94C64.8152 440.013 65.3651 440.061 65.9067 440.082L65.5136 441.702C65.4826 441.829 65.4093 441.941 65.3066 442.019C65.2039 442.096 65.0781 442.134 64.951 442.126C64.8239 442.118 64.7035 442.065 64.6106 441.975C64.5177 441.885 64.4577 441.765 64.4418 441.635ZM67.1844 441.701L66.7945 440.094C67.349 440.086 67.9028 440.054 68.4544 439.996L68.2557 441.635C68.2397 441.765 68.1801 441.885 68.0872 441.975C67.9943 442.065 67.8738 442.118 67.7468 442.126C67.6197 442.134 67.4939 442.096 67.3913 442.018C67.2886 441.941 67.2154 441.828 67.1844 441.701Z\" fill=\"#EE46BC\"/>\r\n <path d=\"M84.271 436.766V434.644L90.5218 424.768H92.2913V427.789H91.2123L87.0044 434.457V434.572H95.7296V436.766H84.271ZM91.2986 439.5V436.119L91.3274 435.169V424.768H93.845V439.5H91.2986ZM98.5672 439.5L104.832 427.099V426.998H97.5602V424.768H107.595V427.048L101.337 439.5H98.5672ZM117.792 436.737V435.961C117.792 435.39 117.912 434.865 118.152 434.385C118.397 433.906 118.752 433.52 119.217 433.227C119.682 432.935 120.245 432.788 120.907 432.788C121.588 432.788 122.159 432.935 122.619 433.227C123.079 433.515 123.427 433.899 123.662 434.378C123.902 434.858 124.022 435.385 124.022 435.961V436.737C124.022 437.308 123.902 437.833 123.662 438.313C123.422 438.792 123.07 439.178 122.605 439.471C122.144 439.763 121.578 439.91 120.907 439.91C120.236 439.91 119.667 439.763 119.202 439.471C118.737 439.178 118.385 438.792 118.145 438.313C117.91 437.833 117.792 437.308 117.792 436.737ZM119.67 435.961V436.737C119.67 437.116 119.761 437.464 119.943 437.78C120.125 438.097 120.447 438.255 120.907 438.255C121.372 438.255 121.691 438.099 121.864 437.788C122.041 437.471 122.13 437.121 122.13 436.737V435.961C122.13 435.577 122.046 435.227 121.878 434.91C121.71 434.589 121.387 434.428 120.907 434.428C120.456 434.428 120.137 434.589 119.95 434.91C119.763 435.227 119.67 435.577 119.67 435.961ZM110.304 428.307V427.53C110.304 426.955 110.427 426.427 110.671 425.948C110.916 425.468 111.271 425.085 111.736 424.797C112.201 424.504 112.765 424.358 113.426 424.358C114.102 424.358 114.671 424.504 115.131 424.797C115.596 425.085 115.946 425.468 116.181 425.948C116.416 426.427 116.534 426.955 116.534 427.53V428.307C116.534 428.883 116.414 429.41 116.174 429.89C115.939 430.364 115.589 430.746 115.124 431.033C114.659 431.321 114.093 431.465 113.426 431.465C112.75 431.465 112.179 431.321 111.714 431.033C111.254 430.746 110.904 430.362 110.664 429.882C110.424 429.403 110.304 428.878 110.304 428.307ZM112.196 427.53V428.307C112.196 428.691 112.285 429.041 112.462 429.357C112.645 429.669 112.966 429.825 113.426 429.825C113.887 429.825 114.203 429.669 114.376 429.357C114.553 429.041 114.642 428.691 114.642 428.307V427.53C114.642 427.147 114.558 426.797 114.39 426.48C114.222 426.159 113.901 425.998 113.426 425.998C112.971 425.998 112.652 426.159 112.47 426.48C112.287 426.801 112.196 427.151 112.196 427.53ZM111.125 439.5L121.252 424.768H123.051L112.923 439.5H111.125Z\" fill=\"#344054\"/>\r\n <path d=\"M45.9105 463.251H43.526V455.886H45.986C46.7077 455.886 47.3275 456.033 47.8454 456.328C48.3633 456.621 48.7602 457.041 49.0359 457.591C49.314 458.137 49.4531 458.793 49.4531 459.558C49.4531 460.325 49.3128 460.984 49.0323 461.536C48.7542 462.087 48.3514 462.512 47.8239 462.809C47.2964 463.104 46.6586 463.251 45.9105 463.251ZM44.6373 462.28H45.8494C46.4104 462.28 46.8768 462.175 47.2484 461.964C47.6201 461.751 47.8982 461.442 48.0828 461.04C48.2674 460.634 48.3598 460.14 48.3598 459.558C48.3598 458.98 48.2674 458.49 48.0828 458.087C47.9006 457.684 47.6285 457.378 47.2664 457.17C46.9044 456.961 46.4548 456.857 45.9177 456.857H44.6373V462.28ZM53.1296 463.363C52.5854 463.363 52.1166 463.247 51.7234 463.014C51.3326 462.779 51.0305 462.449 50.8171 462.025C50.6061 461.598 50.5006 461.098 50.5006 460.525C50.5006 459.959 50.6061 459.461 50.8171 459.029C51.0305 458.598 51.3278 458.261 51.709 458.019C52.0927 457.776 52.541 457.655 53.0541 457.655C53.3658 457.655 53.6679 457.707 53.9604 457.81C54.253 457.913 54.5155 458.075 54.7481 458.295C54.9807 458.516 55.1641 458.803 55.2984 459.155C55.4326 459.505 55.4998 459.931 55.4998 460.432V460.813H51.1084V460.007H54.446C54.446 459.724 54.3884 459.474 54.2733 459.256C54.1583 459.035 53.9964 458.861 53.7878 458.734C53.5816 458.607 53.3394 458.544 53.0613 458.544C52.7592 458.544 52.4955 458.618 52.2701 458.767C52.0471 458.913 51.8745 459.105 51.7522 459.342C51.6323 459.577 51.5724 459.832 51.5724 460.108V460.737C51.5724 461.107 51.6371 461.421 51.7666 461.68C51.8984 461.939 52.0819 462.137 52.3168 462.273C52.5518 462.407 52.8263 462.475 53.1404 462.475C53.3442 462.475 53.5301 462.446 53.6979 462.388C53.8657 462.328 54.0108 462.24 54.1331 462.122C54.2554 462.005 54.3489 461.86 54.4136 461.687L55.4314 461.87C55.3499 462.17 55.2036 462.433 54.9927 462.658C54.7841 462.881 54.5215 463.055 54.205 463.18C53.8909 463.302 53.5325 463.363 53.1296 463.363ZM56.6929 463.251V457.727H57.7251V458.626H57.7934C57.9085 458.322 58.0968 458.084 58.3581 457.914C58.6195 457.742 58.9324 457.655 59.2968 457.655C59.666 457.655 59.9753 457.742 60.2247 457.914C60.4765 458.087 60.6623 458.324 60.7822 458.626H60.8397C60.9716 458.331 61.1814 458.096 61.4691 457.921C61.7568 457.744 62.0997 457.655 62.4977 457.655C62.9988 457.655 63.4076 457.812 63.7241 458.126C64.043 458.441 64.2025 458.914 64.2025 459.547V463.251H63.1271V459.648C63.1271 459.274 63.0252 459.003 62.8214 458.835C62.6176 458.667 62.3742 458.583 62.0913 458.583C61.7412 458.583 61.4691 458.691 61.2749 458.907C61.0807 459.12 60.9836 459.395 60.9836 459.73V463.251H59.9118V459.579C59.9118 459.28 59.8183 459.039 59.6313 458.857C59.4443 458.674 59.2009 458.583 58.9012 458.583C58.6974 458.583 58.5092 458.637 58.3365 458.745C58.1663 458.851 58.0284 458.998 57.9229 459.187C57.8198 459.377 57.7683 459.596 57.7683 459.846V463.251H56.6929ZM67.9707 463.363C67.4528 463.363 67.0009 463.244 66.6148 463.007C66.2288 462.77 65.9291 462.437 65.7157 462.011C65.5023 461.584 65.3956 461.085 65.3956 460.515C65.3956 459.941 65.5023 459.44 65.7157 459.011C65.9291 458.582 66.2288 458.249 66.6148 458.011C67.0009 457.774 67.4528 457.655 67.9707 457.655C68.4886 457.655 68.9406 457.774 69.3266 458.011C69.7126 458.249 70.0124 458.582 70.2258 459.011C70.4391 459.44 70.5458 459.941 70.5458 460.515C70.5458 461.085 70.4391 461.584 70.2258 462.011C70.0124 462.437 69.7126 462.77 69.3266 463.007C68.9406 463.244 68.4886 463.363 67.9707 463.363ZM67.9743 462.46C68.31 462.46 68.5881 462.372 68.8087 462.194C69.0293 462.017 69.1924 461.78 69.2978 461.486C69.4057 461.191 69.4597 460.866 69.4597 460.511C69.4597 460.158 69.4057 459.835 69.2978 459.54C69.1924 459.243 69.0293 459.004 68.8087 458.824C68.5881 458.644 68.31 458.554 67.9743 458.554C67.6363 458.554 67.3557 458.644 67.1327 458.824C66.9122 459.004 66.7479 459.243 66.64 459.54C66.5345 459.835 66.4818 460.158 66.4818 460.511C66.4818 460.866 66.5345 461.191 66.64 461.486C66.7479 461.78 66.9122 462.017 67.1327 462.194C67.3557 462.372 67.6363 462.46 67.9743 462.46ZM74.0624 465.438C73.6236 465.438 73.2459 465.381 72.9294 465.266C72.6153 465.15 72.3588 464.998 72.1598 464.809C71.9608 464.619 71.8121 464.412 71.7138 464.187L72.6381 463.805C72.7029 463.911 72.7892 464.022 72.8971 464.14C73.0074 464.26 73.156 464.362 73.343 464.446C73.5325 464.529 73.7758 464.571 74.0731 464.571C74.4807 464.571 74.8176 464.472 75.0838 464.273C75.3499 464.076 75.483 463.762 75.483 463.331V462.244H75.4146C75.3499 462.362 75.2564 462.493 75.1341 462.636C75.0142 462.78 74.8488 462.905 74.6378 463.01C74.4268 463.116 74.1523 463.169 73.8142 463.169C73.3778 463.169 72.9846 463.067 72.6345 462.863C72.2869 462.657 72.0111 462.354 71.8073 461.953C71.6059 461.55 71.5052 461.055 71.5052 460.468C71.5052 459.88 71.6047 459.377 71.8037 458.957C72.0051 458.538 72.2809 458.216 72.6309 457.993C72.981 457.768 73.3778 457.655 73.8214 457.655C74.1643 457.655 74.4412 457.713 74.6522 457.828C74.8632 457.941 75.0274 458.072 75.1449 458.224C75.2648 458.375 75.3571 458.508 75.4218 458.623H75.501V457.727H76.5547V463.374C76.5547 463.848 76.4445 464.238 76.2239 464.543C76.0033 464.847 75.7048 465.073 75.3283 465.219C74.9543 465.365 74.5323 465.438 74.0624 465.438ZM74.0516 462.277C74.3609 462.277 74.6222 462.205 74.8356 462.061C75.0514 461.915 75.2144 461.706 75.3247 461.435C75.4374 461.162 75.4938 460.835 75.4938 460.453C75.4938 460.082 75.4386 459.754 75.3283 459.472C75.218 459.189 75.0562 458.968 74.8428 458.81C74.6294 458.649 74.3657 458.569 74.0516 458.569C73.7279 458.569 73.4581 458.653 73.2423 458.821C73.0266 458.986 72.8635 459.211 72.7532 459.497C72.6453 459.782 72.5914 460.101 72.5914 460.453C72.5914 460.815 72.6465 461.133 72.7568 461.406C72.8671 461.68 73.0301 461.893 73.2459 462.047C73.4641 462.2 73.7327 462.277 74.0516 462.277ZM77.997 463.251V457.727H79.0364V458.605H79.0939C79.1946 458.307 79.372 458.074 79.6262 457.903C79.8827 457.731 80.1729 457.644 80.4965 457.644C80.5637 457.644 80.6428 457.647 80.7339 457.652C80.8274 457.656 80.9006 457.662 80.9533 457.67V458.698C80.9101 458.686 80.8334 458.673 80.7231 458.659C80.6128 458.642 80.5025 458.634 80.3922 458.634C80.1381 458.634 79.9115 458.687 79.7125 458.795C79.5159 458.901 79.36 459.048 79.245 459.238C79.1299 459.425 79.0723 459.638 79.0723 459.878V463.251H77.997ZM83.4421 463.374C83.092 463.374 82.7755 463.309 82.4926 463.18C82.2097 463.048 81.9855 462.857 81.8201 462.608C81.657 462.358 81.5755 462.053 81.5755 461.691C81.5755 461.379 81.6354 461.122 81.7553 460.921C81.8752 460.72 82.0371 460.56 82.2409 460.443C82.4447 460.325 82.6724 460.236 82.9242 460.176C83.176 460.116 83.4325 460.071 83.6939 460.04C84.0247 460.001 84.2933 459.97 84.4995 459.946C84.7057 459.92 84.8555 459.878 84.949 459.82C85.0426 459.763 85.0893 459.669 85.0893 459.54V459.515C85.0893 459.201 85.0006 458.957 84.8232 458.785C84.6481 458.612 84.3868 458.526 84.0391 458.526C83.6771 458.526 83.3917 458.606 83.1832 458.767C82.9769 458.925 82.8343 459.101 82.7552 459.295L81.7445 459.065C81.8644 458.729 82.0395 458.458 82.2696 458.252C82.5022 458.044 82.7695 457.893 83.0717 457.799C83.3738 457.703 83.6915 457.655 84.0247 457.655C84.2453 457.655 84.4791 457.682 84.7261 457.734C84.9754 457.785 85.208 457.878 85.4238 458.015C85.642 458.152 85.8206 458.347 85.9597 458.601C86.0987 458.853 86.1683 459.18 86.1683 459.583V463.251H85.1181V462.496H85.0749C85.0054 462.635 84.9011 462.772 84.762 462.906C84.623 463.04 84.4443 463.152 84.2261 463.241C84.008 463.329 83.7466 463.374 83.4421 463.374ZM83.6759 462.511C83.9732 462.511 84.2273 462.452 84.4383 462.334C84.6517 462.217 84.8136 462.063 84.9239 461.874C85.0366 461.682 85.0929 461.477 85.0929 461.259V460.547C85.0545 460.585 84.9802 460.621 84.8699 460.655C84.762 460.686 84.6385 460.714 84.4995 460.737C84.3604 460.759 84.2249 460.779 84.0931 460.799C83.9612 460.815 83.8509 460.83 83.7622 460.842C83.5536 460.868 83.363 460.913 83.1903 460.975C83.0201 461.037 82.8834 461.127 82.7803 461.245C82.6796 461.36 82.6293 461.513 82.6293 461.705C82.6293 461.971 82.7276 462.173 82.9242 462.309C83.1208 462.443 83.3714 462.511 83.6759 462.511ZM87.6006 465.323V457.727H88.6508V458.623H88.7407C88.803 458.508 88.8929 458.375 89.0104 458.224C89.1279 458.072 89.291 457.941 89.4996 457.828C89.7082 457.713 89.9839 457.655 90.3268 457.655C90.7727 457.655 91.1707 457.768 91.5208 457.993C91.8709 458.219 92.1454 458.544 92.3444 458.968C92.5458 459.392 92.6465 459.903 92.6465 460.5C92.6465 461.097 92.547 461.609 92.348 462.036C92.149 462.46 91.8757 462.788 91.528 463.018C91.1803 463.245 90.7835 463.359 90.3375 463.359C90.0019 463.359 89.7273 463.303 89.5139 463.19C89.3029 463.078 89.1375 462.946 89.0176 462.795C88.8977 462.644 88.8054 462.509 88.7407 462.392H88.676V465.323H87.6006ZM88.6544 460.489C88.6544 460.878 88.7107 461.218 88.8234 461.511C88.9361 461.803 89.0991 462.032 89.3125 462.198C89.5259 462.361 89.7873 462.442 90.0966 462.442C90.4179 462.442 90.6864 462.357 90.9022 462.187C91.118 462.014 91.281 461.78 91.3913 461.486C91.504 461.191 91.5604 460.859 91.5604 460.489C91.5604 460.125 91.5052 459.798 91.3949 459.507C91.287 459.217 91.124 458.988 90.9058 458.821C90.69 458.653 90.4203 458.569 90.0966 458.569C89.7849 458.569 89.5211 458.649 89.3053 458.81C89.0919 458.97 88.9301 459.195 88.8198 459.482C88.7095 459.77 88.6544 460.106 88.6544 460.489ZM94.9267 459.971V463.251H93.8514V455.886H94.9123V458.626H94.9807C95.1101 458.329 95.308 458.093 95.5741 457.918C95.8402 457.743 96.1879 457.655 96.6171 457.655C96.9959 457.655 97.3268 457.733 97.6097 457.889C97.8951 458.045 98.1156 458.277 98.2715 458.587C98.4297 458.894 98.5089 459.277 98.5089 459.738V463.251H97.4335V459.867C97.4335 459.462 97.3292 459.148 97.1206 458.925C96.912 458.699 96.6219 458.587 96.2502 458.587C95.9961 458.587 95.7683 458.641 95.5669 458.749C95.3679 458.857 95.2108 459.015 95.0958 459.223C94.9831 459.43 94.9267 459.679 94.9267 459.971ZM99.9439 463.251V457.727H101.019V463.251H99.9439ZM100.487 456.875C100.3 456.875 100.139 456.812 100.005 456.688C99.8731 456.561 99.8072 456.41 99.8072 456.235C99.8072 456.057 99.8731 455.906 100.005 455.781C100.139 455.654 100.3 455.591 100.487 455.591C100.674 455.591 100.833 455.654 100.965 455.781C101.1 455.906 101.167 456.057 101.167 456.235C101.167 456.41 101.1 456.561 100.965 456.688C100.833 456.812 100.674 456.875 100.487 456.875ZM104.793 463.363C104.258 463.363 103.798 463.242 103.412 463C103.028 462.755 102.733 462.418 102.527 461.989C102.321 461.56 102.218 461.068 102.218 460.515C102.218 459.953 102.323 459.458 102.534 459.029C102.745 458.598 103.043 458.261 103.426 458.019C103.81 457.776 104.262 457.655 104.782 457.655C105.202 457.655 105.576 457.733 105.904 457.889C106.233 458.042 106.498 458.258 106.699 458.536C106.903 458.815 107.024 459.139 107.062 459.511H106.016C105.958 459.252 105.826 459.029 105.62 458.842C105.416 458.655 105.143 458.562 104.8 458.562C104.5 458.562 104.238 458.641 104.012 458.799C103.789 458.955 103.616 459.178 103.491 459.468C103.366 459.756 103.304 460.096 103.304 460.489C103.304 460.892 103.365 461.24 103.487 461.532C103.61 461.825 103.782 462.051 104.005 462.212C104.231 462.373 104.496 462.453 104.8 462.453C105.004 462.453 105.189 462.416 105.354 462.342C105.522 462.265 105.662 462.156 105.775 462.014C105.89 461.873 105.97 461.703 106.016 461.504H107.062C107.024 461.861 106.908 462.18 106.713 462.46C106.519 462.741 106.259 462.961 105.933 463.122C105.609 463.283 105.229 463.363 104.793 463.363ZM112.352 459.076L111.377 459.249C111.336 459.124 111.272 459.005 111.183 458.892C111.097 458.78 110.979 458.687 110.831 458.616C110.682 458.544 110.496 458.508 110.273 458.508C109.969 458.508 109.714 458.576 109.511 458.713C109.307 458.847 109.205 459.021 109.205 459.234C109.205 459.419 109.273 459.567 109.41 459.68C109.547 459.793 109.767 459.885 110.072 459.957L110.949 460.158C111.458 460.276 111.836 460.457 112.086 460.702C112.335 460.946 112.46 461.264 112.46 461.655C112.46 461.985 112.364 462.28 112.172 462.539C111.983 462.796 111.718 462.997 111.377 463.144C111.039 463.29 110.647 463.363 110.201 463.363C109.583 463.363 109.078 463.231 108.687 462.967C108.296 462.701 108.056 462.324 107.968 461.834L109.007 461.676C109.072 461.947 109.205 462.152 109.406 462.291C109.608 462.428 109.87 462.496 110.194 462.496C110.546 462.496 110.828 462.423 111.039 462.277C111.25 462.128 111.356 461.947 111.356 461.734C111.356 461.561 111.291 461.416 111.161 461.299C111.034 461.181 110.839 461.092 110.575 461.032L109.64 460.827C109.125 460.71 108.743 460.523 108.496 460.266C108.252 460.01 108.13 459.685 108.13 459.292C108.13 458.966 108.221 458.68 108.403 458.436C108.585 458.191 108.837 458.001 109.158 457.864C109.479 457.725 109.848 457.655 110.262 457.655C110.859 457.655 111.329 457.785 111.672 458.044C112.015 458.3 112.242 458.644 112.352 459.076Z\" fill=\"#98A2B3\"/>\r\n </g>\r\n <rect x=\"33.0109\" y=\"406.662\" width=\"143.478\" height=\"73.4268\" rx=\"6.32989\" stroke=\"#EAECF0\" stroke-width=\"0.843986\"/>\r\n </g>\r\n <g filter=\"url(#filter6_dd_3784_14918)\">\r\n <g clip-path=\"url(#clip11_3784_14918)\">\r\n <rect x=\"410.981\" y=\"182.032\" width=\"135.038\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip12_3784_14918)\">\r\n <mask id=\"mask2_3784_14918\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"499\" y=\"176\" width=\"53\" height=\"52\">\r\n <path d=\"M551.978 176.14H499.794V227.889H551.978V176.14Z\" fill=\"white\"/>\r\n </mask>\r\n <g mask=\"url(#mask2_3784_14918)\">\r\n <path d=\"M551.976 219.264C551.976 224.027 548.082 227.889 543.279 227.889C538.476 227.889 534.582 224.027 534.582 219.264C534.582 214.501 538.476 210.64 543.279 210.64C548.082 210.64 551.976 214.501 551.976 219.264Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M541.106 198.78C541.106 202.948 537.699 206.327 533.496 206.327C529.292 206.327 525.885 202.948 525.885 198.78C525.885 194.612 529.292 191.233 533.496 191.233C537.699 191.233 541.106 194.612 541.106 198.78Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M525.886 214.951C525.886 222.096 520.045 227.889 512.84 227.889C505.635 227.889 499.794 222.096 499.794 214.951C499.794 207.806 505.635 202.014 512.84 202.014C520.045 202.014 525.886 207.806 525.886 214.951Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M521.538 186.921C521.538 192.875 516.671 197.702 510.666 197.702C504.662 197.702 499.794 192.875 499.794 186.921C499.794 180.967 504.662 176.14 510.666 176.14C516.671 176.14 521.538 180.967 521.538 186.921Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M551.98 182.608C551.98 186.181 549.06 189.077 545.457 189.077C541.854 189.077 538.934 186.181 538.934 182.608C538.934 179.036 541.854 176.14 545.457 176.14C549.06 176.14 551.98 179.036 551.98 182.608Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M549.804 204.17C549.804 205.361 548.831 206.326 547.63 206.326C546.429 206.326 545.456 205.361 545.456 204.17C545.456 202.979 546.429 202.014 547.63 202.014C548.831 202.014 549.804 202.979 549.804 204.17Z\" fill=\"#F1FAFF\"/>\r\n <path d=\"M533.496 183.687C533.496 185.473 532.036 186.921 530.234 186.921C528.433 186.921 526.973 185.473 526.973 183.687C526.973 181.901 528.433 180.453 530.234 180.453C532.036 180.453 533.496 181.901 533.496 183.687Z\" fill=\"#F1FAFF\"/>\r\n </g>\r\n </g>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M433.149 199.633C433.149 200.156 432.947 200.657 432.589 201.026C432.231 201.395 431.745 201.603 431.238 201.603C430.731 201.603 430.245 201.395 429.886 201.026C429.528 200.657 429.327 200.156 429.327 199.633C429.327 199.111 429.528 198.61 429.886 198.241C430.245 197.872 430.731 197.664 431.238 197.664C431.745 197.664 432.231 197.872 432.589 198.241C432.947 198.61 433.149 199.111 433.149 199.633ZM433.622 202.754C433.557 202.737 433.489 202.728 433.422 202.729H429.053C428.985 202.729 428.919 202.738 428.854 202.754C428.246 202.912 427.837 203.294 427.58 203.815C427.354 204.272 427.245 204.839 427.154 205.403L426.608 208.779C426.589 208.889 426.591 209.002 426.615 209.111C426.638 209.22 426.683 209.323 426.745 209.414C426.807 209.506 426.887 209.583 426.979 209.643C427.07 209.702 427.173 209.742 427.28 209.76C427.387 209.779 427.496 209.775 427.601 209.75C427.707 209.724 427.806 209.677 427.894 209.612C427.982 209.546 428.056 209.464 428.113 209.368C428.169 209.273 428.207 209.167 428.224 209.057L428.77 205.681C428.82 205.367 428.867 205.128 428.914 204.944L429.054 206.667C429.054 207.719 428.129 212.523 427.802 214.189C427.787 214.263 427.787 214.34 427.802 214.414C427.817 214.488 427.846 214.558 427.888 214.62C427.93 214.682 427.984 214.735 428.046 214.774C428.109 214.814 428.178 214.84 428.251 214.852C430.502 215.197 431.974 215.186 434.224 214.849C434.296 214.838 434.366 214.812 434.429 214.773C434.491 214.733 434.545 214.681 434.588 214.62C434.63 214.558 434.66 214.488 434.675 214.414C434.69 214.34 434.691 214.263 434.676 214.189C434.352 212.496 433.422 207.57 433.422 206.667L433.561 204.944C433.608 205.128 433.655 205.367 433.706 205.681L434.252 209.057C434.287 209.278 434.407 209.475 434.584 209.605C434.671 209.669 434.77 209.715 434.875 209.74C434.98 209.765 435.089 209.769 435.195 209.751C435.301 209.732 435.402 209.693 435.494 209.634C435.585 209.575 435.664 209.499 435.727 209.408C435.789 209.318 435.834 209.216 435.858 209.108C435.882 209 435.886 208.888 435.868 208.779L435.322 205.403C435.231 204.839 435.121 204.271 434.896 203.815C434.638 203.293 434.23 202.912 433.622 202.754ZM429.33 217.427L429.125 215.732C429.704 215.805 430.254 215.853 430.795 215.874L430.402 217.494C430.371 217.621 430.298 217.733 430.195 217.811C430.093 217.888 429.967 217.926 429.84 217.918C429.713 217.91 429.592 217.857 429.499 217.767C429.406 217.677 429.346 217.557 429.33 217.427ZM432.073 217.493L431.683 215.886C432.238 215.878 432.791 215.846 433.343 215.788L433.144 217.427C433.128 217.557 433.069 217.677 432.976 217.767C432.883 217.857 432.763 217.91 432.635 217.918C432.508 217.926 432.383 217.888 432.28 217.81C432.177 217.733 432.104 217.62 432.073 217.493Z\" fill=\"#009EF6\"/>\r\n <path d=\"M454.713 215.65C453.677 215.65 452.756 215.472 451.951 215.117C451.15 214.763 450.517 214.269 450.052 213.636C449.586 213.003 449.34 212.271 449.311 211.442H452.015C452.039 211.84 452.171 212.187 452.411 212.485C452.651 212.777 452.97 213.005 453.368 213.168C453.766 213.331 454.212 213.413 454.706 213.413C455.233 213.413 455.701 213.321 456.108 213.139C456.516 212.952 456.835 212.693 457.065 212.362C457.295 212.032 457.408 211.65 457.403 211.219C457.408 210.773 457.293 210.38 457.058 210.039C456.823 209.699 456.482 209.432 456.036 209.241C455.595 209.049 455.063 208.953 454.439 208.953H453.137V206.896H454.439C454.953 206.896 455.401 206.807 455.785 206.63C456.173 206.452 456.477 206.203 456.698 205.881C456.919 205.555 457.027 205.179 457.022 204.752C457.027 204.335 456.933 203.973 456.741 203.666C456.554 203.354 456.288 203.112 455.943 202.94C455.602 202.767 455.202 202.681 454.742 202.681C454.291 202.681 453.874 202.762 453.49 202.925C453.106 203.088 452.797 203.321 452.562 203.623C452.327 203.92 452.202 204.275 452.188 204.687H449.62C449.639 203.863 449.877 203.139 450.332 202.515C450.793 201.887 451.406 201.398 452.174 201.048C452.941 200.693 453.802 200.515 454.756 200.515C455.739 200.515 456.593 200.7 457.317 201.069C458.046 201.434 458.609 201.925 459.007 202.544C459.405 203.162 459.604 203.846 459.604 204.594C459.609 205.424 459.364 206.119 458.87 206.68C458.381 207.241 457.739 207.608 456.943 207.78V207.896C457.978 208.039 458.772 208.423 459.323 209.046C459.88 209.665 460.155 210.435 460.151 211.355C460.151 212.18 459.916 212.919 459.446 213.571C458.981 214.218 458.338 214.727 457.518 215.096C456.703 215.465 455.768 215.65 454.713 215.65ZM467.907 215.65C466.871 215.65 465.95 215.472 465.144 215.117C464.344 214.763 463.711 214.269 463.246 213.636C462.78 213.003 462.533 212.271 462.505 211.442H465.209C465.233 211.84 465.365 212.187 465.605 212.485C465.845 212.777 466.163 213.005 466.562 213.168C466.96 213.331 467.405 213.413 467.899 213.413C468.427 213.413 468.894 213.321 469.302 213.139C469.71 212.952 470.029 212.693 470.259 212.362C470.489 212.032 470.602 211.65 470.597 211.219C470.602 210.773 470.487 210.38 470.252 210.039C470.017 209.699 469.676 209.432 469.23 209.241C468.789 209.049 468.257 208.953 467.633 208.953H466.331V206.896H467.633C468.146 206.896 468.595 206.807 468.978 206.63C469.367 206.452 469.671 206.203 469.892 205.881C470.112 205.555 470.22 205.179 470.216 204.752C470.22 204.335 470.127 203.973 469.935 203.666C469.748 203.354 469.482 203.112 469.137 202.94C468.796 202.767 468.396 202.681 467.935 202.681C467.485 202.681 467.067 202.762 466.684 202.925C466.3 203.088 465.991 203.321 465.756 203.623C465.521 203.92 465.396 204.275 465.382 204.687H462.814C462.833 203.863 463.07 203.139 463.526 202.515C463.986 201.887 464.6 201.398 465.367 201.048C466.135 200.693 466.995 200.515 467.95 200.515C468.933 200.515 469.786 200.7 470.51 201.069C471.239 201.434 471.803 201.925 472.201 202.544C472.599 203.162 472.798 203.846 472.798 204.594C472.803 205.424 472.558 206.119 472.064 206.68C471.575 207.241 470.932 207.608 470.136 207.78V207.896C471.172 208.039 471.966 208.423 472.517 209.046C473.074 209.665 473.349 210.435 473.345 211.355C473.345 212.18 473.11 212.919 472.64 213.571C472.174 214.218 471.532 214.727 470.712 215.096C469.897 215.465 468.962 215.65 467.907 215.65ZM483.69 212.686V211.909C483.69 211.339 483.81 210.814 484.05 210.334C484.294 209.854 484.649 209.468 485.114 209.176C485.579 208.883 486.143 208.737 486.805 208.737C487.486 208.737 488.056 208.883 488.517 209.176C488.977 209.464 489.325 209.847 489.56 210.327C489.799 210.806 489.919 211.334 489.919 211.909V212.686C489.919 213.257 489.799 213.782 489.56 214.261C489.32 214.741 488.967 215.127 488.502 215.419C488.042 215.712 487.476 215.858 486.805 215.858C486.133 215.858 485.565 215.712 485.1 215.419C484.635 215.127 484.282 214.741 484.042 214.261C483.807 213.782 483.69 213.257 483.69 212.686ZM485.567 211.909V212.686C485.567 213.065 485.658 213.413 485.841 213.729C486.023 214.046 486.344 214.204 486.805 214.204C487.27 214.204 487.589 214.048 487.761 213.736C487.939 213.42 488.027 213.07 488.027 212.686V211.909C488.027 211.526 487.943 211.176 487.776 210.859C487.608 210.538 487.284 210.377 486.805 210.377C486.354 210.377 486.035 210.538 485.848 210.859C485.661 211.176 485.567 211.526 485.567 211.909ZM476.202 204.256V203.479C476.202 202.904 476.324 202.376 476.569 201.897C476.813 201.417 477.168 201.033 477.633 200.746C478.099 200.453 478.662 200.307 479.324 200.307C480 200.307 480.568 200.453 481.029 200.746C481.494 201.033 481.844 201.417 482.079 201.897C482.314 202.376 482.431 202.904 482.431 203.479V204.256C482.431 204.831 482.311 205.359 482.072 205.838C481.837 206.313 481.487 206.694 481.021 206.982C480.556 207.27 479.99 207.414 479.324 207.414C478.648 207.414 478.077 207.27 477.612 206.982C477.151 206.694 476.801 206.311 476.562 205.831C476.322 205.352 476.202 204.826 476.202 204.256ZM478.094 203.479V204.256C478.094 204.639 478.182 204.99 478.36 205.306C478.542 205.618 478.863 205.774 479.324 205.774C479.784 205.774 480.101 205.618 480.273 205.306C480.451 204.99 480.539 204.639 480.539 204.256V203.479C480.539 203.095 480.455 202.745 480.288 202.429C480.12 202.108 479.799 201.947 479.324 201.947C478.868 201.947 478.549 202.108 478.367 202.429C478.185 202.75 478.094 203.1 478.094 203.479ZM477.022 215.448L487.15 200.717H488.948L478.82 215.448H477.022Z\" fill=\"#344054\"/>\r\n <path d=\"M421.918 237.887V230.521H426.486V231.478H423.029V233.722H426.158V234.675H423.029V237.887H421.918ZM429.741 237.998C429.197 237.998 428.728 237.882 428.335 237.649C427.944 237.414 427.642 237.085 427.429 236.66C427.218 236.234 427.112 235.734 427.112 235.161C427.112 234.595 427.218 234.096 427.429 233.664C427.642 233.233 427.94 232.896 428.321 232.654C428.704 232.412 429.153 232.291 429.666 232.291C429.978 232.291 430.28 232.342 430.572 232.445C430.865 232.548 431.127 232.71 431.36 232.931C431.592 233.151 431.776 233.438 431.91 233.79C432.044 234.14 432.112 234.566 432.112 235.067V235.448H427.72V234.643H431.058C431.058 234.36 431 234.109 430.885 233.891C430.77 233.67 430.608 233.497 430.4 233.369C430.193 233.242 429.951 233.179 429.673 233.179C429.371 233.179 429.107 233.253 428.882 233.402C428.659 233.548 428.486 233.74 428.364 233.977C428.244 234.212 428.184 234.468 428.184 234.743V235.373C428.184 235.742 428.249 236.056 428.378 236.315C428.51 236.574 428.694 236.772 428.929 236.908C429.164 237.043 429.438 237.11 429.752 237.11C429.956 237.11 430.142 237.081 430.31 237.024C430.478 236.964 430.623 236.875 430.745 236.757C430.867 236.64 430.961 236.495 431.025 236.322L432.043 236.506C431.962 236.805 431.815 237.068 431.604 237.293C431.396 237.516 431.133 237.69 430.817 237.815C430.503 237.937 430.144 237.998 429.741 237.998ZM433.305 237.887V232.362H434.337V233.262H434.405C434.52 232.957 434.709 232.72 434.97 232.549C435.231 232.377 435.544 232.291 435.909 232.291C436.278 232.291 436.587 232.377 436.837 232.549C437.088 232.722 437.274 232.959 437.394 233.262H437.452C437.583 232.967 437.793 232.732 438.081 232.557C438.369 232.379 438.712 232.291 439.11 232.291C439.611 232.291 440.019 232.448 440.336 232.762C440.655 233.076 440.814 233.549 440.814 234.182V237.887H439.739V234.283C439.739 233.909 439.637 233.638 439.433 233.47C439.229 233.302 438.986 233.218 438.703 233.218C438.353 233.218 438.081 233.326 437.887 233.542C437.692 233.756 437.595 234.03 437.595 234.366V237.887H436.524V234.215C436.524 233.915 436.43 233.674 436.243 233.492C436.056 233.31 435.813 233.218 435.513 233.218C435.309 233.218 435.121 233.272 434.948 233.38C434.778 233.486 434.64 233.633 434.535 233.823C434.432 234.012 434.38 234.231 434.38 234.481V237.887H433.305ZM443.863 238.009C443.513 238.009 443.197 237.944 442.914 237.815C442.631 237.683 442.407 237.492 442.241 237.243C442.078 236.994 441.997 236.688 441.997 236.326C441.997 236.014 442.057 235.758 442.176 235.556C442.296 235.355 442.458 235.195 442.662 235.078C442.866 234.96 443.094 234.872 443.345 234.812C443.597 234.752 443.854 234.706 444.115 234.675C444.446 234.637 444.714 234.605 444.921 234.582C445.127 234.555 445.277 234.513 445.37 234.456C445.464 234.398 445.51 234.305 445.51 234.175V234.15C445.51 233.836 445.422 233.592 445.244 233.42C445.069 233.247 444.808 233.161 444.46 233.161C444.098 233.161 443.813 233.241 443.604 233.402C443.398 233.56 443.255 233.736 443.176 233.931L442.166 233.7C442.286 233.365 442.461 233.094 442.691 232.888C442.923 232.679 443.191 232.528 443.493 232.434C443.795 232.338 444.113 232.291 444.446 232.291C444.666 232.291 444.9 232.317 445.147 232.37C445.397 232.42 445.629 232.514 445.845 232.65C446.063 232.787 446.242 232.982 446.381 233.236C446.52 233.488 446.589 233.815 446.589 234.218V237.887H445.539V237.131H445.496C445.427 237.271 445.322 237.407 445.183 237.541C445.044 237.676 444.865 237.787 444.647 237.876C444.429 237.965 444.168 238.009 443.863 238.009ZM444.097 237.146C444.394 237.146 444.648 237.087 444.859 236.97C445.073 236.852 445.235 236.699 445.345 236.509C445.458 236.317 445.514 236.112 445.514 235.894V235.182C445.476 235.22 445.401 235.256 445.291 235.29C445.183 235.321 445.06 235.349 444.921 235.373C444.782 235.394 444.646 235.415 444.514 235.434C444.382 235.451 444.272 235.465 444.183 235.477C443.975 235.503 443.784 235.548 443.611 235.61C443.441 235.672 443.305 235.762 443.201 235.88C443.101 235.995 443.05 236.148 443.05 236.34C443.05 236.606 443.149 236.808 443.345 236.944C443.542 237.079 443.792 237.146 444.097 237.146ZM449.097 230.521V237.887H448.022V230.521H449.097ZM452.925 237.998C452.38 237.998 451.912 237.882 451.518 237.649C451.128 237.414 450.826 237.085 450.612 236.66C450.401 236.234 450.296 235.734 450.296 235.161C450.296 234.595 450.401 234.096 450.612 233.664C450.826 233.233 451.123 232.896 451.504 232.654C451.888 232.412 452.336 232.291 452.849 232.291C453.161 232.291 453.463 232.342 453.755 232.445C454.048 232.548 454.311 232.71 454.543 232.931C454.776 233.151 454.959 233.438 455.093 233.79C455.228 234.14 455.295 234.566 455.295 235.067V235.448H450.903V234.643H454.241C454.241 234.36 454.183 234.109 454.068 233.891C453.953 233.67 453.791 233.497 453.583 233.369C453.377 233.242 453.134 233.179 452.856 233.179C452.554 233.179 452.29 233.253 452.065 233.402C451.842 233.548 451.669 233.74 451.547 233.977C451.427 234.212 451.367 234.468 451.367 234.743V235.373C451.367 235.742 451.432 236.056 451.562 236.315C451.693 236.574 451.877 236.772 452.112 236.908C452.347 237.043 452.621 237.11 452.935 237.11C453.139 237.11 453.325 237.081 453.493 237.024C453.661 236.964 453.806 236.875 453.928 236.757C454.05 236.64 454.144 236.495 454.209 236.322L455.226 236.506C455.145 236.805 454.999 237.068 454.788 237.293C454.579 237.516 454.317 237.69 454 237.815C453.686 237.937 453.327 237.998 452.925 237.998ZM459.255 237.887V230.521H461.88C462.451 230.521 462.924 230.619 463.301 230.816C463.68 231.013 463.962 231.285 464.149 231.632C464.336 231.978 464.43 232.377 464.43 232.83C464.43 233.281 464.335 233.678 464.146 234.02C463.959 234.361 463.676 234.626 463.297 234.815C462.921 235.005 462.447 235.099 461.876 235.099H459.888V234.143H461.776C462.135 234.143 462.428 234.091 462.653 233.988C462.881 233.885 463.048 233.735 463.153 233.539C463.259 233.342 463.311 233.106 463.311 232.83C463.311 232.552 463.258 232.311 463.15 232.107C463.044 231.903 462.877 231.747 462.65 231.64C462.424 231.529 462.128 231.474 461.761 231.474H460.366V237.887H459.255ZM462.891 234.564L464.711 237.887H463.445L461.661 234.564H462.891ZM467.304 238.009C466.954 238.009 466.637 237.944 466.354 237.815C466.071 237.683 465.847 237.492 465.682 237.243C465.519 236.994 465.437 236.688 465.437 236.326C465.437 236.014 465.497 235.758 465.617 235.556C465.737 235.355 465.899 235.195 466.102 235.078C466.306 234.96 466.534 234.872 466.786 234.812C467.037 234.752 467.294 234.706 467.555 234.675C467.886 234.637 468.155 234.605 468.361 234.582C468.567 234.555 468.717 234.513 468.811 234.456C468.904 234.398 468.951 234.305 468.951 234.175V234.15C468.951 233.836 468.862 233.592 468.685 233.42C468.51 233.247 468.248 233.161 467.901 233.161C467.539 233.161 467.253 233.241 467.045 233.402C466.838 233.56 466.696 233.736 466.617 233.931L465.606 233.7C465.726 233.365 465.901 233.094 466.131 232.888C466.364 232.679 466.631 232.528 466.933 232.434C467.235 232.338 467.553 232.291 467.886 232.291C468.107 232.291 468.341 232.317 468.588 232.37C468.837 232.42 469.07 232.514 469.285 232.65C469.503 232.787 469.682 232.982 469.821 233.236C469.96 233.488 470.03 233.815 470.03 234.218V237.887H468.98V237.131H468.936C468.867 237.271 468.763 237.407 468.624 237.541C468.484 237.676 468.306 237.787 468.088 237.876C467.869 237.965 467.608 238.009 467.304 238.009ZM467.537 237.146C467.835 237.146 468.089 237.087 468.3 236.97C468.513 236.852 468.675 236.699 468.785 236.509C468.898 236.317 468.954 236.112 468.954 235.894V235.182C468.916 235.22 468.842 235.256 468.731 235.29C468.624 235.321 468.5 235.349 468.361 235.373C468.222 235.394 468.086 235.415 467.955 235.434C467.823 235.451 467.712 235.465 467.624 235.477C467.415 235.503 467.224 235.548 467.052 235.61C466.882 235.672 466.745 235.762 466.642 235.88C466.541 235.995 466.491 236.148 466.491 236.34C466.491 236.606 466.589 236.808 466.786 236.944C466.982 237.079 467.233 237.146 467.537 237.146ZM474.041 232.362V233.226H471.023V232.362H474.041ZM471.833 231.039H472.908V236.265C472.908 236.473 472.939 236.63 473.001 236.736C473.064 236.839 473.144 236.91 473.242 236.948C473.343 236.984 473.452 237.002 473.57 237.002C473.656 237.002 473.732 236.996 473.796 236.984C473.861 236.972 473.911 236.962 473.947 236.955L474.142 237.844C474.079 237.868 473.99 237.892 473.875 237.915C473.76 237.942 473.616 237.956 473.444 237.959C473.161 237.963 472.897 237.913 472.653 237.808C472.408 237.702 472.21 237.539 472.059 237.318C471.908 237.098 471.833 236.821 471.833 236.488V231.039ZM477.552 237.998C477.008 237.998 476.539 237.882 476.146 237.649C475.755 237.414 475.453 237.085 475.239 236.66C475.028 236.234 474.923 235.734 474.923 235.161C474.923 234.595 475.028 234.096 475.239 233.664C475.453 233.233 475.75 232.896 476.131 232.654C476.515 232.412 476.963 232.291 477.476 232.291C477.788 232.291 478.09 232.342 478.383 232.445C478.675 232.548 478.938 232.71 479.17 232.931C479.403 233.151 479.586 233.438 479.721 233.79C479.855 234.14 479.922 234.566 479.922 235.067V235.448H475.531V234.643H478.868C478.868 234.36 478.811 234.109 478.696 233.891C478.581 233.67 478.419 233.497 478.21 233.369C478.004 233.242 477.762 233.179 477.484 233.179C477.181 233.179 476.918 233.253 476.692 233.402C476.469 233.548 476.297 233.74 476.174 233.977C476.055 234.212 475.995 234.468 475.995 234.743V235.373C475.995 235.742 476.059 236.056 476.189 236.315C476.321 236.574 476.504 236.772 476.739 236.908C476.974 237.043 477.249 237.11 477.563 237.11C477.767 237.11 477.952 237.081 478.12 237.024C478.288 236.964 478.433 236.875 478.555 236.757C478.678 236.64 478.771 236.495 478.836 236.322L479.854 236.506C479.772 236.805 479.626 237.068 479.415 237.293C479.206 237.516 478.944 237.69 478.627 237.815C478.313 237.937 477.955 237.998 477.552 237.998Z\" fill=\"#98A2B3\"/>\r\n </g>\r\n <rect x=\"411.403\" y=\"182.454\" width=\"134.194\" height=\"73.4268\" rx=\"6.32989\" stroke=\"#EAECF0\" stroke-width=\"0.843986\"/>\r\n </g>\r\n <g filter=\"url(#filter7_dd_3784_14918)\">\r\n <g clip-path=\"url(#clip13_3784_14918)\">\r\n <rect x=\"374.036\" y=\"179.389\" width=\"208.928\" height=\"92.7032\" rx=\"8.30178\" fill=\"white\"/>\r\n <path opacity=\"0.5\" d=\"M554.47 180.237L552.884 180.309L562.038 189.425L565.282 186.219C573.09 189.975 578.712 197.559 579.577 206.555H583.18C581.955 191.817 569.582 180.237 554.47 180.237ZM554.47 189.807C549.833 189.807 546.061 193.564 546.061 198.181C546.061 202.799 549.833 206.555 554.47 206.555C559.107 206.555 562.879 202.799 562.879 198.181C562.879 193.564 559.107 189.807 554.47 189.807ZM525.76 211.34C526.985 226.078 539.358 237.658 554.47 237.658L556.056 237.586L546.902 228.471L543.659 231.677C535.85 227.944 530.228 220.336 529.364 211.34H525.76ZM554.47 211.34C545.172 211.34 537.652 215.096 537.652 219.714V223.303H571.288V219.714C571.288 215.096 563.768 211.34 554.47 211.34Z\" fill=\"#DAF1FF\"/>\r\n <path d=\"M385.817 202.223V200.774L390.087 194.028H391.296V196.091H390.559L387.685 200.646V200.725H393.645V202.223H385.817ZM390.618 204.09V201.781L390.638 201.132V194.028H392.357V204.09H390.618ZM398.713 204.228C398.058 204.228 397.471 204.105 396.954 203.859C396.436 203.61 396.025 203.27 395.721 202.837C395.419 202.405 395.259 201.91 395.239 201.354H397.008C397.041 201.766 397.219 202.104 397.543 202.366C397.868 202.624 398.257 202.754 398.713 202.754C399.07 202.754 399.388 202.672 399.666 202.508C399.944 202.344 400.164 202.117 400.324 201.825C400.485 201.534 400.564 201.201 400.56 200.828C400.564 200.448 400.483 200.11 400.32 199.816C400.156 199.521 399.931 199.29 399.646 199.123C399.361 198.952 399.034 198.867 398.664 198.867C398.362 198.864 398.066 198.92 397.774 199.034C397.483 199.149 397.252 199.3 397.082 199.486L395.436 199.216L395.961 194.028H401.798V195.551H397.47L397.18 198.219H397.239C397.425 197.999 397.689 197.817 398.03 197.673C398.371 197.526 398.744 197.452 399.15 197.452C399.759 197.452 400.303 197.596 400.781 197.885C401.26 198.17 401.636 198.563 401.911 199.064C402.187 199.565 402.324 200.138 402.324 200.784C402.324 201.449 402.17 202.041 401.862 202.562C401.558 203.08 401.134 203.488 400.59 203.786C400.049 204.081 399.424 204.228 398.713 204.228ZM409.35 202.204V201.673C409.35 201.283 409.432 200.924 409.596 200.597C409.763 200.269 410.006 200.006 410.323 199.806C410.641 199.606 411.026 199.506 411.478 199.506C411.943 199.506 412.333 199.606 412.647 199.806C412.962 200.002 413.199 200.264 413.36 200.592C413.524 200.92 413.606 201.28 413.606 201.673V202.204C413.606 202.593 413.524 202.952 413.36 203.28C413.196 203.607 412.955 203.871 412.638 204.071C412.323 204.27 411.937 204.37 411.478 204.37C411.019 204.37 410.631 204.27 410.313 204.071C409.996 203.871 409.755 203.607 409.591 203.28C409.431 202.952 409.35 202.593 409.35 202.204ZM410.633 201.673V202.204C410.633 202.462 410.695 202.7 410.82 202.916C410.944 203.132 411.164 203.24 411.478 203.24C411.796 203.24 412.014 203.134 412.131 202.921C412.253 202.705 412.313 202.466 412.313 202.204V201.673C412.313 201.411 412.256 201.172 412.141 200.956C412.027 200.736 411.806 200.626 411.478 200.626C411.17 200.626 410.952 200.736 410.824 200.956C410.697 201.172 410.633 201.411 410.633 201.673ZM404.236 196.445V195.914C404.236 195.521 404.319 195.161 404.486 194.833C404.653 194.506 404.896 194.244 405.213 194.047C405.531 193.847 405.916 193.748 406.368 193.748C406.83 193.748 407.218 193.847 407.532 194.047C407.85 194.244 408.089 194.506 408.25 194.833C408.41 195.161 408.491 195.521 408.491 195.914V196.445C408.491 196.838 408.409 197.198 408.245 197.526C408.084 197.85 407.845 198.111 407.528 198.307C407.21 198.504 406.823 198.602 406.368 198.602C405.906 198.602 405.516 198.504 405.199 198.307C404.884 198.111 404.645 197.849 404.481 197.521C404.317 197.193 404.236 196.835 404.236 196.445ZM405.528 195.914V196.445C405.528 196.707 405.588 196.946 405.71 197.162C405.834 197.375 406.054 197.482 406.368 197.482C406.682 197.482 406.899 197.375 407.017 197.162C407.138 196.946 407.198 196.707 407.198 196.445V195.914C407.198 195.652 407.141 195.413 407.026 195.197C406.912 194.978 406.692 194.868 406.368 194.868C406.057 194.868 405.839 194.978 405.714 195.197C405.59 195.416 405.528 195.656 405.528 195.914ZM404.796 204.09L411.714 194.028H412.942L406.024 204.09H404.796Z\" fill=\"#344054\"/>\r\n <path d=\"M391.729 220.872H390.656C390.615 220.642 390.538 220.441 390.426 220.266C390.313 220.092 390.176 219.944 390.013 219.823C389.85 219.701 389.668 219.609 389.466 219.548C389.267 219.486 389.055 219.455 388.83 219.455C388.424 219.455 388.061 219.557 387.74 219.761C387.421 219.965 387.169 220.264 386.983 220.658C386.799 221.053 386.708 221.534 386.708 222.103C386.708 222.676 386.799 223.16 386.983 223.554C387.169 223.949 387.422 224.247 387.743 224.449C388.064 224.65 388.425 224.751 388.826 224.751C389.049 224.751 389.26 224.722 389.459 224.662C389.661 224.6 389.843 224.509 390.006 224.39C390.169 224.271 390.307 224.125 390.419 223.953C390.534 223.779 390.613 223.58 390.656 223.355L391.729 223.358C391.672 223.705 391.561 224.023 391.396 224.315C391.233 224.603 391.023 224.853 390.766 225.064C390.512 225.273 390.221 225.435 389.893 225.549C389.565 225.664 389.207 225.721 388.82 225.721C388.21 225.721 387.666 225.577 387.189 225.288C386.712 224.997 386.336 224.581 386.061 224.039C385.788 223.498 385.652 222.853 385.652 222.103C385.652 221.351 385.789 220.705 386.065 220.167C386.34 219.626 386.716 219.21 387.193 218.922C387.67 218.63 388.212 218.485 388.82 218.485C389.193 218.485 389.542 218.539 389.865 218.646C390.191 218.752 390.483 218.908 390.742 219.114C391.001 219.318 391.216 219.568 391.385 219.864C391.555 220.157 391.67 220.493 391.729 220.872ZM395.144 225.732C394.649 225.732 394.216 225.618 393.847 225.391C393.478 225.164 393.191 224.847 392.987 224.438C392.783 224.03 392.681 223.553 392.681 223.008C392.681 222.46 392.783 221.98 392.987 221.57C393.191 221.159 393.478 220.841 393.847 220.614C394.216 220.387 394.649 220.273 395.144 220.273C395.639 220.273 396.071 220.387 396.44 220.614C396.81 220.841 397.096 221.159 397.3 221.57C397.504 221.98 397.606 222.46 397.606 223.008C397.606 223.553 397.504 224.03 397.3 224.438C397.096 224.847 396.81 225.164 396.44 225.391C396.071 225.618 395.639 225.732 395.144 225.732ZM395.147 224.868C395.468 224.868 395.734 224.783 395.945 224.614C396.156 224.444 396.312 224.218 396.413 223.936C396.516 223.654 396.568 223.344 396.568 223.004C396.568 222.667 396.516 222.358 396.413 222.076C396.312 221.791 396.156 221.563 395.945 221.391C395.734 221.219 395.468 221.133 395.147 221.133C394.824 221.133 394.556 221.219 394.342 221.391C394.131 221.563 393.974 221.791 393.871 222.076C393.77 222.358 393.72 222.667 393.72 223.004C393.72 223.344 393.77 223.654 393.871 223.936C393.974 224.218 394.131 224.444 394.342 224.614C394.556 224.783 394.824 224.868 395.147 224.868ZM399.783 222.488V225.625H398.754V220.342H399.741V221.202H399.807C399.928 220.922 400.119 220.697 400.378 220.528C400.639 220.358 400.968 220.273 401.365 220.273C401.725 220.273 402.04 220.349 402.311 220.5C402.581 220.649 402.791 220.872 402.94 221.168C403.089 221.463 403.164 221.829 403.164 222.265V225.625H402.135V222.389C402.135 222.006 402.036 221.706 401.836 221.491C401.637 221.273 401.363 221.164 401.014 221.164C400.776 221.164 400.563 221.216 400.378 221.319C400.194 221.422 400.049 221.573 399.941 221.773C399.835 221.97 399.783 222.209 399.783 222.488ZM408.873 220.342L406.957 225.625H405.857L403.938 220.342H405.042L406.38 224.407H406.435L407.769 220.342H408.873ZM411.937 225.732C411.416 225.732 410.968 225.62 410.592 225.398C410.218 225.173 409.929 224.858 409.725 224.452C409.523 224.044 409.423 223.566 409.423 223.018C409.423 222.477 409.523 222 409.725 221.587C409.929 221.174 410.214 220.852 410.578 220.621C410.945 220.389 411.374 220.273 411.865 220.273C412.163 220.273 412.452 220.323 412.731 220.421C413.011 220.52 413.262 220.675 413.485 220.885C413.707 221.096 413.882 221.37 414.011 221.707C414.139 222.042 414.203 222.449 414.203 222.928V223.293H410.004V222.523H413.196C413.196 222.252 413.141 222.012 413.031 221.804C412.92 221.593 412.766 221.427 412.566 221.305C412.369 221.184 412.137 221.123 411.871 221.123C411.583 221.123 411.33 221.194 411.115 221.336C410.901 221.476 410.736 221.659 410.619 221.886C410.505 222.111 410.447 222.355 410.447 222.619V223.221C410.447 223.574 410.509 223.874 410.633 224.122C410.759 224.37 410.935 224.559 411.159 224.689C411.384 224.818 411.647 224.882 411.947 224.882C412.142 224.882 412.32 224.855 412.48 224.8C412.641 224.742 412.779 224.657 412.896 224.545C413.013 224.433 413.103 224.294 413.165 224.129L414.138 224.304C414.06 224.591 413.92 224.842 413.718 225.057C413.519 225.271 413.268 225.437 412.965 225.556C412.665 225.673 412.322 225.732 411.937 225.732ZM415.344 225.625V220.342H416.338V221.181H416.393C416.49 220.897 416.659 220.673 416.902 220.511C417.148 220.345 417.425 220.263 417.735 220.263C417.799 220.263 417.875 220.265 417.962 220.27C418.051 220.274 418.121 220.28 418.172 220.287V221.271C418.13 221.259 418.057 221.247 417.951 221.233C417.846 221.217 417.74 221.209 417.635 221.209C417.392 221.209 417.175 221.26 416.985 221.364C416.797 221.464 416.648 221.605 416.538 221.787C416.428 221.965 416.373 222.17 416.373 222.399V225.625H415.344ZM423.02 221.632L422.088 221.797C422.049 221.678 421.987 221.564 421.902 221.456C421.82 221.349 421.708 221.26 421.565 221.192C421.423 221.123 421.246 221.088 421.032 221.088C420.741 221.088 420.498 221.154 420.303 221.284C420.108 221.413 420.011 221.579 420.011 221.783C420.011 221.96 420.076 222.102 420.207 222.21C420.338 222.317 420.549 222.406 420.84 222.474L421.679 222.667C422.165 222.779 422.527 222.953 422.766 223.186C423.004 223.42 423.123 223.724 423.123 224.098C423.123 224.414 423.032 224.696 422.848 224.944C422.667 225.189 422.414 225.382 422.088 225.522C421.765 225.662 421.39 225.732 420.964 225.732C420.372 225.732 419.889 225.606 419.516 225.353C419.142 225.099 418.912 224.738 418.828 224.27L419.822 224.119C419.884 224.378 420.011 224.574 420.203 224.707C420.396 224.837 420.647 224.903 420.957 224.903C421.294 224.903 421.563 224.833 421.765 224.693C421.967 224.551 422.068 224.378 422.068 224.174C422.068 224.008 422.006 223.87 421.882 223.757C421.76 223.645 421.573 223.56 421.321 223.503L420.427 223.307C419.934 223.194 419.569 223.016 419.333 222.77C419.099 222.525 418.982 222.214 418.982 221.838C418.982 221.526 419.07 221.253 419.244 221.02C419.418 220.786 419.659 220.603 419.966 220.473C420.273 220.34 420.625 220.273 421.022 220.273C421.593 220.273 422.042 220.397 422.37 220.645C422.698 220.89 422.915 221.219 423.02 221.632ZM424.254 225.625V220.342H425.283V225.625H424.254ZM424.774 219.527C424.595 219.527 424.441 219.467 424.313 219.348C424.187 219.227 424.123 219.082 424.123 218.915C424.123 218.745 424.187 218.601 424.313 218.481C424.441 218.36 424.595 218.299 424.774 218.299C424.952 218.299 425.105 218.36 425.231 218.481C425.359 218.601 425.424 218.745 425.424 218.915C425.424 219.082 425.359 219.227 425.231 219.348C425.105 219.467 424.952 219.527 424.774 219.527ZM428.891 225.732C428.396 225.732 427.964 225.618 427.595 225.391C427.226 225.164 426.939 224.847 426.735 224.438C426.531 224.03 426.429 223.553 426.429 223.008C426.429 222.46 426.531 221.98 426.735 221.57C426.939 221.159 427.226 220.841 427.595 220.614C427.964 220.387 428.396 220.273 428.891 220.273C429.387 220.273 429.819 220.387 430.188 220.614C430.557 220.841 430.844 221.159 431.048 221.57C431.252 221.98 431.354 222.46 431.354 223.008C431.354 223.553 431.252 224.03 431.048 224.438C430.844 224.847 430.557 225.164 430.188 225.391C429.819 225.618 429.387 225.732 428.891 225.732ZM428.895 224.868C429.216 224.868 429.482 224.783 429.693 224.614C429.904 224.444 430.06 224.218 430.161 223.936C430.264 223.654 430.315 223.344 430.315 223.004C430.315 222.667 430.264 222.358 430.161 222.076C430.06 221.791 429.904 221.563 429.693 221.391C429.482 221.219 429.216 221.133 428.895 221.133C428.572 221.133 428.303 221.219 428.09 221.391C427.879 221.563 427.722 221.791 427.619 222.076C427.518 222.358 427.467 222.667 427.467 223.004C427.467 223.344 427.518 223.654 427.619 223.936C427.722 224.218 427.879 224.444 428.09 224.614C428.303 224.783 428.572 224.868 428.895 224.868ZM433.53 222.488V225.625H432.502V220.342H433.489V221.202H433.554C433.676 220.922 433.866 220.697 434.125 220.528C434.387 220.358 434.716 220.273 435.112 220.273C435.472 220.273 435.788 220.349 436.058 220.5C436.329 220.649 436.539 220.872 436.688 221.168C436.837 221.463 436.911 221.829 436.911 222.265V225.625H435.883V222.389C435.883 222.006 435.783 221.706 435.584 221.491C435.384 221.273 435.11 221.164 434.762 221.164C434.523 221.164 434.311 221.216 434.125 221.319C433.942 221.422 433.796 221.573 433.689 221.773C433.583 221.97 433.53 222.209 433.53 222.488ZM440.854 225.625V220.342H441.848V221.181H441.903C441.999 220.897 442.169 220.673 442.412 220.511C442.657 220.345 442.935 220.263 443.244 220.263C443.308 220.263 443.384 220.265 443.471 220.27C443.561 220.274 443.63 220.28 443.681 220.287V221.271C443.64 221.259 443.566 221.247 443.461 221.233C443.355 221.217 443.25 221.209 443.144 221.209C442.901 221.209 442.685 221.26 442.494 221.364C442.306 221.464 442.157 221.605 442.047 221.787C441.937 221.965 441.882 222.17 441.882 222.399V225.625H440.854ZM446.061 225.742C445.726 225.742 445.424 225.68 445.153 225.556C444.882 225.43 444.668 225.248 444.51 225.009C444.354 224.771 444.276 224.479 444.276 224.132C444.276 223.834 444.333 223.589 444.448 223.396C444.563 223.204 444.717 223.051 444.912 222.939C445.107 222.826 445.325 222.742 445.566 222.684C445.806 222.627 446.052 222.583 446.302 222.554C446.618 222.517 446.875 222.487 447.072 222.464C447.269 222.439 447.413 222.399 447.502 222.344C447.592 222.289 447.636 222.199 447.636 222.076V222.051C447.636 221.751 447.551 221.518 447.382 221.353C447.214 221.188 446.964 221.106 446.632 221.106C446.286 221.106 446.013 221.182 445.813 221.336C445.616 221.487 445.48 221.656 445.404 221.842L444.438 221.622C444.552 221.301 444.72 221.041 444.94 220.844C445.162 220.645 445.418 220.5 445.707 220.411C445.996 220.319 446.299 220.273 446.618 220.273C446.829 220.273 447.053 220.298 447.289 220.349C447.527 220.397 447.75 220.487 447.956 220.617C448.165 220.748 448.336 220.935 448.469 221.178C448.602 221.419 448.668 221.732 448.668 222.117V225.625H447.664V224.903H447.622C447.556 225.036 447.456 225.166 447.323 225.295C447.19 225.423 447.019 225.53 446.811 225.615C446.602 225.7 446.352 225.742 446.061 225.742ZM446.285 224.916C446.569 224.916 446.812 224.86 447.014 224.748C447.218 224.636 447.373 224.489 447.478 224.308C447.586 224.124 447.64 223.928 447.64 223.72V223.039C447.603 223.075 447.532 223.11 447.426 223.142C447.323 223.172 447.205 223.198 447.072 223.221C446.939 223.241 446.81 223.261 446.684 223.279C446.557 223.295 446.452 223.309 446.367 223.321C446.168 223.346 445.985 223.388 445.82 223.448C445.657 223.507 445.527 223.593 445.428 223.706C445.332 223.816 445.284 223.963 445.284 224.146C445.284 224.401 445.378 224.593 445.566 224.724C445.754 224.852 445.993 224.916 446.285 224.916ZM452.504 220.342V221.168H449.618V220.342H452.504ZM450.392 219.076H451.42V224.074C451.42 224.273 451.45 224.423 451.51 224.524C451.57 224.623 451.646 224.691 451.74 224.727C451.837 224.762 451.941 224.779 452.053 224.779C452.136 224.779 452.208 224.773 452.27 224.762C452.332 224.75 452.38 224.741 452.414 224.734L452.6 225.584C452.541 225.607 452.456 225.63 452.346 225.653C452.236 225.678 452.098 225.691 451.933 225.694C451.662 225.698 451.41 225.65 451.176 225.549C450.942 225.448 450.753 225.293 450.609 225.082C450.464 224.871 450.392 224.606 450.392 224.287V219.076ZM455.862 225.732C455.341 225.732 454.893 225.62 454.517 225.398C454.143 225.173 453.854 224.858 453.65 224.452C453.448 224.044 453.347 223.566 453.347 223.018C453.347 222.477 453.448 222 453.65 221.587C453.854 221.174 454.138 220.852 454.503 220.621C454.87 220.389 455.299 220.273 455.789 220.273C456.087 220.273 456.376 220.323 456.656 220.421C456.936 220.52 457.187 220.675 457.409 220.885C457.632 221.096 457.807 221.37 457.936 221.707C458.064 222.042 458.128 222.449 458.128 222.928V223.293H453.929V222.523H457.12C457.12 222.252 457.065 222.012 456.955 221.804C456.845 221.593 456.691 221.427 456.491 221.305C456.294 221.184 456.062 221.123 455.796 221.123C455.507 221.123 455.255 221.194 455.04 221.336C454.826 221.476 454.661 221.659 454.544 221.886C454.43 222.111 454.372 222.355 454.372 222.619V223.221C454.372 223.574 454.434 223.874 454.558 224.122C454.684 224.37 454.86 224.559 455.084 224.689C455.309 224.818 455.572 224.882 455.872 224.882C456.067 224.882 456.245 224.855 456.405 224.8C456.566 224.742 456.704 224.657 456.821 224.545C456.938 224.433 457.028 224.294 457.089 224.129L458.063 224.304C457.985 224.591 457.845 224.842 457.643 225.057C457.444 225.271 457.193 225.437 456.89 225.556C456.59 225.673 456.247 225.732 455.862 225.732Z\" fill=\"#667085\"/>\r\n <path opacity=\"0.3\" d=\"M402.877 253.274V251.659C402.877 251.174 402.554 250.851 402.069 250.851H391.568V240.35C391.568 239.866 391.245 239.542 390.76 239.542H389.145C388.66 239.542 388.337 239.866 388.337 240.35V253.274C388.337 253.759 388.66 254.082 389.145 254.082H402.069C402.554 254.082 402.877 253.759 402.877 253.274Z\" fill=\"#009EF7\"/>\r\n <path d=\"M401.261 241.966V254.891C401.261 255.375 400.938 255.698 400.453 255.698H398.838C398.353 255.698 398.03 255.375 398.03 254.891V244.39H391.568V241.159H400.453C400.938 241.159 401.261 241.482 401.261 241.966ZM387.529 244.39H388.337V241.159H387.529C387.044 241.159 386.721 241.482 386.721 241.966V243.582C386.721 244.067 387.044 244.39 387.529 244.39Z\" fill=\"#009EF7\"/>\r\n <path opacity=\"0.3\" d=\"M441.842 255.375C440.469 255.375 439.419 254.325 439.419 252.951V239.946C439.419 239.704 439.096 239.542 438.853 239.704L437.803 240.835L436.753 239.785C436.43 239.462 435.945 239.462 435.622 239.785L434.572 240.835L433.522 239.785C433.199 239.462 432.714 239.462 432.391 239.785L431.341 240.835L430.291 239.785C430.129 239.623 429.726 239.704 429.726 240.754V252.951C429.726 254.325 430.776 255.375 432.149 255.375H441.842Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M436.996 248.102H436.188C435.704 248.102 435.381 247.779 435.381 247.295C435.381 246.81 435.704 246.487 436.188 246.487H436.996C437.481 246.487 437.804 246.81 437.804 247.295C437.804 247.779 437.481 248.102 436.996 248.102ZM434.573 247.295C434.573 246.81 434.25 246.487 433.765 246.487H432.15C431.665 246.487 431.342 246.81 431.342 247.295C431.342 247.779 431.665 248.102 432.15 248.102H433.765C434.25 248.102 434.573 247.779 434.573 247.295ZM434.573 244.064C434.573 243.579 434.25 243.256 433.765 243.256H432.15C431.665 243.256 431.342 243.579 431.342 244.064C431.342 244.548 431.665 244.871 432.15 244.871H433.765C434.25 244.871 434.573 244.548 434.573 244.064ZM437.804 244.064C437.804 243.579 437.481 243.256 436.996 243.256H436.188C435.704 243.256 435.381 243.579 435.381 244.064C435.381 244.548 435.704 244.871 436.188 244.871H436.996C437.481 244.871 437.804 244.548 437.804 244.064ZM437.804 250.526C437.804 250.041 437.481 249.718 436.996 249.718H435.381C434.896 249.718 434.573 250.041 434.573 250.526C434.573 251.01 434.896 251.334 435.381 251.334H436.996C437.481 251.334 437.804 251.01 437.804 250.526Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M439.417 252.949C439.417 254.322 440.467 255.372 441.84 255.372C443.213 255.372 444.263 254.322 444.263 252.949V248.022C444.263 247.779 443.94 247.618 443.698 247.779L442.648 248.91L441.597 247.86C441.274 247.537 440.79 247.537 440.467 247.86L439.417 248.91V252.949Z\" fill=\"#A1A5B7\"/>\r\n <path opacity=\"0.3\" d=\"M471.916 242.774C471.431 242.774 471.108 242.45 471.108 241.966V240.35C471.108 239.866 471.431 239.542 471.916 239.542H473.531C474.016 239.542 474.339 239.866 474.339 240.35C474.339 240.835 474.016 241.158 473.531 241.158H472.723V241.966C472.723 242.45 472.4 242.774 471.916 242.774ZM487.263 241.966V240.35C487.263 239.866 486.94 239.542 486.455 239.542H484.84C484.355 239.542 484.032 239.866 484.032 240.35C484.032 240.835 484.355 241.158 484.84 241.158H485.648V241.966C485.648 242.45 485.971 242.774 486.455 242.774C486.94 242.774 487.263 242.45 487.263 241.966ZM474.339 254.89C474.339 254.405 474.016 254.082 473.531 254.082H472.723V253.274C472.723 252.79 472.4 252.467 471.916 252.467C471.431 252.467 471.108 252.79 471.108 253.274V254.89C471.108 255.375 471.431 255.698 471.916 255.698H473.531C474.016 255.698 474.339 255.375 474.339 254.89ZM487.263 254.89V253.274C487.263 252.79 486.94 252.467 486.455 252.467C485.971 252.467 485.648 252.79 485.648 253.274V254.082H484.84C484.355 254.082 484.032 254.405 484.032 254.89C484.032 255.375 484.355 255.698 484.84 255.698H486.455C486.94 255.698 487.263 255.375 487.263 254.89ZM482.417 246.812V245.197C482.417 243.42 480.963 241.966 479.186 241.966C477.408 241.966 475.955 243.42 475.955 245.197V246.812C475.308 246.812 474.743 247.378 474.743 248.024C474.743 248.67 475.308 249.236 475.955 249.236V250.043C475.955 251.821 477.408 253.274 479.186 253.274C480.963 253.274 482.417 251.821 482.417 250.043V249.236C483.063 249.236 483.628 248.67 483.628 248.024C483.628 247.378 483.063 246.812 482.417 246.812ZM480.316 250.043C480.559 250.043 480.801 250.286 480.72 250.528C480.478 251.174 479.913 251.659 479.186 251.659C478.459 251.659 477.893 251.255 477.651 250.609C477.57 250.367 477.732 250.043 478.055 250.043H480.316Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M476.926 248.348C476.845 248.267 476.845 248.186 476.845 248.105C476.765 247.782 477.007 247.379 477.33 247.298C477.653 247.217 478.057 247.459 478.138 247.782C478.138 247.863 478.138 247.944 478.138 248.025L476.926 248.348ZM481.45 248.348C481.53 248.267 481.53 248.186 481.53 248.105C481.611 247.782 481.369 247.379 481.046 247.298C480.723 247.217 480.319 247.459 480.238 247.782C480.238 247.863 480.238 247.944 480.238 248.025L481.45 248.348ZM482.419 243.824C482.661 243.582 482.823 243.34 482.984 243.017C482.661 243.017 482.257 243.017 481.934 242.936C481.611 242.855 481.369 242.693 481.127 242.532C480.642 242.128 479.996 241.966 479.349 241.886C477.492 241.805 476.038 243.42 476.038 245.278V247.136C476.684 246.571 477.088 245.844 477.249 245.198C478.38 245.278 480.319 244.955 481.207 244.632C481.369 245.521 481.853 246.409 482.5 247.136V245.198C482.5 244.794 482.419 244.39 482.257 243.986C482.257 243.986 482.338 243.905 482.419 243.824Z\" fill=\"#A1A5B7\"/>\r\n <path opacity=\"0.3\" d=\"M527.845 252.468H514.921C514.436 252.468 514.113 252.145 514.113 251.66V243.583C514.113 243.098 514.436 242.775 514.921 242.775H527.845C528.33 242.775 528.653 243.098 528.653 243.583V251.66C528.653 252.145 528.33 252.468 527.845 252.468ZM521.383 244.39C520.01 244.39 518.96 245.844 518.96 247.621C518.96 249.399 520.01 250.853 521.383 250.853C522.756 250.853 523.806 249.399 523.806 247.621C523.806 245.844 522.756 244.39 521.383 244.39Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M526.23 242.775H527.845C528.33 242.775 528.653 243.098 528.653 243.583V245.198C527.28 245.198 526.23 244.148 526.23 242.775ZM516.537 242.775H514.921C514.436 242.775 514.113 243.098 514.113 243.583V245.198C515.486 245.198 516.537 244.148 516.537 242.775ZM528.653 251.66V250.045C527.28 250.045 526.23 251.095 526.23 252.468H527.845C528.33 252.468 528.653 252.145 528.653 251.66ZM514.113 250.045V251.66C514.113 252.145 514.436 252.468 514.921 252.468H516.537C516.537 251.095 515.486 250.045 514.113 250.045Z\" fill=\"#A1A5B7\"/>\r\n </g>\r\n </g>\r\n <g filter=\"url(#filter8_ddd_3784_14918)\">\r\n <g clip-path=\"url(#clip14_3784_14918)\">\r\n <rect x=\"374.036\" y=\"179.389\" width=\"208.928\" height=\"92.7032\" rx=\"8.30178\" fill=\"white\"/>\r\n <path opacity=\"0.5\" d=\"M554.47 180.237L552.884 180.309L562.038 189.425L565.282 186.219C573.09 189.975 578.712 197.559 579.577 206.555H583.18C581.955 191.817 569.582 180.237 554.47 180.237ZM554.47 189.807C549.833 189.807 546.061 193.564 546.061 198.181C546.061 202.799 549.833 206.555 554.47 206.555C559.107 206.555 562.879 202.799 562.879 198.181C562.879 193.564 559.107 189.807 554.47 189.807ZM525.76 211.34C526.985 226.078 539.358 237.658 554.47 237.658L556.056 237.586L546.902 228.471L543.659 231.677C535.85 227.944 530.228 220.336 529.364 211.34H525.76ZM554.47 211.34C545.172 211.34 537.652 215.096 537.652 219.714V223.303H571.288V219.714C571.288 215.096 563.768 211.34 554.47 211.34Z\" fill=\"#DAF1FF\"/>\r\n <path d=\"M385.817 202.223V200.774L390.087 194.028H391.296V196.091H390.559L387.685 200.646V200.725H393.645V202.223H385.817ZM390.618 204.09V201.781L390.638 201.132V194.028H392.357V204.09H390.618ZM398.713 204.228C398.058 204.228 397.471 204.105 396.954 203.859C396.436 203.61 396.025 203.27 395.721 202.837C395.419 202.405 395.259 201.91 395.239 201.354H397.008C397.041 201.766 397.219 202.104 397.543 202.366C397.868 202.624 398.257 202.754 398.713 202.754C399.07 202.754 399.388 202.672 399.666 202.508C399.944 202.344 400.164 202.117 400.324 201.825C400.485 201.534 400.564 201.201 400.56 200.828C400.564 200.448 400.483 200.11 400.32 199.816C400.156 199.521 399.931 199.29 399.646 199.123C399.361 198.952 399.034 198.867 398.664 198.867C398.362 198.864 398.066 198.92 397.774 199.034C397.483 199.149 397.252 199.3 397.082 199.486L395.436 199.216L395.961 194.028H401.798V195.551H397.47L397.18 198.219H397.239C397.425 197.999 397.689 197.817 398.03 197.673C398.371 197.526 398.744 197.452 399.15 197.452C399.759 197.452 400.303 197.596 400.781 197.885C401.26 198.17 401.636 198.563 401.911 199.064C402.187 199.565 402.324 200.138 402.324 200.784C402.324 201.449 402.17 202.041 401.862 202.562C401.558 203.08 401.134 203.488 400.59 203.786C400.049 204.081 399.424 204.228 398.713 204.228ZM409.35 202.204V201.673C409.35 201.283 409.432 200.924 409.596 200.597C409.763 200.269 410.006 200.006 410.323 199.806C410.641 199.606 411.026 199.506 411.478 199.506C411.943 199.506 412.333 199.606 412.647 199.806C412.962 200.002 413.199 200.264 413.36 200.592C413.524 200.92 413.606 201.28 413.606 201.673V202.204C413.606 202.593 413.524 202.952 413.36 203.28C413.196 203.607 412.955 203.871 412.638 204.071C412.323 204.27 411.937 204.37 411.478 204.37C411.019 204.37 410.631 204.27 410.313 204.071C409.996 203.871 409.755 203.607 409.591 203.28C409.431 202.952 409.35 202.593 409.35 202.204ZM410.633 201.673V202.204C410.633 202.462 410.695 202.7 410.82 202.916C410.944 203.132 411.164 203.24 411.478 203.24C411.796 203.24 412.014 203.134 412.131 202.921C412.253 202.705 412.313 202.466 412.313 202.204V201.673C412.313 201.411 412.256 201.172 412.141 200.956C412.027 200.736 411.806 200.626 411.478 200.626C411.17 200.626 410.952 200.736 410.824 200.956C410.697 201.172 410.633 201.411 410.633 201.673ZM404.236 196.445V195.914C404.236 195.521 404.319 195.161 404.486 194.833C404.653 194.506 404.896 194.244 405.213 194.047C405.531 193.847 405.916 193.748 406.368 193.748C406.83 193.748 407.218 193.847 407.532 194.047C407.85 194.244 408.089 194.506 408.25 194.833C408.41 195.161 408.491 195.521 408.491 195.914V196.445C408.491 196.838 408.409 197.198 408.245 197.526C408.084 197.85 407.845 198.111 407.528 198.307C407.21 198.504 406.823 198.602 406.368 198.602C405.906 198.602 405.516 198.504 405.199 198.307C404.884 198.111 404.645 197.849 404.481 197.521C404.317 197.193 404.236 196.835 404.236 196.445ZM405.528 195.914V196.445C405.528 196.707 405.588 196.946 405.71 197.162C405.834 197.375 406.054 197.482 406.368 197.482C406.682 197.482 406.899 197.375 407.017 197.162C407.138 196.946 407.198 196.707 407.198 196.445V195.914C407.198 195.652 407.141 195.413 407.026 195.197C406.912 194.978 406.692 194.868 406.368 194.868C406.057 194.868 405.839 194.978 405.714 195.197C405.59 195.416 405.528 195.656 405.528 195.914ZM404.796 204.09L411.714 194.028H412.942L406.024 204.09H404.796Z\" fill=\"#344054\"/>\r\n <path d=\"M391.729 220.872H390.656C390.615 220.642 390.538 220.441 390.426 220.266C390.313 220.092 390.176 219.944 390.013 219.823C389.85 219.701 389.668 219.609 389.466 219.548C389.267 219.486 389.055 219.455 388.83 219.455C388.424 219.455 388.061 219.557 387.74 219.761C387.421 219.965 387.169 220.264 386.983 220.658C386.799 221.053 386.708 221.534 386.708 222.103C386.708 222.676 386.799 223.16 386.983 223.554C387.169 223.949 387.422 224.247 387.743 224.449C388.064 224.65 388.425 224.751 388.826 224.751C389.049 224.751 389.26 224.722 389.459 224.662C389.661 224.6 389.843 224.509 390.006 224.39C390.169 224.271 390.307 224.125 390.419 223.953C390.534 223.779 390.613 223.58 390.656 223.355L391.729 223.358C391.672 223.705 391.561 224.023 391.396 224.315C391.233 224.603 391.023 224.853 390.766 225.064C390.512 225.273 390.221 225.435 389.893 225.549C389.565 225.664 389.207 225.721 388.82 225.721C388.21 225.721 387.666 225.577 387.189 225.288C386.712 224.997 386.336 224.581 386.061 224.039C385.788 223.498 385.652 222.853 385.652 222.103C385.652 221.351 385.789 220.705 386.065 220.167C386.34 219.626 386.716 219.21 387.193 218.922C387.67 218.63 388.212 218.485 388.82 218.485C389.193 218.485 389.542 218.539 389.865 218.646C390.191 218.752 390.483 218.908 390.742 219.114C391.001 219.318 391.216 219.568 391.385 219.864C391.555 220.157 391.67 220.493 391.729 220.872ZM395.144 225.732C394.649 225.732 394.216 225.618 393.847 225.391C393.478 225.164 393.191 224.847 392.987 224.438C392.783 224.03 392.681 223.553 392.681 223.008C392.681 222.46 392.783 221.98 392.987 221.57C393.191 221.159 393.478 220.841 393.847 220.614C394.216 220.387 394.649 220.273 395.144 220.273C395.639 220.273 396.071 220.387 396.44 220.614C396.81 220.841 397.096 221.159 397.3 221.57C397.504 221.98 397.606 222.46 397.606 223.008C397.606 223.553 397.504 224.03 397.3 224.438C397.096 224.847 396.81 225.164 396.44 225.391C396.071 225.618 395.639 225.732 395.144 225.732ZM395.147 224.868C395.468 224.868 395.734 224.783 395.945 224.614C396.156 224.444 396.312 224.218 396.413 223.936C396.516 223.654 396.568 223.344 396.568 223.004C396.568 222.667 396.516 222.358 396.413 222.076C396.312 221.791 396.156 221.563 395.945 221.391C395.734 221.219 395.468 221.133 395.147 221.133C394.824 221.133 394.556 221.219 394.342 221.391C394.131 221.563 393.974 221.791 393.871 222.076C393.77 222.358 393.72 222.667 393.72 223.004C393.72 223.344 393.77 223.654 393.871 223.936C393.974 224.218 394.131 224.444 394.342 224.614C394.556 224.783 394.824 224.868 395.147 224.868ZM399.783 222.488V225.625H398.754V220.342H399.741V221.202H399.807C399.928 220.922 400.119 220.697 400.378 220.528C400.639 220.358 400.968 220.273 401.365 220.273C401.725 220.273 402.04 220.349 402.311 220.5C402.581 220.649 402.791 220.872 402.94 221.168C403.089 221.463 403.164 221.829 403.164 222.265V225.625H402.135V222.389C402.135 222.006 402.036 221.706 401.836 221.491C401.637 221.273 401.363 221.164 401.014 221.164C400.776 221.164 400.563 221.216 400.378 221.319C400.194 221.422 400.049 221.573 399.941 221.773C399.835 221.97 399.783 222.209 399.783 222.488ZM408.873 220.342L406.957 225.625H405.857L403.938 220.342H405.042L406.38 224.407H406.435L407.769 220.342H408.873ZM411.937 225.732C411.416 225.732 410.968 225.62 410.592 225.398C410.218 225.173 409.929 224.858 409.725 224.452C409.523 224.044 409.423 223.566 409.423 223.018C409.423 222.477 409.523 222 409.725 221.587C409.929 221.174 410.214 220.852 410.578 220.621C410.945 220.389 411.374 220.273 411.865 220.273C412.163 220.273 412.452 220.323 412.731 220.421C413.011 220.52 413.262 220.675 413.485 220.885C413.707 221.096 413.882 221.37 414.011 221.707C414.139 222.042 414.203 222.449 414.203 222.928V223.293H410.004V222.523H413.196C413.196 222.252 413.141 222.012 413.031 221.804C412.92 221.593 412.766 221.427 412.566 221.305C412.369 221.184 412.137 221.123 411.871 221.123C411.583 221.123 411.33 221.194 411.115 221.336C410.901 221.476 410.736 221.659 410.619 221.886C410.505 222.111 410.447 222.355 410.447 222.619V223.221C410.447 223.574 410.509 223.874 410.633 224.122C410.759 224.37 410.935 224.559 411.159 224.689C411.384 224.818 411.647 224.882 411.947 224.882C412.142 224.882 412.32 224.855 412.48 224.8C412.641 224.742 412.779 224.657 412.896 224.545C413.013 224.433 413.103 224.294 413.165 224.129L414.138 224.304C414.06 224.591 413.92 224.842 413.718 225.057C413.519 225.271 413.268 225.437 412.965 225.556C412.665 225.673 412.322 225.732 411.937 225.732ZM415.344 225.625V220.342H416.338V221.181H416.393C416.49 220.897 416.659 220.673 416.902 220.511C417.148 220.345 417.425 220.263 417.735 220.263C417.799 220.263 417.875 220.265 417.962 220.27C418.051 220.274 418.121 220.28 418.172 220.287V221.271C418.13 221.259 418.057 221.247 417.951 221.233C417.846 221.217 417.74 221.209 417.635 221.209C417.392 221.209 417.175 221.26 416.985 221.364C416.797 221.464 416.648 221.605 416.538 221.787C416.428 221.965 416.373 222.17 416.373 222.399V225.625H415.344ZM423.02 221.632L422.088 221.797C422.049 221.678 421.987 221.564 421.902 221.456C421.82 221.349 421.708 221.26 421.565 221.192C421.423 221.123 421.246 221.088 421.032 221.088C420.741 221.088 420.498 221.154 420.303 221.284C420.108 221.413 420.011 221.579 420.011 221.783C420.011 221.96 420.076 222.102 420.207 222.21C420.338 222.317 420.549 222.406 420.84 222.474L421.679 222.667C422.165 222.779 422.527 222.953 422.766 223.186C423.004 223.42 423.123 223.724 423.123 224.098C423.123 224.414 423.032 224.696 422.848 224.944C422.667 225.189 422.414 225.382 422.088 225.522C421.765 225.662 421.39 225.732 420.964 225.732C420.372 225.732 419.889 225.606 419.516 225.353C419.142 225.099 418.912 224.738 418.828 224.27L419.822 224.119C419.884 224.378 420.011 224.574 420.203 224.707C420.396 224.837 420.647 224.903 420.957 224.903C421.294 224.903 421.563 224.833 421.765 224.693C421.967 224.551 422.068 224.378 422.068 224.174C422.068 224.008 422.006 223.87 421.882 223.757C421.76 223.645 421.573 223.56 421.321 223.503L420.427 223.307C419.934 223.194 419.569 223.016 419.333 222.77C419.099 222.525 418.982 222.214 418.982 221.838C418.982 221.526 419.07 221.253 419.244 221.02C419.418 220.786 419.659 220.603 419.966 220.473C420.273 220.34 420.625 220.273 421.022 220.273C421.593 220.273 422.042 220.397 422.37 220.645C422.698 220.89 422.915 221.219 423.02 221.632ZM424.254 225.625V220.342H425.283V225.625H424.254ZM424.774 219.527C424.595 219.527 424.441 219.467 424.313 219.348C424.187 219.227 424.123 219.082 424.123 218.915C424.123 218.745 424.187 218.601 424.313 218.481C424.441 218.36 424.595 218.299 424.774 218.299C424.952 218.299 425.105 218.36 425.231 218.481C425.359 218.601 425.424 218.745 425.424 218.915C425.424 219.082 425.359 219.227 425.231 219.348C425.105 219.467 424.952 219.527 424.774 219.527ZM428.891 225.732C428.396 225.732 427.964 225.618 427.595 225.391C427.226 225.164 426.939 224.847 426.735 224.438C426.531 224.03 426.429 223.553 426.429 223.008C426.429 222.46 426.531 221.98 426.735 221.57C426.939 221.159 427.226 220.841 427.595 220.614C427.964 220.387 428.396 220.273 428.891 220.273C429.387 220.273 429.819 220.387 430.188 220.614C430.557 220.841 430.844 221.159 431.048 221.57C431.252 221.98 431.354 222.46 431.354 223.008C431.354 223.553 431.252 224.03 431.048 224.438C430.844 224.847 430.557 225.164 430.188 225.391C429.819 225.618 429.387 225.732 428.891 225.732ZM428.895 224.868C429.216 224.868 429.482 224.783 429.693 224.614C429.904 224.444 430.06 224.218 430.161 223.936C430.264 223.654 430.315 223.344 430.315 223.004C430.315 222.667 430.264 222.358 430.161 222.076C430.06 221.791 429.904 221.563 429.693 221.391C429.482 221.219 429.216 221.133 428.895 221.133C428.572 221.133 428.303 221.219 428.09 221.391C427.879 221.563 427.722 221.791 427.619 222.076C427.518 222.358 427.467 222.667 427.467 223.004C427.467 223.344 427.518 223.654 427.619 223.936C427.722 224.218 427.879 224.444 428.09 224.614C428.303 224.783 428.572 224.868 428.895 224.868ZM433.53 222.488V225.625H432.502V220.342H433.489V221.202H433.554C433.676 220.922 433.866 220.697 434.125 220.528C434.387 220.358 434.716 220.273 435.112 220.273C435.472 220.273 435.788 220.349 436.058 220.5C436.329 220.649 436.539 220.872 436.688 221.168C436.837 221.463 436.911 221.829 436.911 222.265V225.625H435.883V222.389C435.883 222.006 435.783 221.706 435.584 221.491C435.384 221.273 435.11 221.164 434.762 221.164C434.523 221.164 434.311 221.216 434.125 221.319C433.942 221.422 433.796 221.573 433.689 221.773C433.583 221.97 433.53 222.209 433.53 222.488ZM440.854 225.625V220.342H441.848V221.181H441.903C441.999 220.897 442.169 220.673 442.412 220.511C442.657 220.345 442.935 220.263 443.244 220.263C443.308 220.263 443.384 220.265 443.471 220.27C443.561 220.274 443.63 220.28 443.681 220.287V221.271C443.64 221.259 443.566 221.247 443.461 221.233C443.355 221.217 443.25 221.209 443.144 221.209C442.901 221.209 442.685 221.26 442.494 221.364C442.306 221.464 442.157 221.605 442.047 221.787C441.937 221.965 441.882 222.17 441.882 222.399V225.625H440.854ZM446.061 225.742C445.726 225.742 445.424 225.68 445.153 225.556C444.882 225.43 444.668 225.248 444.51 225.009C444.354 224.771 444.276 224.479 444.276 224.132C444.276 223.834 444.333 223.589 444.448 223.396C444.563 223.204 444.717 223.051 444.912 222.939C445.107 222.826 445.325 222.742 445.566 222.684C445.806 222.627 446.052 222.583 446.302 222.554C446.618 222.517 446.875 222.487 447.072 222.464C447.269 222.439 447.413 222.399 447.502 222.344C447.592 222.289 447.636 222.199 447.636 222.076V222.051C447.636 221.751 447.551 221.518 447.382 221.353C447.214 221.188 446.964 221.106 446.632 221.106C446.286 221.106 446.013 221.182 445.813 221.336C445.616 221.487 445.48 221.656 445.404 221.842L444.438 221.622C444.552 221.301 444.72 221.041 444.94 220.844C445.162 220.645 445.418 220.5 445.707 220.411C445.996 220.319 446.299 220.273 446.618 220.273C446.829 220.273 447.053 220.298 447.289 220.349C447.527 220.397 447.75 220.487 447.956 220.617C448.165 220.748 448.336 220.935 448.469 221.178C448.602 221.419 448.668 221.732 448.668 222.117V225.625H447.664V224.903H447.622C447.556 225.036 447.456 225.166 447.323 225.295C447.19 225.423 447.019 225.53 446.811 225.615C446.602 225.7 446.352 225.742 446.061 225.742ZM446.285 224.916C446.569 224.916 446.812 224.86 447.014 224.748C447.218 224.636 447.373 224.489 447.478 224.308C447.586 224.124 447.64 223.928 447.64 223.72V223.039C447.603 223.075 447.532 223.11 447.426 223.142C447.323 223.172 447.205 223.198 447.072 223.221C446.939 223.241 446.81 223.261 446.684 223.279C446.557 223.295 446.452 223.309 446.367 223.321C446.168 223.346 445.985 223.388 445.82 223.448C445.657 223.507 445.527 223.593 445.428 223.706C445.332 223.816 445.284 223.963 445.284 224.146C445.284 224.401 445.378 224.593 445.566 224.724C445.754 224.852 445.993 224.916 446.285 224.916ZM452.504 220.342V221.168H449.618V220.342H452.504ZM450.392 219.076H451.42V224.074C451.42 224.273 451.45 224.423 451.51 224.524C451.57 224.623 451.646 224.691 451.74 224.727C451.837 224.762 451.941 224.779 452.053 224.779C452.136 224.779 452.208 224.773 452.27 224.762C452.332 224.75 452.38 224.741 452.414 224.734L452.6 225.584C452.541 225.607 452.456 225.63 452.346 225.653C452.236 225.678 452.098 225.691 451.933 225.694C451.662 225.698 451.41 225.65 451.176 225.549C450.942 225.448 450.753 225.293 450.609 225.082C450.464 224.871 450.392 224.606 450.392 224.287V219.076ZM455.862 225.732C455.341 225.732 454.893 225.62 454.517 225.398C454.143 225.173 453.854 224.858 453.65 224.452C453.448 224.044 453.347 223.566 453.347 223.018C453.347 222.477 453.448 222 453.65 221.587C453.854 221.174 454.138 220.852 454.503 220.621C454.87 220.389 455.299 220.273 455.789 220.273C456.087 220.273 456.376 220.323 456.656 220.421C456.936 220.52 457.187 220.675 457.409 220.885C457.632 221.096 457.807 221.37 457.936 221.707C458.064 222.042 458.128 222.449 458.128 222.928V223.293H453.929V222.523H457.12C457.12 222.252 457.065 222.012 456.955 221.804C456.845 221.593 456.691 221.427 456.491 221.305C456.294 221.184 456.062 221.123 455.796 221.123C455.507 221.123 455.255 221.194 455.04 221.336C454.826 221.476 454.661 221.659 454.544 221.886C454.43 222.111 454.372 222.355 454.372 222.619V223.221C454.372 223.574 454.434 223.874 454.558 224.122C454.684 224.37 454.86 224.559 455.084 224.689C455.309 224.818 455.572 224.882 455.872 224.882C456.067 224.882 456.245 224.855 456.405 224.8C456.566 224.742 456.704 224.657 456.821 224.545C456.938 224.433 457.028 224.294 457.089 224.129L458.063 224.304C457.985 224.591 457.845 224.842 457.643 225.057C457.444 225.271 457.193 225.437 456.89 225.556C456.59 225.673 456.247 225.732 455.862 225.732Z\" fill=\"#667085\"/>\r\n <path opacity=\"0.3\" d=\"M402.877 253.274V251.659C402.877 251.174 402.554 250.851 402.069 250.851H391.568V240.35C391.568 239.866 391.245 239.542 390.76 239.542H389.145C388.66 239.542 388.337 239.866 388.337 240.35V253.274C388.337 253.759 388.66 254.082 389.145 254.082H402.069C402.554 254.082 402.877 253.759 402.877 253.274Z\" fill=\"#009EF7\"/>\r\n <path d=\"M401.261 241.966V254.891C401.261 255.375 400.938 255.698 400.453 255.698H398.838C398.353 255.698 398.03 255.375 398.03 254.891V244.39H391.568V241.159H400.453C400.938 241.159 401.261 241.482 401.261 241.966ZM387.529 244.39H388.337V241.159H387.529C387.044 241.159 386.721 241.482 386.721 241.966V243.582C386.721 244.067 387.044 244.39 387.529 244.39Z\" fill=\"#009EF7\"/>\r\n <path opacity=\"0.3\" d=\"M441.842 255.375C440.469 255.375 439.419 254.325 439.419 252.951V239.946C439.419 239.704 439.096 239.542 438.853 239.704L437.803 240.835L436.753 239.785C436.43 239.462 435.945 239.462 435.622 239.785L434.572 240.835L433.522 239.785C433.199 239.462 432.714 239.462 432.391 239.785L431.341 240.835L430.291 239.785C430.129 239.623 429.726 239.704 429.726 240.754V252.951C429.726 254.325 430.776 255.375 432.149 255.375H441.842Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M436.996 248.102H436.188C435.704 248.102 435.381 247.779 435.381 247.295C435.381 246.81 435.704 246.487 436.188 246.487H436.996C437.481 246.487 437.804 246.81 437.804 247.295C437.804 247.779 437.481 248.102 436.996 248.102ZM434.573 247.295C434.573 246.81 434.25 246.487 433.765 246.487H432.15C431.665 246.487 431.342 246.81 431.342 247.295C431.342 247.779 431.665 248.102 432.15 248.102H433.765C434.25 248.102 434.573 247.779 434.573 247.295ZM434.573 244.064C434.573 243.579 434.25 243.256 433.765 243.256H432.15C431.665 243.256 431.342 243.579 431.342 244.064C431.342 244.548 431.665 244.871 432.15 244.871H433.765C434.25 244.871 434.573 244.548 434.573 244.064ZM437.804 244.064C437.804 243.579 437.481 243.256 436.996 243.256H436.188C435.704 243.256 435.381 243.579 435.381 244.064C435.381 244.548 435.704 244.871 436.188 244.871H436.996C437.481 244.871 437.804 244.548 437.804 244.064ZM437.804 250.526C437.804 250.041 437.481 249.718 436.996 249.718H435.381C434.896 249.718 434.573 250.041 434.573 250.526C434.573 251.01 434.896 251.334 435.381 251.334H436.996C437.481 251.334 437.804 251.01 437.804 250.526Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M439.417 252.949C439.417 254.322 440.467 255.372 441.84 255.372C443.213 255.372 444.263 254.322 444.263 252.949V248.022C444.263 247.779 443.94 247.618 443.698 247.779L442.648 248.91L441.597 247.86C441.274 247.537 440.79 247.537 440.467 247.86L439.417 248.91V252.949Z\" fill=\"#A1A5B7\"/>\r\n <path opacity=\"0.3\" d=\"M471.916 242.774C471.431 242.774 471.108 242.45 471.108 241.966V240.35C471.108 239.866 471.431 239.542 471.916 239.542H473.531C474.016 239.542 474.339 239.866 474.339 240.35C474.339 240.835 474.016 241.158 473.531 241.158H472.723V241.966C472.723 242.45 472.4 242.774 471.916 242.774ZM487.263 241.966V240.35C487.263 239.866 486.94 239.542 486.455 239.542H484.84C484.355 239.542 484.032 239.866 484.032 240.35C484.032 240.835 484.355 241.158 484.84 241.158H485.648V241.966C485.648 242.45 485.971 242.774 486.455 242.774C486.94 242.774 487.263 242.45 487.263 241.966ZM474.339 254.89C474.339 254.405 474.016 254.082 473.531 254.082H472.723V253.274C472.723 252.79 472.4 252.467 471.916 252.467C471.431 252.467 471.108 252.79 471.108 253.274V254.89C471.108 255.375 471.431 255.698 471.916 255.698H473.531C474.016 255.698 474.339 255.375 474.339 254.89ZM487.263 254.89V253.274C487.263 252.79 486.94 252.467 486.455 252.467C485.971 252.467 485.648 252.79 485.648 253.274V254.082H484.84C484.355 254.082 484.032 254.405 484.032 254.89C484.032 255.375 484.355 255.698 484.84 255.698H486.455C486.94 255.698 487.263 255.375 487.263 254.89ZM482.417 246.812V245.197C482.417 243.42 480.963 241.966 479.186 241.966C477.408 241.966 475.955 243.42 475.955 245.197V246.812C475.308 246.812 474.743 247.378 474.743 248.024C474.743 248.67 475.308 249.236 475.955 249.236V250.043C475.955 251.821 477.408 253.274 479.186 253.274C480.963 253.274 482.417 251.821 482.417 250.043V249.236C483.063 249.236 483.628 248.67 483.628 248.024C483.628 247.378 483.063 246.812 482.417 246.812ZM480.316 250.043C480.559 250.043 480.801 250.286 480.72 250.528C480.478 251.174 479.913 251.659 479.186 251.659C478.459 251.659 477.893 251.255 477.651 250.609C477.57 250.367 477.732 250.043 478.055 250.043H480.316Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M476.926 248.348C476.845 248.267 476.845 248.186 476.845 248.105C476.765 247.782 477.007 247.379 477.33 247.298C477.653 247.217 478.057 247.459 478.138 247.782C478.138 247.863 478.138 247.944 478.138 248.025L476.926 248.348ZM481.45 248.348C481.53 248.267 481.53 248.186 481.53 248.105C481.611 247.782 481.369 247.379 481.046 247.298C480.723 247.217 480.319 247.459 480.238 247.782C480.238 247.863 480.238 247.944 480.238 248.025L481.45 248.348ZM482.419 243.824C482.661 243.582 482.823 243.34 482.984 243.017C482.661 243.017 482.257 243.017 481.934 242.936C481.611 242.855 481.369 242.693 481.127 242.532C480.642 242.128 479.996 241.966 479.349 241.886C477.492 241.805 476.038 243.42 476.038 245.278V247.136C476.684 246.571 477.088 245.844 477.249 245.198C478.38 245.278 480.319 244.955 481.207 244.632C481.369 245.521 481.853 246.409 482.5 247.136V245.198C482.5 244.794 482.419 244.39 482.257 243.986C482.257 243.986 482.338 243.905 482.419 243.824Z\" fill=\"#A1A5B7\"/>\r\n <path opacity=\"0.3\" d=\"M527.845 252.468H514.921C514.436 252.468 514.113 252.145 514.113 251.66V243.583C514.113 243.098 514.436 242.775 514.921 242.775H527.845C528.33 242.775 528.653 243.098 528.653 243.583V251.66C528.653 252.145 528.33 252.468 527.845 252.468ZM521.383 244.39C520.01 244.39 518.96 245.844 518.96 247.621C518.96 249.399 520.01 250.853 521.383 250.853C522.756 250.853 523.806 249.399 523.806 247.621C523.806 245.844 522.756 244.39 521.383 244.39Z\" fill=\"#A1A5B7\"/>\r\n <path d=\"M526.23 242.775H527.845C528.33 242.775 528.653 243.098 528.653 243.583V245.198C527.28 245.198 526.23 244.148 526.23 242.775ZM516.537 242.775H514.921C514.436 242.775 514.113 243.098 514.113 243.583V245.198C515.486 245.198 516.537 244.148 516.537 242.775ZM528.653 251.66V250.045C527.28 250.045 526.23 251.095 526.23 252.468H527.845C528.33 252.468 528.653 252.145 528.653 251.66ZM514.113 250.045V251.66C514.113 252.145 514.436 252.468 514.921 252.468H516.537C516.537 251.095 515.486 250.045 514.113 250.045Z\" fill=\"#A1A5B7\"/>\r\n </g>\r\n </g>\r\n <g filter=\"url(#filter9_ddd_3784_14918)\">\r\n <g clip-path=\"url(#clip15_3784_14918)\">\r\n <rect x=\"306.614\" y=\"395.621\" width=\"253.372\" height=\"105.379\" rx=\"6.75188\" fill=\"white\"/>\r\n <g filter=\"url(#filter10_d_3784_14918)\">\r\n <path d=\"M306.965 401.236C306.965 398.329 309.322 395.972 312.229 395.972H559.635V437.382H312.229C309.322 437.382 306.965 435.025 306.965 432.118V401.236Z\" fill=\"white\"/>\r\n <path d=\"M306.965 401.236C306.965 398.329 309.322 395.972 312.229 395.972H559.635V437.382H312.229C309.322 437.382 306.965 435.025 306.965 432.118V401.236Z\" stroke=\"#F2F4F7\" stroke-width=\"0.701862\"/>\r\n <rect x=\"312.229\" y=\"401.236\" width=\"30.8819\" height=\"30.8819\" rx=\"8.42234\" fill=\"#EAF8FF\"/>\r\n <path d=\"M330.526 414.342C329.933 414.342 329.433 414.872 329.409 415.526C329.385 416.18 329.845 416.711 330.437 416.711C331.03 416.711 331.531 416.18 331.554 415.526C331.579 414.872 331.119 414.342 330.526 414.342Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M332.826 412.386L329.738 412.678L329.721 412.709C329.562 413 329.416 413.304 329.273 413.605L332.115 413.33C332.289 413.314 332.43 413.43 332.43 413.608V416.743C332.43 416.921 332.289 417.088 332.115 417.113L328.994 417.563C328.82 417.588 328.678 417.462 328.678 417.284V414.894C328.594 415.078 328.511 415.264 328.423 415.444C328.365 415.561 328.298 415.696 328.217 415.798C328.197 415.823 328.176 415.847 328.149 415.865C328.056 415.936 327.935 415.931 327.822 415.909V418.013C327.822 418.267 328.029 418.445 328.282 418.41L332.826 417.769C333.08 417.733 333.287 417.497 333.287 417.243V412.781C333.287 412.529 333.08 412.362 332.826 412.386Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M333.412 415.433V412.781C333.412 412.45 333.137 412.23 332.815 412.26L329.815 412.544C329.867 412.46 329.927 412.381 329.998 412.322C330.092 412.245 330.206 412.207 330.324 412.179C330.534 412.13 330.769 412.11 330.983 412.091C331.575 412.041 332.172 412.01 332.767 411.982C333.383 411.951 333.998 411.924 334.614 411.9C334.879 411.888 335.145 411.88 335.411 411.866C335.459 411.864 335.508 411.861 335.555 411.856C335.587 411.852 335.618 411.844 335.643 411.829C335.671 411.87 335.694 411.918 335.709 411.974C335.736 412.08 335.736 412.214 335.696 412.385C335.658 412.556 335.578 412.764 335.256 413.289C334.933 413.813 334.366 414.653 334.025 415.068C333.685 415.485 333.571 415.476 333.436 415.439C333.428 415.438 333.421 415.435 333.412 415.433Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M334.609 411.773C333.692 411.81 331.923 411.885 330.972 411.966C330.023 412.048 329.891 412.135 329.611 412.648C329.33 413.162 328.901 414.101 328.625 414.705C328.349 415.311 328.227 415.583 328.119 415.719C328.011 415.855 327.916 415.855 326.704 415.394C325.49 414.934 323.159 414.013 321.791 413.462C320.424 412.912 320.021 412.732 319.815 412.628C319.61 412.525 319.6 412.499 319.619 412.229C319.636 411.959 319.68 411.446 319.758 411.139C319.837 410.831 319.951 410.731 320.133 410.615C320.314 410.498 320.565 410.366 320.74 410.299C320.915 410.231 321.015 410.227 321.652 410.222C322.29 410.217 323.463 410.213 324.113 410.22C324.764 410.227 324.89 410.244 326.627 410.47C328.363 410.696 331.708 411.13 333.429 411.356C335.15 411.583 335.246 411.6 335.346 411.629C335.447 411.657 335.552 411.696 335.572 411.716C335.592 411.735 335.526 411.735 334.609 411.773Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M319.929 412.824C320.058 412.882 320.188 412.938 320.319 412.994C320.79 413.195 321.268 413.387 321.744 413.58C322.509 413.887 323.277 414.191 324.045 414.495C324.914 414.838 325.785 415.18 326.659 415.512C326.872 415.594 327.088 415.675 327.304 415.752C327.433 415.797 327.564 415.843 327.697 415.879V418.013C327.697 418.08 327.708 418.144 327.728 418.201C327.606 418.149 327.467 418.083 327.301 417.998C326.826 417.756 326.13 417.356 324.963 416.747C323.797 416.136 322.158 415.317 321.268 414.834C320.377 414.352 320.232 414.206 320.129 414.029C320.026 413.851 319.965 413.641 319.941 413.358C319.928 413.198 319.925 413.015 319.929 412.824Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M324.426 417.391C324.338 417.105 324.293 416.816 324.261 416.525C324.476 416.635 324.69 416.747 324.905 416.859C325.383 417.109 325.858 417.364 326.331 417.621C326.605 417.771 326.879 417.921 327.155 418.065C327.039 418.257 326.887 418.437 326.706 418.565C326.442 418.754 326.115 418.833 325.812 418.815C325.511 418.798 325.233 418.683 324.992 418.431C324.751 418.18 324.548 417.789 324.426 417.391Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M325.536 417.707C325.4 417.707 325.29 417.818 325.29 417.955C325.29 418.09 325.4 418.201 325.536 418.201C325.672 418.201 325.783 418.09 325.783 417.955C325.783 417.818 325.672 417.707 325.536 417.707Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M324.823 418.432V421.241C325.444 421.413 326.103 421.403 326.794 421.241V418.657C326.789 418.661 326.784 418.665 326.779 418.668C326.499 418.867 326.147 418.961 325.805 418.942C325.45 418.921 325.148 418.778 324.901 418.519C324.874 418.491 324.848 418.462 324.823 418.432Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M327.299 421.281C326.31 421.679 325.277 421.618 324.219 421.281V422.534C325.317 423.04 326.341 423.021 327.299 422.534V421.281Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M323.177 419.823C323.365 419.918 323.568 420.024 323.783 420.136C323.716 420.138 323.648 420.127 323.584 420.107C323.455 420.069 323.337 419.99 323.243 419.895C323.221 419.871 323.198 419.847 323.177 419.823Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M324.366 420.437L324.698 420.608V421.016C324.634 421.046 324.58 421.072 324.533 421.093C324.344 421.178 324.31 421.173 323.855 420.95C323.401 420.728 322.522 420.288 321.911 419.983C321.3 419.679 320.957 419.513 320.801 419.423C320.646 419.335 320.679 419.324 320.88 419.293C321.082 419.26 321.452 419.208 321.65 419.182C321.828 419.16 321.87 419.16 322.261 419.354C322.343 419.476 322.416 419.604 322.488 419.721C322.707 420.081 322.938 420.412 323.347 420.571C323.615 420.674 323.913 420.683 324.176 420.559C324.246 420.525 324.309 420.484 324.366 420.437Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M320.702 420.291C320.694 420.117 320.687 419.815 320.681 419.498C320.7 419.512 320.72 419.523 320.739 419.534C320.865 419.606 320.999 419.671 321.129 419.736C321.371 419.856 321.613 419.976 321.855 420.096C322.503 420.418 323.15 420.747 323.8 421.064C323.895 421.111 323.994 421.161 324.093 421.202V421.943C323.937 422.001 323.794 422.011 323.697 422.006C323.558 422 323.514 421.963 323.037 421.717C322.559 421.469 321.648 421.013 321.186 420.768C320.725 420.522 320.712 420.487 320.702 420.291Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M322.977 417.784L319.904 418.159C319.825 418.169 319.759 418.243 319.759 418.324V423.005C319.759 423.086 319.826 423.154 319.904 423.134L322.977 422.338C323.056 422.318 323.123 422.254 323.123 422.173V421.903C323.074 421.878 323.027 421.853 322.979 421.828C322.363 421.51 321.74 421.204 321.128 420.88C321.01 420.816 320.881 420.75 320.773 420.673C320.7 420.621 320.638 420.562 320.604 420.477C320.583 420.418 320.579 420.359 320.576 420.298C320.566 420.094 320.562 419.886 320.558 419.681C320.556 419.554 320.537 419.403 320.591 419.288C320.633 419.193 320.769 419.182 320.861 419.167C321.118 419.127 321.378 419.09 321.636 419.058C321.683 419.052 321.731 419.045 321.78 419.047C321.872 419.048 321.955 419.075 322.038 419.11C322.056 419.117 322.075 419.125 322.092 419.134C322.055 419.091 322.015 419.052 321.973 419.014C321.9 418.952 321.821 418.901 321.731 418.864C321.607 418.81 321.529 418.812 321.399 418.812C321.194 418.812 321.081 418.594 321.175 418.424C321.221 418.341 321.304 418.295 321.399 418.295H321.464C322.14 418.295 322.472 418.741 322.796 419.263C322.862 419.37 322.93 419.482 323.002 419.59L323.123 419.651V417.914C323.123 417.833 323.057 417.774 322.977 417.784Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M320.459 418.596C320.36 418.596 320.278 418.691 320.278 418.807C320.278 418.923 320.36 419.018 320.459 419.018C320.558 419.018 320.639 418.923 320.639 418.807C320.639 418.691 320.558 418.596 320.459 418.596Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M322.647 418.315C322.548 418.303 322.457 418.387 322.444 418.503C322.43 418.619 322.5 418.722 322.599 418.733C322.698 418.744 322.789 418.66 322.802 418.545C322.816 418.43 322.747 418.326 322.647 418.315Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M322.621 421.73C322.522 421.719 322.431 421.804 322.418 421.919C322.404 422.034 322.473 422.137 322.573 422.148C322.672 422.16 322.763 422.076 322.776 421.96C322.79 421.845 322.72 421.741 322.621 421.73Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M320.46 422.19C320.361 422.179 320.27 422.264 320.257 422.379C320.243 422.495 320.313 422.598 320.412 422.61C320.511 422.621 320.602 422.536 320.615 422.42C320.629 422.305 320.56 422.203 320.46 422.19Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M321.979 415.353C321.875 415.55 321.847 415.756 321.973 416.033C322.389 416.937 324.313 417.943 324.369 419.394C324.406 420.382 323.609 420.449 323.154 419.983C322.626 419.443 322.425 418.422 321.464 418.422H321.399C321.225 418.422 321.225 418.686 321.399 418.686C321.535 418.686 321.629 418.683 321.781 418.747C322.521 419.06 322.59 420.142 323.392 420.453C323.875 420.64 324.369 420.453 324.55 419.958C324.682 419.6 324.644 419.145 324.508 418.763C324.014 417.385 322.101 416.379 322.154 415.658C322.158 415.593 322.181 415.532 322.212 415.474L322.207 415.47C322.131 415.431 322.055 415.393 321.979 415.353Z\" fill=\"#00A3FF\"/>\r\n <path d=\"M356.911 411.489V420.677H355.247V411.489H356.911ZM360.266 416.639V420.677H358.642V413.786H360.194V414.957H360.275C360.434 414.571 360.686 414.264 361.033 414.037C361.383 413.81 361.815 413.696 362.33 413.696C362.805 413.696 363.22 413.798 363.573 414.001C363.928 414.204 364.204 414.499 364.398 414.885C364.595 415.271 364.693 415.739 364.69 416.289V420.677H363.066V416.54C363.066 416.08 362.946 415.719 362.707 415.459C362.47 415.199 362.143 415.069 361.724 415.069C361.44 415.069 361.187 415.132 360.966 415.257C360.748 415.38 360.576 415.558 360.45 415.791C360.327 416.024 360.266 416.307 360.266 416.639ZM369.831 413.786V415.042H365.757V413.786H369.831ZM366.776 420.677V413.135C366.776 412.672 366.872 412.286 367.063 411.978C367.257 411.67 367.518 411.439 367.844 411.287C368.17 411.134 368.531 411.058 368.929 411.058C369.21 411.058 369.46 411.08 369.678 411.125C369.897 411.17 370.058 411.211 370.163 411.246L369.84 412.503C369.771 412.482 369.684 412.461 369.58 412.44C369.475 412.416 369.358 412.404 369.23 412.404C368.928 412.404 368.714 412.477 368.588 412.624C368.466 412.767 368.404 412.974 368.404 413.243V420.677H366.776ZM371.103 420.677V413.786H372.678V414.934H372.749C372.875 414.536 373.09 414.23 373.395 414.015C373.703 413.796 374.055 413.687 374.45 413.687C374.539 413.687 374.64 413.692 374.75 413.701C374.864 413.706 374.958 413.717 375.033 413.732V415.226C374.964 415.202 374.855 415.181 374.705 415.163C374.559 415.142 374.417 415.132 374.279 415.132C373.983 415.132 373.717 415.196 373.481 415.325C373.247 415.45 373.063 415.625 372.929 415.849C372.794 416.074 372.727 416.332 372.727 416.626V420.677H371.103ZM377.971 420.816C377.535 420.816 377.141 420.738 376.792 420.583C376.445 420.424 376.169 420.191 375.966 419.883C375.766 419.575 375.665 419.195 375.665 418.743C375.665 418.354 375.737 418.033 375.881 417.779C376.024 417.524 376.22 417.321 376.469 417.168C376.717 417.016 376.996 416.901 377.307 416.823C377.622 416.742 377.946 416.684 378.281 416.648C378.685 416.606 379.012 416.569 379.264 416.536C379.515 416.5 379.697 416.446 379.811 416.374C379.927 416.3 379.986 416.184 379.986 416.029V416.002C379.986 415.664 379.886 415.402 379.685 415.217C379.485 415.031 379.196 414.939 378.819 414.939C378.422 414.939 378.106 415.025 377.873 415.199C377.642 415.372 377.487 415.577 377.406 415.814L375.89 415.598C376.009 415.18 376.207 414.83 376.482 414.548C376.757 414.264 377.094 414.052 377.491 413.911C377.889 413.768 378.329 413.696 378.81 413.696C379.142 413.696 379.473 413.735 379.802 413.813C380.131 413.89 380.431 414.019 380.704 414.198C380.976 414.375 381.194 414.616 381.359 414.921C381.526 415.226 381.61 415.607 381.61 416.065V420.677H380.049V419.73H379.995C379.896 419.922 379.757 420.101 379.578 420.269C379.401 420.433 379.178 420.566 378.909 420.668C378.643 420.766 378.33 420.816 377.971 420.816ZM378.393 419.622C378.719 419.622 379.002 419.558 379.241 419.43C379.48 419.298 379.664 419.124 379.793 418.909C379.925 418.694 379.99 418.459 379.99 418.205V417.393C379.939 417.435 379.853 417.474 379.73 417.509C379.61 417.545 379.476 417.577 379.326 417.604C379.177 417.631 379.029 417.654 378.882 417.675C378.736 417.696 378.609 417.714 378.501 417.729C378.259 417.762 378.042 417.816 377.85 417.891C377.659 417.966 377.508 418.07 377.397 418.205C377.287 418.336 377.231 418.507 377.231 418.716C377.231 419.015 377.34 419.241 377.559 419.394C377.777 419.546 378.055 419.622 378.393 419.622ZM386.448 420.677V411.489H388.113V415.378H392.37V411.489H394.039V420.677H392.37V416.774H388.113V420.677H386.448ZM398.828 420.811C398.138 420.811 397.541 420.668 397.038 420.381C396.539 420.091 396.155 419.681 395.885 419.151C395.616 418.619 395.482 417.992 395.482 417.272C395.482 416.563 395.616 415.941 395.885 415.405C396.158 414.867 396.537 414.448 397.025 414.149C397.512 413.847 398.085 413.696 398.743 413.696C399.168 413.696 399.569 413.765 399.946 413.902C400.325 414.037 400.66 414.246 400.95 414.53C401.244 414.815 401.474 415.177 401.641 415.616C401.809 416.053 401.893 416.573 401.893 417.177V417.675H396.244V416.581H400.336C400.333 416.27 400.266 415.993 400.134 415.751C400.002 415.506 399.818 415.313 399.582 415.172C399.349 415.031 399.077 414.961 398.766 414.961C398.434 414.961 398.142 415.042 397.891 415.203C397.64 415.362 397.444 415.571 397.303 415.832C397.165 416.089 397.095 416.371 397.092 416.679V417.635C397.092 418.036 397.165 418.38 397.312 418.667C397.459 418.951 397.663 419.169 397.927 419.322C398.19 419.471 398.498 419.546 398.851 419.546C399.087 419.546 399.301 419.513 399.492 419.448C399.684 419.379 399.85 419.279 399.99 419.147C400.131 419.015 400.237 418.852 400.309 418.658L401.825 418.828C401.73 419.229 401.547 419.579 401.278 419.878C401.012 420.174 400.671 420.405 400.255 420.569C399.839 420.731 399.364 420.811 398.828 420.811ZM405.249 420.816C404.813 420.816 404.42 420.738 404.07 420.583C403.723 420.424 403.447 420.191 403.244 419.883C403.044 419.575 402.943 419.195 402.943 418.743C402.943 418.354 403.015 418.033 403.159 417.779C403.302 417.524 403.498 417.321 403.747 417.168C403.995 417.016 404.274 416.901 404.585 416.823C404.9 416.742 405.224 416.684 405.559 416.648C405.963 416.606 406.29 416.569 406.542 416.536C406.793 416.5 406.975 416.446 407.089 416.374C407.206 416.3 407.264 416.184 407.264 416.029V416.002C407.264 415.664 407.164 415.402 406.963 415.217C406.763 415.031 406.474 414.939 406.097 414.939C405.7 414.939 405.384 415.025 405.151 415.199C404.92 415.372 404.765 415.577 404.684 415.814L403.168 415.598C403.287 415.18 403.485 414.83 403.76 414.548C404.035 414.264 404.372 414.052 404.769 413.911C405.167 413.768 405.607 413.696 406.088 413.696C406.42 413.696 406.751 413.735 407.08 413.813C407.409 413.89 407.709 414.019 407.982 414.198C408.254 414.375 408.472 414.616 408.637 414.921C408.804 415.226 408.888 415.607 408.888 416.065V420.677H407.327V419.73H407.273C407.174 419.922 407.035 420.101 406.856 420.269C406.679 420.433 406.456 420.566 406.187 420.668C405.921 420.766 405.608 420.816 405.249 420.816ZM405.671 419.622C405.997 419.622 406.28 419.558 406.519 419.43C406.758 419.298 406.942 419.124 407.071 418.909C407.203 418.694 407.268 418.459 407.268 418.205V417.393C407.217 417.435 407.131 417.474 407.008 417.509C406.888 417.545 406.754 417.577 406.604 417.604C406.455 417.631 406.307 417.654 406.16 417.675C406.014 417.696 405.887 417.714 405.779 417.729C405.537 417.762 405.32 417.816 405.128 417.891C404.937 417.966 404.786 418.07 404.675 418.205C404.565 418.336 404.509 418.507 404.509 418.716C404.509 419.015 404.618 419.241 404.837 419.394C405.055 419.546 405.333 419.622 405.671 419.622ZM412.145 411.489V420.677H410.521V411.489H412.145ZM417.256 413.786V415.042H413.295V413.786H417.256ZM414.273 412.135H415.897V418.604C415.897 418.822 415.93 418.99 415.995 419.107C416.064 419.22 416.154 419.298 416.265 419.34C416.375 419.382 416.498 419.403 416.632 419.403C416.734 419.403 416.827 419.395 416.911 419.38C416.997 419.365 417.063 419.352 417.108 419.34L417.382 420.609C417.295 420.639 417.171 420.672 417.009 420.708C416.851 420.744 416.656 420.765 416.426 420.771C416.019 420.783 415.653 420.722 415.327 420.587C415.001 420.449 414.742 420.237 414.551 419.95C414.362 419.663 414.27 419.304 414.273 418.873V412.135ZM420.386 416.639V420.677H418.762V411.489H420.35V414.957H420.431C420.593 414.568 420.842 414.261 421.18 414.037C421.521 413.81 421.955 413.696 422.481 413.696C422.96 413.696 423.377 413.796 423.733 413.997C424.089 414.197 424.364 414.49 424.559 414.876C424.756 415.262 424.855 415.733 424.855 416.289V420.677H423.231V416.54C423.231 416.077 423.111 415.716 422.872 415.459C422.636 415.199 422.304 415.069 421.876 415.069C421.589 415.069 421.331 415.132 421.104 415.257C420.88 415.38 420.703 415.558 420.575 415.791C420.449 416.024 420.386 416.307 420.386 416.639Z\" fill=\"#101828\"/>\r\n <g clip-path=\"url(#clip16_3784_14918)\">\r\n <path d=\"M437.571 418.549V416.677M437.571 414.805H437.575M442.25 416.677C442.25 419.261 440.155 421.356 437.571 421.356C434.986 421.356 432.892 419.261 432.892 416.677C432.892 414.093 434.986 411.998 437.571 411.998C440.155 411.998 442.25 414.093 442.25 416.677Z\" stroke=\"#98A2B3\" stroke-width=\"1.40372\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </g>\r\n <path d=\"M306.965 443.348C306.965 440.441 309.322 438.084 312.229 438.084H559.635V500.649H312.229C309.322 500.649 306.965 498.292 306.965 495.385V443.348Z\" fill=\"white\"/>\r\n <path d=\"M306.965 443.348C306.965 440.441 309.322 438.084 312.229 438.084H559.635V500.649H312.229C309.322 500.649 306.965 498.292 306.965 495.385V443.348Z\" stroke=\"#F2F4F7\" stroke-width=\"0.701862\"/>\r\n <path d=\"M318.712 463.69V461.925L323.91 453.712H325.381V456.225H324.484L320.985 461.77V461.865H328.241V463.69H318.712ZM324.556 465.963V463.151L324.58 462.362V453.712H326.673V465.963H324.556ZM334.411 466.13C333.613 466.13 332.899 465.981 332.269 465.682C331.639 465.379 331.139 464.964 330.768 464.438C330.401 463.911 330.206 463.309 330.182 462.631H332.335C332.375 463.134 332.592 463.544 332.987 463.863C333.382 464.178 333.856 464.336 334.411 464.336C334.845 464.336 335.232 464.236 335.571 464.037C335.91 463.837 336.177 463.56 336.373 463.205C336.568 462.85 336.664 462.446 336.66 461.991C336.664 461.528 336.566 461.118 336.367 460.759C336.167 460.4 335.894 460.119 335.547 459.915C335.2 459.708 334.802 459.604 334.351 459.604C333.984 459.6 333.623 459.668 333.268 459.808C332.913 459.947 332.632 460.131 332.425 460.358L330.421 460.029L331.061 453.712H338.167V455.567H332.897L332.544 458.815H332.616C332.844 458.547 333.165 458.326 333.579 458.151C333.994 457.971 334.449 457.882 334.943 457.882C335.685 457.882 336.347 458.057 336.929 458.408C337.511 458.755 337.97 459.233 338.305 459.844C338.64 460.454 338.807 461.152 338.807 461.937C338.807 462.747 338.62 463.468 338.245 464.103C337.874 464.733 337.358 465.229 336.696 465.592C336.038 465.951 335.276 466.13 334.411 466.13ZM340.835 465.963V456.775H342.905V458.336H343.013C343.204 457.81 343.521 457.399 343.964 457.104C344.406 456.805 344.935 456.655 345.549 456.655C346.171 456.655 346.695 456.807 347.122 457.11C347.553 457.409 347.856 457.818 348.031 458.336H348.127C348.33 457.826 348.673 457.419 349.156 457.116C349.642 456.809 350.219 456.655 350.885 456.655C351.73 456.655 352.42 456.922 352.954 457.457C353.489 457.991 353.756 458.771 353.756 459.796V465.963H351.584V460.131C351.584 459.56 351.433 459.144 351.13 458.88C350.827 458.613 350.456 458.48 350.017 458.48C349.495 458.48 349.086 458.643 348.791 458.97C348.5 459.293 348.354 459.714 348.354 460.232V465.963H346.231V460.041C346.231 459.566 346.087 459.188 345.8 458.904C345.517 458.621 345.146 458.48 344.687 458.48C344.376 458.48 344.093 458.559 343.838 458.719C343.583 458.874 343.379 459.096 343.228 459.383C343.076 459.666 343.001 459.997 343.001 460.376V465.963H340.835ZM355.953 465.963V456.775H358.118V465.963H355.953ZM357.041 455.471C356.698 455.471 356.403 455.357 356.156 455.13C355.909 454.899 355.785 454.621 355.785 454.298C355.785 453.971 355.909 453.694 356.156 453.467C356.403 453.236 356.698 453.12 357.041 453.12C357.388 453.12 357.683 453.236 357.927 453.467C358.174 453.694 358.297 453.971 358.297 454.298C358.297 454.621 358.174 454.899 357.927 455.13C357.683 455.357 357.388 455.471 357.041 455.471ZM362.51 460.579V465.963H360.345V456.775H362.414V458.336H362.522C362.733 457.822 363.07 457.413 363.533 457.11C364 456.807 364.576 456.655 365.262 456.655C365.896 456.655 366.448 456.791 366.919 457.062C367.393 457.333 367.76 457.726 368.019 458.24C368.283 458.755 368.412 459.379 368.408 460.113V465.963H366.243V460.448C366.243 459.834 366.083 459.353 365.764 459.006C365.449 458.659 365.013 458.486 364.454 458.486C364.075 458.486 363.738 458.569 363.443 458.737C363.152 458.9 362.923 459.138 362.755 459.449C362.592 459.76 362.51 460.137 362.51 460.579ZM377.871 459.203L375.897 459.419C375.842 459.219 375.744 459.032 375.604 458.857C375.469 458.681 375.285 458.54 375.054 458.432C374.823 458.324 374.54 458.27 374.205 458.27C373.754 458.27 373.375 458.368 373.068 458.563C372.765 458.759 372.615 459.012 372.619 459.323C372.615 459.59 372.713 459.808 372.912 459.975C373.116 460.143 373.451 460.28 373.917 460.388L375.485 460.723C376.354 460.91 377 461.207 377.423 461.614C377.849 462.021 378.065 462.553 378.069 463.211C378.065 463.79 377.895 464.3 377.56 464.743C377.229 465.181 376.769 465.524 376.179 465.771C375.588 466.019 374.91 466.142 374.145 466.142C373.02 466.142 372.115 465.907 371.429 465.436C370.743 464.962 370.334 464.302 370.203 463.457L372.314 463.253C372.41 463.668 372.613 463.981 372.924 464.192C373.235 464.404 373.64 464.509 374.139 464.509C374.653 464.509 375.066 464.404 375.377 464.192C375.692 463.981 375.85 463.72 375.85 463.409C375.85 463.145 375.748 462.928 375.544 462.757C375.345 462.585 375.034 462.454 374.611 462.362L373.044 462.033C372.163 461.849 371.511 461.54 371.088 461.106C370.665 460.667 370.456 460.113 370.46 459.443C370.456 458.876 370.609 458.386 370.921 457.971C371.236 457.553 371.672 457.229 372.231 457.002C372.793 456.771 373.441 456.655 374.175 456.655C375.251 456.655 376.099 456.885 376.717 457.343C377.339 457.802 377.724 458.422 377.871 459.203Z\" fill=\"#101828\"/>\r\n <path d=\"M319.233 485.771H318.088L320.66 478.624H321.906L324.478 485.771H323.333L321.313 479.922H321.257L319.233 485.771ZM319.425 482.972H323.138V483.879H319.425V482.972ZM329.339 480.411L327.396 485.771H326.279L324.332 480.411H325.452L326.809 484.535H326.865L328.219 480.411H329.339ZM332.384 487.892C331.959 487.892 331.592 487.836 331.285 487.725C330.981 487.613 330.732 487.465 330.539 487.281C330.345 487.098 330.201 486.896 330.106 486.678L331.003 486.308C331.065 486.41 331.149 486.518 331.254 486.632C331.361 486.749 331.505 486.848 331.687 486.929C331.87 487.01 332.106 487.051 332.395 487.051C332.79 487.051 333.117 486.955 333.375 486.761C333.634 486.571 333.763 486.266 333.763 485.847V484.793H333.696C333.634 484.907 333.543 485.034 333.424 485.174C333.308 485.313 333.147 485.434 332.943 485.537C332.738 485.639 332.472 485.69 332.144 485.69C331.72 485.69 331.339 485.591 330.999 485.394C330.662 485.194 330.394 484.899 330.197 484.511C330.001 484.12 329.903 483.64 329.903 483.07C329.903 482.5 330 482.011 330.193 481.604C330.389 481.197 330.656 480.885 330.996 480.669C331.335 480.45 331.72 480.341 332.151 480.341C332.483 480.341 332.752 480.397 332.957 480.509C333.161 480.618 333.321 480.746 333.435 480.892C333.551 481.039 333.641 481.168 333.703 481.28H333.78V480.411H334.803V485.889C334.803 486.35 334.696 486.728 334.482 487.023C334.268 487.319 333.978 487.537 333.613 487.679C333.25 487.821 332.84 487.892 332.384 487.892ZM332.374 484.825C332.674 484.825 332.928 484.755 333.135 484.616C333.344 484.474 333.502 484.271 333.609 484.008C333.719 483.743 333.773 483.426 333.773 483.056C333.773 482.695 333.72 482.378 333.613 482.103C333.506 481.829 333.349 481.615 333.142 481.461C332.935 481.305 332.679 481.227 332.374 481.227C332.06 481.227 331.798 481.309 331.589 481.472C331.38 481.632 331.221 481.851 331.114 482.128C331.01 482.404 330.957 482.714 330.957 483.056C330.957 483.407 331.011 483.715 331.118 483.98C331.225 484.246 331.383 484.453 331.592 484.602C331.804 484.75 332.065 484.825 332.374 484.825ZM336.889 485.837C336.698 485.837 336.534 485.769 336.397 485.634C336.26 485.497 336.191 485.332 336.191 485.139C336.191 484.948 336.26 484.785 336.397 484.65C336.534 484.513 336.698 484.445 336.889 484.445C337.08 484.445 337.244 484.513 337.381 484.65C337.518 484.785 337.587 484.948 337.587 485.139C337.587 485.267 337.555 485.384 337.489 485.491C337.427 485.596 337.343 485.68 337.238 485.743C337.133 485.805 337.017 485.837 336.889 485.837ZM343.867 485.771H341.554V478.624H343.94C344.641 478.624 345.242 478.767 345.744 479.053C346.247 479.337 346.632 479.746 346.899 480.278C347.169 480.809 347.304 481.445 347.304 482.187C347.304 482.931 347.168 483.571 346.896 484.106C346.626 484.641 346.235 485.053 345.723 485.341C345.212 485.627 344.593 485.771 343.867 485.771ZM342.632 484.828H343.808C344.352 484.828 344.805 484.726 345.165 484.521C345.526 484.314 345.796 484.015 345.975 483.625C346.154 483.231 346.243 482.752 346.243 482.187C346.243 481.626 346.154 481.151 345.975 480.76C345.798 480.369 345.534 480.072 345.183 479.87C344.831 479.668 344.395 479.566 343.874 479.566H342.632V484.828ZM350.819 485.879C350.316 485.879 349.878 485.764 349.503 485.533C349.129 485.303 348.838 484.981 348.631 484.567C348.424 484.153 348.32 483.669 348.32 483.115C348.32 482.559 348.424 482.073 348.631 481.657C348.838 481.24 349.129 480.917 349.503 480.686C349.878 480.456 350.316 480.341 350.819 480.341C351.321 480.341 351.76 480.456 352.134 480.686C352.509 480.917 352.8 481.24 353.007 481.657C353.214 482.073 353.317 482.559 353.317 483.115C353.317 483.669 353.214 484.153 353.007 484.567C352.8 484.981 352.509 485.303 352.134 485.533C351.76 485.764 351.321 485.879 350.819 485.879ZM350.822 485.003C351.148 485.003 351.418 484.917 351.632 484.745C351.846 484.572 352.004 484.343 352.106 484.057C352.211 483.771 352.263 483.456 352.263 483.112C352.263 482.77 352.211 482.456 352.106 482.169C352.004 481.881 351.846 481.65 351.632 481.475C351.418 481.301 351.148 481.213 350.822 481.213C350.494 481.213 350.222 481.301 350.006 481.475C349.792 481.65 349.632 481.881 349.528 482.169C349.425 482.456 349.374 482.77 349.374 483.112C349.374 483.456 349.425 483.771 349.528 484.057C349.632 484.343 349.792 484.572 350.006 484.745C350.222 484.917 350.494 485.003 350.822 485.003ZM355.481 485.771L353.903 480.411H354.982L356.032 484.347H356.084L357.138 480.411H358.216L359.263 484.329H359.315L360.359 480.411H361.437L359.863 485.771H358.799L357.71 481.901H357.63L356.541 485.771H355.481ZM363.47 482.588V485.771H362.427V480.411H363.428V481.283H363.495C363.618 480.999 363.811 480.771 364.074 480.599C364.339 480.427 364.673 480.341 365.075 480.341C365.441 480.341 365.761 480.418 366.035 480.571C366.31 480.723 366.522 480.948 366.674 481.248C366.825 481.548 366.9 481.919 366.9 482.361V485.771H365.857V482.487C365.857 482.099 365.756 481.795 365.554 481.576C365.351 481.355 365.073 481.245 364.72 481.245C364.478 481.245 364.262 481.297 364.074 481.402C363.888 481.506 363.74 481.66 363.631 481.862C363.524 482.062 363.47 482.304 363.47 482.588ZM370.802 480.411V481.248H367.874V480.411H370.802ZM368.659 479.127H369.702V484.197C369.702 484.399 369.733 484.552 369.793 484.654C369.854 484.754 369.932 484.823 370.027 484.86C370.125 484.895 370.23 484.912 370.344 484.912C370.428 484.912 370.501 484.906 370.564 484.895C370.627 484.883 370.676 484.874 370.711 484.867L370.899 485.729C370.839 485.752 370.753 485.775 370.641 485.798C370.529 485.824 370.39 485.838 370.222 485.84C369.948 485.845 369.692 485.796 369.455 485.694C369.217 485.591 369.025 485.433 368.879 485.219C368.732 485.005 368.659 484.736 368.659 484.413V479.127ZM371.956 485.771V480.411H372.999V485.771H371.956ZM372.483 479.584C372.301 479.584 372.145 479.523 372.015 479.402C371.887 479.279 371.823 479.133 371.823 478.963C371.823 478.791 371.887 478.644 372.015 478.523C372.145 478.4 372.301 478.338 372.483 478.338C372.664 478.338 372.819 478.4 372.947 478.523C373.077 478.644 373.142 478.791 373.142 478.963C373.142 479.133 373.077 479.279 372.947 479.402C372.819 479.523 372.664 479.584 372.483 479.584ZM374.403 485.771V480.411H375.404V481.283H375.47C375.582 480.988 375.765 480.757 376.018 480.592C376.272 480.425 376.575 480.341 376.929 480.341C377.287 480.341 377.587 480.425 377.829 480.592C378.073 480.76 378.254 480.99 378.37 481.283H378.426C378.554 480.997 378.757 480.769 379.036 480.599C379.316 480.427 379.648 480.341 380.034 480.341C380.521 480.341 380.917 480.493 381.224 480.798C381.534 481.103 381.688 481.562 381.688 482.176V485.771H380.645V482.274C380.645 481.911 380.546 481.648 380.348 481.486C380.151 481.323 379.915 481.241 379.64 481.241C379.3 481.241 379.036 481.346 378.848 481.555C378.66 481.762 378.565 482.029 378.565 482.354V485.771H377.526V482.208C377.526 481.917 377.435 481.683 377.253 481.506C377.072 481.33 376.836 481.241 376.545 481.241C376.347 481.241 376.165 481.294 375.997 481.398C375.832 481.501 375.698 481.644 375.596 481.828C375.496 482.011 375.446 482.224 375.446 482.466V485.771H374.403ZM385.397 485.879C384.869 485.879 384.414 485.766 384.032 485.54C383.653 485.312 383.36 484.992 383.153 484.581C382.948 484.167 382.846 483.682 382.846 483.126C382.846 482.577 382.948 482.093 383.153 481.674C383.36 481.255 383.649 480.928 384.018 480.693C384.391 480.459 384.826 480.341 385.323 480.341C385.626 480.341 385.919 480.391 386.203 480.491C386.487 480.591 386.741 480.748 386.967 480.962C387.193 481.176 387.37 481.454 387.501 481.796C387.631 482.136 387.696 482.549 387.696 483.035V483.405H383.436V482.623H386.674C386.674 482.349 386.618 482.106 386.506 481.894C386.395 481.68 386.238 481.511 386.035 481.388C385.835 481.265 385.6 481.203 385.33 481.203C385.037 481.203 384.781 481.275 384.563 481.419C384.346 481.561 384.179 481.747 384.06 481.978C383.944 482.206 383.886 482.453 383.886 482.721V483.331C383.886 483.69 383.949 483.994 384.074 484.246C384.202 484.497 384.38 484.689 384.608 484.821C384.836 484.952 385.102 485.017 385.407 485.017C385.605 485.017 385.785 484.989 385.948 484.933C386.111 484.875 386.252 484.789 386.37 484.675C386.489 484.561 386.58 484.42 386.642 484.253L387.63 484.431C387.551 484.721 387.409 484.976 387.204 485.195C387.002 485.411 386.747 485.58 386.44 485.701C386.135 485.819 385.787 485.879 385.397 485.879Z\" fill=\"#667085\"/>\r\n <g style=\"mix-blend-mode:multiply\">\r\n <rect x=\"510.701\" y=\"461.463\" width=\"38.0559\" height=\"15.8074\" rx=\"7.90372\" fill=\"#ECFDF3\"/>\r\n <path d=\"M519.123 471.823V466.91M519.123 466.91L516.667 469.367M519.123 466.91L521.58 469.367\" stroke=\"#12B76A\" stroke-width=\"1.05279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n <path d=\"M529.363 465.741V471.867H528.436V466.669H528.4L526.934 467.626V466.74L528.462 465.741H529.363ZM533.152 471.95C532.741 471.95 532.375 471.88 532.051 471.738C531.73 471.597 531.476 471.4 531.289 471.149C531.103 470.896 531.004 470.603 530.99 470.27H531.929C531.941 470.451 532.002 470.609 532.111 470.742C532.223 470.874 532.369 470.975 532.548 471.047C532.727 471.119 532.927 471.155 533.146 471.155C533.387 471.155 533.601 471.113 533.786 471.029C533.974 470.946 534.12 470.829 534.226 470.679C534.332 470.528 534.384 470.353 534.384 470.156C534.384 469.951 534.332 469.77 534.226 469.615C534.122 469.457 533.97 469.333 533.768 469.244C533.569 469.154 533.328 469.109 533.044 469.109H532.527V468.355H533.044C533.272 468.355 533.471 468.315 533.643 468.233C533.816 468.151 533.952 468.037 534.049 467.892C534.147 467.744 534.196 467.572 534.196 467.374C534.196 467.185 534.153 467.02 534.067 466.881C533.984 466.739 533.864 466.629 533.708 466.549C533.555 466.469 533.373 466.429 533.164 466.429C532.965 466.429 532.778 466.466 532.605 466.54C532.433 466.612 532.294 466.715 532.186 466.851C532.078 466.985 532.021 467.145 532.013 467.333H531.118C531.128 467.002 531.226 466.71 531.411 466.459C531.599 466.208 531.846 466.012 532.153 465.87C532.46 465.728 532.801 465.658 533.176 465.658C533.569 465.658 533.908 465.734 534.193 465.888C534.48 466.039 534.701 466.242 534.857 466.495C535.014 466.748 535.092 467.025 535.09 467.327C535.092 467.669 534.997 467.961 534.803 468.2C534.612 468.439 534.356 468.6 534.037 468.681V468.729C534.444 468.791 534.759 468.953 534.983 469.214C535.208 469.475 535.32 469.799 535.318 470.186C535.32 470.523 535.226 470.825 535.036 471.092C534.849 471.359 534.593 471.57 534.268 471.723C533.943 471.875 533.571 471.95 533.152 471.95ZM539.645 470.718V470.395C539.645 470.164 539.693 469.953 539.789 469.761C539.887 469.568 540.028 469.413 540.214 469.298C540.401 469.18 540.627 469.121 540.893 469.121C541.164 469.121 541.391 469.179 541.574 469.295C541.758 469.41 541.896 469.565 541.99 469.758C542.086 469.952 542.134 470.164 542.134 470.395V470.718C542.134 470.949 542.086 471.162 541.99 471.355C541.895 471.547 541.754 471.701 541.568 471.819C541.385 471.934 541.16 471.992 540.893 471.992C540.623 471.992 540.396 471.934 540.211 471.819C540.025 471.701 539.885 471.547 539.789 471.355C539.693 471.162 539.645 470.949 539.645 470.718ZM540.342 470.395V470.718C540.342 470.89 540.383 471.045 540.465 471.185C540.547 471.324 540.689 471.394 540.893 471.394C541.094 471.394 541.235 471.324 541.314 471.185C541.394 471.045 541.434 470.89 541.434 470.718V470.395C541.434 470.224 541.395 470.068 541.317 469.929C541.241 469.789 541.1 469.719 540.893 469.719C540.693 469.719 540.552 469.789 540.468 469.929C540.384 470.068 540.342 470.224 540.342 470.395ZM536.565 467.213V466.89C536.565 466.659 536.613 466.446 536.708 466.253C536.806 466.059 536.948 465.905 537.133 465.789C537.32 465.674 537.547 465.616 537.812 465.616C538.083 465.616 538.31 465.674 538.494 465.789C538.677 465.905 538.816 466.059 538.91 466.253C539.003 466.446 539.05 466.659 539.05 466.89V467.213C539.05 467.444 539.002 467.657 538.907 467.85C538.813 468.041 538.673 468.196 538.488 468.314C538.304 468.429 538.079 468.487 537.812 468.487C537.541 468.487 537.312 468.429 537.127 468.314C536.944 468.196 536.804 468.041 536.708 467.85C536.613 467.657 536.565 467.444 536.565 467.213ZM537.265 466.89V467.213C537.265 467.384 537.304 467.54 537.384 467.679C537.466 467.819 537.609 467.889 537.812 467.889C538.011 467.889 538.151 467.819 538.231 467.679C538.312 467.54 538.353 467.384 538.353 467.213V466.89C538.353 466.718 538.314 466.563 538.237 466.423C538.159 466.284 538.017 466.214 537.812 466.214C537.613 466.214 537.471 466.284 537.387 466.423C537.305 466.563 537.265 466.718 537.265 466.89ZM536.849 471.867L541.06 465.741H541.775L537.564 471.867H536.849Z\" fill=\"#027A48\"/>\r\n </g>\r\n </g>\r\n </g>\r\n </g>\r\n <rect x=\"35.0151\" y=\"486.96\" width=\"102.256\" height=\"23.7519\" rx=\"11.8759\" fill=\"#33B5FF\"/>\r\n <path d=\"M48.9176 503.336H46.1357V494.743H49.0058C49.8477 494.743 50.5708 494.915 51.1751 495.259C51.7793 495.6 52.2422 496.091 52.5639 496.732C52.8884 497.37 53.0506 498.135 53.0506 499.027C53.0506 499.922 52.887 500.692 52.5597 501.335C52.2352 501.978 51.7653 502.473 51.1499 502.82C50.5345 503.164 49.7904 503.336 48.9176 503.336ZM47.4323 502.204H48.8463C49.5009 502.204 50.0449 502.08 50.4785 501.834C50.9121 501.585 51.2366 501.226 51.452 500.756C51.6674 500.283 51.7751 499.707 51.7751 499.027C51.7751 498.353 51.6674 497.781 51.452 497.311C51.2394 496.841 50.9219 496.484 50.4995 496.241C50.0771 495.998 49.5526 495.876 48.926 495.876H47.4323V502.204ZM57.34 503.467C56.705 503.467 56.1581 503.331 55.6993 503.059C55.2434 502.785 54.8909 502.401 54.642 501.906C54.3958 501.408 54.2727 500.824 54.2727 500.156C54.2727 499.496 54.3958 498.914 54.642 498.41C54.8909 497.907 55.2378 497.514 55.6826 497.231C56.1301 496.949 56.6532 496.808 57.2518 496.808C57.6155 496.808 57.968 496.868 58.3092 496.988C58.6505 497.108 58.9568 497.297 59.2281 497.554C59.4995 497.812 59.7135 498.146 59.8701 498.557C60.0268 498.966 60.1051 499.462 60.1051 500.047V500.492H54.9818V499.552H58.8757C58.8757 499.222 58.8085 498.929 58.6743 498.675C58.54 498.417 58.3512 498.215 58.1078 498.066C57.8673 497.918 57.5847 497.844 57.2602 497.844C56.9078 497.844 56.6001 497.931 56.3371 498.104C56.077 498.275 55.8756 498.498 55.7329 498.775C55.593 499.05 55.5231 499.347 55.5231 499.669V500.403C55.5231 500.834 55.5986 501.201 55.7497 501.503C55.9035 501.805 56.1175 502.036 56.3917 502.195C56.6658 502.352 56.9861 502.43 57.3525 502.43C57.5903 502.43 57.8071 502.397 58.0029 502.329C58.1987 502.259 58.368 502.156 58.5106 502.019C58.6533 501.882 58.7624 501.713 58.8379 501.511L60.0254 501.725C59.9303 502.075 59.7596 502.381 59.5135 502.644C59.2701 502.904 58.9638 503.107 58.5945 503.253C58.2281 503.395 57.8099 503.467 57.34 503.467ZM61.4971 503.336V496.891H62.7013V497.94H62.7811C62.9153 497.585 63.1349 497.308 63.4398 497.11C63.7447 496.908 64.1098 496.808 64.535 496.808C64.9658 496.808 65.3266 496.908 65.6175 497.11C65.9112 497.311 66.128 497.588 66.2679 497.94H66.335C66.4889 497.596 66.7336 497.322 67.0693 497.118C67.405 496.911 67.805 496.808 68.2694 496.808C68.854 496.808 69.3309 496.991 69.7002 497.357C70.0722 497.724 70.2582 498.276 70.2582 499.015V503.336H69.0037V499.132C69.0037 498.696 68.8848 498.38 68.647 498.184C68.4092 497.988 68.1253 497.89 67.7952 497.89C67.3868 497.89 67.0693 498.016 66.8427 498.268C66.6162 498.517 66.5029 498.837 66.5029 499.229V503.336H65.2525V499.052C65.2525 498.703 65.1434 498.422 64.9252 498.209C64.707 497.996 64.4231 497.89 64.0734 497.89C63.8356 497.89 63.6161 497.953 63.4146 498.079C63.216 498.202 63.0552 498.374 62.9321 498.595C62.8118 498.816 62.7517 499.072 62.7517 499.363V503.336H61.4971ZM74.6546 503.467C74.0503 503.467 73.523 503.328 73.0727 503.051C72.6223 502.774 72.2727 502.387 72.0237 501.889C71.7747 501.391 71.6503 500.809 71.6503 500.143C71.6503 499.475 71.7747 498.89 72.0237 498.389C72.2727 497.889 72.6223 497.5 73.0727 497.223C73.523 496.946 74.0503 496.808 74.6546 496.808C75.2588 496.808 75.7861 496.946 76.2364 497.223C76.6868 497.5 77.0365 497.889 77.2854 498.389C77.5344 498.89 77.6589 499.475 77.6589 500.143C77.6589 500.809 77.5344 501.391 77.2854 501.889C77.0365 502.387 76.6868 502.774 76.2364 503.051C75.7861 503.328 75.2588 503.467 74.6546 503.467ZM74.6587 502.413C75.0504 502.413 75.3749 502.31 75.6322 502.103C75.8896 501.896 76.0798 501.62 76.2029 501.276C76.3287 500.932 76.3917 500.553 76.3917 500.139C76.3917 499.728 76.3287 499.35 76.2029 499.006C76.0798 498.659 75.8896 498.381 75.6322 498.171C75.3749 497.961 75.0504 497.857 74.6587 497.857C74.2643 497.857 73.937 497.961 73.6769 498.171C73.4195 498.381 73.2279 498.659 73.1021 499.006C72.979 499.35 72.9174 499.728 72.9174 500.139C72.9174 500.553 72.979 500.932 73.1021 501.276C73.2279 501.62 73.4195 501.896 73.6769 502.103C73.937 502.31 74.2643 502.413 74.6587 502.413ZM81.7614 505.888C81.2495 505.888 80.809 505.82 80.4397 505.686C80.0733 505.552 79.774 505.374 79.5418 505.153C79.3096 504.932 79.1362 504.69 79.0215 504.427L80.0998 503.983C80.1754 504.106 80.2761 504.236 80.402 504.373C80.5306 504.513 80.7041 504.632 80.9223 504.729C81.1432 504.827 81.4272 504.876 81.774 504.876C82.2496 504.876 82.6426 504.76 82.9531 504.528C83.2636 504.299 83.4188 503.932 83.4188 503.429V502.162H83.3391C83.2636 502.299 83.1545 502.451 83.0118 502.619C82.872 502.787 82.679 502.932 82.4328 503.055C82.1866 503.178 81.8663 503.24 81.4719 503.24C80.9628 503.24 80.5041 503.121 80.0957 502.883C79.69 502.643 79.3684 502.289 79.1306 501.822C78.8956 501.352 78.7781 500.774 78.7781 500.089C78.7781 499.403 78.8942 498.816 79.1264 498.326C79.3614 497.837 79.6831 497.462 80.0915 497.202C80.4999 496.939 80.9628 496.808 81.4803 496.808C81.8803 496.808 82.2034 496.875 82.4496 497.009C82.6957 497.14 82.8874 497.294 83.0244 497.47C83.1643 497.647 83.272 497.802 83.3475 497.936H83.4398V496.891H84.6692V503.479C84.6692 504.033 84.5406 504.488 84.2832 504.843C84.0259 505.198 83.6776 505.461 83.2384 505.632C82.802 505.802 82.3097 505.888 81.7614 505.888ZM81.7489 502.199C82.1097 502.199 82.4146 502.115 82.6636 501.948C82.9153 501.777 83.1055 501.534 83.2342 501.217C83.3657 500.899 83.4314 500.517 83.4314 500.072C83.4314 499.638 83.3671 499.257 83.2384 498.926C83.1097 498.596 82.9209 498.339 82.672 498.154C82.423 497.967 82.1153 497.873 81.7489 497.873C81.3712 497.873 81.0565 497.971 80.8048 498.167C80.553 498.36 80.3628 498.623 80.2341 498.956C80.1082 499.289 80.0453 499.661 80.0453 500.072C80.0453 500.494 80.1096 500.865 80.2383 501.184C80.367 501.503 80.5572 501.752 80.809 501.931C81.0635 502.11 81.3768 502.199 81.7489 502.199ZM86.3518 503.336V496.891H87.5644V497.915H87.6316C87.7491 497.568 87.9561 497.296 88.2526 497.097C88.5519 496.896 88.8904 496.795 89.268 496.795C89.3463 496.795 89.4386 496.798 89.5449 496.803C89.654 496.809 89.7393 496.816 89.8009 496.824V498.024C89.7505 498.01 89.661 497.995 89.5323 497.978C89.4037 497.959 89.275 497.949 89.1463 497.949C88.8498 497.949 88.5855 498.012 88.3533 498.138C88.1239 498.261 87.9421 498.433 87.8078 498.654C87.6735 498.872 87.6064 499.121 87.6064 499.401V503.336H86.3518ZM92.7045 503.479C92.2961 503.479 91.9268 503.404 91.5968 503.253C91.2667 503.099 91.0051 502.876 90.8121 502.585C90.6219 502.294 90.5268 501.938 90.5268 501.515C90.5268 501.152 90.5967 500.852 90.7366 500.617C90.8764 500.382 91.0653 500.196 91.303 500.059C91.5408 499.922 91.8066 499.819 92.1003 499.749C92.394 499.679 92.6933 499.626 92.9982 499.589C93.3842 499.545 93.6975 499.508 93.9381 499.48C94.1787 499.45 94.3535 499.401 94.4626 499.333C94.5717 499.266 94.6262 499.157 94.6262 499.006V498.977C94.6262 498.61 94.5227 498.326 94.3157 498.125C94.1115 497.924 93.8066 497.823 93.401 497.823C92.9786 497.823 92.6457 497.917 92.4024 498.104C92.1618 498.289 91.9954 498.494 91.9031 498.721L90.724 498.452C90.8639 498.061 91.0681 497.745 91.3366 497.504C91.6079 497.261 91.9198 497.084 92.2723 496.975C92.6248 496.863 92.9954 496.808 93.3842 496.808C93.6416 496.808 93.9143 496.838 94.2024 496.9C94.4934 496.959 94.7647 497.068 95.0165 497.227C95.271 497.387 95.4794 497.615 95.6417 497.911C95.8039 498.205 95.885 498.587 95.885 499.057V503.336H94.6598V502.455H94.6094C94.5283 502.618 94.4066 502.777 94.2444 502.934C94.0822 503.09 93.8738 503.22 93.6192 503.324C93.3646 503.427 93.0597 503.479 92.7045 503.479ZM92.9772 502.472C93.3241 502.472 93.6206 502.404 93.8668 502.266C94.1157 502.129 94.3045 501.95 94.4332 501.729C94.5647 501.506 94.6304 501.266 94.6304 501.012V500.181C94.5857 500.226 94.499 500.268 94.3703 500.307C94.2444 500.343 94.1003 500.375 93.9381 500.403C93.7759 500.429 93.6178 500.452 93.464 500.475C93.3101 500.494 93.1814 500.511 93.0779 500.525C92.8346 500.556 92.6122 500.608 92.4108 500.68C92.2122 500.753 92.0527 500.858 91.9324 500.995C91.8149 501.129 91.7562 501.308 91.7562 501.532C91.7562 501.843 91.8709 502.078 92.1003 502.237C92.3296 502.394 92.622 502.472 92.9772 502.472ZM97.5561 505.753V496.891H98.7813V497.936H98.8862C98.9589 497.802 99.0638 497.647 99.2009 497.47C99.3379 497.294 99.5281 497.14 99.7715 497.009C100.015 496.875 100.337 496.808 100.737 496.808C101.257 496.808 101.721 496.939 102.13 497.202C102.538 497.465 102.858 497.844 103.091 498.339C103.325 498.834 103.443 499.43 103.443 500.127C103.443 500.823 103.327 501.42 103.095 501.918C102.863 502.413 102.544 502.795 102.138 503.064C101.732 503.329 101.269 503.462 100.749 503.462C100.358 503.462 100.037 503.397 99.7883 503.265C99.5421 503.134 99.3491 502.98 99.2093 502.804C99.0694 502.627 98.9617 502.471 98.8862 502.334H98.8106V505.753H97.5561ZM98.7855 500.114C98.7855 500.567 98.8512 500.964 98.9827 501.306C99.1141 501.647 99.3044 501.914 99.5533 502.107C99.8023 502.297 100.107 502.392 100.468 502.392C100.843 502.392 101.156 502.293 101.408 502.094C101.66 501.893 101.85 501.62 101.979 501.276C102.11 500.932 102.176 500.545 102.176 500.114C102.176 499.689 102.111 499.307 101.983 498.968C101.857 498.63 101.667 498.363 101.412 498.167C101.16 497.971 100.846 497.873 100.468 497.873C100.104 497.873 99.7967 497.967 99.5449 498.154C99.296 498.342 99.1072 498.603 98.9785 498.939C98.8498 499.275 98.7855 499.666 98.7855 500.114ZM106.103 499.51V503.336H104.849V494.743H106.086V497.94H106.166C106.317 497.594 106.548 497.318 106.858 497.114C107.169 496.91 107.575 496.808 108.075 496.808C108.517 496.808 108.903 496.898 109.233 497.08C109.566 497.262 109.824 497.533 110.005 497.894C110.19 498.252 110.282 498.7 110.282 499.237V503.336H109.028V499.388C109.028 498.915 108.906 498.549 108.663 498.289C108.419 498.026 108.081 497.894 107.647 497.894C107.351 497.894 107.085 497.957 106.85 498.083C106.618 498.209 106.435 498.394 106.3 498.637C106.169 498.878 106.103 499.168 106.103 499.51ZM111.957 503.336V496.891H113.211V503.336H111.957ZM112.59 495.897C112.372 495.897 112.185 495.824 112.028 495.679C111.874 495.531 111.797 495.354 111.797 495.15C111.797 494.943 111.874 494.767 112.028 494.621C112.185 494.473 112.372 494.399 112.59 494.399C112.808 494.399 112.994 494.473 113.148 494.621C113.305 494.767 113.383 494.943 113.383 495.15C113.383 495.354 113.305 495.531 113.148 495.679C112.994 495.824 112.808 495.897 112.59 495.897ZM117.614 503.467C116.99 503.467 116.453 503.325 116.003 503.043C115.555 502.757 115.211 502.364 114.97 501.864C114.73 501.363 114.609 500.789 114.609 500.143C114.609 499.489 114.733 498.911 114.979 498.41C115.225 497.907 115.572 497.514 116.019 497.231C116.467 496.949 116.994 496.808 117.601 496.808C118.091 496.808 118.527 496.898 118.91 497.08C119.294 497.259 119.603 497.511 119.838 497.836C120.075 498.16 120.217 498.539 120.261 498.973H119.04C118.973 498.671 118.819 498.41 118.579 498.192C118.341 497.974 118.022 497.865 117.622 497.865C117.272 497.865 116.966 497.957 116.703 498.142C116.443 498.324 116.24 498.584 116.095 498.922C115.949 499.258 115.877 499.655 115.877 500.114C115.877 500.584 115.948 500.989 116.091 501.331C116.233 501.672 116.435 501.936 116.695 502.124C116.958 502.311 117.267 502.405 117.622 502.405C117.86 502.405 118.075 502.362 118.268 502.275C118.464 502.185 118.628 502.058 118.759 501.893C118.894 501.728 118.987 501.529 119.04 501.297H120.261C120.217 501.714 120.081 502.086 119.854 502.413C119.628 502.741 119.324 502.998 118.944 503.185C118.566 503.373 118.123 503.467 117.614 503.467ZM126.433 498.465L125.295 498.666C125.248 498.521 125.172 498.382 125.069 498.251C124.968 498.119 124.831 498.012 124.658 497.928C124.484 497.844 124.267 497.802 124.007 497.802C123.652 497.802 123.356 497.882 123.118 498.041C122.88 498.198 122.761 498.401 122.761 498.65C122.761 498.865 122.841 499.038 123 499.17C123.16 499.301 123.417 499.409 123.772 499.493L124.796 499.728C125.389 499.865 125.831 500.076 126.122 500.361C126.413 500.647 126.558 501.017 126.558 501.473C126.558 501.859 126.447 502.204 126.223 502.506C126.002 502.805 125.693 503.04 125.295 503.211C124.901 503.381 124.444 503.467 123.923 503.467C123.202 503.467 122.613 503.313 122.157 503.005C121.701 502.694 121.421 502.254 121.318 501.683L122.53 501.499C122.606 501.815 122.761 502.054 122.996 502.216C123.231 502.376 123.537 502.455 123.915 502.455C124.326 502.455 124.655 502.37 124.901 502.199C125.147 502.026 125.27 501.815 125.27 501.566C125.27 501.364 125.195 501.195 125.044 501.058C124.895 500.921 124.667 500.817 124.36 500.748L123.269 500.508C122.667 500.371 122.223 500.153 121.935 499.854C121.649 499.554 121.507 499.175 121.507 498.717C121.507 498.336 121.613 498.003 121.825 497.718C122.038 497.433 122.332 497.21 122.707 497.051C123.081 496.889 123.511 496.808 123.995 496.808C124.691 496.808 125.24 496.959 125.64 497.261C126.04 497.56 126.304 497.961 126.433 498.465Z\" fill=\"white\"/>\r\n <g clip-path=\"url(#clip17_3784_14918)\">\r\n <path d=\"M269.561 11.7233V10.2891H282.264V11.7233H276.709V27.8073H275.113V11.7233H269.561Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M286.583 28.105C285.834 28.1142 285.091 27.9551 284.411 27.6393C283.773 27.3434 283.231 26.8753 282.845 26.2877C282.443 25.6434 282.24 24.8946 282.264 24.1356C282.245 23.566 282.371 23.0009 282.631 22.4935C282.879 22.045 283.239 21.6678 283.675 21.3982C284.171 21.094 284.71 20.8664 285.274 20.7231C285.943 20.5467 286.624 20.4177 287.311 20.3372C288.046 20.2422 288.669 20.1625 289.18 20.0979C289.585 20.0601 289.981 19.9501 290.348 19.7732C290.477 19.7047 290.583 19.6004 290.654 19.4728C290.726 19.3452 290.759 19.1998 290.749 19.0539V18.7463C290.749 17.8519 290.483 17.1464 289.95 16.6299C289.418 16.1133 288.652 15.8551 287.653 15.8551C286.703 15.8551 285.932 16.063 285.338 16.4789C284.789 16.8405 284.354 17.3514 284.085 17.9516L282.647 17.4289C282.905 16.7599 283.326 16.1661 283.871 15.7013C284.391 15.2755 284.992 14.9596 285.638 14.7726C286.279 14.5835 286.945 14.4876 287.614 14.4878C288.143 14.4914 288.668 14.5574 289.181 14.6843C289.725 14.8149 290.24 15.0458 290.699 15.3651C291.187 15.7091 291.579 16.1712 291.839 16.7082C292.129 17.2779 292.275 18.0033 292.275 18.8844V27.8074H290.749V25.728H290.655C290.451 26.1481 290.176 26.5301 289.842 26.8574C289.454 27.2416 288.995 27.5468 288.49 27.7561C287.885 28.0014 287.236 28.1201 286.583 28.105ZM286.788 26.7107C287.526 26.7295 288.255 26.5432 288.893 26.1723C289.472 25.8272 289.947 25.3315 290.266 24.7381C290.591 24.1323 290.757 23.4542 290.749 22.7669V20.8684C290.582 21.0028 290.387 21.0999 290.179 21.1533C289.879 21.2474 289.573 21.3231 289.264 21.3797C288.919 21.4452 288.575 21.5008 288.233 21.5464L287.31 21.666C286.662 21.7349 286.024 21.8782 285.41 22.0933C284.944 22.2479 284.527 22.5237 284.203 22.8923C283.913 23.2661 283.765 23.7311 283.786 24.204C283.786 25.0035 284.071 25.6207 284.641 26.0555C285.21 26.4904 285.926 26.7088 286.788 26.7107Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M296.516 19.5941V27.8077H294.994V14.6662H296.473V16.7285H296.616C296.924 16.0559 297.426 15.4909 298.057 15.1063C298.711 14.6989 299.518 14.4953 300.478 14.4953C301.289 14.4777 302.091 14.6675 302.808 15.0464C303.482 15.4177 304.028 15.983 304.375 16.6687C304.748 17.3808 304.935 18.2562 304.935 19.295V27.8077H303.411V19.3904C303.411 18.3127 303.11 17.4582 302.508 16.8267C301.906 16.1953 301.099 15.8815 300.087 15.8853C299.445 15.8733 298.812 16.0263 298.247 16.3297C297.71 16.6279 297.27 17.0724 296.976 17.6115C296.655 18.2217 296.496 18.9046 296.516 19.5941Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M312.642 33.006C311.844 33.0208 311.05 32.9039 310.29 32.6599C309.665 32.458 309.084 32.1368 308.581 31.7142C308.139 31.3402 307.774 30.8847 307.504 30.3726L308.753 29.5508C308.962 29.9076 309.216 30.2355 309.51 30.5264C309.866 30.8713 310.288 31.1415 310.75 31.3211C311.352 31.5486 311.993 31.6564 312.636 31.6387C313.799 31.6387 314.738 31.3477 315.454 30.7657C316.17 30.1836 316.528 29.2816 316.528 28.0596V25.1014H316.386C316.189 25.5325 315.933 25.9342 315.625 26.2949C315.267 26.7112 314.826 27.0475 314.329 27.282C313.71 27.5579 313.037 27.6889 312.36 27.6651C311.373 27.6837 310.402 27.4145 309.565 26.8903C308.728 26.3436 308.064 25.5707 307.65 24.6613C307.184 23.6957 306.952 22.5425 306.952 21.2018C306.952 19.8611 307.179 18.6923 307.634 17.6953C308.038 16.7478 308.696 15.9308 309.537 15.3354C310.374 14.7608 311.37 14.462 312.385 14.4808C313.19 14.4808 313.858 14.6232 314.388 14.9081C314.884 15.1629 315.321 15.5202 315.669 15.9563C315.966 16.3318 316.22 16.7393 316.426 17.1712H316.58V14.6645H318.068V28.1465C318.068 29.2593 317.831 30.1746 317.356 30.8924C316.887 31.6069 316.212 32.163 315.422 32.4876C314.539 32.8456 313.594 33.022 312.642 33.006ZM312.539 26.275C313.306 26.2967 314.062 26.083 314.704 25.6626C315.326 25.2252 315.805 24.6138 316.081 23.9051C316.419 23.036 316.582 22.1085 316.56 21.1762C316.576 20.2437 316.417 19.3164 316.09 18.4431C315.817 17.7004 315.345 17.0474 314.725 16.5559C314.077 16.1024 313.305 15.8609 312.514 15.8647C311.723 15.8686 310.953 16.1175 310.31 16.5773C309.686 17.0759 309.212 17.7374 308.941 18.4886C308.623 19.3465 308.466 20.2557 308.478 21.1705C308.461 22.0782 308.621 22.9806 308.95 23.8267C309.226 24.5458 309.704 25.1696 310.327 25.6227C310.976 26.07 311.751 26.2985 312.539 26.275Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M325.886 28.0794C324.819 28.0995 323.771 27.7983 322.877 27.2149C321.991 26.6197 321.286 25.7925 320.838 24.8236C320.349 23.8067 320.104 22.6307 320.104 21.2957C320.104 19.9607 320.35 18.7738 320.841 17.7351C321.287 16.7641 321.993 15.9354 322.88 15.3409C323.781 14.7774 324.823 14.4785 325.886 14.4785C326.948 14.4785 327.99 14.7774 328.891 15.3409C329.777 15.9414 330.481 16.7728 330.929 17.7451C331.423 18.7667 331.67 19.9503 331.669 21.2957C331.668 22.6412 331.422 23.8171 330.929 24.8236C330.481 25.7925 329.775 26.6197 328.889 27.2149C327.997 27.7975 326.951 28.0987 325.886 28.0794ZM325.886 26.6851C326.718 26.7126 327.536 26.4554 328.203 25.9558C328.854 25.4441 329.353 24.7646 329.647 23.9904C330.304 22.2511 330.304 20.3318 329.647 18.5925C329.353 17.8163 328.855 17.1339 328.206 16.6171C327.531 16.1327 326.721 15.8721 325.89 15.8721C325.059 15.8721 324.249 16.1327 323.574 16.6171C322.922 17.1328 322.423 17.8155 322.128 18.5925C321.473 20.3322 321.473 22.2507 322.128 23.9904C322.421 24.7639 322.918 25.4433 323.567 25.9558C324.202 26.4429 324.975 26.686 325.886 26.6851Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M333.867 27.8073V10.2891H344.032V11.7233H335.467V18.319H343.489V19.756H335.467V26.3688H344.2V27.8073H333.867Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M348.061 32.7326C347.777 32.7344 347.493 32.7058 347.215 32.6471C347.001 32.6053 346.791 32.5423 346.59 32.4591L347 31.1161C347.445 31.2667 347.917 31.3263 348.386 31.2913C348.799 31.2446 349.182 31.0504 349.464 30.7443C349.777 30.4225 350.057 29.9306 350.303 29.2688L350.781 27.9343L345.949 14.666H347.599L351.5 25.7951H351.62L355.521 14.666H357.172L351.617 29.8841C351.417 30.4563 351.125 30.9922 350.753 31.4707C350.437 31.8755 350.031 32.2008 349.568 32.4207C349.095 32.6346 348.58 32.7411 348.061 32.7326Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M364.127 28.0795C362.901 28.0795 361.84 27.7946 360.945 27.2249C360.041 26.6427 359.322 25.8153 358.871 24.8393C358.382 23.8205 358.138 22.6469 358.139 21.3186C358.116 20.1022 358.366 18.8962 358.871 17.7893C359.314 16.8126 360.014 15.9754 360.898 15.3681C361.784 14.7763 362.83 14.4701 363.896 14.4907C364.604 14.4871 365.306 14.6176 365.965 14.8753C366.637 15.1422 367.244 15.5474 367.749 16.0645C368.302 16.6399 368.729 17.325 369.002 18.0756C369.328 18.9934 369.485 19.963 369.463 20.9369V21.6832H359.199V20.3401H367.907C367.919 19.5511 367.745 18.7703 367.398 18.0613C367.08 17.4097 366.592 16.8555 365.987 16.4562C365.341 16.0578 364.594 15.8533 363.835 15.8672C363.076 15.8811 362.337 16.1127 361.705 16.5345C361.067 16.9841 360.556 17.591 360.221 18.2963C359.86 19.0426 359.674 19.8614 359.677 20.6905V21.4952C359.656 22.4351 359.842 23.3682 360.221 24.2283C360.55 24.9683 361.086 25.5967 361.765 26.0371C362.366 26.3874 363.037 26.6006 363.73 26.6614C364.423 26.7222 365.12 26.6292 365.773 26.3889C366.218 26.2112 366.622 25.9447 366.961 25.6056C367.272 25.2953 367.521 24.9278 367.693 24.5231L369.139 24.9946C368.926 25.5693 368.591 26.0915 368.159 26.5256C367.677 27.0121 367.101 27.395 366.465 27.6508C365.722 27.948 364.927 28.0938 364.127 28.0795Z\" fill=\"#0066CC\" stroke=\"#0066CC\" stroke-width=\"1.22\" stroke-miterlimit=\"10\"/>\r\n <path d=\"M253.828 1.30811H220.059C219.054 1.30811 218.239 2.12303 218.239 3.12829V36.8972C218.239 37.9025 219.054 38.7174 220.059 38.7174H253.828C254.834 38.7174 255.649 37.9025 255.649 36.8972V3.12829C255.649 2.12303 254.834 1.30811 253.828 1.30811Z\" fill=\"url(#paint0_linear_3784_14918)\"/>\r\n <path d=\"M249.213 29.7573L248.27 28.8144L238.111 18.6553L241.124 15.6416L241.846 14.918C241.915 14.8482 241.954 14.7541 241.955 14.656C241.954 14.6075 241.945 14.5595 241.926 14.5147C241.907 14.47 241.88 14.4294 241.845 14.3953L241.121 13.6718L237.925 10.4701L237.202 9.7466C237.168 9.7118 237.127 9.68416 237.082 9.6653C237.037 9.64643 236.989 9.63672 236.94 9.63672C236.891 9.63672 236.843 9.64643 236.798 9.6653C236.753 9.68416 236.712 9.7118 236.678 9.7466L235.954 10.4715L232.038 14.3882C232.003 14.4223 231.975 14.463 231.956 14.5078C231.938 14.5527 231.928 14.6009 231.928 14.6496C231.928 14.6982 231.938 14.7464 231.956 14.7913C231.975 14.8362 232.003 14.8768 232.038 14.9109L235.779 18.6538L225.619 28.8144L224.68 29.7573C224.61 29.8262 224.571 29.9199 224.57 30.0179C224.571 30.1126 224.607 30.2036 224.671 30.2729C224.706 30.3097 224.748 30.3391 224.794 30.3592C224.84 30.3793 224.89 30.3896 224.941 30.3896H234.08C234.178 30.3893 234.272 30.3501 234.341 30.2808C234.411 30.2114 234.45 30.1174 234.45 30.0193V29.1107C234.45 29.0123 234.411 28.918 234.342 28.8483C234.273 28.7786 234.178 28.7393 234.08 28.7389H228.027L236.944 19.8217L245.861 28.7389H239.756C239.657 28.7393 239.563 28.7786 239.494 28.8483C239.424 28.918 239.385 29.0123 239.385 29.1107V30.0193C239.385 30.0681 239.395 30.1165 239.414 30.1615C239.432 30.2065 239.46 30.2473 239.495 30.2814C239.564 30.3505 239.658 30.3894 239.756 30.3896H248.951C249.001 30.3898 249.052 30.3795 249.098 30.3594C249.145 30.3394 249.187 30.3099 249.221 30.2729C249.288 30.203 249.324 30.1098 249.323 30.0133C249.321 29.9169 249.281 29.8249 249.213 29.7573ZM236.938 11.8189L239.777 14.6574L236.946 17.4888L234.107 14.6503L236.938 11.8189Z\" fill=\"white\"/>\r\n </g>\r\n <path d=\"M141.167 54.3636V66H139.553L133.639 57.4659H133.531V66H131.775V54.3636H133.4L139.32 62.9091H139.428V54.3636H141.167ZM147.353 66.1761C146.493 66.1761 145.753 65.9924 145.132 65.625C144.514 65.2538 144.037 64.733 143.7 64.0625C143.366 63.3883 143.2 62.5985 143.2 61.6932C143.2 60.7992 143.366 60.0114 143.7 59.3295C144.037 58.6477 144.507 58.1155 145.109 57.733C145.715 57.3504 146.423 57.1591 147.234 57.1591C147.726 57.1591 148.203 57.2405 148.666 57.4034C149.128 57.5663 149.543 57.822 149.91 58.1705C150.277 58.5189 150.567 58.9716 150.779 59.5284C150.991 60.0814 151.097 60.7538 151.097 61.5455V62.1477H144.16V60.875H149.433C149.433 60.428 149.342 60.0322 149.16 59.6875C148.978 59.339 148.722 59.0644 148.393 58.8636C148.067 58.6629 147.685 58.5625 147.245 58.5625C146.768 58.5625 146.351 58.6799 145.995 58.9148C145.643 59.1458 145.37 59.4489 145.177 59.8239C144.988 60.1951 144.893 60.5985 144.893 61.0341V62.0284C144.893 62.6117 144.995 63.108 145.2 63.517C145.408 63.9261 145.698 64.2386 146.069 64.4545C146.44 64.6667 146.874 64.7727 147.37 64.7727C147.692 64.7727 147.986 64.7273 148.251 64.6364C148.516 64.5417 148.745 64.4015 148.938 64.2159C149.132 64.0303 149.279 63.8011 149.382 63.5284L150.989 63.8182C150.861 64.2917 150.63 64.7064 150.296 65.0625C149.967 65.4148 149.552 65.6894 149.052 65.8864C148.556 66.0795 147.989 66.1761 147.353 66.1761ZM154.12 57.2727L156.046 60.6705L157.989 57.2727H159.847L157.126 61.6364L159.87 66H158.012L156.046 62.7386L154.086 66H152.222L154.938 61.6364L152.257 57.2727H154.12ZM165.666 57.2727V58.6364H160.899V57.2727H165.666ZM162.177 55.1818H163.876V63.4375C163.876 63.767 163.925 64.0152 164.024 64.1818C164.122 64.3447 164.249 64.4564 164.404 64.517C164.563 64.5739 164.736 64.6023 164.921 64.6023C165.058 64.6023 165.177 64.5928 165.279 64.5739C165.382 64.5549 165.461 64.5398 165.518 64.5284L165.825 65.9318C165.726 65.9697 165.586 66.0076 165.404 66.0455C165.222 66.0871 164.995 66.1098 164.722 66.1136C164.275 66.1212 163.859 66.0417 163.472 65.875C163.086 65.7083 162.774 65.4508 162.535 65.1023C162.296 64.7538 162.177 64.3163 162.177 63.7898V55.1818ZM175.438 69.4545C174.745 69.4545 174.149 69.3636 173.649 69.1818C173.152 69 172.747 68.7595 172.433 68.4602C172.118 68.161 171.883 67.8333 171.728 67.4773L173.188 66.875C173.291 67.0417 173.427 67.2178 173.597 67.4034C173.772 67.5928 174.007 67.7538 174.302 67.8864C174.601 68.0189 174.986 68.0852 175.455 68.0852C176.099 68.0852 176.632 67.928 177.052 67.6136C177.472 67.303 177.683 66.8068 177.683 66.125V64.4091H177.575C177.472 64.5947 177.325 64.8011 177.132 65.0284C176.942 65.2557 176.681 65.4527 176.347 65.6193C176.014 65.786 175.58 65.8693 175.046 65.8693C174.357 65.8693 173.736 65.7083 173.183 65.3864C172.633 65.0606 172.198 64.5814 171.876 63.9489C171.558 63.3125 171.399 62.5303 171.399 61.6023C171.399 60.6742 171.556 59.8788 171.87 59.2159C172.188 58.553 172.624 58.0455 173.177 57.6932C173.73 57.3371 174.357 57.1591 175.058 57.1591C175.599 57.1591 176.037 57.25 176.37 57.4318C176.703 57.6098 176.963 57.8182 177.149 58.0568C177.338 58.2955 177.484 58.5057 177.586 58.6875H177.711V57.2727H179.376V66.1932C179.376 66.9432 179.202 67.5587 178.853 68.0398C178.505 68.5208 178.033 68.8769 177.438 69.108C176.847 69.339 176.181 69.4545 175.438 69.4545ZM175.421 64.4602C175.91 64.4602 176.323 64.3466 176.66 64.1193C177.001 63.8883 177.258 63.5587 177.433 63.1307C177.611 62.6989 177.7 62.1818 177.7 61.5795C177.7 60.9924 177.613 60.4754 177.438 60.0284C177.264 59.5814 177.008 59.233 176.671 58.983C176.334 58.7292 175.918 58.6023 175.421 58.6023C174.91 58.6023 174.484 58.7348 174.143 59C173.802 59.2614 173.544 59.6174 173.37 60.0682C173.2 60.5189 173.114 61.0227 173.114 61.5795C173.114 62.1515 173.202 62.6534 173.376 63.0852C173.55 63.517 173.808 63.8542 174.149 64.0966C174.493 64.339 174.918 64.4602 175.421 64.4602ZM185.416 66.1761C184.556 66.1761 183.815 65.9924 183.194 65.625C182.577 65.2538 182.099 64.733 181.762 64.0625C181.429 63.3883 181.262 62.5985 181.262 61.6932C181.262 60.7992 181.429 60.0114 181.762 59.3295C182.099 58.6477 182.569 58.1155 183.171 57.733C183.777 57.3504 184.486 57.1591 185.296 57.1591C185.789 57.1591 186.266 57.2405 186.728 57.4034C187.19 57.5663 187.605 57.822 187.972 58.1705C188.34 58.5189 188.63 58.9716 188.842 59.5284C189.054 60.0814 189.16 60.7538 189.16 61.5455V62.1477H182.222V60.875H187.495C187.495 60.428 187.404 60.0322 187.222 59.6875C187.041 59.339 186.785 59.0644 186.455 58.8636C186.13 58.6629 185.747 58.5625 185.308 58.5625C184.83 58.5625 184.414 58.6799 184.058 58.9148C183.705 59.1458 183.433 59.4489 183.239 59.8239C183.05 60.1951 182.955 60.5985 182.955 61.0341V62.0284C182.955 62.6117 183.058 63.108 183.262 63.517C183.471 63.9261 183.76 64.2386 184.132 64.4545C184.503 64.6667 184.936 64.7727 185.433 64.7727C185.755 64.7727 186.048 64.7273 186.313 64.6364C186.578 64.5417 186.808 64.4015 187.001 64.2159C187.194 64.0303 187.342 63.8011 187.444 63.5284L189.052 63.8182C188.923 64.2917 188.692 64.7064 188.359 65.0625C188.029 65.4148 187.614 65.6894 187.114 65.8864C186.618 66.0795 186.052 66.1761 185.416 66.1761ZM192.744 60.8182V66H191.045V57.2727H192.676V58.6932H192.784C192.984 58.2311 193.299 57.8598 193.727 57.5795C194.159 57.2992 194.702 57.1591 195.357 57.1591C195.952 57.1591 196.473 57.2841 196.92 57.5341C197.367 57.7803 197.713 58.1477 197.96 58.6364C198.206 59.125 198.329 59.7292 198.329 60.4489V66H196.63V60.6534C196.63 60.0208 196.465 59.5265 196.136 59.1705C195.806 58.8106 195.354 58.6307 194.778 58.6307C194.384 58.6307 194.034 58.7159 193.727 58.8864C193.424 59.0568 193.183 59.3068 193.005 59.6364C192.831 59.9621 192.744 60.3561 192.744 60.8182ZM204.978 66V54.3636H209.126C210.027 54.3636 210.775 54.5189 211.37 54.8295C211.969 55.1402 212.416 55.5701 212.711 56.1193C213.007 56.6648 213.154 57.2955 213.154 58.0114C213.154 58.7235 213.005 59.3504 212.705 59.892C212.41 60.4299 211.963 60.8485 211.364 61.1477C210.77 61.447 210.022 61.5966 209.12 61.5966H205.978V60.0852H208.961C209.529 60.0852 209.991 60.0038 210.347 59.8409C210.707 59.678 210.971 59.4413 211.137 59.1307C211.304 58.8201 211.387 58.447 211.387 58.0114C211.387 57.572 211.302 57.1913 211.132 56.8693C210.965 56.5473 210.702 56.3011 210.342 56.1307C209.986 55.9564 209.518 55.8693 208.938 55.8693H206.734V66H204.978ZM210.722 60.75L213.597 66H211.597L208.779 60.75H210.722ZM218.806 66.1761C217.946 66.1761 217.206 65.9924 216.585 65.625C215.967 65.2538 215.49 64.733 215.153 64.0625C214.819 63.3883 214.653 62.5985 214.653 61.6932C214.653 60.7992 214.819 60.0114 215.153 59.3295C215.49 58.6477 215.96 58.1155 216.562 57.733C217.168 57.3504 217.876 57.1591 218.687 57.1591C219.179 57.1591 219.657 57.2405 220.119 57.4034C220.581 57.5663 220.996 57.822 221.363 58.1705C221.73 58.5189 222.02 58.9716 222.232 59.5284C222.444 60.0814 222.551 60.7538 222.551 61.5455V62.1477H215.613V60.875H220.886C220.886 60.428 220.795 60.0322 220.613 59.6875C220.431 59.339 220.176 59.0644 219.846 58.8636C219.52 58.6629 219.138 58.5625 218.698 58.5625C218.221 58.5625 217.804 58.6799 217.448 58.9148C217.096 59.1458 216.823 59.4489 216.63 59.8239C216.441 60.1951 216.346 60.5985 216.346 61.0341V62.0284C216.346 62.6117 216.448 63.108 216.653 63.517C216.861 63.9261 217.151 64.2386 217.522 64.4545C217.893 64.6667 218.327 64.7727 218.823 64.7727C219.145 64.7727 219.439 64.7273 219.704 64.6364C219.969 64.5417 220.198 64.4015 220.391 64.2159C220.585 64.0303 220.732 63.8011 220.835 63.5284L222.443 63.8182C222.314 64.2917 222.083 64.7064 221.749 65.0625C221.42 65.4148 221.005 65.6894 220.505 65.8864C220.009 66.0795 219.443 66.1761 218.806 66.1761ZM231.651 57.2727L228.487 66H226.668L223.498 57.2727H225.322L227.532 63.9886H227.623L229.828 57.2727H231.651ZM247.727 60.1818C247.727 61.4242 247.499 62.4924 247.045 63.3864C246.59 64.2765 245.967 64.9621 245.176 65.4432C244.388 65.9205 243.492 66.1591 242.488 66.1591C241.48 66.1591 240.581 65.9205 239.789 65.4432C239.001 64.9621 238.38 64.2746 237.926 63.3807C237.471 62.4867 237.244 61.4205 237.244 60.1818C237.244 58.9394 237.471 57.8731 237.926 56.983C238.38 56.089 239.001 55.4034 239.789 54.9261C240.581 54.4451 241.48 54.2045 242.488 54.2045C243.492 54.2045 244.388 54.4451 245.176 54.9261C245.967 55.4034 246.59 56.089 247.045 56.983C247.499 57.8731 247.727 58.9394 247.727 60.1818ZM245.988 60.1818C245.988 59.2348 245.835 58.4375 245.528 57.7898C245.225 57.1383 244.808 56.6458 244.278 56.3125C243.751 55.9754 243.155 55.8068 242.488 55.8068C241.818 55.8068 241.219 55.9754 240.693 56.3125C240.166 56.6458 239.749 57.1383 239.443 57.7898C239.14 58.4375 238.988 59.2348 238.988 60.1818C238.988 61.1288 239.14 61.928 239.443 62.5795C239.749 63.2273 240.166 63.7197 240.693 64.0568C241.219 64.3902 241.818 64.5568 242.488 64.5568C243.155 64.5568 243.751 64.3902 244.278 64.0568C244.808 63.7197 245.225 63.2273 245.528 62.5795C245.835 61.928 245.988 61.1288 245.988 60.1818ZM249.779 69.2727V57.2727H251.438V58.6875H251.58C251.679 58.5057 251.821 58.2955 252.007 58.0568C252.192 57.8182 252.45 57.6098 252.779 57.4318C253.109 57.25 253.544 57.1591 254.086 57.1591C254.791 57.1591 255.419 57.3371 255.972 57.6932C256.525 58.0492 256.959 58.5625 257.274 59.233C257.592 59.9034 257.751 60.7102 257.751 61.6534C257.751 62.5966 257.594 63.4053 257.279 64.0795C256.965 64.75 256.533 65.267 255.984 65.6307C255.435 65.9905 254.808 66.1705 254.103 66.1705C253.573 66.1705 253.139 66.0814 252.802 65.9034C252.469 65.7254 252.207 65.517 252.018 65.2784C251.828 65.0398 251.683 64.8277 251.58 64.642H251.478V69.2727H249.779ZM251.444 61.6364C251.444 62.25 251.533 62.7879 251.711 63.25C251.889 63.7121 252.147 64.0739 252.484 64.3352C252.821 64.5928 253.234 64.7216 253.722 64.7216C254.23 64.7216 254.654 64.5871 254.995 64.3182C255.336 64.0455 255.594 63.6761 255.768 63.2102C255.946 62.7443 256.035 62.2197 256.035 61.6364C256.035 61.0606 255.948 60.5436 255.774 60.0852C255.603 59.6269 255.346 59.2652 255.001 59C254.66 58.7348 254.234 58.6023 253.722 58.6023C253.23 58.6023 252.813 58.7292 252.472 58.983C252.135 59.2367 251.88 59.5909 251.705 60.0455C251.531 60.5 251.444 61.0303 251.444 61.6364ZM267.962 57.2727V58.6364H263.195V57.2727H267.962ZM264.474 55.1818H266.173V63.4375C266.173 63.767 266.222 64.0152 266.32 64.1818C266.419 64.3447 266.546 64.4564 266.701 64.517C266.86 64.5739 267.033 64.6023 267.218 64.6023C267.355 64.6023 267.474 64.5928 267.576 64.5739C267.678 64.5549 267.758 64.5398 267.815 64.5284L268.122 65.9318C268.023 65.9697 267.883 66.0076 267.701 66.0455C267.519 66.0871 267.292 66.1098 267.019 66.1136C266.572 66.1212 266.156 66.0417 265.769 65.875C265.383 65.7083 265.07 65.4508 264.832 65.1023C264.593 64.7538 264.474 64.3163 264.474 63.7898V55.1818ZM273.424 66.1761C272.606 66.1761 271.892 65.9886 271.282 65.6136C270.672 65.2386 270.199 64.714 269.862 64.0398C269.525 63.3655 269.356 62.5777 269.356 61.6761C269.356 60.7708 269.525 59.9792 269.862 59.3011C270.199 58.6231 270.672 58.0966 271.282 57.7216C271.892 57.3466 272.606 57.1591 273.424 57.1591C274.242 57.1591 274.956 57.3466 275.566 57.7216C276.176 58.0966 276.65 58.6231 276.987 59.3011C277.324 59.9792 277.492 60.7708 277.492 61.6761C277.492 62.5777 277.324 63.3655 276.987 64.0398C276.65 64.714 276.176 65.2386 275.566 65.6136C274.956 65.9886 274.242 66.1761 273.424 66.1761ZM273.43 64.75C273.96 64.75 274.4 64.6098 274.748 64.3295C275.096 64.0492 275.354 63.6761 275.521 63.2102C275.691 62.7443 275.776 62.2311 275.776 61.6705C275.776 61.1136 275.691 60.6023 275.521 60.1364C275.354 59.6667 275.096 59.2898 274.748 59.0057C274.4 58.7216 273.96 58.5795 273.43 58.5795C272.896 58.5795 272.453 58.7216 272.1 59.0057C271.752 59.2898 271.492 59.6667 271.322 60.1364C271.155 60.6023 271.072 61.1136 271.072 61.6705C271.072 62.2311 271.155 62.7443 271.322 63.2102C271.492 63.6761 271.752 64.0492 272.1 64.3295C272.453 64.6098 272.896 64.75 273.43 64.75ZM283.065 66.1761C282.247 66.1761 281.533 65.9886 280.923 65.6136C280.313 65.2386 279.839 64.714 279.502 64.0398C279.165 63.3655 278.997 62.5777 278.997 61.6761C278.997 60.7708 279.165 59.9792 279.502 59.3011C279.839 58.6231 280.313 58.0966 280.923 57.7216C281.533 57.3466 282.247 57.1591 283.065 57.1591C283.883 57.1591 284.597 57.3466 285.207 57.7216C285.817 58.0966 286.29 58.6231 286.627 59.3011C286.964 59.9792 287.133 60.7708 287.133 61.6761C287.133 62.5777 286.964 63.3655 286.627 64.0398C286.29 64.714 285.817 65.2386 285.207 65.6136C284.597 65.9886 283.883 66.1761 283.065 66.1761ZM283.07 64.75C283.601 64.75 284.04 64.6098 284.389 64.3295C284.737 64.0492 284.995 63.6761 285.161 63.2102C285.332 62.7443 285.417 62.2311 285.417 61.6705C285.417 61.1136 285.332 60.6023 285.161 60.1364C284.995 59.6667 284.737 59.2898 284.389 59.0057C284.04 58.7216 283.601 58.5795 283.07 58.5795C282.536 58.5795 282.093 58.7216 281.741 59.0057C281.392 59.2898 281.133 59.6667 280.962 60.1364C280.796 60.6023 280.712 61.1136 280.712 61.6705C280.712 62.2311 280.796 62.7443 280.962 63.2102C281.133 63.6761 281.392 64.0492 281.741 64.3295C282.093 64.6098 282.536 64.75 283.07 64.75ZM290.728 54.3636V66H289.029V54.3636H290.728ZM301.401 57.2727V58.6364H296.47V57.2727H301.401ZM297.822 66V56.2614C297.822 55.7159 297.941 55.2633 298.18 54.9034C298.418 54.5398 298.735 54.2689 299.129 54.0909C299.523 53.9091 299.951 53.8182 300.413 53.8182C300.754 53.8182 301.045 53.8466 301.288 53.9034C301.53 53.9564 301.71 54.0057 301.828 54.0511L301.43 55.4261C301.35 55.4034 301.248 55.3769 301.123 55.3466C300.998 55.3125 300.846 55.2955 300.668 55.2955C300.256 55.2955 299.96 55.3977 299.782 55.6023C299.608 55.8068 299.521 56.1023 299.521 56.4886V66H297.822ZM306.487 66.1761C305.668 66.1761 304.954 65.9886 304.345 65.6136C303.735 65.2386 303.261 64.714 302.924 64.0398C302.587 63.3655 302.418 62.5777 302.418 61.6761C302.418 60.7708 302.587 59.9792 302.924 59.3011C303.261 58.6231 303.735 58.0966 304.345 57.7216C304.954 57.3466 305.668 57.1591 306.487 57.1591C307.305 57.1591 308.019 57.3466 308.629 57.7216C309.239 58.0966 309.712 58.6231 310.049 59.3011C310.386 59.9792 310.555 60.7708 310.555 61.6761C310.555 62.5777 310.386 63.3655 310.049 64.0398C309.712 64.714 309.239 65.2386 308.629 65.6136C308.019 65.9886 307.305 66.1761 306.487 66.1761ZM306.492 64.75C307.023 64.75 307.462 64.6098 307.811 64.3295C308.159 64.0492 308.417 63.6761 308.583 63.2102C308.754 62.7443 308.839 62.2311 308.839 61.6705C308.839 61.1136 308.754 60.6023 308.583 60.1364C308.417 59.6667 308.159 59.2898 307.811 59.0057C307.462 58.7216 307.023 58.5795 306.492 58.5795C305.958 58.5795 305.515 58.7216 305.163 59.0057C304.814 59.2898 304.555 59.6667 304.384 60.1364C304.218 60.6023 304.134 61.1136 304.134 61.6705C304.134 62.2311 304.218 62.7443 304.384 63.2102C304.555 63.6761 304.814 64.0492 305.163 64.3295C305.515 64.6098 305.958 64.75 306.492 64.75ZM312.451 66V57.2727H314.093V58.6591H314.184C314.343 58.1894 314.623 57.8201 315.025 57.5511C315.43 57.2784 315.889 57.142 316.4 57.142C316.506 57.142 316.631 57.1458 316.775 57.1534C316.923 57.161 317.038 57.1705 317.122 57.1818V58.8068C317.053 58.7879 316.932 58.767 316.758 58.7443C316.584 58.7178 316.409 58.7045 316.235 58.7045C315.834 58.7045 315.476 58.7898 315.161 58.9602C314.851 59.1269 314.605 59.3598 314.423 59.6591C314.241 59.9545 314.15 60.2917 314.15 60.6705V66H312.451ZM326.502 66.1761C325.684 66.1761 324.97 65.9886 324.36 65.6136C323.75 65.2386 323.277 64.714 322.94 64.0398C322.603 63.3655 322.434 62.5777 322.434 61.6761C322.434 60.7708 322.603 59.9792 322.94 59.3011C323.277 58.6231 323.75 58.0966 324.36 57.7216C324.97 57.3466 325.684 57.1591 326.502 57.1591C327.32 57.1591 328.034 57.3466 328.644 57.7216C329.254 58.0966 329.728 58.6231 330.065 59.3011C330.402 59.9792 330.57 60.7708 330.57 61.6761C330.57 62.5777 330.402 63.3655 330.065 64.0398C329.728 64.714 329.254 65.2386 328.644 65.6136C328.034 65.9886 327.32 66.1761 326.502 66.1761ZM326.508 64.75C327.038 64.75 327.478 64.6098 327.826 64.3295C328.175 64.0492 328.432 63.6761 328.599 63.2102C328.769 62.7443 328.855 62.2311 328.855 61.6705C328.855 61.1136 328.769 60.6023 328.599 60.1364C328.432 59.6667 328.175 59.2898 327.826 59.0057C327.478 58.7216 327.038 58.5795 326.508 58.5795C325.974 58.5795 325.531 58.7216 325.178 59.0057C324.83 59.2898 324.57 59.6667 324.4 60.1364C324.233 60.6023 324.15 61.1136 324.15 61.6705C324.15 62.2311 324.233 62.7443 324.4 63.2102C324.57 63.6761 324.83 64.0492 325.178 64.3295C325.531 64.6098 325.974 64.75 326.508 64.75ZM336.62 57.2727V58.6364H331.688V57.2727H336.62ZM333.041 66V56.2614C333.041 55.7159 333.16 55.2633 333.399 54.9034C333.637 54.5398 333.953 54.2689 334.347 54.0909C334.741 53.9091 335.169 53.8182 335.632 53.8182C335.972 53.8182 336.264 53.8466 336.507 53.9034C336.749 53.9564 336.929 54.0057 337.046 54.0511L336.649 55.4261C336.569 55.4034 336.467 55.3769 336.342 55.3466C336.217 55.3125 336.065 55.2955 335.887 55.2955C335.474 55.2955 335.179 55.3977 335.001 55.6023C334.827 55.8068 334.739 56.1023 334.739 56.4886V66H333.041ZM342.526 57.2727V58.6364H337.595V57.2727H342.526ZM338.947 66V56.2614C338.947 55.7159 339.066 55.2633 339.305 54.9034C339.543 54.5398 339.86 54.2689 340.254 54.0909C340.648 53.9091 341.076 53.8182 341.538 53.8182C341.879 53.8182 342.17 53.8466 342.413 53.9034C342.655 53.9564 342.835 54.0057 342.953 54.0511L342.555 55.4261C342.475 55.4034 342.373 55.3769 342.248 55.3466C342.123 55.3125 341.971 55.2955 341.793 55.2955C341.381 55.2955 341.085 55.3977 340.907 55.6023C340.733 55.8068 340.646 56.1023 340.646 56.4886V66H338.947ZM345.978 54.3636V66H344.279V54.3636H345.978ZM348.264 66V57.2727H349.962V66H348.264ZM349.122 55.9261C348.826 55.9261 348.572 55.8277 348.36 55.6307C348.152 55.4299 348.048 55.1913 348.048 54.9148C348.048 54.6345 348.152 54.3958 348.36 54.1989C348.572 53.9981 348.826 53.8977 349.122 53.8977C349.417 53.8977 349.669 53.9981 349.877 54.1989C350.089 54.3958 350.195 54.6345 350.195 54.9148C350.195 55.1913 350.089 55.4299 349.877 55.6307C349.669 55.8277 349.417 55.9261 349.122 55.9261ZM353.947 60.8182V66H352.248V57.2727H353.879V58.6932H353.987C354.187 58.2311 354.502 57.8598 354.93 57.5795C355.362 57.2992 355.905 57.1591 356.561 57.1591C357.155 57.1591 357.676 57.2841 358.123 57.5341C358.57 57.7803 358.917 58.1477 359.163 58.6364C359.409 59.125 359.532 59.7292 359.532 60.4489V66H357.833V60.6534C357.833 60.0208 357.668 59.5265 357.339 59.1705C357.009 58.8106 356.557 58.6307 355.981 58.6307C355.587 58.6307 355.237 58.7159 354.93 58.8864C354.627 59.0568 354.386 59.3068 354.208 59.6364C354.034 59.9621 353.947 60.3561 353.947 60.8182ZM365.572 66.1761C364.712 66.1761 363.971 65.9924 363.35 65.625C362.733 65.2538 362.256 64.733 361.918 64.0625C361.585 63.3883 361.418 62.5985 361.418 61.6932C361.418 60.7992 361.585 60.0114 361.918 59.3295C362.256 58.6477 362.725 58.1155 363.328 57.733C363.934 57.3504 364.642 57.1591 365.453 57.1591C365.945 57.1591 366.422 57.2405 366.884 57.4034C367.346 57.5663 367.761 57.822 368.129 58.1705C368.496 58.5189 368.786 58.9716 368.998 59.5284C369.21 60.0814 369.316 60.7538 369.316 61.5455V62.1477H362.379V60.875H367.651C367.651 60.428 367.561 60.0322 367.379 59.6875C367.197 59.339 366.941 59.0644 366.612 58.8636C366.286 58.6629 365.903 58.5625 365.464 58.5625C364.987 58.5625 364.57 58.6799 364.214 58.9148C363.862 59.1458 363.589 59.4489 363.396 59.8239C363.206 60.1951 363.112 60.5985 363.112 61.0341V62.0284C363.112 62.6117 363.214 63.108 363.418 63.517C363.627 63.9261 363.917 64.2386 364.288 64.4545C364.659 64.6667 365.093 64.7727 365.589 64.7727C365.911 64.7727 366.204 64.7273 366.47 64.6364C366.735 64.5417 366.964 64.4015 367.157 64.2159C367.35 64.0303 367.498 63.8011 367.6 63.5284L369.208 63.8182C369.079 64.2917 368.848 64.7064 368.515 65.0625C368.186 65.4148 367.771 65.6894 367.271 65.8864C366.775 66.0795 366.208 66.1761 365.572 66.1761ZM375.436 66V57.2727H377.078V58.6591H377.168C377.328 58.1894 377.608 57.8201 378.009 57.5511C378.415 57.2784 378.873 57.142 379.384 57.142C379.49 57.142 379.615 57.1458 379.759 57.1534C379.907 57.161 380.023 57.1705 380.106 57.1818V58.8068C380.038 58.7879 379.917 58.767 379.742 58.7443C379.568 58.7178 379.394 58.7045 379.22 58.7045C378.818 58.7045 378.46 58.7898 378.146 58.9602C377.835 59.1269 377.589 59.3598 377.407 59.6591C377.225 59.9545 377.134 60.2917 377.134 60.6705V66H375.436ZM385.025 66.1761C384.165 66.1761 383.425 65.9924 382.803 65.625C382.186 65.2538 381.709 64.733 381.372 64.0625C381.038 63.3883 380.872 62.5985 380.872 61.6932C380.872 60.7992 381.038 60.0114 381.372 59.3295C381.709 58.6477 382.178 58.1155 382.781 57.733C383.387 57.3504 384.095 57.1591 384.906 57.1591C385.398 57.1591 385.875 57.2405 386.337 57.4034C386.8 57.5663 387.214 57.822 387.582 58.1705C387.949 58.5189 388.239 58.9716 388.451 59.5284C388.663 60.0814 388.769 60.7538 388.769 61.5455V62.1477H381.832V60.875H387.105C387.105 60.428 387.014 60.0322 386.832 59.6875C386.65 59.339 386.394 59.0644 386.065 58.8636C385.739 58.6629 385.356 58.5625 384.917 58.5625C384.44 58.5625 384.023 58.6799 383.667 58.9148C383.315 59.1458 383.042 59.4489 382.849 59.8239C382.659 60.1951 382.565 60.5985 382.565 61.0341V62.0284C382.565 62.6117 382.667 63.108 382.872 63.517C383.08 63.9261 383.37 64.2386 383.741 64.4545C384.112 64.6667 384.546 64.7727 385.042 64.7727C385.364 64.7727 385.658 64.7273 385.923 64.6364C386.188 64.5417 386.417 64.4015 386.61 64.2159C386.803 64.0303 386.951 63.8011 387.053 63.5284L388.661 63.8182C388.533 64.2917 388.302 64.7064 387.968 65.0625C387.639 65.4148 387.224 65.6894 386.724 65.8864C386.228 66.0795 385.661 66.1761 385.025 66.1761ZM394.728 57.2727V58.6364H389.961V57.2727H394.728ZM391.239 55.1818H392.938V63.4375C392.938 63.767 392.988 64.0152 393.086 64.1818C393.185 64.3447 393.311 64.4564 393.467 64.517C393.626 64.5739 393.798 64.6023 393.984 64.6023C394.12 64.6023 394.239 64.5928 394.342 64.5739C394.444 64.5549 394.524 64.5398 394.58 64.5284L394.887 65.9318C394.789 65.9697 394.649 66.0076 394.467 66.0455C394.285 66.0871 394.058 66.1098 393.785 66.1136C393.338 66.1212 392.921 66.0417 392.535 65.875C392.149 65.7083 391.836 65.4508 391.597 65.1023C391.359 64.7538 391.239 64.3163 391.239 63.7898V55.1818ZM399.147 66.1932C398.594 66.1932 398.094 66.0909 397.647 65.8864C397.2 65.678 396.846 65.3769 396.585 64.983C396.327 64.589 396.198 64.1061 396.198 63.5341C396.198 63.0417 396.293 62.6364 396.482 62.3182C396.672 62 396.927 61.7481 397.249 61.5625C397.571 61.3769 397.931 61.2367 398.329 61.142C398.727 61.0473 399.132 60.9754 399.545 60.9261C400.068 60.8655 400.492 60.8163 400.818 60.7784C401.143 60.7367 401.38 60.6705 401.528 60.5795C401.676 60.4886 401.749 60.3409 401.749 60.1364V60.0966C401.749 59.6004 401.609 59.2159 401.329 58.9432C401.052 58.6705 400.64 58.5341 400.09 58.5341C399.518 58.5341 399.068 58.661 398.738 58.9148C398.412 59.1648 398.187 59.4432 398.062 59.75L396.465 59.3864C396.655 58.8561 396.931 58.428 397.295 58.1023C397.662 57.7727 398.085 57.5341 398.562 57.3864C399.039 57.2348 399.541 57.1591 400.068 57.1591C400.416 57.1591 400.785 57.2008 401.176 57.2841C401.569 57.3636 401.937 57.5114 402.278 57.7273C402.623 57.9432 402.905 58.2519 403.124 58.6534C403.344 59.0511 403.454 59.5682 403.454 60.2045V66H401.795V64.8068H401.727C401.617 65.0265 401.452 65.2424 401.232 65.4545C401.013 65.6667 400.73 65.8428 400.386 65.983C400.041 66.1231 399.628 66.1932 399.147 66.1932ZM399.516 64.8295C399.986 64.8295 400.388 64.7367 400.721 64.5511C401.058 64.3655 401.314 64.1231 401.488 63.8239C401.666 63.5208 401.755 63.197 401.755 62.8523V61.7273C401.694 61.7879 401.577 61.8447 401.403 61.8977C401.232 61.947 401.037 61.9905 400.818 62.0284C400.598 62.0625 400.384 62.0947 400.176 62.125C399.967 62.1515 399.793 62.1742 399.653 62.1932C399.323 62.2348 399.022 62.3049 398.749 62.4034C398.48 62.5019 398.265 62.6439 398.102 62.8295C397.943 63.0114 397.863 63.2538 397.863 63.5568C397.863 63.9773 398.018 64.2955 398.329 64.5114C398.64 64.7235 399.035 64.8295 399.516 64.8295ZM405.717 66V57.2727H407.416V66H405.717ZM406.575 55.9261C406.279 55.9261 406.025 55.8277 405.813 55.6307C405.605 55.4299 405.501 55.1913 405.501 54.9148C405.501 54.6345 405.605 54.3958 405.813 54.1989C406.025 53.9981 406.279 53.8977 406.575 53.8977C406.87 53.8977 407.122 53.9981 407.33 54.1989C407.543 54.3958 407.649 54.6345 407.649 54.9148C407.649 55.1913 407.543 55.4299 407.33 55.6307C407.122 55.8277 406.87 55.9261 406.575 55.9261ZM411.4 54.3636V66H409.701V54.3636H411.4ZM424.46 59.4034L422.92 59.6761C422.855 59.4792 422.753 59.2917 422.613 59.1136C422.477 58.9356 422.291 58.7898 422.056 58.6761C421.821 58.5625 421.528 58.5057 421.176 58.5057C420.694 58.5057 420.293 58.6136 419.971 58.8295C419.649 59.0417 419.488 59.3163 419.488 59.6534C419.488 59.9451 419.596 60.1799 419.812 60.358C420.028 60.536 420.376 60.6818 420.857 60.7955L422.244 61.1136C423.047 61.2992 423.645 61.5852 424.039 61.9716C424.433 62.358 424.63 62.8598 424.63 63.4773C424.63 64 424.479 64.4659 424.176 64.875C423.876 65.2803 423.458 65.5985 422.92 65.8295C422.386 66.0606 421.766 66.1761 421.062 66.1761C420.085 66.1761 419.287 65.9678 418.67 65.5511C418.052 65.1307 417.674 64.5341 417.534 63.7614L419.176 63.5114C419.278 63.9394 419.488 64.2633 419.806 64.483C420.124 64.6989 420.539 64.8068 421.051 64.8068C421.607 64.8068 422.052 64.6913 422.386 64.4602C422.719 64.2254 422.886 63.9394 422.886 63.6023C422.886 63.3295 422.784 63.1004 422.579 62.9148C422.378 62.7292 422.069 62.589 421.653 62.4943L420.176 62.1705C419.361 61.9848 418.759 61.6894 418.369 61.2841C417.982 60.8788 417.789 60.3655 417.789 59.7443C417.789 59.2292 417.933 58.7784 418.221 58.392C418.509 58.0057 418.907 57.7045 419.414 57.4886C419.922 57.2689 420.503 57.1591 421.159 57.1591C422.102 57.1591 422.844 57.3636 423.386 57.7727C423.927 58.178 424.285 58.7216 424.46 59.4034ZM429.038 66.1932C428.485 66.1932 427.985 66.0909 427.538 65.8864C427.091 65.678 426.737 65.3769 426.475 64.983C426.218 64.589 426.089 64.1061 426.089 63.5341C426.089 63.0417 426.184 62.6364 426.373 62.3182C426.562 62 426.818 61.7481 427.14 61.5625C427.462 61.3769 427.822 61.2367 428.22 61.142C428.617 61.0473 429.023 60.9754 429.436 60.9261C429.958 60.8655 430.382 60.8163 430.708 60.7784C431.034 60.7367 431.271 60.6705 431.418 60.5795C431.566 60.4886 431.64 60.3409 431.64 60.1364V60.0966C431.64 59.6004 431.5 59.2159 431.22 58.9432C430.943 58.6705 430.53 58.5341 429.981 58.5341C429.409 58.5341 428.958 58.661 428.629 58.9148C428.303 59.1648 428.078 59.4432 427.953 59.75L426.356 59.3864C426.545 58.8561 426.822 58.428 427.186 58.1023C427.553 57.7727 427.975 57.5341 428.453 57.3864C428.93 57.2348 429.432 57.1591 429.958 57.1591C430.307 57.1591 430.676 57.2008 431.066 57.2841C431.46 57.3636 431.828 57.5114 432.168 57.7273C432.513 57.9432 432.795 58.2519 433.015 58.6534C433.235 59.0511 433.345 59.5682 433.345 60.2045V66H431.686V64.8068H431.617C431.507 65.0265 431.343 65.2424 431.123 65.4545C430.903 65.6667 430.621 65.8428 430.276 65.983C429.932 66.1231 429.519 66.1932 429.038 66.1932ZM429.407 64.8295C429.877 64.8295 430.278 64.7367 430.612 64.5511C430.949 64.3655 431.204 64.1231 431.379 63.8239C431.557 63.5208 431.646 63.197 431.646 62.8523V61.7273C431.585 61.7879 431.468 61.8447 431.293 61.8977C431.123 61.947 430.928 61.9905 430.708 62.0284C430.489 62.0625 430.275 62.0947 430.066 62.125C429.858 62.1515 429.684 62.1742 429.543 62.1932C429.214 62.2348 428.913 62.3049 428.64 62.4034C428.371 62.5019 428.155 62.6439 427.992 62.8295C427.833 63.0114 427.754 63.2538 427.754 63.5568C427.754 63.9773 427.909 64.2955 428.22 64.5114C428.53 64.7235 428.926 64.8295 429.407 64.8295ZM437.306 54.3636V66H435.607V54.3636H437.306ZM443.353 66.1761C442.493 66.1761 441.753 65.9924 441.132 65.625C440.514 65.2538 440.037 64.733 439.7 64.0625C439.366 63.3883 439.2 62.5985 439.2 61.6932C439.2 60.7992 439.366 60.0114 439.7 59.3295C440.037 58.6477 440.507 58.1155 441.109 57.733C441.715 57.3504 442.423 57.1591 443.234 57.1591C443.726 57.1591 444.203 57.2405 444.666 57.4034C445.128 57.5663 445.543 57.822 445.91 58.1705C446.277 58.5189 446.567 58.9716 446.779 59.5284C446.991 60.0814 447.097 60.7538 447.097 61.5455V62.1477H440.16V60.875H445.433C445.433 60.428 445.342 60.0322 445.16 59.6875C444.978 59.339 444.722 59.0644 444.393 58.8636C444.067 58.6629 443.685 58.5625 443.245 58.5625C442.768 58.5625 442.351 58.6799 441.995 58.9148C441.643 59.1458 441.37 59.4489 441.177 59.8239C440.988 60.1951 440.893 60.5985 440.893 61.0341V62.0284C440.893 62.6117 440.995 63.108 441.2 63.517C441.408 63.9261 441.698 64.2386 442.069 64.4545C442.44 64.6667 442.874 64.7727 443.37 64.7727C443.692 64.7727 443.986 64.7273 444.251 64.6364C444.516 64.5417 444.745 64.4015 444.938 64.2159C445.132 64.0303 445.279 63.8011 445.382 63.5284L446.989 63.8182C446.861 64.2917 446.63 64.7064 446.296 65.0625C445.967 65.4148 445.552 65.6894 445.052 65.8864C444.556 66.0795 443.989 66.1761 443.353 66.1761ZM455.522 59.4034L453.982 59.6761C453.918 59.4792 453.816 59.2917 453.676 59.1136C453.539 58.9356 453.354 58.7898 453.119 58.6761C452.884 58.5625 452.59 58.5057 452.238 58.5057C451.757 58.5057 451.355 58.6136 451.034 58.8295C450.712 59.0417 450.551 59.3163 450.551 59.6534C450.551 59.9451 450.659 60.1799 450.874 60.358C451.09 60.536 451.439 60.6818 451.92 60.7955L453.306 61.1136C454.109 61.2992 454.708 61.5852 455.102 61.9716C455.496 62.358 455.693 62.8598 455.693 63.4773C455.693 64 455.541 64.4659 455.238 64.875C454.939 65.2803 454.52 65.5985 453.982 65.8295C453.448 66.0606 452.829 66.1761 452.124 66.1761C451.147 66.1761 450.35 65.9678 449.732 65.5511C449.115 65.1307 448.736 64.5341 448.596 63.7614L450.238 63.5114C450.34 63.9394 450.551 64.2633 450.869 64.483C451.187 64.6989 451.602 64.8068 452.113 64.8068C452.67 64.8068 453.115 64.6913 453.448 64.4602C453.782 64.2254 453.948 63.9394 453.948 63.6023C453.948 63.3295 453.846 63.1004 453.641 62.9148C453.441 62.7292 453.132 62.589 452.715 62.4943L451.238 62.1705C450.424 61.9848 449.821 61.6894 449.431 61.2841C449.045 60.8788 448.852 60.3655 448.852 59.7443C448.852 59.2292 448.996 58.7784 449.284 58.392C449.571 58.0057 449.969 57.7045 450.477 57.4886C450.984 57.2689 451.566 57.1591 452.221 57.1591C453.164 57.1591 453.907 57.3636 454.448 57.7727C454.99 58.178 455.348 58.7216 455.522 59.4034Z\" fill=\"black\"/>\r\n </g>\r\n <defs>\r\n <filter id=\"filter0_d_3784_14918\" x=\"-27.3342\" y=\"96.2387\" width=\"642.994\" height=\"516.406\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"63.2989\"/>\r\n <feGaussianBlur stdDeviation=\"63.2989\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.203922 0 0 0 0 0.25098 0 0 0 0 0.329412 0 0 0 0.14 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <pattern id=\"pattern0\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image0_3784_14918\" transform=\"matrix(0.00142653 0 0 0.00435203 -5.20833e-05 -0.0012233)\"/>\r\n </pattern>\r\n <pattern id=\"pattern1\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00307802 0 0 0.0400293 -0.161538 -9.8)\"/>\r\n </pattern>\r\n <pattern id=\"pattern2\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00754986 0 0 0.0363903 -0.386792 -10.1364)\"/>\r\n </pattern>\r\n <pattern id=\"pattern3\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00592804 0 0 0.0400293 -2.57778 -9.8)\"/>\r\n </pattern>\r\n <filter id=\"filter1_dd_3784_14918\" x=\"95.8877\" y=\"156.162\" width=\"396.55\" height=\"269.962\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.83637 0 0 0 0 0.938377 0 0 0 0 0.996667 0 0 0 1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"0.843986\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.05 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <pattern id=\"pattern4\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image0_3784_14918\" transform=\"matrix(0.00142653 0 0 0.00435203 -5.20833e-05 -0.0012233)\"/>\r\n </pattern>\r\n <pattern id=\"pattern5\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00307802 0 0 0.0400293 -0.161538 -9.8)\"/>\r\n </pattern>\r\n <pattern id=\"pattern6\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00754986 0 0 0.0363903 -0.386792 -10.1364)\"/>\r\n </pattern>\r\n <pattern id=\"pattern7\" patternContentUnits=\"objectBoundingBox\" width=\"1\" height=\"1\">\r\n <use xlink:href=\"#image1_3784_14918\" transform=\"matrix(0.00592804 0 0 0.0400293 -2.57778 -9.8)\"/>\r\n </pattern>\r\n <filter id=\"filter2_ddd_3784_14918\" x=\"0.517612\" y=\"109.568\" width=\"260.124\" height=\"112.131\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.913725 0 0 0 0 0.968627 0 0 0 0 1 0 0 0 1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"0.843986\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"1.26598\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect2_dropShadow_3784_14918\" result=\"effect3_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect3_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter3_d_3784_14918\" x=\"-3.12506\" y=\"108.733\" width=\"267.409\" height=\"119.416\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"2.80745\"/>\r\n <feGaussianBlur stdDeviation=\"3.50931\"/>\r\n <feComposite in2=\"hardAlpha\" operator=\"out\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter4_ddd_3784_14918\" x=\"29.2129\" y=\"402.864\" width=\"151.074\" height=\"81.0224\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.913725 0 0 0 0 0.968627 0 0 0 0 1 0 0 0 1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"0.843986\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"1.26598\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect2_dropShadow_3784_14918\" result=\"effect3_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect3_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter5_dd_3784_14918\" x=\"22.461\" y=\"406.24\" width=\"164.577\" height=\"94.5262\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"1.68797\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"3.37594\"/>\r\n <feGaussianBlur stdDeviation=\"2.53196\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.03 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"10.1278\"/>\r\n <feGaussianBlur stdDeviation=\"6.75188\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.08 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter6_dd_3784_14918\" x=\"400.853\" y=\"182.032\" width=\"155.293\" height=\"94.5262\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"1.68797\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"3.37594\"/>\r\n <feGaussianBlur stdDeviation=\"2.53196\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.03 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"10.1278\"/>\r\n <feGaussianBlur stdDeviation=\"6.75188\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.08 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter7_dd_3784_14918\" x=\"363.908\" y=\"179.389\" width=\"229.184\" height=\"112.959\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"1.68797\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"3.37594\"/>\r\n <feGaussianBlur stdDeviation=\"2.53196\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.03 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feOffset dy=\"10.1278\"/>\r\n <feGaussianBlur stdDeviation=\"6.75188\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.08 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter8_ddd_3784_14918\" x=\"370.66\" y=\"176.013\" width=\"215.68\" height=\"99.455\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.913725 0 0 0 0 0.968627 0 0 0 0 1 0 0 0 1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"0.843986\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"1.26598\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect2_dropShadow_3784_14918\" result=\"effect3_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect3_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter9_ddd_3784_14918\" x=\"303.238\" y=\"392.245\" width=\"260.124\" height=\"112.131\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feMorphology radius=\"3.37594\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feOffset/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.913725 0 0 0 0 0.968627 0 0 0 0 1 0 0 0 1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"0.843986\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.06 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect1_dropShadow_3784_14918\" result=\"effect2_dropShadow_3784_14918\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"0.843986\"/>\r\n <feGaussianBlur stdDeviation=\"1.26598\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.1 0\"/>\r\n <feBlend mode=\"normal\" in2=\"effect2_dropShadow_3784_14918\" result=\"effect3_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect3_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <filter id=\"filter10_d_3784_14918\" x=\"299.596\" y=\"391.41\" width=\"267.409\" height=\"119.416\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\r\n <feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\r\n <feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\r\n <feOffset dy=\"2.80745\"/>\r\n <feGaussianBlur stdDeviation=\"3.50931\"/>\r\n <feComposite in2=\"hardAlpha\" operator=\"out\"/>\r\n <feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0\"/>\r\n <feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3784_14918\"/>\r\n <feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3784_14918\" result=\"shape\"/>\r\n </filter>\r\n <linearGradient id=\"paint0_linear_3784_14918\" x1=\"226.065\" y1=\"5.68624\" x2=\"251.642\" y2=\"39.3726\" gradientUnits=\"userSpaceOnUse\">\r\n <stop stop-color=\"#794FD9\"/>\r\n <stop offset=\"1\" stop-color=\"#33B1F7\"/>\r\n </linearGradient>\r\n <clipPath id=\"clip0_3784_14918\">\r\n <rect width=\"587\" height=\"510.965\" fill=\"white\" transform=\"translate(586.997 511) rotate(-180)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip1_3784_14918\">\r\n <rect width=\"18.6111\" height=\"16.5199\" fill=\"white\" transform=\"translate(108.14 174.154)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip2_3784_14918\">\r\n <rect width=\"9.92591\" height=\"9.92591\" fill=\"white\" transform=\"translate(244.677 170.951)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip3_3784_14918\">\r\n <rect width=\"18.6111\" height=\"16.5199\" fill=\"white\" transform=\"translate(108.14 174.154)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip4_3784_14918\">\r\n <rect width=\"9.92591\" height=\"9.92591\" fill=\"white\" transform=\"translate(244.677 170.951)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip5_3784_14918\">\r\n <rect x=\"3.89355\" y=\"112.944\" width=\"253.372\" height=\"105.379\" rx=\"6.75188\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip6_3784_14918\">\r\n <rect width=\"11.2298\" height=\"11.2298\" fill=\"white\" transform=\"translate(138.235 128.385)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip7_3784_14918\">\r\n <rect x=\"32.5889\" y=\"406.24\" width=\"144.322\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip8_3784_14918\">\r\n <rect width=\"46.4192\" height=\"45.0126\" fill=\"white\" transform=\"translate(130.686 407.084)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip9_3784_14918\">\r\n <rect x=\"32.5889\" y=\"406.24\" width=\"144.322\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip10_3784_14918\">\r\n <rect width=\"46.4192\" height=\"45.0126\" fill=\"white\" transform=\"translate(130.686 407.084)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip11_3784_14918\">\r\n <rect x=\"410.981\" y=\"182.032\" width=\"135.038\" height=\"74.2707\" rx=\"6.75188\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip12_3784_14918\">\r\n <rect width=\"46.4192\" height=\"45.0126\" fill=\"white\" transform=\"translate(499.794 182.876)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip13_3784_14918\">\r\n <rect x=\"374.036\" y=\"179.389\" width=\"208.928\" height=\"92.7032\" rx=\"8.30178\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip14_3784_14918\">\r\n <rect x=\"374.036\" y=\"179.389\" width=\"208.928\" height=\"92.7032\" rx=\"8.30178\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip15_3784_14918\">\r\n <rect x=\"306.614\" y=\"395.621\" width=\"253.372\" height=\"105.379\" rx=\"6.75188\" fill=\"white\"/>\r\n </clipPath>\r\n <clipPath id=\"clip16_3784_14918\">\r\n <rect width=\"11.2298\" height=\"11.2298\" fill=\"white\" transform=\"translate(431.956 411.062)\"/>\r\n </clipPath>\r\n <clipPath id=\"clip17_3784_14918\">\r\n <rect width=\"154.44\" height=\"40\" fill=\"white\" transform=\"translate(216.277 0.034668)\"/>\r\n </clipPath>\r\n <image id=\"image0_3784_14918\" width=\"701\" height=\"341\" xlink:href=\"data:image/png;base64,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\"/>\r\n <image id=\"image1_3784_14918\" width=\"701\" height=\"341\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAr0AAAFVCAYAAADi21eqAAAAAXNSR0IArs4c6QAAIABJREFUeF7t3QuQZFd5H/Dv9D4kQSELbBcoSLbM7hpRBgQ7s4KAKIc4Dq8AAeOQlKGIg7UrGUEhAtlZY8wAhh2hIBSQWK1kO44tU1Zi83BsCedJeJjH7PIwAYN2tRAoUsaFi5hyZGu1Myd15LnO9XXPdPdM907v2V9XUWh77j33nt93bve/b597O4UHAQIECBAgQIAAgcoFUuX90z0CBAgQIECAAAECIfQaBAQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBAgAABAgQIVC8g9FZfYh0kQIAAAQIECBAQeo0BAgQIECBAgACB6gWE3upLrIMECBAgQIAAAQJCrzFAgAABAgQIECBQvYDQW32JdZAAAQIECBAgQEDoNQYIECBAgAABAgSqFxB6qy+xDhIgQIAAAQIECAi9xgABAgQIECBAgED1AkJv9SXWQQIECBAgQIAAAaHXGCBAgAABAgQIEKheQOitvsQ6SIAAAQIECBAgIPQaAwQIECBAgAABAtULCL3Vl1gHCRAgQIAAAQIEhF5jgAABAgQIECBAoHoBobf6EusgAQIECBAgQICA0GsMECBA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\"/>\r\n </defs>\r\n </svg>\r\n \r\n <!-- <img *ngIf=\"!isloader\" src=\"./assets/tango/Icons/LHS.svg\" alt=\"Image\" class=\"img-fluid w-100\"> -->\r\n </div>\r\n <div *ngIf=\"!isloader\" class=\"col-lg-6 px-10 \"> \r\n <div class=\" card card-flush w-lg-600px ms-20 py-3 \">\r\n <div class=\"login-form login-signin\">\r\n \r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-10 ms-10\">\r\n <h3 class=\"login-title\">Log in</h3>\r\n <p class=\"login-sub-title\">Welcome back! Please enter your details.</p>\r\n </div>\r\n <form #loginForm=\"ngForm\" class=\"w-100 title-padding\" novalidate=\"novalidate\">\r\n <div class=\"mb-5 \">\r\n <label for=\"Email\" class=\"form-label\">Email</label>\r\n <input type=\"email\" class=\"form-control\" id=\"Email\" name=\"Email\" autocomplete=\"off\" required [(ngModel)]=\"credentials.email\" autocomplete=\"off\" #emailInput>\r\n </div>\r\n <div class=\"mb-5 \">\r\n <label for=\"Password\" class=\"form-label\">Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input class=\"form-control\" id=\"Password\" [type]=\"show ? 'text' : 'password'\"\r\n placeholder=\"\" name=\"password\" autocomplete=\"off\" required #passwordInput\r\n [(ngModel)]=\"credentials.password\">\r\n <span (click)=\"showPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"show\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!show\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div *ngIf=\"hasError\" class=\"text-danger\" style=\"color: #ffffff !important;\">\r\n Email Id / Mobile Number or Password is incorrect\r\n </div>\r\n </div>\r\n<div class=\"text-center\">\r\n <h6 class=\"forgot cursor-pointer\" routerLink=\"/auth/forgot-password\">Forgot Password</h6>\r\n\r\n</div>\r\n <button class=\"btn btn-primary w-100 mt-3\" [disabled]=\"!loginForm.valid || (!credentials.email || !credentials.password)\" (click)=\"onLogin()\">Sign in</button>\r\n\r\n <!-- <button class=\"btn btn-outline w-100 mt-3 not-allowed coming-soon\" >\r\n <svg xmlns=\"http://www.w3.org/2000/svg\"\r\n width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_3727_17759)\">\r\n <path\r\n d=\"M24.2663 12.9767C24.2663 12.161 24.2001 11.3408 24.059 10.5383H12.7402V15.1593H19.222C18.953 16.6497 18.0888 17.9681 16.8233 18.8058V21.8042H20.6903C22.9611 19.7142 24.2663 16.6276 24.2663 12.9767Z\"\r\n fill=\"#4285F4\" />\r\n <path\r\n d=\"M12.7401 24.701C15.9766 24.701 18.7059 23.6384 20.6945 21.8041L16.8276 18.8057C15.7517 19.5377 14.3627 19.9522 12.7445 19.9522C9.61388 19.9522 6.95946 17.8401 6.00705 15.0005H2.0166V18.0914C4.05371 22.1436 8.2029 24.701 12.7401 24.701Z\"\r\n fill=\"#34A853\" />\r\n <path\r\n d=\"M6.00277 15.0004C5.50011 13.5101 5.50011 11.8962 6.00277 10.4059V7.31494H2.01674C0.314734 10.7057 0.314734 14.7006 2.01674 18.0913L6.00277 15.0004Z\"\r\n fill=\"#FBBC04\" />\r\n <path\r\n d=\"M12.7401 5.44986C14.4509 5.4234 16.1044 6.06716 17.3434 7.24886L20.7695 3.82281C18.6001 1.7857 15.7208 0.665729 12.7401 0.701004C8.2029 0.701004 4.05371 3.25842 2.0166 7.315L6.00264 10.4059C6.95064 7.56193 9.60947 5.44986 12.7401 5.44986Z\"\r\n fill=\"#EA4335\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_3727_17759\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.5 0.700195)\" />\r\n </clipPath>\r\n </defs>\r\n </svg><span class=\"mx-2\">Sign in with Google</span> \r\n <span class=\"tooltip\">Coming Soon</span>\r\n </button>\r\n <button class=\"btn btn-outline w-100 mt-3 not-allowed coming-soon\" ><svg xmlns=\"http://www.w3.org/2000/svg\"\r\n width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_3727_6141)\">\r\n <path d=\"M11.9057 12.104H0.5V0.700195H11.9057V12.104Z\" fill=\"#F1511B\" />\r\n <path d=\"M24.5004 12.104H13.0938V0.700195H24.4994V12.104H24.5004Z\" fill=\"#80CC28\" />\r\n <path d=\"M11.9057 24.7002H0.5V13.2964H11.9057V24.7002Z\" fill=\"#00ADEF\" />\r\n <path d=\"M24.5004 24.7002H13.0938V13.2964H24.4994V24.7002H24.5004Z\" fill=\"#FBBC09\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_3727_6141\">\r\n <rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0.5 0.700195)\" />\r\n </clipPath>\r\n </defs>\r\n </svg><span class=\"mx-2\">Sign in with Microsoft</span> <span class=\"tooltip\">Coming Soon</span></button> -->\r\n </form>\r\n\r\n <div class=\"mt-3 text-center ms-75px\"><span class=\"signup-default\"></span>Don’t have an account?<span class=\"signup-primary ms-2 cursor-pointer\" routerLink=\"/auth/signup\">Sign up</span></div>\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack py-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer text-decoration-underline cursor-pointer\">&#64;Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"mailto:support@tangotech.co.in?subject=Subject%20Here&body=Body%20Here\" class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\" stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n \r\n </ul>\r\n </div>\r\n </div>\r\n \r\n\r\n\r\n\r\n </div>\r\n </div>\r\n </div>\r\n<img src=\"./assets/tango/Icons/login-background1.svg\" alt=\"Image\" class=\"background-image\">\r\n</div>","import { Injectable, EventEmitter } from '@angular/core';\r\nimport { Subject } from 'rxjs';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ConversionService {\r\n private filtersSubject = new Subject<any>();\r\n public $filters = this.filtersSubject.asObservable();\r\n\r\n public $stepper: EventEmitter<any>;\r\n \r\n\r\n constructor() {\r\n this.$stepper = new EventEmitter();\r\n \r\n }\r\n apply(options: any): void {\r\n this.filtersSubject.next(options);\r\n }\r\n completeStepper(data: any): void {\r\n this.$stepper.emit(data);\r\n console.log(data)\r\n }\r\n\r\n \r\n}\r\n","import { ChangeDetectorRef, Component, OnDestroy } from '@angular/core';\r\nimport { ConversionService } from '../services/conversion.service';\r\nimport { AbstractControl, FormBuilder, FormGroup, Validators } from '@angular/forms';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { Subscription } from 'rxjs';\r\n@Component({\r\n selector: 'lib-step1',\r\n templateUrl: './step1.component.html',\r\n styleUrl: './step1.component.scss'\r\n})\r\nexport class Step1Component implements OnDestroy {\r\n aboutForm: FormGroup\r\n passwordStrength:string = '0%'\r\n confirmPasswordStrength:string = '0%'\r\n isClientNameTaken: any;\r\n isEmailTaken: any;\r\n isMobileTaken: any;\r\n subscriptions:Subscription[] = []\r\n countryList: any;\r\n passwordShow: boolean=false;\r\n confirmPasswordShow: boolean=false;\r\n constructor(private setterservice: ConversionService, private fb: FormBuilder, private authService:AuthService, private cd:ChangeDetectorRef) {\r\n this.initForm()\r\n this.subscriptions.push(this.authService.aboutFormData.subscribe((data)=>{if(data){ \r\n this.aboutForm.patchValue({\r\n clientName:data.clientName,\r\n firstName:data.firstName,\r\n lastName:data.lastName,\r\n corporateEmail:data.corporateEmail,\r\n countryCode:data.countryCode,\r\n mobileNumber:data.mobileNumber,\r\n password:data.password,\r\n confirmPassword:data.confirmPassword\r\n })\r\n this.reinitializePasswordValidation(data.password, data.confirmPassword)\r\n }}))\r\n this.getCountryCodes()\r\n }\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{subscription.unsubscribe()})\r\n }\r\n\r\n initForm() {\r\n this.aboutForm = this.fb.group({\r\n clientName: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n firstName: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(3),\r\n Validators.maxLength(50),\r\n ]),\r\n ],\r\n lastName: ['', Validators.compose([\r\n // Validators.required,\r\n // Validators.minLength(3),\r\n // Validators.maxLength(50),\r\n ]),\r\n ],\r\n corporateEmail: ['', Validators.compose([\r\n Validators.required,\r\n Validators.pattern(\"^[a-zA-Z0-9]+([.-_]?[a-zA-Z0-9]+)*@[a-zA-Z0-9]+([.-_]?[a-zA-Z]+)*[.]{1}[a-zA-Z]{2,}$\"),\r\n Validators.minLength(3),\r\n Validators.maxLength(100),\r\n ]),\r\n ],\r\n countryCode: ['91', Validators.compose([\r\n Validators.required\r\n ]),\r\n ],\r\n mobileNumber: ['', Validators.compose([\r\n Validators.required,\r\n Validators.min(999),\r\n Validators.max(999999999999),\r\n ]),\r\n ],\r\n password: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator\r\n ]),\r\n ],\r\n confirmPassword: ['', Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator,\r\n this.validateAreEqual.bind(this),\r\n ]),\r\n ,\r\n ],\r\n\r\n\r\n });\r\n\r\n this.aboutForm.get('password')?.valueChanges.subscribe(() => {\r\n this.aboutForm.get('confirmPassword')?.updateValueAndValidity();\r\n });\r\n }\r\n noSpaceValidator(control: AbstractControl): { [key: string]: any } | null {\r\n if (control.value && control.value.indexOf(' ') >= 0) {\r\n return { 'noSpaces': true };\r\n }\r\n return null;\r\n }\r\n validateAreEqual(fieldControl: AbstractControl<any>) {\r\n return fieldControl?.value === this.aboutForm?.get('password')!.value ? null : {\r\n NotEqual: true,\r\n };\r\n }\r\n\r\n async checkPasswordStrength(val:string){ \r\n const numbers = new Promise((resolve, reject)=>{\r\n if(/[0-9]/g.test(val)){\r\n resolve({mesage:'numbers passed'})\r\n }else{\r\n reject({mesage:'numbers failed'})\r\n }\r\n })\r\n const capital = new Promise((resolve, reject)=>{\r\n if(/[a-z]/g.test(val)){\r\n resolve({mesage:'capital passed'})\r\n }else{\r\n reject({mesage:'capital failed'})\r\n }\r\n })\r\n const small = new Promise((resolve, reject)=>{\r\n if(/[A-Z]/g.test(val)){\r\n resolve({mesage:'small passed'})\r\n }else{\r\n reject({mesage:'small failed'})\r\n }\r\n })\r\n const length = new Promise((resolve, reject)=>{\r\n if(val.length > 7){\r\n resolve({mesage:'length passed'})\r\n }else{\r\n reject({mesage:'length failed'})\r\n }\r\n })\r\n\r\n \r\n const percentage = await (Promise as any).allSettled([numbers, capital, small, length])\r\n .then((res:any)=>{\r\n var percentage = 0\r\n res.forEach((element:any) => {\r\n if(element.status === 'fulfilled'){\r\n percentage+=25\r\n }\r\n });\r\n return percentage\r\n }) \r\n\r\n return percentage + '%'\r\n }\r\n\r\n async onPasswordChange(event:any){\r\n this.passwordStrength = await this.checkPasswordStrength(event.target.value)\r\n }\r\n\r\n async onConfirmPasswordChange(event:any){\r\n this.confirmPasswordStrength = await this.checkPasswordStrength(event.target.value)\r\n }\r\n\r\n async reinitializePasswordValidation(password:string, confirmPassword:string){\r\n this.passwordStrength = await this.checkPasswordStrength(password)\r\n this.confirmPasswordStrength = await this.checkPasswordStrength(confirmPassword)\r\n this.cd.detectChanges()\r\n }\r\n\r\n getCountryCodes(){\r\n this.subscriptions.push(\r\n this.authService.getAllCountries().subscribe({\r\n next:(res)=>{\r\n this.countryList = res.data\r\n this.cd.detectChanges()\r\n },\r\n error:(err)=>{\r\n console.log(err);\r\n \r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onClientNameBlur(){\r\n this.subscriptions.push(\r\n this.authService.isClientnameTaken(this.aboutForm?.get('clientName')?.value).subscribe({\r\n next:(res)=>{\r\n this.isClientNameTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onEmailBlur(){\r\n this.subscriptions.push(\r\n this.authService.isEmailTaken(this.aboutForm?.get('corporateEmail')?.value).subscribe({\r\n next:(res)=>{\r\n this.isEmailTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n onMobileNumberBlur(){\r\n this.subscriptions.push(\r\n this.authService.isMobileTaken(this.aboutForm?.get('mobileNumber')?.value).subscribe({\r\n next:(res)=>{\r\n this.isMobileTaken = res.data.isExists\r\n this.cd.detectChanges()\r\n }\r\n }) \r\n )\r\n \r\n }\r\n\r\n\r\n\r\n nextStep() {\r\n this.authService.aboutFormData.next(this.aboutForm.value)\r\n this.setterservice.completeStepper({ step: 2 });\r\n }\r\n showPassword() {\r\n this.passwordShow = !this.passwordShow;\r\n}\r\nshowConfirmPassword(){\r\n this.confirmPasswordShow = !this.confirmPasswordShow;\r\n}\r\nomit_special_char(event: any) {\r\n var k;\r\n k = event.charCode; // k = event.keyCode; (Both can be used)\r\n return k == 8 || k == 32 || (k >= 48 && k <= 57);\r\n}\r\ncurrentDateStr: string = new Date().getFullYear().toString();\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div class=\"h-100 px-10 mx-5 my-7\">\r\n <!-- <div>\r\n <img class=\"bubble\" src=\"../../../../../../../assets/Icons/Signup-bubble-icon.svg\"\r\n alt=\"\" srcset=\"\"> -->\r\n <div class=\"mobileshow\">\r\n <h3 class=\"title1 pt-4\">AI co-pilot to boost your sales conversion</h3>\r\n <p class=\"subtext pb-4\">Join the leading global brands in understanding footfall and shopper behavior to\r\n boost\r\n sales.</p>\r\n\r\n\r\n <div class=\"d-flex justify-content-between\">\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/Lenskart-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/nykaa-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/giva-logo3.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/Duroflex-logo.svg\" alt=\"\">\r\n </div>\r\n <div>\r\n <img class=\"imgsrc\" src=\"./assets/tango/Icons/loccitone-logo.svg\" alt=\"\">\r\n </div>\r\n <div class=\"me-20\">\r\n <h4 class=\"icon-more\">30 +</h4>\r\n </div>\r\n\r\n </div>\r\n <div class=\"mt-12 card-title\">\r\n <h6 class=\"card-label mb-7\">Create an Account</h6>\r\n <form [formGroup]=\"aboutForm\" novalidate=\"novalidate\">\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"Brand\" class=\"form-label\">Brand Name <span class=\"alert-required\">*</span></label>\r\n <input (blur)=\"onClientNameBlur()\" (input)=\"isClientNameTaken = 0\" formControlName=\"clientName\" type=\"type\" class=\"form-control\" id=\"Brand\" \r\n [ngClass]=\"{ 'is-invalid': aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('required') }\" autocomplete=\"off\" >\r\n \r\n \r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('minlength')\">\r\n Brand name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('maxlength')\">\r\n Brand name must be maximum of 100 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('clientName')?.touched && aboutForm.get('clientName')?.hasError('required')\">\r\n Brand name is required\r\n </small>\r\n <small \r\n *ngIf=\"isClientNameTaken\">\r\n Brand Name already exists\r\n </small>\r\n </div>\r\n </div>\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"firstname\" class=\"form-label\">First Name <span class=\"alert-required\">*</span></label>\r\n <input formControlName=\"firstName\" type=\"type\" class=\"form-control\" id=\"firstname\" autocomplete=\"off\"\r\n [ngClass]=\"{ 'is-invalid': aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('required') }\">\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('minlength')\">\r\n First name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('maxlength')\">\r\n First name must be maximum of 50 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('firstName')?.touched && aboutForm.get('firstName')?.hasError('required')\">\r\n First name is required\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"lastname\" class=\"form-label\">Last Name</label>\r\n <input formControlName=\"lastName\" type=\"type\" class=\"form-control\" id=\"lastname\" autocomplete=\"off\">\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('minlength')\">\r\n Last name must be minimum of 3 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('maxlength')\">\r\n Last name must be maximum of 50 letters\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('lastName')?.touched && aboutForm.get('lastName')?.hasError('required')\">\r\n Last name is required\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"email\" class=\"form-label\">Corporate Email <span class=\"alert-required\">*</span></label>\r\n <input (blur)=\"onEmailBlur()\" (input)=\"isEmailTaken = 0\" formControlName=\"corporateEmail\" type=\"email\" class=\"form-control\" id=\"email\" [ngClass]=\"{ 'is-invalid': aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('required') }\"\r\n autocomplete=\"off\">\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('minlength')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('maxlength')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('required')\">\r\n Enter a valid email\r\n </small>\r\n <small \r\n *ngIf=\"aboutForm.get('corporateEmail')?.touched && aboutForm.get('corporateEmail')?.hasError('pattern')\">\r\n Enter valid email ID\r\n </small>\r\n <small \r\n *ngIf=\"isEmailTaken\">\r\n Email already exists\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n\r\n <label for=\"phonenumber\" class=\"form-label\">Phone number <span class=\"alert-required\">*</span></label>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-4 col-xl-4\">\r\n <!-- <div class=\"input-group mb-3\">\r\n <div class=\"input-group-append\"> -->\r\n <!-- <select\r\n class=\"form-select form-select-solid select2-hidden-accessible form-label text-dark fs-4\"\r\n name=\"dialCode\" #dialCode=\"ngModel\"\r\n [ngModelOptions]=\"{standalone: true}\" matNativeControl required\r\n [(ngModel)]=\"countryCodes\" (click)=\"chooseCountry(countryCodes)\">\r\n <option [value]=\"country.dial_code\" *ngFor=\"let country of countryCodeList\"><span\r\n class=\"fw-bolder text-dark ps-3\">\r\n {{ country.name }}</span><span class=\"text-muted\">({{ country.dial_code\r\n }})</span>\r\n </option>\r\n </select> -->\r\n <select formControlName=\"countryCode\" class=\"form-select ps-3 pe-8\" \r\n id=\"inputGroupSelect01\">\r\n <option *ngFor=\"let country of countryList\" class=\"mx-2\" [value]=\"country.phonecode\">{{country.name}}<span class=\"text-muted\">({{ country.phonecode\r\n }})</span></option>\r\n </select>\r\n </div>\r\n <div class=\"col-md-12 col-lg-8 col-xl-8\">\r\n <!-- <input [value]=\"aboutForm.get('countryCode')?.value\" type=\"text\" [ngClass]=\"{ 'code-is-invalid': aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required') }\"\r\n class=\"form-control border-disabled\" readonly> -->\r\n <input (blur)=\"onMobileNumberBlur()\" (input)=\"isMobileTaken = 0\" formControlName=\"mobileNumber\" type=\"text\" class=\"form-control\" (keypress)=\"omit_special_char($event)\" [ngClass]=\"{ ' is-invalid': aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required') }\"\r\n id=\"phonenumber\" autocomplete=\"off\" minlength=\"7\" maxlength=\"15\">\r\n </div>\r\n </div>\r\n <small \r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('required')\">\r\n Phone number is required\r\n </small>\r\n <small *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('pattern')\">\r\n Enter a valid phone number\r\n </small>\r\n <small\r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('min')\">\r\n Enter a valid phone number\r\n </small>\r\n <small\r\n *ngIf=\"aboutForm.get('mobileNumber')?.touched && aboutForm.get('mobileNumber')?.hasError('max')\">\r\n Enter a valid phone number\r\n </small>\r\n <small \r\n *ngIf=\"isMobileTaken\">\r\n Phone Number already exists\r\n </small>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"password\" class=\"form-label\">Password <span class=\"alert-required\">*</span></label>\r\n <div class=\"position-relative mb-3\">\r\n <input (input)=\"onPasswordChange($event)\" formControlName=\"password\" [type]=\"passwordShow ? 'text' : 'password'\" [ngClass]=\"{ 'is-invalid': aboutForm.get('password')?.touched && aboutForm.get('password')?.hasError('required') }\"\r\n class=\"form-control\" id=\"password\" autocomplete=\"new-password\">\r\n <span (click)=\"showPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"passwordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!passwordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div class=\"progressbar-wrapper mt-2\">\r\n <span [style.width]=\"passwordStrength\"\r\n [ngStyle]=\"{'background-color': passwordStrength === '0%' ? '' : (passwordStrength === '25%' ? 'red' : (passwordStrength === '50%' ? 'orange': (passwordStrength === '75%' ? 'yellow' : (passwordStrength === '100%' ? 'green' : '')))) }\"\r\n class=\"progressbar-inner\"></span>\r\n </div>\r\n <div class=\"password-note mt-2\">The password must contain atleast one capital letter and number.</div>\r\n <div>\r\n <small *ngIf=\"aboutForm.get('password')?.hasError('required') && aboutForm.get('password')?.touched\">Password is required</small>\r\n </div>\r\n <div >\r\n <small *ngIf=\"aboutForm.get('password')?.hasError('noSpaces') && aboutForm.get('password')?.touched\">Password cannot contain spaces.</small> \r\n </div>\r\n </div>\r\n <div class=\"col-md-12 col-lg-6 col-xl-6 col-xxl-6 mb-7\">\r\n <label for=\"confirm\" class=\"form-label\">Confirm Password <span class=\"alert-required\">*</span></label>\r\n <div class=\"position-relative mb-3\">\r\n <input (input)=\"onConfirmPasswordChange($event)\" formControlName=\"confirmPassword\" [type]=\"confirmPasswordShow ? 'text' : 'password'\" class=\"form-control\" [ngClass]=\"{ 'is-invalid': aboutForm.get('confirmPassword')?.touched && aboutForm.get('confirmPassword')?.hasError('required') }\"\r\n id=\"confirm\" autocomplete=\"off\">\r\n <span (click)=\"showConfirmPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"confirmPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!confirmPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n <div class=\"progressbar-wrapper mt-2\">\r\n <span [style.width]=\"confirmPasswordStrength\"\r\n [ngStyle]=\"{'background-color': confirmPasswordStrength === '0%' ? '' : (confirmPasswordStrength === '25%' ? 'red' : (confirmPasswordStrength === '50%' ? 'orange': (confirmPasswordStrength === '75%' ? 'yellow' : (confirmPasswordStrength === '100%' ? 'green' : '')))) }\"\r\n class=\"progressbar-inner\"></span>\r\n </div>\r\n <div class=\"password-note mt-2\">The password must contain atleast one capital letter and number.</div>\r\n <div>\r\n <small *ngIf=\"aboutForm.get('confirmPassword')?.hasError('required') && aboutForm.get('confirmPassword')?.touched\">Confirm password is required</small>\r\n <small \r\n *ngIf=\"aboutForm.get('confirmPassword')?.touched && aboutForm.get('confirmPassword')?.hasError('NotEqual') && !aboutForm.get('confirmPassword')?.hasError('required')\">Password\r\n does not match</small>\r\n <small *ngIf=\"aboutForm.get('confirmPassword')?.hasError('noSpaces') && !aboutForm.get('confirmPassword')?.hasError('NotEqual') && aboutForm.get('confirmPassword')?.touched\">Password cannot contain spaces.</small> \r\n\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n <!-- <ng-container *ngIf=\"currentStep$.value == 1\"> -->\r\n <div class=\"text-end\">\r\n <button [disabled]=\"aboutForm.invalid || isMobileTaken || isEmailTaken || isClientNameTaken\" type=\"button\" class=\"btn btn-lg btn-primary\" (click)=\"nextStep()\">\r\n <span class=\"indicator-label px-5\">\r\n <ng-container>\r\n Next <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"\r\n fill=\"none\">\r\n <path d=\"M7.5 15L12.5 10L7.5 5\" stroke=\"white\" stroke-width=\"1.67\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n </ng-container>\r\n\r\n </span>\r\n </button>\r\n </div>\r\n <!-- </ng-container> -->\r\n </div>\r\n\r\n </div>\r\n <!-- </div> -->\r\n </div>\r\n <div class=\"mb-3 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">© {{currentDateStr}} </span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer\">Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div>\r\n</div>","import { Component, Input, OnInit } from '@angular/core';\r\nimport { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';\r\n\r\n@Component({\r\n selector: 'lib-modal-content',\r\n templateUrl: './modal-content.component.html',\r\n styleUrl: './modal-content.component.scss'\r\n})\r\nexport class ModalContentComponent implements OnInit{\r\n @Input() user: string;\r\n @Input() width: string;\r\n @Input() height: string;\r\n expandDetails: any = {\r\n traffic: false,\r\n zone: false,\r\n revops: false,\r\n sop: false,\r\n support: false,\r\n };\r\n constructor(\r\n public activeModal: NgbActiveModal\r\n ) { }\r\n ngOnInit() {\r\n this.expandDetails[this.user] = true\r\n\r\n }\r\n expandPlan(key: any) {\r\n const keys = Object.keys(this.expandDetails)\r\n keys.forEach((ele: any) => {\r\n if (key === ele) this.expandDetails[ele] = !this.expandDetails[ele]\r\n else this.expandDetails[ele] = false\r\n })\r\n }\r\n passBack() {\r\n this.activeModal.close(this.user);\r\n }\r\n}\r\n","<div >\r\n<div class=\"modal-header border-bottom-0\">\r\n <!-- <h4 class=\"modal-title\" id=\"modal-basic-title\">Simple modal</h4> -->\r\n <div class=\"col-12 text-end \">\r\n <div class=\"btn btn-sm btn-icon btn-active-color-primary\" data-bs-dismiss=\"modal\">\r\n <i (click)=\"activeModal.dismiss('Cross click')\" class=\"ki-duotone ki-cross fs-1\"><span class=\"path1\"></span><span\r\n class=\"path2\"></span></i>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"modal-body pt-0\">\r\n <div class=\"row mx-5\">\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 md-offset-3\">\r\n <div class=\"align-items-center border-0 mt-4\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 text-gray-800 mb-2 \">Product Offerings</span>\r\n </h3>\r\n </div>\r\n <div class=\"\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('traffic')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.traffic\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.traffic\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Traffic\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.traffic\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Footfall Analysis.</li>\r\n <li>Bounced vs Engager Analysis</li>\r\n <li>Missed Opportunity Vs Conversion Rate.</li>\r\n <li>Footfall Image Directory by the hour.</li>\r\n <li>Infra tracking ticketing system.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('zone')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.zone\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.zone\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Zone\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.zone\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Heatmap Analysis.</li>\r\n <li>Concentration % of each of your zone.</li>\r\n <li>Customer trajectory during their visit to your store.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n <!-- <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('revops')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.revops\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.revops\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango Revops\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.revops\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Identifying missed opportunities across reasons like Pricing, Store, Product, Staff\r\n etc.</li>\r\n <li>Customer database solution for retargeting.</li>\r\n <li>POS integration to capture conversion.</li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div> -->\r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('sop')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.sop\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.sop\"><svg width=\"24\" height=\"24\"\r\n viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Tango SOP\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.sop\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li>Daily store operation.</li>\r\n <li> Extensive summary of data points like store open and close time.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n \r\n <div class=\"m-0\">\r\n <div class=\"d-flex align-items-center collapsible py-3 toggle mb-0\" data-bs-toggle=\"collapse\"\r\n data-bs-target=\"#kt_job_4_1\">\r\n <div class=\"btn btn-sm btn-icon mw-20px btn-active-color-primary me-5\"\r\n (click)=\"expandPlan('support')\">\r\n <span class=\"svg-icon svg-icon-primary svg-icon-1\" *ngIf=\"expandDetails.support\"><svg\r\n width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"6.0104\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n <span class=\"svg-icon svg-icon-1\" *ngIf=\"!expandDetails.support\"><svg width=\"24\"\r\n height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect opacity=\"0.3\" x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\" fill=\"currentColor\">\r\n </rect>\r\n <rect x=\"10.8891\" y=\"17.8033\" width=\"12\" height=\"2\" rx=\"1\"\r\n transform=\"rotate(-90 10.8891 17.8033)\" fill=\"currentColor\"></rect>\r\n <rect x=\"6.01041\" y=\"10.9247\" width=\"12\" height=\"2\" rx=\"1\" fill=\"currentColor\">\r\n </rect>\r\n </svg>\r\n </span>\r\n </div>\r\n <h4 class=\"text-gray-700 fw-bold cursor-pointer mb-0\">\r\n Priority Support\r\n </h4>\r\n </div>\r\n <div id=\"kt_job_4_1\" class=\"collapse show fs-6 ms-1\" *ngIf=\"expandDetails.support\">\r\n <div class=\"mb-4 text-gray-700 sub\">\r\n <ul>\r\n <li> 24*7 CCTV monitoring of all the cameras in a single screen.</li>\r\n <li>Live and Recap video option for the entire day.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n </div>\r\n </div>\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 \">\r\n <div class=\"card-header\">\r\n <video class=\"video-width\" muted autoplay controls style=\"border-radius: 20px;\">\r\n <source src=\"https://tangoeye-dashboard-video.objectstore.e2enetworks.net/tango-main-video%201.mp4\"\r\n type=\"video/mp4\">\r\n <!-- https://tango-staticsite.s3.ap-south-1.amazonaws.com/Tango+Eye_720p_with+music_Trim.mp4\" -->\r\n </video>\r\n </div>\r\n <div class=\"card-header align-items-center border-0 mt-4\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 text-gray-800\">Product Walk-Through</span>\r\n </h3>\r\n </div>\r\n <div class=\"card-header align-items-center border-0 my-2 ms-6\" ><span\r\n class=\"sub\">We transform your existing CCTV cameras into a powerful store analytics tool.\r\n Our industry-first Al and computer vision technology help brands identify missed sale\r\n opportunities and focus on improving conversion rates across stores.</span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n","import { Component, Input, NgZone, OnDestroy, OnInit } from '@angular/core';\r\nimport { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';\r\ndeclare global { interface Window { Calendly: any; } } \r\n\r\n\r\n@Component({\r\n selector: 'lib-calendly-modal',\r\n templateUrl: './calendly-modal.component.html',\r\n styleUrl: './calendly-modal.component.scss'\r\n})\r\nexport class CalendlyModalComponent implements OnInit, OnDestroy {\r\n\r\n @Input() userData: any\r\n\r\n\r\n constructor(private modalRef:NgbActiveModal){}\r\n \r\n ngOnInit(): void { \r\n window.addEventListener('message', this.messageHandler.bind(this))\r\n window.Calendly.initInlineWidget({\r\n url: `https://calendly.com/hello-tango/connect_tango_eye?name=${this.userData?.name}&email=${this.userData?.email}`,\r\n parentElement: document.querySelector('.calendly-inline-widget'),\r\n });\r\n\r\n }\r\n\r\n ngOnDestroy(): void {\r\n window.removeEventListener('message', this.messageHandler.bind(this));\r\n }\r\n\r\n messageHandler(event: MessageEvent): void {\r\n if(event?.origin === 'https://calendly.com' && event.data.event === \"calendly.event_scheduled\"){\r\n this.modalRef.close({type:'scheduled'})\r\n }\r\n }\r\n \r\n}\r\n","<div class=\"calendly-inline-widget\"></div>\r\n","import { ChangeDetectorRef, Component, Input, OnDestroy, OnInit } from '@angular/core';\r\nimport { NgbModal, NgbModalOptions } from '@ng-bootstrap/ng-bootstrap';\r\nimport { ModalContentComponent } from '../modal-content/modal-content.component';\r\nimport { ConversionService } from '../services/conversion.service';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\r\nimport { Subscription } from 'rxjs';\r\nimport { CalendlyModalComponent } from '../calendly-modal/calendly-modal.component';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n@Component({\r\n selector: \"lib-step2\",\r\n templateUrl: \"./step2.component.html\",\r\n styleUrl: \"./step2.component.scss\",\r\n})\r\nexport class Step2Component implements OnDestroy, OnInit {\r\n storeCounts: any = [\r\n {\r\n text: \"1 (Free)\",\r\n active: false,\r\n value: \"1\",\r\n },\r\n {\r\n text: \"2-25\",\r\n active: false,\r\n value: \"2-25\",\r\n },\r\n {\r\n text: \"26-50\",\r\n active: false,\r\n value: \"26-50\",\r\n },\r\n {\r\n text: \"51-75\",\r\n active: false,\r\n value: \"51-75\",\r\n },\r\n {\r\n text: \"76-100\",\r\n active: false,\r\n value: \"76-100\",\r\n },\r\n {\r\n text: \"101+\",\r\n active: false,\r\n value: \"101-150\",\r\n },\r\n ];\r\n featAreaOptions: any = [\r\n {\r\n text: \"50-500 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"50-500\",\r\n cameras: \"2\",\r\n },\r\n {\r\n text: \"500-750 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"500-750\",\r\n cameras: \"2\",\r\n },\r\n {\r\n text: \"750-1000 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"750-1000\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"1000-1500 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"1000-1500\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"1500-2000 sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"1500-2000\",\r\n cameras: \"3\",\r\n },\r\n {\r\n text: \"2000+ sq.ft\",\r\n active: false,\r\n disabled: false,\r\n value: \"2000+\",\r\n cameras: \"3\",\r\n },\r\n ];\r\n selectedCounts: any;\r\n countOfStore: any;\r\n featArea: any;\r\n storedetials: boolean = false;\r\n textval: string;\r\n pricevalue: boolean = false;\r\n\r\n showmore: boolean;\r\n freeplan: string;\r\n plan: any = \"monthly\";\r\n requestpopup: boolean;\r\n popup: boolean;\r\n timevalue: any = \"time\";\r\n featAreaCamera: any;\r\n planName: any;\r\n productForm: FormGroup;\r\n callbackPreferredTiming: string = \"\";\r\n callbackDescription = new FormControl();\r\n aboutFormData: any;\r\n pricingFormData: any;\r\n subscriptions: Subscription[] = [];\r\n selectedFeetArea: any;\r\n pricingData: any;\r\n enable: boolean;\r\n currency: any='rupees';\r\n\r\n constructor(\r\n public modalService: NgbModal,\r\n private setterservice: ConversionService,\r\n private authservice: AuthService,\r\n private fb: FormBuilder,\r\n private cd: ChangeDetectorRef,\r\n private toastService: ToastService\r\n ) {\r\n this.initForm();\r\n this.subscriptions.push(\r\n this.authservice.aboutFormData.subscribe((res) => {\r\n if (res) {\r\n this.aboutFormData = res;\r\n }\r\n })\r\n );\r\n }\r\n ngOnInit(): void {\r\n this.subscriptions.push(\r\n this.authservice.pricingFormData.subscribe((res) => {\r\n if (res) {\r\n if (res.totalStores) {\r\n this.activeStoreCount(res.totalStores);\r\n this.storeCounts.forEach((element: any) => {\r\n if (element.value === res.totalStores.value) {\r\n element.active = true;\r\n }\r\n });\r\n }\r\n if (res.storeSize) {\r\n this.activefeatArea(res.storeSize);\r\n this.featAreaOptions.forEach((element: any) => {\r\n if (element.value === res.storeSize.value) {\r\n element.active = true;\r\n }\r\n });\r\n }\r\n\r\n this.plan = res.subscriptionPeriod;\r\n this.planName = res.subscriptionType;\r\n this.productForm.patchValue({\r\n tangoTraffic: res.product.tangoTraffic,\r\n tangoZone: res.product.tangoZone,\r\n tangoSop: res.product.tangoSop,\r\n prioritySupport: res.product.prioritySupport,\r\n });\r\n this.getPricingData();\r\n }\r\n })\r\n );\r\n }\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription) => {\r\n subscription.unsubscribe();\r\n });\r\n }\r\n\r\n initForm() {\r\n this.productForm = this.fb.group({\r\n tangoTraffic: [true],\r\n tangoZone: [false],\r\n tangoSop: [false],\r\n prioritySupport: [false],\r\n });\r\n }\r\n\r\n activeStoreCount(data: any) {\r\n this.storeCounts.forEach((val: any) => {\r\n val.active = false;\r\n });\r\n this.selectedCounts = data;\r\n data.active = true;\r\n this.countOfStore = data.value;\r\n this.storedetials = true;\r\n this.getPricingData();\r\n if (data.value == 1) {\r\n // Disable the last three options in featAreaOptions\r\n for (\r\n let i = this.featAreaOptions.length - 1;\r\n i >= this.featAreaOptions.length - 3;\r\n i--\r\n ) {\r\n this.featAreaOptions[i].disabled = true;\r\n this.featAreaOptions[i].active = false;\r\n // this.featAreaCamera='' \r\n }\r\n } else {\r\n for (\r\n let i = this.featAreaOptions.length - 1;\r\n i >= this.featAreaOptions.length - 3;\r\n i--\r\n ) {\r\n this.featAreaOptions[i].disabled = false;\r\n }\r\n }\r\n }\r\n activefeatArea(data: any) {\r\n this.selectedFeetArea = data;\r\n this.featAreaOptions.forEach((val: any) => {\r\n val.active = false;\r\n });\r\n data.active = true;\r\n this.featArea = data.value;\r\n this.featAreaCamera = data.cameras;\r\n this.pricevalue = true;\r\n this.getPricingData();\r\n }\r\n\r\n showViewMore(data: any) {\r\n const modalRef = this.modalService.open(ModalContentComponent, {\r\n size: \"lg\",\r\n centered: true,\r\n });\r\n modalRef.componentInstance.user = data;\r\n // modalRef.componentInstance.width = '1000px'; // Set custom width\r\n modalRef.result.then((result) => {\r\n if (result) {\r\n }\r\n });\r\n }\r\n\r\n prevStep() {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.setterservice.completeStepper({ step: 1, prev: true });\r\n }\r\n plandet(type: any) {\r\n this.planName = type;\r\n if (type === \"enterprise\") {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.popup = true;\r\n document.body.classList.add(\"overlay-open\");\r\n } else {\r\n let obj = {\r\n totalStores: this.selectedCounts,\r\n storeSize: this.selectedFeetArea,\r\n subscriptionPeriod: this.plan,\r\n subscriptionType: this.planName,\r\n product: this.productForm.value,\r\n };\r\n this.authservice.pricingFormData.next(obj);\r\n this.setterservice.completeStepper({ step: 3 });\r\n }\r\n }\r\n\r\n selectPlan(type: any) {\r\n this.plan = type;\r\n this.getPricingData();\r\n }\r\n\r\n checkvalue(type: any) {\r\n this.timevalue = type;\r\n }\r\n submitvalue() {\r\n if (this.timevalue === \"call back\") {\r\n let data = {\r\n planName: this.planName,\r\n clientName: this.aboutFormData.clientName,\r\n timeSlot: this.callbackPreferredTiming,\r\n contactNumber: this.aboutFormData.mobileNumber?.toString(),\r\n description: this.callbackDescription.value,\r\n };\r\n\r\n this.subscriptions.push(\r\n this.authservice.requestCallback(data).subscribe({\r\n next: (res) => {\r\n if (res) {\r\n this.popup = false;\r\n this.requestpopup = true;\r\n this.cd.detectChanges();\r\n }\r\n },\r\n error: (err) => {\r\n if (err) {\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n })\r\n );\r\n } else if (this.timevalue === \"time\") {\r\n this.openCalendlyModal();\r\n }\r\n }\r\n close() {\r\n this.popup = false;\r\n document.body.classList.remove(\"overlay-open\");\r\n }\r\n\r\n continuesignup() {\r\n this.requestpopup = false;\r\n document.body.classList.remove(\"overlay-open\");\r\n this.setterservice.completeStepper({ step: 3 });\r\n }\r\n\r\n openCalendlyModal() {\r\n const modalRef = this.modalService.open(CalendlyModalComponent, {\r\n centered: true,\r\n size: \"xl\",\r\n scrollable: true,\r\n });\r\n let userData = {\r\n name: encodeURIComponent(\r\n `${this.aboutFormData?.firstName} ${this.aboutFormData?.lastName}`\r\n ),\r\n email: encodeURIComponent(`${this.aboutFormData.corporateEmail}`),\r\n };\r\n modalRef.componentInstance.userData = userData;\r\n modalRef.result.then((result) => {\r\n if (result.type === \"scheduled\") {\r\n this.popup = false;\r\n this.requestpopup = true;\r\n this.cd.detectChanges();\r\n }\r\n });\r\n }\r\n\r\n getPricingData() {\r\nif(this.aboutFormData.countryCode ==='91'){\r\n this.currency ='rupees'\r\n} else {\r\n this.currency ='dollar'\r\n}\r\n let data = {\r\n camaraPerSqft: this.selectedFeetArea?.value,\r\n storesCount: this.selectedCounts?.value,\r\n planName: this.plan,\r\n products: this.getTrueKeys(this.productForm.value),\r\n currencyType: this.currency,\r\n };\r\n this.subscriptions.push(\r\n this.authservice.getPricing(data).subscribe((e) => {\r\n if (e) {\r\n this.pricingData = e.data;\r\n this.cd.detectChanges();\r\n }\r\n })\r\n );\r\n }\r\n\r\n getTrueKeys(obj: any) {\r\n return Object.keys(obj).filter((key) => obj[key] === true);\r\n }\r\n\r\n onPriceChange() {\r\n this.getPricingData();\r\n }\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div class=\"h-100 px-5 mx-5 mt-7\">\r\n <!-- <img class=\"bubble\" src=\"./assets/tango/Icons/Signup-bubble-icon.svg\"\r\n alt=\"\" srcset=\"\"> -->\r\n\r\n <div class=\"d-flex flex-column beforeChoosing my-12\">\r\n <h1 class=\"heading mb-5\">How many stores do you have?</h1>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-9 col-xl-8 col-xxl-8 w-auto\">\r\n <div class=\"d-flex align-items-center bg-gray\">\r\n <div class=\"d-flex align-items-center justify-content-center activeClass cursor-pointer \"\r\n *ngFor=\"let count of storeCounts\" (click)=\"activeStoreCount(count)\" \r\n [class.activeClass]=\"count.active\">\r\n <div class=\"d-flex align-items-center mx-2\">\r\n <div class=\"fs-4 fw-bold\" [ngClass]=\"count.active === true? 'store-primary':'text-color'\">{{ count.text }}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"storedetials\">\r\n <h2 class=\"heading mt-10 mb-5 \">What's the average size of your store?</h2>\r\n <div class=\"row\">\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 w-auto\">\r\n <div class=\"d-flex align-items-center bg-gray\">\r\n <div class=\"d-flex align-items-center justify-content-center activeClass cursor-pointer\"\r\n [class.activeClass]=\"i.active\" [class.disabled]=\"i.disabled\" *ngFor=\"let i of featAreaOptions\"\r\n (click)=\"activefeatArea(i)\">\r\n <div class=\"d-flex align-items-center mx-2\">\r\n <div class=\"fs-4 fw-bold\" [ngClass]=\"i.active === true? 'store-primary':'text-color'\">{{ i.text }}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"featAreaCamera\" class=\"notice d-flex mt-5\">\r\n <div class=\"d-flex justify-content-center align-items-center gap-16px\">\r\n <span class=\"border-store\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\"\r\n fill=\"none\">\r\n <path\r\n d=\"M1.3335 9.66667L8.00016 13L14.6668 9.66667M8.00016 3L1.3335 6.33333L8.00016 9.66667L14.6668 6.33333L8.00016 3Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg>\r\n </span>\r\n <div class=\"featareaval ms-4\">Maximum {{featAreaCamera}} Cameras are permitted in stores with\r\n square feet between\r\n {{featArea}}.</div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"pricevalue\">\r\n <div class=\"card-body px-0 mt-10\">\r\n <!--begin::Plans-->\r\n <div class=\"d-flex flex-column\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-10 text-start\">\r\n <h1 class=\"heading mb-5\">Plan Details</h1>\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Nav group-->\r\n <div class=\"nav-group nav-group-outline mx-auto mb-15\">\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3 me-2\"\r\n [ngClass]=\"plan === 'monthly'? 'activePlanBtn':'inactivePlanBtn'\" data-kt-plan=\"month\"\r\n (click)=\"selectPlan('monthly')\">\r\n Monthly\r\n </button>\r\n\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3\"\r\n [ngClass]=\"plan === 'quarterly'? 'activePlanBtn':'inactivePlanBtn'\"\r\n data-kt-plan=\"Quarterly\" (click)=\"selectPlan('quarterly')\">\r\n Quarterly - 10%\r\n </button>\r\n <button class=\"btn btn-color-gray-600 btn-active btn-active-secondary px-6 py-3\"\r\n [ngClass]=\"plan === 'annual'? 'activePlanBtn':'inactivePlanBtn'\" data-kt-plan=\"annual\"\r\n (click)=\"selectPlan('annual')\">\r\n Annual - 15%\r\n </button>\r\n </div>\r\n <!--end::Nav group-->\r\n\r\n <!--begin::Row-->\r\n <div class=\"row g-10\">\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 py-15 px-10\"\r\n [ngClass]=\"countOfStore === '1'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Free <span\r\n class=\"life-title fw-semibold mx-2\">Lifetime</span></h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solution for single store owners\r\n </div>\r\n <!--end::Description-->\r\n\r\n <!--begin::Price-->\r\n <div class=\"text-start \">\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode==='91'\">₹</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode !=='91'\">$</span>\r\n <span class=\"fs-3x fw-bold text-primary text-val\">0 </span>\r\n </div>\r\n <!--end::Price-->\r\n <div class=\"fw-semibold\">\r\n <span class=\"period\">per store per month</span>\r\n </div>\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Features-->\r\n <div class=\"w-100\">\r\n <div class=\"d-flex flex-stack mb-10\"><span\r\n class=\"plan-head me-2 fs-14px\">Tango Traffic</span>\r\n <div class=\"form-check form-switch\">\r\n <input class=\"form-check-input\" type=\"checkbox\" role=\"switch\"\r\n id=\"tangotraffic\" checked=\"\" disabled=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-center mb-10\">\r\n <span class=\"plan-head\">\r\n To accurately measure traffic and map shopper’s in-store journey\r\n </span>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Footfall Analysis </span>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Bounced vs Engager Analysis </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Missed Opportunity Vs Conversion Rate </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"plan-sub \">\r\n Footfall Image Directory by the hour. </span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n <!--begin::Select-->\r\n <button [disabled]=\"selectedCounts.value !== '1'\" class=\"btn btn-sm btn-primary w-100 button-size\"\r\n (click)=\"plandet('free')\">Get Started</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 text-container py-15 px-10\"\r\n [ngClass]=\"countOfStore === '2-25' || countOfStore === '26-50' || countOfStore === '26-50' || countOfStore === '51-75' || countOfStore === '76-100'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start text-container\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Premium</h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solution for Growing Business\r\n </div>\r\n <!--end::Description-->\r\n <button\r\n class=\"top-right btn-margin btn btn-lg btn-primary btn-height py-1 cursor-auto mt-3\">Recommended</button>\r\n <!--begin::Price-->\r\n <div class=\"text-start mt-15\">\r\n <span class=\"price-sub-head\">Starts from</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode==='91'\">₹</span>\r\n <span class=\"mb-2 text-primary text-val ms-1\" *ngIf=\"this.aboutFormData.countryCode !=='91'\">$</span>\r\n <span class=\"pricecodesize\" ><b\r\n class=\"pricecodecolor text-set mx-2\"> {{pricingData?.OriginalPrice}}\r\n </b>\r\n </span>\r\n <span class=\"fs-3x fw-bold text-primary text-val\">{{pricingData?.price}}</span>\r\n </div>\r\n <!--end::Price-->\r\n <div class=\"fw-semibold\">\r\n <span class=\"period\">per store per month</span>\r\n </div>\r\n </div>\r\n <!--end::Heading-->\r\n <form [formGroup]=\"productForm\" action=\"\" class=\"w-100 mb-3\">\r\n <!--begin::Features-->\r\n <div class=\"w-100\">\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mt-10 mb-5\"><span\r\n class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('traffic')\">Tango Traffic\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" style=\"pointer-events: none; background-color: #6BCAFF !important; border-color: #6BCAFF !important;\" formControlName=\"tangoTraffic\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangotraffic\" checked=\"\">\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('zone')\">Tango Zone\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"tangoZone\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangozone\" checked=\"\">\r\n </div>\r\n </div>\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('sop')\">Tango SOP\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"tangoSop\" class=\"form-check-input\"\r\n type=\"checkbox\" role=\"switch\" id=\"tangosop\" checked=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex flex-stack mb-5\"><span class=\"plan-head me-2 fs-14px line-height\"\r\n (click)=\"showViewMore('support')\">Priority Support\r\n <span class=\"ms-1 cursor-pointer\"><svg\r\n xmlns=\"http://www.w3.org/2000/svg\" width=\"13\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8686)\">\r\n <path\r\n d=\"M6 8.16699V6.16699M6 4.16699H6.005M11 6.16699C11 8.92842 8.76142 11.167 6 11.167C3.23858 11.167 1 8.92842 1 6.16699C1 3.40557 3.23858 1.16699 6 1.16699C8.76142 1.16699 11 3.40557 11 6.16699Z\"\r\n stroke=\"#98A2B3\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8686\">\r\n <rect width=\"12\" height=\"12\" fill=\"white\"\r\n transform=\"translate(0 0.166992)\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n </span>\r\n <div class=\"form-check form-switch\">\r\n <input (change)=\"onPriceChange()\" formControlName=\"prioritySupport\"\r\n class=\"form-check-input\" type=\"checkbox\" role=\"switch\"\r\n id=\"support\" checked=\"\">\r\n\r\n </div>\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n </form>\r\n\r\n\r\n <!--begin::Select-->\r\n <button class=\"btn btn-sm btn-primary button-size w-100\"\r\n (click)=\"plandet('premium')\">Start 14 day trial</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n <!--begin::Col-->\r\n <div class=\"col-md-6 col-lg-4 col-xl-4 col-xxl-4 h-100\">\r\n <div class=\"d-flex align-items-center\">\r\n <!--begin::Option-->\r\n <div class=\"w-100 d-flex flex-column flex-start rounded-3 py-15 px-10\"\r\n [ngClass]=\"countOfStore === '101-150'? 'freeplan':'bg-light'\">\r\n <!--begin::Heading-->\r\n <div class=\"mb-7 text-start\">\r\n <!--begin::Title-->\r\n <h1 class=\"price-head mb-5\">Enterprise</h1>\r\n <!--end::Title-->\r\n\r\n <!--begin::Description-->\r\n <div class=\"price-sub-head mb-5\">\r\n Integrated Solutions for Larger Business\r\n </div>\r\n <!--end::Description-->\r\n\r\n <!--begin::Price-->\r\n <div class=\"text-start mt-12\">\r\n\r\n <span class=\"fs-3x fw-bold text-primary text-val\">\r\n Let’s Talk!</span>\r\n\r\n </div>\r\n <!--end::Price-->\r\n </div>\r\n <!--end::Heading-->\r\n\r\n <!--begin::Features-->\r\n <div class=\"w-100 h-239px mb-10\">\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"price-sub-head fw-semibold \">\r\n Do you have more than 100 stores?</span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n <!--begin::Item-->\r\n <div class=\"d-flex align-items-start mb-5\">\r\n <span class=\"me-2\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\"\r\n height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\r\n <g clip-path=\"url(#clip0_1199_8736)\">\r\n <path\r\n d=\"M14.6668 7.38625V7.99958C14.666 9.4372 14.2005 10.836 13.3397 11.9875C12.4789 13.1389 11.269 13.9812 9.8904 14.3889C8.51178 14.7965 7.03834 14.7475 5.68981 14.2493C4.34128 13.7511 3.18993 12.8303 2.40747 11.6243C1.62501 10.4183 1.25336 8.99163 1.34795 7.55713C1.44254 6.12263 1.9983 4.75713 2.93235 3.6643C3.8664 2.57146 5.12869 1.80984 6.53096 1.49301C7.93323 1.17619 9.40034 1.32114 10.7135 1.90625M14.6668 2.66625L8.00017 9.33958L6.00017 7.33958\"\r\n stroke=\"#667085\" stroke-width=\"1.3\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1199_8736\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" />\r\n </clipPath>\r\n </defs>\r\n </svg></span>\r\n <span class=\"price-sub-head fw-semibold \">\r\n Rest assured, our dedicated account managers are here to support you\r\n every\r\n step of the way.</span>\r\n\r\n </div>\r\n <!--end::Item-->\r\n\r\n\r\n </div>\r\n <!--end::Features-->\r\n\r\n <!--begin::Select-->\r\n <button class=\"btn btn-sm btn-primary button-size w-100\"\r\n (click)=\"plandet('enterprise')\">Request Call Back</button>\r\n <!--end::Select-->\r\n </div>\r\n <!--end::Option-->\r\n </div>\r\n </div>\r\n <!--end::Col-->\r\n </div>\r\n <!--end::Row-->\r\n </div>\r\n <!--end::Plans-->\r\n </div>\r\n </div>\r\n <div class=\"row mt-12\">\r\n <div class=\"col-md-2\">\r\n <button type=\"button\" class=\"btn btn-lg text-nowrap btn-set me-5\" (click)=\"prevStep()\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\r\n <path d=\"M13 15L8 10L13 5\" stroke=\"#009BF3\" stroke-width=\"1.67\" stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\" />\r\n </svg> Previous\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"mb-3 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"me-1 footer\">© 2024 </span>\r\n <a target=\"_blank\" href=\"https://tangoeye.ai\" class=\"footer\">Tango IT Solutions India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n<div class=\"overlay\" *ngIf=\"popup\">\r\n <div class=\"popup\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" fill=\"#DAF1FF\" />\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" stroke=\"#EAF8FF\" stroke-width=\"8\" />\r\n <path d=\"M38 18L27 29M38 18L31 38L27 29M38 18L18 25L27 29\" stroke=\"#00A3FF\" stroke-width=\"2\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n <h3 class=\"fw-bold get-touch my-5\">Get In Touch</h3>\r\n <div class=\"fw-normal get-sub mb-5\">Have questions? We’re here to help. Send us a message, and we’ll respond\r\n within\r\n 24 hours.</div>\r\n <div class=\"notice d-flex bg-light-primary rounded border-primary cursor-pointer my-4\"\r\n (click)=\"checkvalue('time')\" [ngClass]=\"timevalue === 'time'? 'touch-primary':'untouch-primary'\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\" stroke-width=\"4\" />\r\n <path d=\"M25.3332 14.6663L20.6665 17.9997L25.3332 21.333V14.6663Z\" stroke=\"#00A3FF\"\r\n stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n <path\r\n d=\"M19.3332 13.333H11.9998C11.2635 13.333 10.6665 13.93 10.6665 14.6663V21.333C10.6665 22.0694 11.2635 22.6663 11.9998 22.6663H19.3332C20.0695 22.6663 20.6665 22.0694 20.6665 21.333V14.6663C20.6665 13.93 20.0695 13.333 19.3332 13.333Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n <div class=\"d-flex flex-stack flex-grow-1 flex-wrap flex-md-nowrap\">\r\n <div class=\"mb-3 mb-md-0 \">\r\n <h4 class=\"fw-semibold\" [ngClass]=\"timevalue === 'time'? 'video-title':'untouch-title'\">Schedule\r\n with\r\n Calendly</h4>\r\n <div class=\"fw-normal pe-7\" [ngClass]=\"timevalue === 'time'? 'video-sub':'untouch-sub'\">Choose your\r\n time\r\n slot in the next step.</div>\r\n </div><span *ngIf=\"timevalue ==='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"#00A3FF\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#00A3FF\" />\r\n <path d=\"M11.3332 5.5L6.74984 10.0833L4.6665 8\" stroke=\"white\" stroke-width=\"1.66667\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg></span>\r\n <span *ngIf=\"timevalue !=='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"white\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#D0D5DD\" />\r\n </svg></span>\r\n\r\n </div>\r\n </div>\r\n <div class=\"notice d-flex bg-light-primary rounded border-primary cursor-pointer my-4\"\r\n (click)=\"checkvalue('call back')\" [ngClass]=\"timevalue === 'call back'? 'touch-primary':'untouch-primary'\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" fill=\"#DAF1FF\" />\r\n <rect x=\"2\" y=\"2\" width=\"32\" height=\"32\" rx=\"16\" stroke=\"#EAF8FF\" stroke-width=\"4\" />\r\n <g clip-path=\"url(#clip0_1731_70116)\">\r\n <path\r\n d=\"M24.6665 21.2797V23.2797C24.6672 23.4654 24.6292 23.6492 24.5548 23.8193C24.4804 23.9894 24.3713 24.1421 24.2345 24.2676C24.0977 24.3932 23.9362 24.4887 23.7603 24.5482C23.5844 24.6077 23.398 24.6298 23.2131 24.6131C21.1617 24.3902 19.1911 23.6892 17.4598 22.5664C15.849 21.5428 14.4834 20.1772 13.4598 18.5664C12.3331 16.8272 11.632 14.8471 11.4131 12.7864C11.3965 12.6021 11.4184 12.4162 11.4775 12.2408C11.5365 12.0654 11.6315 11.9042 11.7563 11.7675C11.8811 11.6308 12.033 11.5215 12.2023 11.4468C12.3716 11.372 12.5547 11.3332 12.7398 11.3331H14.7398C15.0633 11.3299 15.377 11.4445 15.6223 11.6554C15.8676 11.8664 16.0278 12.1594 16.0731 12.4797C16.1575 13.1198 16.3141 13.7482 16.5398 14.3531C16.6295 14.5917 16.6489 14.851 16.5957 15.1003C16.5426 15.3496 16.419 15.5785 16.2398 15.7597L15.3931 16.6064C16.3422 18.2754 17.7241 19.6574 19.3931 20.6064L20.2398 19.7597C20.4211 19.5805 20.6499 19.457 20.8992 19.4038C21.1485 19.3506 21.4078 19.37 21.6465 19.4597C22.2513 19.6854 22.8797 19.842 23.5198 19.9264C23.8436 19.9721 24.1394 20.1352 24.3508 20.3847C24.5622 20.6343 24.6746 20.9528 24.6665 21.2797Z\"\r\n stroke=\"#00A3FF\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </g>\r\n <defs>\r\n <clipPath id=\"clip0_1731_70116\">\r\n <rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(10 10)\" />\r\n </clipPath>\r\n </defs>\r\n </svg>\r\n <div class=\"d-flex flex-stack flex-grow-1 flex-wrap flex-md-nowrap\">\r\n <div class=\"mb-3 mb-md-0 \">\r\n <h4 class=\"fw-semibold\" [ngClass]=\"timevalue === 'call back'? 'video-title':'untouch-title'\">Request\r\n a\r\n call back</h4>\r\n <div class=\"fw-normal pe-7\" [ngClass]=\"timevalue === 'call back'? 'video-title':'untouch-sub'\">We’ll\r\n call\r\n you on +91 987-654-3219</div>\r\n </div><span *ngIf=\"timevalue ==='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"white\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#D0D5DD\" />\r\n </svg></span>\r\n <span *ngIf=\"timevalue !=='time'\"><svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\">\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" fill=\"#00A3FF\" />\r\n <rect x=\"0.5\" y=\"0.5\" width=\"15\" height=\"15\" rx=\"7.5\" stroke=\"#00A3FF\" />\r\n <path d=\"M11.3332 5.5L6.74984 10.0833L4.6665 8\" stroke=\"white\" stroke-width=\"1.66667\"\r\n stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg></span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"timevalue === 'call back'\">\r\n\r\n <h3 class=\"title-val fw-semibold my-3\">Select Preferred Timing</h3>\r\n <div class=\"btn-group\" role=\"group\" aria-label=\"Basic example\">\r\n <button [ngClass]=\"callbackPreferredTiming === '9am -12pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '9am -12pm'\" type=\"button\" class=\"btn btn-secondary\">9am -12pm</button>\r\n <button [ngClass]=\"callbackPreferredTiming === '12pm - 5pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '12pm - 5pm'\" type=\"button\" class=\"btn btn-secondary\">12pm - 5pm</button>\r\n <button [ngClass]=\"callbackPreferredTiming === '5pm - 8pm' ? 'popup-tab-selected': ''\" (click)=\"callbackPreferredTiming = '5pm - 8pm'\" type=\"button\" class=\"btn btn-secondary\">5pm - 8pm</button>\r\n </div>\r\n <h5 class=\"title-sub fw-normal my-3\">We'll call you back in next 24 business hours</h5>\r\n <textarea [formControl]=\"callbackDescription\" class=\"form-control text-area fw-normal\" placeholder=\"Be more specific...\" row=\"2\"></textarea>\r\n\r\n </div>\r\n <div class=\"row mt-10 mb-7\">\r\n <div class=\"col-md-6\">\r\n <button class=\"btn btn-default fw-bold w-100\" (click)=\"close()\">Cancel</button>\r\n </div>\r\n <div class=\"col-md-6\">\r\n <button class=\"btn btn-primary submit fw-bold w-100\" (click)=\"submitvalue()\">Confirm</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"overlay\" *ngIf=\"requestpopup\">\r\n <div class=\"popup\">\r\n <svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n <g id=\"Featured icon\">\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" fill=\"#DAF1FF\"/>\r\n <rect x=\"4\" y=\"4\" width=\"48\" height=\"48\" rx=\"24\" stroke=\"#EAF8FF\" stroke-width=\"8\"/>\r\n <g id=\"Check icon\">\r\n <rect x=\"16\" y=\"16\" width=\"24\" height=\"24\" rx=\"10\" fill=\"#DAF1FF\"/>\r\n <g id=\"Icon\">\r\n <mask id=\"path-3-inside-1_4346_82646\" fill=\"white\">\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.0965 23.3897L25.9365 30.2997L24.0365 28.2697C23.6865 27.9397 23.1365 27.9197 22.7365 28.1997C22.3465 28.4897 22.2365 28.9997 22.4765 29.4097L24.7265 33.0697C24.9465 33.4097 25.3265 33.6197 25.7565 33.6197C26.1665 33.6197 26.5565 33.4097 26.7765 33.0697C27.1365 32.5997 34.0065 24.4097 34.0065 24.4097C34.9065 23.4897 33.8165 22.6797 33.0965 23.3797V23.3897Z\"/>\r\n </mask>\r\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.0965 23.3897L25.9365 30.2997L24.0365 28.2697C23.6865 27.9397 23.1365 27.9197 22.7365 28.1997C22.3465 28.4897 22.2365 28.9997 22.4765 29.4097L24.7265 33.0697C24.9465 33.4097 25.3265 33.6197 25.7565 33.6197C26.1665 33.6197 26.5565 33.4097 26.7765 33.0697C27.1365 32.5997 34.0065 24.4097 34.0065 24.4097C34.9065 23.4897 33.8165 22.6797 33.0965 23.3797V23.3897Z\" fill=\"#33B5FF\" stroke=\"#00A3FF\" stroke-width=\"4\" mask=\"url(#path-3-inside-1_4346_82646)\"/>\r\n </g>\r\n </g>\r\n </g>\r\n </svg>\r\n \r\n <h3 class=\"fw-bold get-touch my-5\">Thanks for your request!</h3>\r\n <div class=\"fw-normal get-sub mb-5\">Our team will get back to you shortly. Meanwhile explore more about us.\r\n </div>\r\n <div class=\"row mt-10 mb-7\">\r\n <div class=\"col-md-12\">\r\n <button class=\"btn btn-primary fw-bold w-100\" (click)=\"continuesignup()\">Continue Signing Up</button>\r\n </div>\r\n </div>\r\n </div>\r\n</div>","import { ChangeDetectorRef, Component, OnDestroy, OnInit, ViewChild } from '@angular/core';\r\nimport { NgbModal } from '@ng-bootstrap/ng-bootstrap';\r\nimport { Subscription, timer } from 'rxjs';\r\nimport { AuthService } from '../../../../services/auth.service';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { GlobalStateService } from 'tango-app-ui-global';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\n\r\n\r\ninterface InputStyles {\r\n [key: string]: string; // Define key-value pairs where keys are strings and values are strings\r\n}\r\n@Component({\r\n selector: 'lib-step3',\r\n templateUrl: './step3.component.html',\r\n styleUrl: './step3.component.scss'\r\n})\r\nexport class Step3Component implements OnInit, OnDestroy {\r\n inputValue: string = ''; // Initial input value\r\n isActive: boolean = false; // Flag for active state\r\n isHovered: boolean = false; // Flag for hover state\r\n isDisabled: boolean = false; // Flag for disabled state\r\n authlocalStorageToken: string;\r\n onMouseEnter() {\r\n this.isHovered = true;\r\n }\r\n\r\n // Function to handle mouse leave event\r\n onMouseLeave() {\r\n this.isHovered = false;\r\n }\r\n // Function to handle input change event\r\n onInputChange(value: string) {\r\n this.inputValue = value;\r\n }\r\n\r\n // Function to get input styles dynamically\r\n getInputStyles(): InputStyles {\r\n let styles: InputStyles = {}; // Define styles object with type InputStyles\r\n if (this.isActive) {\r\n styles['border-color'] = 'blue'; // Border color when input is active\r\n } else if (this.isHovered) {\r\n styles['border-color'] = 'green'; // Border color when input is hovered\r\n } else if (this.isDisabled) {\r\n styles['border-color'] = '#ccc'; // Border color when input is disabled\r\n styles['color'] = '#999'; // Text color when input is disabled\r\n } else {\r\n styles['border-color'] = '#ccc'; // Default border color\r\n styles['color'] = '#333'; // Default text color\r\n }\r\n return styles;\r\n }\r\n panelOpenState = false;\r\n termsandcondition: any;\r\n type: any;\r\n accountData: any;\r\n terms: any;\r\n idvalue: any;\r\n email: any;\r\n showvalue: boolean =false;\r\n @ViewChild('ngOtpInput') ngOtpInputRef: any;\r\n counter: number;\r\n tick: number;\r\n resend: boolean =true;\r\n countDown: any;\r\n otp: any;\r\n aboutFormData: any;\r\n pricingFormData: any;\r\n returnUrl: any;\r\n invalidOtp:boolean = false\r\n subscriptions:Subscription[] = []\r\n constructor(\r\n public modalService: NgbModal, private authService:AuthService, private router:Router, private route:ActivatedRoute, private cd:ChangeDetectorRef,\r\n private gs: GlobalStateService, private toastService:ToastService\r\n){\r\n this.subscriptions.push(\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n })\r\n )\r\n\r\n this.subscriptions.push(this.authService.aboutFormData.subscribe((data)=>{if(data){this.aboutFormData = data}}))\r\n this.subscriptions.push(this.authService.pricingFormData.subscribe((data)=>{if(data){this.pricingFormData = data}}))\r\n}\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\nngOnInit(): void {\r\n // get return url from route parameters or default to '/'\r\n this.returnUrl = this.route.snapshot.queryParams['returnUrl'.toString()] || '/'; \r\n}\r\n updateterms(evt: any) {\r\n this.terms = evt.target.checked\r\n }\r\n\r\n enterpriseactivate(){\r\n let data = {\r\n name:this.aboutFormData?.firstName,\r\n email:this.aboutFormData?.corporateEmail\r\n }\r\n this.subscriptions.push(\r\n this.authService.sendSignupOtp(data).subscribe(\r\n {\r\n next:(res)=>{\r\n if(res){\r\n this.counter = 60;\r\n this.tick = 1000;\r\n \r\n this.resend = false;\r\n \r\n this.countDown = timer(0, this.tick).subscribe(() => {\r\n if (this.counter == 0) {\r\n this.resend = true;\r\n this.countDown.unsubscribe()\r\n } else {\r\n this.counter = this.counter - 1;\r\n }\r\n this.cd.detectChanges()\r\n });\r\n document.body.classList.add('overlay-open');\r\n this.showvalue =true \r\n this.cd.detectChanges()\r\n }\r\n },\r\n error:(err)=>{\r\n if(err){\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n }\r\n ) \r\n )\r\n\r\n }\r\n\r\n resendOTP() {\r\n let data = {\r\n name:this.aboutFormData?.firstName,\r\n email:this.aboutFormData?.corporateEmail\r\n }\r\n this.subscriptions.push(\r\n this.authService.sendSignupOtp(data).subscribe(\r\n {\r\n next:(res)=>{\r\n if(res){\r\n this.ngOtpInputRef.setValue('');\r\n this.counter = 60;\r\n this.tick = 1000;\r\n \r\n this.resend = false;\r\n \r\n this.countDown = timer(0, this.tick).subscribe(() => {\r\n if (this.counter == 0) {\r\n this.resend = true;\r\n this.countDown.unsubscribe()\r\n } else {\r\n this.counter = this.counter - 1;\r\n }\r\n this.cd.detectChanges()\r\n });\r\n }\r\n },\r\n error:(err)=>{\r\n if(err){\r\n this.toastService.getErrorToast(err.error.error);\r\n }\r\n },\r\n }\r\n ) \r\n )\r\n\r\n }\r\n otpsubmit(){\r\n let data = {\r\n clientName: this.aboutFormData?.clientName,\r\n firstName: this.aboutFormData?.firstName,\r\n lastName: this.aboutFormData?.lastName,\r\n corporateEmail: this.aboutFormData?.corporateEmail,\r\n mobileNumber: this.aboutFormData?.mobileNumber,\r\n countryCode: this.aboutFormData?.countryCode,\r\n password: this.aboutFormData?.password,\r\n totalStores: this.pricingFormData?.totalStores.value,\r\n storeSize:this.pricingFormData?.storeSize.value,\r\n totalCamera: this.pricingFormData?.storeSize?.cameras,\r\n subscriptionPeriod: this.pricingFormData?.subscriptionPeriod,\r\n subscriptionType: this.pricingFormData?.subscriptionType,\r\n product: this.getTrueKeys(this.pricingFormData?.product),\r\n otp:this.otp\r\n }\r\n \r\n this.subscriptions.push(\r\n this.authService.signup(data).subscribe({\r\n next:(res)=>{\r\n if(res){\r\n this.authService.aboutFormData.next(null)\r\n this.authService.pricingFormData.next(null)\r\n \r\n document.body.classList.remove('overlay-open');\r\n this.showvalue =false \r\n this.cd.detectChanges()\r\n let loginToken: any =\r\n localStorage.getItem(this.authlocalStorageToken);\r\n if (loginToken) {\r\n loginToken = JSON.parse(loginToken);\r\n }\r\n \r\n localStorage.setItem(\r\n this.authlocalStorageToken,\r\n JSON.stringify(res?.data?.result)\r\n );\r\n \r\n this.userProfile();\r\n }\r\n },\r\n error:(res)=>{\r\n if(res){\r\n this.invalidOtp = true\r\n this.cd.detectChanges()\r\n }\r\n },\r\n }) \r\n )\r\n\r\n \r\n\r\n }\r\n\r\n onOtpChange(event:any){\r\n this.invalidOtp = false\r\n this.otp = event\r\n }\r\n\r\n getTrueKeys(obj: any) {\r\n return Object.keys(obj).filter(key => obj[key] === true);\r\n }\r\n\r\n userProfile() {\r\n this.subscriptions.push(\r\n this.authService.userProfileDet().subscribe({\r\n next: (res) => {\r\n if (res&& res.code ==200) {\r\n this.gs.userAccess.next(res.data?.permission)\r\n this.cd.detectChanges()\r\n this.router.navigate(['/manage/brands']);\r\n // this.router.navigateByUrl(this.returnUrl);\r\n } \r\n },\r\n error: (err) => {\r\n this.toastService.getErrorToast(err.error.error);\r\n localStorage.clear();\r\n },\r\n })\r\n )\r\n \r\n }\r\n}\r\n","<div class=\"card mt-10 mx-15\">\r\n <div id=\"kt_content_container\" class=\"container-xxl font h-100 mx-10 pe-15 my-7\">\r\n <div class=\"h-550px sticky\">\r\n <div class=\"row\">\r\n <div class=\"col-lg-12 col-md-12 col-sm-12\">\r\n <div class=\"card-header align-items-center border-0 mt-5 px-0\">\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <span class=\"main fs-lg-1 mb-4 text-gray-800\">General Terms and Conditions-SAAS\r\n Agreement</span><span class=\" text-muted fw-semibold me-1 sub\">These terms and\r\n conditions (hereinafter collectively referred to as <span class=\"text-helight\">“SAAS\r\n Terms”)</span> shall govern your <span class=\"text-helight\">(“User”</span> or <span\r\n class=\"text-helight\">“You”</span> or <span class=\"text-helight\">“Your”</span>or\r\n <span class=\"text-helight\">“Customer”)</span> use of Services (as defined below) through\r\n this website https://tangoeye.ai/ <span class=\"text-helight\">(Website).</span></span>\r\n <span class=\" text-muted fw-semibold me-1 my-1 sub\">By accessing or using the Services\r\n through the Website or by executing an Order Form, that references these SAAS Terms, You\r\n agree to be bound by these SaaS Terms. If You are accessing or using the Software on\r\n behalf of a Company or other legal entity, You represent that You have the authority to\r\n bind such entity and its affiliates to these SAAS Terms in which case the terms “User”\r\n or “You” or “Your” or “Customer” shall refer to such entity and its affiliates.</span>\r\n </h3>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- <div class=\"card-body py-lg-2\"> -->\r\n <div class=\"text-align-justify\">\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-5\">\r\n <span class=\"termsheading\">1. Definition </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\"> “Order Form” means the each order form,\r\n proposal or statement of work referencing this Agreement wherever applicable. </li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\"> <span class=\"text-helight\">“Software”</span>\r\n means the data analytics and business intelligence software and its object code version\r\n which enables the Customer to identify, amongst others, customer footfalls,\r\n demographics, identify missed opportunities, including any updates or new versions.</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\"> <span\r\n class=\"text-helight\">“Services”</span>refer to the in-store AI driven analytics\r\n provided through the Software to the Customer that is hosted by Tango Eye and made\r\n available to Customer over a network whether on a trial or paid basis.</li>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\"> “Term” shall mean that period specified in a\r\n Schedule to be executed separately with the Customer during which Customer will have on-line\r\n access and use of the Services through the Website. </li> -->\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">2. Eligibility </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <span class=\"sub my-7\">In order to use the Services, You must:</span>\r\n <!-- <li class=\"text-muted fw-semibold sub my-7\"> Be above 18 years of age; </li> -->\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">Complete the account registration process to access\r\n the Services through the Website;</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">You will provide correct, upto date information\r\n during the registration process, including billing address;</li>\r\n <li class=\"text-muted fw-semibold sub my-5\"> You will keep all your credentials and password\r\n confidential and also responsible to maintaining the safety and security of your personal\r\n information; </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You will provide all relevant and required hardware\r\n and software as suggested by Tango Eye at your designated location in order to enable Tango\r\n Eye to install the Software in order to provide the Services.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">3. Services </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\"> In consideration for payment of the fees, Tango Eye\r\n grants the Customer a non-exclusive, non-transferable, personal, revocable, licence to\r\n access and use the Services in accordance with Tango Eye’s intended purpose for the Services\r\n <span class=\"text-helight\">(Licence).</span></li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">The Services are not contingent on the delivery of\r\n any future functionality or features</li>\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to change or remove features of the Services and or the Software from time to time. Where there is any material alteration to the Services and or the Software in accordance with this clause, Tango Eye will provide the Customer with 30 business days’ notice and the Customer agrees that any material alteration is at Tango Eye’s discretion.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Access to the Services shall be limited to authorized persons with valid credentials which is to be agreed at the time of providing access to the Services and the Website. If it is a single account access, such account shall not be used by multiple users at the same time.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to change, modify, amend, update, suspend or discontinue the whole or any portion of the Services, Website or the SaaS Terms at any time.</li>\r\n <li class=\"text-muted fw-semibold sub my-3\">You agree that Tango Eye:</li>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">a. will supply the Services on a non-exclusive basis;\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">b. does not make any warranty or representation as to\r\n the ability of the facilities or services of any third-party suppliers; and</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\">c. is not liable for any failure in, fault with or\r\n degradation of the Services/Software if that failure, fault or degradation is attributable\r\n to or caused by any failure of the Customer environment or the facilities or services of any\r\n third party.</div>\r\n </ul>\r\n </h3>\r\n </div>\r\n\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">4. License Restrictions </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-3\"> You must not access or use the Services and or the Software except as permitted by the License and may not do or authorize the commission of any act that would or might invalidate or be inconsistent with the Tango Eye’s intellectual property rights in the Services or Software. Without limiting the foregoing provisions, the Customer agrees and acknowledges that it must not and will not permit any person to:</li>\r\n\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">a. resell, assign, transfer, distribute or provide others\r\n with access to the Services;</div>\r\n\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">b. “frame”, “mirror” or serve any of the Services/Software\r\n on any web server or other computer server over the internet or any other network;</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">c. copy, alter, modify, create derivative works from,\r\n reproduce, resell, transfer to a third party, reverse assemble, reverse engineer, reverse\r\n compile or enhance the Services or Software; or </div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">d .alter, remove or tamper with any trademarks, any patent\r\n or copyright notices, or any confidentiality legend or notice, or any numbers, or other means of\r\n identification used on or in relation to the Services or Software.</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer must not use the Services in any way which\r\n is in breach of any statute, regulation, law or legal right of any person within the Republic of\r\n India or the jurisdiction in which the Customer or its personnel are located. </li>\r\n\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">5. Prohibited Use </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub mt-7\">You agree to use the Website and the Services/Software\r\n accessed through it for the purpose enumerated under these SaaS Terms and agree not to undertake\r\n the following:</li>\r\n\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> a. Use of the Website and the Services to violate any\r\n applicable laws of any jurisdiction from which You access the Services.</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> b. Use the Services for competitive benchmarking or\r\n for developing a competitive product or services.</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> c. To upload or otherwise disseminate any computer\r\n viruses or other software that may the Software of Tango Eye;</div>\r\n <div class=\"text-muted fw-semibold sub my-1 ms-5\"> d. To unlawfully gather information about others and\r\n use in in an unlawful manner;</div>\r\n <div class=\"text-muted fw-semibold sub mb-5 ms-5\"> e. To solicit others to perform or participate in any\r\n unlawful acts.</div>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\"> resell, assign, transfer, distribute or provide others\r\n with access to the Services;</li> -->\r\n\r\n <li class=\"text-muted fw-semibold sub my-5\">You acknowledge that Tango Eye will not be liable for\r\n any information that is relayed and stored in its cloud servers which is accessed through your\r\n systems. You shall always be responsible for the same at all times.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You agree to comply with all applicable laws statutes\r\n and regulations of the country you are accessing the Website/Software and the Services\r\n concerning the use of the information/video footage which is relayed through your cctv camera to\r\n the cloud storage of Tango Eye. </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">You acknowledge that the Services has not been designed\r\n to collect or process any sensitive information and accordingly you agree not to use the\r\n Services to collect, process or store any sensitive personal data once you access the reports\r\n generated by Tango Eye in pursuance to the Services. Tango Eye specifically disclaim any\r\n liability that may result from your use of the Services to collect, process and store sensitive\r\n personal information.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye reserves the right to monitor the use of the\r\n Website/Services/Software by You to ensure compliance of these SaaS Terms and applicable law.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">In the event of violation of these SaaS Terms,\r\n applicable laws and regulations, Tango Eye shall have the right to investigate such breaches and\r\n take appropriate actions which shall include but not be limited to providing warning to first\r\n time offenders, suspending and or even terminating the Services and access to the Website.</li>\r\n </ul>\r\n </h3>\r\n\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">6. Invoicing: </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-7\">Invoices will be issued on the basis of the number of deployed stores in existence on the invoice date and shall be issued in accordance with the Payment Terms in the commercial terms above. Tango Eye shall bill Customer for applicable taxes as a separate line item on each invoice. Customer shall be responsible for payment of all sales and use taxes, Goods and Services tax, or similar charges relating to Customer’s purchase and use of the Services.</div>\r\n </ul>\r\n\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">7. Payment: </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Payment shall be made in accordance with the Payment\r\n Terms in the commercial terms which shall be agreed to separately between Tango Eye and the\r\n Customer and which shall be read and be coterminous with these SaaS Terms <span class=\"text-helight\">(Payment Terms).</span>\r\n Except as expressly provided otherwise, payments are non-refundable. In the event the Customer\r\n fails to make the payment as per the payment terms, Tango Eye shall send a written notice to the\r\n Client to ensure that the payment is made within 30 (thirty) days (“Additional Period”) from the\r\n date of receipt such written notice. If the customer fails to make the payment within the\r\n Additional Period, the access to the web portal will be blocked and the Services shall be\r\n suspended 7 (seven) days after sending a reminder email to Customer from the expiry of the\r\n Additional Period.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Parties acknowledge that time is of the essence with\r\n respect to payments required under this clause. In the event of any delay in payment by the\r\n Customer, Tango Eye may require the Customer to pay Tango Eye a late payment penalty equal to\r\n twelve percent (12%) per annum on all outstanding payments.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">8.Intellectual Property</span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">All Tango Eye Software, including the Website and any\r\n updates thereto, and any other intellectual property created by Tango Eye in furtherance to the\r\n Software or any works, products, documents, materials created using, incorporating, comprising\r\n in, or relating to such intellectual property (“Tango Eye IP”) shall at all times remain the\r\n exclusive property of Tango Eye and/or its nominees or affiliates, as the case may be, and the\r\n Customer shall not have any right, title, claim etc. whatsoever over the same. Nothing contained\r\n herein shall be construed as a transfer, assignment or conveyance by Tango Eye to Customer of\r\n the ownership, interest or title to the intellectual property or intellectual property rights in\r\n or attached to the Tango Eye IP. The Customer is only authorized to receive a right to access\r\n Tango Eye IP for the term explicitly granted by Tango Eye to Customer and in accordance with the\r\n provisions of these SaaS Terms. This authorization is non-exclusive, non-transferable and\r\n non-sub-licensable, unless otherwise agreed under this Agreement. Customer shall not have any\r\n right to modify, adapt, incorporate, create any derivative using or incorporating Tango Eye IP\r\n or in any manner transfer, encumber, alienate, sell, share, assign, license or sub-let it to any\r\n third party.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">As between the parties, Customer retains all right,\r\n title and interest in and to – </li>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">a. all raw data generated from the use of the Software,\r\n including text, sound, video, or image files, but excluding any Business Data (“Generated\r\n Data”); and  </div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-5\">b. raw data owned by and relating to the Customer, such as\r\n company information, store location and details of the zones, employee information, but\r\n excluding any Generated Data (“Business , that is provided to Tango Eye by, or on behalf of, the\r\n Customer through the Customer’s use of the Software (together, “Customer Data”).</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer hereby grants to Tango Eye a non-exclusive,\r\n worldwide, fully paid up and royalty free right and license to use the Generated Data for (i)\r\n the provision of Services and fulfillment of obligations under these SaaS Terms and; (ii)\r\n improving the Software. </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer hereby grants to Tango Eye a non-exclusive,\r\n worldwide, fully paid up and royalty free right and license to use the Business Data for (i) the\r\n provision of Services and fulfillment of obligations under these SaaS Terms; and (ii) improving\r\n the Software.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Customer agrees to provide comments or feedback, if any,\r\n to Tango Eye regarding the Software or future releases/ development to the Software and\r\n reference of the work carried out during this engagement with the Customer or any and all\r\n knowledge and information of generic nature, arising out of use of the Software by the Customer,\r\n without disclosing any Customer Confidential Information or Customer Data.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Customer undertakes to promptly inform Tango Eye of\r\n any infringement of Tango Eye IP rights by third parties, and shall permit Tango Eye to assume\r\n sole authority to take appropriate legal action. Customer shall not make any statement or\r\n admission in relation to such claim which may prejudicially affect the chances of settlement or\r\n defense of such claim, and shall provide information and assistance reasonably requested in\r\n connection with such claim or suit.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye hereby undertakes, in the event that third\r\n parties act against the Customer for any reason whatsoever in relation to the Software or any\r\n Tango Eye IP, to provide the documentation in their possession and otherwise do and execute all\r\n acts, things, matters and deeds as may be reasonably required by the Customer, from time to time\r\n to show ownership of such Tango Eye IP.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Customer hereby consents and opts in to receive communications that Tango Eye may send via call or message service relating to this Agreement, to Customer including its employees, staff and other representatives.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">9. Data Protection and Privacy </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Each Party shall at all times comply with its\r\n obligations under applicable privacy regulations in relation to the Generated Data, Business\r\n Data, and Customer Data that is collected, stored and/or processed by it in the course of\r\n performing its obligations under these SaaS Terms. Further each Party shall process such\r\n Generated Data, Business Data, and Customer Data only to the extent necessary for the purposes\r\n of performing their respective obligations under these SaaS Terms </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Each party shall take appropriate technical and\r\n organizational measures as required under applicable law against any data breach, unauthorized\r\n or unlawful processing of the personal data or its accidental loss, destruction or damage.</li>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">10. Representations, Warranties and Disclaimers </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-7\">Each Party represents, warrants and covenants to the\r\n other that: (i) it is duly organized and validly existing and in good standing under the laws of\r\n the state of its incorporation or formation; (ii) it has the full right and authority to enter\r\n into these SaaS Terms and that these SaaS Terms constitutes a legal, valid and binding\r\n obligation; (iii) the execution, delivery and performance of these SaaS Terms does not and will\r\n not conflict with, or constitute a breach or default under, its charter of organization, or any\r\n contract or other instrument to which it is a party; (iv) it will comply with, and will ensure\r\n all of its personnel, third party agents, consultants etc., comply with all laws and regulations\r\n applicable to (i) the provision, or access and use of the Software; and (ii) performance of\r\n obligations under these SaaS Terms, including without limitation laws and regulations related to\r\n privacy, data protection, electronic communications, export and confidentiality.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">Tango Eye represents, warrants and covenants that (i)\r\n Tango Eye personnel shall provide the Services in a diligent and professional manner with due\r\n care (ii) Tango Eye IP does not and will not infringe, misappropriate or otherwise violate the\r\n intellectual property rights of any party within the territory of India and or any other country\r\n where its righst are registered; and (iii) all Services that are provided will be free from any\r\n known malicious code or instructions that may intentionally disrupt, damage or interfere with\r\n any use by Customer. Tango Eye further warrants and represents to the Customer that it holds,\r\n and will continue to hold, any and all licenses, permits or other authorizations required by any\r\n applicable law to perform the Services in accordance with these SaaS Terms.</li>\r\n <div class=\"text-muted fw-semibold sub my-5\"><span class=\"text-helight\">“Applicable law”</span> means any applicable law, statute,\r\n rule, regulation, ordinance, requirement, directions, guidelines, announcement or other binding\r\n action or requirement of any government or quasi government; department, agency or\r\n instrumentality of any government thereof, any court or arbitral tribunal applicable and\r\n existing under the republic of India.</div>\r\n <li class=\"text-muted fw-semibold sub my-5\">THE SOFTWARE AND ANYTHING PROVIDED IN CONNECTION WITH\r\n THESE SaaS TERMS ARE PROVIDED “AS-IS”. EXCEPT FOR THE EXPRESS REPRESENTATIONS AND WARRANTIES IN\r\n THIS SECTION 6, TANGO EYE DOES NOT MAKE ANY REPRESENTATIONS OR WARRANTIES, EXPRESS, IMPLIED OR\r\n STATUTORY INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF MERCHANTABILITY, QUALITY,\r\n FITNESS FOR A PARTICULAR PURPOSE, SYSTEM INTEGRATION, ERROR-FREE, UN-INTERRUPTION, SUPPORT\r\n CORRECTION OR REPAIR (UNLESS OTHERWISE AGREED) OR OTHERWISE THAT TANGO EYE SOFTWARE HEREUNDER\r\n WILL OPERATE IN EVERY COMBINATION OR ENVIRONMENT DESIRED BY CUSTOMER WITH ANY DATA, DEVICES,\r\n COMPUTER SYSTEMS AND PROGRAMS OF ITS CHOICE OR THAT THE REMEDYING OF ONE PROGRAM ERROR DOES NOT\r\n RESULT IN THE OCCURRENCE OF OTHER PROGRAM ERRORS. ALL SUCH REPRESENTATIONS AND WARRANTIES ARE\r\n HEREBY DISCLAIMED.</li>\r\n <li class=\"text-muted fw-semibold sub mt-5\">\r\n The Customer warrants that: </li>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> a. Customer Data does not and will not infringe,\r\n misappropriate or otherwise violate the intellectual property rights of any third party;</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">b. it will be responsible for any security\r\n vulnerabilities and the consequences of such vulnerabilities arising solely from the nature of\r\n Customer Data;</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> c. it shall be responsible for ensuring that End\r\n Users comply with all requirements under these SaaS Terms in relation to the use of the Software\r\n (to the extent applicable);</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> d. it shall immediately notify Tango Eye of (a)\r\n any account-related abuse; (b) the unauthorized disclosure, use and distribution of their\r\n account credentials by or to any third party; and</div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\"> e. it shall not, and shall not permit any party\r\n or person to, access or use the Software except as expressly permitted by these SaaS TERMS.\r\n Without limiting the generality of the foregoing, Customer shall not, and shall not permit any\r\n party or person to:</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\"> 1. interfere with or disrupt the integrity or\r\n performance of the Software, or circumvent, bypass, delete or remove any form of protection, or\r\n usage, functionality or technical restrictions or limitations, or to enable functionality\r\n disabled by Tango Eye, in connection with the Software;</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\"> 2. access or use the Software provided under\r\n these SaaS Terms, in any manner or for any purpose that violates any applicable law, the rights\r\n of others, in a way that could harm the service.</div>\r\n <div class=\"text-muted fw-semibold sub my-2 ms-10\">3. reverse engineer, disassemble, de-compile,\r\n recreate, copy or reproduce the source code or object code of the Software or perform any\r\n customizations (without Tango Eye’s prior written consent); and</div>\r\n\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">11. Customer’s Account </span>\r\n </h3>\r\n <h3 class=\"card-title align-items-start flex-column\">\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">\r\n Customers are fully responsible to safeguard their access credentials - including in the sense\r\n of the combination of username and password.</div>\r\n </ul>\r\n </h3>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">12. Duration, Renewal and Termination </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Unless otherwise specified in the proposal, these SaaS Terms shall continue to be effective during\r\n the\r\n period\r\n the Customer uses and or continues to use the Software, unless terminated in accordance with the\r\n terms set\r\n out\r\n herein.\r\n </li>\r\n <div class=\"text-muted fw-semibold sub my-5\">\r\n Unless otherwise specified in the Order Form, fees shall be subject to automatic increment at the rate of 7% per annum after every 12 months.\r\n </div>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Either party may terminate their business relationship under these SaaS Terms immediately upon a\r\n material\r\n breach by the other party that has not been cured within thirty (30) days after receipt of notice of\r\n such\r\n breach.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Either party may also terminate this Agreement upon thirty (30) days written notice without\r\n assigning any\r\n reason. Customer will pay in full for the Software up to and including the last day on which the\r\n Software\r\n was used.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Effect of Termination.\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (a) Upon termination of these SaaS Terms, Tango Eye shall immediately cease providing access to the Software.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (b) Upon termination of these SaaS Terms, Tango Eye may delete the Generated Data, Business Data and Customer Data collected, stored and/or processed under these SaaS Terms for the purpose of providing the Software within 15 (fifteen) days of receipt of notice of termination of these SaaS Terms.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (c) If Tango Eye terminates these SaaS Terms due to a breach by Customer of any of the provisions contained under these SaaS Terms, then Customer shall immediately pay to Tango Eye all amounts then due under these SaaS Terms. If Customer terminates these SaaS Terms due to a breach by Tango Eye, then Tango Eye shall immediately repay to Customer all pre-paid amounts for any unperformed Services scheduled to be delivered after the termination date.\r\n </div>\r\n <div class=\"text-muted fw-semibold sub my-5 ms-5\">\r\n (d) Subject to the rights granted under these SaaS Terms, upon its termination and upon subsequent written request by the Disclosing Party, the Receiving Party of tangible Confidential Information shall immediately return such information or destroy such information and provide written certification of such destruction, provided that the receiving party may permit its legal counsel to retain one archival copy of such information in the event of a subsequent dispute between the parties.\r\nThe provisions relating to confidentiality, as well as for liability, applicable law and settlement of disputes shall survive the expiration or termination of these SaaS Terms.\r\n </div>\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Termination shall not affect any rights or obligations of the parties incurred prior to the date of termination, unless otherwise agreed between the parties.\r\n </li>\r\n </ul>\r\n </div>\r\n\r\n <!-- <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">13. Effect of Termination. </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Upon termination of these SaaS Terms, Tango Eye shall immediately cease providing access to the\r\n Software.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Upon termination of these SaaS Terms, Tango Eye shall delete the Generated Data, Business Data and\r\n Customer Data\r\n collected, stored and/or processed under these SaaS Terms for the purpose of providing the Software\r\n within 15\r\n (fifteen) days of receipt of notice of termination of these SaaS Terms.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n If Tango Eye terminates these SaaS Terms due to a breach by Customer of any of the provisions\r\n contained under these\r\n SaaS Terms, then Customer shall immediately pay to Tango Eye all amounts then due under these SaaS\r\n Terms. If\r\n Customer terminates these SaaS Terms due to a breach by Tango Eye, then Tango Eye shall immediately\r\n repay to\r\n Customer all pre-paid amounts for any unperformed Services scheduled to be delivered after the\r\n termination date.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Subject to the rights granted under these SaaS Terms, upon its termination and upon subsequent\r\n written request by\r\n the Disclosing Party, the Receiving Party of tangible Confidential Information shall immediately\r\n return such\r\n information or destroy such information and provide written certification of such destruction,\r\n provided that the\r\n receiving party may permit its legal counsel to retain one archival copy of such information in the\r\n event of a\r\n subsequent dispute between the parties.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n The provisions relating to confidentiality, as well as for liability, applicable law and settlement\r\n of disputes\r\n shall survive the expiration or termination of these SaaS Terms.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Termination shall not affect any rights or obligations of the parties incurred prior to the date of\r\n termination,\r\n unless otherwise agreed between the parties.\r\n </li>\r\n </ul>\r\n </div> -->\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">13. Access to Analytics via Web Portal & Excel Reports</span>\r\n </h3>\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">The analytics is designed for use with a) web-based\r\n application, b) excel reports sent via email or File Transfer Protocol.\r\n </div>\r\n <!-- <li class=\"text-muted fw-semibold sub my-5\">Training: All “Software” used in connection with the\r\n Services. For avoidance of doubt, it is clarified that Tango Eye agrees to provide sample dashboard\r\n and arrange for training sessions to the Customer as mutually agreed by the Parties.\r\n </li> -->\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">14. Training </span>\r\n </h3>\r\n <ul>\r\n <div class=\"text-muted fw-semibold sub my-5\">All “Software” used in connection with the Services. For avoidance of doubt, it is clarified that Tango Eye agrees to provide a sample dashboard and arrange for training sessions to the Customer as mutually agreed by the Parties.\r\n </div>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">15. Confidential Information </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">All proprietary or confidential information, technical data,\r\n or know-how and all other non-public information, material or data in whatever form or mode of\r\n communication, which is disclosed by a party (“Disclosing Party”) to the other party (“Receiving\r\n Party”) in connection with the Software access and usage whether marked as “confidential” or not at\r\n the time of disclosure, shall be treated as “Confidential Information”. Confidential Information\r\n shall include, but not be limited to, the terms and pricing/commercial terms under these SaaS Terms,\r\n the technical and other specifications of the Software, any information specific to the software\r\n license codes and content as well as the software and hardware architecture and components, and all\r\n other non-public information.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Receiving Party undertakes: (i) not to use Confidential\r\n Information otherwise than for the purpose for which it was disclosed or to permit the Receiving\r\n Party to exercise rights and licenses granted under these SaaS Terms ; (ii) not to disclose\r\n Confidential Information without the prior written consent of the Disclosing Party, other than to\r\n those employees, agents, contractors, subcontractors, licensees of the Receiving Party, its\r\n Affiliates or any other parties who have a need to know it in order to assist the Receiving Party in\r\n performing its obligations, or to permit the Receiving Party to exercise its rights  and licenses\r\n under this Agreement; (iii) to take all such steps to prevent unauthorized access to the Disclosing\r\n Party’s Confidential Information, as it takes to protect its own confidential or proprietary\r\n information of a similar nature, which steps shall in no event be less than a reasonable standard of\r\n care; and iv) to return to the Customer, or destroy, on request all Confidential Information that\r\n has been disclosed to them, including all copies thereof and to delete all information stored in a\r\n machine-readable form to the extent practically possible, subject to any rights or licenses granted\r\n under these SaaS Terms .\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The obligations in relation to Confidential Information\r\n under these SaaS Terms  shall not apply to Confidential Information, which (i) has become or becomes\r\n publicly available by means other than a breach of confidentiality obligations; (ii) was already\r\n known to the Receiving Party prior to disclosure; (iii) the Receiving Party is required to disclose\r\n in order to comply with applicable laws or regulations or with a court or administrative order; or\r\n (iv) is independently developed by the Receiving Party without reference to or use of any\r\n Confidential Information of the Disclosing Party.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">The Receiving Party shall promptly, and in any case within\r\n three (3) days advise the Disclosing Party in writing of any unauthorized disclosure,\r\n misappropriation or misuse of Confidential Information after it becomes aware of it and vice versa.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">If either party becomes aware that it will be required, or\r\n is likely to be required, to disclose Confidential Information in order to comply with applicable\r\n laws or regulations or with a court or administrative order, it shall, to the extent it is lawfully\r\n able to do so, prior to any such disclosure notify the other party, and comply with the other\r\n party’s instructions to protect the confidentiality of the information.\r\n </li>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">16. Indemnity and Limitation of Liability </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Without prejudice to any other right available in law or under equity, each party hereby agrees to\r\n compensate, indemnify, defend and hold harmless the other, its affiliates, directors, shareholders,\r\n officers and employees and agents, from and against any and all losses, liabilities, damages,\r\n deficiencies, demands, claims (including third party claims), actions, judgments or causes of\r\n action, assessments, interest, penalties and other costs or expenses (including, without limitation,\r\n reasonable attorneys' fees and expenses) based upon, arising out of, or in relation to or otherwise\r\n in respect of (i) any breach of its obligations under these SaaS Terms ; or (ii) any willful\r\n misconduct, fraud, or wrongful or negligent act or omission of a Party.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n In no event shall either Party be liable to the other for any indirect, incidental, punitive,\r\n exemplary, special or consequential damages, or damages for loss of profits, revenue, whether in an\r\n action in contract or tort, or otherwise (collectively referred to as “Indirect Losses”) even if\r\n advised of the possibility of such damages.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Each Party’s liability arising out of or in connection with the breach of any direct and actual\r\n liabilities, costs, losses, damages, suits, proceedings, costs, expenses or liabilities suffered or\r\n incurred due to resulting due to claims for breach of intellectual property of a Party or third\r\n party, breach of confidentiality obligation, data breach, breach of data privacy, fraud, willful\r\n negligence, gross misconduct or breach of applicable laws shall in no event exceed the annual total\r\n purchase price paid pursuant to grant of access and usage of the Services/Software by the Customer.\r\n </li>\r\n </ul>\r\n </div>\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">17. Force Majeure </span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Each of the Parties is not responsible nor liable for any delays or failures in performance from any\r\n cause beyond its control, including, but not limited to acts of God, changes to law or regulations,\r\n embargoes, war, terrorist acts, acts or omissions of third party technology providers, riots, fires,\r\n earthquakes, floods, power blackouts, strikes, weather conditions, pandemic, epidemic, government\r\n lockdowns or any other unforeseeable event beyond its control (hereinafter collectively referred to\r\n as <span class=\"text-helight\">“Force Majeure Event”)</span>. Upon occurrence of any Force Majeure Event, either Party shall give\r\n notice to the other party of its inability to perform or of delay in completing its obligations and\r\n must act diligently to remedy the cause and restore performance, to the extent possible.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Where Force-Majeure Event continues for a period more than Sixty (60) continuous days, then the\r\n effected Party shall have the right to immediately terminate these SaaS Terms Agreement by providing\r\n a written notice.</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"my-2\">\r\n <h3 class=\"card-title align-items-start flex-column my-7\">\r\n <span class=\"termsheading\">18. Miscellaneous</span>\r\n </h3>\r\n <ul>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n These SaaS Terms is drawn up in English, which language shall govern all documents, notices,\r\n meetings, proceedings and processes relative thereto.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Nothing in these SaaS Terms shall be deemed to constitute a joint venture, agency, partnership,\r\n interest grouping or any other kind of formal business grouping or entity between the Parties.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n No rights or obligations of the Parties arising from these SaaS Terms may be assigned,\r\n sub-contracted, or transferred, in whole or in part, to any third party without the other party’s\r\n prior written approval.\r\n </li>\r\n <li class=\"text-muted fw-semibold sub my-5\"> In case of conflict terms between these SaaS Terms and Order Form, the Order Form will prevail.</li>\r\n <li class=\"text-muted fw-semibold sub my-5\">\r\n Governing Law, Jurisdiction. These SaaS Terms shall be governed by the laws of India, and the\r\n Parties hereby agree to irrevocably submit to the exclusive jurisdiction of the courts of New Delhi\r\n in respect of all disputes arising out of these SaaS Terms.\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n<div class=\"row g-0 mb-0 bg-terms\">\r\n <div class=\"col-md-10\">\r\n <label class=\"form-check form-check-custom form-check-solid form-check-inline \">\r\n <input class=\"form-check-input\" type=\"checkbox\" required name=\"toc\" value=\"1\"\r\n (click)=\"updateterms($event)\" />\r\n <span class=\"form-check-label fw-bold text-gray-700\">\r\n </span>\r\n <span class=\"textsize mt-3\">I agree to the terms and conditions.</span>\r\n </label>\r\n\r\n </div>\r\n <div class=\"col-md-2\">\r\n <button [disabled]=\"!terms\" type=\"button\" class=\"btn btn-lg btn-primary ms-15 me-5 text-nowrap\" (click)=\"enterpriseactivate()\">\r\n Sign Up\r\n </button>\r\n </div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"overlay\" *ngIf=\"showvalue\">\r\n\t<div class=\"popup\">\r\n\t\t<h1 class=\"a-o-i\">Verification Code</h1>\r\n <h5 class=\"sub-aoi\">An OTP has been sent to your mail. Please check & submit.</h5>\r\n <div class=\"otp-container d-flex\">\r\n <div class=\"otp-input d-flex\">\r\n <ng-otp-input #ngOtpInput (onInputChange)=\"onOtpChange($event)\" inputmode=\"numeric\" class=\"verification-code\" placeholder=\"0\" \r\n [config]=\"{ length: 4 ,allowNumbersOnly:true}\"></ng-otp-input>\r\n \r\n </div>\r\n </div>\r\n <span *ngIf=\"invalidOtp\" class=\"d-flex justify-content-center text-danger\" >\r\n Invalid OTP !\r\n </span>\r\n \r\n <div class=\"text-center\">\r\n <label *ngIf=\"resend\" class=\"small_lg cursor-pointer\" \r\n (click)=\"resendOTP()\"><b>Resend OTP</b></label>\r\n\r\n <label *ngIf=\"!resend\" class=\"small_lbl \" >Resend OTP ( {{counter\r\n }} )</label>\r\n </div>\r\n <div class=\"my-3\">\r\n <button type=\"button\" class=\"btn btn-lg btn-primary me-5 w-100 text-nowrap\" (click)=\"otpsubmit()\">\r\n Submit\r\n </button>\r\n </div>\r\n\t</div>\r\n</div>\r\n\r\n","import { Component, OnDestroy, OnInit } from '@angular/core';\r\nimport { BehaviorSubject, Subscription } from 'rxjs';\r\nimport { ConversionService } from '../step/services/conversion.service';\r\n\r\n@Component({\r\n selector: 'lib-vertical',\r\n templateUrl: './vertical.component.html',\r\n styleUrl: './vertical.component.scss'\r\n})\r\nexport class VerticalComponent implements OnInit, OnDestroy {\r\n formsCount = 3;\r\n account$: BehaviorSubject<any> =\r\n new BehaviorSubject<any>('');\r\n currentStep$: BehaviorSubject<number> = new BehaviorSubject(1);\r\n isCurrentFormValid$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(\r\n false\r\n );\r\n private unsubscribe: Subscription[] = [];\r\n prevStepdata: any;\r\n\r\n constructor(private setterService: ConversionService) {}\r\n ngOnDestroy(): void {\r\n this.unsubscribe.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\n ngOnInit(): void {\r\n this.unsubscribe.push(\r\n this.setterService.$stepper.subscribe((data: any) => {\r\n if (data?.prev){ \r\n this.prevStep();\r\n this.prevStepdata = data.data\r\n } \r\n else this.nextStep();\r\n })\r\n )\r\n\r\n\r\n }\r\n\r\n updateAccount = (part: Partial<any>, isFormValid: boolean) => {\r\n const currentAccount = this.account$.value;\r\n const updatedAccount = { ...currentAccount, ...part };\r\n this.account$.next(updatedAccount);\r\n this.isCurrentFormValid$.next(isFormValid);\r\n };\r\n\r\n nextStep() {\r\n const nextStep = this.currentStep$.value + 1;\r\n if (nextStep > this.formsCount) {\r\n return;\r\n }\r\n this.currentStep$.next(nextStep);\r\n }\r\n\r\n prevStep() {\r\n const prevStep = this.currentStep$.value - 1;\r\n if (prevStep === 0) {\r\n return;\r\n }\r\n this.currentStep$.next(prevStep);\r\n }\r\n}\r\n","\r\n<div class=\"linearGradient fixed-element h-100\">\r\n <div class=\"d-flex justify-content-center justify-content-xl-start flex-row-auto\">\r\n\r\n<div class=\"stepper stepper-pills stepper-column \r\n \" id=\"kt_create_account_stepper\">\r\n <!--begin::Aside-->\r\n \r\n <div class=\"row justify-content-center logotext my-20\">\r\n <img class=\"mt-10\" src=\"./assets/tango/Icons/TangoEye.svg\" style=\"max-width: 35%\" alt=\"\">\r\n </div>\r\n <div class=\"card-body px-6 px-lg-10 px-xxl-15\">\r\n <div class=\"stepper-nav\">\r\n\r\n <div class=\"stepper-item my-5 pe-15\" [class.brandbg]=\"currentStep$.value === 1\" [ngClass]=\"{\r\n current: currentStep$.value === 1,\r\n completed: currentStep$.value > 1\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">1</i>\r\n <span class=\"stepper-number\">1</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n About\r\n </h3>\r\n\r\n <div class=\"stepper-desc fw-semibold\">\r\n Provide brand details\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n \r\n </div>\r\n\r\n <div class=\"stepper-item my-5\" [class.brandbg]=\"currentStep$.value === 2\" [ngClass]=\"{\r\n current: currentStep$.value === 2,\r\n completed: currentStep$.value > 2\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">2</i>\r\n <span class=\"stepper-number\">2</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n Pricing \r\n </h3>\r\n <div class=\"stepper-desc fw-semibold\">\r\n Choose suitable plan\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n \r\n </div>\r\n\r\n <div class=\"stepper-item my-5\" [class.brandbg]=\"currentStep$.value === 3\" [ngClass]=\"{\r\n current: currentStep$.value === 3,\r\n completed: currentStep$.value > 3\r\n }\">\r\n <!--begin::Wrapper-->\r\n <div class=\"stepper-wrapper px-5\">\r\n <!--begin::Icon-->\r\n <div class=\"stepper-icon w-40px h-40px\">\r\n <i class=\"stepper-check stepper-number\">3</i>\r\n <span class=\"stepper-number\">3</span>\r\n </div>\r\n <!--end::Icon-->\r\n\r\n <!--begin::Label-->\r\n <div class=\"stepper-label\">\r\n <h3 class=\"stepper-title\">\r\n Sign Up\r\n </h3>\r\n <div class=\"stepper-desc fw-semibold\">\r\n Let's get started\r\n </div>\r\n </div>\r\n <!--end::Label-->\r\n </div>\r\n <!--end::Wrapper-->\r\n\r\n </div>\r\n\r\n <div class=\"text-center\">\r\n <div class=\"footerleft text-center\" style=\" bottom: 3%;\"> Already\r\n have an\r\n Account? <a _ngcontent-skm-c153=\"\" href=\"/auth/login\" class=\"link-primary fw-bolder\"\r\n href=\"/auth/login\">Sign\r\n In</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n \r\n </div>\r\n <!--begin::Aside-->\r\n </div>\r\n \r\n </div>\r\n\r\n\r\n\r\n ","import { Component, OnDestroy, OnInit } from '@angular/core';\r\nimport { ConversionService } from './step/services/conversion.service';\r\nimport { BehaviorSubject, Subscription } from 'rxjs';\r\nimport { PageInfoService } from 'tango-app-ui-global';\r\n\r\n@Component({\r\n selector: 'lib-tango-auth-signup',\r\n templateUrl: './tango-auth-signup.component.html',\r\n styleUrl: './tango-auth-signup.component.scss'\r\n})\r\nexport class TangoAuthSignupComponent implements OnInit, OnDestroy {\r\n\r\n formsCount = 3;\r\n account$: BehaviorSubject<any> =\r\n new BehaviorSubject<any>('');\r\n currentStep$: BehaviorSubject<number> = new BehaviorSubject(1);\r\n isCurrentFormValid$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(\r\n false\r\n );\r\n prevStepdata: any;\r\n subscriptions:Subscription[] = []\r\n constructor(\r\n private setterService: ConversionService,private pageInfo:PageInfoService){}\r\n\r\n ngOnDestroy(): void {\r\n this.subscriptions.forEach((subscription)=>{\r\n subscription.unsubscribe()\r\n })\r\n }\r\n\r\n ngOnInit(): void {\r\n this.subscriptions.push(\r\n this.setterService.$stepper.subscribe((data: any) => {\r\n if (data?.prev){ \r\n this.prevStep();\r\n this.prevStepdata = data.data\r\n } \r\n else this.nextStep();\r\n }) \r\n )\r\n this.pageInfo.setTitle('Signup')\r\n \r\n }\r\n updateAccount = (part: Partial<any>, isFormValid: boolean) => {\r\n const currentAccount = this.account$.value;\r\n const updatedAccount = { ...currentAccount, ...part };\r\n this.account$.next(updatedAccount);\r\n this.isCurrentFormValid$.next(isFormValid);\r\n };\r\n \r\n\r\n nextStep() {\r\n const nextStep = this.currentStep$.value + 1;\r\n if (nextStep > this.formsCount) {\r\n return;\r\n }\r\n this.currentStep$.next(nextStep);\r\n }\r\n\r\n prevStep() {\r\n const prevStep = this.currentStep$.value - 1;\r\n if (prevStep === 0) {\r\n return;\r\n }\r\n this.currentStep$.next(prevStep);\r\n }\r\n\r\n}\r\n","<div class=\"row me-0\">\r\n <lib-vertical class=\"col-lg-4 col-xl-3 col-xxl-3 p-0\"></lib-vertical>\r\n\r\n <!--begin::Content-->\r\n <div class=\" col-lg-8 col-xl-9 col-xxl-9 mb-10\">\r\n <div class=\"current\">\r\n <ng-container *ngIf=\"currentStep$.value === 1\">\r\n <lib-step1 class=\"w-100 \" [prevStepdata]='prevStepdata' [updateParentModel]=\"updateAccount\" [defaultValues]=\"account$.value\"></lib-step1>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentStep$.value === 2\">\r\n <lib-step2 class=\"w-100 \" [updateParentModel]=\"updateAccount\" [defaultValues]=\"account$.value\"></lib-step2>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentStep$.value === 3\">\r\n <lib-step3 class=\"w-100 \"></lib-step3>\r\n </ng-container>\r\n </div>\r\n\r\n <!-- <div class=\"d-flex flex-stack py-2\">\r\n <div class=\"mr-2\">\r\n <ng-container *ngIf=\"currentStep$.value == 2\">\r\n <button type=\"button\" class=\"btn btn-lg btn-light-primary me-5\" (click)=\"prevStep()\">\r\n Previous\r\n </button>\r\n </ng-container>\r\n \r\n </div>\r\n\r\n </div> -->\r\n <!-- <div *ngIf=\"currentStep$.value !== 3\" class=\"my-5 d-flex flex-column flex-md-row flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-10\">\r\n <span class=\"text-muted fw-semibold me-1\">© 2024 </span>\r\n <a target=\"_blank\" class=\"text-gray-800 text-hover-primary\">Tango IT solutions</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-10\">\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\" class=\"menu-link px-5\">About us</a></li>\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/#contact\" class=\"menu-link px-5\">Contact Us</a></li>\r\n <li class=\"menu-item\"><a target=\"_blank\" href=\"https://tangoeye.ai/privacy-policy-2/\" class=\"menu-link px-5\">Privacy & policy</a></li>\r\n </ul>\r\n </div> -->\r\n </div>\r\n <!-- </div> -->\r\n </div>\r\n <!--end::Content-->\r\n<!-- </div> -->","import { Component } from '@angular/core';\r\nimport { AbstractControl, FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';\r\nimport { ToastService } from 'tango-app-ui-shared';\r\nimport { AuthService } from '../../services/auth.service';\r\nimport { ActivatedRoute, Router } from '@angular/router';\r\nimport { PageInfoService } from 'tango-app-ui-global';\r\n\r\n@Component({\r\n selector: \"lib-tango-auth-forgot-password\",\r\n templateUrl: \"./tango-auth-forgot-password.component.html\",\r\n styleUrl: \"./tango-auth-forgot-password.component.scss\",\r\n})\r\nexport class TangoAuthForgotPasswordComponent {\r\n emailEnable: boolean = true;\r\n OTP: any;\r\n passwordEnable: boolean = false;\r\n newPasswordShow: boolean = false;\r\n verifyPasswordShow: boolean = false;\r\n confirmPasswordShow: boolean = false;\r\n email = new FormControl(\"\", [\r\n Validators.required,\r\n Validators.email,\r\n Validators.maxLength(100),\r\n Validators.minLength(3),\r\n ]);\r\n PasswordForm: FormGroup;\r\n\r\n constructor(\r\n private toast: ToastService,\r\n private authService: AuthService,\r\n private activatedRoute: ActivatedRoute,\r\n private fb: FormBuilder,\r\n private router: Router,private pageInfo:PageInfoService\r\n ) {\r\n \r\n this.PasswordForm = this.fb.group({\r\n password: [\r\n \"\",\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator\r\n ]),\r\n ],\r\n confirmPassword: [\r\n \"\",\r\n Validators.compose([\r\n Validators.required,\r\n Validators.minLength(8),\r\n Validators.maxLength(320),\r\n Validators.pattern(/^(?=.*[A-Z])(?=.*\\d).{8,}$/),this.noSpaceValidator,\r\n this.validateAreEqual.bind(this),\r\n ]),\r\n ],\r\n token: [\r\n \"\",\r\n Validators.required\r\n ]\r\n });\r\n\r\n \r\n this.activatedRoute.queryParams.subscribe({\r\n next: (qparams: any) => {\r\n if (qparams) {\r\n if (qparams.token) {\r\n this.passwordEnable = true;\r\n this.emailEnable = false;\r\n this.PasswordForm.get('token')?.setValue(qparams.token);\r\n } else {\r\n this.emailEnable = true;\r\n this.passwordEnable = false;\r\n }\r\n }\r\n },\r\n });\r\n\r\n this.PasswordForm.get('password')?.valueChanges.subscribe(() => {\r\n this.PasswordForm.get('confirmPassword')?.updateValueAndValidity();\r\n });\r\n \r\n }\r\n noSpaceValidator(control: AbstractControl): { [key: string]: any } | null {\r\n if (control.value && control.value.indexOf(' ') >= 0) {\r\n return { 'noSpaces': true };\r\n }\r\n return null;\r\n }\r\n validateAreEqual(fieldControl: AbstractControl<any>) {\r\n return fieldControl?.value === this.PasswordForm?.get(\"password\")!.value ? null : { NotEqual: true };\r\n }\r\n\r\n onSubmit() {\r\n this.authService\r\n .forgotPasswordTrigger({ email: this.email.value })\r\n .subscribe({\r\n next: (res: any) => {\r\n if (res && res.code == 200) {\r\n this.toast.getSuccessToast(\r\n `Reset password link sent to ${this.email.value}`\r\n );\r\n } else {\r\n this.toast.getErrorToast(\r\n `Unable to send reset password link to ${this.email.value}`\r\n );\r\n }\r\n },\r\n error: () => {\r\n this.toast.getErrorToast(\r\n `Unable to send reset password link to ${this.email.value}`\r\n );\r\n },\r\n });\r\n }\r\n\r\n showNewPassword() {\r\n this.newPasswordShow = !this.newPasswordShow;\r\n }\r\n\r\n showVerifyPassword() {\r\n this.verifyPasswordShow = !this.verifyPasswordShow;\r\n }\r\n\r\n showConfirmPassword() {\r\n this.confirmPasswordShow = !this.confirmPasswordShow;\r\n }\r\n\r\n onPasswordSubmit() {\r\n this.authService.forgotPassword(this.PasswordForm.value).subscribe({\r\n next: (res: any) => {\r\n if(res && res.code == 200) {\r\n this.toast.getSuccessToast(\"Password updated successfully.\");\r\n this.router.navigate(['auth/login']);\r\n } else {\r\n this.toast.getErrorToast('Unable to reset password! Please try again later.');\r\n }\r\n },\r\n error: () => {\r\n this.toast.getErrorToast('Unable to reset password! Please try again later.');\r\n },\r\n });\r\n }\r\n}\r\n","<div class=\"container\">\r\n <div class=\"row position-absolute\">\r\n <div class=\"col-md-6 pe-10 d-flex justify-content-center align-items-center \">\r\n <img src=\"./assets/tango/Icons/LHS.svg\" alt=\"Image\" class=\"img-fluid\">\r\n </div>\r\n @if (emailEnable) {\r\n <div class=\"col-md-6 ps-10 d-flex justify-content-center align-items-center\">\r\n <div class=\"card card-flush w-lg-600px ms-20 py-3 mt-20\">\r\n\r\n <div class=\"login-form login-signin w-100\">\r\n\r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-10 ms-10\">\r\n <h1 class=\"title my-4\"> Forgot Password\r\n </h1>\r\n <div class=\"title-subtitle mb-1\"> Enter the Email associated with your account and\r\n we'll send you a OTP to reset your password.\r\n </div>\r\n </div>\r\n <form class=\"w-100 title-padding\" novalidate=\"novalidate\">\r\n <div class=\"mb-1\">\r\n <label class=\"label\">Email</label>\r\n <input class=\"form-control my-3\" [formControl]=\"email\" type=\"email\" id=\"email\"\r\n name=\"email\">\r\n </div>\r\n </form>\r\n\r\n <div class=\"d-flex mt-5 mb-5 mx-10\" role=\"group\">\r\n\r\n <button class=\"btn btn-primary w-100\" id=\"alert-toast\" [disabled]=\"email.invalid\"\r\n (click)=\"onSubmit()\">Request reset link</button>\r\n </div>\r\n <a class=\"text-decoration-underline backtologin text-center my-3\" routerLink=\"/auth/login\">Back\r\n to\r\n login</a>\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-20\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\"\r\n class=\"footer text-decoration-underline cursor-pointer\">&#64;TangoITSolutions\r\n India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\"\r\n class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path\r\n d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\"\r\n stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n\r\n\r\n\r\n </div>\r\n </div>\r\n }\r\n @if(passwordEnable) {\r\n <div class=\"col-md-6 ps-10 d-flex justify-content-center align-items-center\">\r\n <div class=\"card card-flush w-lg-600px ms-20 py-3 mt-20\">\r\n\r\n <div class=\"login-form login-signin w-100\">\r\n\r\n <div class=\"d-flex flex-column align-items-between title-padding\">\r\n <div class=\"text-start my-5 ms-10\">\r\n\r\n <h1 class=\"title my-4\">Reset Password\r\n </h1>\r\n <div class=\"title-subtitle mb-7\">Enter a new password to reset the password on your account\r\n </div>\r\n <form [formGroup]=\"PasswordForm\" novalidate=\"novalidate\" class=\"\">\r\n <div class=\"row px-0\">\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 mb-7\">\r\n <label for=\"email\" class=\"form-label\">New Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input [type]=\"newPasswordShow ? 'text' : 'password'\" class=\"form-control\" id=\"password\"\r\n formControlName=\"password\"\r\n [ngClass]=\"{ 'is-invalid': PasswordForm.get('password')?.touched && PasswordForm.get('password')?.hasError('required') }\">\r\n <span (click)=\"showNewPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"newPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!newPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n @if(PasswordForm.get('password')?.touched) {\r\n @if (PasswordForm.get('password')?.hasError('required')) {\r\n <small>Password is required</small>\r\n } \r\n }\r\n <small *ngIf=\"PasswordForm.get('password')?.hasError('pattern')\">The password must contain atleast one capital letter and number.</small>\r\n <small *ngIf=\"PasswordForm.get('password')?.hasError('noSpaces') && !PasswordForm.get('password')?.hasError('pattern') && PasswordForm.get('password')?.touched\">Password cannot contain spaces.</small> \r\n </div>\r\n <div class=\"col-md-12 col-lg-12 col-xl-12 col-xxl-12 mb-7\">\r\n <label for=\"contact\" class=\"form-label\">Confirm New Password</label>\r\n <div class=\"position-relative mb-3\">\r\n <input [type]=\"verifyPasswordShow ? 'text' : 'password'\" class=\"form-control\" id=\"confirmPassword\"\r\n formControlName=\"confirmPassword\"\r\n [ngClass]=\"{ 'is-invalid': PasswordForm.get('confirmPassword')?.touched && PasswordForm.get('confirmPassword')?.hasError('required') }\">\r\n <span (click)=\"showVerifyPassword()\"\r\n class=\"btn btn-sm btn-icon position-absolute translate-middle top-50 end-0 me-n2\"\r\n data-kt-password-meter-control=\"visibility\">\r\n <i *ngIf=\"verifyPasswordShow\" class=\"fa fa-eye\" aria-hidden=\"true\"></i>\r\n <i *ngIf=\"!verifyPasswordShow\" class=\"fa fa-eye-slash\" aria-hidden=\"true\"></i>\r\n </span>\r\n </div>\r\n @if(PasswordForm.get('confirmPassword')?.touched) {\r\n @if (PasswordForm.get('confirmPassword')?.hasError('required')) {\r\n <small>Confirm password is required</small>\r\n } @else {\r\n <!-- <small *ngIf=\"PasswordForm.get('confirmPassword')?.hasError('pattern')\">The confirm password must\r\n contain atleast one capital letter and number.</small> -->\r\n <small\r\n *ngIf=\"PasswordForm.get('confirmPassword')?.touched && PasswordForm.get('confirmPassword')?.hasError('NotEqual') && !PasswordForm.get('confirmPassword')?.hasError('required')\">Password\r\n does not match</small>\r\n }\r\n <small *ngIf=\"PasswordForm.get('confirmPassword')?.hasError('noSpaces') && !PasswordForm.get('confirmPassword')?.hasError('NotEqual') && PasswordForm.get('confirmPassword')?.touched\">Password cannot contain spaces.</small> \r\n }\r\n </div>\r\n </div>\r\n </form>\r\n <div class=\"d-flex mt-10 mb-5\" role=\"group\">\r\n <button class=\"btn btn-primary w-100 \" id=\"alert-toast\" [disabled]=\"PasswordForm.invalid\"\r\n (click)=\"onPasswordSubmit()\">Reset\r\n password</button>\r\n </div>\r\n </div>\r\n <a class=\"text-decoration-underline backtologin text-center\" routerLink=\"/auth/login\">Back to\r\n login</a>\r\n\r\n </div>\r\n <div class=\" d-flex flex-column flex-md-row mb-3 flex-md-stack pt-3 container-fluid\">\r\n <div class=\"text-gray-900 order-2 order-md-1 ms-20\">\r\n <span class=\"me-1 footer\">2024</span>\r\n <a target=\"_blank\"\r\n class=\"footer text-decoration-underline cursor-pointer\">&#64;TangoITSolutions\r\n India Pvt Ltd</a>\r\n </div>\r\n <ul class=\"menu menu-gray-600 menu-hover-primary fw-semibold order-1 me-7\">\r\n <li class=\"menu-item footer\"><a target=\"_blank\" href=\"https://tangoeye.ai/#aboutus\"\r\n class=\"menu-link px-5\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\"\r\n height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\">\r\n <path\r\n d=\"M11 3.7002C11 3.1502 10.55 2.7002 10 2.7002H2C1.45 2.7002 1 3.1502 1 3.7002M11 3.7002V9.7002C11 10.2502 10.55 10.7002 10 10.7002H2C1.45 10.7002 1 10.2502 1 9.7002V3.7002M11 3.7002L6 7.2002L1 3.7002\"\r\n stroke=\"#667085\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg><span class=\"ms-2\">support&#64;tangotech.co.in</span></a></li>\r\n\r\n </ul>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n }\r\n </div>\r\n <img src=\"./assets/tango/Icons/login-background1.svg\" alt=\"Image\" class=\"background-image\">\r\n</div>\r\n\r\n\r\n\r\n\r\n","import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\nimport { TangoAuthComponent } from './components/tango-auth/tango-auth.component';\r\nimport { TangoAuthLoginComponent } from './components/tango-auth-login/tango-auth-login.component';\r\nimport { TangoAuthSignupComponent } from './components/tango-auth-signup/tango-auth-signup.component';\r\nimport { TangoAuthForgotPasswordComponent } from './components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\n\r\nconst routes: Routes = [\r\n {\r\n path: '',\r\n component: TangoAuthComponent,\r\n children: [\r\n {\r\n path: '',\r\n redirectTo: 'login',\r\n pathMatch: 'full',\r\n },\r\n {\r\n path: 'login',\r\n component: TangoAuthLoginComponent,\r\n data: { returnUrl: window.location.pathname },\r\n\r\n },\r\n {\r\n path: 'signup',\r\n component: TangoAuthSignupComponent,\r\n },\r\n {\r\n path: 'forgot-password',\r\n component: TangoAuthForgotPasswordComponent,\r\n },\r\n { path: '', redirectTo: 'login', pathMatch: 'full' },\r\n { path: '**', redirectTo: 'login', pathMatch: 'full' },\r\n ],\r\n },\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class TangoAuthRoutingModule { }\r\n","import { NO_ERRORS_SCHEMA, NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nimport { TangoAuthRoutingModule } from './tango-auth-routing.module';\r\nimport { TangoAuthComponent } from './components/tango-auth/tango-auth.component';\r\nimport { TangoAuthLoginComponent } from './components/tango-auth-login/tango-auth-login.component';\r\nimport { TangoAuthSignupComponent } from './components/tango-auth-signup/tango-auth-signup.component';\r\nimport { TangoAuthForgotPasswordComponent } from './components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\nimport { ModalContentComponent } from './components/tango-auth-signup/step/modal-content/modal-content.component';\r\nimport { Step1Component } from './components/tango-auth-signup/step/step1/step1.component';\r\nimport { Step2Component } from './components/tango-auth-signup/step/step2/step2.component';\r\nimport { Step3Component } from './components/tango-auth-signup/step/step3/step3.component';\r\nimport { VerticalComponent } from './components/tango-auth-signup/vertical/vertical.component';\r\nimport { NgOtpInputModule } from 'ng-otp-input';\r\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\r\nimport { CalendlyModalComponent } from './components/tango-auth-signup/step/calendly-modal/calendly-modal.component';\r\n@NgModule({\r\n declarations: [\r\n TangoAuthComponent,\r\n TangoAuthLoginComponent,\r\n TangoAuthSignupComponent,\r\n TangoAuthForgotPasswordComponent,\r\n Step1Component,\r\n Step2Component,\r\n Step3Component,\r\n VerticalComponent,\r\n ModalContentComponent,\r\n CalendlyModalComponent,\r\n ],\r\n imports: [\r\n CommonModule,\r\n TangoAuthRoutingModule,\r\n NgOtpInputModule,\r\n ReactiveFormsModule,\r\n FormsModule,\r\n \r\n ],\r\n schemas:[NO_ERRORS_SCHEMA]\r\n})\r\nexport class TangoAuthModule { }\r\n","import { Injectable } from '@angular/core';\r\nimport { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';\r\nimport { AuthService } from '../services/auth.service';\r\nimport { GlobalStateService } from 'tango-app-ui-global';\r\n\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class AuthGuard {\r\n private authlocalStorageToken:any;\r\n constructor(private authService: AuthService,private gs:GlobalStateService,\r\n private route: Router) {\r\n this.gs.environment.subscribe((env) => {\r\n if (env) {\r\n this.authlocalStorageToken = `${env.appVersion}-${env.USERDATA_KEY}`;\r\n }\r\n })\r\n }\r\n canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot) {\r\n\r\n // const currentUser = localStorage.getItem('isLoggedIn');\r\n const currentUser = localStorage.getItem(this.authlocalStorageToken);\r\n if (currentUser) {\r\n // this.route.navigate(['/manage']); \r\n return true; \r\n } else {\r\n this.route.navigate(['/auth/login']); \r\n\r\n return false;\r\n }\r\n }\r\n}\r\n","/*\r\n * Public API Surface of tango-auth\r\n */\r\n\r\nexport * from './lib/tango-auth.module';\r\n\r\n// components\r\nexport * from './lib/components/tango-auth/tango-auth.component';\r\nexport * from './lib/components/tango-auth-forgot-password/tango-auth-forgot-password.component';\r\nexport * from './lib/components/tango-auth-login/tango-auth-login.component';\r\nexport * from './lib/components/tango-auth-signup/tango-auth-signup.component';\r\n\r\n\r\n// guards\r\nexport * from './lib/guards/auth.guard';\r\n\r\n// services\r\nexport * from './lib/services/auth.service';\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i3","i2","i3.AuthService","i1.ConversionService","i4","i2.ConversionService","i2.AuthService","i4.Step1Component","i5.Step2Component","i6.Step3Component","i7.VerticalComponent","i5","i1.AuthService"],"mappings":"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"}