{"version":3,"sources":["node_modules/@angular/material/fesm2022/icon.mjs","node_modules/@microsoft/signalr/dist/esm/Errors.js","node_modules/@microsoft/signalr/dist/esm/HttpClient.js","node_modules/@microsoft/signalr/dist/esm/ILogger.js","node_modules/@microsoft/signalr/dist/esm/Loggers.js","node_modules/@microsoft/signalr/dist/esm/Utils.js","node_modules/@microsoft/signalr/dist/esm/FetchHttpClient.js","node_modules/@microsoft/signalr/dist/esm/XhrHttpClient.js","node_modules/@microsoft/signalr/dist/esm/DefaultHttpClient.js","node_modules/@microsoft/signalr/dist/esm/TextMessageFormat.js","node_modules/@microsoft/signalr/dist/esm/HandshakeProtocol.js","node_modules/@microsoft/signalr/dist/esm/IHubProtocol.js","node_modules/@microsoft/signalr/dist/esm/Subject.js","node_modules/@microsoft/signalr/dist/esm/HubConnection.js","node_modules/@microsoft/signalr/dist/esm/DefaultReconnectPolicy.js","node_modules/@microsoft/signalr/src/HeaderNames.ts","node_modules/@microsoft/signalr/dist/esm/AccessTokenHttpClient.js","node_modules/@microsoft/signalr/dist/esm/ITransport.js","node_modules/@microsoft/signalr/dist/esm/AbortController.js","node_modules/@microsoft/signalr/dist/esm/LongPollingTransport.js","node_modules/@microsoft/signalr/dist/esm/ServerSentEventsTransport.js","node_modules/@microsoft/signalr/dist/esm/WebSocketTransport.js","node_modules/@microsoft/signalr/dist/esm/HttpConnection.js","node_modules/@microsoft/signalr/dist/esm/JsonHubProtocol.js","node_modules/@microsoft/signalr/dist/esm/HubConnectionBuilder.js","node_modules/@microsoft/signalr/dist/esm/index.js","node_modules/@polygon/shell/fesm2022/polygon-shell.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { SecurityContext, Injectable, Optional, Inject, SkipSelf, ErrorHandler, InjectionToken, inject, booleanAttribute, Component, ViewEncapsulation, ChangeDetectionStrategy, Attribute, Input, NgModule } from '@angular/core';\nimport { MatCommonModule } from '@angular/material/core';\nimport { DOCUMENT } from '@angular/common';\nimport { of, throwError, forkJoin, Subscription } from 'rxjs';\nimport { tap, map, catchError, finalize, share, take } from 'rxjs/operators';\nimport * as i1 from '@angular/common/http';\nimport { HttpClient } from '@angular/common/http';\nimport * as i2 from '@angular/platform-browser';\nimport { DomSanitizer } from '@angular/platform-browser';\n\n/**\n * The Trusted Types policy, or null if Trusted Types are not\n * enabled/supported, or undefined if the policy has not been created yet.\n */\nconst _c0 = [\"*\"];\nlet policy;\n/**\n * Returns the Trusted Types policy, or null if Trusted Types are not\n * enabled/supported. The first call to this function will create the policy.\n */\nfunction getPolicy() {\n if (policy === undefined) {\n policy = null;\n if (typeof window !== 'undefined') {\n const ttWindow = window;\n if (ttWindow.trustedTypes !== undefined) {\n policy = ttWindow.trustedTypes.createPolicy('angular#components', {\n createHTML: s => s\n });\n }\n }\n }\n return policy;\n}\n/**\n * Unsafely promote a string to a TrustedHTML, falling back to strings when\n * Trusted Types are not available.\n * @security This is a security-sensitive function; any use of this function\n * must go through security review. In particular, it must be assured that the\n * provided string will never cause an XSS vulnerability if used in a context\n * that will be interpreted as HTML by a browser, e.g. when assigning to\n * element.innerHTML.\n */\nfunction trustedHTMLFromString(html) {\n return getPolicy()?.createHTML(html) || html;\n}\n\n/**\n * Returns an exception to be thrown in the case when attempting to\n * load an icon with a name that cannot be found.\n * @docs-private\n */\nfunction getMatIconNameNotFoundError(iconName) {\n return Error(`Unable to find icon with the name \"${iconName}\"`);\n}\n/**\n * Returns an exception to be thrown when the consumer attempts to use\n * `` without including @angular/common/http.\n * @docs-private\n */\nfunction getMatIconNoHttpProviderError() {\n return Error('Could not find HttpClient for use with Angular Material icons. ' + 'Please add provideHttpClient() to your providers.');\n}\n/**\n * Returns an exception to be thrown when a URL couldn't be sanitized.\n * @param url URL that was attempted to be sanitized.\n * @docs-private\n */\nfunction getMatIconFailedToSanitizeUrlError(url) {\n return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL ` + `via Angular's DomSanitizer. Attempted URL was \"${url}\".`);\n}\n/**\n * Returns an exception to be thrown when a HTML string couldn't be sanitized.\n * @param literal HTML that was attempted to be sanitized.\n * @docs-private\n */\nfunction getMatIconFailedToSanitizeLiteralError(literal) {\n return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by ` + `Angular's DomSanitizer. Attempted literal was \"${literal}\".`);\n}\n/**\n * Configuration for an icon, including the URL and possibly the cached SVG element.\n * @docs-private\n */\nclass SvgIconConfig {\n constructor(url, svgText, options) {\n this.url = url;\n this.svgText = svgText;\n this.options = options;\n }\n}\n/**\n * Service to register and display icons used by the `` component.\n * - Registers icon URLs by namespace and name.\n * - Registers icon set URLs by namespace.\n * - Registers aliases for CSS classes, for use with icon fonts.\n * - Loads icons from URLs and extracts individual icons from icon sets.\n */\nlet MatIconRegistry = /*#__PURE__*/(() => {\n class MatIconRegistry {\n constructor(_httpClient, _sanitizer, document, _errorHandler) {\n this._httpClient = _httpClient;\n this._sanitizer = _sanitizer;\n this._errorHandler = _errorHandler;\n /**\n * URLs and cached SVG elements for individual icons. Keys are of the format \"[namespace]:[icon]\".\n */\n this._svgIconConfigs = new Map();\n /**\n * SvgIconConfig objects and cached SVG elements for icon sets, keyed by namespace.\n * Multiple icon sets can be registered under the same namespace.\n */\n this._iconSetConfigs = new Map();\n /** Cache for icons loaded by direct URLs. */\n this._cachedIconsByUrl = new Map();\n /** In-progress icon fetches. Used to coalesce multiple requests to the same URL. */\n this._inProgressUrlFetches = new Map();\n /** Map from font identifiers to their CSS class names. Used for icon fonts. */\n this._fontCssClassesByAlias = new Map();\n /** Registered icon resolver functions. */\n this._resolvers = [];\n /**\n * The CSS classes to apply when an `` component has no icon name, url, or font\n * specified. The default 'material-icons' value assumes that the material icon font has been\n * loaded as described at https://google.github.io/material-design-icons/#icon-font-for-the-web\n */\n this._defaultFontSetClass = ['material-icons', 'mat-ligature-font'];\n this._document = document;\n }\n /**\n * Registers an icon by URL in the default namespace.\n * @param iconName Name under which the icon should be registered.\n * @param url\n */\n addSvgIcon(iconName, url, options) {\n return this.addSvgIconInNamespace('', iconName, url, options);\n }\n /**\n * Registers an icon using an HTML string in the default namespace.\n * @param iconName Name under which the icon should be registered.\n * @param literal SVG source of the icon.\n */\n addSvgIconLiteral(iconName, literal, options) {\n return this.addSvgIconLiteralInNamespace('', iconName, literal, options);\n }\n /**\n * Registers an icon by URL in the specified namespace.\n * @param namespace Namespace in which the icon should be registered.\n * @param iconName Name under which the icon should be registered.\n * @param url\n */\n addSvgIconInNamespace(namespace, iconName, url, options) {\n return this._addSvgIconConfig(namespace, iconName, new SvgIconConfig(url, null, options));\n }\n /**\n * Registers an icon resolver function with the registry. The function will be invoked with the\n * name and namespace of an icon when the registry tries to resolve the URL from which to fetch\n * the icon. The resolver is expected to return a `SafeResourceUrl` that points to the icon,\n * an object with the icon URL and icon options, or `null` if the icon is not supported. Resolvers\n * will be invoked in the order in which they have been registered.\n * @param resolver Resolver function to be registered.\n */\n addSvgIconResolver(resolver) {\n this._resolvers.push(resolver);\n return this;\n }\n /**\n * Registers an icon using an HTML string in the specified namespace.\n * @param namespace Namespace in which the icon should be registered.\n * @param iconName Name under which the icon should be registered.\n * @param literal SVG source of the icon.\n */\n addSvgIconLiteralInNamespace(namespace, iconName, literal, options) {\n const cleanLiteral = this._sanitizer.sanitize(SecurityContext.HTML, literal);\n // TODO: add an ngDevMode check\n if (!cleanLiteral) {\n throw getMatIconFailedToSanitizeLiteralError(literal);\n }\n // Security: The literal is passed in as SafeHtml, and is thus trusted.\n const trustedLiteral = trustedHTMLFromString(cleanLiteral);\n return this._addSvgIconConfig(namespace, iconName, new SvgIconConfig('', trustedLiteral, options));\n }\n /**\n * Registers an icon set by URL in the default namespace.\n * @param url\n */\n addSvgIconSet(url, options) {\n return this.addSvgIconSetInNamespace('', url, options);\n }\n /**\n * Registers an icon set using an HTML string in the default namespace.\n * @param literal SVG source of the icon set.\n */\n addSvgIconSetLiteral(literal, options) {\n return this.addSvgIconSetLiteralInNamespace('', literal, options);\n }\n /**\n * Registers an icon set by URL in the specified namespace.\n * @param namespace Namespace in which to register the icon set.\n * @param url\n */\n addSvgIconSetInNamespace(namespace, url, options) {\n return this._addSvgIconSetConfig(namespace, new SvgIconConfig(url, null, options));\n }\n /**\n * Registers an icon set using an HTML string in the specified namespace.\n * @param namespace Namespace in which to register the icon set.\n * @param literal SVG source of the icon set.\n */\n addSvgIconSetLiteralInNamespace(namespace, literal, options) {\n const cleanLiteral = this._sanitizer.sanitize(SecurityContext.HTML, literal);\n if (!cleanLiteral) {\n throw getMatIconFailedToSanitizeLiteralError(literal);\n }\n // Security: The literal is passed in as SafeHtml, and is thus trusted.\n const trustedLiteral = trustedHTMLFromString(cleanLiteral);\n return this._addSvgIconSetConfig(namespace, new SvgIconConfig('', trustedLiteral, options));\n }\n /**\n * Defines an alias for CSS class names to be used for icon fonts. Creating an matIcon\n * component with the alias as the fontSet input will cause the class name to be applied\n * to the `` element.\n *\n * If the registered font is a ligature font, then don't forget to also include the special\n * class `mat-ligature-font` to allow the usage via attribute. So register like this:\n *\n * ```ts\n * iconRegistry.registerFontClassAlias('f1', 'font1 mat-ligature-font');\n * ```\n *\n * And use like this:\n *\n * ```html\n * \n * ```\n *\n * @param alias Alias for the font.\n * @param classNames Class names override to be used instead of the alias.\n */\n registerFontClassAlias(alias, classNames = alias) {\n this._fontCssClassesByAlias.set(alias, classNames);\n return this;\n }\n /**\n * Returns the CSS class name associated with the alias by a previous call to\n * registerFontClassAlias. If no CSS class has been associated, returns the alias unmodified.\n */\n classNameForFontAlias(alias) {\n return this._fontCssClassesByAlias.get(alias) || alias;\n }\n /**\n * Sets the CSS classes to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n */\n setDefaultFontSetClass(...classNames) {\n this._defaultFontSetClass = classNames;\n return this;\n }\n /**\n * Returns the CSS classes to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n */\n getDefaultFontSetClass() {\n return this._defaultFontSetClass;\n }\n /**\n * Returns an Observable that produces the icon (as an `` DOM element) from the given URL.\n * The response from the URL may be cached so this will not always cause an HTTP request, but\n * the produced element will always be a new copy of the originally fetched icon. (That is,\n * it will not contain any modifications made to elements previously returned).\n *\n * @param safeUrl URL from which to fetch the SVG icon.\n */\n getSvgIconFromUrl(safeUrl) {\n const url = this._sanitizer.sanitize(SecurityContext.RESOURCE_URL, safeUrl);\n if (!url) {\n throw getMatIconFailedToSanitizeUrlError(safeUrl);\n }\n const cachedIcon = this._cachedIconsByUrl.get(url);\n if (cachedIcon) {\n return of(cloneSvg(cachedIcon));\n }\n return this._loadSvgIconFromConfig(new SvgIconConfig(safeUrl, null)).pipe(tap(svg => this._cachedIconsByUrl.set(url, svg)), map(svg => cloneSvg(svg)));\n }\n /**\n * Returns an Observable that produces the icon (as an `` DOM element) with the given name\n * and namespace. The icon must have been previously registered with addIcon or addIconSet;\n * if not, the Observable will throw an error.\n *\n * @param name Name of the icon to be retrieved.\n * @param namespace Namespace in which to look for the icon.\n */\n getNamedSvgIcon(name, namespace = '') {\n const key = iconKey(namespace, name);\n let config = this._svgIconConfigs.get(key);\n // Return (copy of) cached icon if possible.\n if (config) {\n return this._getSvgFromConfig(config);\n }\n // Otherwise try to resolve the config from one of the resolver functions.\n config = this._getIconConfigFromResolvers(namespace, name);\n if (config) {\n this._svgIconConfigs.set(key, config);\n return this._getSvgFromConfig(config);\n }\n // See if we have any icon sets registered for the namespace.\n const iconSetConfigs = this._iconSetConfigs.get(namespace);\n if (iconSetConfigs) {\n return this._getSvgFromIconSetConfigs(name, iconSetConfigs);\n }\n return throwError(getMatIconNameNotFoundError(key));\n }\n ngOnDestroy() {\n this._resolvers = [];\n this._svgIconConfigs.clear();\n this._iconSetConfigs.clear();\n this._cachedIconsByUrl.clear();\n }\n /**\n * Returns the cached icon for a SvgIconConfig if available, or fetches it from its URL if not.\n */\n _getSvgFromConfig(config) {\n if (config.svgText) {\n // We already have the SVG element for this icon, return a copy.\n return of(cloneSvg(this._svgElementFromConfig(config)));\n } else {\n // Fetch the icon from the config's URL, cache it, and return a copy.\n return this._loadSvgIconFromConfig(config).pipe(map(svg => cloneSvg(svg)));\n }\n }\n /**\n * Attempts to find an icon with the specified name in any of the SVG icon sets.\n * First searches the available cached icons for a nested element with a matching name, and\n * if found copies the element to a new `` element. If not found, fetches all icon sets\n * that have not been cached, and searches again after all fetches are completed.\n * The returned Observable produces the SVG element if possible, and throws\n * an error if no icon with the specified name can be found.\n */\n _getSvgFromIconSetConfigs(name, iconSetConfigs) {\n // For all the icon set SVG elements we've fetched, see if any contain an icon with the\n // requested name.\n const namedIcon = this._extractIconWithNameFromAnySet(name, iconSetConfigs);\n if (namedIcon) {\n // We could cache namedIcon in _svgIconConfigs, but since we have to make a copy every\n // time anyway, there's probably not much advantage compared to just always extracting\n // it from the icon set.\n return of(namedIcon);\n }\n // Not found in any cached icon sets. If there are icon sets with URLs that we haven't\n // fetched, fetch them now and look for iconName in the results.\n const iconSetFetchRequests = iconSetConfigs.filter(iconSetConfig => !iconSetConfig.svgText).map(iconSetConfig => {\n return this._loadSvgIconSetFromConfig(iconSetConfig).pipe(catchError(err => {\n const url = this._sanitizer.sanitize(SecurityContext.RESOURCE_URL, iconSetConfig.url);\n // Swallow errors fetching individual URLs so the\n // combined Observable won't necessarily fail.\n const errorMessage = `Loading icon set URL: ${url} failed: ${err.message}`;\n this._errorHandler.handleError(new Error(errorMessage));\n return of(null);\n }));\n });\n // Fetch all the icon set URLs. When the requests complete, every IconSet should have a\n // cached SVG element (unless the request failed), and we can check again for the icon.\n return forkJoin(iconSetFetchRequests).pipe(map(() => {\n const foundIcon = this._extractIconWithNameFromAnySet(name, iconSetConfigs);\n // TODO: add an ngDevMode check\n if (!foundIcon) {\n throw getMatIconNameNotFoundError(name);\n }\n return foundIcon;\n }));\n }\n /**\n * Searches the cached SVG elements for the given icon sets for a nested icon element whose \"id\"\n * tag matches the specified name. If found, copies the nested element to a new SVG element and\n * returns it. Returns null if no matching element is found.\n */\n _extractIconWithNameFromAnySet(iconName, iconSetConfigs) {\n // Iterate backwards, so icon sets added later have precedence.\n for (let i = iconSetConfigs.length - 1; i >= 0; i--) {\n const config = iconSetConfigs[i];\n // Parsing the icon set's text into an SVG element can be expensive. We can avoid some of\n // the parsing by doing a quick check using `indexOf` to see if there's any chance for the\n // icon to be in the set. This won't be 100% accurate, but it should help us avoid at least\n // some of the parsing.\n if (config.svgText && config.svgText.toString().indexOf(iconName) > -1) {\n const svg = this._svgElementFromConfig(config);\n const foundIcon = this._extractSvgIconFromSet(svg, iconName, config.options);\n if (foundIcon) {\n return foundIcon;\n }\n }\n }\n return null;\n }\n /**\n * Loads the content of the icon URL specified in the SvgIconConfig and creates an SVG element\n * from it.\n */\n _loadSvgIconFromConfig(config) {\n return this._fetchIcon(config).pipe(tap(svgText => config.svgText = svgText), map(() => this._svgElementFromConfig(config)));\n }\n /**\n * Loads the content of the icon set URL specified in the\n * SvgIconConfig and attaches it to the config.\n */\n _loadSvgIconSetFromConfig(config) {\n if (config.svgText) {\n return of(null);\n }\n return this._fetchIcon(config).pipe(tap(svgText => config.svgText = svgText));\n }\n /**\n * Searches the cached element of the given SvgIconConfig for a nested icon element whose \"id\"\n * tag matches the specified name. If found, copies the nested element to a new SVG element and\n * returns it. Returns null if no matching element is found.\n */\n _extractSvgIconFromSet(iconSet, iconName, options) {\n // Use the `id=\"iconName\"` syntax in order to escape special\n // characters in the ID (versus using the #iconName syntax).\n const iconSource = iconSet.querySelector(`[id=\"${iconName}\"]`);\n if (!iconSource) {\n return null;\n }\n // Clone the element and remove the ID to prevent multiple elements from being added\n // to the page with the same ID.\n const iconElement = iconSource.cloneNode(true);\n iconElement.removeAttribute('id');\n // If the icon node is itself an node, clone and return it directly. If not, set it as\n // the content of a new node.\n if (iconElement.nodeName.toLowerCase() === 'svg') {\n return this._setSvgAttributes(iconElement, options);\n }\n // If the node is a , it won't be rendered so we have to convert it into . Note\n // that the same could be achieved by referring to it via , however the \n // tag is problematic on Firefox, because it needs to include the current page path.\n if (iconElement.nodeName.toLowerCase() === 'symbol') {\n return this._setSvgAttributes(this._toSvgElement(iconElement), options);\n }\n // createElement('SVG') doesn't work as expected; the DOM ends up with\n // the correct nodes, but the SVG content doesn't render. Instead we\n // have to create an empty SVG node using innerHTML and append its content.\n // Elements created using DOMParser.parseFromString have the same problem.\n // http://stackoverflow.com/questions/23003278/svg-innerhtml-in-firefox-can-not-display\n const svg = this._svgElementFromString(trustedHTMLFromString(''));\n // Clone the node so we don't remove it from the parent icon set element.\n svg.appendChild(iconElement);\n return this._setSvgAttributes(svg, options);\n }\n /**\n * Creates a DOM element from the given SVG string.\n */\n _svgElementFromString(str) {\n const div = this._document.createElement('DIV');\n div.innerHTML = str;\n const svg = div.querySelector('svg');\n // TODO: add an ngDevMode check\n if (!svg) {\n throw Error(' tag not found');\n }\n return svg;\n }\n /**\n * Converts an element into an SVG node by cloning all of its children.\n */\n _toSvgElement(element) {\n const svg = this._svgElementFromString(trustedHTMLFromString(''));\n const attributes = element.attributes;\n // Copy over all the attributes from the `symbol` to the new SVG, except the id.\n for (let i = 0; i < attributes.length; i++) {\n const {\n name,\n value\n } = attributes[i];\n if (name !== 'id') {\n svg.setAttribute(name, value);\n }\n }\n for (let i = 0; i < element.childNodes.length; i++) {\n if (element.childNodes[i].nodeType === this._document.ELEMENT_NODE) {\n svg.appendChild(element.childNodes[i].cloneNode(true));\n }\n }\n return svg;\n }\n /**\n * Sets the default attributes for an SVG element to be used as an icon.\n */\n _setSvgAttributes(svg, options) {\n svg.setAttribute('fit', '');\n svg.setAttribute('height', '100%');\n svg.setAttribute('width', '100%');\n svg.setAttribute('preserveAspectRatio', 'xMidYMid meet');\n svg.setAttribute('focusable', 'false'); // Disable IE11 default behavior to make SVGs focusable.\n if (options && options.viewBox) {\n svg.setAttribute('viewBox', options.viewBox);\n }\n return svg;\n }\n /**\n * Returns an Observable which produces the string contents of the given icon. Results may be\n * cached, so future calls with the same URL may not cause another HTTP request.\n */\n _fetchIcon(iconConfig) {\n const {\n url: safeUrl,\n options\n } = iconConfig;\n const withCredentials = options?.withCredentials ?? false;\n if (!this._httpClient) {\n throw getMatIconNoHttpProviderError();\n }\n // TODO: add an ngDevMode check\n if (safeUrl == null) {\n throw Error(`Cannot fetch icon from URL \"${safeUrl}\".`);\n }\n const url = this._sanitizer.sanitize(SecurityContext.RESOURCE_URL, safeUrl);\n // TODO: add an ngDevMode check\n if (!url) {\n throw getMatIconFailedToSanitizeUrlError(safeUrl);\n }\n // Store in-progress fetches to avoid sending a duplicate request for a URL when there is\n // already a request in progress for that URL. It's necessary to call share() on the\n // Observable returned by http.get() so that multiple subscribers don't cause multiple XHRs.\n const inProgressFetch = this._inProgressUrlFetches.get(url);\n if (inProgressFetch) {\n return inProgressFetch;\n }\n const req = this._httpClient.get(url, {\n responseType: 'text',\n withCredentials\n }).pipe(map(svg => {\n // Security: This SVG is fetched from a SafeResourceUrl, and is thus\n // trusted HTML.\n return trustedHTMLFromString(svg);\n }), finalize(() => this._inProgressUrlFetches.delete(url)), share());\n this._inProgressUrlFetches.set(url, req);\n return req;\n }\n /**\n * Registers an icon config by name in the specified namespace.\n * @param namespace Namespace in which to register the icon config.\n * @param iconName Name under which to register the config.\n * @param config Config to be registered.\n */\n _addSvgIconConfig(namespace, iconName, config) {\n this._svgIconConfigs.set(iconKey(namespace, iconName), config);\n return this;\n }\n /**\n * Registers an icon set config in the specified namespace.\n * @param namespace Namespace in which to register the icon config.\n * @param config Config to be registered.\n */\n _addSvgIconSetConfig(namespace, config) {\n const configNamespace = this._iconSetConfigs.get(namespace);\n if (configNamespace) {\n configNamespace.push(config);\n } else {\n this._iconSetConfigs.set(namespace, [config]);\n }\n return this;\n }\n /** Parses a config's text into an SVG element. */\n _svgElementFromConfig(config) {\n if (!config.svgElement) {\n const svg = this._svgElementFromString(config.svgText);\n this._setSvgAttributes(svg, config.options);\n config.svgElement = svg;\n }\n return config.svgElement;\n }\n /** Tries to create an icon config through the registered resolver functions. */\n _getIconConfigFromResolvers(namespace, name) {\n for (let i = 0; i < this._resolvers.length; i++) {\n const result = this._resolvers[i](name, namespace);\n if (result) {\n return isSafeUrlWithOptions(result) ? new SvgIconConfig(result.url, null, result.options) : new SvgIconConfig(result, null);\n }\n }\n return undefined;\n }\n static {\n this.ɵfac = function MatIconRegistry_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatIconRegistry)(i0.ɵɵinject(i1.HttpClient, 8), i0.ɵɵinject(i2.DomSanitizer), i0.ɵɵinject(DOCUMENT, 8), i0.ɵɵinject(i0.ErrorHandler));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: MatIconRegistry,\n factory: MatIconRegistry.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return MatIconRegistry;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/** @docs-private */\nfunction ICON_REGISTRY_PROVIDER_FACTORY(parentRegistry, httpClient, sanitizer, errorHandler, document) {\n return parentRegistry || new MatIconRegistry(httpClient, sanitizer, document, errorHandler);\n}\n/** @docs-private */\nconst ICON_REGISTRY_PROVIDER = {\n // If there is already an MatIconRegistry available, use that. Otherwise, provide a new one.\n provide: MatIconRegistry,\n deps: [[/*#__PURE__*/new Optional(), /*#__PURE__*/new SkipSelf(), MatIconRegistry], [/*#__PURE__*/new Optional(), HttpClient], DomSanitizer, ErrorHandler, [/*#__PURE__*/new Optional(), DOCUMENT]],\n useFactory: ICON_REGISTRY_PROVIDER_FACTORY\n};\n/** Clones an SVGElement while preserving type information. */\nfunction cloneSvg(svg) {\n return svg.cloneNode(true);\n}\n/** Returns the cache key to use for an icon namespace and name. */\nfunction iconKey(namespace, name) {\n return namespace + ':' + name;\n}\nfunction isSafeUrlWithOptions(value) {\n return !!(value.url && value.options);\n}\n\n/** Injection token to be used to override the default options for `mat-icon`. */\nconst MAT_ICON_DEFAULT_OPTIONS = /*#__PURE__*/new InjectionToken('MAT_ICON_DEFAULT_OPTIONS');\n/**\n * Injection token used to provide the current location to `MatIcon`.\n * Used to handle server-side rendering and to stub out during unit tests.\n * @docs-private\n */\nconst MAT_ICON_LOCATION = /*#__PURE__*/new InjectionToken('mat-icon-location', {\n providedIn: 'root',\n factory: MAT_ICON_LOCATION_FACTORY\n});\n/** @docs-private */\nfunction MAT_ICON_LOCATION_FACTORY() {\n const _document = inject(DOCUMENT);\n const _location = _document ? _document.location : null;\n return {\n // Note that this needs to be a function, rather than a property, because Angular\n // will only resolve it once, but we want the current path on each call.\n getPathname: () => _location ? _location.pathname + _location.search : ''\n };\n}\n/** SVG attributes that accept a FuncIRI (e.g. `url()`). */\nconst funcIriAttributes = ['clip-path', 'color-profile', 'src', 'cursor', 'fill', 'filter', 'marker', 'marker-start', 'marker-mid', 'marker-end', 'mask', 'stroke'];\n/** Selector that can be used to find all elements that are using a `FuncIRI`. */\nconst funcIriAttributeSelector = /*#__PURE__*/ /*#__PURE__*/funcIriAttributes.map(attr => `[${attr}]`).join(', ');\n/** Regex that can be used to extract the id out of a FuncIRI. */\nconst funcIriPattern = /^url\\(['\"]?#(.*?)['\"]?\\)$/;\n/**\n * Component to display an icon. It can be used in the following ways:\n *\n * - Specify the svgIcon input to load an SVG icon from a URL previously registered with the\n * addSvgIcon, addSvgIconInNamespace, addSvgIconSet, or addSvgIconSetInNamespace methods of\n * MatIconRegistry. If the svgIcon value contains a colon it is assumed to be in the format\n * \"[namespace]:[name]\", if not the value will be the name of an icon in the default namespace.\n * Examples:\n * `\n * `\n *\n * - Use a font ligature as an icon by putting the ligature text in the `fontIcon` attribute or the\n * content of the `` component. If you register a custom font class, don't forget to also\n * include the special class `mat-ligature-font`. It is recommended to use the attribute alternative\n * to prevent the ligature text to be selectable and to appear in search engine results.\n * By default, the Material icons font is used as described at\n * http://google.github.io/material-design-icons/#icon-font-for-the-web. You can specify an\n * alternate font by setting the fontSet input to either the CSS class to apply to use the\n * desired font, or to an alias previously registered with MatIconRegistry.registerFontClassAlias.\n * Examples:\n * `\n * home\n * \n * sun`\n *\n * - Specify a font glyph to be included via CSS rules by setting the fontSet input to specify the\n * font, and the fontIcon input to specify the icon. Typically the fontIcon will specify a\n * CSS class which causes the glyph to be displayed via a :before selector, as in\n * https://fontawesome-v4.github.io/examples/\n * Example:\n * ``\n */\nlet MatIcon = /*#__PURE__*/(() => {\n class MatIcon {\n /**\n * Theme color of the icon. This API is supported in M2 themes only, it\n * has no effect in M3 themes.\n *\n * For information on applying color variants in M3, see\n * https://material.angular.io/guide/theming#using-component-color-variants.\n */\n get color() {\n return this._color || this._defaultColor;\n }\n set color(value) {\n this._color = value;\n }\n /** Name of the icon in the SVG icon set. */\n get svgIcon() {\n return this._svgIcon;\n }\n set svgIcon(value) {\n if (value !== this._svgIcon) {\n if (value) {\n this._updateSvgIcon(value);\n } else if (this._svgIcon) {\n this._clearSvgElement();\n }\n this._svgIcon = value;\n }\n }\n /** Font set that the icon is a part of. */\n get fontSet() {\n return this._fontSet;\n }\n set fontSet(value) {\n const newValue = this._cleanupFontValue(value);\n if (newValue !== this._fontSet) {\n this._fontSet = newValue;\n this._updateFontIconClasses();\n }\n }\n /** Name of an icon within a font set. */\n get fontIcon() {\n return this._fontIcon;\n }\n set fontIcon(value) {\n const newValue = this._cleanupFontValue(value);\n if (newValue !== this._fontIcon) {\n this._fontIcon = newValue;\n this._updateFontIconClasses();\n }\n }\n constructor(_elementRef, _iconRegistry, ariaHidden, _location, _errorHandler, defaults) {\n this._elementRef = _elementRef;\n this._iconRegistry = _iconRegistry;\n this._location = _location;\n this._errorHandler = _errorHandler;\n /**\n * Whether the icon should be inlined, automatically sizing the icon to match the font size of\n * the element the icon is contained in.\n */\n this.inline = false;\n this._previousFontSetClass = [];\n /** Subscription to the current in-progress SVG icon request. */\n this._currentIconFetch = Subscription.EMPTY;\n if (defaults) {\n if (defaults.color) {\n this.color = this._defaultColor = defaults.color;\n }\n if (defaults.fontSet) {\n this.fontSet = defaults.fontSet;\n }\n }\n // If the user has not explicitly set aria-hidden, mark the icon as hidden, as this is\n // the right thing to do for the majority of icon use-cases.\n if (!ariaHidden) {\n _elementRef.nativeElement.setAttribute('aria-hidden', 'true');\n }\n }\n /**\n * Splits an svgIcon binding value into its icon set and icon name components.\n * Returns a 2-element array of [(icon set), (icon name)].\n * The separator for the two fields is ':'. If there is no separator, an empty\n * string is returned for the icon set and the entire value is returned for\n * the icon name. If the argument is falsy, returns an array of two empty strings.\n * Throws an error if the name contains two or more ':' separators.\n * Examples:\n * `'social:cake' -> ['social', 'cake']\n * 'penguin' -> ['', 'penguin']\n * null -> ['', '']\n * 'a:b:c' -> (throws Error)`\n */\n _splitIconName(iconName) {\n if (!iconName) {\n return ['', ''];\n }\n const parts = iconName.split(':');\n switch (parts.length) {\n case 1:\n return ['', parts[0]];\n // Use default namespace.\n case 2:\n return parts;\n default:\n throw Error(`Invalid icon name: \"${iconName}\"`);\n // TODO: add an ngDevMode check\n }\n }\n ngOnInit() {\n // Update font classes because ngOnChanges won't be called if none of the inputs are present,\n // e.g. arrow In this case we need to add a CSS class for the default font.\n this._updateFontIconClasses();\n }\n ngAfterViewChecked() {\n const cachedElements = this._elementsWithExternalReferences;\n if (cachedElements && cachedElements.size) {\n const newPath = this._location.getPathname();\n // We need to check whether the URL has changed on each change detection since\n // the browser doesn't have an API that will let us react on link clicks and\n // we can't depend on the Angular router. The references need to be updated,\n // because while most browsers don't care whether the URL is correct after\n // the first render, Safari will break if the user navigates to a different\n // page and the SVG isn't re-rendered.\n if (newPath !== this._previousPath) {\n this._previousPath = newPath;\n this._prependPathToReferences(newPath);\n }\n }\n }\n ngOnDestroy() {\n this._currentIconFetch.unsubscribe();\n if (this._elementsWithExternalReferences) {\n this._elementsWithExternalReferences.clear();\n }\n }\n _usingFontIcon() {\n return !this.svgIcon;\n }\n _setSvgElement(svg) {\n this._clearSvgElement();\n // Note: we do this fix here, rather than the icon registry, because the\n // references have to point to the URL at the time that the icon was created.\n const path = this._location.getPathname();\n this._previousPath = path;\n this._cacheChildrenWithExternalReferences(svg);\n this._prependPathToReferences(path);\n this._elementRef.nativeElement.appendChild(svg);\n }\n _clearSvgElement() {\n const layoutElement = this._elementRef.nativeElement;\n let childCount = layoutElement.childNodes.length;\n if (this._elementsWithExternalReferences) {\n this._elementsWithExternalReferences.clear();\n }\n // Remove existing non-element child nodes and SVGs, and add the new SVG element. Note that\n // we can't use innerHTML, because IE will throw if the element has a data binding.\n while (childCount--) {\n const child = layoutElement.childNodes[childCount];\n // 1 corresponds to Node.ELEMENT_NODE. We remove all non-element nodes in order to get rid\n // of any loose text nodes, as well as any SVG elements in order to remove any old icons.\n if (child.nodeType !== 1 || child.nodeName.toLowerCase() === 'svg') {\n child.remove();\n }\n }\n }\n _updateFontIconClasses() {\n if (!this._usingFontIcon()) {\n return;\n }\n const elem = this._elementRef.nativeElement;\n const fontSetClasses = (this.fontSet ? this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/) : this._iconRegistry.getDefaultFontSetClass()).filter(className => className.length > 0);\n this._previousFontSetClass.forEach(className => elem.classList.remove(className));\n fontSetClasses.forEach(className => elem.classList.add(className));\n this._previousFontSetClass = fontSetClasses;\n if (this.fontIcon !== this._previousFontIconClass && !fontSetClasses.includes('mat-ligature-font')) {\n if (this._previousFontIconClass) {\n elem.classList.remove(this._previousFontIconClass);\n }\n if (this.fontIcon) {\n elem.classList.add(this.fontIcon);\n }\n this._previousFontIconClass = this.fontIcon;\n }\n }\n /**\n * Cleans up a value to be used as a fontIcon or fontSet.\n * Since the value ends up being assigned as a CSS class, we\n * have to trim the value and omit space-separated values.\n */\n _cleanupFontValue(value) {\n return typeof value === 'string' ? value.trim().split(' ')[0] : value;\n }\n /**\n * Prepends the current path to all elements that have an attribute pointing to a `FuncIRI`\n * reference. This is required because WebKit browsers require references to be prefixed with\n * the current path, if the page has a `base` tag.\n */\n _prependPathToReferences(path) {\n const elements = this._elementsWithExternalReferences;\n if (elements) {\n elements.forEach((attrs, element) => {\n attrs.forEach(attr => {\n element.setAttribute(attr.name, `url('${path}#${attr.value}')`);\n });\n });\n }\n }\n /**\n * Caches the children of an SVG element that have `url()`\n * references that we need to prefix with the current path.\n */\n _cacheChildrenWithExternalReferences(element) {\n const elementsWithFuncIri = element.querySelectorAll(funcIriAttributeSelector);\n const elements = this._elementsWithExternalReferences = this._elementsWithExternalReferences || new Map();\n for (let i = 0; i < elementsWithFuncIri.length; i++) {\n funcIriAttributes.forEach(attr => {\n const elementWithReference = elementsWithFuncIri[i];\n const value = elementWithReference.getAttribute(attr);\n const match = value ? value.match(funcIriPattern) : null;\n if (match) {\n let attributes = elements.get(elementWithReference);\n if (!attributes) {\n attributes = [];\n elements.set(elementWithReference, attributes);\n }\n attributes.push({\n name: attr,\n value: match[1]\n });\n }\n });\n }\n }\n /** Sets a new SVG icon with a particular name. */\n _updateSvgIcon(rawName) {\n this._svgNamespace = null;\n this._svgName = null;\n this._currentIconFetch.unsubscribe();\n if (rawName) {\n const [namespace, iconName] = this._splitIconName(rawName);\n if (namespace) {\n this._svgNamespace = namespace;\n }\n if (iconName) {\n this._svgName = iconName;\n }\n this._currentIconFetch = this._iconRegistry.getNamedSvgIcon(iconName, namespace).pipe(take(1)).subscribe(svg => this._setSvgElement(svg), err => {\n const errorMessage = `Error retrieving icon ${namespace}:${iconName}! ${err.message}`;\n this._errorHandler.handleError(new Error(errorMessage));\n });\n }\n }\n static {\n this.ɵfac = function MatIcon_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatIcon)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(MatIconRegistry), i0.ɵɵinjectAttribute('aria-hidden'), i0.ɵɵdirectiveInject(MAT_ICON_LOCATION), i0.ɵɵdirectiveInject(i0.ErrorHandler), i0.ɵɵdirectiveInject(MAT_ICON_DEFAULT_OPTIONS, 8));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MatIcon,\n selectors: [[\"mat-icon\"]],\n hostAttrs: [\"role\", \"img\", 1, \"mat-icon\", \"notranslate\"],\n hostVars: 10,\n hostBindings: function MatIcon_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵattribute(\"data-mat-icon-type\", ctx._usingFontIcon() ? \"font\" : \"svg\")(\"data-mat-icon-name\", ctx._svgName || ctx.fontIcon)(\"data-mat-icon-namespace\", ctx._svgNamespace || ctx.fontSet)(\"fontIcon\", ctx._usingFontIcon() ? ctx.fontIcon : null);\n i0.ɵɵclassMap(ctx.color ? \"mat-\" + ctx.color : \"\");\n i0.ɵɵclassProp(\"mat-icon-inline\", ctx.inline)(\"mat-icon-no-color\", ctx.color !== \"primary\" && ctx.color !== \"accent\" && ctx.color !== \"warn\");\n }\n },\n inputs: {\n color: \"color\",\n inline: [2, \"inline\", \"inline\", booleanAttribute],\n svgIcon: \"svgIcon\",\n fontSet: \"fontSet\",\n fontIcon: \"fontIcon\"\n },\n exportAs: [\"matIcon\"],\n standalone: true,\n features: [i0.ɵɵInputTransformsFeature, i0.ɵɵStandaloneFeature],\n ngContentSelectors: _c0,\n decls: 1,\n vars: 0,\n template: function MatIcon_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef();\n i0.ɵɵprojection(0);\n }\n },\n styles: [\"mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return MatIcon;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MatIconModule = /*#__PURE__*/(() => {\n class MatIconModule {\n static {\n this.ɵfac = function MatIconModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MatIconModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: MatIconModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [MatCommonModule, MatCommonModule]\n });\n }\n }\n return MatIconModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { ICON_REGISTRY_PROVIDER, ICON_REGISTRY_PROVIDER_FACTORY, MAT_ICON_DEFAULT_OPTIONS, MAT_ICON_LOCATION, MAT_ICON_LOCATION_FACTORY, MatIcon, MatIconModule, MatIconRegistry, getMatIconFailedToSanitizeLiteralError, getMatIconFailedToSanitizeUrlError, getMatIconNameNotFoundError, getMatIconNoHttpProviderError };\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n/** Error thrown when an HTTP request fails. */\nexport class HttpError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.HttpError}.\r\n *\r\n * @param {string} errorMessage A descriptive error message.\r\n * @param {number} statusCode The HTTP status code represented by this error.\r\n */\n constructor(errorMessage, statusCode) {\n const trueProto = new.target.prototype;\n super(`${errorMessage}: Status code '${statusCode}'`);\n this.statusCode = statusCode;\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when a timeout elapses. */\nexport class TimeoutError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.TimeoutError}.\r\n *\r\n * @param {string} errorMessage A descriptive error message.\r\n */\n constructor(errorMessage = \"A timeout occurred.\") {\n const trueProto = new.target.prototype;\n super(errorMessage);\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when an action is aborted. */\nexport class AbortError extends Error {\n /** Constructs a new instance of {@link AbortError}.\r\n *\r\n * @param {string} errorMessage A descriptive error message.\r\n */\n constructor(errorMessage = \"An abort occurred.\") {\n const trueProto = new.target.prototype;\n super(errorMessage);\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when the selected transport is unsupported by the browser. */\n/** @private */\nexport class UnsupportedTransportError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.UnsupportedTransportError}.\r\n *\r\n * @param {string} message A descriptive error message.\r\n * @param {HttpTransportType} transport The {@link @microsoft/signalr.HttpTransportType} this error occurred on.\r\n */\n constructor(message, transport) {\n const trueProto = new.target.prototype;\n super(message);\n this.transport = transport;\n this.errorType = 'UnsupportedTransportError';\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when the selected transport is disabled by the browser. */\n/** @private */\nexport class DisabledTransportError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.DisabledTransportError}.\r\n *\r\n * @param {string} message A descriptive error message.\r\n * @param {HttpTransportType} transport The {@link @microsoft/signalr.HttpTransportType} this error occurred on.\r\n */\n constructor(message, transport) {\n const trueProto = new.target.prototype;\n super(message);\n this.transport = transport;\n this.errorType = 'DisabledTransportError';\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when the selected transport cannot be started. */\n/** @private */\nexport class FailedToStartTransportError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.FailedToStartTransportError}.\r\n *\r\n * @param {string} message A descriptive error message.\r\n * @param {HttpTransportType} transport The {@link @microsoft/signalr.HttpTransportType} this error occurred on.\r\n */\n constructor(message, transport) {\n const trueProto = new.target.prototype;\n super(message);\n this.transport = transport;\n this.errorType = 'FailedToStartTransportError';\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when the negotiation with the server failed to complete. */\n/** @private */\nexport class FailedToNegotiateWithServerError extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.FailedToNegotiateWithServerError}.\r\n *\r\n * @param {string} message A descriptive error message.\r\n */\n constructor(message) {\n const trueProto = new.target.prototype;\n super(message);\n this.errorType = 'FailedToNegotiateWithServerError';\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n/** Error thrown when multiple errors have occurred. */\n/** @private */\nexport class AggregateErrors extends Error {\n /** Constructs a new instance of {@link @microsoft/signalr.AggregateErrors}.\r\n *\r\n * @param {string} message A descriptive error message.\r\n * @param {Error[]} innerErrors The collection of errors this error is aggregating.\r\n */\n constructor(message, innerErrors) {\n const trueProto = new.target.prototype;\n super(message);\n this.innerErrors = innerErrors;\n // Workaround issue in Typescript compiler\n // https://github.com/Microsoft/TypeScript/issues/13965#issuecomment-278570200\n this.__proto__ = trueProto;\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n/** Represents an HTTP response. */\nexport class HttpResponse {\n constructor(statusCode, statusText, content) {\n this.statusCode = statusCode;\n this.statusText = statusText;\n this.content = content;\n }\n}\n/** Abstraction over an HTTP client.\r\n *\r\n * This class provides an abstraction over an HTTP client so that a different implementation can be provided on different platforms.\r\n */\nexport class HttpClient {\n get(url, options) {\n return this.send({\n ...options,\n method: \"GET\",\n url\n });\n }\n post(url, options) {\n return this.send({\n ...options,\n method: \"POST\",\n url\n });\n }\n delete(url, options) {\n return this.send({\n ...options,\n method: \"DELETE\",\n url\n });\n }\n /** Gets all cookies that apply to the specified URL.\r\n *\r\n * @param url The URL that the cookies are valid for.\r\n * @returns {string} A string containing all the key-value cookie pairs for the specified URL.\r\n */\n // @ts-ignore\n getCookieString(url) {\n return \"\";\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// These values are designed to match the ASP.NET Log Levels since that's the pattern we're emulating here.\n/** Indicates the severity of a log message.\r\n *\r\n * Log Levels are ordered in increasing severity. So `Debug` is more severe than `Trace`, etc.\r\n */\nexport var LogLevel = /*#__PURE__*/function (LogLevel) {\n /** Log level for very low severity diagnostic messages. */\n LogLevel[LogLevel[\"Trace\"] = 0] = \"Trace\";\n /** Log level for low severity diagnostic messages. */\n LogLevel[LogLevel[\"Debug\"] = 1] = \"Debug\";\n /** Log level for informational diagnostic messages. */\n LogLevel[LogLevel[\"Information\"] = 2] = \"Information\";\n /** Log level for diagnostic messages that indicate a non-fatal problem. */\n LogLevel[LogLevel[\"Warning\"] = 3] = \"Warning\";\n /** Log level for diagnostic messages that indicate a failure in the current operation. */\n LogLevel[LogLevel[\"Error\"] = 4] = \"Error\";\n /** Log level for diagnostic messages that indicate a failure that will terminate the entire application. */\n LogLevel[LogLevel[\"Critical\"] = 5] = \"Critical\";\n /** The highest possible log level. Used when configuring logging to indicate that no log messages should be emitted. */\n LogLevel[LogLevel[\"None\"] = 6] = \"None\";\n return LogLevel;\n}(LogLevel || {});\n\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n/** A logger that does nothing when log messages are sent to it. */\nexport class NullLogger {\n constructor() {}\n /** @inheritDoc */\n // eslint-disable-next-line\n log(_logLevel, _message) {}\n}\n/** The singleton instance of the {@link @microsoft/signalr.NullLogger}. */\nNullLogger.instance = new NullLogger();\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { LogLevel } from \"./ILogger\";\nimport { NullLogger } from \"./Loggers\";\n// Version token that will be replaced by the prepack command\n/** The version of the SignalR client. */\nexport const VERSION = \"7.0.14\";\n/** @private */\nexport class Arg {\n static isRequired(val, name) {\n if (val === null || val === undefined) {\n throw new Error(`The '${name}' argument is required.`);\n }\n }\n static isNotEmpty(val, name) {\n if (!val || val.match(/^\\s*$/)) {\n throw new Error(`The '${name}' argument should not be empty.`);\n }\n }\n static isIn(val, values, name) {\n // TypeScript enums have keys for **both** the name and the value of each enum member on the type itself.\n if (!(val in values)) {\n throw new Error(`Unknown ${name} value: ${val}.`);\n }\n }\n}\n/** @private */\nexport class Platform {\n // react-native has a window but no document so we should check both\n static get isBrowser() {\n return typeof window === \"object\" && typeof window.document === \"object\";\n }\n // WebWorkers don't have a window object so the isBrowser check would fail\n static get isWebWorker() {\n return typeof self === \"object\" && \"importScripts\" in self;\n }\n // react-native has a window but no document\n static get isReactNative() {\n return typeof window === \"object\" && typeof window.document === \"undefined\";\n }\n // Node apps shouldn't have a window object, but WebWorkers don't either\n // so we need to check for both WebWorker and window\n static get isNode() {\n return !this.isBrowser && !this.isWebWorker && !this.isReactNative;\n }\n}\n/** @private */\nexport function getDataDetail(data, includeContent) {\n let detail = \"\";\n if (isArrayBuffer(data)) {\n detail = `Binary data of length ${data.byteLength}`;\n if (includeContent) {\n detail += `. Content: '${formatArrayBuffer(data)}'`;\n }\n } else if (typeof data === \"string\") {\n detail = `String data of length ${data.length}`;\n if (includeContent) {\n detail += `. Content: '${data}'`;\n }\n }\n return detail;\n}\n/** @private */\nexport function formatArrayBuffer(data) {\n const view = new Uint8Array(data);\n // Uint8Array.map only supports returning another Uint8Array?\n let str = \"\";\n view.forEach(num => {\n const pad = num < 16 ? \"0\" : \"\";\n str += `0x${pad}${num.toString(16)} `;\n });\n // Trim of trailing space.\n return str.substr(0, str.length - 1);\n}\n// Also in signalr-protocol-msgpack/Utils.ts\n/** @private */\nexport function isArrayBuffer(val) {\n return val && typeof ArrayBuffer !== \"undefined\" && (val instanceof ArrayBuffer ||\n // Sometimes we get an ArrayBuffer that doesn't satisfy instanceof\n val.constructor && val.constructor.name === \"ArrayBuffer\");\n}\n/** @private */\nexport async function sendMessage(logger, transportName, httpClient, url, content, options) {\n const headers = {};\n const [name, value] = getUserAgentHeader();\n headers[name] = value;\n logger.log(LogLevel.Trace, `(${transportName} transport) sending data. ${getDataDetail(content, options.logMessageContent)}.`);\n const responseType = isArrayBuffer(content) ? \"arraybuffer\" : \"text\";\n const response = await httpClient.post(url, {\n content,\n headers: {\n ...headers,\n ...options.headers\n },\n responseType,\n timeout: options.timeout,\n withCredentials: options.withCredentials\n });\n logger.log(LogLevel.Trace, `(${transportName} transport) request complete. Response status: ${response.statusCode}.`);\n}\n/** @private */\nexport function createLogger(logger) {\n if (logger === undefined) {\n return new ConsoleLogger(LogLevel.Information);\n }\n if (logger === null) {\n return NullLogger.instance;\n }\n if (logger.log !== undefined) {\n return logger;\n }\n return new ConsoleLogger(logger);\n}\n/** @private */\nexport class SubjectSubscription {\n constructor(subject, observer) {\n this._subject = subject;\n this._observer = observer;\n }\n dispose() {\n const index = this._subject.observers.indexOf(this._observer);\n if (index > -1) {\n this._subject.observers.splice(index, 1);\n }\n if (this._subject.observers.length === 0 && this._subject.cancelCallback) {\n this._subject.cancelCallback().catch(_ => {});\n }\n }\n}\n/** @private */\nexport class ConsoleLogger {\n constructor(minimumLogLevel) {\n this._minLevel = minimumLogLevel;\n this.out = console;\n }\n log(logLevel, message) {\n if (logLevel >= this._minLevel) {\n const msg = `[${new Date().toISOString()}] ${LogLevel[logLevel]}: ${message}`;\n switch (logLevel) {\n case LogLevel.Critical:\n case LogLevel.Error:\n this.out.error(msg);\n break;\n case LogLevel.Warning:\n this.out.warn(msg);\n break;\n case LogLevel.Information:\n this.out.info(msg);\n break;\n default:\n // console.debug only goes to attached debuggers in Node, so we use console.log for Trace and Debug\n this.out.log(msg);\n break;\n }\n }\n }\n}\n/** @private */\nexport function getUserAgentHeader() {\n let userAgentHeaderName = \"X-SignalR-User-Agent\";\n if (Platform.isNode) {\n userAgentHeaderName = \"User-Agent\";\n }\n return [userAgentHeaderName, constructUserAgent(VERSION, getOsName(), getRuntime(), getRuntimeVersion())];\n}\n/** @private */\nexport function constructUserAgent(version, os, runtime, runtimeVersion) {\n // Microsoft SignalR/[Version] ([Detailed Version]; [Operating System]; [Runtime]; [Runtime Version])\n let userAgent = \"Microsoft SignalR/\";\n const majorAndMinor = version.split(\".\");\n userAgent += `${majorAndMinor[0]}.${majorAndMinor[1]}`;\n userAgent += ` (${version}; `;\n if (os && os !== \"\") {\n userAgent += `${os}; `;\n } else {\n userAgent += \"Unknown OS; \";\n }\n userAgent += `${runtime}`;\n if (runtimeVersion) {\n userAgent += `; ${runtimeVersion}`;\n } else {\n userAgent += \"; Unknown Runtime Version\";\n }\n userAgent += \")\";\n return userAgent;\n}\n// eslint-disable-next-line spaced-comment\n/*#__PURE__*/\nfunction getOsName() {\n if (Platform.isNode) {\n switch (process.platform) {\n case \"win32\":\n return \"Windows NT\";\n case \"darwin\":\n return \"macOS\";\n case \"linux\":\n return \"Linux\";\n default:\n return process.platform;\n }\n } else {\n return \"\";\n }\n}\n// eslint-disable-next-line spaced-comment\n/*#__PURE__*/\nfunction getRuntimeVersion() {\n if (Platform.isNode) {\n return process.versions.node;\n }\n return undefined;\n}\nfunction getRuntime() {\n if (Platform.isNode) {\n return \"NodeJS\";\n } else {\n return \"Browser\";\n }\n}\n/** @private */\nexport function getErrorString(e) {\n if (e.stack) {\n return e.stack;\n } else if (e.message) {\n return e.message;\n }\n return `${e}`;\n}\n/** @private */\nexport function getGlobalThis() {\n // globalThis is semi-new and not available in Node until v12\n if (typeof globalThis !== \"undefined\") {\n return globalThis;\n }\n if (typeof self !== \"undefined\") {\n return self;\n }\n if (typeof window !== \"undefined\") {\n return window;\n }\n if (typeof global !== \"undefined\") {\n return global;\n }\n throw new Error(\"could not find global\");\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { AbortError, HttpError, TimeoutError } from \"./Errors\";\nimport { HttpClient, HttpResponse } from \"./HttpClient\";\nimport { LogLevel } from \"./ILogger\";\nimport { Platform, getGlobalThis, isArrayBuffer } from \"./Utils\";\nexport class FetchHttpClient extends HttpClient {\n constructor(logger) {\n super();\n this._logger = logger;\n if (typeof fetch === \"undefined\") {\n // In order to ignore the dynamic require in webpack builds we need to do this magic\n // @ts-ignore: TS doesn't know about these names\n const requireFunc = typeof __webpack_require__ === \"function\" ? __non_webpack_require__ : require;\n // Cookies aren't automatically handled in Node so we need to add a CookieJar to preserve cookies across requests\n this._jar = new (requireFunc(\"tough-cookie\").CookieJar)();\n this._fetchType = requireFunc(\"node-fetch\");\n // node-fetch doesn't have a nice API for getting and setting cookies\n // fetch-cookie will wrap a fetch implementation with a default CookieJar or a provided one\n this._fetchType = requireFunc(\"fetch-cookie\")(this._fetchType, this._jar);\n } else {\n this._fetchType = fetch.bind(getGlobalThis());\n }\n if (typeof AbortController === \"undefined\") {\n // In order to ignore the dynamic require in webpack builds we need to do this magic\n // @ts-ignore: TS doesn't know about these names\n const requireFunc = typeof __webpack_require__ === \"function\" ? __non_webpack_require__ : require;\n // Node needs EventListener methods on AbortController which our custom polyfill doesn't provide\n this._abortControllerType = requireFunc(\"abort-controller\");\n } else {\n this._abortControllerType = AbortController;\n }\n }\n /** @inheritDoc */\n async send(request) {\n // Check that abort was not signaled before calling send\n if (request.abortSignal && request.abortSignal.aborted) {\n throw new AbortError();\n }\n if (!request.method) {\n throw new Error(\"No method defined.\");\n }\n if (!request.url) {\n throw new Error(\"No url defined.\");\n }\n const abortController = new this._abortControllerType();\n let error;\n // Hook our abortSignal into the abort controller\n if (request.abortSignal) {\n request.abortSignal.onabort = () => {\n abortController.abort();\n error = new AbortError();\n };\n }\n // If a timeout has been passed in, setup a timeout to call abort\n // Type needs to be any to fit window.setTimeout and NodeJS.setTimeout\n let timeoutId = null;\n if (request.timeout) {\n const msTimeout = request.timeout;\n timeoutId = setTimeout(() => {\n abortController.abort();\n this._logger.log(LogLevel.Warning, `Timeout from HTTP request.`);\n error = new TimeoutError();\n }, msTimeout);\n }\n if (request.content === \"\") {\n request.content = undefined;\n }\n if (request.content) {\n // Explicitly setting the Content-Type header for React Native on Android platform.\n request.headers = request.headers || {};\n if (isArrayBuffer(request.content)) {\n request.headers[\"Content-Type\"] = \"application/octet-stream\";\n } else {\n request.headers[\"Content-Type\"] = \"text/plain;charset=UTF-8\";\n }\n }\n let response;\n try {\n response = await this._fetchType(request.url, {\n body: request.content,\n cache: \"no-cache\",\n credentials: request.withCredentials === true ? \"include\" : \"same-origin\",\n headers: {\n \"X-Requested-With\": \"XMLHttpRequest\",\n ...request.headers\n },\n method: request.method,\n mode: \"cors\",\n redirect: \"follow\",\n signal: abortController.signal\n });\n } catch (e) {\n if (error) {\n throw error;\n }\n this._logger.log(LogLevel.Warning, `Error from HTTP request. ${e}.`);\n throw e;\n } finally {\n if (timeoutId) {\n clearTimeout(timeoutId);\n }\n if (request.abortSignal) {\n request.abortSignal.onabort = null;\n }\n }\n if (!response.ok) {\n const errorMessage = await deserializeContent(response, \"text\");\n throw new HttpError(errorMessage || response.statusText, response.status);\n }\n const content = deserializeContent(response, request.responseType);\n const payload = await content;\n return new HttpResponse(response.status, response.statusText, payload);\n }\n getCookieString(url) {\n let cookies = \"\";\n if (Platform.isNode && this._jar) {\n // @ts-ignore: unused variable\n this._jar.getCookies(url, (e, c) => cookies = c.join(\"; \"));\n }\n return cookies;\n }\n}\nfunction deserializeContent(response, responseType) {\n let content;\n switch (responseType) {\n case \"arraybuffer\":\n content = response.arrayBuffer();\n break;\n case \"text\":\n content = response.text();\n break;\n case \"blob\":\n case \"document\":\n case \"json\":\n throw new Error(`${responseType} is not supported.`);\n default:\n content = response.text();\n break;\n }\n return content;\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { AbortError, HttpError, TimeoutError } from \"./Errors\";\nimport { HttpClient, HttpResponse } from \"./HttpClient\";\nimport { LogLevel } from \"./ILogger\";\nimport { isArrayBuffer } from \"./Utils\";\nexport class XhrHttpClient extends HttpClient {\n constructor(logger) {\n super();\n this._logger = logger;\n }\n /** @inheritDoc */\n send(request) {\n // Check that abort was not signaled before calling send\n if (request.abortSignal && request.abortSignal.aborted) {\n return Promise.reject(new AbortError());\n }\n if (!request.method) {\n return Promise.reject(new Error(\"No method defined.\"));\n }\n if (!request.url) {\n return Promise.reject(new Error(\"No url defined.\"));\n }\n return new Promise((resolve, reject) => {\n const xhr = new XMLHttpRequest();\n xhr.open(request.method, request.url, true);\n xhr.withCredentials = request.withCredentials === undefined ? true : request.withCredentials;\n xhr.setRequestHeader(\"X-Requested-With\", \"XMLHttpRequest\");\n if (request.content === \"\") {\n request.content = undefined;\n }\n if (request.content) {\n // Explicitly setting the Content-Type header for React Native on Android platform.\n if (isArrayBuffer(request.content)) {\n xhr.setRequestHeader(\"Content-Type\", \"application/octet-stream\");\n } else {\n xhr.setRequestHeader(\"Content-Type\", \"text/plain;charset=UTF-8\");\n }\n }\n const headers = request.headers;\n if (headers) {\n Object.keys(headers).forEach(header => {\n xhr.setRequestHeader(header, headers[header]);\n });\n }\n if (request.responseType) {\n xhr.responseType = request.responseType;\n }\n if (request.abortSignal) {\n request.abortSignal.onabort = () => {\n xhr.abort();\n reject(new AbortError());\n };\n }\n if (request.timeout) {\n xhr.timeout = request.timeout;\n }\n xhr.onload = () => {\n if (request.abortSignal) {\n request.abortSignal.onabort = null;\n }\n if (xhr.status >= 200 && xhr.status < 300) {\n resolve(new HttpResponse(xhr.status, xhr.statusText, xhr.response || xhr.responseText));\n } else {\n reject(new HttpError(xhr.response || xhr.responseText || xhr.statusText, xhr.status));\n }\n };\n xhr.onerror = () => {\n this._logger.log(LogLevel.Warning, `Error from HTTP request. ${xhr.status}: ${xhr.statusText}.`);\n reject(new HttpError(xhr.statusText, xhr.status));\n };\n xhr.ontimeout = () => {\n this._logger.log(LogLevel.Warning, `Timeout from HTTP request.`);\n reject(new TimeoutError());\n };\n xhr.send(request.content);\n });\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { AbortError } from \"./Errors\";\nimport { FetchHttpClient } from \"./FetchHttpClient\";\nimport { HttpClient } from \"./HttpClient\";\nimport { Platform } from \"./Utils\";\nimport { XhrHttpClient } from \"./XhrHttpClient\";\n/** Default implementation of {@link @microsoft/signalr.HttpClient}. */\nexport class DefaultHttpClient extends HttpClient {\n /** Creates a new instance of the {@link @microsoft/signalr.DefaultHttpClient}, using the provided {@link @microsoft/signalr.ILogger} to log messages. */\n constructor(logger) {\n super();\n if (typeof fetch !== \"undefined\" || Platform.isNode) {\n this._httpClient = new FetchHttpClient(logger);\n } else if (typeof XMLHttpRequest !== \"undefined\") {\n this._httpClient = new XhrHttpClient(logger);\n } else {\n throw new Error(\"No usable HttpClient found.\");\n }\n }\n /** @inheritDoc */\n send(request) {\n // Check that abort was not signaled before calling send\n if (request.abortSignal && request.abortSignal.aborted) {\n return Promise.reject(new AbortError());\n }\n if (!request.method) {\n return Promise.reject(new Error(\"No method defined.\"));\n }\n if (!request.url) {\n return Promise.reject(new Error(\"No url defined.\"));\n }\n return this._httpClient.send(request);\n }\n getCookieString(url) {\n return this._httpClient.getCookieString(url);\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// Not exported from index\n/** @private */\nexport class TextMessageFormat {\n static write(output) {\n return `${output}${TextMessageFormat.RecordSeparator}`;\n }\n static parse(input) {\n if (input[input.length - 1] !== TextMessageFormat.RecordSeparator) {\n throw new Error(\"Message is incomplete.\");\n }\n const messages = input.split(TextMessageFormat.RecordSeparator);\n messages.pop();\n return messages;\n }\n}\nTextMessageFormat.RecordSeparatorCode = 0x1e;\nTextMessageFormat.RecordSeparator = String.fromCharCode(TextMessageFormat.RecordSeparatorCode);\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { TextMessageFormat } from \"./TextMessageFormat\";\nimport { isArrayBuffer } from \"./Utils\";\n/** @private */\nexport class HandshakeProtocol {\n // Handshake request is always JSON\n writeHandshakeRequest(handshakeRequest) {\n return TextMessageFormat.write(JSON.stringify(handshakeRequest));\n }\n parseHandshakeResponse(data) {\n let messageData;\n let remainingData;\n if (isArrayBuffer(data)) {\n // Format is binary but still need to read JSON text from handshake response\n const binaryData = new Uint8Array(data);\n const separatorIndex = binaryData.indexOf(TextMessageFormat.RecordSeparatorCode);\n if (separatorIndex === -1) {\n throw new Error(\"Message is incomplete.\");\n }\n // content before separator is handshake response\n // optional content after is additional messages\n const responseLength = separatorIndex + 1;\n messageData = String.fromCharCode.apply(null, Array.prototype.slice.call(binaryData.slice(0, responseLength)));\n remainingData = binaryData.byteLength > responseLength ? binaryData.slice(responseLength).buffer : null;\n } else {\n const textData = data;\n const separatorIndex = textData.indexOf(TextMessageFormat.RecordSeparator);\n if (separatorIndex === -1) {\n throw new Error(\"Message is incomplete.\");\n }\n // content before separator is handshake response\n // optional content after is additional messages\n const responseLength = separatorIndex + 1;\n messageData = textData.substring(0, responseLength);\n remainingData = textData.length > responseLength ? textData.substring(responseLength) : null;\n }\n // At this point we should have just the single handshake message\n const messages = TextMessageFormat.parse(messageData);\n const response = JSON.parse(messages[0]);\n if (response.type) {\n throw new Error(\"Expected a handshake response from the server.\");\n }\n const responseMessage = response;\n // multiple messages could have arrived with handshake\n // return additional data to be parsed as usual, or null if all parsed\n return [remainingData, responseMessage];\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n/** Defines the type of a Hub Message. */\nexport var MessageType = /*#__PURE__*/function (MessageType) {\n /** Indicates the message is an Invocation message and implements the {@link @microsoft/signalr.InvocationMessage} interface. */\n MessageType[MessageType[\"Invocation\"] = 1] = \"Invocation\";\n /** Indicates the message is a StreamItem message and implements the {@link @microsoft/signalr.StreamItemMessage} interface. */\n MessageType[MessageType[\"StreamItem\"] = 2] = \"StreamItem\";\n /** Indicates the message is a Completion message and implements the {@link @microsoft/signalr.CompletionMessage} interface. */\n MessageType[MessageType[\"Completion\"] = 3] = \"Completion\";\n /** Indicates the message is a Stream Invocation message and implements the {@link @microsoft/signalr.StreamInvocationMessage} interface. */\n MessageType[MessageType[\"StreamInvocation\"] = 4] = \"StreamInvocation\";\n /** Indicates the message is a Cancel Invocation message and implements the {@link @microsoft/signalr.CancelInvocationMessage} interface. */\n MessageType[MessageType[\"CancelInvocation\"] = 5] = \"CancelInvocation\";\n /** Indicates the message is a Ping message and implements the {@link @microsoft/signalr.PingMessage} interface. */\n MessageType[MessageType[\"Ping\"] = 6] = \"Ping\";\n /** Indicates the message is a Close message and implements the {@link @microsoft/signalr.CloseMessage} interface. */\n MessageType[MessageType[\"Close\"] = 7] = \"Close\";\n return MessageType;\n}(MessageType || {});\n\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { SubjectSubscription } from \"./Utils\";\n/** Stream implementation to stream items to the server. */\nexport class Subject {\n constructor() {\n this.observers = [];\n }\n next(item) {\n for (const observer of this.observers) {\n observer.next(item);\n }\n }\n error(err) {\n for (const observer of this.observers) {\n if (observer.error) {\n observer.error(err);\n }\n }\n }\n complete() {\n for (const observer of this.observers) {\n if (observer.complete) {\n observer.complete();\n }\n }\n }\n subscribe(observer) {\n this.observers.push(observer);\n return new SubjectSubscription(this, observer);\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { HandshakeProtocol } from \"./HandshakeProtocol\";\nimport { AbortError } from \"./Errors\";\nimport { MessageType } from \"./IHubProtocol\";\nimport { LogLevel } from \"./ILogger\";\nimport { Subject } from \"./Subject\";\nimport { Arg, getErrorString, Platform } from \"./Utils\";\nconst DEFAULT_TIMEOUT_IN_MS = 30 * 1000;\nconst DEFAULT_PING_INTERVAL_IN_MS = 15 * 1000;\n/** Describes the current state of the {@link HubConnection} to the server. */\nexport var HubConnectionState = /*#__PURE__*/function (HubConnectionState) {\n /** The hub connection is disconnected. */\n HubConnectionState[\"Disconnected\"] = \"Disconnected\";\n /** The hub connection is connecting. */\n HubConnectionState[\"Connecting\"] = \"Connecting\";\n /** The hub connection is connected. */\n HubConnectionState[\"Connected\"] = \"Connected\";\n /** The hub connection is disconnecting. */\n HubConnectionState[\"Disconnecting\"] = \"Disconnecting\";\n /** The hub connection is reconnecting. */\n HubConnectionState[\"Reconnecting\"] = \"Reconnecting\";\n return HubConnectionState;\n}(HubConnectionState || {});\n/** Represents a connection to a SignalR Hub. */\nexport class HubConnection {\n constructor(connection, logger, protocol, reconnectPolicy) {\n this._nextKeepAlive = 0;\n this._freezeEventListener = () => {\n this._logger.log(LogLevel.Warning, \"The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://docs.microsoft.com/aspnet/core/signalr/javascript-client#bsleep\");\n };\n Arg.isRequired(connection, \"connection\");\n Arg.isRequired(logger, \"logger\");\n Arg.isRequired(protocol, \"protocol\");\n this.serverTimeoutInMilliseconds = DEFAULT_TIMEOUT_IN_MS;\n this.keepAliveIntervalInMilliseconds = DEFAULT_PING_INTERVAL_IN_MS;\n this._logger = logger;\n this._protocol = protocol;\n this.connection = connection;\n this._reconnectPolicy = reconnectPolicy;\n this._handshakeProtocol = new HandshakeProtocol();\n this.connection.onreceive = data => this._processIncomingData(data);\n this.connection.onclose = error => this._connectionClosed(error);\n this._callbacks = {};\n this._methods = {};\n this._closedCallbacks = [];\n this._reconnectingCallbacks = [];\n this._reconnectedCallbacks = [];\n this._invocationId = 0;\n this._receivedHandshakeResponse = false;\n this._connectionState = HubConnectionState.Disconnected;\n this._connectionStarted = false;\n this._cachedPingMessage = this._protocol.writeMessage({\n type: MessageType.Ping\n });\n }\n /** @internal */\n // Using a public static factory method means we can have a private constructor and an _internal_\n // create method that can be used by HubConnectionBuilder. An \"internal\" constructor would just\n // be stripped away and the '.d.ts' file would have no constructor, which is interpreted as a\n // public parameter-less constructor.\n static create(connection, logger, protocol, reconnectPolicy) {\n return new HubConnection(connection, logger, protocol, reconnectPolicy);\n }\n /** Indicates the state of the {@link HubConnection} to the server. */\n get state() {\n return this._connectionState;\n }\n /** Represents the connection id of the {@link HubConnection} on the server. The connection id will be null when the connection is either\r\n * in the disconnected state or if the negotiation step was skipped.\r\n */\n get connectionId() {\n return this.connection ? this.connection.connectionId || null : null;\n }\n /** Indicates the url of the {@link HubConnection} to the server. */\n get baseUrl() {\n return this.connection.baseUrl || \"\";\n }\n /**\r\n * Sets a new url for the HubConnection. Note that the url can only be changed when the connection is in either the Disconnected or\r\n * Reconnecting states.\r\n * @param {string} url The url to connect to.\r\n */\n set baseUrl(url) {\n if (this._connectionState !== HubConnectionState.Disconnected && this._connectionState !== HubConnectionState.Reconnecting) {\n throw new Error(\"The HubConnection must be in the Disconnected or Reconnecting state to change the url.\");\n }\n if (!url) {\n throw new Error(\"The HubConnection url must be a valid url.\");\n }\n this.connection.baseUrl = url;\n }\n /** Starts the connection.\r\n *\r\n * @returns {Promise} A Promise that resolves when the connection has been successfully established, or rejects with an error.\r\n */\n start() {\n this._startPromise = this._startWithStateTransitions();\n return this._startPromise;\n }\n async _startWithStateTransitions() {\n if (this._connectionState !== HubConnectionState.Disconnected) {\n return Promise.reject(new Error(\"Cannot start a HubConnection that is not in the 'Disconnected' state.\"));\n }\n this._connectionState = HubConnectionState.Connecting;\n this._logger.log(LogLevel.Debug, \"Starting HubConnection.\");\n try {\n await this._startInternal();\n if (Platform.isBrowser) {\n // Log when the browser freezes the tab so users know why their connection unexpectedly stopped working\n window.document.addEventListener(\"freeze\", this._freezeEventListener);\n }\n this._connectionState = HubConnectionState.Connected;\n this._connectionStarted = true;\n this._logger.log(LogLevel.Debug, \"HubConnection connected successfully.\");\n } catch (e) {\n this._connectionState = HubConnectionState.Disconnected;\n this._logger.log(LogLevel.Debug, `HubConnection failed to start successfully because of error '${e}'.`);\n return Promise.reject(e);\n }\n }\n async _startInternal() {\n this._stopDuringStartError = undefined;\n this._receivedHandshakeResponse = false;\n // Set up the promise before any connection is (re)started otherwise it could race with received messages\n const handshakePromise = new Promise((resolve, reject) => {\n this._handshakeResolver = resolve;\n this._handshakeRejecter = reject;\n });\n await this.connection.start(this._protocol.transferFormat);\n try {\n const handshakeRequest = {\n protocol: this._protocol.name,\n version: this._protocol.version\n };\n this._logger.log(LogLevel.Debug, \"Sending handshake request.\");\n await this._sendMessage(this._handshakeProtocol.writeHandshakeRequest(handshakeRequest));\n this._logger.log(LogLevel.Information, `Using HubProtocol '${this._protocol.name}'.`);\n // defensively cleanup timeout in case we receive a message from the server before we finish start\n this._cleanupTimeout();\n this._resetTimeoutPeriod();\n this._resetKeepAliveInterval();\n await handshakePromise;\n // It's important to check the stopDuringStartError instead of just relying on the handshakePromise\n // being rejected on close, because this continuation can run after both the handshake completed successfully\n // and the connection was closed.\n if (this._stopDuringStartError) {\n // It's important to throw instead of returning a rejected promise, because we don't want to allow any state\n // transitions to occur between now and the calling code observing the exceptions. Returning a rejected promise\n // will cause the calling continuation to get scheduled to run later.\n // eslint-disable-next-line @typescript-eslint/no-throw-literal\n throw this._stopDuringStartError;\n }\n if (!this.connection.features.inherentKeepAlive) {\n await this._sendMessage(this._cachedPingMessage);\n }\n } catch (e) {\n this._logger.log(LogLevel.Debug, `Hub handshake failed with error '${e}' during start(). Stopping HubConnection.`);\n this._cleanupTimeout();\n this._cleanupPingTimer();\n // HttpConnection.stop() should not complete until after the onclose callback is invoked.\n // This will transition the HubConnection to the disconnected state before HttpConnection.stop() completes.\n await this.connection.stop(e);\n throw e;\n }\n }\n /** Stops the connection.\r\n *\r\n * @returns {Promise} A Promise that resolves when the connection has been successfully terminated, or rejects with an error.\r\n */\n async stop() {\n // Capture the start promise before the connection might be restarted in an onclose callback.\n const startPromise = this._startPromise;\n this._stopPromise = this._stopInternal();\n await this._stopPromise;\n try {\n // Awaiting undefined continues immediately\n await startPromise;\n } catch (e) {\n // This exception is returned to the user as a rejected Promise from the start method.\n }\n }\n _stopInternal(error) {\n if (this._connectionState === HubConnectionState.Disconnected) {\n this._logger.log(LogLevel.Debug, `Call to HubConnection.stop(${error}) ignored because it is already in the disconnected state.`);\n return Promise.resolve();\n }\n if (this._connectionState === HubConnectionState.Disconnecting) {\n this._logger.log(LogLevel.Debug, `Call to HttpConnection.stop(${error}) ignored because the connection is already in the disconnecting state.`);\n return this._stopPromise;\n }\n this._connectionState = HubConnectionState.Disconnecting;\n this._logger.log(LogLevel.Debug, \"Stopping HubConnection.\");\n if (this._reconnectDelayHandle) {\n // We're in a reconnect delay which means the underlying connection is currently already stopped.\n // Just clear the handle to stop the reconnect loop (which no one is waiting on thankfully) and\n // fire the onclose callbacks.\n this._logger.log(LogLevel.Debug, \"Connection stopped during reconnect delay. Done reconnecting.\");\n clearTimeout(this._reconnectDelayHandle);\n this._reconnectDelayHandle = undefined;\n this._completeClose();\n return Promise.resolve();\n }\n this._cleanupTimeout();\n this._cleanupPingTimer();\n this._stopDuringStartError = error || new AbortError(\"The connection was stopped before the hub handshake could complete.\");\n // HttpConnection.stop() should not complete until after either HttpConnection.start() fails\n // or the onclose callback is invoked. The onclose callback will transition the HubConnection\n // to the disconnected state if need be before HttpConnection.stop() completes.\n return this.connection.stop(error);\n }\n /** Invokes a streaming hub method on the server using the specified name and arguments.\r\n *\r\n * @typeparam T The type of the items returned by the server.\r\n * @param {string} methodName The name of the server method to invoke.\r\n * @param {any[]} args The arguments used to invoke the server method.\r\n * @returns {IStreamResult} An object that yields results from the server as they are received.\r\n */\n stream(methodName, ...args) {\n const [streams, streamIds] = this._replaceStreamingParams(args);\n const invocationDescriptor = this._createStreamInvocation(methodName, args, streamIds);\n // eslint-disable-next-line prefer-const\n let promiseQueue;\n const subject = new Subject();\n subject.cancelCallback = () => {\n const cancelInvocation = this._createCancelInvocation(invocationDescriptor.invocationId);\n delete this._callbacks[invocationDescriptor.invocationId];\n return promiseQueue.then(() => {\n return this._sendWithProtocol(cancelInvocation);\n });\n };\n this._callbacks[invocationDescriptor.invocationId] = (invocationEvent, error) => {\n if (error) {\n subject.error(error);\n return;\n } else if (invocationEvent) {\n // invocationEvent will not be null when an error is not passed to the callback\n if (invocationEvent.type === MessageType.Completion) {\n if (invocationEvent.error) {\n subject.error(new Error(invocationEvent.error));\n } else {\n subject.complete();\n }\n } else {\n subject.next(invocationEvent.item);\n }\n }\n };\n promiseQueue = this._sendWithProtocol(invocationDescriptor).catch(e => {\n subject.error(e);\n delete this._callbacks[invocationDescriptor.invocationId];\n });\n this._launchStreams(streams, promiseQueue);\n return subject;\n }\n _sendMessage(message) {\n this._resetKeepAliveInterval();\n return this.connection.send(message);\n }\n /**\r\n * Sends a js object to the server.\r\n * @param message The js object to serialize and send.\r\n */\n _sendWithProtocol(message) {\n return this._sendMessage(this._protocol.writeMessage(message));\n }\n /** Invokes a hub method on the server using the specified name and arguments. Does not wait for a response from the receiver.\r\n *\r\n * The Promise returned by this method resolves when the client has sent the invocation to the server. The server may still\r\n * be processing the invocation.\r\n *\r\n * @param {string} methodName The name of the server method to invoke.\r\n * @param {any[]} args The arguments used to invoke the server method.\r\n * @returns {Promise} A Promise that resolves when the invocation has been successfully sent, or rejects with an error.\r\n */\n send(methodName, ...args) {\n const [streams, streamIds] = this._replaceStreamingParams(args);\n const sendPromise = this._sendWithProtocol(this._createInvocation(methodName, args, true, streamIds));\n this._launchStreams(streams, sendPromise);\n return sendPromise;\n }\n /** Invokes a hub method on the server using the specified name and arguments.\r\n *\r\n * The Promise returned by this method resolves when the server indicates it has finished invoking the method. When the promise\r\n * resolves, the server has finished invoking the method. If the server method returns a result, it is produced as the result of\r\n * resolving the Promise.\r\n *\r\n * @typeparam T The expected return type.\r\n * @param {string} methodName The name of the server method to invoke.\r\n * @param {any[]} args The arguments used to invoke the server method.\r\n * @returns {Promise} A Promise that resolves with the result of the server method (if any), or rejects with an error.\r\n */\n invoke(methodName, ...args) {\n const [streams, streamIds] = this._replaceStreamingParams(args);\n const invocationDescriptor = this._createInvocation(methodName, args, false, streamIds);\n const p = new Promise((resolve, reject) => {\n // invocationId will always have a value for a non-blocking invocation\n this._callbacks[invocationDescriptor.invocationId] = (invocationEvent, error) => {\n if (error) {\n reject(error);\n return;\n } else if (invocationEvent) {\n // invocationEvent will not be null when an error is not passed to the callback\n if (invocationEvent.type === MessageType.Completion) {\n if (invocationEvent.error) {\n reject(new Error(invocationEvent.error));\n } else {\n resolve(invocationEvent.result);\n }\n } else {\n reject(new Error(`Unexpected message type: ${invocationEvent.type}`));\n }\n }\n };\n const promiseQueue = this._sendWithProtocol(invocationDescriptor).catch(e => {\n reject(e);\n // invocationId will always have a value for a non-blocking invocation\n delete this._callbacks[invocationDescriptor.invocationId];\n });\n this._launchStreams(streams, promiseQueue);\n });\n return p;\n }\n on(methodName, newMethod) {\n if (!methodName || !newMethod) {\n return;\n }\n methodName = methodName.toLowerCase();\n if (!this._methods[methodName]) {\n this._methods[methodName] = [];\n }\n // Preventing adding the same handler multiple times.\n if (this._methods[methodName].indexOf(newMethod) !== -1) {\n return;\n }\n this._methods[methodName].push(newMethod);\n }\n off(methodName, method) {\n if (!methodName) {\n return;\n }\n methodName = methodName.toLowerCase();\n const handlers = this._methods[methodName];\n if (!handlers) {\n return;\n }\n if (method) {\n const removeIdx = handlers.indexOf(method);\n if (removeIdx !== -1) {\n handlers.splice(removeIdx, 1);\n if (handlers.length === 0) {\n delete this._methods[methodName];\n }\n }\n } else {\n delete this._methods[methodName];\n }\n }\n /** Registers a handler that will be invoked when the connection is closed.\r\n *\r\n * @param {Function} callback The handler that will be invoked when the connection is closed. Optionally receives a single argument containing the error that caused the connection to close (if any).\r\n */\n onclose(callback) {\n if (callback) {\n this._closedCallbacks.push(callback);\n }\n }\n /** Registers a handler that will be invoked when the connection starts reconnecting.\r\n *\r\n * @param {Function} callback The handler that will be invoked when the connection starts reconnecting. Optionally receives a single argument containing the error that caused the connection to start reconnecting (if any).\r\n */\n onreconnecting(callback) {\n if (callback) {\n this._reconnectingCallbacks.push(callback);\n }\n }\n /** Registers a handler that will be invoked when the connection successfully reconnects.\r\n *\r\n * @param {Function} callback The handler that will be invoked when the connection successfully reconnects.\r\n */\n onreconnected(callback) {\n if (callback) {\n this._reconnectedCallbacks.push(callback);\n }\n }\n _processIncomingData(data) {\n this._cleanupTimeout();\n if (!this._receivedHandshakeResponse) {\n data = this._processHandshakeResponse(data);\n this._receivedHandshakeResponse = true;\n }\n // Data may have all been read when processing handshake response\n if (data) {\n // Parse the messages\n const messages = this._protocol.parseMessages(data, this._logger);\n for (const message of messages) {\n switch (message.type) {\n case MessageType.Invocation:\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this._invokeClientMethod(message);\n break;\n case MessageType.StreamItem:\n case MessageType.Completion:\n {\n const callback = this._callbacks[message.invocationId];\n if (callback) {\n if (message.type === MessageType.Completion) {\n delete this._callbacks[message.invocationId];\n }\n try {\n callback(message);\n } catch (e) {\n this._logger.log(LogLevel.Error, `Stream callback threw error: ${getErrorString(e)}`);\n }\n }\n break;\n }\n case MessageType.Ping:\n // Don't care about pings\n break;\n case MessageType.Close:\n {\n this._logger.log(LogLevel.Information, \"Close message received from server.\");\n const error = message.error ? new Error(\"Server returned an error on close: \" + message.error) : undefined;\n if (message.allowReconnect === true) {\n // It feels wrong not to await connection.stop() here, but processIncomingData is called as part of an onreceive callback which is not async,\n // this is already the behavior for serverTimeout(), and HttpConnection.Stop() should catch and log all possible exceptions.\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.connection.stop(error);\n } else {\n // We cannot await stopInternal() here, but subsequent calls to stop() will await this if stopInternal() is still ongoing.\n this._stopPromise = this._stopInternal(error);\n }\n break;\n }\n default:\n this._logger.log(LogLevel.Warning, `Invalid message type: ${message.type}.`);\n break;\n }\n }\n }\n this._resetTimeoutPeriod();\n }\n _processHandshakeResponse(data) {\n let responseMessage;\n let remainingData;\n try {\n [remainingData, responseMessage] = this._handshakeProtocol.parseHandshakeResponse(data);\n } catch (e) {\n const message = \"Error parsing handshake response: \" + e;\n this._logger.log(LogLevel.Error, message);\n const error = new Error(message);\n this._handshakeRejecter(error);\n throw error;\n }\n if (responseMessage.error) {\n const message = \"Server returned handshake error: \" + responseMessage.error;\n this._logger.log(LogLevel.Error, message);\n const error = new Error(message);\n this._handshakeRejecter(error);\n throw error;\n } else {\n this._logger.log(LogLevel.Debug, \"Server handshake complete.\");\n }\n this._handshakeResolver();\n return remainingData;\n }\n _resetKeepAliveInterval() {\n if (this.connection.features.inherentKeepAlive) {\n return;\n }\n // Set the time we want the next keep alive to be sent\n // Timer will be setup on next message receive\n this._nextKeepAlive = new Date().getTime() + this.keepAliveIntervalInMilliseconds;\n this._cleanupPingTimer();\n }\n _resetTimeoutPeriod() {\n if (!this.connection.features || !this.connection.features.inherentKeepAlive) {\n // Set the timeout timer\n this._timeoutHandle = setTimeout(() => this.serverTimeout(), this.serverTimeoutInMilliseconds);\n // Set keepAlive timer if there isn't one\n if (this._pingServerHandle === undefined) {\n let nextPing = this._nextKeepAlive - new Date().getTime();\n if (nextPing < 0) {\n nextPing = 0;\n }\n // The timer needs to be set from a networking callback to avoid Chrome timer throttling from causing timers to run once a minute\n this._pingServerHandle = setTimeout(async () => {\n if (this._connectionState === HubConnectionState.Connected) {\n try {\n await this._sendMessage(this._cachedPingMessage);\n } catch {\n // We don't care about the error. It should be seen elsewhere in the client.\n // The connection is probably in a bad or closed state now, cleanup the timer so it stops triggering\n this._cleanupPingTimer();\n }\n }\n }, nextPing);\n }\n }\n }\n // eslint-disable-next-line @typescript-eslint/naming-convention\n serverTimeout() {\n // The server hasn't talked to us in a while. It doesn't like us anymore ... :(\n // Terminate the connection, but we don't need to wait on the promise. This could trigger reconnecting.\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this.connection.stop(new Error(\"Server timeout elapsed without receiving a message from the server.\"));\n }\n async _invokeClientMethod(invocationMessage) {\n const methodName = invocationMessage.target.toLowerCase();\n const methods = this._methods[methodName];\n if (!methods) {\n this._logger.log(LogLevel.Warning, `No client method with the name '${methodName}' found.`);\n // No handlers provided by client but the server is expecting a response still, so we send an error\n if (invocationMessage.invocationId) {\n this._logger.log(LogLevel.Warning, `No result given for '${methodName}' method and invocation ID '${invocationMessage.invocationId}'.`);\n await this._sendWithProtocol(this._createCompletionMessage(invocationMessage.invocationId, \"Client didn't provide a result.\", null));\n }\n return;\n }\n // Avoid issues with handlers removing themselves thus modifying the list while iterating through it\n const methodsCopy = methods.slice();\n // Server expects a response\n const expectsResponse = invocationMessage.invocationId ? true : false;\n // We preserve the last result or exception but still call all handlers\n let res;\n let exception;\n let completionMessage;\n for (const m of methodsCopy) {\n try {\n const prevRes = res;\n res = await m.apply(this, invocationMessage.arguments);\n if (expectsResponse && res && prevRes) {\n this._logger.log(LogLevel.Error, `Multiple results provided for '${methodName}'. Sending error to server.`);\n completionMessage = this._createCompletionMessage(invocationMessage.invocationId, `Client provided multiple results.`, null);\n }\n // Ignore exception if we got a result after, the exception will be logged\n exception = undefined;\n } catch (e) {\n exception = e;\n this._logger.log(LogLevel.Error, `A callback for the method '${methodName}' threw error '${e}'.`);\n }\n }\n if (completionMessage) {\n await this._sendWithProtocol(completionMessage);\n } else if (expectsResponse) {\n // If there is an exception that means either no result was given or a handler after a result threw\n if (exception) {\n completionMessage = this._createCompletionMessage(invocationMessage.invocationId, `${exception}`, null);\n } else if (res !== undefined) {\n completionMessage = this._createCompletionMessage(invocationMessage.invocationId, null, res);\n } else {\n this._logger.log(LogLevel.Warning, `No result given for '${methodName}' method and invocation ID '${invocationMessage.invocationId}'.`);\n // Client didn't provide a result or throw from a handler, server expects a response so we send an error\n completionMessage = this._createCompletionMessage(invocationMessage.invocationId, \"Client didn't provide a result.\", null);\n }\n await this._sendWithProtocol(completionMessage);\n } else {\n if (res) {\n this._logger.log(LogLevel.Error, `Result given for '${methodName}' method but server is not expecting a result.`);\n }\n }\n }\n _connectionClosed(error) {\n this._logger.log(LogLevel.Debug, `HubConnection.connectionClosed(${error}) called while in state ${this._connectionState}.`);\n // Triggering this.handshakeRejecter is insufficient because it could already be resolved without the continuation having run yet.\n this._stopDuringStartError = this._stopDuringStartError || error || new AbortError(\"The underlying connection was closed before the hub handshake could complete.\");\n // If the handshake is in progress, start will be waiting for the handshake promise, so we complete it.\n // If it has already completed, this should just noop.\n if (this._handshakeResolver) {\n this._handshakeResolver();\n }\n this._cancelCallbacksWithError(error || new Error(\"Invocation canceled due to the underlying connection being closed.\"));\n this._cleanupTimeout();\n this._cleanupPingTimer();\n if (this._connectionState === HubConnectionState.Disconnecting) {\n this._completeClose(error);\n } else if (this._connectionState === HubConnectionState.Connected && this._reconnectPolicy) {\n // eslint-disable-next-line @typescript-eslint/no-floating-promises\n this._reconnect(error);\n } else if (this._connectionState === HubConnectionState.Connected) {\n this._completeClose(error);\n }\n // If none of the above if conditions were true were called the HubConnection must be in either:\n // 1. The Connecting state in which case the handshakeResolver will complete it and stopDuringStartError will fail it.\n // 2. The Reconnecting state in which case the handshakeResolver will complete it and stopDuringStartError will fail the current reconnect attempt\n // and potentially continue the reconnect() loop.\n // 3. The Disconnected state in which case we're already done.\n }\n _completeClose(error) {\n if (this._connectionStarted) {\n this._connectionState = HubConnectionState.Disconnected;\n this._connectionStarted = false;\n if (Platform.isBrowser) {\n window.document.removeEventListener(\"freeze\", this._freezeEventListener);\n }\n try {\n this._closedCallbacks.forEach(c => c.apply(this, [error]));\n } catch (e) {\n this._logger.log(LogLevel.Error, `An onclose callback called with error '${error}' threw error '${e}'.`);\n }\n }\n }\n async _reconnect(error) {\n const reconnectStartTime = Date.now();\n let previousReconnectAttempts = 0;\n let retryError = error !== undefined ? error : new Error(\"Attempting to reconnect due to a unknown error.\");\n let nextRetryDelay = this._getNextRetryDelay(previousReconnectAttempts++, 0, retryError);\n if (nextRetryDelay === null) {\n this._logger.log(LogLevel.Debug, \"Connection not reconnecting because the IRetryPolicy returned null on the first reconnect attempt.\");\n this._completeClose(error);\n return;\n }\n this._connectionState = HubConnectionState.Reconnecting;\n if (error) {\n this._logger.log(LogLevel.Information, `Connection reconnecting because of error '${error}'.`);\n } else {\n this._logger.log(LogLevel.Information, \"Connection reconnecting.\");\n }\n if (this._reconnectingCallbacks.length !== 0) {\n try {\n this._reconnectingCallbacks.forEach(c => c.apply(this, [error]));\n } catch (e) {\n this._logger.log(LogLevel.Error, `An onreconnecting callback called with error '${error}' threw error '${e}'.`);\n }\n // Exit early if an onreconnecting callback called connection.stop().\n if (this._connectionState !== HubConnectionState.Reconnecting) {\n this._logger.log(LogLevel.Debug, \"Connection left the reconnecting state in onreconnecting callback. Done reconnecting.\");\n return;\n }\n }\n while (nextRetryDelay !== null) {\n this._logger.log(LogLevel.Information, `Reconnect attempt number ${previousReconnectAttempts} will start in ${nextRetryDelay} ms.`);\n await new Promise(resolve => {\n this._reconnectDelayHandle = setTimeout(resolve, nextRetryDelay);\n });\n this._reconnectDelayHandle = undefined;\n if (this._connectionState !== HubConnectionState.Reconnecting) {\n this._logger.log(LogLevel.Debug, \"Connection left the reconnecting state during reconnect delay. Done reconnecting.\");\n return;\n }\n try {\n await this._startInternal();\n this._connectionState = HubConnectionState.Connected;\n this._logger.log(LogLevel.Information, \"HubConnection reconnected successfully.\");\n if (this._reconnectedCallbacks.length !== 0) {\n try {\n this._reconnectedCallbacks.forEach(c => c.apply(this, [this.connection.connectionId]));\n } catch (e) {\n this._logger.log(LogLevel.Error, `An onreconnected callback called with connectionId '${this.connection.connectionId}; threw error '${e}'.`);\n }\n }\n return;\n } catch (e) {\n this._logger.log(LogLevel.Information, `Reconnect attempt failed because of error '${e}'.`);\n if (this._connectionState !== HubConnectionState.Reconnecting) {\n this._logger.log(LogLevel.Debug, `Connection moved to the '${this._connectionState}' from the reconnecting state during reconnect attempt. Done reconnecting.`);\n // The TypeScript compiler thinks that connectionState must be Connected here. The TypeScript compiler is wrong.\n if (this._connectionState === HubConnectionState.Disconnecting) {\n this._completeClose();\n }\n return;\n }\n retryError = e instanceof Error ? e : new Error(e.toString());\n nextRetryDelay = this._getNextRetryDelay(previousReconnectAttempts++, Date.now() - reconnectStartTime, retryError);\n }\n }\n this._logger.log(LogLevel.Information, `Reconnect retries have been exhausted after ${Date.now() - reconnectStartTime} ms and ${previousReconnectAttempts} failed attempts. Connection disconnecting.`);\n this._completeClose();\n }\n _getNextRetryDelay(previousRetryCount, elapsedMilliseconds, retryReason) {\n try {\n return this._reconnectPolicy.nextRetryDelayInMilliseconds({\n elapsedMilliseconds,\n previousRetryCount,\n retryReason\n });\n } catch (e) {\n this._logger.log(LogLevel.Error, `IRetryPolicy.nextRetryDelayInMilliseconds(${previousRetryCount}, ${elapsedMilliseconds}) threw error '${e}'.`);\n return null;\n }\n }\n _cancelCallbacksWithError(error) {\n const callbacks = this._callbacks;\n this._callbacks = {};\n Object.keys(callbacks).forEach(key => {\n const callback = callbacks[key];\n try {\n callback(null, error);\n } catch (e) {\n this._logger.log(LogLevel.Error, `Stream 'error' callback called with '${error}' threw error: ${getErrorString(e)}`);\n }\n });\n }\n _cleanupPingTimer() {\n if (this._pingServerHandle) {\n clearTimeout(this._pingServerHandle);\n this._pingServerHandle = undefined;\n }\n }\n _cleanupTimeout() {\n if (this._timeoutHandle) {\n clearTimeout(this._timeoutHandle);\n }\n }\n _createInvocation(methodName, args, nonblocking, streamIds) {\n if (nonblocking) {\n if (streamIds.length !== 0) {\n return {\n arguments: args,\n streamIds,\n target: methodName,\n type: MessageType.Invocation\n };\n } else {\n return {\n arguments: args,\n target: methodName,\n type: MessageType.Invocation\n };\n }\n } else {\n const invocationId = this._invocationId;\n this._invocationId++;\n if (streamIds.length !== 0) {\n return {\n arguments: args,\n invocationId: invocationId.toString(),\n streamIds,\n target: methodName,\n type: MessageType.Invocation\n };\n } else {\n return {\n arguments: args,\n invocationId: invocationId.toString(),\n target: methodName,\n type: MessageType.Invocation\n };\n }\n }\n }\n _launchStreams(streams, promiseQueue) {\n if (streams.length === 0) {\n return;\n }\n // Synchronize stream data so they arrive in-order on the server\n if (!promiseQueue) {\n promiseQueue = Promise.resolve();\n }\n // We want to iterate over the keys, since the keys are the stream ids\n // eslint-disable-next-line guard-for-in\n for (const streamId in streams) {\n streams[streamId].subscribe({\n complete: () => {\n promiseQueue = promiseQueue.then(() => this._sendWithProtocol(this._createCompletionMessage(streamId)));\n },\n error: err => {\n let message;\n if (err instanceof Error) {\n message = err.message;\n } else if (err && err.toString) {\n message = err.toString();\n } else {\n message = \"Unknown error\";\n }\n promiseQueue = promiseQueue.then(() => this._sendWithProtocol(this._createCompletionMessage(streamId, message)));\n },\n next: item => {\n promiseQueue = promiseQueue.then(() => this._sendWithProtocol(this._createStreamItemMessage(streamId, item)));\n }\n });\n }\n }\n _replaceStreamingParams(args) {\n const streams = [];\n const streamIds = [];\n for (let i = 0; i < args.length; i++) {\n const argument = args[i];\n if (this._isObservable(argument)) {\n const streamId = this._invocationId;\n this._invocationId++;\n // Store the stream for later use\n streams[streamId] = argument;\n streamIds.push(streamId.toString());\n // remove stream from args\n args.splice(i, 1);\n }\n }\n return [streams, streamIds];\n }\n _isObservable(arg) {\n // This allows other stream implementations to just work (like rxjs)\n return arg && arg.subscribe && typeof arg.subscribe === \"function\";\n }\n _createStreamInvocation(methodName, args, streamIds) {\n const invocationId = this._invocationId;\n this._invocationId++;\n if (streamIds.length !== 0) {\n return {\n arguments: args,\n invocationId: invocationId.toString(),\n streamIds,\n target: methodName,\n type: MessageType.StreamInvocation\n };\n } else {\n return {\n arguments: args,\n invocationId: invocationId.toString(),\n target: methodName,\n type: MessageType.StreamInvocation\n };\n }\n }\n _createCancelInvocation(id) {\n return {\n invocationId: id,\n type: MessageType.CancelInvocation\n };\n }\n _createStreamItemMessage(id, item) {\n return {\n invocationId: id,\n item,\n type: MessageType.StreamItem\n };\n }\n _createCompletionMessage(id, error, result) {\n if (error) {\n return {\n error,\n invocationId: id,\n type: MessageType.Completion\n };\n }\n return {\n invocationId: id,\n result,\n type: MessageType.Completion\n };\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// 0, 2, 10, 30 second delays before reconnect attempts.\nconst DEFAULT_RETRY_DELAYS_IN_MILLISECONDS = [0, 2000, 10000, 30000, null];\n/** @private */\nexport class DefaultReconnectPolicy {\n constructor(retryDelays) {\n this._retryDelays = retryDelays !== undefined ? [...retryDelays, null] : DEFAULT_RETRY_DELAYS_IN_MILLISECONDS;\n }\n nextRetryDelayInMilliseconds(retryContext) {\n return this._retryDelays[retryContext.previousRetryCount];\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\r\n// The .NET Foundation licenses this file to you under the MIT license.\r\n\r\nexport abstract class HeaderNames {\r\n static readonly Authorization = \"Authorization\";\r\n static readonly Cookie = \"Cookie\";\r\n}\r\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { HeaderNames } from \"./HeaderNames\";\nimport { HttpClient } from \"./HttpClient\";\n/** @private */\nexport class AccessTokenHttpClient extends HttpClient {\n constructor(innerClient, accessTokenFactory) {\n super();\n this._innerClient = innerClient;\n this._accessTokenFactory = accessTokenFactory;\n }\n async send(request) {\n let allowRetry = true;\n if (this._accessTokenFactory && (!this._accessToken || request.url && request.url.indexOf(\"/negotiate?\") > 0)) {\n // don't retry if the request is a negotiate or if we just got a potentially new token from the access token factory\n allowRetry = false;\n this._accessToken = await this._accessTokenFactory();\n }\n this._setAuthorizationHeader(request);\n const response = await this._innerClient.send(request);\n if (allowRetry && response.statusCode === 401 && this._accessTokenFactory) {\n this._accessToken = await this._accessTokenFactory();\n this._setAuthorizationHeader(request);\n return await this._innerClient.send(request);\n }\n return response;\n }\n _setAuthorizationHeader(request) {\n if (!request.headers) {\n request.headers = {};\n }\n if (this._accessToken) {\n request.headers[HeaderNames.Authorization] = `Bearer ${this._accessToken}`;\n }\n // don't remove the header if there isn't an access token factory, the user manually added the header in this case\n else if (this._accessTokenFactory) {\n if (request.headers[HeaderNames.Authorization]) {\n delete request.headers[HeaderNames.Authorization];\n }\n }\n }\n getCookieString(url) {\n return this._innerClient.getCookieString(url);\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// This will be treated as a bit flag in the future, so we keep it using power-of-two values.\n/** Specifies a specific HTTP transport type. */\nexport var HttpTransportType = /*#__PURE__*/function (HttpTransportType) {\n /** Specifies no transport preference. */\n HttpTransportType[HttpTransportType[\"None\"] = 0] = \"None\";\n /** Specifies the WebSockets transport. */\n HttpTransportType[HttpTransportType[\"WebSockets\"] = 1] = \"WebSockets\";\n /** Specifies the Server-Sent Events transport. */\n HttpTransportType[HttpTransportType[\"ServerSentEvents\"] = 2] = \"ServerSentEvents\";\n /** Specifies the Long Polling transport. */\n HttpTransportType[HttpTransportType[\"LongPolling\"] = 4] = \"LongPolling\";\n return HttpTransportType;\n}(HttpTransportType || {});\n/** Specifies the transfer format for a connection. */\nexport var TransferFormat = /*#__PURE__*/function (TransferFormat) {\n /** Specifies that only text data will be transmitted over the connection. */\n TransferFormat[TransferFormat[\"Text\"] = 1] = \"Text\";\n /** Specifies that binary data will be transmitted over the connection. */\n TransferFormat[TransferFormat[\"Binary\"] = 2] = \"Binary\";\n return TransferFormat;\n}(TransferFormat || {});\n\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\n// Rough polyfill of https://developer.mozilla.org/en-US/docs/Web/API/AbortController\n// We don't actually ever use the API being polyfilled, we always use the polyfill because\n// it's a very new API right now.\n// Not exported from index.\n/** @private */\nexport class AbortController {\n constructor() {\n this._isAborted = false;\n this.onabort = null;\n }\n abort() {\n if (!this._isAborted) {\n this._isAborted = true;\n if (this.onabort) {\n this.onabort();\n }\n }\n }\n get signal() {\n return this;\n }\n get aborted() {\n return this._isAborted;\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { AbortController } from \"./AbortController\";\nimport { HttpError, TimeoutError } from \"./Errors\";\nimport { LogLevel } from \"./ILogger\";\nimport { TransferFormat } from \"./ITransport\";\nimport { Arg, getDataDetail, getUserAgentHeader, sendMessage } from \"./Utils\";\n// Not exported from 'index', this type is internal.\n/** @private */\nexport class LongPollingTransport {\n constructor(httpClient, logger, options) {\n this._httpClient = httpClient;\n this._logger = logger;\n this._pollAbort = new AbortController();\n this._options = options;\n this._running = false;\n this.onreceive = null;\n this.onclose = null;\n }\n // This is an internal type, not exported from 'index' so this is really just internal.\n get pollAborted() {\n return this._pollAbort.aborted;\n }\n async connect(url, transferFormat) {\n Arg.isRequired(url, \"url\");\n Arg.isRequired(transferFormat, \"transferFormat\");\n Arg.isIn(transferFormat, TransferFormat, \"transferFormat\");\n this._url = url;\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Connecting.\");\n // Allow binary format on Node and Browsers that support binary content (indicated by the presence of responseType property)\n if (transferFormat === TransferFormat.Binary && typeof XMLHttpRequest !== \"undefined\" && typeof new XMLHttpRequest().responseType !== \"string\") {\n throw new Error(\"Binary protocols over XmlHttpRequest not implementing advanced features are not supported.\");\n }\n const [name, value] = getUserAgentHeader();\n const headers = {\n [name]: value,\n ...this._options.headers\n };\n const pollOptions = {\n abortSignal: this._pollAbort.signal,\n headers,\n timeout: 100000,\n withCredentials: this._options.withCredentials\n };\n if (transferFormat === TransferFormat.Binary) {\n pollOptions.responseType = \"arraybuffer\";\n }\n // Make initial long polling request\n // Server uses first long polling request to finish initializing connection and it returns without data\n const pollUrl = `${url}&_=${Date.now()}`;\n this._logger.log(LogLevel.Trace, `(LongPolling transport) polling: ${pollUrl}.`);\n const response = await this._httpClient.get(pollUrl, pollOptions);\n if (response.statusCode !== 200) {\n this._logger.log(LogLevel.Error, `(LongPolling transport) Unexpected response code: ${response.statusCode}.`);\n // Mark running as false so that the poll immediately ends and runs the close logic\n this._closeError = new HttpError(response.statusText || \"\", response.statusCode);\n this._running = false;\n } else {\n this._running = true;\n }\n this._receiving = this._poll(this._url, pollOptions);\n }\n async _poll(url, pollOptions) {\n try {\n while (this._running) {\n try {\n const pollUrl = `${url}&_=${Date.now()}`;\n this._logger.log(LogLevel.Trace, `(LongPolling transport) polling: ${pollUrl}.`);\n const response = await this._httpClient.get(pollUrl, pollOptions);\n if (response.statusCode === 204) {\n this._logger.log(LogLevel.Information, \"(LongPolling transport) Poll terminated by server.\");\n this._running = false;\n } else if (response.statusCode !== 200) {\n this._logger.log(LogLevel.Error, `(LongPolling transport) Unexpected response code: ${response.statusCode}.`);\n // Unexpected status code\n this._closeError = new HttpError(response.statusText || \"\", response.statusCode);\n this._running = false;\n } else {\n // Process the response\n if (response.content) {\n this._logger.log(LogLevel.Trace, `(LongPolling transport) data received. ${getDataDetail(response.content, this._options.logMessageContent)}.`);\n if (this.onreceive) {\n this.onreceive(response.content);\n }\n } else {\n // This is another way timeout manifest.\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Poll timed out, reissuing.\");\n }\n }\n } catch (e) {\n if (!this._running) {\n // Log but disregard errors that occur after stopping\n this._logger.log(LogLevel.Trace, `(LongPolling transport) Poll errored after shutdown: ${e.message}`);\n } else {\n if (e instanceof TimeoutError) {\n // Ignore timeouts and reissue the poll.\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Poll timed out, reissuing.\");\n } else {\n // Close the connection with the error as the result.\n this._closeError = e;\n this._running = false;\n }\n }\n }\n }\n } finally {\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Polling complete.\");\n // We will reach here with pollAborted==false when the server returned a response causing the transport to stop.\n // If pollAborted==true then client initiated the stop and the stop method will raise the close event after DELETE is sent.\n if (!this.pollAborted) {\n this._raiseOnClose();\n }\n }\n }\n async send(data) {\n if (!this._running) {\n return Promise.reject(new Error(\"Cannot send until the transport is connected\"));\n }\n return sendMessage(this._logger, \"LongPolling\", this._httpClient, this._url, data, this._options);\n }\n async stop() {\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Stopping polling.\");\n // Tell receiving loop to stop, abort any current request, and then wait for it to finish\n this._running = false;\n this._pollAbort.abort();\n try {\n await this._receiving;\n // Send DELETE to clean up long polling on the server\n this._logger.log(LogLevel.Trace, `(LongPolling transport) sending DELETE request to ${this._url}.`);\n const headers = {};\n const [name, value] = getUserAgentHeader();\n headers[name] = value;\n const deleteOptions = {\n headers: {\n ...headers,\n ...this._options.headers\n },\n timeout: this._options.timeout,\n withCredentials: this._options.withCredentials\n };\n await this._httpClient.delete(this._url, deleteOptions);\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) DELETE request sent.\");\n } finally {\n this._logger.log(LogLevel.Trace, \"(LongPolling transport) Stop finished.\");\n // Raise close event here instead of in polling\n // It needs to happen after the DELETE request is sent\n this._raiseOnClose();\n }\n }\n _raiseOnClose() {\n if (this.onclose) {\n let logMessage = \"(LongPolling transport) Firing onclose event.\";\n if (this._closeError) {\n logMessage += \" Error: \" + this._closeError;\n }\n this._logger.log(LogLevel.Trace, logMessage);\n this.onclose(this._closeError);\n }\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { LogLevel } from \"./ILogger\";\nimport { TransferFormat } from \"./ITransport\";\nimport { Arg, getDataDetail, getUserAgentHeader, Platform, sendMessage } from \"./Utils\";\n/** @private */\nexport class ServerSentEventsTransport {\n constructor(httpClient, accessToken, logger, options) {\n this._httpClient = httpClient;\n this._accessToken = accessToken;\n this._logger = logger;\n this._options = options;\n this.onreceive = null;\n this.onclose = null;\n }\n async connect(url, transferFormat) {\n Arg.isRequired(url, \"url\");\n Arg.isRequired(transferFormat, \"transferFormat\");\n Arg.isIn(transferFormat, TransferFormat, \"transferFormat\");\n this._logger.log(LogLevel.Trace, \"(SSE transport) Connecting.\");\n // set url before accessTokenFactory because this._url is only for send and we set the auth header instead of the query string for send\n this._url = url;\n if (this._accessToken) {\n url += (url.indexOf(\"?\") < 0 ? \"?\" : \"&\") + `access_token=${encodeURIComponent(this._accessToken)}`;\n }\n return new Promise((resolve, reject) => {\n let opened = false;\n if (transferFormat !== TransferFormat.Text) {\n reject(new Error(\"The Server-Sent Events transport only supports the 'Text' transfer format\"));\n return;\n }\n let eventSource;\n if (Platform.isBrowser || Platform.isWebWorker) {\n eventSource = new this._options.EventSource(url, {\n withCredentials: this._options.withCredentials\n });\n } else {\n // Non-browser passes cookies via the dictionary\n const cookies = this._httpClient.getCookieString(url);\n const headers = {};\n headers.Cookie = cookies;\n const [name, value] = getUserAgentHeader();\n headers[name] = value;\n eventSource = new this._options.EventSource(url, {\n withCredentials: this._options.withCredentials,\n headers: {\n ...headers,\n ...this._options.headers\n }\n });\n }\n try {\n eventSource.onmessage = e => {\n if (this.onreceive) {\n try {\n this._logger.log(LogLevel.Trace, `(SSE transport) data received. ${getDataDetail(e.data, this._options.logMessageContent)}.`);\n this.onreceive(e.data);\n } catch (error) {\n this._close(error);\n return;\n }\n }\n };\n // @ts-ignore: not using event on purpose\n eventSource.onerror = e => {\n // EventSource doesn't give any useful information about server side closes.\n if (opened) {\n this._close();\n } else {\n reject(new Error(\"EventSource failed to connect. The connection could not be found on the server,\" + \" either the connection ID is not present on the server, or a proxy is refusing/buffering the connection.\" + \" If you have multiple servers check that sticky sessions are enabled.\"));\n }\n };\n eventSource.onopen = () => {\n this._logger.log(LogLevel.Information, `SSE connected to ${this._url}`);\n this._eventSource = eventSource;\n opened = true;\n resolve();\n };\n } catch (e) {\n reject(e);\n return;\n }\n });\n }\n async send(data) {\n if (!this._eventSource) {\n return Promise.reject(new Error(\"Cannot send until the transport is connected\"));\n }\n return sendMessage(this._logger, \"SSE\", this._httpClient, this._url, data, this._options);\n }\n stop() {\n this._close();\n return Promise.resolve();\n }\n _close(e) {\n if (this._eventSource) {\n this._eventSource.close();\n this._eventSource = undefined;\n if (this.onclose) {\n this.onclose(e);\n }\n }\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { HeaderNames } from \"./HeaderNames\";\nimport { LogLevel } from \"./ILogger\";\nimport { TransferFormat } from \"./ITransport\";\nimport { Arg, getDataDetail, getUserAgentHeader, Platform } from \"./Utils\";\n/** @private */\nexport class WebSocketTransport {\n constructor(httpClient, accessTokenFactory, logger, logMessageContent, webSocketConstructor, headers) {\n this._logger = logger;\n this._accessTokenFactory = accessTokenFactory;\n this._logMessageContent = logMessageContent;\n this._webSocketConstructor = webSocketConstructor;\n this._httpClient = httpClient;\n this.onreceive = null;\n this.onclose = null;\n this._headers = headers;\n }\n async connect(url, transferFormat) {\n Arg.isRequired(url, \"url\");\n Arg.isRequired(transferFormat, \"transferFormat\");\n Arg.isIn(transferFormat, TransferFormat, \"transferFormat\");\n this._logger.log(LogLevel.Trace, \"(WebSockets transport) Connecting.\");\n let token;\n if (this._accessTokenFactory) {\n token = await this._accessTokenFactory();\n }\n return new Promise((resolve, reject) => {\n url = url.replace(/^http/, \"ws\");\n let webSocket;\n const cookies = this._httpClient.getCookieString(url);\n let opened = false;\n if (Platform.isNode || Platform.isReactNative) {\n const headers = {};\n const [name, value] = getUserAgentHeader();\n headers[name] = value;\n if (token) {\n headers[HeaderNames.Authorization] = `Bearer ${token}`;\n }\n if (cookies) {\n headers[HeaderNames.Cookie] = cookies;\n }\n // Only pass headers when in non-browser environments\n webSocket = new this._webSocketConstructor(url, undefined, {\n headers: {\n ...headers,\n ...this._headers\n }\n });\n } else {\n if (token) {\n url += (url.indexOf(\"?\") < 0 ? \"?\" : \"&\") + `access_token=${encodeURIComponent(token)}`;\n }\n }\n if (!webSocket) {\n // Chrome is not happy with passing 'undefined' as protocol\n webSocket = new this._webSocketConstructor(url);\n }\n if (transferFormat === TransferFormat.Binary) {\n webSocket.binaryType = \"arraybuffer\";\n }\n webSocket.onopen = _event => {\n this._logger.log(LogLevel.Information, `WebSocket connected to ${url}.`);\n this._webSocket = webSocket;\n opened = true;\n resolve();\n };\n webSocket.onerror = event => {\n let error = null;\n // ErrorEvent is a browser only type we need to check if the type exists before using it\n if (typeof ErrorEvent !== \"undefined\" && event instanceof ErrorEvent) {\n error = event.error;\n } else {\n error = \"There was an error with the transport\";\n }\n this._logger.log(LogLevel.Information, `(WebSockets transport) ${error}.`);\n };\n webSocket.onmessage = message => {\n this._logger.log(LogLevel.Trace, `(WebSockets transport) data received. ${getDataDetail(message.data, this._logMessageContent)}.`);\n if (this.onreceive) {\n try {\n this.onreceive(message.data);\n } catch (error) {\n this._close(error);\n return;\n }\n }\n };\n webSocket.onclose = event => {\n // Don't call close handler if connection was never established\n // We'll reject the connect call instead\n if (opened) {\n this._close(event);\n } else {\n let error = null;\n // ErrorEvent is a browser only type we need to check if the type exists before using it\n if (typeof ErrorEvent !== \"undefined\" && event instanceof ErrorEvent) {\n error = event.error;\n } else {\n error = \"WebSocket failed to connect. The connection could not be found on the server,\" + \" either the endpoint may not be a SignalR endpoint,\" + \" the connection ID is not present on the server, or there is a proxy blocking WebSockets.\" + \" If you have multiple servers check that sticky sessions are enabled.\";\n }\n reject(new Error(error));\n }\n };\n });\n }\n send(data) {\n if (this._webSocket && this._webSocket.readyState === this._webSocketConstructor.OPEN) {\n this._logger.log(LogLevel.Trace, `(WebSockets transport) sending data. ${getDataDetail(data, this._logMessageContent)}.`);\n this._webSocket.send(data);\n return Promise.resolve();\n }\n return Promise.reject(\"WebSocket is not in the OPEN state\");\n }\n stop() {\n if (this._webSocket) {\n // Manually invoke onclose callback inline so we know the HttpConnection was closed properly before returning\n // This also solves an issue where websocket.onclose could take 18+ seconds to trigger during network disconnects\n this._close(undefined);\n }\n return Promise.resolve();\n }\n _close(event) {\n // webSocket will be null if the transport did not start successfully\n if (this._webSocket) {\n // Clear websocket handlers because we are considering the socket closed now\n this._webSocket.onclose = () => {};\n this._webSocket.onmessage = () => {};\n this._webSocket.onerror = () => {};\n this._webSocket.close();\n this._webSocket = undefined;\n }\n this._logger.log(LogLevel.Trace, \"(WebSockets transport) socket closed.\");\n if (this.onclose) {\n if (this._isCloseEvent(event) && (event.wasClean === false || event.code !== 1000)) {\n this.onclose(new Error(`WebSocket closed with status code: ${event.code} (${event.reason || \"no reason given\"}).`));\n } else if (event instanceof Error) {\n this.onclose(event);\n } else {\n this.onclose();\n }\n }\n }\n _isCloseEvent(event) {\n return event && typeof event.wasClean === \"boolean\" && typeof event.code === \"number\";\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { AccessTokenHttpClient } from \"./AccessTokenHttpClient\";\nimport { DefaultHttpClient } from \"./DefaultHttpClient\";\nimport { AggregateErrors, DisabledTransportError, FailedToNegotiateWithServerError, FailedToStartTransportError, HttpError, UnsupportedTransportError, AbortError } from \"./Errors\";\nimport { LogLevel } from \"./ILogger\";\nimport { HttpTransportType, TransferFormat } from \"./ITransport\";\nimport { LongPollingTransport } from \"./LongPollingTransport\";\nimport { ServerSentEventsTransport } from \"./ServerSentEventsTransport\";\nimport { Arg, createLogger, getUserAgentHeader, Platform } from \"./Utils\";\nimport { WebSocketTransport } from \"./WebSocketTransport\";\nconst MAX_REDIRECTS = 100;\n/** @private */\nexport class HttpConnection {\n constructor(url, options = {}) {\n this._stopPromiseResolver = () => {};\n this.features = {};\n this._negotiateVersion = 1;\n Arg.isRequired(url, \"url\");\n this._logger = createLogger(options.logger);\n this.baseUrl = this._resolveUrl(url);\n options = options || {};\n options.logMessageContent = options.logMessageContent === undefined ? false : options.logMessageContent;\n if (typeof options.withCredentials === \"boolean\" || options.withCredentials === undefined) {\n options.withCredentials = options.withCredentials === undefined ? true : options.withCredentials;\n } else {\n throw new Error(\"withCredentials option was not a 'boolean' or 'undefined' value\");\n }\n options.timeout = options.timeout === undefined ? 100 * 1000 : options.timeout;\n let webSocketModule = null;\n let eventSourceModule = null;\n if (Platform.isNode && typeof require !== \"undefined\") {\n // In order to ignore the dynamic require in webpack builds we need to do this magic\n // @ts-ignore: TS doesn't know about these names\n const requireFunc = typeof __webpack_require__ === \"function\" ? __non_webpack_require__ : require;\n webSocketModule = requireFunc(\"ws\");\n eventSourceModule = requireFunc(\"eventsource\");\n }\n if (!Platform.isNode && typeof WebSocket !== \"undefined\" && !options.WebSocket) {\n options.WebSocket = WebSocket;\n } else if (Platform.isNode && !options.WebSocket) {\n if (webSocketModule) {\n options.WebSocket = webSocketModule;\n }\n }\n if (!Platform.isNode && typeof EventSource !== \"undefined\" && !options.EventSource) {\n options.EventSource = EventSource;\n } else if (Platform.isNode && !options.EventSource) {\n if (typeof eventSourceModule !== \"undefined\") {\n options.EventSource = eventSourceModule;\n }\n }\n this._httpClient = new AccessTokenHttpClient(options.httpClient || new DefaultHttpClient(this._logger), options.accessTokenFactory);\n this._connectionState = \"Disconnected\" /* Disconnected */;\n this._connectionStarted = false;\n this._options = options;\n this.onreceive = null;\n this.onclose = null;\n }\n async start(transferFormat) {\n transferFormat = transferFormat || TransferFormat.Binary;\n Arg.isIn(transferFormat, TransferFormat, \"transferFormat\");\n this._logger.log(LogLevel.Debug, `Starting connection with transfer format '${TransferFormat[transferFormat]}'.`);\n if (this._connectionState !== \"Disconnected\" /* Disconnected */) {\n return Promise.reject(new Error(\"Cannot start an HttpConnection that is not in the 'Disconnected' state.\"));\n }\n this._connectionState = \"Connecting\" /* Connecting */;\n this._startInternalPromise = this._startInternal(transferFormat);\n await this._startInternalPromise;\n // The TypeScript compiler thinks that connectionState must be Connecting here. The TypeScript compiler is wrong.\n if (this._connectionState === \"Disconnecting\" /* Disconnecting */) {\n // stop() was called and transitioned the client into the Disconnecting state.\n const message = \"Failed to start the HttpConnection before stop() was called.\";\n this._logger.log(LogLevel.Error, message);\n // We cannot await stopPromise inside startInternal since stopInternal awaits the startInternalPromise.\n await this._stopPromise;\n return Promise.reject(new AbortError(message));\n } else if (this._connectionState !== \"Connected\" /* Connected */) {\n // stop() was called and transitioned the client into the Disconnecting state.\n const message = \"HttpConnection.startInternal completed gracefully but didn't enter the connection into the connected state!\";\n this._logger.log(LogLevel.Error, message);\n return Promise.reject(new AbortError(message));\n }\n this._connectionStarted = true;\n }\n send(data) {\n if (this._connectionState !== \"Connected\" /* Connected */) {\n return Promise.reject(new Error(\"Cannot send data if the connection is not in the 'Connected' State.\"));\n }\n if (!this._sendQueue) {\n this._sendQueue = new TransportSendQueue(this.transport);\n }\n // Transport will not be null if state is connected\n return this._sendQueue.send(data);\n }\n async stop(error) {\n if (this._connectionState === \"Disconnected\" /* Disconnected */) {\n this._logger.log(LogLevel.Debug, `Call to HttpConnection.stop(${error}) ignored because the connection is already in the disconnected state.`);\n return Promise.resolve();\n }\n if (this._connectionState === \"Disconnecting\" /* Disconnecting */) {\n this._logger.log(LogLevel.Debug, `Call to HttpConnection.stop(${error}) ignored because the connection is already in the disconnecting state.`);\n return this._stopPromise;\n }\n this._connectionState = \"Disconnecting\" /* Disconnecting */;\n this._stopPromise = new Promise(resolve => {\n // Don't complete stop() until stopConnection() completes.\n this._stopPromiseResolver = resolve;\n });\n // stopInternal should never throw so just observe it.\n await this._stopInternal(error);\n await this._stopPromise;\n }\n async _stopInternal(error) {\n // Set error as soon as possible otherwise there is a race between\n // the transport closing and providing an error and the error from a close message\n // We would prefer the close message error.\n this._stopError = error;\n try {\n await this._startInternalPromise;\n } catch (e) {\n // This exception is returned to the user as a rejected Promise from the start method.\n }\n // The transport's onclose will trigger stopConnection which will run our onclose event.\n // The transport should always be set if currently connected. If it wasn't set, it's likely because\n // stop was called during start() and start() failed.\n if (this.transport) {\n try {\n await this.transport.stop();\n } catch (e) {\n this._logger.log(LogLevel.Error, `HttpConnection.transport.stop() threw error '${e}'.`);\n this._stopConnection();\n }\n this.transport = undefined;\n } else {\n this._logger.log(LogLevel.Debug, \"HttpConnection.transport is undefined in HttpConnection.stop() because start() failed.\");\n }\n }\n async _startInternal(transferFormat) {\n // Store the original base url and the access token factory since they may change\n // as part of negotiating\n let url = this.baseUrl;\n this._accessTokenFactory = this._options.accessTokenFactory;\n this._httpClient._accessTokenFactory = this._accessTokenFactory;\n try {\n if (this._options.skipNegotiation) {\n if (this._options.transport === HttpTransportType.WebSockets) {\n // No need to add a connection ID in this case\n this.transport = this._constructTransport(HttpTransportType.WebSockets);\n // We should just call connect directly in this case.\n // No fallback or negotiate in this case.\n await this._startTransport(url, transferFormat);\n } else {\n throw new Error(\"Negotiation can only be skipped when using the WebSocket transport directly.\");\n }\n } else {\n let negotiateResponse = null;\n let redirects = 0;\n do {\n negotiateResponse = await this._getNegotiationResponse(url);\n // the user tries to stop the connection when it is being started\n if (this._connectionState === \"Disconnecting\" /* Disconnecting */ || this._connectionState === \"Disconnected\" /* Disconnected */) {\n throw new AbortError(\"The connection was stopped during negotiation.\");\n }\n if (negotiateResponse.error) {\n throw new Error(negotiateResponse.error);\n }\n if (negotiateResponse.ProtocolVersion) {\n throw new Error(\"Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server. See https://aka.ms/signalr-core-differences for details.\");\n }\n if (negotiateResponse.url) {\n url = negotiateResponse.url;\n }\n if (negotiateResponse.accessToken) {\n // Replace the current access token factory with one that uses\n // the returned access token\n const accessToken = negotiateResponse.accessToken;\n this._accessTokenFactory = () => accessToken;\n // set the factory to undefined so the AccessTokenHttpClient won't retry with the same token, since we know it won't change until a connection restart\n this._httpClient._accessToken = accessToken;\n this._httpClient._accessTokenFactory = undefined;\n }\n redirects++;\n } while (negotiateResponse.url && redirects < MAX_REDIRECTS);\n if (redirects === MAX_REDIRECTS && negotiateResponse.url) {\n throw new Error(\"Negotiate redirection limit exceeded.\");\n }\n await this._createTransport(url, this._options.transport, negotiateResponse, transferFormat);\n }\n if (this.transport instanceof LongPollingTransport) {\n this.features.inherentKeepAlive = true;\n }\n if (this._connectionState === \"Connecting\" /* Connecting */) {\n // Ensure the connection transitions to the connected state prior to completing this.startInternalPromise.\n // start() will handle the case when stop was called and startInternal exits still in the disconnecting state.\n this._logger.log(LogLevel.Debug, \"The HttpConnection connected successfully.\");\n this._connectionState = \"Connected\" /* Connected */;\n }\n // stop() is waiting on us via this.startInternalPromise so keep this.transport around so it can clean up.\n // This is the only case startInternal can exit in neither the connected nor disconnected state because stopConnection()\n // will transition to the disconnected state. start() will wait for the transition using the stopPromise.\n } catch (e) {\n this._logger.log(LogLevel.Error, \"Failed to start the connection: \" + e);\n this._connectionState = \"Disconnected\" /* Disconnected */;\n this.transport = undefined;\n // if start fails, any active calls to stop assume that start will complete the stop promise\n this._stopPromiseResolver();\n return Promise.reject(e);\n }\n }\n async _getNegotiationResponse(url) {\n const headers = {};\n const [name, value] = getUserAgentHeader();\n headers[name] = value;\n const negotiateUrl = this._resolveNegotiateUrl(url);\n this._logger.log(LogLevel.Debug, `Sending negotiation request: ${negotiateUrl}.`);\n try {\n const response = await this._httpClient.post(negotiateUrl, {\n content: \"\",\n headers: {\n ...headers,\n ...this._options.headers\n },\n timeout: this._options.timeout,\n withCredentials: this._options.withCredentials\n });\n if (response.statusCode !== 200) {\n return Promise.reject(new Error(`Unexpected status code returned from negotiate '${response.statusCode}'`));\n }\n const negotiateResponse = JSON.parse(response.content);\n if (!negotiateResponse.negotiateVersion || negotiateResponse.negotiateVersion < 1) {\n // Negotiate version 0 doesn't use connectionToken\n // So we set it equal to connectionId so all our logic can use connectionToken without being aware of the negotiate version\n negotiateResponse.connectionToken = negotiateResponse.connectionId;\n }\n return negotiateResponse;\n } catch (e) {\n let errorMessage = \"Failed to complete negotiation with the server: \" + e;\n if (e instanceof HttpError) {\n if (e.statusCode === 404) {\n errorMessage = errorMessage + \" Either this is not a SignalR endpoint or there is a proxy blocking the connection.\";\n }\n }\n this._logger.log(LogLevel.Error, errorMessage);\n return Promise.reject(new FailedToNegotiateWithServerError(errorMessage));\n }\n }\n _createConnectUrl(url, connectionToken) {\n if (!connectionToken) {\n return url;\n }\n return url + (url.indexOf(\"?\") === -1 ? \"?\" : \"&\") + `id=${connectionToken}`;\n }\n async _createTransport(url, requestedTransport, negotiateResponse, requestedTransferFormat) {\n let connectUrl = this._createConnectUrl(url, negotiateResponse.connectionToken);\n if (this._isITransport(requestedTransport)) {\n this._logger.log(LogLevel.Debug, \"Connection was provided an instance of ITransport, using that directly.\");\n this.transport = requestedTransport;\n await this._startTransport(connectUrl, requestedTransferFormat);\n this.connectionId = negotiateResponse.connectionId;\n return;\n }\n const transportExceptions = [];\n const transports = negotiateResponse.availableTransports || [];\n let negotiate = negotiateResponse;\n for (const endpoint of transports) {\n const transportOrError = this._resolveTransportOrError(endpoint, requestedTransport, requestedTransferFormat);\n if (transportOrError instanceof Error) {\n // Store the error and continue, we don't want to cause a re-negotiate in these cases\n transportExceptions.push(`${endpoint.transport} failed:`);\n transportExceptions.push(transportOrError);\n } else if (this._isITransport(transportOrError)) {\n this.transport = transportOrError;\n if (!negotiate) {\n try {\n negotiate = await this._getNegotiationResponse(url);\n } catch (ex) {\n return Promise.reject(ex);\n }\n connectUrl = this._createConnectUrl(url, negotiate.connectionToken);\n }\n try {\n await this._startTransport(connectUrl, requestedTransferFormat);\n this.connectionId = negotiate.connectionId;\n return;\n } catch (ex) {\n this._logger.log(LogLevel.Error, `Failed to start the transport '${endpoint.transport}': ${ex}`);\n negotiate = undefined;\n transportExceptions.push(new FailedToStartTransportError(`${endpoint.transport} failed: ${ex}`, HttpTransportType[endpoint.transport]));\n if (this._connectionState !== \"Connecting\" /* Connecting */) {\n const message = \"Failed to select transport before stop() was called.\";\n this._logger.log(LogLevel.Debug, message);\n return Promise.reject(new AbortError(message));\n }\n }\n }\n }\n if (transportExceptions.length > 0) {\n return Promise.reject(new AggregateErrors(`Unable to connect to the server with any of the available transports. ${transportExceptions.join(\" \")}`, transportExceptions));\n }\n return Promise.reject(new Error(\"None of the transports supported by the client are supported by the server.\"));\n }\n _constructTransport(transport) {\n switch (transport) {\n case HttpTransportType.WebSockets:\n if (!this._options.WebSocket) {\n throw new Error(\"'WebSocket' is not supported in your environment.\");\n }\n return new WebSocketTransport(this._httpClient, this._accessTokenFactory, this._logger, this._options.logMessageContent, this._options.WebSocket, this._options.headers || {});\n case HttpTransportType.ServerSentEvents:\n if (!this._options.EventSource) {\n throw new Error(\"'EventSource' is not supported in your environment.\");\n }\n return new ServerSentEventsTransport(this._httpClient, this._httpClient._accessToken, this._logger, this._options);\n case HttpTransportType.LongPolling:\n return new LongPollingTransport(this._httpClient, this._logger, this._options);\n default:\n throw new Error(`Unknown transport: ${transport}.`);\n }\n }\n _startTransport(url, transferFormat) {\n this.transport.onreceive = this.onreceive;\n this.transport.onclose = e => this._stopConnection(e);\n return this.transport.connect(url, transferFormat);\n }\n _resolveTransportOrError(endpoint, requestedTransport, requestedTransferFormat) {\n const transport = HttpTransportType[endpoint.transport];\n if (transport === null || transport === undefined) {\n this._logger.log(LogLevel.Debug, `Skipping transport '${endpoint.transport}' because it is not supported by this client.`);\n return new Error(`Skipping transport '${endpoint.transport}' because it is not supported by this client.`);\n } else {\n if (transportMatches(requestedTransport, transport)) {\n const transferFormats = endpoint.transferFormats.map(s => TransferFormat[s]);\n if (transferFormats.indexOf(requestedTransferFormat) >= 0) {\n if (transport === HttpTransportType.WebSockets && !this._options.WebSocket || transport === HttpTransportType.ServerSentEvents && !this._options.EventSource) {\n this._logger.log(LogLevel.Debug, `Skipping transport '${HttpTransportType[transport]}' because it is not supported in your environment.'`);\n return new UnsupportedTransportError(`'${HttpTransportType[transport]}' is not supported in your environment.`, transport);\n } else {\n this._logger.log(LogLevel.Debug, `Selecting transport '${HttpTransportType[transport]}'.`);\n try {\n return this._constructTransport(transport);\n } catch (ex) {\n return ex;\n }\n }\n } else {\n this._logger.log(LogLevel.Debug, `Skipping transport '${HttpTransportType[transport]}' because it does not support the requested transfer format '${TransferFormat[requestedTransferFormat]}'.`);\n return new Error(`'${HttpTransportType[transport]}' does not support ${TransferFormat[requestedTransferFormat]}.`);\n }\n } else {\n this._logger.log(LogLevel.Debug, `Skipping transport '${HttpTransportType[transport]}' because it was disabled by the client.`);\n return new DisabledTransportError(`'${HttpTransportType[transport]}' is disabled by the client.`, transport);\n }\n }\n }\n _isITransport(transport) {\n return transport && typeof transport === \"object\" && \"connect\" in transport;\n }\n _stopConnection(error) {\n this._logger.log(LogLevel.Debug, `HttpConnection.stopConnection(${error}) called while in state ${this._connectionState}.`);\n this.transport = undefined;\n // If we have a stopError, it takes precedence over the error from the transport\n error = this._stopError || error;\n this._stopError = undefined;\n if (this._connectionState === \"Disconnected\" /* Disconnected */) {\n this._logger.log(LogLevel.Debug, `Call to HttpConnection.stopConnection(${error}) was ignored because the connection is already in the disconnected state.`);\n return;\n }\n if (this._connectionState === \"Connecting\" /* Connecting */) {\n this._logger.log(LogLevel.Warning, `Call to HttpConnection.stopConnection(${error}) was ignored because the connection is still in the connecting state.`);\n throw new Error(`HttpConnection.stopConnection(${error}) was called while the connection is still in the connecting state.`);\n }\n if (this._connectionState === \"Disconnecting\" /* Disconnecting */) {\n // A call to stop() induced this call to stopConnection and needs to be completed.\n // Any stop() awaiters will be scheduled to continue after the onclose callback fires.\n this._stopPromiseResolver();\n }\n if (error) {\n this._logger.log(LogLevel.Error, `Connection disconnected with error '${error}'.`);\n } else {\n this._logger.log(LogLevel.Information, \"Connection disconnected.\");\n }\n if (this._sendQueue) {\n this._sendQueue.stop().catch(e => {\n this._logger.log(LogLevel.Error, `TransportSendQueue.stop() threw error '${e}'.`);\n });\n this._sendQueue = undefined;\n }\n this.connectionId = undefined;\n this._connectionState = \"Disconnected\" /* Disconnected */;\n if (this._connectionStarted) {\n this._connectionStarted = false;\n try {\n if (this.onclose) {\n this.onclose(error);\n }\n } catch (e) {\n this._logger.log(LogLevel.Error, `HttpConnection.onclose(${error}) threw error '${e}'.`);\n }\n }\n }\n _resolveUrl(url) {\n // startsWith is not supported in IE\n if (url.lastIndexOf(\"https://\", 0) === 0 || url.lastIndexOf(\"http://\", 0) === 0) {\n return url;\n }\n if (!Platform.isBrowser) {\n throw new Error(`Cannot resolve '${url}'.`);\n }\n // Setting the url to the href propery of an anchor tag handles normalization\n // for us. There are 3 main cases.\n // 1. Relative path normalization e.g \"b\" -> \"http://localhost:5000/a/b\"\n // 2. Absolute path normalization e.g \"/a/b\" -> \"http://localhost:5000/a/b\"\n // 3. Networkpath reference normalization e.g \"//localhost:5000/a/b\" -> \"http://localhost:5000/a/b\"\n const aTag = window.document.createElement(\"a\");\n aTag.href = url;\n this._logger.log(LogLevel.Information, `Normalizing '${url}' to '${aTag.href}'.`);\n return aTag.href;\n }\n _resolveNegotiateUrl(url) {\n const index = url.indexOf(\"?\");\n let negotiateUrl = url.substring(0, index === -1 ? url.length : index);\n if (negotiateUrl[negotiateUrl.length - 1] !== \"/\") {\n negotiateUrl += \"/\";\n }\n negotiateUrl += \"negotiate\";\n negotiateUrl += index === -1 ? \"\" : url.substring(index);\n if (negotiateUrl.indexOf(\"negotiateVersion\") === -1) {\n negotiateUrl += index === -1 ? \"?\" : \"&\";\n negotiateUrl += \"negotiateVersion=\" + this._negotiateVersion;\n }\n return negotiateUrl;\n }\n}\nfunction transportMatches(requestedTransport, actualTransport) {\n return !requestedTransport || (actualTransport & requestedTransport) !== 0;\n}\n/** @private */\nexport class TransportSendQueue {\n constructor(_transport) {\n this._transport = _transport;\n this._buffer = [];\n this._executing = true;\n this._sendBufferedData = new PromiseSource();\n this._transportResult = new PromiseSource();\n this._sendLoopPromise = this._sendLoop();\n }\n send(data) {\n this._bufferData(data);\n if (!this._transportResult) {\n this._transportResult = new PromiseSource();\n }\n return this._transportResult.promise;\n }\n stop() {\n this._executing = false;\n this._sendBufferedData.resolve();\n return this._sendLoopPromise;\n }\n _bufferData(data) {\n if (this._buffer.length && typeof this._buffer[0] !== typeof data) {\n throw new Error(`Expected data to be of type ${typeof this._buffer} but was of type ${typeof data}`);\n }\n this._buffer.push(data);\n this._sendBufferedData.resolve();\n }\n async _sendLoop() {\n while (true) {\n await this._sendBufferedData.promise;\n if (!this._executing) {\n if (this._transportResult) {\n this._transportResult.reject(\"Connection stopped.\");\n }\n break;\n }\n this._sendBufferedData = new PromiseSource();\n const transportResult = this._transportResult;\n this._transportResult = undefined;\n const data = typeof this._buffer[0] === \"string\" ? this._buffer.join(\"\") : TransportSendQueue._concatBuffers(this._buffer);\n this._buffer.length = 0;\n try {\n await this._transport.send(data);\n transportResult.resolve();\n } catch (error) {\n transportResult.reject(error);\n }\n }\n }\n static _concatBuffers(arrayBuffers) {\n const totalLength = arrayBuffers.map(b => b.byteLength).reduce((a, b) => a + b);\n const result = new Uint8Array(totalLength);\n let offset = 0;\n for (const item of arrayBuffers) {\n result.set(new Uint8Array(item), offset);\n offset += item.byteLength;\n }\n return result.buffer;\n }\n}\nclass PromiseSource {\n constructor() {\n this.promise = new Promise((resolve, reject) => [this._resolver, this._rejecter] = [resolve, reject]);\n }\n resolve() {\n this._resolver();\n }\n reject(reason) {\n this._rejecter(reason);\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { MessageType } from \"./IHubProtocol\";\nimport { LogLevel } from \"./ILogger\";\nimport { TransferFormat } from \"./ITransport\";\nimport { NullLogger } from \"./Loggers\";\nimport { TextMessageFormat } from \"./TextMessageFormat\";\nconst JSON_HUB_PROTOCOL_NAME = \"json\";\n/** Implements the JSON Hub Protocol. */\nexport class JsonHubProtocol {\n constructor() {\n /** @inheritDoc */\n this.name = JSON_HUB_PROTOCOL_NAME;\n /** @inheritDoc */\n this.version = 1;\n /** @inheritDoc */\n this.transferFormat = TransferFormat.Text;\n }\n /** Creates an array of {@link @microsoft/signalr.HubMessage} objects from the specified serialized representation.\r\n *\r\n * @param {string} input A string containing the serialized representation.\r\n * @param {ILogger} logger A logger that will be used to log messages that occur during parsing.\r\n */\n parseMessages(input, logger) {\n // The interface does allow \"ArrayBuffer\" to be passed in, but this implementation does not. So let's throw a useful error.\n if (typeof input !== \"string\") {\n throw new Error(\"Invalid input for JSON hub protocol. Expected a string.\");\n }\n if (!input) {\n return [];\n }\n if (logger === null) {\n logger = NullLogger.instance;\n }\n // Parse the messages\n const messages = TextMessageFormat.parse(input);\n const hubMessages = [];\n for (const message of messages) {\n const parsedMessage = JSON.parse(message);\n if (typeof parsedMessage.type !== \"number\") {\n throw new Error(\"Invalid payload.\");\n }\n switch (parsedMessage.type) {\n case MessageType.Invocation:\n this._isInvocationMessage(parsedMessage);\n break;\n case MessageType.StreamItem:\n this._isStreamItemMessage(parsedMessage);\n break;\n case MessageType.Completion:\n this._isCompletionMessage(parsedMessage);\n break;\n case MessageType.Ping:\n // Single value, no need to validate\n break;\n case MessageType.Close:\n // All optional values, no need to validate\n break;\n default:\n // Future protocol changes can add message types, old clients can ignore them\n logger.log(LogLevel.Information, \"Unknown message type '\" + parsedMessage.type + \"' ignored.\");\n continue;\n }\n hubMessages.push(parsedMessage);\n }\n return hubMessages;\n }\n /** Writes the specified {@link @microsoft/signalr.HubMessage} to a string and returns it.\r\n *\r\n * @param {HubMessage} message The message to write.\r\n * @returns {string} A string containing the serialized representation of the message.\r\n */\n writeMessage(message) {\n return TextMessageFormat.write(JSON.stringify(message));\n }\n _isInvocationMessage(message) {\n this._assertNotEmptyString(message.target, \"Invalid payload for Invocation message.\");\n if (message.invocationId !== undefined) {\n this._assertNotEmptyString(message.invocationId, \"Invalid payload for Invocation message.\");\n }\n }\n _isStreamItemMessage(message) {\n this._assertNotEmptyString(message.invocationId, \"Invalid payload for StreamItem message.\");\n if (message.item === undefined) {\n throw new Error(\"Invalid payload for StreamItem message.\");\n }\n }\n _isCompletionMessage(message) {\n if (message.result && message.error) {\n throw new Error(\"Invalid payload for Completion message.\");\n }\n if (!message.result && message.error) {\n this._assertNotEmptyString(message.error, \"Invalid payload for Completion message.\");\n }\n this._assertNotEmptyString(message.invocationId, \"Invalid payload for Completion message.\");\n }\n _assertNotEmptyString(value, errorMessage) {\n if (typeof value !== \"string\" || value === \"\") {\n throw new Error(errorMessage);\n }\n }\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nimport { DefaultReconnectPolicy } from \"./DefaultReconnectPolicy\";\nimport { HttpConnection } from \"./HttpConnection\";\nimport { HubConnection } from \"./HubConnection\";\nimport { LogLevel } from \"./ILogger\";\nimport { JsonHubProtocol } from \"./JsonHubProtocol\";\nimport { NullLogger } from \"./Loggers\";\nimport { Arg, ConsoleLogger } from \"./Utils\";\nconst LogLevelNameMapping = {\n trace: LogLevel.Trace,\n debug: LogLevel.Debug,\n info: LogLevel.Information,\n information: LogLevel.Information,\n warn: LogLevel.Warning,\n warning: LogLevel.Warning,\n error: LogLevel.Error,\n critical: LogLevel.Critical,\n none: LogLevel.None\n};\nfunction parseLogLevel(name) {\n // Case-insensitive matching via lower-casing\n // Yes, I know case-folding is a complicated problem in Unicode, but we only support\n // the ASCII strings defined in LogLevelNameMapping anyway, so it's fine -anurse.\n const mapping = LogLevelNameMapping[name.toLowerCase()];\n if (typeof mapping !== \"undefined\") {\n return mapping;\n } else {\n throw new Error(`Unknown log level: ${name}`);\n }\n}\n/** A builder for configuring {@link @microsoft/signalr.HubConnection} instances. */\nexport class HubConnectionBuilder {\n configureLogging(logging) {\n Arg.isRequired(logging, \"logging\");\n if (isLogger(logging)) {\n this.logger = logging;\n } else if (typeof logging === \"string\") {\n const logLevel = parseLogLevel(logging);\n this.logger = new ConsoleLogger(logLevel);\n } else {\n this.logger = new ConsoleLogger(logging);\n }\n return this;\n }\n withUrl(url, transportTypeOrOptions) {\n Arg.isRequired(url, \"url\");\n Arg.isNotEmpty(url, \"url\");\n this.url = url;\n // Flow-typing knows where it's at. Since HttpTransportType is a number and IHttpConnectionOptions is guaranteed\n // to be an object, we know (as does TypeScript) this comparison is all we need to figure out which overload was called.\n if (typeof transportTypeOrOptions === \"object\") {\n this.httpConnectionOptions = {\n ...this.httpConnectionOptions,\n ...transportTypeOrOptions\n };\n } else {\n this.httpConnectionOptions = {\n ...this.httpConnectionOptions,\n transport: transportTypeOrOptions\n };\n }\n return this;\n }\n /** Configures the {@link @microsoft/signalr.HubConnection} to use the specified Hub Protocol.\r\n *\r\n * @param {IHubProtocol} protocol The {@link @microsoft/signalr.IHubProtocol} implementation to use.\r\n */\n withHubProtocol(protocol) {\n Arg.isRequired(protocol, \"protocol\");\n this.protocol = protocol;\n return this;\n }\n withAutomaticReconnect(retryDelaysOrReconnectPolicy) {\n if (this.reconnectPolicy) {\n throw new Error(\"A reconnectPolicy has already been set.\");\n }\n if (!retryDelaysOrReconnectPolicy) {\n this.reconnectPolicy = new DefaultReconnectPolicy();\n } else if (Array.isArray(retryDelaysOrReconnectPolicy)) {\n this.reconnectPolicy = new DefaultReconnectPolicy(retryDelaysOrReconnectPolicy);\n } else {\n this.reconnectPolicy = retryDelaysOrReconnectPolicy;\n }\n return this;\n }\n /** Creates a {@link @microsoft/signalr.HubConnection} from the configuration options specified in this builder.\r\n *\r\n * @returns {HubConnection} The configured {@link @microsoft/signalr.HubConnection}.\r\n */\n build() {\n // If httpConnectionOptions has a logger, use it. Otherwise, override it with the one\n // provided to configureLogger\n const httpConnectionOptions = this.httpConnectionOptions || {};\n // If it's 'null', the user **explicitly** asked for null, don't mess with it.\n if (httpConnectionOptions.logger === undefined) {\n // If our logger is undefined or null, that's OK, the HttpConnection constructor will handle it.\n httpConnectionOptions.logger = this.logger;\n }\n // Now create the connection\n if (!this.url) {\n throw new Error(\"The 'HubConnectionBuilder.withUrl' method must be called before building the connection.\");\n }\n const connection = new HttpConnection(this.url, httpConnectionOptions);\n return HubConnection.create(connection, this.logger || NullLogger.instance, this.protocol || new JsonHubProtocol(), this.reconnectPolicy);\n }\n}\nfunction isLogger(logger) {\n return logger.log !== undefined;\n}\n","// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under the MIT license.\nexport { AbortError, HttpError, TimeoutError } from \"./Errors\";\nexport { HttpClient, HttpResponse } from \"./HttpClient\";\nexport { DefaultHttpClient } from \"./DefaultHttpClient\";\nexport { HubConnection, HubConnectionState } from \"./HubConnection\";\nexport { HubConnectionBuilder } from \"./HubConnectionBuilder\";\nexport { MessageType } from \"./IHubProtocol\";\nexport { LogLevel } from \"./ILogger\";\nexport { HttpTransportType, TransferFormat } from \"./ITransport\";\nexport { NullLogger } from \"./Loggers\";\nexport { JsonHubProtocol } from \"./JsonHubProtocol\";\nexport { Subject } from \"./Subject\";\nexport { VERSION } from \"./Utils\";\n","import * as i3 from '@angular/common';\nimport { NgClass, NgTemplateOutlet, AsyncPipe, CommonModule, UpperCasePipe } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { inject, Injectable, InjectionToken, input, output, Component, ViewEncapsulation, ChangeDetectionStrategy, signal, computed, viewChild, EventEmitter, ViewChild, HostBinding, ViewContainerRef, Input, DestroyRef, Injector, Pipe, Output, model, ElementRef, ChangeDetectorRef, HostListener, NgModule, CUSTOM_ELEMENTS_SCHEMA, Directive, viewChildren, ViewChildren, TemplateRef, ApplicationRef, NgZone } from '@angular/core';\nimport * as i1$2 from '@angular/material/tooltip';\nimport { MatTooltip, MatTooltipModule } from '@angular/material/tooltip';\nimport * as i2$1 from '@polygon/components';\nimport { KeyboardNavigationGroupDirective, KeyboardNavigationDirective, DropDownMenuTriggers, DropDownMenuDirective, TooltipHoverDirective, MessagesService, MessageInfo, MessageType, DraftModelService, ExceptionHandlerService, URL_REGEXP, FromComputedStylePipe, ToFixedPipe, TabGroupComponent, TabComponent, ButtonTypeEnum, ButtonColorEnum, DatesUtil, DateFieldViewPipe, InnerHTMLDirective, ComponentsModule, ImageStyle, ModalService, HelpPageService, KeyboardNavigationService, ButtonComponent, ImageComponent, LoadingSpinnerTypeEnum, PriPopoverDirective, IncludesPipe, LoadingSpinnerSizeEnum, FieldsSizeEnum, LoadingSpinnerComponent, ResizeObserverDirective, CegidLogoSvgComponent, EditionHistoryEventService, RecordSelectorComponent, CloseButtonComponent } from '@polygon/components';\nimport * as i1 from '@polygon/localization';\nimport { PrimaveraI18nModule, I18nService, providePrimaveraLocalization } from '@polygon/localization';\nimport * as i1$1 from '@polygon/services';\nimport { SettingsService, WildcardService, GuidService, DeviceService, OrientationEnum, AppContextService, CompanyDependentService, UserSettingsService, AmsService, WindowService, BroadcastService, RouteHelperService, CacheHelperService, StorageService, RoleService, ErrorsService, OutletEnum, ViewTitleService, IdentityService, RightPanelService, PrimaveraServicesModule, HotkeysService, ThemesEnum, EnvironmentSettings, ThemeService, ShellStateService, UserPilotService, UpgradeStatusEnum, ProductInitialization, DomService, FrameworkInterceptors, FrameworkInterceptorsOptions, Lock, UpgradeApplicationService, UserEngagementService, AppInitializerCustomService, deepClone, UserSettingsElevationService } from '@polygon/services';\nimport { take, ReplaySubject, firstValueFrom, BehaviorSubject, Observable, of, forkJoin, map, Subject, filter, switchMap, distinctUntilKeyChanged, takeUntil, from, skip, pairwise } from 'rxjs';\nimport { takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';\nimport * as i2 from '@angular/router';\nimport { Router, NavigationEnd, RouterModule, ActivatedRoute, RouterOutlet } from '@angular/router';\nimport { filter as filter$1, take as take$1 } from 'rxjs/operators';\nimport { A11yModule } from '@angular/cdk/a11y';\nimport { ScrollingModule, ScrollDispatcher } from '@angular/cdk/scrolling';\nimport * as i5 from '@angular/forms';\nimport { FormsModule, FormGroup, FormControl, Validators, ReactiveFormsModule } from '@angular/forms';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatTabsModule } from '@angular/material/tabs';\nimport { PopoverModule } from 'ngx-bootstrap/popover';\nimport { trigger, transition, style, animate, sequence } from '@angular/animations';\nimport * as i1$3 from '@angular/common/http';\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport * as signalR from '@microsoft/signalr';\nimport { HubConnectionState } from '@microsoft/signalr';\nimport * as i1$4 from '@angular/platform-browser';\n\n/**\n * Service that provides default applications for the applications menu.\n */\nconst _forTrack0 = ($index, $item) => $item.id;\nfunction ApplicationsMenuContentComponent_For_2_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\", 5);\n i0.ɵɵtext(1);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const application_r2 = i0.ɵɵnextContext().$implicit;\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, application_r2.title));\n }\n}\nfunction ApplicationsMenuContentComponent_For_2_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\", 6);\n i0.ɵɵtext(1);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const application_r2 = i0.ɵɵnextContext().$implicit;\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, application_r2.description));\n }\n}\nfunction ApplicationsMenuContentComponent_For_2_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵlistener(\"click\", function ApplicationsMenuContentComponent_For_2_Template_div_click_0_listener() {\n const application_r2 = i0.ɵɵrestoreView(_r1).$implicit;\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.openApplication(application_r2));\n })(\"keydown\", function ApplicationsMenuContentComponent_For_2_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onAppKeydown($event));\n });\n i0.ɵɵelementStart(1, \"span\", 3);\n i0.ɵɵelement(2, \"i\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(3, \"div\", 4);\n i0.ɵɵtemplate(4, ApplicationsMenuContentComponent_For_2_Conditional_4_Template, 3, 3, \"span\", 5)(5, ApplicationsMenuContentComponent_For_2_Conditional_5_Template, 3, 3, \"span\", 6);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n let tmp_10_0;\n const application_r2 = ctx.$implicit;\n i0.ɵɵadvance(2);\n i0.ɵɵclassMap((tmp_10_0 = application_r2.icon) !== null && tmp_10_0 !== undefined ? tmp_10_0 : \"icon-apps\");\n i0.ɵɵadvance(2);\n i0.ɵɵconditional((application_r2.title == null ? null : application_r2.title.length) > 0 ? 4 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional((application_r2.description == null ? null : application_r2.description.length) > 0 ? 5 : -1);\n }\n}\nconst _c0 = [\"dropDownMenuAnchor\"];\nconst _c1 = a0 => ({\n mobile: a0\n});\nfunction ApplicationsMenuComponent_Conditional_0_ng_template_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r3 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-applications-menu-content\", 4);\n i0.ɵɵlistener(\"itemClick\", function ApplicationsMenuComponent_Conditional_0_ng_template_4_Template_po_applications_menu_content_itemClick_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeDropDownMenuEvent.emit());\n })(\"closeDropdown\", function ApplicationsMenuComponent_Conditional_0_ng_template_4_Template_po_applications_menu_content_closeDropdown_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeDropdownAndFocusButton());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵnextContext();\n const dropDownMenuAnchor_r4 = i0.ɵɵreference(1);\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"width\", ctx_r1.width() || (dropDownMenuAnchor_r4 == null ? null : dropDownMenuAnchor_r4.getBoundingClientRect().width))(\"applications\", ctx_r1.validApplications());\n }\n}\nfunction ApplicationsMenuComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 2, 0);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵlistener(\"dropDownMenuShow\", function ApplicationsMenuComponent_Conditional_0_Template_div_dropDownMenuShow_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.dropDownMenuShow.emit($event));\n })(\"dropDownMenuHide\", function ApplicationsMenuComponent_Conditional_0_Template_div_dropDownMenuHide_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.dropDownMenuHide.emit($event));\n })(\"keydown\", function ApplicationsMenuComponent_Conditional_0_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementContainer(3, 3);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(4, ApplicationsMenuComponent_Conditional_0_ng_template_4_Template, 1, 2, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const dropDownMenu_r5 = i0.ɵɵreference(5);\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(17, _c1, !ctx_r1.deviceService.greaterThanXlBreakpoint))(\"priDropDownMenuCustomClass\", ctx_r1.dropDownMenuCustomClassList())(\"priDropDownMenuPosition\", ctx_r1.dropDownMenuPosition())(\"priDropDownMenuTrigger\", ctx_r1.dropDownMenuTrigger())(\"priDropDownMenuHide\", ctx_r1.closeDropDownMenuEvent)(\"customPanelTemplate\", dropDownMenu_r5)(\"menuSpacingX\", ctx_r1.dropDownMenuSpacingX())(\"menuSpacingY\", ctx_r1.dropDownMenuSpacingY())(\"chainID\", ctx_r1.dropDownMenuChainID())(\"childLevel\", ctx_r1.dropDownMenuChildLevel())(\"maxHeight\", ctx_r1.dropDownMenuMaxHeight)(\"matTooltip\", ctx_r1.deviceService.greaterThanMdBreakpoint ? i0.ɵɵpipeBind1(2, 15, \"shell.components.RES_TopBar_RightItem_Apps\") : \"\")(\"navigationOrientation\", ctx_r1.navigationOrientation)(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", ctx_r1.anchorTemplate());\n }\n}\nfunction ApplicationsMenuTopbarComponent_ng_template_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵelement(1, \"i\", 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵclassProp(\"active\", ctx_r0.applicationsMenuComponent.dropDownMenuDirective == null ? null : ctx_r0.applicationsMenuComponent.dropDownMenuDirective.isOpened());\n }\n}\nfunction ApplicationsMenuUserAreaComponent_ng_template_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-user-area-dropdown-button\", 2);\n i0.ɵɵpipe(1, \"priI18n\");\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"caption\", i0.ɵɵpipeBind1(1, 1, \"shell.components.RES_TopBar_RightItem_Apps\"));\n }\n}\nconst _c2 = (a0, a1, a2) => ({\n \"shell-banner-info\": a0,\n \"shell-banner-warning\": a1,\n \"shell-banner-critical\": a2\n});\nfunction AlertBarComponent_Conditional_0_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1)(1, \"div\", 3);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementStart(4, \"strong\")(5, \"a\", 4);\n i0.ɵɵtext(6);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵtext(8);\n i0.ɵɵpipe(9, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(3, 4, \"shell.components.RES_MyAccountView_ThereArePendingPayments\"), \" \");\n i0.ɵɵadvance(3);\n i0.ɵɵpropertyInterpolate(\"href\", ctx_r0.subscriptionManagementUrl, i0.ɵɵsanitizeUrl);\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 6, \"shell.components.RES_MyAccountView_HerePendingPayments\"));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(9, 8, \"shell.components.RES_MyAccountView_ThereArePendingPaymentsSettleThem\"), \" \");\n }\n}\nfunction AlertBarComponent_Conditional_0_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵelement(1, \"div\", 5);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"innerHTML\", ctx_r0.message(), i0.ɵɵsanitizeHtml);\n }\n}\nfunction AlertBarComponent_Conditional_0_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵelement(1, \"div\", 5);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n let tmp_2_0;\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction3(2, _c2, ((tmp_2_0 = ctx_r0.productWarningLevel()) == null ? null : tmp_2_0.toLowerCase()) === \"info\", ((tmp_2_0 = ctx_r0.productWarningLevel()) == null ? null : tmp_2_0.toLowerCase()) === \"warning\", ((tmp_2_0 = ctx_r0.productWarningLevel()) == null ? null : tmp_2_0.toLowerCase()) === \"critical\"));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"innerHTML\", ctx_r0.message(), i0.ɵɵsanitizeHtml);\n }\n}\nfunction AlertBarComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵtemplate(1, AlertBarComponent_Conditional_0_Conditional_1_Template, 10, 10, \"div\", 1)(2, AlertBarComponent_Conditional_0_Conditional_2_Template, 2, 1, \"div\", 1)(3, AlertBarComponent_Conditional_0_Conditional_3_Template, 2, 6, \"div\", 2);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.hasPendingPayments() ? 1 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.isDemonstrationSubscription() && !ctx_r0.hasPendingPayments() ? 2 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.hasProductWarning() && !ctx_r0.hasPendingPayments() && !ctx_r0.isDemonstrationSubscription() ? 3 : -1);\n }\n}\nconst _c3 = [\"componentContainer\"];\nfunction ContextPageComponent_For_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\");\n i0.ɵɵelement(1, \"po-context-component-container\", 0);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const component_r1 = ctx.$implicit;\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"config\", component_r1);\n }\n}\nconst _c4 = (a0, a1) => ({\n \"contextbar-open\": a0,\n \"showing-alerts\": a1\n});\nconst _c5 = (a0, a1) => ({\n active: a0,\n hide: a1\n});\nconst _c6 = a0 => ({\n active: a0\n});\nfunction ContextBarComponent_For_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 7);\n i0.ɵɵelement(1, \"po-context-page\", 9);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const page_r1 = ctx.$implicit;\n const ɵ$index_16_r2 = ctx.$index;\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction2(3, _c5, ɵ$index_16_r2 === ctx_r2.selected, ctx_r2.pages.length === 0));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"hidden\", ɵ$index_16_r2 !== ctx_r2.selected)(\"components\", page_r1.components);\n }\n}\nfunction ContextBarComponent_Conditional_10_For_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r5 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 15);\n i0.ɵɵlistener(\"click\", function ContextBarComponent_Conditional_10_For_5_Template_div_click_0_listener() {\n const ɵ$index_30_r6 = i0.ɵɵrestoreView(_r5).$index;\n const ctx_r2 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r2.showPageOnIndex(ɵ$index_30_r6));\n });\n i0.ɵɵelement(1, \"div\", 16);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ɵ$index_30_r6 = ctx.$index;\n const ctx_r2 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(1, _c6, ɵ$index_30_r6 === ctx_r2.selected));\n }\n}\nfunction ContextBarComponent_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n const _r4 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 8)(1, \"div\", 10)(2, \"div\", 11);\n i0.ɵɵlistener(\"click\", function ContextBarComponent_Conditional_10_Template_div_click_2_listener() {\n i0.ɵɵrestoreView(_r4);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.showPreviousPage());\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(3, \"div\", 12);\n i0.ɵɵrepeaterCreate(4, ContextBarComponent_Conditional_10_For_5_Template, 2, 3, \"div\", 13, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(6, \"div\", 14);\n i0.ɵɵlistener(\"click\", function ContextBarComponent_Conditional_10_Template_div_click_6_listener() {\n i0.ɵɵrestoreView(_r4);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.showNextPage());\n });\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵadvance(4);\n i0.ɵɵrepeater(ctx_r2.pages);\n }\n}\nconst _c7 = (a0, a1) => ({\n overlay: a0,\n \"showing-alerts\": a1\n});\nfunction DownloadsPanelComponent_For_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-download-progress-bar\", 1);\n }\n if (rf & 2) {\n const progressBar_r1 = ctx.$implicit;\n i0.ɵɵproperty(\"@animProgressBar\", undefined)(\"data\", progressBar_r1);\n }\n}\nconst _c8 = (a0, a1) => ({\n id: a0,\n label: a1\n});\nfunction EnvironmentSelectorContentComponent_For_5_For_8_Template(rf, ctx) {\n if (rf & 1) {\n const _r4 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"li\", 12);\n i0.ɵɵlistener(\"click\", function EnvironmentSelectorContentComponent_For_5_For_8_Template_li_click_0_listener() {\n const tabItem_r5 = i0.ɵɵrestoreView(_r4).$implicit;\n const tab_r3 = i0.ɵɵnextContext().$implicit;\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.onTabItemClick(tab_r3, tabItem_r5));\n })(\"keydown\", function EnvironmentSelectorContentComponent_For_5_For_8_Template_li_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r4);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(1, \"div\", 13)(2, \"i\", 14, 0);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵlistener(\"click\", function EnvironmentSelectorContentComponent_For_5_For_8_Template_i_click_2_listener() {\n i0.ɵɵrestoreView(_r4);\n const tooltip_r6 = i0.ɵɵreference(3);\n return i0.ɵɵresetView(tooltip_r6.toggle());\n })(\"click\", function EnvironmentSelectorContentComponent_For_5_For_8_Template_i_click_2_listener($event) {\n const tabItem_r5 = i0.ɵɵrestoreView(_r4).$implicit;\n const tab_r3 = i0.ɵɵnextContext().$implicit;\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.setPinForTabItem(tab_r3, tabItem_r5, $event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"div\", 15)(6, \"div\", 16)(7, \"div\", 17);\n i0.ɵɵtext(8);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(9, \"div\", 18);\n i0.ɵɵelement(10, \"i\", 19);\n i0.ɵɵelementStart(11, \"div\", 20);\n i0.ɵɵtext(12);\n i0.ɵɵelementEnd()()()()();\n }\n if (rf & 2) {\n const tabItem_r5 = ctx.$implicit;\n const ɵ$index_22_r7 = ctx.$index;\n const ctx_r7 = i0.ɵɵnextContext();\n const tab_r3 = ctx_r7.$implicit;\n const ɵ$index_7_r9 = ctx_r7.$index;\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵstyleProp(\"top\", ctx_r1.getEnvironmentItemTopPosition(ɵ$index_22_r7));\n i0.ɵɵclassProp(\"active\", tabItem_r5.isSelected);\n i0.ɵɵattributeInterpolate2(\"data-testid\", \"env-selector-item-\", ɵ$index_7_r9, \"-\", ɵ$index_22_r7, \"\");\n i0.ɵɵpropertyInterpolate2(\"id\", \"\", tab_r3.id, \"-\", tabItem_r5.key, \"\");\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngClass\", ctx_r1.getPinClass(tab_r3, tabItem_r5))(\"matTooltip\", i0.ɵɵpipeBind1(4, 15, \"shell.components.RES_Shell_Menu_FavoriteSubscriptionsTooltip\"))(\"matTooltipDisabled\", ctx_r1.cantPinMoreItemsTooltipDisabled(tab_r3, tabItem_r5));\n i0.ɵɵadvance(6);\n i0.ɵɵtextInterpolate1(\" \", ctx_r1.getTabItemHeaderText(tab_r3, tabItem_r5), \" \");\n i0.ɵɵadvance(4);\n i0.ɵɵtextInterpolate1(\" \", ctx_r1.getTabItemSubHeaderText(tab_r3, tabItem_r5), \" \");\n }\n}\nfunction EnvironmentSelectorContentComponent_For_5_ForEmpty_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"li\", 11);\n i0.ɵɵtext(1);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(2, 1, \"shell.components.RES_EnvironmentSelector_NoResultsFound\"), \" \");\n }\n}\nfunction EnvironmentSelectorContentComponent_For_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-tab\", 3)(1, \"div\", 4);\n i0.ɵɵlistener(\"keydown\", function EnvironmentSelectorContentComponent_For_5_Template_div_keydown_1_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(2, \"div\", 5);\n i0.ɵɵelement(3, \"i\", 6);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"input\", 7);\n i0.ɵɵtwoWayListener(\"ngModelChange\", function EnvironmentSelectorContentComponent_For_5_Template_input_ngModelChange_4_listener($event) {\n const tab_r3 = i0.ɵɵrestoreView(_r1).$implicit;\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵtwoWayBindingSet(ctx_r1.searchTermInput[tab_r3.id], $event) || (ctx_r1.searchTermInput[tab_r3.id] = $event);\n return i0.ɵɵresetView($event);\n });\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(5, \"div\", 8)(6, \"ul\", 9);\n i0.ɵɵrepeaterCreate(7, EnvironmentSelectorContentComponent_For_5_For_8_Template, 13, 17, \"li\", 10, _forTrack0, false, EnvironmentSelectorContentComponent_For_5_ForEmpty_9_Template, 3, 3, \"li\", 11);\n i0.ɵɵpipe(10, \"filter\");\n i0.ɵɵpipe(11, \"sortByProperty\");\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n const tab_r3 = ctx.$implicit;\n const ɵ$index_7_r9 = ctx.$index;\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction2(16, _c8, tab_r3.id, tab_r3.getTabName()));\n i0.ɵɵadvance(4);\n i0.ɵɵattributeInterpolate1(\"data-testid\", \"env-selector-search-\", ɵ$index_7_r9, \"\");\n i0.ɵɵproperty(\"placeholder\", tab_r3.getSearchPlaceHolderName());\n i0.ɵɵtwoWayProperty(\"ngModel\", ctx_r1.searchTermInput[tab_r3.id]);\n i0.ɵɵadvance(2);\n i0.ɵɵattributeInterpolate1(\"data-testid\", \"env-selector-items-list-\", ɵ$index_7_r9, \"\");\n i0.ɵɵadvance();\n i0.ɵɵrepeater(i0.ɵɵpipeBind3(11, 12, i0.ɵɵpipeBind3(10, 8, ctx_r1.tabsData()[tab_r3.id], ctx_r1.searchTermInput[tab_r3.id], tab_r3.searchableProperties), \"pinDate\", \"desc\"));\n }\n}\nconst _c9 = (a0, a1, a2) => ({\n caption: a0,\n openSelectorContextEvent: a1,\n openSelectorContextTooltip: a2\n});\nconst _c10 = (a0, a1) => ({\n caption: a0,\n dropDownMenuOpen: a1\n});\nfunction EnvironmentSelectorComponent_Conditional_0_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵelementContainer(1, 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngTemplateOutlet\", ctx_r0.anchorTemplate())(\"ngTemplateOutletContext\", i0.ɵɵpureFunction3(2, _c9, ctx_r0.caption, ctx_r0.openSelectorContextEvent, ctx_r0.openSelectorContextTooltip));\n }\n}\nfunction EnvironmentSelectorComponent_Conditional_0_Conditional_1_ng_template_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r3 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-environment-selector-content\", 5);\n i0.ɵɵlistener(\"itemClick\", function EnvironmentSelectorComponent_Conditional_0_Conditional_1_ng_template_4_Template_po_environment_selector_content_itemClick_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r0 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r0.itemClick.emit());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵnextContext();\n const dropDownMenuAnchor_r4 = i0.ɵɵreference(1);\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"visibleTabs\", ctx_r0.visibleTabs())(\"tabsData\", ctx_r0.tabsData())(\"dropDownMenuAnchor\", dropDownMenuAnchor_r4)(\"dropDownMenuChainID\", ctx_r0.dropDownMenuChainID())(\"dropDownMenuChildLevel\", ctx_r0.dropDownMenuChildLevel())(\"closeDropDownMenuEvent\", ctx_r0.closeDropDownMenuEvent);\n }\n}\nfunction EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 4, 0);\n i0.ɵɵlistener(\"dropDownMenuShow\", function EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template_div_dropDownMenuShow_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r0 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r0.dropDownMenuShow.emit($event));\n })(\"dropDownMenuHide\", function EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template_div_dropDownMenuHide_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r0 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r0.dropDownMenuHide.emit($event));\n })(\"keydown\", function EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r0 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r0.onKeydown($event));\n });\n i0.ɵɵelementContainer(3, 3);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(4, EnvironmentSelectorComponent_Conditional_0_Conditional_1_ng_template_4_Template, 1, 6, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const dropDownMenuDirective_r5 = i0.ɵɵreference(2);\n const dropDownMenu_r6 = i0.ɵɵreference(5);\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(16, _c1, !ctx_r0.deviceService.greaterThanXlBreakpoint))(\"priDropDownMenuCustomClass\", ctx_r0.dropDownMenuCustomClassList())(\"priDropDownMenuPosition\", ctx_r0.dropDownMenuPosition())(\"priDropDownMenuTrigger\", ctx_r0.dropDownMenuTrigger())(\"priDropDownMenuShow\", ctx_r0.openDropDownMenuEvent)(\"priDropDownMenuHide\", ctx_r0.closeDropDownMenuEvent)(\"customPanelTemplate\", dropDownMenu_r6)(\"menuSpacingX\", ctx_r0.dropDownMenuSpacingX())(\"menuSpacingY\", ctx_r0.dropDownMenuSpacingY())(\"chainID\", ctx_r0.dropDownMenuChainID())(\"childLevel\", ctx_r0.dropDownMenuChildLevel())(\"maxHeight\", ctx_r0.dropDownMenuMaxHeight)(\"navigationOrientation\", ctx_r0.navigationOrientation)(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", ctx_r0.anchorTemplate())(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(18, _c10, ctx_r0.caption, dropDownMenuDirective_r5 == null ? null : dropDownMenuDirective_r5.isOpened));\n }\n}\nfunction EnvironmentSelectorComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, EnvironmentSelectorComponent_Conditional_0_Conditional_0_Template, 2, 6, \"div\", 2)(1, EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template, 6, 21);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵconditional(ctx_r0.hasSelectorContext() ? 0 : 1);\n }\n}\nconst _c11 = a0 => ({\n \"selector-context\": a0\n});\nfunction EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 8);\n i0.ɵɵlistener(\"click\", function EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_5_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const openSelectorContextEvent_r2 = i0.ɵɵnextContext().openSelectorContextEvent;\n return i0.ɵɵresetView(openSelectorContextEvent_r2.next());\n });\n i0.ɵɵelement(1, \"i\", 9);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const openSelectorContextTooltip_r3 = i0.ɵɵnextContext().openSelectorContextTooltip;\n const ctx_r3 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"matTooltip\", openSelectorContextTooltip_r3)(\"navigationOrientation\", ctx_r3.OrientationEnum.Landscape);\n }\n}\nfunction EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 7);\n i0.ɵɵelement(1, \"i\", 10);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const dropDownMenuOpen_r5 = i0.ɵɵnextContext().dropDownMenuOpen;\n i0.ɵɵadvance();\n i0.ɵɵclassMap(dropDownMenuOpen_r5() ? \"icon-expand_less\" : \"icon-expand_more\");\n }\n}\nfunction EnvironmentSelectorTopbarComponent_ng_template_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2)(1, \"div\", 3)(2, \"div\", 4)(3, \"span\", 5);\n i0.ɵɵtext(4);\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(5, EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_5_Template, 2, 2, \"div\", 6)(6, EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_6_Template, 2, 2, \"div\", 7);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const caption_r6 = ctx.caption;\n const openSelectorContextEvent_r2 = ctx.openSelectorContextEvent;\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(3, _c11, openSelectorContextEvent_r2));\n i0.ɵɵadvance(4);\n i0.ɵɵtextInterpolate(caption_r6());\n i0.ɵɵadvance();\n i0.ɵɵconditional(openSelectorContextEvent_r2 ? 5 : 6);\n }\n}\nfunction EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 4);\n i0.ɵɵlistener(\"click\", function EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_0_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r2);\n const openSelectorContextEvent_r3 = i0.ɵɵnextContext().openSelectorContextEvent;\n const ctx_r3 = i0.ɵɵnextContext();\n openSelectorContextEvent_r3.next();\n return i0.ɵɵresetView(ctx_r3.itemClick.emit());\n });\n i0.ɵɵelement(1, \"div\", 5);\n i0.ɵɵelementStart(2, \"div\", 6);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const caption_r5 = i0.ɵɵnextContext().caption;\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(caption_r5());\n }\n}\nfunction EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-user-area-dropdown-button\", 3);\n }\n if (rf & 2) {\n const caption_r5 = i0.ɵɵnextContext().caption;\n i0.ɵɵproperty(\"caption\", caption_r5());\n }\n}\nfunction EnvironmentSelectorUserAreaComponent_ng_template_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_0_Template, 4, 1, \"div\", 2)(1, EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_1_Template, 1, 1, \"po-user-area-dropdown-button\", 3);\n }\n if (rf & 2) {\n const openSelectorContextEvent_r3 = ctx.openSelectorContextEvent;\n i0.ɵɵconditional(openSelectorContextEvent_r3 ? 0 : 1);\n }\n}\nconst _c12 = (a0, a1, a2) => ({\n text: a0,\n type: a1,\n color: a2\n});\nfunction AboutComponent_Conditional_7_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\"\", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_ProductVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.productVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\"\", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_ClientVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.clientVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\"\", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_PolygonFwVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.polygonFwVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\"\", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_PolygonSdkVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.polygonSdkVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\"\", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_DatabaseVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.databaseVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_ElevationFwVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.elevationFwVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\")(1, \"span\", 9);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 10);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(3, 2, \"shell.components.RES_About_ElevationSdkVersion_Label\"), \": \");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.elevationSdkVersion);\n }\n}\nfunction AboutComponent_Conditional_7_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 8)(1, \"span\");\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(ctx_r0.aboutInfo.additionalInfo);\n }\n}\nfunction AboutComponent_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 5);\n i0.ɵɵtemplate(1, AboutComponent_Conditional_7_Conditional_1_Template, 6, 4, \"div\")(2, AboutComponent_Conditional_7_Conditional_2_Template, 6, 4, \"div\")(3, AboutComponent_Conditional_7_Conditional_3_Template, 6, 4, \"div\")(4, AboutComponent_Conditional_7_Conditional_4_Template, 6, 4, \"div\")(5, AboutComponent_Conditional_7_Conditional_5_Template, 6, 4, \"div\")(6, AboutComponent_Conditional_7_Conditional_6_Template, 6, 4, \"div\")(7, AboutComponent_Conditional_7_Conditional_7_Template, 6, 4, \"div\")(8, AboutComponent_Conditional_7_Conditional_8_Template, 3, 1, \"div\", 8);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.productVersion ? 1 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.clientVersion ? 2 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.polygonFwVersion ? 3 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.polygonSdkVersion ? 4 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.databaseVersion ? 5 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.elevationFwVersion ? 6 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.elevationSdkVersion ? 7 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r0.aboutInfo.additionalInfo ? 8 : -1);\n }\n}\nfunction AboutComponent_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\");\n i0.ɵɵelement(1, \"po-loading-spinner\", 11);\n i0.ɵɵelementEnd();\n }\n}\nconst _c13 = a0 => ({\n \"po-field-required\": a0\n});\nconst _c14 = () => ({\n minHeight: 250\n});\nconst _c15 = a0 => ({\n text: a0\n});\nfunction SupportRequestComponent_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"form\", 8)(1, \"div\", 9)(2, \"div\", 13)(3, \"div\", 14)(4, \"label\", 15)(5, \"span\");\n i0.ɵɵtext(6);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(8, \"div\", 16);\n i0.ɵɵelement(9, \"input\", 17);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(10, \"div\", 13)(11, \"label\", 18)(12, \"span\");\n i0.ɵɵtext(13);\n i0.ɵɵpipe(14, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelement(15, \"po-wysiwyg\", 19);\n i0.ɵɵelementEnd()()()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"formGroup\", ctx_r0.supportRequestForm);\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(9, _c13, !ctx_r0.subject || ctx_r0.subject.invalid));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 5, \"shell.components.RES_SupportRequestView_Subject\"));\n i0.ɵɵadvance(7);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 7, \"shell.components.RES_SupportRequestView_Description\"));\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction0(11, _c14));\n }\n}\nfunction SupportRequestComponent_Conditional_11_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 9)(1, \"div\", 20)(2, \"h1\");\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"h2\");\n i0.ɵɵtext(6);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 2, \"shell.components.RES_SupportRequestView_NoMoreTicketsTitle\"));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 4, \"shell.components.RES_SupportRequestView_NoMoreTicketsMessage\"));\n }\n}\nfunction SupportRequestComponent_Conditional_13_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\");\n i0.ɵɵelement(1, \"po-loading-spinner\", 21);\n i0.ɵɵelementEnd();\n }\n}\nfunction SupportRequestComponent_Conditional_16_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-button\", 22);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"action\", function SupportRequestComponent_Conditional_16_Template_po_button_action_0_listener() {\n i0.ɵɵrestoreView(_r2);\n const ctx_r0 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r0.send());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction1(4, _c15, i0.ɵɵpipeBind1(1, 2, \"shell.components.RES_ManageAttachmentsConfirm\")))(\"disabled\", !ctx_r0.supportRequestForm || !ctx_r0.supportRequestForm.valid);\n }\n}\nconst _c16 = a0 => ({\n error: a0\n});\nfunction BellComponent_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"div\", 2);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(1, _c16, ctx_r0.existsCriticalNotifications()));\n }\n}\nconst _c17 = a0 => ({\n \"not-title\": a0\n});\nfunction CardComponent_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 3);\n i0.ɵɵtext(1);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(ctx_r0.card.title);\n }\n}\nfunction CardComponent_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"div\", 5);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"innerHTML\", ctx_r0.card.body, i0.ɵɵsanitizeHtml);\n }\n}\nfunction CardComponent_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 8);\n i0.ɵɵlistener(\"click\", function CardComponent_Conditional_7_Template_div_click_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r0 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r0.dispose($event));\n });\n i0.ɵɵelementEnd();\n }\n}\nfunction CardComponent_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"div\", 7);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"@animTrash\", ctx_r0.animationCardMobileEnable ? \"anime\" : \"\");\n }\n}\nconst _c18 = [\"cardsPanel\"];\nconst _c19 = (a0, a1) => ({\n card: a0,\n group: a1\n});\nfunction PanelComponent_For_4_For_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0, 8);\n }\n if (rf & 2) {\n const card_r5 = ctx.$implicit;\n const group_r3 = i0.ɵɵnextContext().$implicit;\n i0.ɵɵnextContext();\n const cardTemplate_r6 = i0.ɵɵreference(6);\n i0.ɵɵproperty(\"ngTemplateOutlet\", cardTemplate_r6)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(2, _c19, card_r5, group_r3));\n }\n}\nfunction PanelComponent_For_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 4)(1, \"div\", 5)(2, \"div\", 6);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"div\", 7);\n i0.ɵɵlistener(\"click\", function PanelComponent_For_4_Template_div_click_4_listener($event) {\n const group_r3 = i0.ɵɵrestoreView(_r2).$implicit;\n const ctx_r3 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r3.cleanGroup($event, group_r3));\n });\n i0.ɵɵtext(5);\n i0.ɵɵpipe(6, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementContainerStart(7);\n i0.ɵɵrepeaterCreate(8, PanelComponent_For_4_For_9_Template, 1, 5, \"ng-container\", 8, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵpipe(10, \"slice\");\n i0.ɵɵelementContainerEnd();\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const group_r3 = ctx.$implicit;\n const ctx_r3 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"@animCardGroup\", group_r3.animationEnable ? \"animate\" : \"\");\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(group_r3.title);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(6, 3, \"shell.components.RES_Push_Notifications_Clean_Notifications\"), \" \");\n i0.ɵɵadvance(3);\n i0.ɵɵrepeater(i0.ɵɵpipeBind3(10, 5, group_r3.cards, 0, ctx_r3.maxCardsVisible));\n }\n}\nfunction PanelComponent_ng_template_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r7 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-card-component\", 9);\n i0.ɵɵlistener(\"disposeCard\", function PanelComponent_ng_template_5_Template_po_card_component_disposeCard_0_listener() {\n const ctx_r7 = i0.ɵɵrestoreView(_r7);\n const card_r9 = ctx_r7.card;\n const group_r10 = ctx_r7.group;\n const ctx_r3 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r3.cleanCard(card_r9, group_r10));\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const card_r9 = ctx.card;\n const ctx_r3 = i0.ɵɵnextContext();\n i0.ɵɵclassProp(\"mobile\", ctx_r3.isMobileDevice);\n i0.ɵɵproperty(\"card\", card_r9)(\"isMobileDevice\", ctx_r3.isMobileDevice);\n }\n}\nconst _c20 = [\"body\"];\nconst _c21 = [\"bell\"];\nconst _c22 = a0 => ({\n open: a0\n});\nfunction PriNotificationsComponent_ng_template_2_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-panel-component\", 4);\n i0.ɵɵlistener(\"disposeCardGroup\", function PriNotificationsComponent_ng_template_2_Conditional_0_Template_po_panel_component_disposeCardGroup_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r2 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r2.disposeNotifications($event));\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"cards\", ctx_r2.cards())(\"refreshCards\", ctx_r2.refreshCards);\n }\n}\nfunction PriNotificationsComponent_ng_template_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, PriNotificationsComponent_ng_template_2_Conditional_0_Template, 1, 2, \"po-panel-component\", 3);\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵconditional(ctx_r2.panelIsOpened ? 0 : -1);\n }\n}\nconst _c23 = [\"rootElement\"];\nconst _c24 = [\"searchInput\"];\nfunction SearchComponent_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 8);\n i0.ɵɵlistener(\"click\", function SearchComponent_Conditional_8_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r2);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.cleanText());\n });\n i0.ɵɵelement(1, \"i\", 9);\n i0.ɵɵelementEnd();\n }\n}\nfunction SearchComponent_ng_template_9_For_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r4 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 14);\n i0.ɵɵlistener(\"click\", function SearchComponent_ng_template_9_For_5_Template_div_click_0_listener() {\n const item_r5 = i0.ɵɵrestoreView(_r4).$implicit;\n const ctx_r2 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r2.navigateTo(item_r5));\n })(\"keydown\", function SearchComponent_ng_template_9_For_5_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r4);\n const ctx_r2 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r2.onSearchResultKeydown($event));\n });\n i0.ɵɵelementStart(1, \"div\", 15)(2, \"span\", 16);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 17);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n i0.ɵɵelement(6, \"span\", 18);\n i0.ɵɵpipe(7, \"sanitizeHtml\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const item_r5 = ctx.$implicit;\n const ɵ$index_25_r6 = ctx.$index;\n const ctx_r2 = i0.ɵɵnextContext(2);\n i0.ɵɵpropertyInterpolate1(\"id\", \"searchResult_\", ɵ$index_25_r6, \"\");\n i0.ɵɵproperty(\"priKeyboardNavigation\", !ctx_r2.isSmallDevice());\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(item_r5.title);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(item_r5.authorityTitle);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"innerHTML\", i0.ɵɵpipeBind1(7, 6, item_r5.snippet), i0.ɵɵsanitizeHtml);\n }\n}\nfunction SearchComponent_ng_template_9_ForEmpty_6_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 13)(1, \"span\", 19);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"slice\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate2(\" \\\"\", ctx_r2.searchText.length > ctx_r2.noResultsLength ? i0.ɵɵpipeBind3(3, 2, ctx_r2.searchText, 0, ctx_r2.noResultsLength) + \"...\" : ctx_r2.searchText, \"\\\" \", ctx_r2.searchNoResults, \" \");\n }\n}\nfunction SearchComponent_ng_template_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 10);\n i0.ɵɵpipe(1, \"fromComputedStyle\");\n i0.ɵɵpipe(2, \"toFixed\");\n i0.ɵɵelementStart(3, \"div\", 11);\n i0.ɵɵrepeaterCreate(4, SearchComponent_ng_template_9_For_5_Template, 8, 8, \"div\", 12, i0.ɵɵrepeaterTrackByIdentity, false, SearchComponent_ng_template_9_ForEmpty_6_Template, 4, 6, \"div\", 13);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n const dropDownAnchor_r7 = i0.ɵɵreference(1);\n i0.ɵɵstyleProp(\"width\", i0.ɵɵpipeBind2(2, 7, i0.ɵɵpipeBind3(1, 3, dropDownAnchor_r7, \"width\", true), 2), \"px\");\n i0.ɵɵadvance(4);\n i0.ɵɵrepeater(ctx_r2.searchResults);\n }\n}\nconst _c25 = a0 => ({\n \"po-field-options\": a0\n});\nconst _c26 = a0 => ({\n selected: a0\n});\nconst _c27 = a0 => ({\n \"is-disabled\": a0\n});\nfunction UserAreaComponent_Conditional_0_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 5, 2);\n i0.ɵɵpipe(2, \"async\");\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵlistener(\"dropDownMenuHide\", function UserAreaComponent_Conditional_0_Conditional_0_Template_div_dropDownMenuHide_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeSubMenus());\n })(\"keydown\", function UserAreaComponent_Conditional_0_Conditional_0_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementContainer(4, 6);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n const profileImageTemplate_r3 = i0.ɵɵreference(3);\n const userAreaDropdownTemplate_r4 = i0.ɵɵreference(5);\n i0.ɵɵpropertyInterpolate1(\"priDropDownMenuCustomClass\", \"top-bar user-area \", i0.ɵɵpipeBind1(2, 9, ctx_r1.hasAlerts$) ? \"showing-alerts\" : \"\", \"\");\n i0.ɵɵproperty(\"customPanelTemplate\", userAreaDropdownTemplate_r4)(\"priDropDownMenuHide\", ctx_r1.hideDropDownMenuEvent)(\"chainID\", ctx_r1.dropDownMenuChainID)(\"matTooltip\", i0.ɵɵpipeBind1(3, 11, \"shell.components.RES_TopBar_RightItem_UserArea\"))(\"navigationOrientation\", ctx_r1.OrientationEnum.Landscape)(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(4);\n i0.ɵɵproperty(\"ngTemplateOutlet\", profileImageTemplate_r3);\n }\n}\nfunction UserAreaComponent_Conditional_0_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 4);\n i0.ɵɵelementContainer(1, 6);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵnextContext(2);\n const profileImageTemplate_r3 = i0.ɵɵreference(3);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngTemplateOutlet\", profileImageTemplate_r3);\n }\n}\nfunction UserAreaComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, UserAreaComponent_Conditional_0_Conditional_0_Template, 5, 13, \"div\", 3)(1, UserAreaComponent_Conditional_0_Conditional_1_Template, 2, 1, \"div\", 4);\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵconditional(ctx_r1.hasEnabledUserAreaItems() ? 0 : 1);\n }\n}\nfunction UserAreaComponent_ng_template_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-image\", 7);\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵstyleMap(ctx_r1.imageStyle);\n i0.ɵɵproperty(\"imageUrl\", ctx_r1.userInfo == null ? null : ctx_r1.userInfo.picture)(\"defaultText\", ctx_r1.userInfo == null ? null : ctx_r1.userInfo.displayName)(\"showDefaultImage\", ctx_r1.userInfo ? false : true);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n const _r6 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 9);\n i0.ɵɵelement(1, \"po-image\", 7);\n i0.ɵɵelementStart(2, \"div\", 19)(3, \"div\", 20);\n i0.ɵɵtext(4);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"div\", 21);\n i0.ɵɵtext(6);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(7, \"po-button\", 22);\n i0.ɵɵpipe(8, \"priI18n\");\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_1_Template_po_button_click_7_listener() {\n i0.ɵɵrestoreView(_r6);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.openUserProfile());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_1_Template_po_button_keydown_7_listener($event) {\n i0.ɵɵrestoreView(_r6);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵstyleMap(ctx_r1.imageStyle);\n i0.ɵɵproperty(\"imageUrl\", ctx_r1.userInfo == null ? null : ctx_r1.userInfo.picture)(\"defaultText\", ctx_r1.userInfo == null ? null : ctx_r1.userInfo.displayName)(\"showDefaultImage\", ctx_r1.userInfo ? false : true);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r1.userInfo.displayName);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(ctx_r1.userInfo.email);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction3(10, _c12, i0.ɵɵpipeBind1(8, 8, \"shell.components.RES_Shell_Header_User_Profile\"), ctx_r1.ButtonTypeEnum.Tertiary, ctx_r1.ButtonColorEnum.Grey));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_For_6_Template(rf, ctx) {\n if (rf & 1) {\n const _r8 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 30);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_For_6_Template_div_click_0_listener() {\n const item_r9 = i0.ɵɵrestoreView(_r8).$implicit;\n const ctx_r1 = i0.ɵɵnextContext(4);\n return i0.ɵɵresetView(ctx_r1.setUserDefaultRole(item_r9.roleKey));\n });\n i0.ɵɵelementStart(1, \"div\", 27);\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const item_r9 = ctx.$implicit;\n const ctx_r1 = i0.ɵɵnextContext(4);\n i0.ɵɵattributeInterpolate1(\"data-testid\", \"user-area-role-\", item_r9.roleKey, \"\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(4, _c26, item_r9.roleKey === ctx_r1.currentRole.roleKey));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(item_r9.description);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n const _r7 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 25);\n i0.ɵɵlistener(\"mouseover\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template_div_mouseover_0_listener() {\n i0.ɵɵrestoreView(_r7);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.openRoleMenu());\n })(\"mouseout\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template_div_mouseout_0_listener() {\n i0.ɵɵrestoreView(_r7);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.closeRoleMenu());\n })(\"click\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template_div_click_0_listener($event) {\n i0.ɵɵrestoreView(_r7);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.toggleRoleMenu($event));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r7);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 26);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"div\", 28);\n i0.ɵɵlistener(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template_div_keydown_4_listener($event) {\n i0.ɵɵrestoreView(_r7);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵrepeaterCreate(5, UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_For_6_Template, 3, 6, \"div\", 29, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(3);\n i0.ɵɵproperty(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r1.currentRole.description);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(3, _c25, ctx_r1.roleSelectorOpened()));\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx_r1.roleData);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_2_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 24);\n i0.ɵɵelement(1, \"div\", 31);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(3);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(ctx_r1.currentRole.description);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 10);\n i0.ɵɵtemplate(1, UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template, 7, 5, \"div\", 23)(2, UserAreaComponent_ng_template_4_Conditional_2_Conditional_2_Template, 4, 1, \"div\", 24);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasMoreThanOneRole() ? 1 : 2);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_3_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n const _r10 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 34);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_3_Conditional_1_Template_div_click_0_listener($event) {\n i0.ɵɵrestoreView(_r10);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.navigateTo($event, ctx_r1.subscriptionUsersPageUrl));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_3_Conditional_1_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r10);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 35);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_User_SubscriptionUsers\"), \" \");\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_3_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n const _r11 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 36);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_3_Conditional_2_Template_div_click_0_listener($event) {\n i0.ɵɵrestoreView(_r11);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.navigateTo($event, ctx_r1.subscriptionManagementUrl, true));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_3_Conditional_2_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r11);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 37);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_User_SubscriptionServices\"), \" \");\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 11);\n i0.ɵɵtemplate(1, UserAreaComponent_ng_template_4_Conditional_3_Conditional_1_Template, 5, 3, \"div\", 32)(2, UserAreaComponent_ng_template_4_Conditional_3_Conditional_2_Template, 5, 3, \"div\", 33);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.isAllowed(\"subscriptionUsersButton\") ? 1 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.isAllowed(\"subscriptionButton\") ? 2 : -1);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r12 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 38);\n i0.ɵɵlistener(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_4_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(1, \"po-environment-selector-user-area\", 39);\n i0.ɵɵlistener(\"itemClick\", function UserAreaComponent_ng_template_4_Conditional_4_Template_po_environment_selector_user_area_itemClick_1_listener() {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.hideDropDownMenuEvent.emit());\n })(\"dropDownMenuShow\", function UserAreaComponent_ng_template_4_Conditional_4_Template_po_environment_selector_user_area_dropDownMenuShow_1_listener() {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeSubMenus());\n });\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(2, \"div\", 40);\n i0.ɵɵlistener(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_4_Template_div_keydown_2_listener($event) {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(3, \"po-applications-menu-user-area\", 39);\n i0.ɵɵlistener(\"itemClick\", function UserAreaComponent_ng_template_4_Conditional_4_Template_po_applications_menu_user_area_itemClick_3_listener() {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.hideDropDownMenuEvent.emit());\n })(\"dropDownMenuShow\", function UserAreaComponent_ng_template_4_Conditional_4_Template_po_applications_menu_user_area_dropDownMenuShow_3_listener() {\n i0.ɵɵrestoreView(_r12);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeSubMenus());\n });\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n let tmp_7_0;\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵclassProp(\"hidden\", !ctx_r1.environmentSelectorComponent().ready());\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"dropDownMenuChainID\", ctx_r1.dropDownMenuChainID)(\"dropDownMenuChildLevel\", 1);\n i0.ɵɵadvance();\n i0.ɵɵclassProp(\"hidden\", !((tmp_7_0 = ctx_r1.applicationsMenuComponent().hasApplications) == null ? null : tmp_7_0()));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"dropDownMenuChainID\", ctx_r1.dropDownMenuChainID)(\"dropDownMenuChildLevel\", 1);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r13 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 12)(1, \"div\", 41);\n i0.ɵɵlistener(\"mouseover\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_mouseover_1_listener() {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.openThemeMenu());\n })(\"mouseout\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_mouseout_1_listener() {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeThemeMenu());\n })(\"click\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_click_1_listener($event) {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.toggleThemeMenu($event));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_keydown_1_listener($event) {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(2, \"div\", 26);\n i0.ɵɵelementStart(3, \"div\", 27);\n i0.ɵɵtext(4);\n i0.ɵɵpipe(5, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(6, \"div\", 42)(7, \"div\", 43);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_click_7_listener() {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.changeTheme(ctx_r1.ThemesEnum.Light));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_keydown_7_listener($event) {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(8, \"div\", 27);\n i0.ɵɵtext(9);\n i0.ɵɵpipe(10, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(11, \"div\", 44);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_click_11_listener() {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.changeTheme(ctx_r1.ThemesEnum.Dark));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_5_Template_div_keydown_11_listener($event) {\n i0.ɵɵrestoreView(_r13);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelementStart(12, \"div\", 27);\n i0.ɵɵtext(13);\n i0.ɵɵpipe(14, \"priI18n\");\n i0.ɵɵelementEnd()()()()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 7, \"shell.components.RES_Shell_Header_User_Change_Theme\"));\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(13, _c25, ctx_r1.themeSelectorOpened()));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(15, _c26, ctx_r1.ThemesEnum.Light === ctx_r1.themeService.theme));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(10, 9, \"shell.components.RES_Shell_Header_User_Change_Theme_Regular\"), \" \");\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(17, _c26, ctx_r1.ThemesEnum.Dark === ctx_r1.themeService.theme));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(14, 11, \"shell.components.RES_Shell_Header_User_Change_Theme_Dark\"), \" \");\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_6_For_8_Template(rf, ctx) {\n if (rf & 1) {\n const _r15 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 47);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_6_For_8_Template_div_click_0_listener() {\n const language_r16 = i0.ɵɵrestoreView(_r15).$implicit;\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.changeLanguage(language_r16.name));\n });\n i0.ɵɵelementStart(1, \"div\", 27);\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const language_r16 = ctx.$implicit;\n const ctx_r1 = i0.ɵɵnextContext(3);\n i0.ɵɵattributeInterpolate1(\"data-testid\", \"user-area-language-\", language_r16.name.slice(0, 2), \"\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(4, _c26, ctx_r1.identityService.getUser().culture.slice(0, 2) === language_r16.name.slice(0, 2)));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(language_r16.name.slice(0, 2));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n const _r14 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 11)(1, \"div\", 45);\n i0.ɵɵlistener(\"mouseover\", function UserAreaComponent_ng_template_4_Conditional_6_Template_div_mouseover_1_listener() {\n i0.ɵɵrestoreView(_r14);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.openLanguageMenu());\n })(\"mouseout\", function UserAreaComponent_ng_template_4_Conditional_6_Template_div_mouseout_1_listener() {\n i0.ɵɵrestoreView(_r14);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.closeLanguageMenu());\n })(\"click\", function UserAreaComponent_ng_template_4_Conditional_6_Template_div_click_1_listener($event) {\n i0.ɵɵrestoreView(_r14);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.toggleLanguageMenu($event));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_6_Template_div_keydown_1_listener($event) {\n i0.ɵɵrestoreView(_r14);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(2, \"div\", 26);\n i0.ɵɵelementStart(3, \"div\", 27);\n i0.ɵɵtext(4);\n i0.ɵɵpipe(5, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(6, \"div\", 28);\n i0.ɵɵlistener(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_6_Template_div_keydown_6_listener($event) {\n i0.ɵɵrestoreView(_r14);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵrepeaterCreate(7, UserAreaComponent_ng_template_4_Conditional_6_For_8_Template, 3, 6, \"div\", 46, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"navigationFocusChildOption\", true);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 3, \"shell.components.RES_Shell_Header_User_Change_Language\"));\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(5, _c25, ctx_r1.languageSelectorOpened()));\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx_r1.languages());\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n const _r17 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 48);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_8_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r17);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.openSupportRequestModal());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_8_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r17);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 49);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_User_SupportRequest\"));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n const _r18 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 50);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_9_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r18);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.toggleLiveChat());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_9_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r18);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 51);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_User_SupportChat\"));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n const _r19 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 52);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_10_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r19);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.triggerUserPilot());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_10_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r19);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 53);\n i0.ɵɵelementStart(2, \"div\", 54);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_TopBar_RightItem_Resource_Center\"), \" \");\n }\n}\nfunction UserAreaComponent_ng_template_4_For_12_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r20 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 56);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_For_12_Conditional_0_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r20);\n const item_r21 = i0.ɵɵnextContext().$implicit;\n return i0.ɵɵresetView(item_r21.action());\n })(\"keydown\", function UserAreaComponent_ng_template_4_For_12_Conditional_0_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r20);\n const ctx_r1 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 57);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const item_r21 = i0.ɵɵnextContext().$implicit;\n i0.ɵɵattributeInterpolate1(\"data-testid\", \"user-area-help-page-\", item_r21.elementId, \"\");\n i0.ɵɵpropertyInterpolate(\"id\", item_r21.elementId);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(6, _c27, item_r21.isDisabled()));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", item_r21.iconClass);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(item_r21.title);\n }\n}\nfunction UserAreaComponent_ng_template_4_For_12_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, UserAreaComponent_ng_template_4_For_12_Conditional_0_Template, 4, 8, \"div\", 55);\n }\n if (rf & 2) {\n const item_r21 = ctx.$implicit;\n i0.ɵɵconditional(item_r21.canBeMounted() ? 0 : -1);\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_13_Template(rf, ctx) {\n if (rf & 1) {\n const _r22 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 58);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_13_Template_div_click_0_listener($event) {\n i0.ɵɵrestoreView(_r22);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.navigateTo($event, ctx_r1.applicationsExternalUri, true));\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_13_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r22);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 59);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_App_Store\"));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_14_Template(rf, ctx) {\n if (rf & 1) {\n const _r23 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 60);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_14_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r23);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.openAboutModal());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_14_Template_div_keydown_0_listener($event) {\n i0.ɵɵrestoreView(_r23);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(1, \"div\", 61);\n i0.ɵɵelementStart(2, \"div\", 27);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Shell_Header_About\"));\n }\n}\nfunction UserAreaComponent_ng_template_4_Conditional_15_Template(rf, ctx) {\n if (rf & 1) {\n const _r24 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 11)(1, \"div\", 62);\n i0.ɵɵlistener(\"click\", function UserAreaComponent_ng_template_4_Conditional_15_Template_div_click_1_listener() {\n i0.ɵɵrestoreView(_r24);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.signOut());\n })(\"keydown\", function UserAreaComponent_ng_template_4_Conditional_15_Template_div_keydown_1_listener($event) {\n i0.ɵɵrestoreView(_r24);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onKeydown($event));\n });\n i0.ɵɵelement(2, \"div\", 63);\n i0.ɵɵelementStart(3, \"div\", 27);\n i0.ɵɵtext(4);\n i0.ɵɵpipe(5, \"priI18n\");\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(4);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 1, \"shell.components.RES_Shell_Header_User_Logout\"));\n }\n}\nfunction UserAreaComponent_ng_template_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r5 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 8);\n i0.ɵɵlistener(\"scroll\", function UserAreaComponent_ng_template_4_Template_div_scroll_0_listener($event) {\n i0.ɵɵrestoreView(_r5);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.scrollPerformed($event));\n });\n i0.ɵɵtemplate(1, UserAreaComponent_ng_template_4_Conditional_1_Template, 9, 14, \"div\", 9)(2, UserAreaComponent_ng_template_4_Conditional_2_Template, 3, 1, \"div\", 10)(3, UserAreaComponent_ng_template_4_Conditional_3_Template, 3, 2, \"div\", 11)(4, UserAreaComponent_ng_template_4_Conditional_4_Template, 4, 8)(5, UserAreaComponent_ng_template_4_Conditional_5_Template, 15, 19, \"div\", 12)(6, UserAreaComponent_ng_template_4_Conditional_6_Template, 9, 7, \"div\", 11);\n i0.ɵɵelementStart(7, \"div\", 13);\n i0.ɵɵtemplate(8, UserAreaComponent_ng_template_4_Conditional_8_Template, 5, 3, \"div\", 14)(9, UserAreaComponent_ng_template_4_Conditional_9_Template, 5, 3, \"div\", 15)(10, UserAreaComponent_ng_template_4_Conditional_10_Template, 5, 3, \"div\", 16);\n i0.ɵɵrepeaterCreate(11, UserAreaComponent_ng_template_4_For_12_Template, 1, 1, null, null, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵtemplate(13, UserAreaComponent_ng_template_4_Conditional_13_Template, 5, 3, \"div\", 17)(14, UserAreaComponent_ng_template_4_Conditional_14_Template, 5, 3, \"div\", 18);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(15, UserAreaComponent_ng_template_4_Conditional_15_Template, 6, 3, \"div\", 11);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasProfileMenu() ? 1 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasRolesMenu() ? 2 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasSubscriptions() ? 3 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!ctx_r1.greaterThanXlBreakpoint() ? 4 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasThemeMenu() ? 5 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasLanguageMenu() ? 6 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.hasSupportButton() ? 8 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasChatButton() ? 9 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasResourceCenterButton() ? 10 : -1);\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx_r1.helpPageItems);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.hasAppStore() ? 13 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasAboutButton() ? 14 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.hasLogoutButton() ? 15 : -1);\n }\n}\nfunction PriUpgradeComponent_Conditional_0_Case_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 3)(1, \"span\", 4);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"span\", 5);\n i0.ɵɵtext(5);\n i0.ɵɵpipe(6, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(7, \"span\", 5);\n i0.ɵɵtext(8);\n i0.ɵɵpipe(9, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(10, \"div\", 6);\n i0.ɵɵelement(11, \"po-loading-spinner\", 7)(12, \"span\", 8);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 5, \"shell.components.RES_Application_Update_Starting_Title\"));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 7, \"shell.components.RES_Application_Update_Starting_Flag_First_Subtitle\"));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 9, \"shell.components.RES_Application_Update_Starting_Flag_Last_Subtitle\"));\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"type\", ctx_r0.loadingSpinnerType);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"innerHtml\", ctx_r0.message, i0.ɵɵsanitizeHtml);\n }\n}\nfunction PriUpgradeComponent_Conditional_0_Case_4_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵelement(1, \"po-success-svg\", 9);\n i0.ɵɵelementStart(2, \"span\", 10);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 1, \"shell.components.RES_Application_Update_Finished_Default_Title\"));\n }\n}\nfunction PriUpgradeComponent_Conditional_0_Case_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵelement(1, \"po-error-svg\", 9);\n i0.ɵɵelementStart(2, \"span\", 10);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"span\", 11);\n i0.ɵɵtext(6);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 2, \"shell.components.RES_Application_Update_Finished_With_Error\"));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 4, \"shell.components.RES_Application_Update_Finished_With_Error_Detail\"));\n }\n}\nfunction PriUpgradeComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"section\", 0)(1, \"div\", 1);\n i0.ɵɵelement(2, \"po-cegid-logo-svg\");\n i0.ɵɵtemplate(3, PriUpgradeComponent_Conditional_0_Case_3_Template, 13, 11)(4, PriUpgradeComponent_Conditional_0_Case_4_Template, 5, 3, \"div\", 2)(5, PriUpgradeComponent_Conditional_0_Case_5_Template, 8, 6, \"div\", 2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n let tmp_1_0;\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵadvance(3);\n i0.ɵɵconditional((tmp_1_0 = ctx_r0.currentState) === ctx_r0.upgradeStatusEnum.Init ? 3 : tmp_1_0 === ctx_r0.upgradeStatusEnum.Completed ? 4 : tmp_1_0 === ctx_r0.upgradeStatusEnum.CompletedWithError ? 5 : -1);\n }\n}\nfunction RightPanelComponent_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 7);\n i0.ɵɵlistener(\"click\", function RightPanelComponent_Conditional_7_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.onOpenSettingsClick());\n });\n i0.ɵɵelementEnd();\n }\n}\nfunction RightPanelComponent_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 6);\n i0.ɵɵelementContainer(1, 8);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngTemplateOutlet\", ctx_r1.config.body);\n }\n}\nconst _c28 = a0 => ({\n menuItem: a0\n});\nconst _c29 = (a0, a1) => ({\n menuItem: a0,\n noIcons: a1\n});\nconst _c30 = a0 => ({\n menuItem: a0,\n noIcons: true\n});\nfunction MenuComponent_For_1_ng_container_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0);\n }\n}\nfunction MenuComponent_For_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, MenuComponent_For_1_ng_container_0_Template, 1, 0, \"ng-container\", 3);\n }\n if (rf & 2) {\n const menuItem_r1 = ctx.$implicit;\n i0.ɵɵnextContext();\n const menuItemTmpl_r2 = i0.ɵɵreference(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", menuItemTmpl_r2)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction1(2, _c28, menuItem_r1));\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_0_ng_container_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0);\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 7);\n i0.ɵɵpipe(1, \"includes\");\n i0.ɵɵtemplate(2, MenuComponent_ng_template_2_Conditional_0_ng_container_2_Template, 1, 0, \"ng-container\", 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n const menuItem_r4 = ctx_r2.menuItem;\n const noIcons_r5 = ctx_r2.noIcons;\n const ctx_r5 = i0.ɵɵnextContext();\n const menuItemContentTemplate_r7 = i0.ɵɵreference(5);\n i0.ɵɵclassMap(ctx_r5.menuItemClass);\n i0.ɵɵclassProp(\"activatable\", (menuItem_r4.menuItems == null ? null : menuItem_r4.menuItems.length) > 0)(\"invalid\", !menuItem_r4.uri && !(menuItem_r4.menuItems == null ? null : menuItem_r4.menuItems.length))(\"minimized\", ctx_r5.minimized())(\"active\", i0.ɵɵpipeBind2(1, 14, ctx_r5.activeMenuItemsIds(), menuItem_r4.id));\n i0.ɵɵproperty(\"id\", ctx_r5.menuElementIdPrefix + menuItem_r4.id);\n i0.ɵɵattribute(\"data-testid\", ctx_r5.menuElementIdPrefix + menuItem_r4.id);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", menuItemContentTemplate_r7)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(17, _c29, menuItem_r4, noIcons_r5));\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_2_ng_container_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0);\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"a\", 8);\n i0.ɵɵpipe(1, \"treatUri\");\n i0.ɵɵtemplate(2, MenuComponent_ng_template_2_Conditional_2_ng_container_2_Template, 1, 0, \"ng-container\", 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n const menuItem_r4 = ctx_r2.menuItem;\n const noIcons_r5 = ctx_r2.noIcons;\n const ctx_r5 = i0.ɵɵnextContext();\n const menuItemContentTemplate_r7 = i0.ɵɵreference(5);\n i0.ɵɵclassMap(ctx_r5.menuItemClass + \" selectable\");\n i0.ɵɵclassProp(\"minimized\", ctx_r5.minimized());\n i0.ɵɵproperty(\"id\", ctx_r5.menuElementIdPrefix + menuItem_r4.id)(\"href\", i0.ɵɵpipeBind1(1, 9, menuItem_r4.uri), i0.ɵɵsanitizeUrl);\n i0.ɵɵattribute(\"data-testid\", ctx_r5.menuElementIdPrefix + menuItem_r4.id);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", menuItemContentTemplate_r7)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(11, _c29, menuItem_r4, noIcons_r5));\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_3_ng_container_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0);\n }\n}\nfunction MenuComponent_ng_template_2_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"a\", 9);\n i0.ɵɵpipe(1, \"treatUri\");\n i0.ɵɵpipe(2, \"uriParams\");\n i0.ɵɵtemplate(3, MenuComponent_ng_template_2_Conditional_3_ng_container_3_Template, 1, 0, \"ng-container\", 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n const menuItem_r4 = ctx_r2.menuItem;\n const noIcons_r5 = ctx_r2.noIcons;\n const ctx_r5 = i0.ɵɵnextContext();\n const menuItemContentTemplate_r7 = i0.ɵɵreference(5);\n i0.ɵɵclassMap(ctx_r5.menuItemClass + \" selectable\");\n i0.ɵɵclassProp(\"minimized\", ctx_r5.minimized())(\"selected\", ctx_r5.selectedItemId() === menuItem_r4.id && !ctx_r5.accessedFromSidebarItem());\n i0.ɵɵproperty(\"id\", ctx_r5.menuElementIdPrefix + menuItem_r4.id)(\"routerLink\", i0.ɵɵpipeBind1(1, 12, menuItem_r4.uri))(\"queryParams\", i0.ɵɵpipeBind1(2, 14, menuItem_r4.uri));\n i0.ɵɵattribute(\"data-testid\", ctx_r5.menuElementIdPrefix + menuItem_r4.id);\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", menuItemContentTemplate_r7)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(16, _c29, menuItem_r4, noIcons_r5));\n }\n}\nfunction MenuComponent_ng_template_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, MenuComponent_ng_template_2_Conditional_0_Template, 3, 20, \"div\", 4);\n i0.ɵɵpipe(1, \"isExternalUri\");\n i0.ɵɵtemplate(2, MenuComponent_ng_template_2_Conditional_2_Template, 3, 14, \"a\", 5)(3, MenuComponent_ng_template_2_Conditional_3_Template, 4, 19, \"a\", 6);\n }\n if (rf & 2) {\n const menuItem_r4 = ctx.menuItem;\n i0.ɵɵconditional(!menuItem_r4.uri || (menuItem_r4.menuItems == null ? null : menuItem_r4.menuItems.length) > 0 ? 0 : i0.ɵɵpipeBind1(1, 1, menuItem_r4.uri) ? 2 : 3);\n }\n}\nfunction MenuComponent_ng_template_4_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 12);\n i0.ɵɵelement(1, \"i\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const menuItem_r9 = i0.ɵɵnextContext().menuItem;\n i0.ɵɵadvance();\n i0.ɵɵclassMap(menuItem_r9.icon || ((menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length) > 0 ? \"icon-folder\" : \"icon-description\"));\n }\n}\nfunction MenuComponent_ng_template_4_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 14);\n i0.ɵɵelement(1, \"i\", 16);\n i0.ɵɵelementEnd();\n }\n}\nfunction MenuComponent_ng_template_4_Conditional_10_For_2_ng_container_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0);\n }\n}\nfunction MenuComponent_ng_template_4_Conditional_10_For_2_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, MenuComponent_ng_template_4_Conditional_10_For_2_ng_container_0_Template, 1, 0, \"ng-container\", 3);\n }\n if (rf & 2) {\n const child_r11 = ctx.$implicit;\n i0.ɵɵnextContext(3);\n const menuItemTmpl_r2 = i0.ɵɵreference(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", menuItemTmpl_r2)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction1(2, _c30, child_r11));\n }\n}\nfunction MenuComponent_ng_template_4_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 15);\n i0.ɵɵrepeaterCreate(1, MenuComponent_ng_template_4_Conditional_10_For_2_Template, 1, 4, \"ng-container\", null, _forTrack0);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const menuItem_r9 = i0.ɵɵnextContext().menuItem;\n i0.ɵɵproperty(\"id\", \"children-\" + menuItem_r9.id);\n i0.ɵɵadvance();\n i0.ɵɵrepeater(menuItem_r9.menuItems);\n }\n}\nfunction MenuComponent_ng_template_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r8 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 10, 2);\n i0.ɵɵpipe(2, \"includes\");\n i0.ɵɵpipe(3, \"isExternalUri\");\n i0.ɵɵlistener(\"click\", function MenuComponent_ng_template_4_Template_div_click_0_listener($event) {\n const menuItem_r9 = i0.ɵɵrestoreView(_r8).menuItem;\n const ctx_r5 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r5.menuItemClicked($event, menuItem_r9));\n })(\"keydown.enter\", function MenuComponent_ng_template_4_Template_div_keydown_enter_0_listener() {\n i0.ɵɵrestoreView(_r8);\n const menuItemContainer_r10 = i0.ɵɵreference(1);\n const ctx_r5 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r5.sidebarService.handleItemContainerKeydown(menuItemContainer_r10));\n })(\"keydown.space\", function MenuComponent_ng_template_4_Template_div_keydown_space_0_listener() {\n i0.ɵɵrestoreView(_r8);\n const menuItemContainer_r10 = i0.ɵɵreference(1);\n const ctx_r5 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r5.sidebarService.handleItemContainerKeydown(menuItemContainer_r10));\n });\n i0.ɵɵelementStart(4, \"div\", 11);\n i0.ɵɵtemplate(5, MenuComponent_ng_template_4_Conditional_5_Template, 2, 3, \"div\", 12);\n i0.ɵɵelementStart(6, \"span\", 13);\n i0.ɵɵtext(7);\n i0.ɵɵpipe(8, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(9, MenuComponent_ng_template_4_Conditional_9_Template, 2, 0, \"div\", 14);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(10, MenuComponent_ng_template_4_Conditional_10_Template, 3, 1, \"div\", 15);\n i0.ɵɵpipe(11, \"includes\");\n }\n if (rf & 2) {\n const menuItem_r9 = ctx.menuItem;\n const noIcons_r12 = ctx.noIcons;\n const ctx_r5 = i0.ɵɵnextContext();\n i0.ɵɵclassMap(ctx_r5.focusableItemClass);\n i0.ɵɵclassProp(\"activatable-item\", (menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length) > 0)(\"selectable-item\", !(menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length))(\"active\", (menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length) > 0 && i0.ɵɵpipeBind2(2, 14, ctx_r5.activeMenuItemsIds(), menuItem_r9.id))(\"selected\", ctx_r5.selectedItemId() === menuItem_r9.id && !ctx_r5.accessedFromSidebarItem() && !i0.ɵɵpipeBind1(3, 17, menuItem_r9.uri));\n i0.ɵɵadvance(5);\n i0.ɵɵconditional(!noIcons_r12 ? 5 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(8, 19, menuItem_r9.caption), \"\");\n i0.ɵɵadvance(2);\n i0.ɵɵconditional((menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length) > 0 ? 9 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional((menuItem_r9.menuItems == null ? null : menuItem_r9.menuItems.length) > 0 && i0.ɵɵpipeBind2(11, 21, ctx_r5.activeMenuItemsIds(), menuItem_r9.id) ? 10 : -1);\n }\n}\nconst _c31 = [\"viewAllButton\"];\nconst _c32 = [\"sidebarItemContainer\"];\nconst _c33 = [\"childElement\"];\nconst _forTrack1 = ($index, $item) => $item.group;\nconst _c34 = (a0, a1) => ({\n $implicit: a0,\n selected: a1\n});\nconst _c35 = (a0, a1, a2, a3) => ({\n text: a0,\n size: a1,\n type: a2,\n color: a3\n});\nfunction SidebarItemComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"button\", 8);\n i0.ɵɵelementContainer(1, 9);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n const sidebarItemContainerTemplate_r2 = i0.ɵɵreference(3);\n i0.ɵɵclassProp(\"active\", ctx_r0.active())(\"minimized\", ctx_r0.minimized());\n i0.ɵɵproperty(\"disabled\", ctx_r0.disabled() || !ctx_r0.hasValidChildren());\n i0.ɵɵattribute(\"data-testid\", ctx_r0.sidebarItemType());\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngTemplateOutlet\", sidebarItemContainerTemplate_r2)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction1(8, _c6, ctx_r0.active()));\n }\n}\nfunction SidebarItemComponent_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"a\", 10);\n i0.ɵɵpipe(1, \"treatUri\");\n i0.ɵɵpipe(2, \"uriParams\");\n i0.ɵɵelementContainer(3, 9);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n const sidebarItemContainerTemplate_r2 = i0.ɵɵreference(3);\n i0.ɵɵclassProp(\"minimized\", ctx_r0.minimized())(\"selected\", ctx_r0.selectedItemId() === ctx_r0.id);\n i0.ɵɵproperty(\"routerLink\", i0.ɵɵpipeBind1(1, 9, ctx_r0.uri()))(\"queryParams\", i0.ɵɵpipeBind1(2, 11, ctx_r0.uri()));\n i0.ɵɵattribute(\"data-testid\", ctx_r0.sidebarItemType());\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"ngTemplateOutlet\", sidebarItemContainerTemplate_r2)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction1(13, _c26, ctx_r0.selectedItemId() === ctx_r0.id));\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\", 20);\n i0.ɵɵtext(1);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const child_r6 = i0.ɵɵnextContext().$implicit;\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(2, 1, child_r6.secondaryText), \" \");\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 21);\n i0.ɵɵelement(1, \"po-loading-spinner\", 23);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(4);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"type\", ctx_r0.LoadingSpinnerTypeEnum.Circular)(\"size\", ctx_r0.LoadingSpinnerSizeEnum.Small);\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_11_Template(rf, ctx) {\n if (rf & 1) {\n const _r8 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"i\", 24);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_11_Template_i_click_0_listener($event) {\n i0.ɵɵrestoreView(_r8);\n const child_r6 = i0.ɵɵnextContext().$implicit;\n $event.stopPropagation();\n return i0.ɵɵresetView(child_r6.onRemove());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"matTooltip\", i0.ɵɵpipeBind1(1, 1, \"shell.components.RES_Sidebar_Item_Child_Remove\"));\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r5 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 17, 3);\n i0.ɵɵlistener(\"mouseenter\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_mouseenter_0_listener() {\n const child_r6 = i0.ɵɵrestoreView(_r5).$implicit;\n return i0.ɵɵresetView(child_r6.hovered == null ? null : child_r6.hovered.set == null ? null : child_r6.hovered.set(true));\n })(\"mouseleave\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_mouseleave_0_listener() {\n const child_r6 = i0.ɵɵrestoreView(_r5).$implicit;\n return i0.ɵɵresetView(child_r6.hovered == null ? null : child_r6.hovered.set == null ? null : child_r6.hovered.set(false));\n })(\"focus\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_focus_0_listener() {\n const child_r6 = i0.ɵɵrestoreView(_r5).$implicit;\n return i0.ɵɵresetView(child_r6.focused == null ? null : child_r6.focused.set == null ? null : child_r6.focused.set(true));\n })(\"blur\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_blur_0_listener() {\n const child_r6 = i0.ɵɵrestoreView(_r5).$implicit;\n return i0.ɵɵresetView(child_r6.focused == null ? null : child_r6.focused.set == null ? null : child_r6.focused.set(false));\n })(\"keydown.enter\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_keydown_enter_0_listener() {\n i0.ɵɵrestoreView(_r5);\n const routerLinkElement_r7 = i0.ɵɵreference(3);\n return i0.ɵɵresetView(routerLinkElement_r7.click());\n })(\"keydown.space\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_div_keydown_space_0_listener() {\n i0.ɵɵrestoreView(_r5);\n const routerLinkElement_r7 = i0.ɵɵreference(3);\n return i0.ɵɵresetView(routerLinkElement_r7.click());\n });\n i0.ɵɵelementStart(2, \"a\", 18, 4);\n i0.ɵɵpipe(4, \"treatUri\");\n i0.ɵɵpipe(5, \"uriParams\");\n i0.ɵɵlistener(\"click\", function SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template_a_click_2_listener($event) {\n const child_r6 = i0.ɵɵrestoreView(_r5).$implicit;\n const ctx_r0 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r0.onChildItemClick($event, child_r6));\n });\n i0.ɵɵelementStart(6, \"span\", 19);\n i0.ɵɵtext(7);\n i0.ɵɵpipe(8, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(9, SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_9_Template, 3, 3, \"span\", 20);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(10, SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_10_Template, 2, 2, \"div\", 21)(11, SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_11_Template, 2, 3, \"i\", 22);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const child_r6 = ctx.$implicit;\n const selected_r9 = ctx.selected;\n const ctx_r0 = i0.ɵɵnextContext(3);\n i0.ɵɵclassProp(\"removable\", child_r6.onRemove)(\"selected\", selected_r9 && !ctx_r0.minimized())(\"has-secondary-text\", child_r6.secondaryText);\n i0.ɵɵproperty(\"id\", child_r6.id);\n i0.ɵɵadvance(2);\n i0.ɵɵclassProp(\"selected\", selected_r9)(\"disabled\", child_r6.removing == null ? null : child_r6.removing());\n i0.ɵɵproperty(\"routerLink\", i0.ɵɵpipeBind1(4, 16, child_r6.uri))(\"queryParams\", i0.ɵɵpipeBind1(5, 18, child_r6.uri));\n i0.ɵɵadvance(5);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(8, 20, child_r6.caption), \" \");\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(child_r6.secondaryText ? 9 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional((child_r6.removing == null ? null : child_r6.removing()) ? 10 : !selected_r9 && child_r6.onRemove && ((child_r6.hovered == null ? null : child_r6.hovered()) || (child_r6.focused == null ? null : child_r6.focused())) ? 11 : -1);\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_For_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0, 9);\n }\n if (rf & 2) {\n const child_r10 = ctx.$implicit;\n i0.ɵɵnextContext(3);\n const childTemplate_r11 = i0.ɵɵreference(1);\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", childTemplate_r11)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(2, _c34, child_r10, ctx_r0.selectedItemId() === child_r10.id));\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"span\", 25);\n i0.ɵɵtext(1);\n i0.ɵɵpipe(2, \"priI18n\");\n i0.ɵɵpipe(3, \"uppercase\");\n i0.ɵɵelementEnd();\n i0.ɵɵrepeaterCreate(4, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_For_5_Template, 1, 5, \"ng-container\", 9, _forTrack0);\n }\n if (rf & 2) {\n const groupedChildren_r12 = ctx.$implicit;\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(3, 3, i0.ɵɵpipeBind1(2, 1, groupedChildren_r12.group)), \" \");\n i0.ɵɵadvance(3);\n i0.ɵɵrepeater(groupedChildren_r12.children);\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵrepeaterCreate(0, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_Template, 6, 5, null, null, _forTrack1);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(3);\n i0.ɵɵrepeater(ctx_r0.groupedChildren());\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_For_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0, 9);\n }\n if (rf & 2) {\n const child_r13 = ctx.$implicit;\n i0.ɵɵnextContext(2);\n const childTemplate_r11 = i0.ɵɵreference(1);\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"ngTemplateOutlet\", childTemplate_r11)(\"ngTemplateOutletContext\", i0.ɵɵpureFunction2(2, _c34, child_r13, ctx_r0.selectedItemId() === child_r13.id));\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵrepeaterCreate(0, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_For_1_Template, 1, 5, \"ng-container\", 9, _forTrack0);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(3);\n i0.ɵɵrepeater(ctx_r0.visibleChildren());\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r14 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 26)(1, \"po-button\", 27, 5);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵlistener(\"click\", function SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template_po_button_click_1_listener($event) {\n i0.ɵɵrestoreView(_r14);\n const ctx_r0 = i0.ɵɵnextContext(3);\n $event.stopPropagation();\n return i0.ɵɵresetView(ctx_r0.showMaxVisibleChildren.set(true));\n })(\"keydown.space\", function SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template_po_button_keydown_space_1_listener() {\n i0.ɵɵrestoreView(_r14);\n const ctx_r0 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r0.handleViewAllButtonKeydown(ctx_r0.viewAllButtonElement()));\n })(\"keydown.enter\", function SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template_po_button_keydown_enter_1_listener() {\n i0.ɵɵrestoreView(_r14);\n const ctx_r0 = i0.ɵɵnextContext(3);\n return i0.ɵɵresetView(ctx_r0.handleViewAllButtonKeydown(ctx_r0.viewAllButtonElement()));\n });\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(3);\n i0.ɵɵclassProp(\"hidden\", ctx_r0.minimized());\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction4(5, _c35, i0.ɵɵpipeBind1(3, 3, \"shell.components.RES_Sidebar_View_All_Caption\"), ctx_r0.FieldSizeEnum.Small, ctx_r0.ButtonTypeEnum.Text, ctx_r0.ButtonColorEnum.Theme));\n }\n}\nfunction SidebarItemComponent_ng_template_2_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template, 12, 22, \"ng-template\", null, 2, i0.ɵɵtemplateRefExtractor);\n i0.ɵɵelementStart(2, \"div\", 15);\n i0.ɵɵtemplate(3, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_Template, 2, 0)(4, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_Template, 2, 0);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(5, SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template, 4, 10, \"div\", 16);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(3);\n i0.ɵɵconditional(ctx_r0.hasGroups() ? 3 : 4);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r0.canRenderViewAllContainer() ? 5 : -1);\n }\n}\nfunction SidebarItemComponent_ng_template_2_Template(rf, ctx) {\n if (rf & 1) {\n const _r3 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 11, 1);\n i0.ɵɵlistener(\"click\", function SidebarItemComponent_ng_template_2_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r0 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r0.onAnchorClick());\n })(\"keydown.enter\", function SidebarItemComponent_ng_template_2_Template_div_keydown_enter_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const sidebarItemContainer_r4 = i0.ɵɵreference(1);\n const ctx_r0 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r0.sidebarService.handleItemContainerKeydown(sidebarItemContainer_r4));\n })(\"keydown.space\", function SidebarItemComponent_ng_template_2_Template_div_keydown_space_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const sidebarItemContainer_r4 = i0.ɵɵreference(1);\n const ctx_r0 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r0.sidebarService.handleItemContainerKeydown(sidebarItemContainer_r4));\n });\n i0.ɵɵelementStart(2, \"div\", 12)(3, \"div\", 13);\n i0.ɵɵelement(4, \"i\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"span\", 14);\n i0.ɵɵtext(6);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵelementEnd()()();\n i0.ɵɵtemplate(8, SidebarItemComponent_ng_template_2_Conditional_8_Template, 6, 2);\n }\n if (rf & 2) {\n const active_r15 = ctx.active;\n const selected_r16 = ctx.selected;\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵclassProp(\"active\", active_r15)(\"selected\", selected_r16)(\"activatable-item\", ctx_r0.isExpansible())(\"selectable-item\", !ctx_r0.isExpansible());\n i0.ɵɵproperty(\"id\", ctx_r0.sidebarItemType());\n i0.ɵɵattribute(\"tabindex\", ctx_r0.disabled() ? -1 : 0);\n i0.ɵɵadvance(4);\n i0.ɵɵclassMap(ctx_r0.icon());\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate1(\" \", i0.ɵɵpipeBind1(7, 15, ctx_r0.caption()), \" \");\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r0.canRenderChildren() ? 8 : -1);\n }\n}\nconst _c36 = [\"sidebarTop\"];\nconst _c37 = [\"sidebarItem\"];\nfunction SidebarComponent_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n const _r2 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-sidebar-item\", 13, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Conditional_6_Template_po_sidebar_item_sidebarItemClick_0_listener() {\n i0.ɵɵrestoreView(_r2);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Conditional_6_Template_po_sidebar_item_focusLimitReached_0_listener($event) {\n i0.ɵɵrestoreView(_r2);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"minimized\", ctx_r2.sidebarItemsIsMinimized());\n }\n}\nfunction SidebarComponent_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n const _r4 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-sidebar-item\", 14, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Conditional_7_Template_po_sidebar_item_sidebarItemClick_0_listener() {\n i0.ɵɵrestoreView(_r4);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Conditional_7_Template_po_sidebar_item_focusLimitReached_0_listener($event) {\n i0.ɵɵrestoreView(_r4);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"minimized\", ctx_r2.sidebarItemsIsMinimized());\n }\n}\nfunction SidebarComponent_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n const _r5 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-sidebar-item\", 15, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Conditional_8_Template_po_sidebar_item_sidebarItemClick_0_listener() {\n i0.ɵɵrestoreView(_r5);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Conditional_8_Template_po_sidebar_item_focusLimitReached_0_listener($event) {\n i0.ɵɵrestoreView(_r5);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"minimized\", ctx_r2.sidebarItemsIsMinimized());\n }\n}\nfunction SidebarComponent_Conditional_11_Template(rf, ctx) {\n if (rf & 1) {\n const _r6 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 11)(1, \"po-search\", 16, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Conditional_11_Template_po_search_sidebarItemClick_1_listener() {\n i0.ɵɵrestoreView(_r6);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Conditional_11_Template_po_search_focusLimitReached_1_listener($event) {\n i0.ɵɵrestoreView(_r6);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd()();\n }\n}\nfunction SidebarComponent_Conditional_12_Template(rf, ctx) {\n if (rf & 1) {\n const _r7 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 12)(1, \"po-menu\", 17, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Conditional_12_Template_po_menu_sidebarItemClick_1_listener() {\n i0.ɵɵrestoreView(_r7);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Conditional_12_Template_po_menu_focusLimitReached_1_listener($event) {\n i0.ɵɵrestoreView(_r7);\n const ctx_r2 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r2.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r2 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"minimized\", ctx_r2.sidebarItemsIsMinimized());\n }\n}\nconst _c38 = [\"cfsChatbot\"];\nfunction CfsChatbotIframeComponent_ng_template_0_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵelement(1, \"po-loading-spinner\", 3);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"type\", ctx_r0.LoadingSpinnerTypeEnum.Indeterminate)(\"size\", ctx_r0.LoadingSpinnerSizeEnum.Large);\n }\n}\nfunction CfsChatbotIframeComponent_ng_template_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, CfsChatbotIframeComponent_ng_template_0_Conditional_0_Template, 2, 2, \"div\", 1);\n i0.ɵɵelement(1, \"cfs-chatbot-iframe\", 2);\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵconditional(ctx_r0.loading() ? 0 : -1);\n i0.ɵɵadvance();\n i0.ɵɵclassProp(\"hidden\", ctx_r0.loading());\n }\n}\nconst _c39 = a0 => ({\n \"show-separator\": a0\n});\nconst _c40 = a0 => ({\n \"is-open\": a0\n});\nfunction TopbarComponent_Conditional_3_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 17);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function TopbarComponent_Conditional_3_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.toggleSidebarState());\n });\n i0.ɵɵelement(2, \"i\", 18);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"matTooltip\", i0.ɵɵpipeBind1(1, 2, \"shell.components.RES_TopBar_AccessMenu\"))(\"navigationOrientation\", ctx_r1.OrientationEnum.Landscape);\n }\n}\nfunction TopbarComponent_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-cegid-logo-svg\", 6);\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"width\", \"60px\")(\"height\", \"32px\");\n }\n}\nfunction TopbarComponent_Conditional_6_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 7)(1, \"span\");\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(ctx_r1.brandTitle);\n }\n}\nfunction TopbarComponent_Conditional_7_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 8)(1, \"span\");\n i0.ɵɵtext(2);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(2, _c39, ctx_r1.brandTitle.length > 0));\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(ctx_r1.brandLabel);\n }\n}\nfunction TopbarComponent_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-search\", 10);\n }\n}\nfunction TopbarComponent_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-environment-selector-topbar\", 11);\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"dropDownMenuChainID\", ctx_r1.dropDownMenuChainID)(\"dropDownMenuChildLevel\", 0);\n }\n}\nfunction TopbarComponent_Conditional_11_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-cfs-chatbot-wrapper\");\n }\n}\nfunction TopbarComponent_Conditional_12_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-applications-menu-topbar\", 12);\n }\n}\nfunction TopbarComponent_Conditional_13_Template(rf, ctx) {\n if (rf & 1) {\n const _r3 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 19);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function TopbarComponent_Conditional_13_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.toggleLiveChat());\n });\n i0.ɵɵelement(2, \"i\", 20);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"matTooltip\", i0.ɵɵpipeBind1(1, 3, \"shell.components.RES_TopBar_RightItem_SupportChat\"))(\"ngClass\", i0.ɵɵpureFunction1(5, _c40, ctx_r1.zopimService.isChatOpen))(\"navigationOrientation\", ctx_r1.OrientationEnum.Landscape);\n }\n}\nfunction TopbarComponent_Conditional_14_Template(rf, ctx) {\n if (rf & 1) {\n const _r4 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 21);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function TopbarComponent_Conditional_14_Template_div_click_0_listener() {\n i0.ɵɵrestoreView(_r4);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.triggerUserPilot());\n });\n i0.ɵɵelement(2, \"i\", 22);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"matTooltip\", i0.ɵɵpipeBind1(1, 2, \"shell.components.RES_TopBar_RightItem_Resource_Center\"))(\"navigationOrientation\", ctx_r1.OrientationEnum.Landscape);\n }\n}\nfunction TopbarComponent_Conditional_15_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 15);\n i0.ɵɵelement(1, \"po-notifications\", 23, 0);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const pnsComponent_r5 = i0.ɵɵreference(2);\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(2, _c40, pnsComponent_r5.panelIsOpened));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"pnsUri\", ctx_r1.pnsUri);\n }\n}\nfunction TopbarComponent_Conditional_16_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 16);\n i0.ɵɵelement(1, \"po-user-area\", 24);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"topBarSettings\", ctx_r1.topBarSettings);\n }\n}\nconst _c41 = a0 => ({\n \"is-lock-header\": a0\n});\nconst _c42 = a0 => ({\n disabled: a0\n});\nfunction ViewTitleComponent_Conditional_0_Conditional_5_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"i\", 9);\n i0.ɵɵlistener(\"click\", function ViewTitleComponent_Conditional_0_Conditional_5_Template_i_click_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.toggleContextBar());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(1, _c42, !ctx_r1.enableContextBar()));\n }\n}\nfunction ViewTitleComponent_Conditional_0_Conditional_8_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 6)(1, \"span\", 10);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, \"shell.components.RES_EntityView_IsDeletedEntity\"));\n }\n}\nfunction ViewTitleComponent_Conditional_0_Conditional_9_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 7)(1, \"span\", 11);\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, \"shell.components.RES_EntityView_IsInactiveEntity\"));\n }\n}\nfunction ViewTitleComponent_Conditional_0_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 8)(1, \"div\", 12)(2, \"span\", 13);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(5, \"span\", 14);\n i0.ɵɵtext(6, \"?\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate1(\" \", ctx_r1.lock.lockReasonTitle || i0.ɵɵpipeBind1(4, 2, \"shell.components.RES_EntityView_IsLockedEntity\"), \" \");\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"matTooltip\", ctx_r1.lock.lockReasonDescription);\n }\n}\nfunction ViewTitleComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1)(2, \"span\", 2);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(5, ViewTitleComponent_Conditional_0_Conditional_5_Template, 1, 3, \"i\", 3);\n i0.ɵɵelement(6, \"po-record-selector\", 4);\n i0.ɵɵelementStart(7, \"div\", 5);\n i0.ɵɵtemplate(8, ViewTitleComponent_Conditional_0_Conditional_8_Template, 4, 3, \"div\", 6)(9, ViewTitleComponent_Conditional_0_Conditional_9_Template, 4, 3, \"div\", 7)(10, ViewTitleComponent_Conditional_0_Conditional_10_Template, 7, 4, \"div\", 8);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(12, _c41, ctx_r1.lock.isLocked));\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"priDropDownEditionHistoryItems\", ctx_r1.historyItems)(\"priDropDownEditionHistoryTransformToLink\", true)(\"origin\", ctx_r1.origin);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 10, ctx_r1.viewTitle));\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.showContextBar() ? 5 : -1);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"outlet\", ctx_r1.outlet);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.showDeletedLabel ? 8 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.showInactiveLabel ? 9 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx_r1.lock.isLocked ? 10 : -1);\n }\n}\nconst _c43 = [\"wrapper\"];\nconst _c44 = (a0, a1) => ({\n \"sidebar-collapsed\": a0,\n \"sidebar-visible\": a1\n});\nconst _c45 = a0 => ({\n \"has-footer\": a0\n});\nconst _c46 = a0 => ({\n \"background-solid\": a0\n});\nfunction LayoutRootComponent_Conditional_0_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r3 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-sidebar\", 7);\n i0.ɵɵlistener(\"sidebarItemClick\", function LayoutRootComponent_Conditional_0_Conditional_4_Template_po_sidebar_sidebarItemClick_0_listener() {\n i0.ɵɵrestoreView(_r3);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.onSidebarItemClick());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"sidebarIsCollapsed\", ctx_r1.sidebarIsCollapsed);\n }\n}\nfunction LayoutRootComponent_Conditional_0_Conditional_10_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\");\n i0.ɵɵelement(1, \"div\", 8);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(1, _c46, !ctx_r1.editorIsVisible()));\n }\n}\nfunction LayoutRootComponent_Conditional_0_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵelement(1, \"po-alert-bar\");\n i0.ɵɵelementStart(2, \"po-topbar\", 2);\n i0.ɵɵlistener(\"changeSidebarState\", function LayoutRootComponent_Conditional_0_Template_po_topbar_changeSidebarState_2_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext();\n return i0.ɵɵresetView(ctx_r1.onToggleSidebarState());\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(3, \"div\", 3);\n i0.ɵɵtemplate(4, LayoutRootComponent_Conditional_0_Conditional_4_Template, 1, 1, \"po-sidebar\", 4);\n i0.ɵɵelementStart(5, \"div\", 5);\n i0.ɵɵelement(6, \"po-view-title\");\n i0.ɵɵelementStart(7, \"div\", 6, 0);\n i0.ɵɵelement(9, \"router-outlet\");\n i0.ɵɵelementEnd()()();\n i0.ɵɵtemplate(10, LayoutRootComponent_Conditional_0_Conditional_10_Template, 2, 3, \"div\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"sidebarIsVisible\", ctx_r1.sidebarIsVisible)(\"sidebarIsCollapsed\", ctx_r1.sidebarIsCollapsed);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.sidebarIsVisible ? 4 : -1);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction2(8, _c44, ctx_r1.sidebarIsCollapsed, ctx_r1.sidebarIsVisible));\n i0.ɵɵadvance(2);\n i0.ɵɵstyleProp(\"margin-bottom\", ctx_r1.actionsHeight, \"px\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(11, _c45, ctx_r1.hasActions));\n i0.ɵɵadvance(3);\n i0.ɵɵconditional((ctx_r1.shellStateService == null ? null : ctx_r1.shellStateService.isLoadingState) || !ctx_r1.editorIsVisible() ? 10 : -1);\n }\n}\nfunction LayoutRootComponent_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵelement(1, \"router-outlet\");\n i0.ɵɵelementEnd();\n }\n}\nconst _c47 = [\"*\"];\nconst _c48 = a0 => ({\n size: a0\n});\nfunction ModalWrapperComponent_Conditional_1_Conditional_4_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-close-button\", 5);\n i0.ɵɵlistener(\"action\", function ModalWrapperComponent_Conditional_1_Conditional_4_Template_po_close_button_action_0_listener() {\n i0.ɵɵrestoreView(_r1);\n const ctx_r1 = i0.ɵɵnextContext(2);\n return i0.ɵɵresetView(ctx_r1.close());\n });\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext(2);\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction1(1, _c48, ctx_r1.FieldsSizeEnum.Small));\n }\n}\nfunction ModalWrapperComponent_Conditional_1_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2)(1, \"div\");\n i0.ɵɵtext(2);\n i0.ɵɵpipe(3, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(4, ModalWrapperComponent_Conditional_1_Conditional_4_Template, 1, 3, \"po-close-button\", 4);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r1 = i0.ɵɵnextContext();\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, ctx_r1.title));\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx_r1.showCloseButton ? 4 : -1);\n }\n}\nconst _c49 = [\"container\"];\nfunction PanelRouterInjectorComponent_ng_template_0_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 2, 1);\n i0.ɵɵelement(2, \"router-outlet\");\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n const ctx_r0 = i0.ɵɵnextContext();\n i0.ɵɵstyleProp(\"margin-bottom\", ctx_r0.actionsHeight, \"px\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(3, _c45, ctx_r0.hasActions));\n }\n}\nlet DefaultApplicationsProviderService = /*#__PURE__*/(() => {\n class DefaultApplicationsProviderService {\n constructor() {\n this.settingsService = inject(SettingsService);\n }\n /**\n * Retrieves the list of default applications.\n *\n * @returns A promise that resolves to an array of IApplication objects.\n */\n async getApplications() {\n return await this.settingsService.getApplicationsConfiguration();\n }\n static {\n this.ɵfac = function DefaultApplicationsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DefaultApplicationsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: DefaultApplicationsProviderService,\n factory: DefaultApplicationsProviderService.ɵfac\n });\n }\n }\n return DefaultApplicationsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst APPLICATIONS_PROVIDER_TOKEN = new InjectionToken('ApplicationsProvider', {\n providedIn: 'root',\n factory: () => new DefaultApplicationsProviderService()\n});\nlet ApplicationsMenuContentComponent = /*#__PURE__*/(() => {\n class ApplicationsMenuContentComponent {\n constructor() {\n this.width = input.required();\n this.applications = input([]);\n this.itemClick = output();\n this.closeDropdown = output();\n this.wildcardService = inject(WildcardService);\n }\n /**\n * Opens the specified application by formatting its URL and opening it in a new window.\n *\n * @param application - The application to open.\n */\n openApplication(application) {\n this.wildcardService.formatOperation(application.url).pipe(take(1)).subscribe(url => {\n this.itemClick.emit();\n window.open(url);\n });\n }\n /**\n * Determines the keydown action when on the dropdown results\n *\n * @param event KeyboardEvent to capture Escape and Tab keys\n */\n onAppKeydown(event) {\n if (['Escape', 'Tab'].includes(event.key)) {\n event.preventDefault();\n this.closeDropdown.emit();\n }\n }\n static {\n this.ɵfac = function ApplicationsMenuContentComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ApplicationsMenuContentComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ApplicationsMenuContentComponent,\n selectors: [[\"po-applications-menu-content\"]],\n inputs: {\n width: [1, \"width\"],\n applications: [1, \"applications\"]\n },\n outputs: {\n itemClick: \"itemClick\",\n closeDropdown: \"closeDropdown\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 2,\n consts: [[\"priKeyboardNavigationGroup\", \"\", 1, \"applications-menu-container\"], [\"data-testid\", \"dropdown-item\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\"], [\"data-testid\", \"dropdown-item\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", 3, \"click\", \"keydown\"], [1, \"icon-holder\"], [1, \"text-holder\"], [\"priTooltipHover\", \"\", 1, \"line-one\"], [\"priTooltipHover\", \"\", 1, \"line-two\"]],\n template: function ApplicationsMenuContentComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵrepeaterCreate(1, ApplicationsMenuContentComponent_For_2_Template, 6, 4, \"div\", 1, _forTrack0);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵstyleProp(\"width\", ctx.width(), \"px\");\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx.applications());\n }\n },\n dependencies: [PrimaveraI18nModule, i1.PriI18nPipe, KeyboardNavigationGroupDirective, KeyboardNavigationDirective],\n styles: [\"po-applications-menu-content .applications-menu-container{display:flex;flex-direction:column;overflow-y:auto;padding:.5rem;gap:.25rem}po-applications-menu-content .applications-menu-container .dropdown-item{display:flex;color:var(--grey-8);border:.0625rem solid transparent;border-radius:.25rem;padding:.75rem .5rem .75rem 1rem;padding:1rem;gap:1rem;cursor:pointer}po-applications-menu-content .applications-menu-container .dropdown-item .icon-holder{display:flex;align-items:center;font-size:1.5rem;color:var(--grey-7)}po-applications-menu-content .applications-menu-container .dropdown-item:hover{background-color:var(--grey-2)}po-applications-menu-content .applications-menu-container .dropdown-item:active{background-color:var(--theme-10)}po-applications-menu-content .applications-menu-container .dropdown-item:focus-visible{outline:none;background-color:var(--theme-10);border:.0625rem solid var(--grey-8)}po-applications-menu-content .applications-menu-container .dropdown-item .text-holder{display:flex;flex-direction:column;overflow:hidden;gap:.25rem}po-applications-menu-content .applications-menu-container .dropdown-item .text-holder .line-one{font-size:1rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}po-applications-menu-content .applications-menu-container .dropdown-item .text-holder .line-two{font-size:.875rem;color:var(--grey-7);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return ApplicationsMenuContentComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ApplicationsMenuComponent = /*#__PURE__*/(() => {\n class ApplicationsMenuComponent {\n constructor() {\n this.width = input(0);\n this.anchorTemplate = input.required();\n this.dropDownMenuTrigger = input(DropDownMenuTriggers.Click);\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.dropDownMenuPosition = input('right');\n this.dropDownMenuSpacingY = input(4);\n this.dropDownMenuSpacingX = input(0);\n this.dropDownMenuCustomClass = input('');\n this.itemClick = output();\n this.hasApplicationsEvent = output();\n this.dropDownMenuShow = output();\n this.dropDownMenuHide = output();\n this.applications = signal([]);\n /** List of applications with a valid ID */\n this.validApplications = computed(() => this.applications().map(application => {\n application.id = application.id || GuidService.createUID();\n return application;\n }));\n this.hasApplications = computed(() => this.validApplications().length > 0);\n this.dropDownMenuAnchor = viewChild('dropDownMenuAnchor');\n this.dropDownMenuCustomClassList = computed(() => 'applications-menu-custom-drop-down-menu' + (this.dropDownMenuCustomClass() ? ` ${this.dropDownMenuCustomClass()}` : ''));\n this.deviceService = inject(DeviceService);\n this.navigationOrientation = this.deviceService.greaterThanXlBreakpoint ? OrientationEnum.Landscape : OrientationEnum.Portrait;\n this.dropDownMenuMaxHeight = 400;\n this.closeDropDownMenuEvent = new EventEmitter();\n this.appContextService = inject(AppContextService);\n this.applicationsProvider = inject(APPLICATIONS_PROVIDER_TOKEN);\n }\n ngOnInit() {\n this.loadApplications();\n }\n /**\n * Closes the dropdown menu when the user presses `Escape`, `Tab`, `ArrowLeft` or `ArrowRight`\n * when focusing the Applications Menu button.\n *\n * @param event KeyboardEvent to capture the key pressed.\n */\n onKeydown(event) {\n if (this.deviceService.greaterThanMdBreakpoint) {\n if (['Escape', 'Tab', 'ArrowLeft', 'ArrowRight'].includes(event.code)) {\n this.closeDropDownMenuEvent.emit();\n }\n } else {\n event.preventDefault();\n }\n }\n /** Emits the event to close the dropdown menu and focuses the applications button. */\n closeDropdownAndFocusButton() {\n this.closeDropDownMenuEvent.emit();\n this.dropDownMenuAnchor()?.nativeElement.focus();\n }\n /**\n * Retrieves the applications from the applications provider and sets the applications property.\n * Emits an event indicating whether there are any applications.\n */\n async loadApplications() {\n if (this.applicationsProvider) {\n const serverApplications = await this.applicationsProvider.getApplications();\n const applications = this.isAllowed(serverApplications, this.appContextService.getSubscriptionClaims());\n this.applications.set(applications);\n this.hasApplicationsEvent?.emit(this.hasApplications());\n } else {\n console.warn('The applications provider is not defined.');\n this.hasApplicationsEvent?.emit(false);\n }\n }\n /**\n * Determines whether allowed based in defined claims, loads the apps array\n *\n * @param apps Array of defined applications app's\n * @param subscriptionClaims List of defined claims\n * @returns allowed array of App's\n */\n isAllowed(apps, subscriptionClaims) {\n const listAllowedApps = [];\n apps.forEach(app => {\n if (app.claims) {\n if (app.claims === '') {\n // load app if claim tag exists and is EMPTY string in json config\n listAllowedApps.push(app);\n } else {\n let count = 0;\n const tmpListAllowedApps = [];\n app.claims.split(' ').forEach(claim => {\n count++;\n if (subscriptionClaims.includes(claim)) {\n tmpListAllowedApps.push(app);\n }\n });\n // loads app if finds all valid claims in array\n if (tmpListAllowedApps.length === count) {\n listAllowedApps.push(app);\n }\n }\n } else {\n // load app if not exists claim tag in json config\n listAllowedApps.push(app);\n }\n });\n return listAllowedApps;\n }\n static {\n this.ɵfac = function ApplicationsMenuComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ApplicationsMenuComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ApplicationsMenuComponent,\n selectors: [[\"po-applications-menu\"]],\n viewQuery: function ApplicationsMenuComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuerySignal(ctx.dropDownMenuAnchor, _c0, 5);\n i0.ɵɵviewQuery(KeyboardNavigationDirective, 5);\n i0.ɵɵviewQuery(DropDownMenuDirective, 5);\n }\n if (rf & 2) {\n i0.ɵɵqueryAdvance();\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.keyboardNavigationDirective = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dropDownMenuDirective = _t.first);\n }\n },\n inputs: {\n width: [1, \"width\"],\n anchorTemplate: [1, \"anchorTemplate\"],\n dropDownMenuTrigger: [1, \"dropDownMenuTrigger\"],\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"],\n dropDownMenuPosition: [1, \"dropDownMenuPosition\"],\n dropDownMenuSpacingY: [1, \"dropDownMenuSpacingY\"],\n dropDownMenuSpacingX: [1, \"dropDownMenuSpacingX\"],\n dropDownMenuCustomClass: [1, \"dropDownMenuCustomClass\"]\n },\n outputs: {\n itemClick: \"itemClick\",\n hasApplicationsEvent: \"hasApplicationsEvent\",\n dropDownMenuShow: \"dropDownMenuShow\",\n dropDownMenuHide: \"dropDownMenuHide\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 1,\n vars: 1,\n consts: [[\"dropDownMenuAnchor\", \"\"], [\"dropDownMenu\", \"\"], [\"priDropDownMenu\", \"\", \"matTooltipPosition\", \"below\", \"priKeyboardNavigation\", \"\", 1, \"applications-menu-anchor\", 3, \"dropDownMenuShow\", \"dropDownMenuHide\", \"keydown\", \"ngClass\", \"priDropDownMenuCustomClass\", \"priDropDownMenuPosition\", \"priDropDownMenuTrigger\", \"priDropDownMenuHide\", \"customPanelTemplate\", \"menuSpacingX\", \"menuSpacingY\", \"chainID\", \"childLevel\", \"maxHeight\", \"matTooltip\", \"navigationOrientation\", \"navigationFocusChildOption\"], [3, \"ngTemplateOutlet\"], [3, \"itemClick\", \"closeDropdown\", \"width\", \"applications\"]],\n template: function ApplicationsMenuComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, ApplicationsMenuComponent_Conditional_0_Template, 6, 19);\n }\n if (rf & 2) {\n i0.ɵɵconditional(ctx.hasApplications() ? 0 : -1);\n }\n },\n dependencies: [NgClass, NgTemplateOutlet, DropDownMenuDirective, ApplicationsMenuContentComponent, KeyboardNavigationDirective, MatTooltip, PrimaveraI18nModule, i1.PriI18nPipe],\n styles: [\"po-applications-menu .applications-menu-anchor:focus-visible{outline:none;border-radius:100%}po-applications-menu .applications-menu-anchor.mobile{border:.0625rem solid transparent}po-applications-menu .applications-menu-anchor.mobile:focus-visible{border-radius:.25rem;border:.0625rem solid var(--grey-8)}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return ApplicationsMenuComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ApplicationsMenuTopbarComponent = /*#__PURE__*/(() => {\n class ApplicationsMenuTopbarComponent {\n get hiddenClass() {\n return !this.applicationsMenuComponent?.hasApplications();\n }\n static {\n this.ɵfac = function ApplicationsMenuTopbarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ApplicationsMenuTopbarComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ApplicationsMenuTopbarComponent,\n selectors: [[\"po-applications-menu-topbar\"]],\n viewQuery: function ApplicationsMenuTopbarComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(ApplicationsMenuComponent, 7);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.applicationsMenuComponent = _t.first);\n }\n },\n hostVars: 2,\n hostBindings: function ApplicationsMenuTopbarComponent_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵclassProp(\"hidden\", ctx.hiddenClass);\n }\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 2,\n consts: [[\"anchorTemplate\", \"\"], [3, \"width\", \"anchorTemplate\"], [1, \"icon-wrapper\"], [1, \"icon-apps\"]],\n template: function ApplicationsMenuTopbarComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-applications-menu\", 1);\n i0.ɵɵtemplate(1, ApplicationsMenuTopbarComponent_ng_template_1_Template, 2, 2, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const anchorTemplate_r2 = i0.ɵɵreference(2);\n i0.ɵɵproperty(\"width\", 320)(\"anchorTemplate\", anchorTemplate_r2);\n }\n },\n dependencies: [ApplicationsMenuComponent],\n styles: [\"po-applications-menu-topbar{display:flex;align-items:center;justify-content:center;background-color:transparent;border:.0625rem solid transparent;flex-shrink:0;width:2.5rem;height:2.5rem;border-radius:100%}po-applications-menu-topbar:hover{background-color:var(--theme-10);cursor:pointer}po-applications-menu-topbar:active{background-color:var(--theme-20)}po-applications-menu-topbar:active po-applications-menu .applications-menu-anchor .icon-wrapper i{color:var(--grey-8)}po-applications-menu-topbar po-applications-menu{width:100%;height:100%}po-applications-menu-topbar po-applications-menu .applications-menu-anchor{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border:.0625rem solid transparent}po-applications-menu-topbar po-applications-menu .applications-menu-anchor .icon-wrapper i{font-size:1.25rem;color:var(--grey-7)}po-applications-menu-topbar po-applications-menu .applications-menu-anchor:focus-visible{background-color:var(--theme-20);border-color:var(--grey-8);outline:none}po-applications-menu-topbar po-applications-menu .applications-menu-anchor:focus-visible .icon-wrapper i{color:var(--grey-8)}.po-field-options.applications-menu-custom-drop-down-menu{border-radius:.5rem}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return ApplicationsMenuTopbarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet UserAreaDropdownButtonComponent = /*#__PURE__*/(() => {\n class UserAreaDropdownButtonComponent {\n constructor() {\n this.caption = input('');\n this.deviceService = inject(DeviceService);\n this.isMobileScreen = this.deviceService?.isMobileScreen;\n }\n static {\n this.ɵfac = function UserAreaDropdownButtonComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || UserAreaDropdownButtonComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: UserAreaDropdownButtonComponent,\n selectors: [[\"po-user-area-dropdown-button\"]],\n inputs: {\n caption: [1, \"caption\"]\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 5,\n vars: 7,\n consts: [[\"role\", \"button\", \"data-testid\", \"user-area-dropdown-button\", 1, \"user-area-dropdown-button\"], [1, \"icon\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"above\", 1, \"text\"]],\n template: function UserAreaDropdownButtonComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵelement(1, \"div\", 1);\n i0.ɵɵelementStart(2, \"div\", 2);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance();\n i0.ɵɵclassProp(\"icon-expand_more\", ctx.isMobileScreen)(\"icon-chevron_left\", !ctx.isMobileScreen);\n i0.ɵɵadvance(2);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 5, ctx.caption()));\n }\n },\n dependencies: [PrimaveraI18nModule, i1.PriI18nPipe, TooltipHoverDirective],\n styles: [\"po-user-area-dropdown-button .user-area-dropdown-button{height:2.75rem;color:var(--grey-8);font-weight:400;font-size:1rem;display:flex;align-items:center;padding:0 1rem;gap:.75rem;position:relative;cursor:pointer}po-user-area-dropdown-button .user-area-dropdown-button:hover{background-color:var(--grey-2)}po-user-area-dropdown-button .user-area-dropdown-button .icon{display:flex;align-items:center;justify-content:center;color:var(--grey-7);width:1.5rem;height:1.5rem;font-size:1.25rem;flex-shrink:0}po-user-area-dropdown-button .user-area-dropdown-button .text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return UserAreaDropdownButtonComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ApplicationsMenuUserAreaComponent = /*#__PURE__*/(() => {\n class ApplicationsMenuUserAreaComponent {\n constructor() {\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.itemClick = output();\n this.dropDownMenuShow = output();\n this.dropDownMenuHide = output();\n this.deviceService = inject(DeviceService);\n this.isMobileScreen = this.deviceService?.isMobileScreen;\n this.borderSize = this.isMobileScreen ? 0 : 2;\n this.dropDownMenuTrigger = this.isMobileScreen ? DropDownMenuTriggers.Click : DropDownMenuTriggers.MouseEnter;\n this.dropDownMenuTriggers = DropDownMenuTriggers;\n }\n set applicationsMenuComponent(instance) {\n this.hasApplications = instance.hasApplications;\n }\n static {\n this.ɵfac = function ApplicationsMenuUserAreaComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ApplicationsMenuUserAreaComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ApplicationsMenuUserAreaComponent,\n selectors: [[\"po-applications-menu-user-area\"]],\n viewQuery: function ApplicationsMenuUserAreaComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(ApplicationsMenuComponent, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.applicationsMenuComponent = _t.first);\n }\n },\n inputs: {\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"]\n },\n outputs: {\n itemClick: \"itemClick\",\n dropDownMenuShow: \"dropDownMenuShow\",\n dropDownMenuHide: \"dropDownMenuHide\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 9,\n consts: [[\"anchorTemplate\", \"\"], [3, \"itemClick\", \"dropDownMenuShow\", \"dropDownMenuHide\", \"width\", \"anchorTemplate\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\", \"dropDownMenuTrigger\", \"dropDownMenuPosition\", \"dropDownMenuSpacingY\", \"dropDownMenuSpacingX\", \"dropDownMenuCustomClass\"], [3, \"caption\"]],\n template: function ApplicationsMenuUserAreaComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-applications-menu\", 1);\n i0.ɵɵlistener(\"itemClick\", function ApplicationsMenuUserAreaComponent_Template_po_applications_menu_itemClick_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.itemClick.emit());\n })(\"dropDownMenuShow\", function ApplicationsMenuUserAreaComponent_Template_po_applications_menu_dropDownMenuShow_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.dropDownMenuShow.emit($event));\n })(\"dropDownMenuHide\", function ApplicationsMenuUserAreaComponent_Template_po_applications_menu_dropDownMenuHide_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.dropDownMenuHide.emit($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(1, ApplicationsMenuUserAreaComponent_ng_template_1_Template, 2, 3, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const anchorTemplate_r2 = i0.ɵɵreference(2);\n i0.ɵɵproperty(\"width\", anchorTemplate_r2.elementRef.nativeElement.offsetWidth)(\"anchorTemplate\", anchorTemplate_r2)(\"dropDownMenuChainID\", ctx.dropDownMenuChainID())(\"dropDownMenuChildLevel\", ctx.dropDownMenuChildLevel())(\"dropDownMenuTrigger\", ctx.dropDownMenuTrigger)(\"dropDownMenuPosition\", ctx.isMobileScreen ? \"left\" : \"top-left\")(\"dropDownMenuSpacingY\", ctx.isMobileScreen ? 0 : -1)(\"dropDownMenuSpacingX\", ctx.borderSize)(\"dropDownMenuCustomClass\", ctx.isMobileScreen ? \"mobile\" : \"desktop\");\n }\n },\n dependencies: [ApplicationsMenuComponent, UserAreaDropdownButtonComponent, PrimaveraI18nModule, i1.PriI18nPipe],\n styles: [\".po-field-options.applications-menu-custom-drop-down-menu.desktop{border:.0625rem solid var(--grey-4);border-radius:unset;box-shadow:0 .0625rem .5rem var(--shadow-3)}.po-field-options.applications-menu-custom-drop-down-menu.desktop .applications-menu-container{border:unset;border-radius:unset}.po-field-options.applications-menu-custom-drop-down-menu.mobile .applications-menu-container{border:unset;border-top:.0625rem solid var(--grey-4);border-bottom:.0625rem solid var(--grey-4);border-top-left-radius:unset!important;border-top-right-radius:unset!important}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return ApplicationsMenuUserAreaComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ShellConfigurationService = /*#__PURE__*/(() => {\n class ShellConfigurationService {\n /*\n * Constructs the application\n */\n constructor() {\n this.shellOptions = new ReplaySubject(1);\n this.settingsService = inject(SettingsService);\n this.initializeShellOptions();\n }\n getShellOptions() {\n return this.shellOptions.asObservable().pipe(take(1));\n }\n async initializeShellOptions() {\n const settings = await firstValueFrom(this.settingsService.getConfiguration('shell', 'config'));\n this.shellOptions.next(settings);\n }\n static {\n this.ɵfac = function ShellConfigurationService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ShellConfigurationService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ShellConfigurationService,\n factory: ShellConfigurationService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return ShellConfigurationService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ZendeskConfig = /*#__PURE__*/(() => {\n class ZendeskConfig {\n constructor() {\n // lazyLoad: boolean = true;\n this.accountUrl = 'd3v-testebot.zendesk.com';\n this.timeOut = 0;\n }\n callback(zE) {\n zE('webWidget', 'hide');\n }\n static {\n this.ɵfac = function ZendeskConfig_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ZendeskConfig)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ZendeskConfig,\n factory: ZendeskConfig.ɵfac\n });\n }\n }\n return ZendeskConfig;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ZopimService = /*#__PURE__*/(() => {\n class ZopimService {\n constructor(appContextService, i18nService, zendeskConfig, windowService, amsService) {\n this.appContextService = appContextService;\n this.i18nService = i18nService;\n this.zendeskConfig = zendeskConfig;\n this.windowService = windowService;\n this.amsService = amsService;\n this.initialized = signal(false);\n this.isChatOpen = false;\n if (!zendeskConfig.accountUrl) {\n throw new Error('Missing accountUrl. Please set in app config via ZendeskWidgetProvider');\n }\n this.window = this.windowService.window;\n }\n /**\n *\n * @param increaseOffset\n */\n async init(accountUrl) {\n this.zendeskConfig.accountUrl = accountUrl;\n if (await this.initializeZendesk(this.zendeskConfig)) {\n const ctx = this.appContextService.getContext();\n const showingAlerts = this.appContextService.hasAlerts();\n this.zE('webWidget', 'setLocale', ctx.user.culture);\n this.zE('webWidget', 'identify', {\n name: ctx.user.displayName,\n email: ctx.user.name\n });\n const vOffset = showingAlerts ? '100px' : '72px';\n this.zE('webWidget', 'updateSettings', {\n webWidget: {\n position: {\n horizontal: 'right',\n vertical: 'top'\n },\n offset: {\n vertical: vOffset\n },\n chat: {\n departments: {\n enabled: [ctx.zopim?.department],\n select: ctx.zopim?.department\n },\n tags: [this.amsService.account, this.amsService.subscription],\n concierge: {\n name: this.i18nService.get('shell.components.RES_Chat_Concierge_Name'),\n title: {\n '*': this.i18nService.get('shell.components.RES_Chat_Concierge_Title')\n }\n },\n offlineForm: {\n greeting: {\n '*': this.i18nService.get('shell.components.RES_Chat_OfflineForm_Greeting')\n }\n }\n }\n }\n });\n this.onClose();\n }\n }\n toggle() {\n if (this.isChatOpen) {\n this.zE('webWidget', 'hide');\n } else {\n this.zE.activate();\n }\n this.isChatOpen = this.isChatOpen ? false : true;\n }\n hide() {\n this.zE('webWidget', 'hide');\n }\n show() {\n this.zE('webWidget', 'show');\n }\n switchFlag(flag) {\n this.isChatOpen = flag;\n }\n onClose() {\n this.zE(() => {\n this.zE('webWidget:on', 'close', () => {\n this.switchFlag(false);\n });\n });\n }\n initializeZendesk(config) {\n if (this.window.zEmbed) {\n this.window.zEmbed();\n } else {\n this.zEmbed(config);\n }\n return this.finishLoading();\n }\n finishLoading() {\n return new Promise(resolve => {\n const timeout = setTimeout(() => {\n this.initialized.set(false);\n resolve(false);\n }, this.zendeskConfig.timeOut || 30000); // 30 seconds\n this.window.zE(() => {\n this.zendeskConfig.callback(this.window.zE);\n this.initialized.set(true);\n this.zE = this.window.zE;\n clearTimeout(timeout);\n resolve(true);\n });\n });\n }\n zEmbed(config) {\n let n;\n let o;\n let d;\n const a = [];\n const r = document.createElement('iframe');\n this.window.zEmbed = function (...args) {\n a.push(args);\n };\n this.window.zE = this.window.zE || this.window.zEmbed;\n r.src = 'javascript:false';\n r.title = '';\n r.style.cssText = 'display: none';\n d = document.getElementsByTagName(config.injectionTag || 'head');\n d = d[d.length - 1];\n d.parentNode.insertBefore(r, d);\n const i = r.contentWindow;\n const s = i.document;\n try {\n o = s;\n } catch (e) {\n n = document.domain;\n r.src = 'javascript:var d=document.open();d.domain=\"' + n + '\";void(0);';\n o = s;\n }\n o.open()._l = function () {\n const el = this.createElement('script');\n if (n) {\n this.domain = n;\n }\n el.id = 'js-iframe-async';\n el.src = 'https://assets.zendesk.com/embeddable_framework/main.js';\n this.t = +new Date();\n this.zendeskHost = config.accountUrl;\n this.zEQueue = a;\n this.body.appendChild(el);\n };\n o.write('');\n o.close();\n }\n static {\n this.ɵfac = function ZopimService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ZopimService)(i0.ɵɵinject(i1$1.AppContextService), i0.ɵɵinject(i1.I18nService), i0.ɵɵinject(ZendeskConfig), i0.ɵɵinject(i1$1.WindowService), i0.ɵɵinject(i1$1.AmsService));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ZopimService,\n factory: ZopimService.ɵfac\n });\n }\n }\n return ZopimService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet AlertBarComponent = /*#__PURE__*/(() => {\n class AlertBarComponent {\n constructor() {\n this.message = signal(null);\n this.productWarningLevel = signal(null);\n this.hasProductWarning = signal(false);\n this.hasPendingPayments = signal(false);\n this.isDemonstrationSubscription = signal(false);\n this.appContextService = inject(AppContextService);\n }\n ngOnInit() {\n this.loadAlerts();\n }\n /**\n * Load all alerts from appcontext\n */\n loadAlerts() {\n const appContext = this.appContextService.getContext();\n if (appContext?.alerts) {\n this.alerts = appContext.alerts;\n this.hasPendingPayments.set(this.alerts.hasPendingPayments);\n this.hasProductWarning.set(this.alerts.hasProductWarning);\n this.isDemonstrationSubscription.set(this.alerts.isDemonstrationSubscription);\n if (this.isDemonstrationSubscription()) {\n this.message.set(this.alerts.demonstrationMessage);\n } else if (this.hasProductWarning) {\n this.productWarningLevel.set(this.alerts.productWarningLevel);\n this.message.set(this.alerts.productWarningMessage);\n }\n }\n }\n get subscriptionManagementUrl() {\n return this.appContextService.getContext().subscriptionManagementUrl;\n }\n static {\n this.ɵfac = function AlertBarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AlertBarComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: AlertBarComponent,\n selectors: [[\"po-alert-bar\"]],\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 1,\n vars: 1,\n consts: [[1, \"alerts-container\"], [1, \"shell-banner\", \"shell-banner-critical\"], [1, \"shell-banner\", 3, \"ngClass\"], [1, \"banner-message\"], [\"id\", \"paymentsLink\", \"target\", \"_blank\", 3, \"href\"], [1, \"banner-message\", 3, \"innerHTML\"]],\n template: function AlertBarComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, AlertBarComponent_Conditional_0_Template, 4, 3, \"div\", 0);\n }\n if (rf & 2) {\n i0.ɵɵconditional(ctx.alerts ? 0 : -1);\n }\n },\n dependencies: [NgClass, PrimaveraI18nModule, i1.PriI18nPipe],\n styles: [\"po-alert-bar .alerts-container{display:flex}po-alert-bar .alerts-container .shell-banner{padding:0 16px;color:#fff;height:2rem;flex-shrink:0;text-align:right;z-index:1000;font-size:14px;width:100%;overflow-x:auto;overflow-y:none;display:flex;align-items:center}po-alert-bar .alerts-container .shell-banner::-webkit-scrollbar{width:4px}po-alert-bar .alerts-container .shell-banner::-webkit-scrollbar-thumb{opacity:1;border-radius:4px}po-alert-bar .alerts-container .shell-banner-critical{background:var(--error-60)}po-alert-bar .alerts-container .shell-banner-warning{background:var(--warning-60)}po-alert-bar .alerts-container .shell-banner-info{background:var(--info-60)}po-alert-bar .alerts-container .shell-banner .banner-message{width:100%;float:right;position:relative;text-overflow:ellipsis}po-alert-bar .alerts-container .shell-banner .banner-message a{color:#fff;font-weight:700}po-alert-bar .alerts-container .shell-banner .banner-message a:hover{text-decoration:underline}po-alert-bar .alerts-container .shell-banner .banner-message a:visited{color:#fff}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return AlertBarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SHELL_CONTEXT_BAR_SHOW_COMPONENT = 'contextBarShowComponent';\nconst SHELL_CONTEXT_BAR_OPEN = 'contextBarOpen';\nconst SHELL_CONTEXT_BAR_CLOSE = 'contextBarClose';\nconst SHELL_CONTEXT_BAR_HIGHLIGHT = 'contextBarHighlight';\nconst SHELL_CONTEXT_BAR_ONLY_CLOSE = 'contextBarOnlyClose';\nconst SHELL_CONTEXT_BAR_TOGGLE = 'contextBarToggle';\nconst SHELL_CONTEXT_PROPERTY_CHANGED = 'contextPropertyChanged';\nconst SHELL_CLOSE_SIDEBAR_STATE = 'closeSidebarState';\nconst SHELL_THEME_CHANGED = 'theme_changed';\nlet ContextComponentContainerComponent = /*#__PURE__*/(() => {\n class ContextComponentContainerComponent {\n constructor(componentFactoryResolver, broadcastService) {\n this.componentFactoryResolver = componentFactoryResolver;\n this.broadcastService = broadcastService;\n }\n ngOnInit() {\n this.loadComponent();\n if (!this._unsubscribeBroadcastService) {\n this._unsubscribeBroadcastService = this.broadcastService.subscribe(SHELL_CONTEXT_PROPERTY_CHANGED, data => {\n if (this.componentRef && data) {\n const component = this.componentRef.instance;\n if (component && component.componentId) {\n if (component.componentId === data.componentId) {\n if (!data.properties.length) {\n this.destroyComponent();\n this.loadComponent();\n } else {\n component.onPropertyUpdated(data);\n }\n }\n }\n }\n });\n }\n }\n ngOnDestroy() {\n if (this._unsubscribeBroadcastService) {\n this._unsubscribeBroadcastService();\n this._unsubscribeBroadcastService = null;\n }\n if (this.componentRef) {\n this.componentRef.destroy();\n }\n }\n /* gets the widget type from the route parameters and loads it to the DOM using the ComponentFactoryResolver*/\n loadComponent() {\n if (!this.componentRef && this.config?.type) {\n this.container.clear();\n const factory = this.componentFactoryResolver.resolveComponentFactory(this.config.type);\n this.componentRef = this.container.createComponent(factory);\n this.componentRef.instance.componentId = this.config.name;\n this.componentRef.changeDetectorRef.detectChanges();\n }\n }\n /* If an item is deleted the component should be destroyed so that the old data doesn't get displayed */\n destroyComponent() {\n if (this.componentRef) {\n this.componentRef.destroy();\n this.componentRef = null;\n }\n }\n static {\n this.ɵfac = function ContextComponentContainerComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ContextComponentContainerComponent)(i0.ɵɵdirectiveInject(i0.ComponentFactoryResolver), i0.ɵɵdirectiveInject(i1$1.BroadcastService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ContextComponentContainerComponent,\n selectors: [[\"po-context-component-container\"]],\n viewQuery: function ContextComponentContainerComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c3, 7, ViewContainerRef);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.container = _t.first);\n }\n },\n inputs: {\n config: \"config\"\n },\n decls: 2,\n vars: 0,\n consts: [[\"componentContainer\", \"\"]],\n template: function ContextComponentContainerComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementContainer(0, null, 0);\n }\n },\n encapsulation: 2\n });\n }\n }\n return ContextComponentContainerComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ContextPageComponent = /*#__PURE__*/(() => {\n class ContextPageComponent {\n static {\n this.ɵfac = function ContextPageComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ContextPageComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ContextPageComponent,\n selectors: [[\"po-context-page\"]],\n inputs: {\n components: \"components\"\n },\n decls: 2,\n vars: 0,\n consts: [[3, \"config\"]],\n template: function ContextPageComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵrepeaterCreate(0, ContextPageComponent_For_1_Template, 2, 1, \"div\", null, i0.ɵɵrepeaterTrackByIdentity);\n }\n if (rf & 2) {\n i0.ɵɵrepeater(ctx.components);\n }\n },\n dependencies: [ContextComponentContainerComponent],\n encapsulation: 2\n });\n }\n }\n return ContextPageComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ContextBarComponent = /*#__PURE__*/(() => {\n class ContextBarComponent {\n constructor(broadcastService, activatedRoute, routeHelperService, storageService, appContextService) {\n this.broadcastService = broadcastService;\n this.activatedRoute = activatedRoute;\n this.routeHelperService = routeHelperService;\n this.storageService = storageService;\n this.appContextService = appContextService;\n this.currentPageTitle = '';\n this.pages = [];\n this.selected = 0;\n this.isOpen = false;\n this.nextPageTitle = '';\n this.previousPageTitle = '';\n this.showPageNavigator = false;\n this.openFirstTime = true;\n this.ctxComponents = this.loadCtxComponents();\n this.broadcastService.subscribe('contextBarRouteChanges', components => {\n if (components) {\n this.ctxComponents = components;\n this.storageService.set('contextBarRouteChanges', JSON.stringify(this.ctxComponents));\n }\n });\n this.broadcastService.subscribe('contextBarInfo', info => {\n // reset all variables\n this.pages = [];\n this.dataCache = new Map();\n this.mappings = new Map();\n this.isOpen = false;\n this.pageLoad = true;\n this.currentActivator = undefined;\n if (info && info.data && info.data.bindings) {\n this.bindings = info.data.bindings;\n this.startWithConfiguration();\n this.initializePages(info);\n }\n });\n this.broadcastService.subscribe('contextBarChanges', changes => this.entityModelChanges(changes));\n this.broadcastService.subscribe(SHELL_CONTEXT_BAR_OPEN, activator => {\n this.isOpen = true;\n if (activator) {\n this.currentActivator = activator;\n }\n this.notifyComponents();\n this.showPageWithActivator(this.currentActivator);\n });\n this.broadcastService.subscribe(SHELL_CONTEXT_BAR_TOGGLE, () => this.isOpen = !this.isOpen);\n this.broadcastService.subscribe('contextBarReset', () => this.close());\n this.broadcastService.subscribe(SHELL_CONTEXT_BAR_ONLY_CLOSE, () => this.isOpen = false);\n }\n showPageOnIndex(index) {\n const totalPages = this.pages.length;\n if (index >= totalPages) {\n return;\n }\n for (let i = 0; i < totalPages; i++) {\n const page = this.pages[i];\n if (i === index) {\n this.selected = index;\n this.currentPage = page;\n this.currentPageTitle = page.title;\n this.broadcastService.emit(SHELL_CONTEXT_BAR_SHOW_COMPONENT, this.currentPage);\n } else {\n // page.elem.addClass('ng-hide');\n }\n }\n const rightPageIndex = (index + 1) % totalPages;\n let leftPageIndex = (index - 1) % totalPages;\n leftPageIndex = leftPageIndex < 0 ? totalPages - 1 : leftPageIndex;\n this.nextPageTitle = this.pages[rightPageIndex].title;\n this.previousPageTitle = this.pages[leftPageIndex].title;\n }\n showNextPage() {\n this.selected = (this.selected + 1) % this.pages.length;\n this.showPageOnIndex(this.selected);\n }\n showPreviousPage() {\n this.selected = (this.selected - 1) % this.pages.length;\n this.selected = this.selected < 0 ? this.pages.length - 1 : this.selected;\n this.showPageOnIndex(this.selected);\n }\n close() {\n this.isOpen = false;\n this.broadcastService.emit(SHELL_CONTEXT_BAR_CLOSE);\n }\n startWithConfiguration() {\n if (this.bindings) {\n for (const componentId in this.bindings) {\n if (Object.prototype.hasOwnProperty.call(this.bindings, componentId)) {\n const componentBinding = this.bindings[componentId];\n for (const propertyInfo in componentBinding) {\n if (Object.prototype.hasOwnProperty.call(componentBinding, propertyInfo)) {\n const entityProperty = componentBinding[propertyInfo];\n const componentsList = this.mappings.get(entityProperty);\n if (componentsList) {\n componentsList.push(componentId);\n } else {\n const newComponentsList = [];\n newComponentsList.push(componentId);\n this.mappings.set(entityProperty, newComponentsList);\n }\n }\n }\n }\n }\n }\n }\n initializePages(info) {\n info.contextPages.forEach(page => {\n page.components.forEach(component => {\n const typedComponent = this.ctxComponents?.filter(cc => cc.id.toLowerCase() === component.name.toLowerCase())?.[0];\n if (typedComponent) {\n component.type = typedComponent.type;\n }\n });\n this.pages.push(page);\n this.showPageOnIndex(0);\n });\n }\n entityModelChanges(changes) {\n const changedProperties = [];\n if (this.mappings) {\n this.mappings.forEach((componentsList, property, map) => {\n const value = property.split('.').reduce((_obj, property) => {\n if (_obj && typeof _obj === 'object' && property in _obj) {\n return _obj[property];\n }\n }, changes);\n // Prepare data cache (so the components can be notified when the context bar opens)\n if (value != null) {\n if (!this.currentActivator || !this.pageLoad) {\n this.currentActivator = this.findActivator(property);\n }\n if (componentsList) {\n changedProperties.push(property);\n for (const component of componentsList) {\n const props = this.dataCache.get(component);\n if (props) {\n props.set(property, value);\n } else {\n const newProps = new Map();\n newProps.set(property, value);\n this.dataCache.set(component, newProps);\n }\n }\n }\n }\n });\n // Do not notify the widgets if the context bar is closed (this will prevent unnecessary work done by the widget)\n // If the context bar is open, we can notify the components (and clean the dataCache that is no longer needed)\n if (this.isOpen) {\n this.notifyComponents();\n this.dataCache = new Map();\n }\n // we only want to highlight the context change if any of the context pages was affected by the changed properties\n if (this.isAnyAffectedContextPageReady(changedProperties)) {\n if (!this.isOpen) {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_HIGHLIGHT);\n }\n if (this.currentActivator) {\n this.showPageWithActivator(this.currentActivator);\n }\n }\n }\n if (this.pageLoad) {\n this.pageLoad = !this.pageLoad;\n }\n }\n findActivator(property) {\n if (this.pages && this.mappings) {\n for (const page of this.pages) {\n this.mappings.forEach((componentsList, mappingProperty, map) => {\n if (property === mappingProperty) {\n return page.activator;\n }\n return undefined;\n });\n }\n }\n return property;\n }\n notifyComponents() {\n const propsData = [];\n this.dataCache.forEach((propertiesList, componentId, map1) => {\n if (propertiesList && componentId) {\n const props = [];\n propertiesList.forEach((propertyValue, propertyName, map2) => {\n if (propertyValue && propertyName) {\n const prop = {\n key: propertyName,\n value: propertyValue\n };\n props.push(prop);\n }\n });\n propsData.push({\n componentId,\n properties: props\n });\n }\n });\n propsData.forEach(prop => this.broadcastService.emit(SHELL_CONTEXT_PROPERTY_CHANGED, prop));\n }\n showPageWithActivator(activator) {\n const totalPages = this.pages.length;\n if (totalPages <= 1) {\n return;\n }\n let activatorPageIndex = 0;\n for (let i = 0; i < totalPages; i++) {\n const page = this.pages[i];\n if (page.activator === activator) {\n activatorPageIndex = i;\n break;\n }\n }\n this.selected = activatorPageIndex;\n this.showPageOnIndex(activatorPageIndex);\n }\n // checks if any of the context pages affected by the changes are ready to display data\n isAnyAffectedContextPageReady(changedProperties) {\n let returnValue = false;\n if (!changedProperties || !this.bindings || !this.mappings) {\n return false;\n }\n // get the affected bindings\n const affectedBindings = [];\n for (const prop of changedProperties) {\n for (const bindingId in this.bindings) {\n if (Object.prototype.hasOwnProperty.call(this.bindings, bindingId)) {\n const binding = this.bindings[bindingId];\n for (const propertyInfo in binding) {\n // if the binding has this property, we add it to the affectedBindings array\n if (binding[propertyInfo] === prop) {\n affectedBindings.push({\n bindingId,\n bindings: binding\n });\n }\n }\n }\n }\n }\n // for each of the affected data bindings\n // we'll check if they have all the properties defined and therefore if they are ready to get data from the server\n for (const bindingId in affectedBindings) {\n if (Object.prototype.hasOwnProperty.call(affectedBindings, bindingId)) {\n // by default we'll say the binding is ready, if we find any property in\n // this binding that is not in the dataCache, we'll set this as false\n let isBindingReady = true;\n const binding = affectedBindings[bindingId];\n const dataCacheElement = this.dataCache.get(binding.bindingId);\n if (dataCacheElement) {\n for (const propertyInfo in binding.bindings) {\n if (Object.prototype.hasOwnProperty.call(binding.bindings, propertyInfo)) {\n const entityProperty = binding.bindings[propertyInfo];\n const propertyValue = dataCacheElement.get(entityProperty);\n if (!propertyValue) {\n isBindingReady = false;\n }\n }\n }\n } else {\n isBindingReady = false;\n }\n if (isBindingReady === true) {\n // we just need one of the bindings that was affected by the changes to\n // be ready to get data to display the context pages highlight animation\n returnValue = true;\n }\n }\n }\n return returnValue;\n }\n loadCtxComponents() {\n const route = this.routeHelperService.getRouteFromOutlet(this.activatedRoute);\n return route?.snapshot?.data['contextComponents'];\n }\n static {\n this.ɵfac = function ContextBarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ContextBarComponent)(i0.ɵɵdirectiveInject(i1$1.BroadcastService), i0.ɵɵdirectiveInject(i2.ActivatedRoute), i0.ɵɵdirectiveInject(i1$1.RouteHelperService), i0.ɵɵdirectiveInject(i1$1.StorageService), i0.ɵɵdirectiveInject(i1$1.AppContextService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ContextBarComponent,\n selectors: [[\"po-contextbar\"]],\n decls: 11,\n vars: 6,\n consts: [[1, \"contextbar\", 3, \"ngClass\"], [1, \"wrapper\"], [1, \"title\"], [\"priTooltipHover\", \"\", 1, \"title-text\"], [1, \"title-close-icon\", \"icon-close\", 3, \"click\"], [1, \"body\"], [\"enter-animation\", \"\", 1, \"carousel-body\"], [1, \"text\", 3, \"ngClass\"], [\"enter-animation\", \"\", 1, \"controllers\"], [3, \"hidden\", \"components\"], [1, \"carousel\"], [1, \"previous-side\", \"icon-chevron_left\", 3, \"click\"], [1, \"slide-number\"], [1, \"pages-tabs\"], [1, \"next-side\", \"icon-chevron_right\", 3, \"click\"], [1, \"pages-tabs\", 3, \"click\"], [1, \"pages-tab\", 3, \"ngClass\"]],\n template: function ContextBarComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1)(2, \"div\", 2)(3, \"div\", 3);\n i0.ɵɵtext(4);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(5, \"div\", 4);\n i0.ɵɵlistener(\"click\", function ContextBarComponent_Template_div_click_5_listener() {\n return ctx.close();\n });\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(6, \"div\", 5)(7, \"div\", 6);\n i0.ɵɵrepeaterCreate(8, ContextBarComponent_For_9_Template, 2, 6, \"div\", 7, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(10, ContextBarComponent_Conditional_10_Template, 7, 0, \"div\", 8);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction2(3, _c4, ctx.isOpen, ctx.appContextService.hasAlerts()));\n i0.ɵɵadvance(4);\n i0.ɵɵtextInterpolate1(\" \", ctx.currentPageTitle, \" \");\n i0.ɵɵadvance(4);\n i0.ɵɵrepeater(ctx.pages);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx.pages.length > 1 ? 10 : -1);\n }\n },\n dependencies: [i3.NgClass, i2$1.TooltipHoverDirective, ContextPageComponent],\n styles: [\"po-contextbar .contextbar{position:fixed;top:4rem;bottom:44px;right:-320px;width:320px;background-color:var(--grey-1);z-index:1043;overflow:hidden;transition:all .35s;border-left:.0625rem solid var(--grey-4);border-bottom:.0625rem solid var(--grey-4);box-shadow:0}po-contextbar .contextbar.contextbar-open{right:0;box-shadow:-.25rem 0 .9375rem var(--shadow-4)}po-contextbar .contextbar.showing-alerts{top:6rem}po-contextbar .contextbar>.wrapper.contextbar-open{width:320px;display:flex;flex-direction:column}po-contextbar .contextbar>.wrapper.contextbar-closed{width:0;box-shadow:0}po-contextbar .contextbar>.wrapper{display:flex;flex-direction:column;width:100%;height:100%}po-contextbar .contextbar>.wrapper .title{height:50px;background-color:var(--grey-3);color:var(--theme-100);font-size:12pt;text-align:center;display:flex;align-items:center;justify-content:center}po-contextbar .contextbar>.wrapper .title .title-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:0 28px 0 20px}po-contextbar .contextbar>.wrapper .title .title-close-icon{position:absolute;top:14px;right:10px;cursor:pointer;color:var(--grey-7)}po-contextbar .contextbar>.wrapper>.page-selector{height:30px}po-contextbar .contextbar>.wrapper>.page-selector>div{cursor:pointer;height:100%}po-contextbar .contextbar>.wrapper>.page-selector>div>.arrow{font-size:12pt}po-contextbar .contextbar>.wrapper>.page-selector>div>.text{font-size:8pt;margin-top:-1px;text-transform:uppercase}po-contextbar .contextbar>.wrapper>.page-selector>div>div{position:relative;top:50%;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%)}po-contextbar .contextbar>.wrapper>.page-selector>.next{float:right}po-contextbar .contextbar>.wrapper>.page-selector>.next>div{float:right}po-contextbar .contextbar>.wrapper>.page-selector>.previous{float:left}po-contextbar .contextbar>.wrapper>.page-selector>.previous>div{float:left}po-contextbar .contextbar>.wrapper>.content{margin:5px 15px;overflow-y:auto;height:calc(100% - 70px)}po-contextbar .contextbar>.wrapper .body{width:100%;height:100%;color:var(--grey-7);font-size:14px;line-height:22px;padding:0 20px 10px;overflow-y:auto}po-contextbar .contextbar>.wrapper .body .carousel-body .text{word-wrap:break-word}po-contextbar .contextbar>.wrapper .body .carousel-body .text.active{width:100%;height:100%}po-contextbar .contextbar>.wrapper .controllers{width:100%;height:50px;flex-shrink:0}po-contextbar .contextbar>.wrapper .controllers .carousel{width:100%;height:100%;display:flex}po-contextbar .contextbar>.wrapper .controllers .carousel .hide{opacity:0}po-contextbar .contextbar>.wrapper .controllers .carousel .previous-side,po-contextbar .contextbar>.wrapper .controllers .carousel .next-side{height:100%;align-items:center;display:flex;font-size:14px;justify-content:center;cursor:pointer;color:var(--grey-8);padding-right:20px;padding-left:20px}po-contextbar .contextbar>.wrapper .controllers .carousel .previous-side:hover,po-contextbar .contextbar>.wrapper .controllers .carousel .next-side:hover{font-size:16px}po-contextbar .contextbar>.wrapper .controllers .carousel .slide-number{width:100%;float:left;display:flex;align-items:center;justify-content:center}po-contextbar .contextbar>.wrapper .controllers .carousel .slide-number .pages-tabs{display:flex;align-items:center;justify-content:center;padding-left:8px;padding-right:8px}po-contextbar .contextbar>.wrapper .controllers .carousel .slide-number .pages-tabs .pages-tab{width:8px;height:8px;border:.0625rem solid var(--grey-4);background-color:var(--grey-3);border-radius:42px}po-contextbar .contextbar>.wrapper .controllers .carousel .slide-number .pages-tabs .pages-tab.active{background-color:var(--grey-1)}po-contextbar .contextbar>.wrapper .controllers .carousel .slide-number .pages-tabs:hover .pages-tab{width:10px;height:10px}@media only screen and (max-width: 767px){po-contextbar .contextbar.contextbar-open{width:100%}po-contextbar .contextbar>.wrapper.contextbar{width:100%}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return ContextBarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet DownloadsPanelComponent = /*#__PURE__*/(() => {\n class DownloadsPanelComponent {\n constructor(appContextService) {\n this.appContextService = appContextService;\n this.progressBars = [];\n }\n /**\n * Fires when the download is complete\n *\n * @param uid the progress bar uid\n */\n downloadComplete(uid) {\n const progressBar = this.progressBars.find(item => item.uid === uid);\n progressBar.count++;\n }\n /**\n * Fires when all download is complete\n *\n * @param uid the progress bar uid\n */\n allDownloadComplete(uid) {\n const index = this.progressBars.findIndex(item => item.uid === uid);\n this.progressBars.splice(index, 1);\n }\n static {\n this.ɵfac = function DownloadsPanelComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DownloadsPanelComponent)(i0.ɵɵdirectiveInject(i1$1.AppContextService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: DownloadsPanelComponent,\n selectors: [[\"po-downloads-panel-component\"]],\n decls: 3,\n vars: 4,\n consts: [[1, \"downloads-panel-container\", 3, \"ngClass\"], [3, \"data\"]],\n template: function DownloadsPanelComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵrepeaterCreate(1, DownloadsPanelComponent_For_2_Template, 1, 2, \"po-download-progress-bar\", 1, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction2(1, _c7, ctx.overlay, ctx.appContextService.hasAlerts()));\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx.progressBars);\n }\n },\n dependencies: [i3.NgClass, i2$1.PriDownloadProgressBarComponent],\n styles: [\"po-downloads-panel-component{display:flex}po-downloads-panel-component .downloads-panel-container{display:flex;align-items:flex-end;flex-direction:column;position:fixed;width:100%;height:100%;left:0;top:0;z-index:99999;padding:62px 20px 50px;pointer-events:none}po-downloads-panel-component .downloads-panel-container.overlay{pointer-events:auto;background-color:#ffffff4d}po-downloads-panel-component .downloads-panel-container.showing-alerts{padding-top:6rem}po-downloads-panel-component .downloads-panel-container po-download-progress-bar{margin-bottom:10px;width:200px}\\n\"],\n encapsulation: 2,\n data: {\n animation: [trigger('animProgressBar', [transition(':enter', [style({\n opacity: 0,\n transform: 'translateY(100px)'\n }), animate('.5s ease', style({\n opacity: 1,\n transform: 'translateY(0)'\n }))]), transition(':leave', [animate('.5s ease', style({\n opacity: 0,\n transform: 'translateY(-100px)'\n }))])])]\n }\n });\n }\n }\n return DownloadsPanelComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CompaniesTabSelectorService = /*#__PURE__*/(() => {\n class CompaniesTabSelectorService {\n get searchableProperties() {\n return ['name', 'description'];\n }\n constructor() {\n this.id = 'UserCompanies';\n this.isSearchEnabled = true;\n this.isPinEnabled = true;\n this.enabled$ = new BehaviorSubject(false);\n this.settingsService = inject(SettingsService);\n this.i18nService = inject(I18nService);\n this.destroyRef = inject(DestroyRef);\n this.messagesService = inject(MessagesService);\n this.companyDependentService = inject(CompanyDependentService);\n this.userSettingsService = inject(UserSettingsService);\n this.appContextService = inject(AppContextService);\n this.amsService = inject(AmsService);\n this.lockMenuCompany = false;\n this.companies = [];\n this.companiesPinsSettingKey = ['favorite', 'companies', `for-subscription-${this.amsService.subscription}`].join('_');\n this.settingsService.getCompaniesUri().then(companiesSourceUri => {\n if (companiesSourceUri?.length > 0) {\n this.enabled$.next(true);\n }\n });\n // While doing certain operations (like creating an invoice) we need to lock the company selector\n this.companyDependentService.lockCompany$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(lock => {\n this.lockMenuCompany = lock;\n });\n }\n /**\n * Get the data to be displayed in the selector\n */\n getData() {\n return new Observable(obs => {\n this.companyDependentService.companies$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(async companies => {\n await this.readCompanies(companies).then(items => {\n this.companies = items;\n this.companyDependentService.selectedCompany$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(company => {\n this.selectCompany(company);\n obs.next(this.companies);\n });\n });\n });\n });\n }\n /**\n * Get the tab name to be displayed in the selector\n */\n getTabName() {\n return this.i18nService.get('shell.components.RES_Shell_Menu_CompaniesLabel');\n }\n /**\n * Get the placeholder name to be displayed in the search input\n */\n getSearchPlaceHolderName() {\n return this.i18nService.get('shell.components.RES_Shell_Menu_SearchCompanyPlaceholder');\n }\n /**\n * Method to be called when the user clicks on the pin icon\n */\n pinItem(item) {\n if (item) {\n // find item in userCompanies\n const company = this.companies.find(company => company.id === item.id);\n // update pinDate\n if (company) {\n company.pinDate = new Date();\n }\n // update userSettings\n this.updatePinnedCompanies();\n }\n }\n /**\n * Method to be called when the user clicks on the unpin icon\n */\n unPinItem(item) {\n if (item) {\n // find item in userCompanies\n const company = this.companies.find(company => company.id === item.id);\n // update pinDate to null\n if (company) {\n company.pinDate = new Date(null);\n }\n // update userSettings\n this.updatePinnedCompanies();\n }\n }\n /**\n * Method to be called when the user clicks on an item\n */\n onItemClick(item) {\n // if company is locked, notify ther user that\n // until the end of the current operation it is not possible to change company.\n if (this.lockMenuCompany) {\n this.messagesService.show(new MessageInfo(this.i18nService.get('shell.components.RES_Menu_SelectedCompanyCantChanged'), null, MessageType.Info));\n return;\n }\n // notify service that company has changed\n this.companyDependentService.setSelectCompany(item.id);\n // notify user that company has changed\n let companyChangedMessage = this.i18nService.get('shell.components.RES_Menu_SelectedCompanyChanged');\n companyChangedMessage = companyChangedMessage.replace('{0}', item.name);\n this.messagesService.show(new MessageInfo(companyChangedMessage, null, MessageType.Info));\n }\n /**\n * Get the primary text to be displayed in the selector\n */\n getSelectorPrimaryText() {\n const selectedCompany = this.companies?.find(company => company.isSelected);\n if (selectedCompany?.name) {\n return selectedCompany.name;\n }\n return undefined;\n }\n /**\n * Get the secondary text to be displayed in the selector\n */\n getSelectorSecondaryText() {\n const selectedCompany = this.companies?.find(company => company.isSelected);\n if (selectedCompany?.description) {\n return selectedCompany.description;\n }\n return undefined;\n }\n /**\n * Get selector tab item header text\n */\n getSelectorTabItemHeaderText(item) {\n return item.name;\n }\n /**\n * Get selector tab item sub header text\n */\n getSelectorTabItemSubHeaderText(item) {\n return item.description;\n }\n /**\n * Reads the list of companies and returns an array of selector tab items.\n *\n * @param companies The list of companies to read.\n * @returns A promise that resolves to an array of selector tab items.\n */\n async readCompanies(companies) {\n const pinnedCompanies = await this.getPinnedCompanies();\n const userCompanies = [];\n companies?.map(company => {\n const pinDate = pinnedCompanies.find(s => s.id === company.id)?.favoriteDate;\n userCompanies.push({\n id: company.id,\n key: company.key || company.id,\n name: company.name,\n description: company.companyTaxID || company.description,\n logo: company.logo,\n pinDate: pinDate ? new Date(pinDate) : new Date(null),\n isSelected: false\n });\n });\n return userCompanies;\n }\n /**\n * Selects a company by updating the `isSelected` property of each company in the list.\n *\n * @param company - The company to be selected.\n */\n selectCompany(company) {\n this.companies.forEach(c => {\n c.isSelected = c.id === company.id;\n });\n }\n /**\n * Get the pinned companies\n *\n * @returns the pinned companies\n */\n async getPinnedCompanies() {\n if (!this.pinnedCompanies) {\n try {\n const userSettings = await this.userSettingsService.getCurrentUserSetting(this.companiesPinsSettingKey, this.appContextService.getContext().productName);\n this.pinnedCompanies = [];\n if (userSettings?.value) {\n this.pinnedCompanies = JSON.parse(userSettings.value);\n }\n } catch (error) {\n this.pinnedCompanies = [];\n }\n }\n return this.pinnedCompanies;\n }\n /**\n * Update the pinned companies\n */\n updatePinnedCompanies() {\n const value = this.companies.filter(envItem => envItem.pinDate.getTime() !== new Date(null).getTime()).map(envItem => ({\n id: envItem.id,\n favoriteDate: envItem.pinDate\n }));\n const settingDefinition = {\n settingKey: this.companiesPinsSettingKey,\n value: JSON.stringify(value),\n clientId: this.appContextService.getContext().productName\n };\n this.userSettingsService.setCurrentUserSetting(settingDefinition);\n }\n static {\n this.ɵfac = function CompaniesTabSelectorService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CompaniesTabSelectorService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: CompaniesTabSelectorService,\n factory: CompaniesTabSelectorService.ɵfac\n });\n }\n }\n return CompaniesTabSelectorService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SubscriptionsProviderService = /*#__PURE__*/(() => {\n class SubscriptionsProviderService {\n constructor() {\n this.data$ = new BehaviorSubject(undefined);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.httpClient = inject(HttpClient);\n this.amsService = inject(AmsService);\n }\n /**\n * Gets the list of subscriptions\n *\n * @returns the list of subscriptions\n */\n async getData() {\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n const subscriptionsSourceUri = shellOptions?.defaultEnvironmentSelector.subscriptionsSourceUri;\n if (!subscriptionsSourceUri) {\n return [];\n }\n const uri = this.replaceStandardRequestParameters(subscriptionsSourceUri);\n const result = await firstValueFrom(this.httpClient.get(uri));\n const subscriptions = [];\n result?.forEach(subscriptionInfo => {\n const subscription = {\n id: subscriptionInfo.subscriptionId,\n key: subscriptionInfo.subscriptionAlias,\n name: subscriptionInfo.subscriptionDescription,\n description: subscriptionInfo.subscriptionAlias,\n logo: null,\n // no logo\n isSelected: subscriptionInfo.subscriptionAlias?.toLowerCase() === this.amsService.subscription?.toLowerCase(),\n additionalInfo: {\n accountKey: subscriptionInfo.accountKey,\n companies: subscriptionInfo.companies\n }\n };\n subscriptions.push(subscription);\n });\n return subscriptions;\n }\n /**\n * Replaces standard request parameters\n *\n * @param uri the endpoint uri\n * @returns the uri with the replaced parameters\n */\n replaceStandardRequestParameters(uri) {\n uri = uri.replace('{{PageSize}}', '1000');\n uri = uri.replace('{{PageIndex}}', '1');\n uri = uri.replace('{{SearchTerm}}', '');\n return uri;\n }\n static {\n this.ɵfac = function SubscriptionsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SubscriptionsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SubscriptionsProviderService,\n factory: SubscriptionsProviderService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return SubscriptionsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SUBSCRIPTIONS_PROVIDER_TOKEN = new InjectionToken('SubscriptionsProviderToken', {\n providedIn: 'root',\n factory: () => new SubscriptionsProviderService()\n});\nlet SubscriptionsTabSelectorService = /*#__PURE__*/(() => {\n class SubscriptionsTabSelectorService {\n get searchableProperties() {\n return ['name', 'description', 'companies'];\n }\n constructor() {\n this.id = 'UserSubscriptions';\n this.isSearchEnabled = true;\n this.isPinEnabled = true;\n this.enabled$ = new BehaviorSubject(false);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.i18nService = inject(I18nService);\n this.windowService = inject(WindowService);\n this.destroyRef = inject(DestroyRef);\n this.appContextService = inject(AppContextService);\n this.userSettingsService = inject(UserSettingsService);\n this.subscriptionsService = inject(SUBSCRIPTIONS_PROVIDER_TOKEN);\n this.subscriptionPinsSettingKey = ['favorite', 'subscriptions'].join('_');\n this.shellConfigurationService.getShellOptions().pipe(takeUntilDestroyed(this.destroyRef)).subscribe(shellOptions => {\n const {\n subscriptionsSourceUri\n } = shellOptions.defaultEnvironmentSelector;\n if (subscriptionsSourceUri?.length > 0) {\n this.enabled$.next(true);\n }\n });\n }\n /**\n * Get the data to be displayed in the selector\n */\n getData() {\n if (this.subscriptions) {\n return of(this.subscriptions);\n } else {\n const pinnedSubscriptions = this.getPinnedSubscriptions();\n const subscriptionRequest = this.subscriptionsService.getData();\n return forkJoin([subscriptionRequest, pinnedSubscriptions]).pipe(take(1), map(([allSubscriptions, pinnedSubscriptions]) => {\n allSubscriptions?.forEach(subscription => {\n const pinDate = pinnedSubscriptions.find(s => s.id === subscription.id)?.favoriteDate;\n subscription.pinDate = pinDate ? new Date(pinDate) : new Date(null);\n });\n this.subscriptions = allSubscriptions;\n return allSubscriptions;\n }));\n }\n }\n /**\n * Get the tab name to be displayed in the selector\n */\n getTabName() {\n return this.i18nService.get('shell.components.RES_Shell_Menu_SubscriptionsLabel');\n }\n /**\n * Get the placeholder name to be displayed in the search input\n */\n getSearchPlaceHolderName() {\n const subscriptionsWithNifs = this.subscriptions.filter(subscription => subscription.additionalInfo?.['companies']?.length);\n if (subscriptionsWithNifs?.length) {\n return this.i18nService.get('shell.components.RES_Shell_Menu_SearchSubscriptionPlaceholder_With_Nif');\n }\n return this.i18nService.get('shell.components.RES_Shell_Menu_SearchSubscriptionPlaceholder');\n }\n /**\n * Method to be called when the user clicks on the pin icon\n */\n pinItem(item) {\n if (item) {\n // find item in userSubscriptions\n const subscriptionItem = this.subscriptions.find(s => s.id === item.id);\n // update pinDate\n if (subscriptionItem) {\n subscriptionItem.pinDate = new Date();\n }\n // update userSettings\n this.updatePinnedSubscriptions();\n }\n }\n /**\n * Method to be called when the user clicks on the unpin icon\n */\n unPinItem(item) {\n if (item) {\n // find item in userSubscriptions\n const subscriptionItem = this.subscriptions.find(s => s.id === item.id);\n // update pinDate to null\n if (subscriptionItem) {\n subscriptionItem.pinDate = new Date(null);\n }\n // update userSettings\n this.updatePinnedSubscriptions();\n }\n }\n /**\n * Method to be called when the user clicks on an item\n */\n onItemClick(item) {\n if (item) {\n let url = this.concatenateAddressSegments([this.windowService.window.location.origin, item.additionalInfo['accountKey'], item.key]);\n // due to ARR rules there is the need to add a trailing slash to the url\n url += '/';\n this.windowService.window.location.assign(url);\n }\n }\n /**\n * Get the primary text to be displayed in the selector\n */\n getSelectorPrimaryText() {\n const currentSubscription = this.subscriptions?.find(s => s.isSelected);\n return currentSubscription?.name || '';\n }\n /**\n * Get selector tab item header text\n */\n getSelectorTabItemHeaderText(item) {\n return item.name;\n }\n /**\n * Get selector tab item sub header text\n */\n getSelectorTabItemSubHeaderText(item) {\n const numberOfCompanies = item.additionalInfo['companies']?.length;\n if (!numberOfCompanies) {\n // no companies default to subscription alias\n return item.key;\n }\n return `${numberOfCompanies} ${this.i18nService.get('shell.components.RES_Shell_Menu_CompaniesLabel')}`;\n }\n /**\n * Update the pinned subscriptions\n */\n updatePinnedSubscriptions() {\n const value = this.subscriptions.filter(envItem => envItem.pinDate.getTime() !== new Date(null).getTime()).map(envItem => ({\n id: envItem.id,\n favoriteDate: envItem.pinDate\n }));\n const settingDefinition = {\n settingKey: this.subscriptionPinsSettingKey,\n value: JSON.stringify(value),\n clientId: this.appContextService.getContext().productName\n };\n this.userSettingsService.setCurrentUserSetting(settingDefinition);\n }\n /**\n * Get the pinned subscriptions\n *\n * @returns the pinned subscriptions\n */\n async getPinnedSubscriptions() {\n try {\n const userSettings = await this.userSettingsService.getCurrentUserSetting(this.subscriptionPinsSettingKey, this.appContextService.getContext().productName);\n let pinnedSubscriptions = [];\n if (userSettings?.value) {\n pinnedSubscriptions = JSON.parse(userSettings.value);\n }\n return pinnedSubscriptions;\n } catch (error) {\n return [];\n }\n }\n /**\n * Concatenates address segments\n *\n * @param segments address segments\n * @returns concatenated address\n */\n concatenateAddressSegments(segments) {\n let res = '';\n segments.forEach(s => {\n if (s.startsWith('http') || s.startsWith('/')) {\n res += s;\n } else {\n res += '/' + s;\n }\n });\n return res;\n }\n static {\n this.ɵfac = function SubscriptionsTabSelectorService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SubscriptionsTabSelectorService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SubscriptionsTabSelectorService,\n factory: SubscriptionsTabSelectorService.ɵfac\n });\n }\n }\n return SubscriptionsTabSelectorService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet DefaultSelectorProviderService = /*#__PURE__*/(() => {\n class DefaultSelectorProviderService {\n constructor() {\n this.providerTabs = signal([]);\n this.providerTabs$ = toObservable(this.providerTabs);\n this.subscriptionsTabSelectorService = inject(SubscriptionsTabSelectorService);\n this.companiesTabSelectorService = inject(CompaniesTabSelectorService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.getProviderTabs();\n }\n /** Get the tabs to be displayed in the selector */\n getTabs() {\n return this.providerTabs$;\n }\n /** Get the primary text to be displayed in the selector */\n getSelectorPrimaryText() {\n return this.companiesTabSelectorService.getSelectorPrimaryText() || this.subscriptionsTabSelectorService.getSelectorPrimaryText();\n }\n /** Get the secondary text to be displayed in the selector */\n getSelectorSecondaryText() {\n return this.companiesTabSelectorService.getSelectorSecondaryText() || '';\n }\n async getProviderTabs() {\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n if (shellOptions.defaultEnvironmentSelector.subscriptionsSourceUri?.length > 0) {\n this.providerTabs().push(this.subscriptionsTabSelectorService);\n }\n if (shellOptions.defaultEnvironmentSelector.companiesSourceUri?.length > 0) {\n this.providerTabs().push(this.companiesTabSelectorService);\n }\n }\n static {\n this.ɵfac = function DefaultSelectorProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DefaultSelectorProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: DefaultSelectorProviderService,\n factory: DefaultSelectorProviderService.ɵfac\n });\n }\n }\n return DefaultSelectorProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SELECTOR_PROVIDER_TOKEN = new InjectionToken('SubscriptionsProvider', {\n providedIn: 'root',\n factory: () => {\n /**\n * Injection token factory does not support dependency injection\n * so we need to create a new instance of DefaultSelectorProviderService\n * using the Injector.create method to inject the required services\n * in order to create the DefaultSelectorProviderService instance\n */\n const injector = inject(Injector);\n const defaultSelectorProviderService = Injector.create({\n providers: [DefaultSelectorProviderService, SubscriptionsTabSelectorService, CompaniesTabSelectorService],\n parent: injector\n }).get(DefaultSelectorProviderService);\n return defaultSelectorProviderService;\n }\n});\nvar SidebarItemType = /*#__PURE__*/function (SidebarItemType) {\n SidebarItemType[\"DefaultAction\"] = \"default-action\";\n SidebarItemType[\"NavigationHistory\"] = \"navigation-history\";\n SidebarItemType[\"QuickActions\"] = \"quick-actions\";\n SidebarItemType[\"Drafts\"] = \"drafts\";\n SidebarItemType[\"Favorites\"] = \"favorites\";\n SidebarItemType[\"Search\"] = \"search\";\n SidebarItemType[\"Menu\"] = \"menu\";\n return SidebarItemType;\n}(SidebarItemType || {});\nclass MenuDefinition {\n constructor(menuDefinition) {\n /** An array with the homepages for each claim set. */\n this.defaultActions = [];\n /** The menu items. */\n this.menuItems = [];\n if (menuDefinition) {\n Object.assign(this, menuDefinition);\n }\n }\n}\n\n/**\n * Represents the ways that an URL can be accessed inside the system.\n * Each one of these changes the way that sidebar is rendered.\n *\n * `Search`: The URL is accessed from the `SearchComponent`\n *\n * `Menu`: The URL is accessed from the `MenuComponent`\n *\n * `SidebarItem`: The URL is accessed from the `SidebarItemComponent`\n *\n * `Navigation`: The URL is accessed from a navigation event (browser)\n *\n * `InnerAction`: The URL is accessed from an action available in the system (e.g.: create, edit, etc...)\n */\nvar RouteAccessOrigin = /*#__PURE__*/function (RouteAccessOrigin) {\n /** The URL is accessed from an action available in the system (e.g.: create, edit, etc...) */\n RouteAccessOrigin[RouteAccessOrigin[\"InnerAction\"] = 0] = \"InnerAction\";\n /** The URL is accessed from the `MenuComponent` */\n RouteAccessOrigin[RouteAccessOrigin[\"Menu\"] = 1] = \"Menu\";\n /** The URL is accessed from a navigation event (browser) */\n RouteAccessOrigin[RouteAccessOrigin[\"Navigation\"] = 2] = \"Navigation\";\n /** The URL is accessed from the `SearchComponent` */\n RouteAccessOrigin[RouteAccessOrigin[\"Search\"] = 3] = \"Search\";\n /** The URL is accessed from the `SidebarItemComponent` */\n RouteAccessOrigin[RouteAccessOrigin[\"SidebarItem\"] = 4] = \"SidebarItem\";\n return RouteAccessOrigin;\n}(RouteAccessOrigin || {});\nlet SidebarService = /*#__PURE__*/(() => {\n class SidebarService {\n constructor() {\n this.accessOrigin = signal(RouteAccessOrigin.Navigation);\n this.activeItemType = signal(null);\n this.selectedItemId = signal(null);\n /**\n * Emits when the route is changed by keyboard navigation (a sidebar-item is selected).\n */\n this.routeChangedByKeyboardNavigation$ = new Subject();\n this.menuDefinition = signal(null);\n this.isMenuDefinitionLoading$ = new BehaviorSubject(false);\n this.router = inject(Router);\n this.broadcastService = inject(BroadcastService);\n this.routeHelperService = inject(RouteHelperService);\n this.amsService = inject(AmsService);\n this.cacheHelperService = inject(CacheHelperService);\n this.storageService = inject(StorageService);\n this.roleService = inject(RoleService);\n this.httpClient = inject(HttpClient);\n this.errorsService = inject(ErrorsService);\n }\n /**\n * Get the menu version to generated cache key.\n */\n get menuVersion() {\n return undefined;\n }\n /**\n * Loads and returns the menu definition from the provided URL.\n *\n * @param url The URL to load the menu definition from.\n */\n async loadMenuDefinition(url) {\n // Prevent duplicated requests by waiting for the previous one to finish\n if (this.isMenuDefinitionLoading$.getValue()) {\n const promise = await firstValueFrom(this.isMenuDefinitionLoading$.pipe(filter(loading => !loading), map(() => this.loadMenuDefinition(url))));\n return promise;\n }\n // Try to load the menu definition from cache, if available\n const cacheKey = this.cacheHelperService.generateCacheKey(this.amsService.account ? true : false, true, true, ['menu-definition'], this.menuVersion ? [this.menuVersion] : []);\n const menu = this.storageService.get(cacheKey);\n if (menu) {\n // If the menu definition is already in cache, return it\n const menuDefinition = new MenuDefinition(JSON.parse(menu));\n this.menuDefinition.set(menuDefinition);\n return menuDefinition;\n } else {\n // If the menu definition is not cached, load it from the provided URI, cache it and return it\n this.isMenuDefinitionLoading$.next(true);\n const menuDefinition = await this.getMenuData(url);\n this.menuDefinition.set(menuDefinition);\n this.storageService.set(cacheKey, JSON.stringify(menuDefinition));\n this.isMenuDefinitionLoading$.next(false);\n return menuDefinition;\n }\n }\n /**\n * Navigates to the default action.\n */\n navigateToHomePage() {\n const defaultAction = this.menuDefinition()?.defaultActions?.[0] || null;\n // check if we're not already in the defaultUri\n if (!this.router.url.includes(defaultAction?.contextUri) || defaultAction?.contextUri === '/' || defaultAction?.contextUri === '') {\n // clear title\n this.broadcastService.emit('eventTitleChanged', {\n value: ''\n });\n if (defaultAction?.contextUri) {\n this.routeHelperService.navigate(this.amsService.account, this.amsService.subscription, defaultAction.contextUri, {}, OutletEnum.Primary, false);\n this.accessOrigin.set(RouteAccessOrigin.Navigation);\n this.activeItemType.set(SidebarItemType.DefaultAction);\n this.selectedItemId.set(null);\n } else {\n this.routeHelperService.navigateToRoot(this.amsService.account, this.amsService.subscription);\n this.accessOrigin.set(RouteAccessOrigin.Navigation);\n this.activeItemType.set(null);\n this.selectedItemId.set(null);\n }\n }\n }\n handleItemContainerKeydown(element) {\n element.click();\n const isSelectable = element.classList.contains('selectable-item');\n if (isSelectable) {\n this.routeChangedByKeyboardNavigation$.next();\n }\n }\n /**\n * Retrieves the menu data.\n *\n * @returns The menu definition.\n */\n async getMenuData(url) {\n try {\n const menuDefinition = await firstValueFrom(this.httpClient.get(url).pipe(\n // Use switchMap to cancel the previous navigation event and only keep the last one\n switchMap(menuDefinition => of(new MenuDefinition(menuDefinition))), take(1)));\n return menuDefinition;\n } catch (error) {\n this.errorsService.showErrorMessage({\n message: `Failed to get menu contents from '${url}'`,\n canBackToHome: false,\n canBackToPreviousPage: false,\n canGoToSubscriptionsPage: true\n });\n throw error;\n }\n }\n static {\n this.ɵfac = function SidebarService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarService,\n factory: SidebarService.ɵfac\n });\n }\n }\n return SidebarService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_PROVIDER_TOKEN = new InjectionToken('SidebarServiceProvider', {\n providedIn: 'root',\n factory: () => new SidebarService()\n});\n\n/** Service that provides the Sidebar's default actions. */\nlet SidebarDefaultActionsProviderService = /*#__PURE__*/(() => {\n class SidebarDefaultActionsProviderService {\n constructor() {\n this._defaultActions = [];\n this._sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n }\n async getDefaultActions(uri) {\n const menuDefinition = await this._sidebarService.loadMenuDefinition(uri);\n if (menuDefinition.defaultActions?.length > 0) {\n this._defaultActions = menuDefinition.defaultActions;\n }\n return this._defaultActions;\n }\n static {\n this.ɵfac = function SidebarDefaultActionsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarDefaultActionsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarDefaultActionsProviderService,\n factory: SidebarDefaultActionsProviderService.ɵfac\n });\n }\n }\n return SidebarDefaultActionsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_DEFAULT_ACTIONS_PROVIDER_TOKEN = new InjectionToken('SidebarDefaultActionsProvider', {\n providedIn: 'root',\n factory: () => new SidebarDefaultActionsProviderService()\n});\nclass SearchProvider {}\nlet SearchService = /*#__PURE__*/(() => {\n class SearchService {\n constructor() {\n this._providers = [];\n }\n get providers() {\n return this._providers;\n }\n registerProvider(provider) {\n const existing = this._providers.filter(p => p.name === provider.name);\n if (existing && existing.length > 0) {\n console.error(`The search provider ${existing[0].name} is already registered!`);\n }\n this._providers.push(provider);\n }\n search(searchTerm) {\n const subject = new ReplaySubject(1);\n this.reading = true;\n let providersCount = this.providers.length;\n this._providers.forEach(p => {\n p.search(searchTerm).then(data => {\n providersCount--;\n if (providersCount === 0) {\n this.reading = false;\n }\n subject.next(data);\n });\n });\n return subject;\n }\n static {\n this.ɵfac = function SearchService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SearchService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SearchService,\n factory: SearchService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return SearchService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Service that provides the Sidebar's quick actions. */\nlet SidebarDraftsProviderService = /*#__PURE__*/(() => {\n class SidebarDraftsProviderService extends SearchProvider {\n constructor() {\n super();\n this._allItems = [];\n this.http = inject(HttpClient);\n this.draftModelService = inject(DraftModelService);\n this.messagesService = inject(MessagesService);\n this.searchService = inject(SearchService);\n this.i18nService = inject(I18nService);\n this.exceptionHandlerService = inject(ExceptionHandlerService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.name = 'drafts';\n this.title = this.i18nService.get('shell.components.RES_Shell_Drafts_Heading');\n this.searchService.registerProvider(this);\n }\n async getDrafts() {\n try {\n if (!this.uri) {\n const {\n sidebar\n } = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n const draftItemsUri = sidebar.drafts.uri;\n if (!draftItemsUri) {\n Promise.reject(new Error('Draft items URI is not defined in the configuration.'));\n return this._allItems;\n }\n this.uri = draftItemsUri;\n }\n const handledUri = this.handleUriParams(this.uri);\n const items = await firstValueFrom(this.http.get(handledUri, {\n observe: 'response'\n }).pipe(map(response => response.body), take(1)));\n // Use them to create a new url which the account and subscription are url query parameters.\n this._allItems = items.map(item => {\n item.url = item.url.split('/#/')[1];\n return item;\n });\n } catch (error) {\n this.exceptionHandlerService.showError(error);\n } finally {\n // eslint-disable-next-line no-unsafe-finally\n return this._allItems;\n }\n }\n async deleteDraft(id) {\n try {\n await this.draftModelService.delete(id);\n this._allItems = this._allItems.filter(({\n documentId\n }) => documentId !== id);\n return this._allItems;\n } catch (error) {\n this.messagesService.show(error);\n return this._allItems;\n }\n }\n search(searchTerm) {\n searchTerm = searchTerm.toLowerCase();\n const match = this._allItems.filter(i => i.description && i.description.toLowerCase().includes(searchTerm) || i.title.toLowerCase().normalize('NFD').replace(/[\\u0300-\\u036f]/g, '').includes(searchTerm));\n const res = match.map(o => {\n const r = {\n id: o.documentId,\n url: o.url,\n authorityName: this.name,\n authorityTitle: this.title,\n title: o.title,\n snippet: o.description ? o.description : ''\n };\n return r;\n });\n return Promise.resolve(res);\n }\n /**\n * Returns the URI with the params replaced.\n *\n * @param uri The URI to handle.\n */\n handleUriParams(uri) {\n // Set MinDate and MaxDate Params - ex: '2019-07-15T00:00:00'\n const startingFrom = new Date();\n startingFrom.setMonth(startingFrom.getMonth() - 1);\n const minDate = startingFrom.toISOString();\n const until = new Date();\n until.setDate(until.getDate() + 1);\n const maxDate = until.toISOString();\n const _uri = uri.replace('{{MinDate}}', minDate).replace('{{MaxDate}}', maxDate).replace('{{PageSize}}', '100').replace('{{PageIndex}}', '1').replace('{{SearchTerm}}', '');\n return _uri;\n }\n static {\n this.ɵfac = function SidebarDraftsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarDraftsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarDraftsProviderService,\n factory: SidebarDraftsProviderService.ɵfac\n });\n }\n }\n return SidebarDraftsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_DRAFTS_PROVIDER_TOKEN = new InjectionToken('SidebarDraftsProvider', {\n providedIn: 'root',\n factory: () => new SidebarDraftsProviderService()\n});\n\n/** Service that provides the Sidebar's favorites. */\nlet SidebarFavoritesProviderService = /*#__PURE__*/(() => {\n class SidebarFavoritesProviderService {\n getFavorites() {\n throw new Error('Method not implemented.');\n }\n static {\n this.ɵfac = function SidebarFavoritesProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarFavoritesProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarFavoritesProviderService,\n factory: SidebarFavoritesProviderService.ɵfac\n });\n }\n }\n return SidebarFavoritesProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_FAVORITES_PROVIDER_TOKEN = new InjectionToken('SidebarFavoritesProvider', {\n providedIn: 'root',\n factory: () => new SidebarFavoritesProviderService()\n});\n\n/** Service that provides the Sidebar's menu items. */\nlet SidebarMenuItemsProviderService = /*#__PURE__*/(() => {\n class SidebarMenuItemsProviderService extends SearchProvider {\n constructor() {\n super();\n this._menuItems = [];\n this._sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this._searchService = inject(SearchService);\n this._i18n = inject(I18nService);\n this._httpClient = inject(HttpClient);\n // Override the SearchProvider values\n this.name = 'menu';\n // In order for menu items to appear on the search results, register the search provider\n this._searchService.registerProvider(this);\n }\n /**\n * Retrieves the menu items.\n *\n * @param uri The URI where to obtain the menu items from.\n * @param customUri The URI where to obtain the custom menu items from.\n * @returns A promise with the menu items.\n */\n async getMenuItems(uri, customUri) {\n let menuDefinition = await this._sidebarService.loadMenuDefinition(uri);\n if (!menuDefinition.menuItems) {\n return this._menuItems;\n }\n if (customUri) {\n menuDefinition = await this.mergeCustomMenuDefinition(customUri, menuDefinition);\n }\n if (menuDefinition.menuItems.length > 0) {\n this._menuItems = menuDefinition.menuItems;\n }\n return this._menuItems;\n }\n /**\n * Finds the search term on the menu items.\n *\n * @param searchTerm The search term to find.\n * @returns A promise with the search results.\n */\n search(searchTerm) {\n return new Promise(resolve => {\n let searchResult = [];\n // Find on root\n const deepFindResult = this.deepFind(searchTerm, this._menuItems, '');\n if (deepFindResult && deepFindResult.length > 0) {\n searchResult = [...searchResult, ...deepFindResult];\n }\n // Find on children\n else {\n this._menuItems.forEach(m => {\n const deepFindResult = this.deepFind(searchTerm, m.menuItems, m.caption);\n if (deepFindResult && deepFindResult.length > 0) {\n searchResult = [...searchResult, ...deepFindResult];\n }\n });\n }\n resolve(searchResult);\n });\n }\n /**\n * Gets an array of menu items from a custom menu definition and merges them with the global menu definition.\n *\n * @param url The URL to get the custom menu items from.\n * * @param menuDefinition The base menu definition to add the custom menu items.\n */\n mergeCustomMenuDefinition(url, menuDefinition) {\n return new Promise(resolve => {\n this._httpClient.get(url).pipe(take(1)).subscribe({\n next: customMenuItems => {\n customMenuItems.forEach(customMenuItem => {\n // Search in the first level of the global menu\n const indexOnRoot = menuDefinition.menuItems.findIndex(globalMenuItem => globalMenuItem.id === customMenuItem.id);\n // Found on global menu, merge the custom menu items\n if (indexOnRoot !== -1) {\n menuDefinition.menuItems[indexOnRoot].menuItems.push(...customMenuItem.menuItems);\n }\n // Recursively find the custom menu item on the root menu menuItems\n else {\n for (const rootMenuItem of menuDefinition.menuItems) {\n if (this.mergeMenuRecursive(customMenuItem, rootMenuItem)) {\n break;\n }\n }\n }\n });\n resolve(menuDefinition);\n },\n error: _err => resolve(menuDefinition)\n });\n });\n }\n /**\n * Finds the `MenuItem` on a `MenuItem`'s children and merges their children.\n *\n * @param customMenu The `MenuItem` to search for.\n * @param searchOn The `MenuItem` to search on.\n * @returns\tThe `MenuItem`, if found, or null otherwise.\n */\n mergeMenuRecursive(customMenu, searchOn) {\n const foundOnIndex = searchOn.menuItems.findIndex(child => child.id === customMenu.id);\n // Found the menu\n if (foundOnIndex !== -1) {\n searchOn.menuItems[foundOnIndex].menuItems.push(...customMenu.menuItems);\n return true;\n }\n // Search in the children\n for (const childMenuItem of searchOn.menuItems) {\n this.mergeMenuRecursive(customMenu, childMenuItem);\n }\n return false;\n }\n deepFind(searchTerm, items, parentName) {\n searchTerm = searchTerm.toLowerCase();\n const match = items?.filter(it => it.uri != null && it.caption != null && this._i18n.get(it.caption).toLowerCase().normalize('NFD').replace(/[\\u0300-\\u036f]/g, '').includes(searchTerm));\n let res = match?.map(o => {\n const snippet = `
${this._i18n.get(parentName)}
`;\n const r = {\n id: o.uri,\n url: o.uri,\n authorityName: 'menus',\n authorityTitle: 'Menus',\n title: this._i18n.get(o.caption),\n snippet\n };\n return r;\n });\n const subMenus = items?.filter(it => it.menuItems != null);\n if (subMenus?.length > 0) {\n subMenus.forEach(m => {\n if (m.menuItems?.length > 0) {\n // Filter all non empty values from the breadcrumbs\n const breadcrumbs = [this._i18n.get(parentName), this._i18n.get(m.caption)].filter(value => value);\n const deepFindResults = this.deepFind(searchTerm, m.menuItems, breadcrumbs.join('/'));\n if (deepFindResults) {\n res = [...res, ...deepFindResults];\n }\n }\n });\n }\n return res;\n }\n static {\n this.ɵfac = function SidebarMenuItemsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarMenuItemsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarMenuItemsProviderService,\n factory: SidebarMenuItemsProviderService.ɵfac\n });\n }\n }\n return SidebarMenuItemsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_MENU_ITEMS_PROVIDER_TOKEN = new InjectionToken('SidebarMenuItemsProvider', {\n providedIn: 'root',\n factory: () => new SidebarMenuItemsProviderService()\n});\n\n/**\n * Class that represents the navigation history of the application.\n */\nclass NavigationHistory {\n constructor(initialValue) {\n if (initialValue) {\n Object.assign(this, initialValue);\n }\n if (!this.id) {\n this.id = GuidService.createUID();\n }\n if (!this.outlet) {\n this.outlet = OutletEnum.Primary;\n }\n }\n}\nlet SidebarNavigationHistoryProviderService = /*#__PURE__*/(() => {\n class SidebarNavigationHistoryProviderService {\n constructor() {\n /** Stores the sorted navigation history */\n this.history$ = new BehaviorSubject([]);\n /** Emits when the route is updated */\n this.routeChange$ = new Subject();\n /** Emits when a history record is added/updated in the history array */\n this.historyUpsert$ = new BehaviorSubject(false);\n this.maxRecords = 15;\n this.router = inject(Router);\n this.destroyRef = inject(DestroyRef);\n this.userSettingsService = inject(UserSettingsService);\n this.appContextService = inject(AppContextService);\n this.amsService = inject(AmsService);\n this.viewTitleService = inject(ViewTitleService);\n this.routeHelperService = inject(RouteHelperService);\n this.roleService = inject(RoleService);\n this.clientId = this.appContextService.getContext().productName;\n this.initialize();\n }\n trackNavigationHistory() {\n this.router.events.pipe(filter(event => event instanceof NavigationEnd), filter(() => this.shouldSaveInHistory()), map(event => event), map(({\n urlAfterRedirects\n }) => this.getNavigationMetadata(urlAfterRedirects)), filter(navigationMetadata => this.routeHasValidPathname(navigationMetadata.pathname)), distinctUntilKeyChanged('pathname'), takeUntilDestroyed(this.destroyRef)).subscribe(navigationMetadata => {\n this.routeChange$.next();\n this.handleAddOrUpdateHistoryRecord(navigationMetadata);\n const upsertHistoryRecord = this.getHistoryRecordFromPathname(navigationMetadata.pathname);\n if (upsertHistoryRecord) {\n this.listenForReplaceUrl();\n this.listenForViewTitleChanges(navigationMetadata.pathname);\n }\n });\n }\n async persistHistory() {\n const settingDefinition = {\n settingKey: this.settingKey,\n value: JSON.stringify(this.history$.getValue()),\n clientId: this.clientId\n };\n await this.userSettingsService.setCurrentUserSetting(settingDefinition);\n }\n async loadHistory() {\n const userSettings = await this.userSettingsService.getCurrentUserSetting(this.settingKey, this.clientId);\n if (userSettings?.value) {\n const loadedHistory = JSON.parse(userSettings.value);\n const history = loadedHistory.map(item => new NavigationHistory(item)).sort((a, b) => b.recordedDate - a.recordedDate);\n this.history$.next(history);\n }\n }\n /**\n * Returns a history record from the history list based on the pathname.\n *\n * @param pathname The pathname to search for in the history list.\n */\n getHistoryRecordFromPathname(pathname) {\n const historyRecord = this.history$.getValue().find(record => record.pathname === pathname);\n return historyRecord;\n }\n /**\n * Tracks the first loaded page and adds it to the navigation history.\n * This is necessary because the first page is not tracked by the `trackNavigationHistory` method.\n * This method is called only once when the application is initialized.\n */\n trackFirstLoadedPage() {\n const firstLoadedPageUrl = this.router.url;\n const navigationMetadata = this.getNavigationMetadata(firstLoadedPageUrl);\n this.handleAddOrUpdateHistoryRecord(navigationMetadata, true);\n }\n /**\n * Listens for route changes when the `replaceUrl` property is true.\n * This behavior occurs when the query parameters of the current route are updated.\n */\n listenForReplaceUrl() {\n this.router.events.pipe(filter(event => event instanceof NavigationEnd), filter(() => this.router.getCurrentNavigation().extras.replaceUrl), map(event => event), map(({\n urlAfterRedirects\n }) => this.getNavigationMetadata(urlAfterRedirects)), takeUntil(this.routeChange$)).subscribe(async ({\n urlAfterRedirects,\n pathname\n }) => {\n const recordToUpdate = this.getHistoryRecordFromPathname(pathname);\n if (recordToUpdate?.uri === urlAfterRedirects) {\n return;\n }\n // This code must wait for the history array to be added/updated before updating the record with the new URL.\n await firstValueFrom(this.historyUpsert$.pipe(filter(Boolean)));\n const currentHistory = this.getImmutableHistory();\n const updatedHistory = currentHistory.map(record => {\n if (record.id === recordToUpdate?.id) {\n return new NavigationHistory({\n ...record,\n uri: urlAfterRedirects\n });\n }\n return record;\n });\n this.setAndPersistHistory(updatedHistory);\n });\n }\n /**\n * Monitors changes to the view title and updates the title of the currently activated route.\n * This ensures that the title is correctly updated regardless of whether the view title is changed\n * before or after the navigation history record is added.\n *\n * Example of view title defined before route loading: `DynamicFormUpdateComponent` (editing an entity that uses dynamic form classes)\n *\n * @param pathname The route pathname to identify the history record to be updated.\n */\n listenForViewTitleChanges(pathname) {\n this.getViewTitle().pipe(takeUntil(this.routeChange$)).subscribe(async ({\n title\n }) => {\n const recordToUpdate = this.getHistoryRecordFromPathname(pathname);\n if (recordToUpdate.title === title) {\n return;\n }\n // This code must wait for the history array to be added/updated before updating the record with the new title.\n await firstValueFrom(this.historyUpsert$.pipe(filter(Boolean)));\n const currentHistory = this.getImmutableHistory();\n const updatedHistory = currentHistory.map(record => {\n if (record.id === recordToUpdate?.id) {\n return new NavigationHistory({\n ...record,\n title\n });\n }\n return record;\n });\n this.setAndPersistHistory(updatedHistory);\n });\n }\n /**\n * Checks if the history record already exists in the history list and updates the record date.\n * Otherwise, adds the record to the history list.\n *\n * @param navigationMetadata The navigation metadata.\n * @param isFirstLoadedPage Indicates whether the record is from the first loaded page.\n * This flag help us to get view title when it is loaded before the record is added.\n * @returns The added/updated history record.\n */\n handleAddOrUpdateHistoryRecord(navigationMetadata, isFirstLoadedPage = false) {\n this.historyUpsert$.next(false);\n const addedRecord = this.getHistoryRecordFromPathname(navigationMetadata.pathname);\n if (addedRecord) {\n this.updateHistoryRecordDate(addedRecord);\n } else {\n this.addToHistory(navigationMetadata, isFirstLoadedPage);\n }\n }\n /**\n * Updates the recorded date of a history record.\n *\n * @param recordToUpdate The history record to update.\n * @returns The updated history record.\n */\n updateHistoryRecordDate(recordToUpdate) {\n const currentHistory = this.getImmutableHistory();\n const recordedDate = Date.now();\n const updatedHistory = currentHistory.map(record => {\n if (record.id === recordToUpdate?.id) {\n return new NavigationHistory({\n ...record,\n recordedDate\n });\n }\n return record;\n });\n this.setAndPersistHistory(updatedHistory);\n this.historyUpsert$.next(true);\n }\n /**\n * Returns the navigation metadata by extracting the pathname from the URL.\n */\n getNavigationMetadata(urlAfterRedirects) {\n const fullUrl = window.location.origin + urlAfterRedirects;\n const pathname = new URL(fullUrl).pathname;\n const navigationMetadata = {\n urlAfterRedirects,\n pathname\n };\n return navigationMetadata;\n }\n /**\n * Identifies whether the route should be saved in the history.\n * A route should be saved in the history if the `replaceUrl` property is `false`.\n * This property is `false` when the route is not updated by the query parameters.\n */\n shouldSaveInHistory() {\n const navigationExtras = this.router.getCurrentNavigation().extras;\n const shouldSaveInHistory = !navigationExtras.replaceUrl;\n return shouldSaveInHistory;\n }\n /**\n * Identifies whether the route is valid based on the `pathname`.\n * A valid pathname is a pathname that is not empty when the account and subscription are removed.\n *\n * @param pathname The pathname to validate.\n */\n routeHasValidPathname(pathname) {\n const pathNameWithoutAccountSubscription = this.routeHelperService.removeAccountAndSubscription(pathname, this.amsService.account, this.amsService.subscription);\n return pathNameWithoutAccountSubscription !== '';\n }\n /**\n * Updates the value of the `history$` observable and persists it.\n *\n * @param newHistory The new navigation history.\n */\n setAndPersistHistory(newHistory) {\n const sortedNewHistory = newHistory.sort((a, b) => b.recordedDate - a.recordedDate);\n this.history$.next(sortedNewHistory);\n this.persistHistory();\n }\n async initialize() {\n await this.loadHistory();\n await this.trackFirstLoadedPage();\n this.trackNavigationHistory();\n }\n /**\n * Updates the value of the `history$` observable with the new navigation record.\n *\n * @param metadata The navigation metadata.\n * @param isFirstLoadedPage Indicates whether the record is from the first loaded page.\n * This flag help us to get view title when it is loaded before the navigation event.\n * @returns The new navigation history record.\n */\n addToHistory(historyMetadata, isFirstLoadedPage) {\n // Sometimes the view title is loaded before the navigation event, so we need to check if the view title is already loaded.\n // This behavior only occurs in the first loaded page.\n const lastStoredViewTitleMetadata = this.viewTitleService.getViewTitleMetadata();\n const viewTitleObs$ = isFirstLoadedPage && lastStoredViewTitleMetadata?.title ? of(lastStoredViewTitleMetadata) : this.getViewTitle();\n viewTitleObs$.pipe(take(1), takeUntil(this.routeChange$)).subscribe(({\n title,\n outlet\n }) => {\n const newRecord = new NavigationHistory({\n title,\n uri: historyMetadata.urlAfterRedirects,\n pathname: historyMetadata.pathname,\n recordedDate: Date.now(),\n outlet\n });\n const currentHistory = this.getImmutableHistory();\n // Ensure that there are no duplicate records with the same title.\n const recordWithSameTitle = currentHistory.find(record => record.title === newRecord.title);\n if (recordWithSameTitle) {\n const indexOfRecordWithSameTitle = currentHistory.indexOf(recordWithSameTitle);\n currentHistory.splice(indexOfRecordWithSameTitle, 1);\n }\n // Prevent the history array from exceeding the maximum number of records.\n if (currentHistory.length >= this.maxRecords) {\n currentHistory.pop();\n }\n const updatedHistory = [...currentHistory, newRecord];\n this.setAndPersistHistory(updatedHistory);\n this.historyUpsert$.next(true);\n });\n }\n /**\n * Returns the current view title.\n */\n getViewTitle() {\n return this.viewTitleService.viewTitleChange$.pipe(filter(({\n title\n }) => Boolean(title)));\n }\n /**\n * Returns an immutable copy of the navigation history to avoid the observable direct manipulation.\n */\n getImmutableHistory() {\n return [...this.history$.getValue()];\n }\n /**\n * Gets the setting key for the last used company.\n * If a subscription is available, the setting key is constructed by concatenating the subscription and 'lastUsedCompany'.\n * If no subscription is available, the setting key is 'lastUsedCompany'.\n *\n * @returns The setting key for the last used company.\n */\n get settingKey() {\n const settingKey = ['sidebar', 'navigation', 'history'];\n if (this.amsService?.subscription) {\n settingKey.push(`for-subscription-${this.amsService.subscription}`);\n }\n if (this.roleService?.selectedRole$?.value?.roleKey) {\n settingKey.push(`for-role-${this.roleService.selectedRole$.value.roleKey}`);\n }\n return settingKey.join('_');\n }\n static {\n this.ɵfac = function SidebarNavigationHistoryProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarNavigationHistoryProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarNavigationHistoryProviderService,\n factory: SidebarNavigationHistoryProviderService.ɵfac\n });\n }\n }\n return SidebarNavigationHistoryProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_NAVIGATION_HISTORY_PROVIDER_TOKEN = new InjectionToken('SidebarNavigationHistoryProvider', {\n providedIn: 'root',\n factory: () => new SidebarNavigationHistoryProviderService()\n});\n\n/** Service that provides the Sidebar's quick actions. */\nlet SidebarQuickActionsProviderService = /*#__PURE__*/(() => {\n class SidebarQuickActionsProviderService {\n constructor() {\n this.quickActions = signal([]);\n this.hasItems = computed(() => this.quickActions()?.length > 0);\n this._shellConfigurationService = inject(ShellConfigurationService);\n this._cacheHelperService = inject(CacheHelperService);\n this._amsService = inject(AmsService);\n this._storageService = inject(StorageService);\n this._roleService = inject(RoleService);\n this._httpClient = inject(HttpClient);\n }\n async getQuickActions() {\n const {\n sidebar\n } = await firstValueFrom(this._shellConfigurationService.getShellOptions());\n if (!sidebar.quickActions.uri) {\n return [];\n }\n const quickActions = await this.loadQuickActions(sidebar.quickActions.uri);\n this.quickActions.set(quickActions);\n return this.quickActions();\n }\n /**\n * Gets an array of quick actions from the provided URL.\n *\n * @param url The URL to get the quick actions from.\n */\n loadQuickActions(url) {\n const cacheKey = this._cacheHelperService.generateCacheKey(this._amsService.account ? true : false, true, true, ['quick-actions']);\n const actions = this._storageService.get(cacheKey);\n if (actions) {\n return new Promise(resolve => {\n const quickActions = JSON.parse(actions);\n resolve(quickActions);\n });\n } else {\n return new Promise((resolve, reject) => {\n this._httpClient.get(url).subscribe({\n next: quickActions => {\n this._storageService.set(cacheKey, JSON.stringify(quickActions));\n resolve(quickActions);\n },\n error: err => reject(err)\n });\n });\n }\n }\n static {\n this.ɵfac = function SidebarQuickActionsProviderService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarQuickActionsProviderService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarQuickActionsProviderService,\n factory: SidebarQuickActionsProviderService.ɵfac\n });\n }\n }\n return SidebarQuickActionsProviderService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst SIDEBAR_QUICK_ACTIONS_PROVIDER_TOKEN = new InjectionToken('SidebarQuickActionsProvider', {\n providedIn: 'root',\n factory: () => new SidebarQuickActionsProviderService()\n});\nlet FilterPipe = /*#__PURE__*/(() => {\n class FilterPipe {\n transform(items, searchText, searchProperties) {\n // null check\n if (!items) {\n return [];\n }\n // return items if no properties are provided or no search text\n if (searchText === undefined || !searchProperties?.length) {\n return [...items];\n }\n // search\n return items.filter(item => {\n // for each property, check if the search text is contained in the property value\n for (const prop of searchProperties) {\n // null check\n if (item[prop] === undefined) {\n continue;\n }\n // check if the property value is a string\n const propValue = item[prop].toLocaleString();\n if (typeof propValue === 'string') {\n // check if the property value contains the search text\n if (propValue.toLowerCase().includes(searchText.toLowerCase())) {\n return true;\n }\n }\n }\n return false;\n });\n }\n static {\n this.ɵfac = function FilterPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || FilterPipe)();\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"filter\",\n type: FilterPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return FilterPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet IsExternalUriPipe = /*#__PURE__*/(() => {\n class IsExternalUriPipe {\n transform(uri) {\n return URL_REGEXP.test(uri);\n }\n static {\n this.ɵfac = function IsExternalUriPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IsExternalUriPipe)();\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"isExternalUri\",\n type: IsExternalUriPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return IsExternalUriPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SortByPropertyPipe = /*#__PURE__*/(() => {\n class SortByPropertyPipe {\n transform(items, property, order = 'asc') {\n // null check's\n if (!items) {\n return [];\n }\n // return items if no property is provided\n if (!property) {\n return items;\n }\n // sort\n return items.sort((a, b) => {\n // check if property exists in both items\n if (!Object.prototype.hasOwnProperty.call(a, property) || !Object.prototype.hasOwnProperty.call(b, property)) {\n throw new Error(`Property \"${property}\" does not exist in one or both items`);\n }\n const aValue = a[property];\n const bValue = b[property];\n let comparison = 0;\n if (aValue instanceof Date && bValue instanceof Date) {\n comparison = aValue.getTime() - bValue.getTime();\n } else if (typeof aValue === 'string' && typeof bValue === 'string') {\n comparison = aValue.localeCompare(bValue);\n } else if (typeof aValue === 'number' && typeof bValue === 'number') {\n comparison = aValue - bValue;\n } else {\n throw new Error(`Property \"${property}\" is not a Date, string, or number`);\n }\n return order === 'asc' ? comparison : -comparison;\n });\n }\n static {\n this.ɵfac = function SortByPropertyPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SortByPropertyPipe)();\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"sortByProperty\",\n type: SortByPropertyPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return SortByPropertyPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet TreatUriPipe = /*#__PURE__*/(() => {\n class TreatUriPipe {\n constructor() {\n this._amsService = inject(AmsService);\n }\n transform(uri) {\n if (!uri) {\n return [];\n }\n // If the menu URI is external\n if (URL_REGEXP.test(uri)) {\n return [uri];\n }\n const url = this._amsService.addAccountAndSubscriptionToUrl(uri).replace('#/', '');\n const result = url.startsWith('/') ? url : `/${url}`;\n return [result.split(/[?#]/)[0]];\n }\n static {\n this.ɵfac = function TreatUriPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || TreatUriPipe)();\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"treatUri\",\n type: TreatUriPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return TreatUriPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet UriParamsPipe = /*#__PURE__*/(() => {\n class UriParamsPipe {\n constructor() {\n this._amsService = inject(AmsService);\n this._router = inject(Router);\n }\n transform(uri) {\n if (!uri) {\n return {};\n }\n // If the menu URI is external\n if (URL_REGEXP.test(uri)) {\n return this._router.parseUrl(uri).queryParams;\n }\n const url = this._amsService.addAccountAndSubscriptionToUrl(uri).replace('#/', '');\n return this._router.parseUrl(url).queryParams;\n }\n static {\n this.ɵfac = function UriParamsPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || UriParamsPipe)();\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"uriParams\",\n type: UriParamsPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return UriParamsPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet EnvironmentSelectorContentComponent = /*#__PURE__*/(() => {\n class EnvironmentSelectorContentComponent {\n constructor() {\n this.itemClick = new EventEmitter();\n this.dropDownMenuAnchor = input();\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.closeDropDownMenuEvent = input();\n this.visibleTabs = input([]);\n this.tabsData = input({});\n this.selectedTabChange$ = new Subject();\n this.searchTermInput = [];\n this.maxPinnedItems = 5;\n this.defaultDate = new Date(null);\n }\n /**\n * Returns a value to apply on \"top\" CSS property based on index of a ngFor item.\n * Useful to apply animation/transition of \"favorited\" subscriptions\n *\n * @param index Index of item in ngFor\n * @returns The string of \"top\" CSS property value\n */\n getEnvironmentItemTopPosition(index) {\n const defaultElementHeight = 55;\n const topPosition = defaultElementHeight * index;\n return `${topPosition}px`;\n }\n onTabItemClick(tab, item) {\n this.closeDropDownMenuEvent().emit();\n tab.onItemClick(item);\n this.itemClick.emit();\n }\n getTabItemHeaderText(tab, item) {\n return tab.getSelectorTabItemHeaderText(item);\n }\n getTabItemSubHeaderText(tab, item) {\n return tab.getSelectorTabItemSubHeaderText(item);\n }\n /**\n * Control what to do when a key is pressed.\n *\n * @param event KeyboardEvent to capture the key pressed.\n */\n onKeydown(event) {\n if (['ArrowUp', 'ArrowDown'].includes(event.code)) {\n const activeElement = document.activeElement;\n const dropdownOptionElements = Array.from(this.keyboardNavigationDirective.getDropdownOptionElements());\n if (activeElement.classList.contains('tab-group-header-item')) {\n event.preventDefault();\n const tabContentElements = dropdownOptionElements.filter(el => !el.classList.contains('tab-group-header-item'));\n const goToIndex = event.code === 'ArrowDown' ? 0 : tabContentElements.length - 1;\n this.keyboardNavigationDirective.focusElement(tabContentElements?.[goToIndex]);\n return;\n }\n if (event.code === 'ArrowUp' && activeElement.classList.contains('search-input')) {\n const tabHeaderElements = dropdownOptionElements.filter(el => el.classList.contains('tab-group-header-item'));\n this.keyboardNavigationDirective.focusElement(tabHeaderElements?.[0]);\n return;\n }\n }\n if (['Escape', 'Tab'].includes(event.key)) {\n event.preventDefault();\n this.closeDropDownMenuEvent().emit();\n this.dropDownMenuAnchor()?.focus();\n }\n }\n setPinForTabItem(tab, item, event) {\n event.stopPropagation();\n // get current pinned items\n const assignedPins = this.tabsData()[tab.id].filter(sub => sub.pinDate?.getTime() !== this.defaultDate.getTime());\n // if there are more than 5 pinned items and the current item is not pinned, return\n if (assignedPins.length >= this.maxPinnedItems && !assignedPins.includes(item)) {\n return;\n }\n // if the current item is not pinned, pin it\n const itemIndex = assignedPins.findIndex(sub => sub.id === item.id);\n if (itemIndex === -1) {\n item.pinDate = new Date();\n tab.pinItem(item);\n } else {\n item.pinDate = this.defaultDate;\n tab.unPinItem(item);\n }\n }\n getPinClass(tab, item) {\n const assignedPins = this.tabsData()[tab.id].filter(sub => sub.pinDate?.getTime() !== new Date(null).getTime()).length;\n let pinClass = 'icon-push_pin_outline';\n if (assignedPins >= this.maxPinnedItems) {\n pinClass += ' cursor-no-drop';\n }\n if (item.pinDate?.getTime() !== new Date(null).getTime()) {\n pinClass = 'icon-push_pin_fill';\n }\n return pinClass;\n }\n cantPinMoreItemsTooltipDisabled(tab, item) {\n // get current pinned items\n const assignedPins = this.tabsData()[tab.id].filter(sub => sub.pinDate?.getTime() !== this.defaultDate.getTime());\n // if there are 5 pinned items and the current item is not pinned, return false\n return !(assignedPins?.length >= this.maxPinnedItems && item.pinDate.getTime() === new Date(null).getTime());\n }\n static {\n this.ɵfac = function EnvironmentSelectorContentComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || EnvironmentSelectorContentComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: EnvironmentSelectorContentComponent,\n selectors: [[\"po-environment-selector-content\"]],\n viewQuery: function EnvironmentSelectorContentComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(KeyboardNavigationDirective, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.keyboardNavigationDirective = _t.first);\n }\n },\n inputs: {\n dropDownMenuAnchor: [1, \"dropDownMenuAnchor\"],\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"],\n closeDropDownMenuEvent: [1, \"closeDropDownMenuEvent\"],\n visibleTabs: [1, \"visibleTabs\"],\n tabsData: [1, \"tabsData\"]\n },\n outputs: {\n itemClick: \"itemClick\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 6,\n vars: 13,\n consts: [[\"tooltip\", \"matTooltip\"], [\"data-testid\", \"env-selector-menu-container\", 1, \"env-selector-menu-container\", 3, \"keydown\"], [\"data-testid\", \"env-selector-menu\", \"priKeyboardNavigationGroup\", \"\", 3, \"tabSelected\", \"selectedTabId\", \"customTabsClass\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\"], [\"data-testid\", \"tab-element\", 3, \"options\"], [1, \"search\", 3, \"keydown\"], [1, \"search-icon\"], [1, \"icon-search\"], [\"type\", \"text\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"search-input\", 3, \"ngModelChange\", \"placeholder\", \"ngModel\"], [1, \"list-scroll\"], [1, \"items-list\", \"scrollable\"], [\"priKeyboardNavigation\", \"\", 1, \"item\", \"dropdown-item\", 3, \"id\", \"active\", \"top\"], [\"data-testid\", \"env-selector-empty-result\", 1, \"item\", \"empty\"], [\"priKeyboardNavigation\", \"\", 1, \"item\", \"dropdown-item\", 3, \"click\", \"keydown\", \"id\"], [1, \"item-link\"], [1, \"pin\", 3, \"click\", \"ngClass\", \"matTooltip\", \"matTooltipDisabled\"], [\"data-testid\", \"selectable-element\", 1, \"list-item\"], [1, \"line\"], [\"data-testid\", \"selectable-element-header\", \"priTooltipHover\", \"\", 1, \"first-line\"], [1, \"line\", \"flex-elements\"], [1, \"icon-subdirectory_arrow_right\"], [\"priTooltipHover\", \"\", 1, \"second-line\"]],\n template: function EnvironmentSelectorContentComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵpipe(1, \"fromComputedStyle\");\n i0.ɵɵpipe(2, \"toFixed\");\n i0.ɵɵlistener(\"keydown\", function EnvironmentSelectorContentComponent_Template_div_keydown_0_listener($event) {\n return ctx.onKeydown($event);\n });\n i0.ɵɵelementStart(3, \"po-tab-group\", 2);\n i0.ɵɵlistener(\"tabSelected\", function EnvironmentSelectorContentComponent_Template_po_tab_group_tabSelected_3_listener() {\n return ctx.selectedTabChange$.next();\n });\n i0.ɵɵrepeaterCreate(4, EnvironmentSelectorContentComponent_For_5_Template, 12, 19, \"po-tab\", 3, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n let tmp_1_0;\n i0.ɵɵstyleProp(\"width\", i0.ɵɵpipeBind2(2, 10, i0.ɵɵpipeBind3(1, 6, ctx.dropDownMenuAnchor(), \"width\", true), 2), \"px\");\n i0.ɵɵadvance(3);\n i0.ɵɵproperty(\"selectedTabId\", ctx.visibleTabs().length === 1 ? (tmp_1_0 = ctx.visibleTabs()) == null ? null : tmp_1_0[0] == null ? null : tmp_1_0[0].id : (tmp_1_0 = ctx.visibleTabs()) == null ? null : tmp_1_0[1] == null ? null : tmp_1_0[1].id)(\"customTabsClass\", \"dropdown-item\")(\"dropDownMenuChainID\", ctx.dropDownMenuChainID())(\"dropDownMenuChildLevel\", ctx.dropDownMenuChildLevel() + 1);\n i0.ɵɵadvance();\n i0.ɵɵrepeater(ctx.visibleTabs());\n }\n },\n dependencies: [NgClass, FormsModule, i5.DefaultValueAccessor, i5.NgControlStatus, i5.NgModel, MatTooltip, FilterPipe, SortByPropertyPipe, FromComputedStylePipe, ToFixedPipe, TabGroupComponent, TabComponent, PrimaveraI18nModule, i1.PriI18nPipe, KeyboardNavigationGroupDirective, KeyboardNavigationDirective],\n styles: [\"po-environment-selector-content .env-selector-menu-container{max-height:inherit;padding:0;background-color:var(--grey-1);border:.0625rem solid var(--grey-4);border-radius:.25rem}po-environment-selector-content .env-selector-menu-container .search{height:1.75rem;display:flex;align-items:center;gap:.25rem;margin:.5rem;margin-bottom:0;padding:.25rem .5rem;border:.0625rem solid var(--grey-5);border-radius:.25rem}po-environment-selector-content .env-selector-menu-container .search:hover{border-color:var(--grey-6)}po-environment-selector-content .env-selector-menu-container .search:focus-within{border:.0625rem solid var(--theme-100)}po-environment-selector-content .env-selector-menu-container .search .search-icon{font-size:1rem;color:var(--grey-7);display:flex;align-items:center}po-environment-selector-content .env-selector-menu-container .search input{background-color:transparent;border:0;width:100%;color:var(--grey-8);font-weight:400;font-size:.75rem}po-environment-selector-content .env-selector-menu-container .search input::placeholder{color:var(--grey-6)}po-environment-selector-content .env-selector-menu-container .search input:focus{outline:none}po-environment-selector-content .env-selector-menu-container .list-scroll{color:var(--grey-7);cursor:auto;overflow-y:auto;max-height:20rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list{margin:0;padding:.5rem;display:flex;flex-direction:column;gap:.25rem;position:relative}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item{padding:.5rem .75rem;border:.0625rem solid transparent;border-radius:.25rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item:hover:not(.empty){cursor:pointer;background-color:var(--grey-2)}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item.active:not(.empty){background-color:var(--theme-10)}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item.active:not(.empty):hover{background-color:var(--theme-20)}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item:focus-visible:not(.empty){outline:none;border-color:var(--grey-8)}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link{display:flex;color:var(--grey-7);gap:.5rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .pin{width:.75rem;height:.75rem;font-size:.875rem;padding-top:.125rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .pin:hover{color:var(--theme-100)}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .pin .cursor-no-drop{cursor:no-drop}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item{width:100%;display:flex;flex-direction:column;justify-content:center;overflow:hidden}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line{overflow:hidden;white-space:nowrap}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line .first-line{font-size:.875rem;font-weight:400;color:var(--grey-8);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line .first-line.uppercase{text-transform:uppercase}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line.flex-elements{display:flex;color:var(--grey-7);gap:.125rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line.flex-elements .icon-subdirectory_arrow_right{font-size:.625rem}po-environment-selector-content .env-selector-menu-container .list-scroll .items-list .item .item-link .list-item .line.flex-elements .second-line{font-size:.75rem;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}po-environment-selector-content .env-selector-menu-container po-tab-group .tab-group-header .tab-group-header-item{flex:1;justify-content:center}po-environment-selector-content .env-selector-menu-container po-tab-group .tab-group-header .tab-group-header-item .tab-label{max-width:6.25rem}po-environment-selector-content .env-selector-menu-container po-tab-group .tab-group-content{padding:unset}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return EnvironmentSelectorContentComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet EnvironmentSelectorComponent = /*#__PURE__*/(() => {\n class EnvironmentSelectorComponent {\n constructor() {\n this.anchorTemplate = input.required();\n this.dropDownMenuTrigger = input(DropDownMenuTriggers.Click);\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.dropDownMenuPosition = input('left');\n this.dropDownMenuSpacingY = input(4);\n this.dropDownMenuSpacingX = input(0);\n this.dropDownMenuCustomClass = input('');\n this.itemClick = output();\n this.dropDownMenuShow = output();\n this.dropDownMenuHide = output();\n this.ready = computed(() => this.loaded() && (this.visibleTabs().length > 0 || this.hasSelectorContext()));\n this.dropDownMenuCustomClassList = computed(() => `${this.dropDownMenuCustomClass()} env-selector-custom-drop-down-menu`);\n this.primaryText = signal('');\n this.secondaryText = signal('');\n this.caption = computed(() => this.secondaryText() ? `${this.primaryText()} | ${this.secondaryText()}` : this.primaryText());\n this.deviceService = inject(DeviceService);\n this.navigationOrientation = this.deviceService.greaterThanXlBreakpoint ? OrientationEnum.Landscape : OrientationEnum.Portrait;\n this.loaded = signal(false);\n this.tabs = signal([]);\n this.hasSelectorContext = signal(false);\n this.tabsData = signal({});\n this.tabsData$ = toObservable(this.tabsData);\n /**\n * Visible tabs are those with more than one item, that is, their data is switchable.\n */\n this.visibleTabs = computed(() => {\n const _visibleTabs = this.tabs().filter(tab => this.tabsData()[tab.id]?.length > 1);\n return _visibleTabs;\n });\n this.dropDownMenuMaxHeight = 400;\n this.openDropDownMenuEvent = new EventEmitter();\n this.closeDropDownMenuEvent = new EventEmitter();\n this.openSelectorContextEvent = new Subject();\n this.destroyRef = inject(DestroyRef);\n this.selectorProviders = inject(SELECTOR_PROVIDER_TOKEN);\n this.i18nService = inject(I18nService);\n }\n async ngOnInit() {\n this.getSelectorProvider();\n if (this.selectorProvider?.getTabs) {\n await this.handleTableDataLoading();\n this.handleInitialDataLoading();\n } else if (this.selectorProvider?.openSelectorContext) {\n this.openSelectorContextEvent.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.selectorProvider.openSelectorContext();\n });\n this.openSelectorContextTooltip = this.selectorProvider.openSelectorContextTooltip ?? this.i18nService.get('shell.components.RES_Open_Selector_Context');\n this.hasSelectorContext.set(true);\n this.updateCaption();\n }\n }\n /**\n * Closes the dropdown menu when the user presses `Escape`, `Tab`, `ArrowLeft` or `ArrowRight`\n * when focusing the Environment Selector button.\n *\n * @param event KeyboardEvent to capture the key pressed.\n */\n onKeydown(event) {\n if (this.deviceService.greaterThanMdBreakpoint) {\n if (['Escape', 'Tab', 'ArrowLeft', 'ArrowRight'].includes(event.code)) {\n this.closeDropDownMenuEvent.emit();\n }\n } else {\n event.preventDefault();\n }\n }\n /**\n * Retrieves the selector provider based on the given conditions.\n */\n getSelectorProvider() {\n // if is not an array (multi = false), use it\n if (!(this.selectorProviders instanceof Array)) {\n this.selectorProvider = this.selectorProviders;\n return;\n }\n // if there is only one service, use it\n if (this.selectorProviders.length === 1) {\n this.selectorProvider = this.selectorProviders[0];\n return;\n }\n // if there are more than one service, use the last one\n if (this.selectorProviders.length > 1) {\n this.selectorProvider = this.selectorProviders[this.selectorProviders.length - 1];\n return;\n }\n }\n /**\n * Handles the loading of table data.\n * Retrieves tabs from the selector provider and sets them in the component.\n * Subscribes to each tab's data stream and updates the tabsData object with the received data.\n */\n async handleTableDataLoading() {\n const tabs = await firstValueFrom(this.selectorProvider.getTabs());\n this.tabs.set(tabs);\n this.tabs().forEach(tab => {\n tab.getData().pipe(takeUntilDestroyed(this.destroyRef)).subscribe(data => {\n this.tabsData.update(oldTabsData => ({\n ...oldTabsData,\n [tab.id]: data\n }));\n });\n });\n }\n /**\n * Handles the initial data loading for the environment selector component.\n * Subscribes to the `tabsData$` observable and updates the caption when all tabs data is available.\n */\n handleInitialDataLoading() {\n this.tabsData$.pipe(filter(tabsData => this.tabs().length > 0 && Object.keys(tabsData).length === this.tabs().length && Object.keys(tabsData)?.every(tabId => this.tabs().map(tab => tab.id).includes(tabId))), takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.updateCaption();\n });\n }\n /**\n * Updates the caption of the environment selector component.\n * It sets the primary and secondary text based on the values returned by the selector provider.\n * It also sets the loaded flag to true.\n */\n updateCaption() {\n const primaryText = this.selectorProvider.getSelectorPrimaryText?.();\n const secondaryText = this.selectorProvider.getSelectorSecondaryText?.();\n if (this.selectorProvider.selectorSecondaryText) {\n this.secondaryText = this.selectorProvider.selectorSecondaryText;\n } else {\n if (secondaryText) {\n this.secondaryText.set(secondaryText);\n }\n }\n if (this.selectorProvider.selectorPrimaryText) {\n this.primaryText = this.selectorProvider.selectorPrimaryText;\n } else {\n if (primaryText) {\n this.primaryText.set(primaryText);\n }\n }\n this.loaded.set(true);\n }\n static {\n this.ɵfac = function EnvironmentSelectorComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || EnvironmentSelectorComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: EnvironmentSelectorComponent,\n selectors: [[\"po-environment-selector\"]],\n inputs: {\n anchorTemplate: [1, \"anchorTemplate\"],\n dropDownMenuTrigger: [1, \"dropDownMenuTrigger\"],\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"],\n dropDownMenuPosition: [1, \"dropDownMenuPosition\"],\n dropDownMenuSpacingY: [1, \"dropDownMenuSpacingY\"],\n dropDownMenuSpacingX: [1, \"dropDownMenuSpacingX\"],\n dropDownMenuCustomClass: [1, \"dropDownMenuCustomClass\"]\n },\n outputs: {\n itemClick: \"itemClick\",\n dropDownMenuShow: \"dropDownMenuShow\",\n dropDownMenuHide: \"dropDownMenuHide\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 1,\n vars: 1,\n consts: [[\"dropDownMenuAnchor\", \"\", \"dropDownMenuDirective\", \"priDropDownMenu\"], [\"dropDownMenu\", \"\"], [\"data-testid\", \"env-selector-dropdown-menu-wrapper\", 1, \"env-selector-dropdown-menu-wrapper\"], [3, \"ngTemplateOutlet\", \"ngTemplateOutletContext\"], [\"data-testid\", \"env-selector-dropdown-menu-wrapper\", \"priDropDownMenu\", \"\", \"priKeyboardNavigation\", \"\", 1, \"env-selector-dropdown-menu-wrapper\", 3, \"dropDownMenuShow\", \"dropDownMenuHide\", \"keydown\", \"ngClass\", \"priDropDownMenuCustomClass\", \"priDropDownMenuPosition\", \"priDropDownMenuTrigger\", \"priDropDownMenuShow\", \"priDropDownMenuHide\", \"customPanelTemplate\", \"menuSpacingX\", \"menuSpacingY\", \"chainID\", \"childLevel\", \"maxHeight\", \"navigationOrientation\", \"navigationFocusChildOption\"], [3, \"itemClick\", \"visibleTabs\", \"tabsData\", \"dropDownMenuAnchor\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\", \"closeDropDownMenuEvent\"]],\n template: function EnvironmentSelectorComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, EnvironmentSelectorComponent_Conditional_0_Template, 2, 1);\n }\n if (rf & 2) {\n i0.ɵɵconditional(ctx.ready() ? 0 : -1);\n }\n },\n dependencies: [NgClass, NgTemplateOutlet, DropDownMenuDirective, EnvironmentSelectorContentComponent, KeyboardNavigationDirective],\n styles: [\"po-environment-selector .env-selector-dropdown-menu-wrapper:focus,po-environment-selector .env-selector-dropdown-menu-wrapper:focus-visible,po-environment-selector .env-selector-dropdown-menu-wrapper:focus-within{outline:none}po-environment-selector .env-selector-dropdown-menu-wrapper.mobile{border:.0625rem solid transparent}po-environment-selector .env-selector-dropdown-menu-wrapper.mobile:focus,po-environment-selector .env-selector-dropdown-menu-wrapper.mobile:focus-visible,po-environment-selector .env-selector-dropdown-menu-wrapper.mobile:focus-within{border:.0625rem solid var(--grey-8);border-radius:.25rem}.po-field-options.env-selector-custom-drop-down-menu{background:transparent;border:none;overflow:hidden}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return EnvironmentSelectorComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet EnvironmentSelectorTopbarComponent = /*#__PURE__*/(() => {\n class EnvironmentSelectorTopbarComponent {\n constructor() {\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.OrientationEnum = OrientationEnum;\n }\n static {\n this.ɵfac = function EnvironmentSelectorTopbarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || EnvironmentSelectorTopbarComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: EnvironmentSelectorTopbarComponent,\n selectors: [[\"po-environment-selector-topbar\"]],\n inputs: {\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"]\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 3,\n consts: [[\"anchorTemplate\", \"\"], [3, \"anchorTemplate\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\"], [1, \"env-selector-container\", 3, \"ngClass\"], [\"data-testid\", \"env-selector\", 1, \"env-selector\"], [\"data-testid\", \"caption\", 1, \"caption\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"below\"], [\"data-testid\", \"open-in-new\", \"priKeyboardNavigation\", \"\", 1, \"open-in-new\", 3, \"matTooltip\", \"navigationOrientation\"], [1, \"dropdown-arrow\"], [\"data-testid\", \"open-in-new\", \"priKeyboardNavigation\", \"\", 1, \"open-in-new\", 3, \"click\", \"matTooltip\", \"navigationOrientation\"], [\"data-testid\", \"open-selector_context\", 1, \"icon-open_in_new\"], [\"data-testid\", \"dropdown-arrow-icon\"]],\n template: function EnvironmentSelectorTopbarComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"po-environment-selector\", 1);\n i0.ɵɵtemplate(1, EnvironmentSelectorTopbarComponent_ng_template_1_Template, 7, 5, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const anchorTemplate_r7 = i0.ɵɵreference(2);\n i0.ɵɵproperty(\"anchorTemplate\", anchorTemplate_r7)(\"dropDownMenuChainID\", ctx.dropDownMenuChainID())(\"dropDownMenuChildLevel\", ctx.dropDownMenuChildLevel());\n }\n },\n dependencies: [EnvironmentSelectorComponent, TooltipHoverDirective, NgClass, PrimaveraI18nModule, MatTooltipModule, i1$2.MatTooltip, KeyboardNavigationDirective],\n styles: [\"po-environment-selector-topbar{border:none;outline:none}po-environment-selector-topbar:focus-visible .env-selector-container,po-environment-selector-topbar:focus-within .env-selector-container{border:.0625rem solid var(--theme-100);outline:none}po-environment-selector-topbar .env-selector-container{display:flex;width:100%;height:2.25rem;overflow:hidden;cursor:pointer;border:.0625rem solid var(--grey-4);border-radius:.25rem}po-environment-selector-topbar .env-selector-container.selector-context{cursor:default}po-environment-selector-topbar .env-selector-container .env-selector{width:18.75rem;display:flex;align-items:center;gap:.5rem;color:var(--grey-8);font-size:.875rem;padding:.5rem .75rem;background-color:var(--grey-1);overflow:hidden}po-environment-selector-topbar .env-selector-container .env-selector .caption{font-size:.875rem;font-weight:400;color:var(--grey-8);white-space:nowrap;display:flex;align-items:center;gap:.25rem;width:100%;overflow:hidden}po-environment-selector-topbar .env-selector-container .env-selector .caption span{text-overflow:ellipsis;overflow:hidden}po-environment-selector-topbar .env-selector-container .env-selector .dropdown-arrow{display:flex;flex-shrink:0}po-environment-selector-topbar .env-selector-container .env-selector .dropdown-arrow .icon-expand_less,po-environment-selector-topbar .env-selector-container .env-selector .dropdown-arrow .icon-expand_more{font-size:1.25rem}po-environment-selector-topbar .env-selector-container .env-selector .open-in-new{display:flex;flex-shrink:0;color:var(--theme-100);cursor:pointer}po-environment-selector-topbar .env-selector-container .env-selector .open-in-new .icon-open_in_new{font-size:1.25rem}po-environment-selector-topbar .env-selector-container .env-selector .open-in-new:focus-visible{outline:none}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return EnvironmentSelectorTopbarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet EnvironmentSelectorUserAreaComponent = /*#__PURE__*/(() => {\n class EnvironmentSelectorUserAreaComponent {\n constructor() {\n this.dropDownMenuChainID = input(null);\n this.dropDownMenuChildLevel = input(null);\n this.itemClick = output();\n this.dropDownMenuShow = output();\n this.dropDownMenuHide = output();\n this.deviceService = inject(DeviceService);\n this.isMobileScreen = this.deviceService?.isMobileScreen;\n this.dropDownMenuTrigger = this.isMobileScreen ? DropDownMenuTriggers.Click : DropDownMenuTriggers.MouseEnter;\n this.dropDownMenuTriggers = DropDownMenuTriggers;\n }\n set environmentSelectorComponent(instance) {\n this.ready = instance.ready;\n }\n static {\n this.ɵfac = function EnvironmentSelectorUserAreaComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || EnvironmentSelectorUserAreaComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: EnvironmentSelectorUserAreaComponent,\n selectors: [[\"po-environment-selector-user-area\"]],\n viewQuery: function EnvironmentSelectorUserAreaComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(EnvironmentSelectorComponent, 7);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.environmentSelectorComponent = _t.first);\n }\n },\n inputs: {\n dropDownMenuChainID: [1, \"dropDownMenuChainID\"],\n dropDownMenuChildLevel: [1, \"dropDownMenuChildLevel\"]\n },\n outputs: {\n itemClick: \"itemClick\",\n dropDownMenuShow: \"dropDownMenuShow\",\n dropDownMenuHide: \"dropDownMenuHide\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 8,\n consts: [[\"anchorTemplate\", \"\"], [3, \"itemClick\", \"dropDownMenuShow\", \"dropDownMenuHide\", \"anchorTemplate\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\", \"dropDownMenuTrigger\", \"dropDownMenuPosition\", \"dropDownMenuSpacingY\", \"dropDownMenuSpacingX\", \"dropDownMenuCustomClass\"], [\"data-testid\", \"user-area-open-selector-context\", \"priKeyboardNavigation\", \"\", 1, \"small-line\", \"user-area-open-selector-context\"], [3, \"caption\"], [\"data-testid\", \"user-area-open-selector-context\", \"priKeyboardNavigation\", \"\", 1, \"small-line\", \"user-area-open-selector-context\", 3, \"click\"], [1, \"icon\", \"icon-domain_logo\"], [\"priTooltipHover\", \"\", 1, \"text\"]],\n template: function EnvironmentSelectorUserAreaComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-environment-selector\", 1);\n i0.ɵɵlistener(\"itemClick\", function EnvironmentSelectorUserAreaComponent_Template_po_environment_selector_itemClick_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.itemClick.emit());\n })(\"dropDownMenuShow\", function EnvironmentSelectorUserAreaComponent_Template_po_environment_selector_dropDownMenuShow_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.dropDownMenuShow.emit($event));\n })(\"dropDownMenuHide\", function EnvironmentSelectorUserAreaComponent_Template_po_environment_selector_dropDownMenuHide_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.dropDownMenuHide.emit($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(1, EnvironmentSelectorUserAreaComponent_ng_template_1_Template, 2, 1, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const anchorTemplate_r6 = i0.ɵɵreference(2);\n i0.ɵɵproperty(\"anchorTemplate\", anchorTemplate_r6)(\"dropDownMenuChainID\", ctx.dropDownMenuChainID())(\"dropDownMenuChildLevel\", ctx.dropDownMenuChildLevel())(\"dropDownMenuTrigger\", ctx.dropDownMenuTrigger)(\"dropDownMenuPosition\", ctx.isMobileScreen ? \"left\" : \"top-left\")(\"dropDownMenuSpacingY\", ctx.isMobileScreen ? 0 : -1)(\"dropDownMenuSpacingX\", ctx.isMobileScreen ? 0 : 2)(\"dropDownMenuCustomClass\", ctx.isMobileScreen ? \"mobile\" : \"desktop\");\n }\n },\n dependencies: [EnvironmentSelectorComponent, UserAreaDropdownButtonComponent, TooltipHoverDirective, KeyboardNavigationDirective],\n styles: [\"po-environment-selector-user-area po-environment-selector .env-selector-dropdown-menu-wrapper .user-area-open-selector-context{border:.0625rem solid transparent}po-environment-selector-user-area po-environment-selector .env-selector-dropdown-menu-wrapper .user-area-open-selector-context:focus-visible{outline:none;border:.0625rem solid var(--grey-8);border-radius:.25rem}.po-field-options.env-selector-custom-drop-down-menu.desktop{border:.0625rem solid var(--grey-4);border-radius:unset;box-shadow:0 .0625rem .5rem var(--shadow-3)}.po-field-options.env-selector-custom-drop-down-menu.desktop .env-selector-menu-container{border:unset;border-radius:unset}.po-field-options.env-selector-custom-drop-down-menu.mobile .env-selector-menu-container{border:unset;border-top:.0625rem solid var(--grey-4);border-bottom:.0625rem solid var(--grey-4);border-top-left-radius:unset!important;border-top-right-radius:unset!important}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return EnvironmentSelectorUserAreaComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet AboutComponent = /*#__PURE__*/(() => {\n class AboutComponent {\n /**\n * Constructs the component\n *\n * @param i18nService Service responsible to handle language translations\n */\n constructor(settingsService, exceptionHandlerService) {\n this.settingsService = settingsService;\n this.exceptionHandlerService = exceptionHandlerService;\n this.isLoading = new BehaviorSubject(true);\n this.ButtonTypeEnum = ButtonTypeEnum;\n this.ButtonColorEnum = ButtonColorEnum;\n }\n ngOnInit() {\n this.settingsService.getAboutConfiguration().then(info => {\n this.aboutInfo = info;\n this.isLoading.next(false);\n }, error => {\n this.exceptionHandlerService.showError(error);\n this.isLoading.next(false);\n });\n }\n static {\n this.ɵfac = function AboutComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AboutComponent)(i0.ɵɵdirectiveInject(i1$1.SettingsService), i0.ɵɵdirectiveInject(i2$1.ExceptionHandlerService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: AboutComponent,\n selectors: [[\"po-about\"]],\n decls: 13,\n vars: 14,\n consts: [[1, \"po-modal\"], [1, \"po-modal-header\"], [1, \"po-modal-header-title\"], [1, \"po-modal-content\"], [1, \"po-editor-view\"], [1, \"modal-body\"], [1, \"po-modal-footer\"], [\"data-testid\", \"about-component-dismiss\", 3, \"action\", \"options\"], [1, \"about-additional-info\"], [1, \"about-label\"], [1, \"about-value\"], [\"cssClass\", \"po-fixed-footer-loading-icon\"]],\n template: function AboutComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1)(2, \"div\", 2);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(5, \"div\", 3)(6, \"div\", 4);\n i0.ɵɵtemplate(7, AboutComponent_Conditional_7_Template, 9, 8, \"div\", 5);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(8, \"div\", 6);\n i0.ɵɵtemplate(9, AboutComponent_Conditional_9_Template, 2, 0, \"span\");\n i0.ɵɵpipe(10, \"async\");\n i0.ɵɵelementStart(11, \"po-button\", 7);\n i0.ɵɵpipe(12, \"priI18n\");\n i0.ɵɵlistener(\"action\", function AboutComponent_Template_po_button_action_11_listener() {\n return ctx.dismiss();\n });\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 4, \"shell.components.RES_AboutView_Title\"));\n i0.ɵɵadvance(4);\n i0.ɵɵconditional(ctx.aboutInfo ? 7 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(i0.ɵɵpipeBind1(10, 6, ctx.isLoading) ? 9 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction3(10, _c12, i0.ɵɵpipeBind1(12, 8, \"shell.components.RES_AboutView_CloseButtonCaption\"), ctx.ButtonTypeEnum.Text, ctx.ButtonColorEnum.Grey));\n }\n },\n dependencies: [i2$1.LoadingSpinnerComponent, i2$1.ButtonComponent, i3.AsyncPipe, i1.PriI18nPipe],\n styles: [\"po-about{color:var(--grey-8)}po-about .about-label{font-weight:700}po-about .about-value{padding-left:3px}po-about .about-additional-info{margin-top:10px}\\n\"],\n encapsulation: 2\n });\n }\n }\n return AboutComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SupportRequestService = /*#__PURE__*/(() => {\n class SupportRequestService {\n /**\n * Constructs the application\n *\n * @param httpClient Service responsible to manage http communications\n */\n constructor(httpClient) {\n this.httpClient = httpClient;\n }\n /**\n * Gets info about the support requests\n *\n * @returns ISupportRequestInfo\n */\n getSupportRequestsInfo() {\n return this.httpClient.get('/app/identity/supportRequests/getSupportRequestsInfo').toPromise();\n }\n /**\n *Sends the request\n *\n * @param subject the subject\n * @param message the message\n */\n send(subject, message) {\n const sendObj = {\n subject,\n message\n };\n return this.httpClient.post('/app/identity/supportRequests/postRequest', sendObj).toPromise();\n }\n static {\n this.ɵfac = function SupportRequestService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SupportRequestService)(i0.ɵɵinject(i1$3.HttpClient));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SupportRequestService,\n factory: SupportRequestService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return SupportRequestService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SupportRequestComponent = /*#__PURE__*/(() => {\n class SupportRequestComponent {\n /**\n * Constructs the component\n *\n * @param i18nService Service responsible to handle language translations\n * @param supportRequestService Service responsible to send support requests and get info about support requests\n * @param exceptionHandlerService Service responsible for handling exceptions\n * @param messagesService Service responsible for showing messages to the user\n */\n constructor(i18nService, supportRequestService, exceptionHandlerService, messagesService) {\n this.i18nService = i18nService;\n this.supportRequestService = supportRequestService;\n this.exceptionHandlerService = exceptionHandlerService;\n this.messagesService = messagesService;\n this.supportRequestForm = new FormGroup({\n subject: new FormControl(null, [Validators.required]),\n message: new FormControl()\n });\n this.availableRequests = 0;\n this.percentage = 0;\n this.ButtonTypeEnum = ButtonTypeEnum;\n this.ButtonColorEnum = ButtonColorEnum;\n }\n ngOnInit() {\n // Set supportRequestInfo\n this.loadSupportRequestInfo();\n }\n get subject() {\n return this.supportRequestForm.get('subject');\n }\n get message() {\n return this.supportRequestForm.get('message');\n }\n /*\n Sends the support request message\n */\n send() {\n this.isLoading = true;\n this.supportRequestService.send(this.supportRequestForm.get('subject').value, this.supportRequestForm.get('message').value).then(() => {\n this.isLoading = false;\n // Show request sent success message\n this.messagesService.show(new MessageInfo(this.i18nService.get('shell.components.RES_SupportRequestView_SupportRequestSent'), null, MessageType.Info));\n this.dismiss();\n }, error => {\n this.isLoading = false;\n // Handle error\n this.exceptionHandlerService.showError(error);\n });\n }\n /*\n Calls the service that retrieves info about the support request availability\n */\n loadSupportRequestInfo() {\n this.isLoading = true;\n this.supportRequestService.getSupportRequestsInfo().then(data => {\n this.supportRequestInfo = data;\n data.subscriptionRequests = 10;\n this.availableRequests = data.subscriptionRequests - data.usedRequests;\n this.percentage = data.subscriptionRequests > 0 ? parseFloat((data.usedRequests * 100 / data.subscriptionRequests).toFixed(2)) : 0;\n this.setSupportRequestsLeftMessage();\n this.isLoading = false;\n }, error => {\n this.exceptionHandlerService.showError(error);\n this.isLoading = false;\n });\n }\n /*\n Sets the supportRequestLeftMessage value bases on the availableRequests property\n */\n setSupportRequestsLeftMessage() {\n if (this.availableRequests !== undefined) {\n if (this.availableRequests === 1) {\n this.supportRequestsLeftMessage = this.i18nService.get('shell.components.RES_SupportRequestView_OneRequestLeftMessage');\n } else {\n this.supportRequestsLeftMessage = this.i18nService.get('shell.components.RES_SupportRequestView_RequestsLeftMessage').replace('{0}', this.availableRequests.toString());\n }\n }\n }\n static {\n this.ɵfac = function SupportRequestComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SupportRequestComponent)(i0.ɵɵdirectiveInject(i1.I18nService), i0.ɵɵdirectiveInject(SupportRequestService), i0.ɵɵdirectiveInject(i2$1.ExceptionHandlerService), i0.ɵɵdirectiveInject(i2$1.MessagesService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SupportRequestComponent,\n selectors: [[\"po-support-request\"]],\n decls: 17,\n vars: 17,\n consts: [[1, \"po-modal\"], [1, \"po-modal-header\"], [1, \"po-modal-header-title\"], [1, \"po-modal-content\"], [1, \"po-editor-view\"], [1, \"modal-body\"], [1, \"row\", \"support-header\"], [3, \"percentage\", \"count\", \"message\"], [\"autocomplete\", \"nope\", 1, \"form-horizontal\", 3, \"formGroup\"], [1, \"row\"], [1, \"po-modal-footer\"], [\"data-testid\", \"support-request-cancel\", 3, \"action\", \"options\"], [\"data-testid\", \"support-request-send\", 3, \"options\", \"disabled\"], [1, \"col-xs-12\"], [1, \"col-xs-12\", \"po-field-support-subject\", 3, \"ngClass\"], [\"for\", \"Identiy-SupportRequest-Subject\", 2, \"position\", \"relative\"], [1, \"po-field\"], [\"type\", \"text\", \"maxlength\", \"100\", \"id\", \"subject\", \"id\", \"Identiy-SupportRequest-Subject\", \"formControlName\", \"subject\", \"name\", \"subject\", \"required\", \"\", \"tabindex\", \"0\", 1, \"form-control\", \"input-md\"], [\"for\", \"Identiy-SupportRequest-Message\", \"tabindex\", \"-1\", 2, \"position\", \"relative\"], [\"formControlName\", \"message\", \"id\", \"Identiy-SupportRequest-Message\", 3, \"options\"], [1, \"col-xs-10\", \"col-xs-offset-1\", \"col-md-6\", \"col-md-offset-3\"], [\"cssClass\", \"po-fixed-footer-loading-icon\"], [\"data-testid\", \"support-request-send\", 3, \"action\", \"options\", \"disabled\"]],\n template: function SupportRequestComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1)(2, \"div\", 2);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"priI18n\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(5, \"div\", 3)(6, \"div\", 4)(7, \"div\", 5)(8, \"div\", 6);\n i0.ɵɵelement(9, \"po-circle-count\", 7);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(10, SupportRequestComponent_Conditional_10_Template, 16, 12, \"form\", 8)(11, SupportRequestComponent_Conditional_11_Template, 8, 6, \"div\", 9);\n i0.ɵɵelementEnd()()();\n i0.ɵɵelementStart(12, \"div\", 10);\n i0.ɵɵtemplate(13, SupportRequestComponent_Conditional_13_Template, 2, 0, \"span\");\n i0.ɵɵelementStart(14, \"po-button\", 11);\n i0.ɵɵpipe(15, \"priI18n\");\n i0.ɵɵlistener(\"action\", function SupportRequestComponent_Template_po_button_action_14_listener() {\n return ctx.dismiss();\n });\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(16, SupportRequestComponent_Conditional_16_Template, 2, 6, \"po-button\", 12);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 9, \"shell.components.RES_SupportRequestView_Title\"));\n i0.ɵɵadvance(6);\n i0.ɵɵproperty(\"percentage\", ctx.percentage)(\"count\", ctx.supportRequestInfo ? ctx.supportRequestInfo.usedRequests : null)(\"message\", ctx.supportRequestsLeftMessage);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.supportRequestInfo && ctx.availableRequests > 0 ? 10 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.supportRequestInfo && ctx.availableRequests === 0 ? 11 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx.isLoading ? 13 : -1);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"options\", i0.ɵɵpureFunction3(13, _c12, i0.ɵɵpipeBind1(15, 11, \"shell.components.RES_SupportRequestView_CloseButtonCaption\"), ctx.ButtonTypeEnum.Text, ctx.ButtonColorEnum.Grey));\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx.availableRequests > 0 ? 16 : -1);\n }\n },\n dependencies: [i3.NgClass, i5.ɵNgNoValidate, i5.DefaultValueAccessor, i5.NgControlStatus, i5.NgControlStatusGroup, i5.RequiredValidator, i5.MaxLengthValidator, i5.FormGroupDirective, i5.FormControlName, i2$1.CircleCountComponent, i2$1.WysiwygComponent, i2$1.LoadingSpinnerComponent, i2$1.ButtonComponent, i1.PriI18nPipe],\n styles: [\"po-support-request{height:70%}po-support-request .po-modal-content{height:100%}po-support-request .po-modal-content .support-header h1{border:none;margin-top:26px;color:var(--theme-100);padding:0 10px}po-support-request po-wysiwyg{height:180px}\\n\"],\n encapsulation: 2\n });\n }\n }\n return SupportRequestComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Defines the card filter types.\n */\nvar CardFiltersEnum = /*#__PURE__*/function (CardFiltersEnum) {\n CardFiltersEnum[CardFiltersEnum[\"insights\"] = 0] = \"insights\";\n CardFiltersEnum[CardFiltersEnum[\"taskbox\"] = 1] = \"taskbox\";\n CardFiltersEnum[CardFiltersEnum[\"alerts\"] = 2] = \"alerts\";\n return CardFiltersEnum;\n}(CardFiltersEnum || {});\n/**\n * Defines the date intervals types.\n */\n\n/**\n * Defines all of the errors of a signalR connection\n */\nvar SignalRStateEnum = /*#__PURE__*/function (SignalRStateEnum) {\n SignalRStateEnum[SignalRStateEnum[\"connectError\"] = 0] = \"connectError\";\n SignalRStateEnum[SignalRStateEnum[\"registerError\"] = 1] = \"registerError\";\n SignalRStateEnum[SignalRStateEnum[\"getNotificationError\"] = 2] = \"getNotificationError\";\n SignalRStateEnum[SignalRStateEnum[\"disposedError\"] = 3] = \"disposedError\";\n SignalRStateEnum[SignalRStateEnum[\"connectionClose\"] = 4] = \"connectionClose\";\n SignalRStateEnum[SignalRStateEnum[\"reconnecting\"] = 5] = \"reconnecting\";\n SignalRStateEnum[SignalRStateEnum[\"reconnected\"] = 6] = \"reconnected\";\n return SignalRStateEnum;\n}(SignalRStateEnum || {});\n/**\n * Defines the notification types.\n */\nvar NotificationTypeEnum = /*#__PURE__*/function (NotificationTypeEnum) {\n NotificationTypeEnum[NotificationTypeEnum[\"info\"] = 0] = \"info\";\n NotificationTypeEnum[NotificationTypeEnum[\"success\"] = 1] = \"success\";\n NotificationTypeEnum[NotificationTypeEnum[\"warning\"] = 2] = \"warning\";\n NotificationTypeEnum[NotificationTypeEnum[\"error\"] = 3] = \"error\";\n return NotificationTypeEnum;\n}(NotificationTypeEnum || {});\nclass TabsGroupsModel {\n static groupsIntervals() {\n const groups = [{\n type: 0 /* IntervalsEnum.today */,\n label: 'shell.components.RES_Push_Notifications_Interval_Group_Today'\n }, {\n type: 1 /* IntervalsEnum.yesterday */,\n label: 'shell.components.RES_Push_Notifications_Interval_Group_Yesterday'\n }, {\n type: 2 /* IntervalsEnum.this_week */,\n label: 'shell.components.RES_Push_Notifications_Interval_Group_This_Week'\n }, {\n type: 3 /* IntervalsEnum.last_week */,\n label: 'shell.components.RES_Push_Notifications_Interval_Group_Last_week'\n }, {\n type: 4 /* IntervalsEnum.older */,\n label: 'shell.components.RES_Push_Notifications_Interval_Group_Older'\n }];\n return groups;\n }\n static groupsLevel() {\n const groups = [{\n type: NotificationTypeEnum.error,\n label: 'shell.components.RES_Push_Notifications_Level_Group_Error'\n }, {\n type: NotificationTypeEnum.warning,\n label: 'shell.components.RES_Push_Notifications_Level_Group_Warning'\n }, {\n type: NotificationTypeEnum.success,\n label: 'shell.components.RES_Push_Notifications_Level_Group_Success'\n }, {\n type: NotificationTypeEnum.info,\n label: 'shell.components.RES_Push_Notifications_Level_Group_Info'\n }];\n return groups;\n }\n}\nlet BellComponent = /*#__PURE__*/(() => {\n class BellComponent {\n constructor() {\n /** The current state of the signalR hub connection to the server */\n this.signalRConnectionState = input(HubConnectionState.Connecting);\n /** The array of cards */\n this.cards = input([]);\n /** Flag that identifies if the panel is opened */\n this.panelIsOpened = input(false);\n /** Flag that identifies if read all notifications */\n this.getNotificationsComplete = input(false);\n /** Will be triggered when the panel state changed */\n this.panelIsOpenedChange = output();\n /** Describes the current state of the signalR hub connection to the server */\n this.signalRConnectionStates = HubConnectionState; // used to be available on the HTML\n this.OrientationEnum = OrientationEnum;\n /** Wether there are critical notifications in the `ICard` array */\n this.existsCriticalNotifications = computed(() => this.cards().some(card => card.type === NotificationTypeEnum.error));\n }\n /**\n * Open notifications panel\n */\n openNotifications() {\n this.panelIsOpenedChange.emit();\n }\n static {\n this.ɵfac = function BellComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BellComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: BellComponent,\n selectors: [[\"po-bell-component\"]],\n inputs: {\n signalRConnectionState: [1, \"signalRConnectionState\"],\n cards: [1, \"cards\"],\n panelIsOpened: [1, \"panelIsOpened\"],\n getNotificationsComplete: [1, \"getNotificationsComplete\"]\n },\n outputs: {\n panelIsOpenedChange: \"panelIsOpenedChange\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 4,\n vars: 6,\n consts: [[\"priKeyboardNavigation\", \"\", \"matTooltipPosition\", \"below\", 1, \"bell-container\", 3, \"click\", \"navigationOrientation\", \"matTooltip\"], [1, \"icon-alerts\"], [1, \"count-container\", 3, \"ngClass\"]],\n template: function BellComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function BellComponent_Template_div_click_0_listener() {\n return ctx.openNotifications();\n });\n i0.ɵɵelement(2, \"i\", 1);\n i0.ɵɵtemplate(3, BellComponent_Conditional_3_Template, 1, 3, \"div\", 2);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"navigationOrientation\", ctx.OrientationEnum.Landscape)(\"matTooltip\", i0.ɵɵpipeBind1(1, 4, \"shell.components.RES_TopBar_RightItem_Notifications\"));\n i0.ɵɵattribute(\"disabled\", ctx.signalRConnectionState() !== ctx.signalRConnectionStates.Connected || ctx.cards().length === 0 || !ctx.getNotificationsComplete() || null);\n i0.ɵɵadvance(3);\n i0.ɵɵconditional(ctx.cards().length > 0 && ctx.getNotificationsComplete() ? 3 : -1);\n }\n },\n dependencies: [NgClass, MatTooltip, PrimaveraI18nModule, i1.PriI18nPipe, KeyboardNavigationDirective],\n styles: [\"po-bell-component .bell-container{display:flex;position:relative;align-items:center;justify-content:center;width:100%;height:100%;cursor:pointer;border-radius:100%;outline:none;border:.0625rem solid transparent}po-bell-component .bell-container[disabled=true]{pointer-events:none}po-bell-component .bell-container:focus-visible:not([disabled=true]){border-color:var(--grey-8);background-color:var(--theme-20)}po-bell-component .bell-container:focus-visible:not([disabled=true]) i{color:var(--grey-8)}po-bell-component .bell-container .count-container{position:absolute;overflow:hidden;width:.5rem;height:.5rem;border-radius:100%;background-color:var(--theme-100);flex-shrink:0;right:.125rem;top:.125rem}po-bell-component .bell-container .count-container.error{background-color:var(--error-100)}\\n\"],\n encapsulation: 2\n });\n }\n }\n return BellComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CardComponent = /*#__PURE__*/(() => {\n class CardComponent {\n constructor() {\n /** Will be triggered when the card disposed */\n this.disposeCard = new EventEmitter();\n this.notificationTypeEnum = NotificationTypeEnum;\n /** The value to remove element when swipe */\n this.maxSwipeValue = 170;\n this.identityService = inject(IdentityService);\n this.messagesService = inject(MessagesService);\n this.i18nService = inject(I18nService);\n }\n /** The card model */\n set card(value) {\n this.cardLocal = value;\n this.cardFormattedDate = this.formatDateTime;\n }\n /** The card model */\n get card() {\n return this.cardLocal;\n }\n /**\n * Dispose the card\n *\n * @param event Event to click\n */\n dispose(event) {\n event.stopPropagation();\n this.cleanCard();\n }\n /**\n * Invoked when the touch event start\n *\n * @param event The touch event\n */\n touchstart(event) {\n if (!this.isMobileDevice) {\n return;\n }\n this.swipeStartX = event.touches[0].clientX;\n }\n /**\n * Invoked when the touch event moved\n *\n * @param event The touch event\n */\n touchmove(event) {\n if (!this.isMobileDevice) {\n return;\n }\n this.swipeValueX = event.touches[0].clientX - this.swipeStartX;\n if (this.swipeValueX > 0) {\n const opacity = Math.max(1 - this.swipeValueX / this.maxSwipeValue, 0.5);\n this.animationCardMobileEnable = true;\n this.style = {\n transform: 'translateX(' + this.swipeValueX + 'px)',\n opacity\n };\n }\n }\n /**\n * Invoked when the touch event finished\n *\n * @param event The touch event\n */\n touchend() {\n if (!this.isMobileDevice) {\n return;\n }\n if (this.swipeValueX > this.maxSwipeValue) {\n this.cleanCard();\n } else {\n this.resetStyle();\n }\n }\n /** Get the date formatted */\n get formatDateTime() {\n const isTodayCard = DatesUtil.isSameDay(new Date(this.card.createdOn), new Date());\n if (isTodayCard) {\n const minutes = DatesUtil.differenceInMinutes(new Date(), new Date(this.card.createdOn));\n if (minutes === 1) {\n return this.i18nService.get('shell.components.RES_Push_Notifications_Card_Minute_Ago');\n } else if (minutes < 60) {\n return this.i18nService.get('shell.components.RES_Push_Notifications_Card_Minutes_Ago').replace('{0}', minutes.toString());\n } else {\n return new DateFieldViewPipe(this.identityService).transform(this.card.createdOn.toString(), 'LT');\n }\n } else {\n return new DateFieldViewPipe(this.identityService).transform(this.card.createdOn.toString(), 'LL');\n }\n }\n /**\n * Reset the card style\n */\n resetStyle() {\n this.style = {\n transform: 'translateX(0)',\n opacity: 1\n };\n this.animationCardMobileEnable = false;\n }\n /**\n * Remove the card and respective notification\n */\n cleanCard() {\n if (this.card.type === NotificationTypeEnum.error) {\n this.messagesService.showModal({\n title: this.i18nService.get('shell.components.RES_Push_Notifications_DeleteCriticalNotification_Title'),\n detail: this.i18nService.get('shell.components.RES_Push_Notifications_DeleteCriticalNotification_Detail'),\n callbacks: {\n yes: event => {\n event?.stopPropagation();\n event?.preventDefault();\n this.removeCard();\n },\n no: event => {\n event?.stopPropagation();\n event?.preventDefault();\n this.resetStyle();\n }\n }\n });\n } else {\n this.removeCard();\n }\n }\n /**\n * Add animation and remove the card\n */\n removeCard() {\n this.animationEnable = true;\n setTimeout(() => {\n this.disposeCard.emit();\n }, 500);\n }\n static {\n this.ɵfac = function CardComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CardComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: CardComponent,\n selectors: [[\"po-card-component\"]],\n inputs: {\n isMobileDevice: \"isMobileDevice\",\n card: \"card\"\n },\n outputs: {\n disposeCard: \"disposeCard\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 9,\n vars: 11,\n consts: [[1, \"card-container\", 3, \"touchstart\", \"touchmove\", \"touchend\", \"ngStyle\", \"ngClass\"], [1, \"body-card-container\"], [1, \"title-date-container\"], [\"priTooltipHover\", \"\", 1, \"title\"], [1, \"date-container\", 3, \"ngClass\"], [\"priInnerHTML\", \"\", 1, \"message\", 3, \"innerHTML\"], [1, \"close-card\", \"icon-close\"], [1, \"mobile-trash\", \"icon-close\"], [1, \"close-card\", \"icon-close\", 3, \"click\"]],\n template: function CardComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵlistener(\"touchstart\", function CardComponent_Template_div_touchstart_0_listener($event) {\n return ctx.touchstart($event);\n })(\"touchmove\", function CardComponent_Template_div_touchmove_0_listener($event) {\n return ctx.touchmove($event);\n })(\"touchend\", function CardComponent_Template_div_touchend_0_listener() {\n return ctx.touchend();\n });\n i0.ɵɵelementStart(1, \"div\", 1)(2, \"div\", 2);\n i0.ɵɵtemplate(3, CardComponent_Conditional_3_Template, 2, 1, \"div\", 3);\n i0.ɵɵelementStart(4, \"div\", 4);\n i0.ɵɵtext(5);\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(6, CardComponent_Conditional_6_Template, 1, 1, \"div\", 5);\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(7, CardComponent_Conditional_7_Template, 1, 0, \"div\", 6)(8, CardComponent_Conditional_8_Template, 1, 1, \"div\", 7);\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"ngStyle\", ctx.style)(\"ngClass\", ctx.notificationTypeEnum[ctx.card.type])(\"@animCard\", ctx.animationEnable ? \"leave\" : \"\");\n i0.ɵɵadvance(3);\n i0.ɵɵconditional(ctx.card.title ? 3 : -1);\n i0.ɵɵadvance();\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(9, _c17, !ctx.card.title));\n i0.ɵɵadvance();\n i0.ɵɵtextInterpolate(ctx.cardFormattedDate);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.card.body ? 6 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!ctx.animationEnable && !ctx.isMobileDevice ? 7 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!ctx.animationEnable && ctx.isMobileDevice ? 8 : -1);\n }\n },\n dependencies: [CommonModule, i3.NgClass, i3.NgStyle, PrimaveraI18nModule, InnerHTMLDirective],\n styles: [\"po-card-component{display:flex;width:100%;margin-bottom:12px;flex-shrink:0;position:relative}po-card-component .card-container{display:flex;z-index:2;flex-direction:column;width:100%;height:100%;padding:6px 12px 11px 8px;border-left:4px solid transparent;border-radius:4px;background-color:var(--grey-2)}po-card-component .card-container .body-card-container{display:flex;flex-direction:column;width:100%;height:100%;min-height:40px;overflow:hidden}po-card-component .card-container .body-card-container .title-date-container{display:flex;width:100%;margin-bottom:7px;align-items:baseline}po-card-component .card-container .body-card-container .title-date-container .title{width:100%;color:var(--grey-8);font-size:14px;font-weight:500;padding-right:10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}po-card-component .card-container .body-card-container .title-date-container .date-container{display:flex;justify-content:flex-end;font-size:10px;color:var(--grey-7);font-weight:500;flex-shrink:0}po-card-component .card-container .body-card-container .title-date-container .date-container.not-title{width:100%}po-card-component .card-container .body-card-container .message{color:var(--grey-7);font-size:13px;line-height:16px;text-align:left}po-card-component .card-container .body-card-container .message a:hover{cursor:pointer}po-card-component .card-container.success{border-left-color:var(--success-100)}po-card-component .card-container.info{border-left-color:var(--info-100)}po-card-component .card-container.warning{border-left-color:var(--warning-100)}po-card-component .card-container.error{border-left-color:var(--error-100)}po-card-component .close-card{position:absolute;font-size:16px;right:10px;top:8px;color:var(--grey-8);cursor:pointer;display:none;z-index:3}po-card-component .mobile-trash{display:none;font-size:13px}po-card-component.mobile .card-container{-webkit-user-select:none;user-select:none}po-card-component.mobile .mobile-trash{position:absolute;display:flex;align-items:center;height:100%;left:12px;font-size:24px;color:var(--grey-8)}po-card-component:not(.mobile):hover .card-container{background-color:var(--grey-1);box-shadow:0 .1875rem 1.875rem var(--shadow-1)}po-card-component:not(.mobile):hover .card-container .body-card-container .title-date-container .title{padding-right:22px}po-card-component:not(.mobile):hover .card-container .body-card-container .title-date-container .date-container{display:none}po-card-component:not(.mobile):hover .close-card{display:flex;font-size:13px}\\n\"],\n encapsulation: 2,\n data: {\n animation: [trigger('animCard', [transition('* => leave', [sequence([animate('.35s ease', style({\n height: '*',\n opacity: 0,\n transform: 'translateX(500px)'\n })), animate('.15s ease', style({\n height: '0',\n opacity: 0,\n transform: 'translateX(500px)'\n }))])])]), trigger('animTrash', [transition('* => anime', [style({\n transform: 'translateX(-50px)'\n }), animate('.5s ease', style({\n transform: 'translateX(0)'\n }))])])]\n }\n });\n }\n }\n return CardComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Service used to helper the signalR\n */\nlet SignalRHelper = /*#__PURE__*/(() => {\n class SignalRHelper {\n static {\n this.separator = '$';\n }\n /**\n * Function that build the targets\n *\n * @param values The values to build the target\n */\n static buildTarget(values) {\n const target = values.join(this.separator);\n return target;\n }\n static {\n this.ɵfac = function SignalRHelper_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SignalRHelper)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SignalRHelper,\n factory: SignalRHelper.ɵfac\n });\n }\n }\n return SignalRHelper;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SignalRService = /*#__PURE__*/(() => {\n class SignalRService {\n constructor(identityService) {\n this.identityService = identityService;\n /** Will be triggered on new notification */\n this.notification = new EventEmitter();\n /** Will be triggered when the connection is completed */\n this.connectionComplete = new EventEmitter();\n /** Will be triggered when the notification is disposed */\n this.disposedComplete = new EventEmitter();\n /** Will be triggered when the get all notifications is completed */\n this.getNotificationsComplete = new EventEmitter();\n /** Will be triggered on error */\n this.signalRStatus = new EventEmitter();\n }\n /**\n * Initialize the signalR Connection\n *\n * @param contextData the connection data.\n */\n init(contextData, signalRUrl) {\n if (this.hubMessageConnection?.state === signalR.HubConnectionState.Connected) {\n return;\n }\n this.groups = contextData;\n this.connectContextId = undefined;\n this.hubMessageConnection = undefined;\n this.configureSignalR(signalRUrl);\n this.connectSignalR();\n }\n /**\n * Get notifications for specific groups\n *\n * @param groups The groups\n */\n getNotificationsByGroup(groups) {\n this.getNotifications(groups);\n }\n /**\n * Get notifications for all groups\n */\n getAllNotifications() {\n this.getNotifications(this.groups);\n }\n /**\n * Dispose one notification\n *\n * @param disposed The notification information\n */\n disposedNotification(disposed) {\n this.hubMessageConnection.invoke('DisposeNotificationsAsync', disposed).then(() => {\n this.disposedComplete.emit(disposed);\n }).catch(ex => {\n this.signalRStatus.emit(SignalRStateEnum.disposedError);\n });\n }\n /**\n * Configure signalR events\n */\n configureSignalR(signalRUrl) {\n this.hubMessageConnection = new signalR.HubConnectionBuilder().configureLogging(signalR.LogLevel.Error).withUrl(signalRUrl + '/notifications', {\n accessTokenFactory: () => this.identityService.getToken()\n }).withAutomaticReconnect().build();\n this.hubMessageConnection.onclose(() => {\n this.connectionClose();\n });\n this.hubMessageConnection.on('BroadcastMessageAsync', data => {\n this.newNotification(data);\n });\n this.hubMessageConnection.onreconnecting(() => {\n this.signalRStatus.emit(SignalRStateEnum.reconnecting);\n });\n this.hubMessageConnection.onreconnected(() => {\n this.signalRStatus.emit(SignalRStateEnum.reconnected);\n this.registerApplication();\n });\n }\n /**\n * Connect signalR\n */\n async connectSignalR() {\n await this.hubMessageConnection.start().then(() => {\n // Register application\n this.registerApplication();\n }).catch(() => {\n this.signalRStatus.emit(SignalRStateEnum.connectError);\n });\n }\n /**\n * Register application on signalR\n */\n async registerApplication() {\n // invoke server side method to pass AppContext data.\n await this.hubMessageConnection.invoke('RegisterApplicationGroupsAsync', this.groups).then(connectionId => {\n this.connectContextId = connectionId;\n this.connectionComplete.emit();\n }).catch(() => {\n this.signalRStatus.emit(SignalRStateEnum.registerError);\n });\n }\n /**\n * Get notifications for respective groups\n *\n * @param groups The groups\n */\n async getNotifications(groups) {\n await this.hubMessageConnection.invoke('GetNotificationsAsync', groups).then(() => {\n this.notificationsComplete = true;\n this.getNotificationsComplete.emit();\n }).catch(() => {\n this.signalRStatus.emit(SignalRStateEnum.getNotificationError);\n });\n }\n /**\n * Call when connection close\n */\n connectionClose() {\n this.signalRStatus.emit(SignalRStateEnum.connectionClose);\n }\n /**\n * On new notification\n *\n * @param notification The notification\n */\n newNotification(notification) {\n this.notification.emit(notification);\n }\n static {\n this.ɵfac = function SignalRService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SignalRService)(i0.ɵɵinject(i1$1.IdentityService));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SignalRService,\n factory: SignalRService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return SignalRService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet PanelComponent = /*#__PURE__*/(() => {\n class PanelComponent {\n /**\n * Constructs the component\n *\n * @param messagesService Service responsible to launch different type of messages\n * @param i18nService Service responsible to handle language translations\n * @param deviceService Service responsible to handles all operations that are about the different devices that users could use\n * @param changeDetectorRef Base class for Angular Views, provides change detection functionality\n */\n constructor(messagesService, i18nService, deviceService, changeDetectorRef) {\n this.messagesService = messagesService;\n this.i18nService = i18nService;\n this.deviceService = deviceService;\n this.changeDetectorRef = changeDetectorRef;\n /** Will be triggered when the card or group card disposed */\n this.disposeCardGroup = new EventEmitter();\n /** The length of cards visible */\n this.maxCardsVisible = 500;\n /** List of tabs to use in TabsComponent */\n this.tabs = [{\n id: 1 /* TabsEnum.Date */,\n label: this.i18nService.get('shell.components.RES_Push_Notifications_Tab_Date')\n }, {\n id: 2 /* TabsEnum.Level */,\n label: this.i18nService.get('shell.components.RES_Push_Notifications_Tab_Level')\n }];\n /** Array the groups of time intervals */\n this.intervals = TabsGroupsModel.groupsIntervals();\n /** Array the groups of levels */\n this.levels = TabsGroupsModel.groupsLevel();\n this.isMobileDevice = this.deviceService.isMobileBrowser;\n }\n /**\n * Lifecycle Hook executed when the component is created\n */\n ngOnInit() {\n this.changeSelectedTab(this.tabs[0]);\n this.refreshCards.subscribe(() => {\n this.setGroupsCards();\n });\n }\n /**\n * Will be triggered when the selected tab changed\n */\n changeSelectedTab(selectedTab) {\n this.selectedTab = selectedTab;\n this.resetPanelScroll();\n this.setGroupsCards();\n }\n /**\n * Clean a card\n *\n * @param card the card\n */\n cleanCard(card, cardGroup) {\n cardGroup.cards.splice(cardGroup.cards.indexOf(card), 1);\n this.disposeCardGroup.emit([card]);\n if (cardGroup.cards.length === 0) {\n this.removeCardGroup(cardGroup);\n }\n }\n /**\n * Remove a card group\n *\n * @param cardGroup the group of cards\n * @param event Event to click\n */\n cleanGroup(event, cardGroup) {\n event.stopPropagation();\n const cards = cardGroup.cards.filter(card => card.type === NotificationTypeEnum.error);\n if (cards.length > 0) {\n this.messagesService.showModal({\n title: this.i18nService.get('shell.components.RES_Push_Notifications_DeleteCriticalNotifications_Title'),\n detail: this.i18nService.get('shell.components.RES_Push_Notifications_DeleteCriticalNotifications_Detail'),\n callbacks: {\n yes: event => {\n event?.stopPropagation();\n event?.preventDefault();\n this.removeCardGroup(cardGroup);\n },\n no: event => {\n event?.stopPropagation();\n event?.preventDefault();\n }\n }\n });\n } else {\n this.removeCardGroup(cardGroup);\n }\n }\n /**\n * Get the cards of groups\n */\n setGroupsCards() {\n this.groupCards = this.selectedTab?.id === 1 /* TabsEnum.Date */ ? this.createIntervalGroups() : this.createLevelGroups();\n this.changeDetectorRef.detectChanges();\n }\n /**\n * Remove the card group\n *\n * @param cardGroup the group of cards\n */\n removeCardGroup(cardGroup) {\n cardGroup.animationEnable = true;\n this.changeDetectorRef.detectChanges();\n setTimeout(() => {\n this.groupCards.splice(this.groupCards.indexOf(cardGroup), 1);\n this.disposeCardGroup.emit(cardGroup.cards);\n }, 500);\n }\n /**\n * Create the groups when the tab selected is the time interval\n */\n createIntervalGroups() {\n const cardGroups = [];\n this.intervals.forEach(interval => {\n const cards = this.cards.filter(card => {\n const date = new Date(card.createdOn);\n switch (interval.type) {\n case 0 /* IntervalsEnum.today */:\n return DatesUtil.isToday(date);\n case 1 /* IntervalsEnum.yesterday */:\n return DatesUtil.isYesterday(date);\n case 2 /* IntervalsEnum.this_week */:\n return DatesUtil.isThisWeek(date) && DatesUtil.isBefore(date, DatesUtil.startOfYesterday());\n case 3 /* IntervalsEnum.last_week */:\n return DatesUtil.getWeekNumber(date) === DatesUtil.getWeekNumber(new Date()) - 1;\n case 4 /* IntervalsEnum.older */:\n return date < DatesUtil.addToDate(DatesUtil.getStartOf(new Date(), 'week'), -1, 'weeks');\n }\n });\n if (cards.length > 0) {\n cardGroups.push({\n title: this.i18nService.get(interval.label),\n cards\n });\n }\n });\n return cardGroups;\n }\n /**\n * Create the groups when the tab selected is the criticality level\n */\n createLevelGroups() {\n const cardGroups = [];\n this.levels.forEach(level => {\n const cards = this.cards.filter(card => card.type === level.type);\n if (cards.length > 0) {\n cardGroups.push({\n title: this.i18nService.get(level.label),\n cards\n });\n }\n });\n return cardGroups;\n }\n /**\n * Reset the position of scroll\n */\n resetPanelScroll() {\n if (this.cardsPanel) {\n this.cardsPanel.nativeElement.scrollTop = 0;\n }\n }\n static {\n this.ɵfac = function PanelComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || PanelComponent)(i0.ɵɵdirectiveInject(i2$1.MessagesService), i0.ɵɵdirectiveInject(i1.I18nService), i0.ɵɵdirectiveInject(i1$1.DeviceService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: PanelComponent,\n selectors: [[\"po-panel-component\"]],\n viewQuery: function PanelComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c18, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.cardsPanel = _t.first);\n }\n },\n inputs: {\n refreshCards: \"refreshCards\",\n cards: \"cards\"\n },\n outputs: {\n disposeCardGroup: \"disposeCardGroup\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 7,\n vars: 2,\n consts: [[\"cardsPanel\", \"\"], [\"cardTemplate\", \"\"], [3, \"changeSelectedTab\", \"tabs\", \"defaultSelectedTab\"], [1, \"cards-panel\"], [1, \"cards-group-container\"], [1, \"cards-group-header\"], [1, \"cards-group-header-title\"], [1, \"cards-group-header-clean\", 3, \"click\"], [3, \"ngTemplateOutlet\", \"ngTemplateOutletContext\"], [3, \"disposeCard\", \"card\", \"isMobileDevice\"]],\n template: function PanelComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-tabs-component\", 2);\n i0.ɵɵlistener(\"changeSelectedTab\", function PanelComponent_Template_po_tabs_component_changeSelectedTab_0_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.changeSelectedTab($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(1, \"div\", 3, 0);\n i0.ɵɵrepeaterCreate(3, PanelComponent_For_4_Template, 11, 9, \"div\", 4, i0.ɵɵrepeaterTrackByIdentity);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(5, PanelComponent_ng_template_5_Template, 1, 4, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"tabs\", ctx.tabs)(\"defaultSelectedTab\", ctx.selectedTab);\n i0.ɵɵadvance(3);\n i0.ɵɵrepeater(ctx.groupCards);\n }\n },\n dependencies: [PrimaveraI18nModule, i1.PriI18nPipe, CardComponent, CommonModule, i3.NgTemplateOutlet, i3.SlicePipe, ComponentsModule, i2$1.TabsComponent],\n styles: [\"po-panel-component{display:flex;width:100%;height:100%;flex-direction:column}po-panel-component .cards-panel{display:flex;flex-direction:column;width:100%;height:100%;padding:0 12px;overflow:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}po-panel-component .cards-panel .cards-group-container{display:flex;flex-direction:column;width:100%;flex-shrink:0}po-panel-component .cards-panel .cards-group-container .cards-group-header{display:flex;flex-direction:row;flex-shrink:0;width:100%;overflow:hidden;margin-top:20px;margin-bottom:12px;align-items:baseline}po-panel-component .cards-panel .cards-group-container .cards-group-header .cards-group-header-title{width:100%;margin-right:2px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 12px;color:var(--grey-8);font-size:20px;font-weight:500}po-panel-component .cards-panel .cards-group-container .cards-group-header .cards-group-header-clean{display:flex;flex-shrink:0;color:var(--theme-100);font-size:12px;font-weight:400;cursor:pointer;padding:5px;border-radius:4px}po-panel-component .cards-panel .cards-group-container .cards-group-header .cards-group-header-clean:hover{background-color:var(--theme-10)}\\n\"],\n encapsulation: 2,\n data: {\n animation: [trigger('animCardGroup', [transition('* => animate', [sequence([animate('.35s ease', style({\n height: '*',\n opacity: 0,\n transform: 'translateX(500px)'\n })), animate('.15s ease', style({\n height: '0',\n opacity: 0,\n transform: 'translateX(500px)'\n }))])])]), trigger('animCard', [transition(':leave', [sequence([animate('.35s ease', style({\n height: '*',\n opacity: 0,\n transform: 'translateX(500px)'\n })), animate('.15s ease', style({\n height: '0',\n opacity: 0,\n transform: 'translateX(500px)'\n }))])])])]\n }\n });\n }\n }\n return PanelComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet PriNotificationsComponent = /*#__PURE__*/(() => {\n class PriNotificationsComponent {\n constructor() {\n /** The Uri to pns service */\n this.pnsUri = input.required();\n /** Flag that identifies if read all notifications */\n this.getNotificationsComplete = model();\n /** The array of cards */\n this.cards = model([]);\n /** Will be triggered when the array of cards changed */\n this.refreshCards = new EventEmitter();\n /** Describes the current state of the signalR hub connection to the server */\n this.HubConnectionState = HubConnectionState;\n /** The panel title */\n this.panelTitle = '';\n /** The attempts to reconnect to signalR */\n this.attempts = 1;\n /** The default time to reconnect */\n this.timeToReconnect = 10000;\n /** The array with notifications to dispose */\n this.notificationsToDisposed = [];\n /** The maximum of notifications send to dispose */\n this.maxNotificationsToDisposed = 200;\n this.destroyRef = inject(DestroyRef);\n this.signalRService = inject(SignalRService);\n this.messagesService = inject(MessagesService);\n this.i18nService = inject(I18nService);\n this.appContextService = inject(AppContextService);\n this.broadcastService = inject(BroadcastService);\n this.rightPanelService = inject(RightPanelService);\n this.roleService = inject(RoleService);\n this.amsService = inject(AmsService);\n this.identityService = inject(IdentityService);\n }\n /** Flag that identifies if the panel is opened */\n get panelIsOpened() {\n return this.rightPanelService.componentInstance?.panelIsOpened() && this.rightPanelService.componentInstance?.config?.bodyID === 'notifications-wrapper';\n }\n /**\n * Lifecycle Hook executed when the component is created\n */\n ngOnInit() {\n /** Invoked when is received a new notification */\n this.signalRService.notification.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(notification => this.convertToCard(notification));\n /** Invoked when the connection with signalR is completed */\n this.signalRService.connectionComplete.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getNotifications());\n /** Invoked when the get all notifications is completed */\n this.signalRService.getNotificationsComplete.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getNotificationsComplete.set(true));\n /** Invoked when is received a signalR error */\n this.signalRService.disposedComplete.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(data => this.sendToDispose());\n /** Invoked when is received a signalR error */\n this.signalRService.signalRStatus.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(state => {\n console.error('NOTIFICATIONS ERROR: ' + SignalRStateEnum[state]);\n switch (state) {\n case SignalRStateEnum.connectError:\n case SignalRStateEnum.connectionClose:\n {\n if (this.rightPanelService.currentOpenComponentRef?.instance?.config?.bodyID === 'notifications-wrapper') {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef\n });\n }\n clearTimeout(this.timeout);\n this.attempts++;\n const time = this.timeToReconnect * this.attempts;\n this.timeout = setTimeout(() => {\n this.timeout = undefined;\n this.initSignalR();\n }, time);\n break;\n }\n case SignalRStateEnum.disposedError:\n this.getNotifications();\n break;\n case SignalRStateEnum.reconnecting:\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef\n });\n break;\n }\n });\n this.initSignalR();\n this.panelTitle = this.i18nService.get('shell.components.RES_Push_Notifications_Notifications_Central_Title');\n this.rightPanelModel = {\n body: this.body,\n bodyID: 'notifications-wrapper',\n parent: this.bell,\n class: 'under-modal'\n };\n }\n /**\n * This lifecycle hook will be executed when the component is destroyed\n */\n ngOnDestroy() {\n this.rightPanelService.title$.next('');\n }\n /**\n * Change the panel state\n */\n onTogglePanel() {\n const bodyID = this.rightPanelService.currentOpenComponentRef?.instance?.config?.bodyID;\n if (bodyID) {\n if (bodyID === 'notifications-wrapper') {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef\n });\n } else {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef,\n onCloseFinish: () => {\n this.openPanel();\n }\n });\n }\n } else {\n this.openPanel();\n }\n }\n /**\n * Dispose the array of notifications\n */\n disposeNotifications(cards) {\n cards.forEach(card => {\n this.notificationsToDisposed.push({\n id: card.id,\n target: card.target\n });\n this.removeCard(card);\n });\n this.sendToDispose();\n }\n /**\n * Opens the panel and sets the right panel model and title.\n */\n openPanel() {\n this.rightPanelService.openRightPanel$.next(this.rightPanelModel);\n this.rightPanelService.title$.next(this.panelTitle);\n }\n /**\n * Initialize connect to signalR\n */\n initSignalR() {\n const context = this.appContextService.getContext();\n const productName = context.productName;\n const accountKey = this.amsService.account;\n const subscriptionKey = this.amsService.subscription;\n const roleKey = this.roleService?.selectedRole$?.value?.roleKey;\n const userId = this.identityService?.getUser()?.id;\n const groups = [SignalRHelper.buildTarget([productName])];\n if (userId) {\n groups.push(SignalRHelper.buildTarget([productName, userId]));\n }\n if (roleKey) {\n groups.push(SignalRHelper.buildTarget([productName, roleKey]));\n }\n if (accountKey && subscriptionKey) {\n groups.push(SignalRHelper.buildTarget([productName, accountKey]));\n groups.push(SignalRHelper.buildTarget([productName, accountKey, subscriptionKey]));\n groups.push(SignalRHelper.buildTarget([productName, accountKey, subscriptionKey, userId]));\n if (roleKey) {\n groups.push(SignalRHelper.buildTarget([productName, accountKey, subscriptionKey, roleKey]));\n }\n }\n const signalRGroups = {\n groups,\n userId\n };\n this.signalRService.init(signalRGroups, this.pnsUri());\n }\n /**\n * Get user notifications\n */\n getNotifications() {\n this.cards.set([]);\n this.getNotificationsComplete.set(false);\n // get all users notifications\n this.signalRService.getAllNotifications();\n }\n /**\n * Dispose notifications on signalR\n */\n sendToDispose() {\n if (this.notificationsToDisposed.length) {\n const disposedItems = this.notificationsToDisposed.splice(0, this.maxNotificationsToDisposed);\n this.signalRService.disposedNotification({\n disposedBy: this.identityService.getUser()?.id,\n disposedItems\n });\n }\n }\n /**\n * Convert signalR notification to push notification card\n *\n * @param notification the signalR notification\n */\n convertToCard(notification) {\n const title = this.getMessageByCulture(notification.message, 'title');\n const body = this.getMessageByCulture(notification.message, 'message');\n if (title || body) {\n const card = {\n id: notification.id,\n target: notification.target,\n type: notification.notificationType,\n title: title ? title.value : undefined,\n body: body ? body.value : undefined,\n createdOn: notification.createdOn\n };\n if (notification.notificationType === NotificationTypeEnum.error && body && this.getNotificationsComplete()) {\n this.messagesService.show(new MessageInfo(body.value, null, MessageType.Error));\n }\n this.addCard(card);\n }\n }\n /**\n * Get the message by user culture\n *\n * @param messages the array of messages\n * @param key the key to filter the message\n */\n getMessageByCulture(messages, key) {\n const messagesByKey = messages.filter(m => m.key.toLowerCase() === key);\n if (!messagesByKey) {\n return undefined;\n }\n let message = messagesByKey.find(m => m.culture === this.identityService.getUser()?.culture);\n if (!message) {\n message = messagesByKey.find(m => m.culture.split('-')[0].toUpperCase() === this.identityService.getUser()?.culture.split('-')[0].toUpperCase());\n if (!message) {\n message = messagesByKey.find(m => m.culture === 'en-US');\n if (!message) {\n message = messagesByKey[0];\n }\n }\n }\n return message;\n }\n /**\n * Add new card\n */\n addCard(card) {\n this.cards().push(card);\n this.sortCards();\n }\n /**\n *\n this.protected .emit();\n * Remove a cards array\n */\n removeCard(card) {\n this.cards().splice(this.cards().indexOf(card), 1);\n if (this.cards().length === 0) {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef\n });\n }\n }\n /**\n * Sort notifications by date\n */\n sortCards() {\n this.cards().sort((a, b) => new Date(b.createdOn).getTime() - new Date(a.createdOn).getTime());\n }\n static {\n this.ɵfac = function PriNotificationsComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || PriNotificationsComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: PriNotificationsComponent,\n selectors: [[\"po-notifications\"]],\n viewQuery: function PriNotificationsComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c20, 7);\n i0.ɵɵviewQuery(_c21, 7, ElementRef);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.body = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.bell = _t.first);\n }\n },\n inputs: {\n pnsUri: [1, \"pnsUri\"],\n getNotificationsComplete: [1, \"getNotificationsComplete\"],\n cards: [1, \"cards\"]\n },\n outputs: {\n getNotificationsComplete: \"getNotificationsCompleteChange\",\n cards: \"cardsChange\"\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([]), i0.ɵɵStandaloneFeature],\n decls: 4,\n vars: 7,\n consts: [[\"bell\", \"\"], [\"body\", \"\"], [3, \"panelIsOpenedChange\", \"ngClass\", \"signalRConnectionState\", \"cards\", \"panelIsOpened\", \"getNotificationsComplete\"], [3, \"cards\", \"refreshCards\"], [3, \"disposeCardGroup\", \"cards\", \"refreshCards\"]],\n template: function PriNotificationsComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"po-bell-component\", 2, 0);\n i0.ɵɵlistener(\"panelIsOpenedChange\", function PriNotificationsComponent_Template_po_bell_component_panelIsOpenedChange_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onTogglePanel());\n });\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(2, PriNotificationsComponent_ng_template_2_Template, 1, 1, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(5, _c22, ctx.panelIsOpened))(\"signalRConnectionState\", (ctx.signalRService == null ? null : ctx.signalRService.hubMessageConnection) ? ctx.signalRService.hubMessageConnection.state : ctx.HubConnectionState.Disconnected)(\"cards\", ctx.cards())(\"panelIsOpened\", ctx.panelIsOpened)(\"getNotificationsComplete\", ctx.getNotificationsComplete());\n }\n },\n dependencies: [PanelComponent, BellComponent, ComponentsModule, PrimaveraI18nModule, PrimaveraServicesModule, MatTabsModule, NgClass],\n styles: [\"po-notifications{width:100%;height:100%;cursor:default}\\n\"],\n encapsulation: 2\n });\n }\n }\n return PriNotificationsComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nvar SidebarNavigationDirection = /*#__PURE__*/function (SidebarNavigationDirection) {\n SidebarNavigationDirection[\"Next\"] = \"next\";\n SidebarNavigationDirection[\"Previous\"] = \"previous\";\n return SidebarNavigationDirection;\n}(SidebarNavigationDirection || {});\nlet SanitizeHtmlPipe = /*#__PURE__*/(() => {\n class SanitizeHtmlPipe {\n constructor(sanitizer) {\n this.sanitizer = sanitizer;\n }\n transform(value) {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n static {\n this.ɵfac = function SanitizeHtmlPipe_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SanitizeHtmlPipe)(i0.ɵɵdirectiveInject(i1$4.DomSanitizer, 16));\n };\n }\n static {\n this.ɵpipe = /* @__PURE__ */i0.ɵɵdefinePipe({\n name: \"sanitizeHtml\",\n type: SanitizeHtmlPipe,\n pure: true,\n standalone: true\n });\n }\n }\n return SanitizeHtmlPipe;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SearchComponent = /*#__PURE__*/(() => {\n class SearchComponent {\n constructor() {\n this.sidebarItemClick = output();\n this.focusLimitReached = output();\n this.dropDownMenuCustomClass = input('');\n this.disabled = model(false);\n this.showDropDownMenuEvent = new EventEmitter();\n this.hideDropDownMenuEvent = new EventEmitter();\n this.sidebarItemType = signal(SidebarItemType.Search);\n this.elementRef = inject(ElementRef);\n //#region Protected Properties\n this.rootElement = viewChild('rootElement');\n this.searchField = viewChild('searchInput');\n this.isClearSearchKeyDown = true;\n this.noResultsLength = 10;\n this.searchResults = new Array();\n this.dropDownMenuCustomClassList = computed(() => `${this.dropDownMenuCustomClass()} search`);\n this.OrientationEnum = OrientationEnum;\n this.isSmallDevice = computed(() => !this.deviceService.greaterThanMdBreakpoint);\n this.dropDownMenuTriggers = DropDownMenuTriggers;\n this.searchInputDivClass = 'search-input';\n this.maxNoResultsDefaultLength = 30;\n this.searchService = inject(SearchService);\n this.i18nService = inject(I18nService);\n this.hotkeysService = inject(HotkeysService);\n this.changeDetectorRef = inject(ChangeDetectorRef);\n this.routeHelperService = inject(RouteHelperService);\n this.amsService = inject(AmsService);\n this.deviceService = inject(DeviceService);\n this.destroyRef = inject(DestroyRef);\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n // Add hotkeys\n this.addHotKeys();\n this.searchNoResults = this.i18nService.get('shell.components.RES_Search_No_Results_Message');\n }\n /** What happens when the Arrow Up key is pressed on small screens */\n handleArrowUpPress(event) {\n this.handleArrowKeyPressOnSmallDevice(event);\n }\n /** What happens when the Arrow Down key is pressed on small screens */\n handleArrowDownPress(event) {\n this.handleArrowKeyPressOnSmallDevice(event);\n }\n /** Sets the focus on the `SearchComponent` as a `SidebarItem`. */\n focusSidebarItem() {\n if (!this.disabled()) {\n const inputElement = this.elementRef.nativeElement?.firstElementChild.querySelector(`.${this.searchInputDivClass} input`);\n inputElement?.focus();\n }\n }\n ngOnDestroy() {\n if (this.unsubscribeHotkeys) {\n this.unsubscribeHotkeys();\n }\n }\n /**\n * Set focus in search input with keyboard\n */\n onSearchKeyBoard() {\n this.searchField().nativeElement.click();\n }\n /**\n * Determines the keydown action when on the search input\n *\n * @param event KeyboardEvent to capture Escape/Tab\n */\n onInputKeydown(event) {\n if (['Escape', 'Tab'].includes(event.code)) {\n this.dropDownMenuHide();\n this.hideDropDownMenuEvent.next();\n }\n }\n /**\n * Determines the keydown action when on the dropdown results\n *\n * @param event KeyboardEvent to capture Escape\n */\n onSearchResultKeydown(event) {\n if (event.code === 'Escape') {\n event.preventDefault();\n this.searchField().nativeElement.focus();\n }\n }\n /**\n * keyup event to search with search service the existing routes from menu\n */\n onSearchTextChanged() {\n clearTimeout(this.timeout);\n this.timeout = setTimeout(() => {\n this.timeout = undefined;\n this.performSearch();\n }, 300);\n }\n performSearch() {\n this.isClearSearchKeyDown = false;\n if (this.searchText) {\n const searchValue = this.searchText.trim().normalize('NFD').replace(/[\\u0300-\\u036f]/g, '');\n this.searchResults = [];\n this.searchService.search(searchValue).pipe(takeUntilDestroyed(this.destroyRef)).subscribe(values => {\n this.searchResults = [...this.searchResults, ...values];\n if (this.searchResults?.length === 0 && !this.searchService.reading) {\n this.onSearchHasNoResults();\n }\n this.changeDetectorRef.detectChanges();\n });\n this.showDropDownMenuEvent.emit();\n } else {\n this.hideDropDownMenuEvent.emit();\n }\n }\n /**\n * Shows \"no results\" message\n */\n onSearchHasNoResults() {\n this.noResultsLength = Math.abs(this.maxNoResultsDefaultLength - this.searchNoResults.length);\n }\n /**\n * Navigates to the clicked list results\n *\n * @param event From HTML\n * @param item From search result\n */\n navigateTo(item) {\n this.navigateUrl(item.url);\n this.sidebarService.accessOrigin.set(RouteAccessOrigin.Search);\n // Sets the active item id as null because menu will identify the active item from URL\n this.sidebarService.activeItemType.set(null);\n this.sidebarService.selectedItemId.set(null);\n this.sidebarItemClick.emit();\n }\n /**\n * Sets search as active\n */\n setSearchAsActive(event) {\n this.searchIsActive = true;\n if (this.searchField() != null) {\n if (this.searchText?.length > 0) {\n event.stopPropagation();\n event.preventDefault();\n }\n const elemFocus = elem => elem.focus();\n const inputElem = this.searchField().nativeElement;\n setTimeout(() => {\n elemFocus(inputElem);\n inputElem.select();\n }, 0);\n }\n }\n /**\n * Sets search as inactive\n */\n setSearchAsInactive(event) {\n if (this.allowLeave(event)) {\n this.searchIsActive = false;\n this.cleanText();\n }\n }\n /**\n * Clear input text\n */\n cleanText() {\n this.searchText = '';\n }\n /**\n * Fires when dropdown menu is hidden\n */\n dropDownMenuHide() {\n this.searchIsActive = false;\n this.cleanText();\n }\n /**\n * Adds hot keys to hotkeys service, with set focus search box key combination\n */\n addHotKeys() {\n const hotkeysDefinitions = [{\n // Ctrl + Alt + F => Search Input\n hotkey: [17 /* HotkeysKeys.Ctrl */, 18 /* HotkeysKeys.Alt */, 70 /* HotkeysKeys.F */],\n action: () => this.onSearchKeyBoard()\n }];\n // add hotkeys\n this.unsubscribeHotkeys = this.hotkeysService.addHotkeys(hotkeysDefinitions);\n }\n /**\n * Handles the key press event for the arrow Up/Down keys on small screens.\n *\n * @param event The keyboard event to handle.\n */\n handleArrowKeyPressOnSmallDevice(event) {\n // At this breakpoint the SearchComponent is on the sidebar, so we need to enable navigate to the next sidebar item\n if (this.isSmallDevice()) {\n // Emit an event to notify the parent component to navigate to the previous/next component.\n this.focusLimitReached.emit({\n limitType: event.code === 'ArrowUp' ? SidebarNavigationDirection.Previous : SidebarNavigationDirection.Next,\n currentItemType: this.sidebarItemType()\n });\n }\n }\n /**\n * Allows leave or lostfocus\n *\n * @param event dom Event\n * @returns true if is out the rootElement and lostfocus\n */\n allowLeave(event) {\n return !this.searchText && this.rootElement()?.nativeElement?.contains(event.target);\n }\n /**\n * Navigates url\n *\n * @param url to navigate\n */\n navigateUrl(url) {\n this.hideDropDownMenuEvent.emit();\n if (url.includes('#/')) {\n // remove the content preceding the '#/'\n url = url.split('#/')[1];\n }\n if (URL_REGEXP.test(url)) {\n // Prefix the uri with 'https://' if it doesn't include the protocol\n if (!url.startsWith('http')) {\n url = `https://${url}`;\n }\n window.open(url, '_blank');\n } else {\n const queryParams = this.routeHelperService.getParametersFromUri(url);\n this.routeHelperService.navigate(this.amsService.account, this.amsService.subscription, url, queryParams, OutletEnum.Primary, false);\n }\n this.searchIsActive = false;\n this.searchText = '';\n this.searchField().nativeElement.blur();\n this.changeDetectorRef.detectChanges();\n }\n static {\n this.ɵfac = function SearchComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SearchComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SearchComponent,\n selectors: [[\"po-search\"]],\n viewQuery: function SearchComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuerySignal(ctx.rootElement, _c23, 5);\n i0.ɵɵviewQuerySignal(ctx.searchField, _c24, 5);\n }\n if (rf & 2) {\n i0.ɵɵqueryAdvance(2);\n }\n },\n hostBindings: function SearchComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"keydown.ArrowUp\", function SearchComponent_keydown_ArrowUp_HostBindingHandler($event) {\n return ctx.handleArrowUpPress($event);\n })(\"keydown.ArrowDown\", function SearchComponent_keydown_ArrowDown_HostBindingHandler($event) {\n return ctx.handleArrowDownPress($event);\n });\n }\n },\n inputs: {\n dropDownMenuCustomClass: [1, \"dropDownMenuCustomClass\"],\n disabled: [1, \"disabled\"]\n },\n outputs: {\n sidebarItemClick: \"sidebarItemClick\",\n focusLimitReached: \"focusLimitReached\",\n disabled: \"disabledChange\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 11,\n vars: 15,\n consts: [[\"dropDownAnchor\", \"\"], [\"searchInput\", \"\"], [\"searchTemplate\", \"\"], [\"data-testid\", \"search-wrapper\", \"priDropDownMenu\", \"\", \"priDropDownMenuPosition\", \"left\", 1, \"search-wrapper\", 3, \"dropDownMenuHide\", \"ngClass\", \"priDropDownMenuCustomClass\", \"priDropDownMenuTrigger\", \"customPanelTemplate\", \"priDropDownMenuShow\", \"priDropDownMenuHide\"], [1, \"search-icon\"], [1, \"icon-search\"], [\"type\", \"text\", \"data-testid\", \"search-input\", 1, \"form-control\", 3, \"ngModelChange\", \"keyup\", \"keydown\", \"focus\", \"click\", \"focusout\", \"ngModel\", \"placeholder\", \"priKeyboardNavigation\", \"navigationOrientation\"], [\"data-testid\", \"search-close\", 1, \"search-close\"], [\"data-testid\", \"search-close\", 1, \"search-close\", 3, \"click\"], [1, \"search-icon-close\", \"icon-cancel\"], [\"data-testid\", \"search-dropdown-results\", 1, \"search-dropdown-results\"], [\"id\", \"search-list-wrapper\", \"data-testid\", \"search-list-wrapper-results\", \"priKeyboardNavigationGroup\", \"\", 1, \"search-list-wrapper\"], [\"data-testid\", \"dropdown-item\", 1, \"dropdown-item\", 3, \"id\", \"priKeyboardNavigation\"], [\"data-testid\", \"search-list-empty-result\", 1, \"po-list-empty-result\"], [\"data-testid\", \"dropdown-item\", 1, \"dropdown-item\", 3, \"click\", \"keydown\", \"id\", \"priKeyboardNavigation\"], [1, \"first-row\"], [\"priTooltipHover\", \"\", 1, \"title\"], [\"priTooltipHover\", \"\", 1, \"authority\"], [\"priTooltipHover\", \"\", 1, \"second-row\", 3, \"innerHTML\"], [1, \"title\"]],\n template: function SearchComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 3, 0);\n i0.ɵɵlistener(\"dropDownMenuHide\", function SearchComponent_Template_div_dropDownMenuHide_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.dropDownMenuHide());\n });\n i0.ɵɵelementStart(2, \"div\", 4);\n i0.ɵɵelement(3, \"i\", 5);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(4, \"div\")(5, \"input\", 6, 1);\n i0.ɵɵpipe(7, \"priI18n\");\n i0.ɵɵtwoWayListener(\"ngModelChange\", function SearchComponent_Template_input_ngModelChange_5_listener($event) {\n i0.ɵɵrestoreView(_r1);\n i0.ɵɵtwoWayBindingSet(ctx.searchText, $event) || (ctx.searchText = $event);\n return i0.ɵɵresetView($event);\n });\n i0.ɵɵlistener(\"keyup\", function SearchComponent_Template_input_keyup_5_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onSearchTextChanged());\n })(\"keydown\", function SearchComponent_Template_input_keydown_5_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onInputKeydown($event));\n })(\"focus\", function SearchComponent_Template_input_focus_5_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.setSearchAsActive($event));\n })(\"click\", function SearchComponent_Template_input_click_5_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.setSearchAsActive($event));\n })(\"focusout\", function SearchComponent_Template_input_focusout_5_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.setSearchAsInactive($event));\n });\n i0.ɵɵelementEnd()();\n i0.ɵɵtemplate(8, SearchComponent_Conditional_8_Template, 2, 0, \"div\", 7);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(9, SearchComponent_ng_template_9_Template, 7, 10, \"ng-template\", null, 2, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n const searchTemplate_r8 = i0.ɵɵreference(10);\n i0.ɵɵproperty(\"ngClass\", ctx.searchIsActive ? \"active\" : \"\")(\"priDropDownMenuCustomClass\", ctx.dropDownMenuCustomClassList())(\"priDropDownMenuTrigger\", ctx.dropDownMenuTriggers.None)(\"customPanelTemplate\", searchTemplate_r8)(\"priDropDownMenuShow\", ctx.showDropDownMenuEvent)(\"priDropDownMenuHide\", ctx.hideDropDownMenuEvent);\n i0.ɵɵadvance(4);\n i0.ɵɵclassMap(ctx.searchInputDivClass);\n i0.ɵɵadvance();\n i0.ɵɵpropertyInterpolate(\"placeholder\", i0.ɵɵpipeBind1(7, 13, \"shell.components.RES_Search_Placeholder\"));\n i0.ɵɵtwoWayProperty(\"ngModel\", ctx.searchText);\n i0.ɵɵproperty(\"priKeyboardNavigation\", !ctx.isSmallDevice())(\"navigationOrientation\", ctx.OrientationEnum.Landscape);\n i0.ɵɵadvance(3);\n i0.ɵɵconditional((ctx.searchText == null ? null : ctx.searchText.length) > 0 ? 8 : -1);\n }\n },\n dependencies: [SanitizeHtmlPipe, PrimaveraI18nModule, i1.PriI18nPipe, CommonModule, i3.NgClass, i3.SlicePipe, DropDownMenuDirective, FormsModule, i5.DefaultValueAccessor, i5.NgControlStatus, i5.NgModel, FromComputedStylePipe, ToFixedPipe, KeyboardNavigationGroupDirective, KeyboardNavigationDirective],\n styles: [\"po-search .search-wrapper{display:flex;align-items:center;height:2.25rem;width:100%;color:var(--grey-7);background-color:var(--grey-3);border:.0625rem solid var(--grey-4);border-radius:1.5625rem;transition:all .2s ease-in;margin:.0625rem;padding-right:.5rem;gap:.5rem}po-search .search-wrapper .search-icon{display:flex;align-items:center;font-size:1.5rem;height:2.25rem;padding-left:.5rem}po-search .search-wrapper .search-input{display:flex;width:100%}po-search .search-wrapper .search-input input{height:100%;color:var(--grey-7);font-size:1rem;font-weight:400;background-color:transparent;border:0;outline:none;box-shadow:none;padding:0}po-search .search-wrapper .search-close{width:2.25rem;display:none;align-items:center;font-size:1.5rem;color:var(--grey-7);border-radius:50%;cursor:pointer;margin:.0625rem;padding:0,.5rem}po-search .search-wrapper .search-close:hover{color:var(--grey-8);background-color:var(--grey-4)}po-search .search-wrapper.active .search-close{display:flex;justify-content:center;align-items:center}po-search .search-wrapper:focus-within,po-search .search-wrapper:focus-visible{outline:.0625rem solid var(--theme-100)}.po-field-options.search{border-radius:.5rem;overflow:hidden}.po-field-options.search .search-dropdown-results{display:flex;flex-direction:column;width:100%}.po-field-options.search .search-dropdown-results .search-list-wrapper{display:flex;flex-direction:column;max-height:25rem;overflow-y:auto;padding:.5rem;gap:.25rem}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item{display:flex;flex-direction:column;color:var(--grey-8);border:.0625rem solid transparent;border-radius:.25rem;padding:.75rem .5rem .75rem 1rem;overflow:hidden;gap:.25rem;flex-shrink:0;cursor:pointer}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item:hover{background-color:var(--grey-2)}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item:active{background-color:var(--theme-10)}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item:focus-visible{outline:none;border:.0625rem solid var(--grey-8)}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item .first-row{display:flex;justify-content:space-between;align-items:center}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item .first-row .title{font-size:1rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;margin-right:.5rem}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item .first-row .authority{color:var(--grey-7);background:var(--grey-4);font-size:.75rem;padding:.25rem;border-radius:.25rem;flex-shrink:0;max-width:7.5rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.po-field-options.search .search-dropdown-results .search-list-wrapper .dropdown-item .second-row{font-size:.875rem;color:var(--grey-7)}.po-field-options.search .search-dropdown-results .search-list-wrapper .po-list-empty-result{display:flex;flex-direction:column}.po-field-options.search .search-dropdown-results .search-list-wrapper .po-list-empty-result .title{padding:1rem;color:var(--grey-8);font-size:1rem;flex-shrink:0}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return SearchComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet UserAreaComponent = /*#__PURE__*/(() => {\n class UserAreaComponent {\n get subscriptionManagementUrl() {\n return this.appContextService.getContext().subscriptionManagementUrl;\n }\n constructor() {\n this.environmentSelectorComponent = viewChild(EnvironmentSelectorUserAreaComponent);\n this.applicationsMenuComponent = viewChild(ApplicationsMenuUserAreaComponent);\n this.topBarSettings = input.required();\n this.subscriptionUsersPageUrl = '#/identity/users/list?listname=users';\n this.userAreaMenuSettings = {\n userProfile: {\n hide: false,\n claims: []\n },\n subscriptionUsersButton: {\n hide: false,\n claims: []\n },\n subscriptionButton: {\n hide: false,\n claims: []\n },\n changeThemeMenu: {\n hide: false,\n claims: []\n },\n changeLanguageMenu: {\n hide: true,\n claims: []\n },\n supportButton: {\n hide: false,\n claims: []\n },\n chatButton: {\n hide: false,\n claims: []\n },\n helpCenterButton: {\n hide: false,\n claims: []\n },\n shortcutsButton: {\n hide: false,\n claims: []\n },\n aboutButton: {\n hide: false,\n claims: []\n },\n applicationButton: {\n hide: false,\n claims: []\n },\n logoutButton: {\n hide: false,\n claims: []\n },\n hideRoleIfSingleRole: {\n hide: false,\n claims: []\n }\n };\n this.dropDownMenuAnchor = viewChild('dropDownMenuAnchor');\n this.greaterThanXlBreakpoint = signal(false);\n this.roleSelectorOpened = signal(false);\n this.themeSelectorOpened = signal(false);\n this.languageSelectorOpened = signal(false);\n this.hasMoreThanOneRole = computed(() => this.roleData?.length > 1);\n this.languages = signal([]);\n this.hasLanguageMenu = computed(() => this.languages()?.length > 1);\n // User Area Dropdown sections\n this.hasProfileMenu = signal(false);\n this.hasRolesMenu = computed(() => this.currentRole && !(!this.hasMoreThanOneRole() && this.userAreaMenuSettings.hideRoleIfSingleRole.hide) && this.identityService.isEnabled);\n this.hasSubscriptions = computed(() => this.shellOptions()?.defaultEnvironmentSelector.subscriptionsSourceUri?.length > 0 && (this.isAllowed('subscriptionUsersButton') || this.isAllowed('subscriptionButton')));\n this.hasEnvironmentSelector = computed(() => !this.greaterThanXlBreakpoint() && this.environmentSelectorComponent()?.ready?.());\n this.hasApplicationsMenu = computed(() => !this.greaterThanXlBreakpoint() && this.applicationsMenuComponent()?.hasApplications?.());\n this.hasThemeMenu = signal(false);\n this.hasSupportButton = signal(false);\n this.hasChatButton = computed(() => !this.greaterThanXlBreakpoint() && this.zopimService.initialized() && !this.topBarSettings()?.hiddenChatButton && this.isAllowed('chatButton'));\n this.hasResourceCenterButton = computed(() => !this.greaterThanXlBreakpoint() && !this.topBarSettings()?.hiddenResourceCenterButton && Boolean(this.environmentSettings.userEngagement?.userpilot?.applicationId) && Boolean(this.environmentSettings.userEngagement?.userpilot?.resourceCenter));\n this.hasHelpPage = signal(false);\n this.hasAppStore = signal(false);\n this.hasAboutButton = signal(false);\n this.hasLogoutButton = signal(false);\n /** Represents if the User Area Menu has some element */\n this.hasEnabledUserAreaItems = computed(() => this.hasProfileMenu() || this.hasRolesMenu() || this.hasSubscriptions() || this.hasEnvironmentSelector() || this.hasApplicationsMenu() || this.hasThemeMenu() || this.hasLanguageMenu() || this.hasSupportButton() || this.hasChatButton() || this.hasResourceCenterButton() || this.hasHelpPage() || this.hasAppStore() || this.hasAboutButton() || this.hasLogoutButton());\n this.ThemesEnum = ThemesEnum;\n this.OrientationEnum = OrientationEnum;\n this.hideDropDownMenuEvent = new EventEmitter();\n this.hasAlerts$ = new BehaviorSubject(false);\n this.isReady$ = new BehaviorSubject(false);\n this.dropDownMenuChainID = GuidService.createUID();\n this.imageStyle = ImageStyle.Round;\n this.ButtonTypeEnum = ButtonTypeEnum;\n this.ButtonColorEnum = ButtonColorEnum;\n this.environmentSettings = inject(EnvironmentSettings);\n this.deviceService = inject(DeviceService);\n this.themeService = inject(ThemeService);\n this.zopimService = inject(ZopimService);\n this.identityService = inject(IdentityService);\n this.shellOptions = signal(undefined);\n this.appContextService = inject(AppContextService);\n this.modalService = inject(ModalService);\n this.storageService = inject(StorageService);\n this.helpPageService = inject(HelpPageService);\n this.broadcastService = inject(BroadcastService);\n this.i18nService = inject(I18nService);\n this.userSettings = inject(UserSettingsService);\n this.exceptionHandlerService = inject(ExceptionHandlerService);\n this.shellStateService = inject(ShellStateService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.routeHelperService = inject(RouteHelperService);\n this.amsService = inject(AmsService);\n this.roleService = inject(RoleService);\n this.userPilotService = inject(UserPilotService);\n this.settingsService = inject(SettingsService);\n this.destroyRef = inject(DestroyRef);\n this.keyboardNavService = inject(KeyboardNavigationService);\n this.hasAlerts$.next(this.appContextService.hasAlerts());\n }\n /** Handles each time a resize on the window occurs */\n onWindowResize() {\n this.greaterThanXlBreakpoint.set(this.deviceService.greaterThanXlBreakpoint);\n }\n async ngOnInit() {\n this.greaterThanXlBreakpoint.set(this.deviceService.greaterThanXlBreakpoint);\n this.shellOptions.set(await firstValueFrom(this.shellConfigurationService.getShellOptions()));\n this.applicationsExternalUri = this.shellOptions().userAreaMenu.applicationButton?.url;\n await this.getUserAreaMenuSettings();\n if (this.identityService.isEnabled) {\n this.userInfo = this.identityService.getUser();\n }\n this.loadHelpPageItems();\n // PROFILE\n this.hasProfileMenu.set(this.isAllowed('userProfile') && Boolean(this.userInfo));\n // ROLES\n this.roleService.roles$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(userSubscriptionRoles => {\n this.roleData = userSubscriptionRoles;\n this.currentRole = this.roleService.selectedRole$?.value;\n });\n // THEME\n this.hasThemeMenu.set(this.isAllowed('changeThemeMenu'));\n // LANGUAGE\n if (this.isAllowed('changeLanguageMenu')) {\n const cultures = await this.settingsService.getI18nDefaults();\n const userIdsCulture = this.identityService.getUser().idsCulture;\n const userIdsLanguage = cultures.find(culture => culture.name === userIdsCulture) ?? cultures.find(culture => culture.name.slice(0, 2) === userIdsCulture.slice(0, 2));\n if (userIdsLanguage) {\n // user's language is always the first in the list\n this.languages().push(userIdsLanguage);\n const languages = cultures.filter(culture => culture.showInLanguageSelection && culture.name.slice(0, 2) !== userIdsCulture.slice(0, 2)).sort((a, b) => a.name.localeCompare(b.name));\n this.languages().push(...languages);\n }\n }\n // SUPPORT\n this.hasSupportButton.set(this.isAllowed('supportButton'));\n // HELP PAGE\n this.hasHelpPage.set(this.helpPageItems?.length > 0 && this.helpPageItems.some(item => item.canBeMounted()));\n // APP STORE\n this.hasAppStore.set(this.isAllowed('applicationButton') && Boolean(this.applicationsExternalUri));\n // ABOUT\n this.hasAboutButton.set(this.isAllowed('aboutButton'));\n // LOGOUT\n this.hasLogoutButton.set(this.isAllowed('logoutButton') && this.identityService.isEnabled);\n this.isReady$.next(true);\n }\n scrollPerformed(event) {\n // This code sets the top position of the sub-menus regarding the scroll position of the menu\n event.srcElement.querySelector('.sub-menu').style.marginTop = `-${event.srcElement.scrollTop + 12}px`;\n }\n navigateTo(event, url, _blank) {\n if (!this.deviceService.greaterThanMdBreakpoint) {\n this.broadcastService.emit(SHELL_CLOSE_SIDEBAR_STATE);\n }\n event.preventDefault();\n this.hideDropDownMenuEvent.emit();\n if (_blank) {\n window.open(url, '_blank');\n } else {\n this.routeHelperService.navigate(this.amsService.account, this.amsService.subscription, url);\n }\n }\n openSupportRequestModal() {\n this.hideDropDownMenuEvent.emit();\n this.modalService.showModal(SupportRequestComponent, null, 'md', null, null, 'support-request-modal');\n }\n openAboutModal() {\n this.hideDropDownMenuEvent.emit();\n this.modalService.showModal(AboutComponent, null, 'sm', null, null, 'about-modal');\n }\n toggleLiveChat() {\n this.hideDropDownMenuEvent.emit();\n this.zopimService.toggle();\n }\n triggerUserPilot() {\n this.hideDropDownMenuEvent.emit();\n this.userPilotService.trigger(this.environmentSettings.userEngagement.userpilot.resourceCenter);\n }\n toggleThemeMenu(event) {\n event.preventDefault();\n if (this.themeSelectorOpened()) {\n this.closeThemeMenu();\n } else {\n this.openThemeMenu();\n }\n }\n openThemeMenu() {\n this.closeSubMenus();\n this.themeSelectorOpened.set(true);\n }\n closeThemeMenu() {\n this.themeSelectorOpened.set(false);\n }\n toggleRoleMenu(event) {\n event.preventDefault();\n if (this.roleSelectorOpened()) {\n this.closeRoleMenu();\n } else {\n this.openRoleMenu();\n }\n }\n openRoleMenu() {\n this.closeSubMenus();\n this.roleSelectorOpened.set(true);\n }\n closeRoleMenu() {\n this.roleSelectorOpened.set(false);\n }\n toggleLanguageMenu(event) {\n event.preventDefault();\n if (this.languageSelectorOpened()) {\n this.closeLanguageMenu();\n } else {\n this.openLanguageMenu();\n }\n }\n openLanguageMenu() {\n this.closeSubMenus();\n this.languageSelectorOpened.set(true);\n }\n closeLanguageMenu() {\n this.languageSelectorOpened.set(false);\n }\n /**\n * Close Role Selector, Theme Selector and/or Language Selector sub-menus.\n *\n * @param event The event that originated the call. If included, this function will stop its propagation.\n * @param focusOrigin If true, the parent element of the current focused dropdown will be focused when closing.\n */\n closeSubMenus(event, focusOrigin = false) {\n if (event) {\n event.stopPropagation();\n }\n if (focusOrigin) {\n // Focus the parent element on the User Area Menu\n this.keyboardNavService.dropdownParent?.parentElement?.focus();\n }\n this.closeRoleMenu();\n this.closeThemeMenu();\n this.closeLanguageMenu();\n }\n changeTheme(theme) {\n if (theme === this.themeService.theme) {\n return;\n }\n this.hideDropDownMenuEvent.emit();\n this.shellStateService.setLoadingState(true);\n this.themeService.addTheme(theme).then(() => {\n const settingDefinition = {\n settingKey: 'appTheme',\n value: theme\n };\n this.userSettings.setCurrentUserSetting(settingDefinition);\n this.themeSelectorOpened.set(false);\n this.shellStateService.setLoadingState(false);\n });\n }\n async changeLanguage(language) {\n if (language === this.identityService.getUser().culture) {\n return;\n }\n this.languageSelectorOpened.set(false);\n this.hideDropDownMenuEvent.emit();\n this.identityService.setLocalUserCulture(language);\n await this.i18nService.load(true);\n }\n setUserDefaultRole(roleKey) {\n if (roleKey && this.currentRole && roleKey !== this.currentRole.roleKey) {\n this.shellStateService.setLoadingState(true);\n this.hideDropDownMenuEvent.emit();\n this.roleService.setSelectRole(roleKey).then(_ => {\n if (this.amsService.account && this.amsService.subscription) {\n window.location.href = `/${this.amsService.account}/${this.amsService.subscription}/`;\n } else {\n window.location.href = '/';\n }\n }).catch(error => {\n this.shellStateService.setLoadingState(false);\n this.exceptionHandlerService.showError(error);\n });\n }\n }\n openUserProfile() {\n this.hideDropDownMenuEvent.emit();\n window.open(this.userInfo?.userProfileUrl, '_blank');\n }\n signOut() {\n this.hideDropDownMenuEvent.emit();\n this.storageService.sessionRemoveByPrefix('usersetting');\n this.identityService.logout();\n }\n isAllowed(menuOption) {\n if (!this.userAreaMenuSettings[menuOption].hide) {\n const claimsToCheck = this.userAreaMenuSettings[menuOption].claims;\n if (claimsToCheck?.length > 0) {\n return this.appContextService.containsClaims(claimsToCheck.join(','));\n }\n return true;\n }\n return false;\n }\n /**\n * Control what to do when a key is pressed.\n *\n * @param event KeyboardEvent to capture the key pressed.\n */\n onKeydown(event) {\n const activeElement = document.activeElement;\n switch (event.code) {\n case 'ArrowLeft':\n // CLOSE the dropdown when the focus is on the User Area Button and the ArrowLeft/ArrowRight is pressed\n if (activeElement.classList.contains('user-area-button')) {\n this.closeAndFocusUserArea();\n }\n // ROLES selector\n if (activeElement.classList.contains('user-area-roles-selector')) {\n this.openRoleMenu();\n }\n // THEME selector\n if (activeElement.classList.contains('user-area-theme-selector')) {\n this.openThemeMenu();\n }\n // LANGUAGE selector\n if (activeElement.classList.contains('user-area-language-selector')) {\n this.openLanguageMenu();\n }\n break;\n case 'ArrowRight':\n // CLOSE the dropdown when the focus is on the User Area Button and the ArrowLeft/ArrowRight is pressed\n if (activeElement.classList.contains('user-area-button')) {\n this.closeAndFocusUserArea();\n }\n if (activeElement.classList.contains('user-area-roles-option') || activeElement.classList.contains('user-area-theme-option') || activeElement.classList.contains('user-area-language-option')) {\n this.closeSubMenus(event, true);\n }\n break;\n case 'Escape':\n case 'Tab':\n if (activeElement.classList.contains('user-area-roles-option') || activeElement.classList.contains('user-area-theme-option') || activeElement.classList.contains('user-area-language-option')) {\n this.closeSubMenus(event, true);\n } else {\n this.closeSubMenus();\n this.closeAndFocusUserArea();\n }\n break;\n }\n }\n async getUserAreaMenuSettings() {\n try {\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n this.userAreaMenuSettings = {\n ...this.userAreaMenuSettings,\n ...shellOptions.userAreaMenu\n };\n } catch (ex) {\n console.error(ex);\n }\n }\n /** Emits the event to close the dropdown menu and focuses the User Area Button */\n closeAndFocusUserArea() {\n this.hideDropDownMenuEvent.emit();\n this.dropDownMenuAnchor()?.nativeElement.focus();\n }\n loadHelpPageItems() {\n const helpPageItems = [];\n helpPageItems.push({\n title: this.i18nService.get('shell.components.RES_Shell_Header_User_Help_Center'),\n iconClass: 'icon icon-help_circle',\n elementId: 'icon-help_circle',\n canBeMounted: () => this.isAllowed('helpCenterButton'),\n isDisabled: () => false,\n action: () => {\n this.hideDropDownMenuEvent.emit();\n this.helpPageService.openHelpCenterPage(this.userAreaMenuSettings.helpCenterButton);\n }\n });\n if (this.userAreaMenuSettings.shortcutsButton?.url) {\n helpPageItems.push({\n title: this.i18nService.get('shell.components.RES_Shell_Header_User_Help_Shortcuts'),\n iconClass: 'icon icon-shortcut',\n elementId: 'icon-shortcut',\n canBeMounted: () => this.isAllowed('shortcutsButton'),\n isDisabled: () => false,\n action: () => {\n this.hideDropDownMenuEvent.emit();\n this.helpPageService.showShortcutsHelpPage(this.userAreaMenuSettings.shortcutsButton);\n }\n });\n }\n this.helpPageItems = helpPageItems;\n }\n static {\n this.ɵfac = function UserAreaComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || UserAreaComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: UserAreaComponent,\n selectors: [[\"po-user-area\"]],\n viewQuery: function UserAreaComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuerySignal(ctx.environmentSelectorComponent, EnvironmentSelectorUserAreaComponent, 5);\n i0.ɵɵviewQuerySignal(ctx.applicationsMenuComponent, ApplicationsMenuUserAreaComponent, 5);\n i0.ɵɵviewQuerySignal(ctx.dropDownMenuAnchor, _c0, 5);\n }\n if (rf & 2) {\n i0.ɵɵqueryAdvance(3);\n }\n },\n hostBindings: function UserAreaComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"resize\", function UserAreaComponent_resize_HostBindingHandler() {\n return ctx.onWindowResize();\n }, false, i0.ɵɵresolveWindow);\n }\n },\n inputs: {\n topBarSettings: [1, \"topBarSettings\"]\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 6,\n vars: 3,\n consts: [[\"profileImageTemplate\", \"\"], [\"userAreaDropdownTemplate\", \"\"], [\"dropDownMenuAnchor\", \"\"], [\"data-testid\", \"user-area-button\", \"priDropDownMenu\", \"\", \"matTooltipPosition\", \"below\", \"priKeyboardNavigation\", \"\", 1, \"user-area-button\", 3, \"priDropDownMenuCustomClass\", \"customPanelTemplate\", \"priDropDownMenuHide\", \"chainID\", \"matTooltip\", \"navigationOrientation\", \"navigationFocusChildOption\"], [\"data-testid\", \"user-area-button\", 1, \"user-area-button\", \"empty\"], [\"data-testid\", \"user-area-button\", \"priDropDownMenu\", \"\", \"matTooltipPosition\", \"below\", \"priKeyboardNavigation\", \"\", 1, \"user-area-button\", 3, \"dropDownMenuHide\", \"keydown\", \"priDropDownMenuCustomClass\", \"customPanelTemplate\", \"priDropDownMenuHide\", \"chainID\", \"matTooltip\", \"navigationOrientation\", \"navigationFocusChildOption\"], [3, \"ngTemplateOutlet\"], [3, \"imageUrl\", \"defaultText\", \"showDefaultImage\"], [\"data-testid\", \"user-area-menu\", \"priKeyboardNavigationGroup\", \"\", 1, \"user-area-menu\", 3, \"scroll\"], [1, \"user-menu-header\", \"line\"], [\"id\", \"RoleGroup\", \"data-testid\", \"user-area-open-role\", 1, \"user-menu-body\", \"line\", \"user-area-roles\"], [1, \"user-menu-body\", \"line\"], [\"data-testid\", \"user-area-theme-selector\", 1, \"user-menu-body\", \"line\"], [1, \"user-menu-body\", \"extra\", \"line\"], [\"data-testid\", \"user-area-support-request\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-support-request\"], [\"data-testid\", \"user-area-live-chat\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-live-chat\"], [\"data-testid\", \"user-area-resource-center\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-resource-center\"], [\"data-testid\", \"user-area-app-store\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-app-store\"], [\"data-testid\", \"user-area-about\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-about\"], [1, \"user-basic-info\"], [1, \"user-name\"], [\"priTooltipHover\", \"\", 1, \"user-email\"], [\"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"profile-button\", 3, \"click\", \"keydown\", \"options\"], [\"data-testid\", \"user-area-roles-selector\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-roles-selector\", 3, \"navigationFocusChildOption\"], [1, \"small-line\", \"no-hover\"], [\"data-testid\", \"user-area-roles-selector\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-roles-selector\", 3, \"mouseover\", \"mouseout\", \"click\", \"keydown\", \"navigationFocusChildOption\"], [1, \"icon\", \"icon-chevron_left\"], [1, \"text\"], [\"priKeyboardNavigationGroup\", \"\", 1, \"sub-menu\", 3, \"keydown\", \"ngClass\"], [\"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-roles-option\", 3, \"ngClass\"], [\"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-roles-option\", 3, \"click\", \"ngClass\"], [1, \"icon\"], [\"data-testid\", \"user-area-user-subscription\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-user-subscription\"], [\"data-testid\", \"user-area-subscription-management\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-subscription-management\"], [\"data-testid\", \"user-area-user-subscription\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-user-subscription\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-person\"], [\"data-testid\", \"user-area-subscription-management\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-subscription-management\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-layers\"], [\"data-testid\", \"user-area-environment-selector\", 1, \"dropdown-item\", \"user-menu-body\", \"line\", \"user-area-environment-selector\", 3, \"keydown\"], [3, \"itemClick\", \"dropDownMenuShow\", \"dropDownMenuChainID\", \"dropDownMenuChildLevel\"], [\"data-testid\", \"user-area-applications-selector\", 1, \"dropdown-item\", \"user-menu-body\", \"line\", \"user-area-applications-selector\", 3, \"keydown\"], [\"data-testid\", \"user-area-open-theme\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-theme-selector\", 3, \"mouseover\", \"mouseout\", \"click\", \"keydown\", \"navigationFocusChildOption\"], [\"priKeyboardNavigationGroup\", \"\", 1, \"sub-menu\", 3, \"ngClass\"], [\"data-testid\", \"user-area-theme-light\", \"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-theme-option\", 3, \"click\", \"keydown\", \"ngClass\"], [\"data-testid\", \"user-area-theme-dark\", \"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-theme-option\", 3, \"click\", \"keydown\", \"ngClass\"], [\"data-testid\", \"user-area-language-selector\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-language-selector\", 3, \"mouseover\", \"mouseout\", \"click\", \"keydown\", \"navigationFocusChildOption\"], [\"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-language-option\", \"uppercase\", 3, \"ngClass\"], [\"priKeyboardNavigation\", \"\", 1, \"sub-menu-option\", \"dropdown-item\", \"small-line\", \"user-area-language-option\", \"uppercase\", 3, \"click\", \"ngClass\"], [\"data-testid\", \"user-area-support-request\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-support-request\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-mail\"], [\"data-testid\", \"user-area-live-chat\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-live-chat\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-support_agent\"], [\"data-testid\", \"user-area-resource-center\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-resource-center\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-help_center\"], [\"priTooltipHover\", \"\", 1, \"text\"], [\"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-help-page\", 3, \"ngClass\", \"id\"], [\"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-help-page\", 3, \"click\", \"keydown\", \"ngClass\", \"id\"], [1, \"icon\", 3, \"ngClass\"], [\"data-testid\", \"user-area-app-store\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-app-store\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-shopping_bag\"], [\"data-testid\", \"user-area-about\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-about\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-info_circle\"], [\"data-testid\", \"user-area-logout\", \"priKeyboardNavigation\", \"\", 1, \"dropdown-item\", \"small-line\", \"user-area-logout\", 3, \"click\", \"keydown\"], [1, \"icon\", \"icon-logout\"]],\n template: function UserAreaComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, UserAreaComponent_Conditional_0_Template, 2, 1);\n i0.ɵɵpipe(1, \"async\");\n i0.ɵɵtemplate(2, UserAreaComponent_ng_template_2_Template, 1, 5, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor)(4, UserAreaComponent_ng_template_4_Template, 16, 12, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n i0.ɵɵconditional(i0.ɵɵpipeBind1(1, 1, ctx.isReady$) ? 0 : -1);\n }\n },\n dependencies: [AsyncPipe, NgClass, ButtonComponent, ImageComponent, DropDownMenuDirective, EnvironmentSelectorUserAreaComponent, ApplicationsMenuUserAreaComponent, PrimaveraI18nModule, i1.PriI18nPipe, NgTemplateOutlet, KeyboardNavigationGroupDirective, KeyboardNavigationDirective, MatTooltip],\n styles: [\"po-user-area .user-area-button{width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;border-radius:100%;border:.0625rem solid transparent}po-user-area .user-area-button po-image{width:2rem;height:2rem;font-size:1.125rem;font-weight:500;border-radius:100%}po-user-area .user-area-button:not(.empty):focus-visible{outline:none;border-color:var(--grey-8);background-color:var(--theme-20)}po-user-area .user-area-button:not(.empty):focus-visible po-image{outline:.125rem solid var(--grey-1)}po-user-area .user-area-button:not(.empty):hover{cursor:pointer;background-color:var(--theme-10)}po-user-area .user-area-button:not(.empty):hover po-image{outline:.125rem solid var(--grey-1)}po-user-area .user-area-button:not(.empty):active{background-color:var(--theme-20)}po-user-area .user-area-button:not(.empty):active po-image{outline:.125rem solid var(--grey-1)}.po-field-options.top-bar.user-area{width:22.5rem}.po-field-options.top-bar.user-area .user-area-menu{display:flex;flex-direction:column;width:100%}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header{display:flex;padding:1.5rem 1rem 0;align-items:center;cursor:default;flex-direction:column}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header po-image{width:3.5rem;height:3.5rem;font-size:1.5rem}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header .user-basic-info{overflow:hidden;display:flex;flex-direction:column;align-items:center;flex-wrap:nowrap;gap:.5rem;margin-top:.5rem;white-space:nowrap;width:100%}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header .user-basic-info .user-name{font-size:1.25rem;font-weight:500;color:var(--grey-8);text-overflow:ellipsis;overflow:hidden;width:100%;text-align:center}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header .user-basic-info .user-email{font-size:.875rem;color:var(--grey-7);text-overflow:ellipsis;overflow:hidden;width:100%;text-align:center}.po-field-options.top-bar.user-area .user-area-menu .user-menu-header .profile-button{margin:.75rem 0}.po-field-options.top-bar.user-area .user-area-menu .line{border-bottom:.0625rem solid var(--grey-4)}.po-field-options.top-bar.user-area .user-area-menu .line .no-hover:hover{background-color:transparent;cursor:default}.po-field-options.top-bar.user-area .user-area-menu .line:last-child{border-bottom:none}.po-field-options.top-bar.user-area .user-area-menu .small-line{height:2.75rem;color:var(--grey-8);font-weight:400;font-size:1rem;display:flex;align-items:center;padding:0 1rem;gap:.75rem;position:relative;cursor:pointer}.po-field-options.top-bar.user-area .user-area-menu .small-line:hover{background-color:var(--grey-2)}.po-field-options.top-bar.user-area .user-area-menu .small-line .icon{display:flex;align-items:center;justify-content:center;color:var(--grey-7);width:1.5rem;height:1.5rem;font-size:1.25rem;flex-shrink:0}.po-field-options.top-bar.user-area .user-area-menu .small-line .text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%}.po-field-options.top-bar.user-area .user-area-menu .small-line.is-disabled{cursor:default;color:var(--grey-6);background-color:var(--grey-1)}.po-field-options.top-bar.user-area .user-area-menu .small-line.user-area-logout{justify-content:center;height:4.25rem;color:var(--grey-7);gap:.25rem}.po-field-options.top-bar.user-area .user-area-menu .sub-menu{display:none;position:absolute;transform:translate(-101%);background-color:var(--grey-1);border:.0625rem solid var(--grey-4);border-radius:0;box-shadow:0 .0625rem .5rem var(--shadow-3);min-width:6.25rem;max-width:12.5rem;max-height:10rem;left:0;top:-.0625rem;overflow:hidden;overflow-y:auto;z-index:1}.po-field-options.top-bar.user-area .user-area-menu .sub-menu.po-field-options{display:block}.po-field-options.top-bar.user-area .user-area-menu .sub-menu .small-line.selected{background-color:var(--theme-10)}.po-field-options.top-bar.user-area .user-area-menu .sub-menu .small-line.selected:hover{background-color:var(--theme-20)}.po-field-options.top-bar.user-area .user-area-menu .sub-menu .small-line .text{width:100%}.po-field-options.top-bar.user-area .user-area-menu .sub-menu .small-line.uppercase{text-transform:uppercase}.po-field-options.top-bar.user-area .user-area-menu .dropdown-item{border:.0625rem solid transparent}.po-field-options.top-bar.user-area .user-area-menu .dropdown-item:focus-visible{outline:none;border:.0625rem solid var(--grey-8);border-radius:.25rem}.po-field-options.top-bar.scrollable .user-area-menu{overflow-y:auto}.po-field-options.top-bar.scrollable .user-area-menu .small-line .icon.icon-chevron_left{transform:rotate(-90deg)}.po-field-options.top-bar.scrollable .user-area-menu .sub-menu{width:100%;max-width:none;transform:translateY(2.8125rem)}@media only screen and (max-width: 575px){.po-field-options.top-bar.user-area{width:100%;max-width:100%;max-height:100%!important;box-shadow:none;border:none;border-radius:0;top:4rem!important;left:0!important;height:calc(100% - 4rem)}.po-field-options.top-bar.user-area .user-area-menu{overflow-y:auto}.po-field-options.top-bar.user-area .user-area-menu .small-line .icon.icon-chevron_left{transform:rotate(-90deg)}.po-field-options.top-bar.user-area .user-area-menu .sub-menu{width:100%;max-width:none;transform:translateY(2.8125rem)}.po-field-options.top-bar.user-area .user-area-menu,.po-field-options.top-bar.user-area .user-area-menu .extra{height:100%}.po-field-options.top-bar.user-area.showing-alerts{top:6rem;height:calc(100% - 6rem)}}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return UserAreaComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet PriUpgradeComponent = /*#__PURE__*/(() => {\n class PriUpgradeComponent {\n /**\n * Constructs the application\n *\n * @param upgradeApplicationService Service responsible to handle application upgrade\n * @param exceptionHandlerService Service responsible to handle services errors\n * @param i18nService Service responsible to handle language translations\n */\n constructor(upgradeApplicationService, exceptionHandlerService, i18nService) {\n this.upgradeApplicationService = upgradeApplicationService;\n this.exceptionHandlerService = exceptionHandlerService;\n this.i18nService = i18nService;\n /** Event emitted when the upgrade is complete */\n this.upgradeCompleted = new EventEmitter();\n /** The upgrade message status */\n this.message = '';\n /** Property to use enum on HTML */\n this.upgradeStatusEnum = UpgradeStatusEnum;\n /** The type of po-loading-spinner component */\n this.loadingSpinnerType = LoadingSpinnerTypeEnum.Indeterminate;\n /** Check if view is ready to show. */\n this.isReady$ = new BehaviorSubject(false);\n this.currentState = UpgradeStatusEnum.Init;\n this.message = this.i18nService.get('shell.components.RES_Application_Update_Starting');\n }\n /**\n * A lifecycle hook that is called after Angular has initialized all data-bound properties of a directive.\n * Define an ngOnInit() method to handle any additional initialization tasks.\n */\n ngOnInit() {\n this.checkUpgradeStatus();\n this.isReady$.next(true);\n }\n /**\n * Check the status of upgrade\n */\n checkUpgradeStatus() {\n this.upgradeApplicationService.checkApplicationUpgradesStatus().then(data => {\n if (data?.length) {\n const upgrade = data.reverse()[0];\n switch (upgrade.status) {\n case UpgradeStatusEnum.Progress:\n this.message = upgrade.message;\n this.setUpgradeStatus();\n break;\n case UpgradeStatusEnum.Completed:\n this.upgradeComplete();\n break;\n case UpgradeStatusEnum.CompletedWithError:\n this.upgradeCompleteWithError();\n break;\n default:\n this.setUpgradeStatus();\n break;\n }\n }\n }).catch(error => {\n if (error.status) {\n this.exceptionHandlerService.showError(error, false);\n } else {\n console.error(error);\n this.exceptionHandlerService.showError({\n status: 500\n }, false);\n }\n });\n }\n /**\n * Sets up the upgrade status by scheduling a check after a delay.\n */\n setUpgradeStatus() {\n setTimeout(() => {\n this.checkUpgradeStatus();\n }, 3000);\n }\n /**\n * Fire when the upgrade is complete\n */\n upgradeComplete() {\n this.currentState = UpgradeStatusEnum.Completed;\n setTimeout(() => {\n this.upgradeCompleted.emit();\n }, 2500);\n }\n /**\n * Fire when the upgrade is complete with error\n */\n upgradeCompleteWithError() {\n this.currentState = UpgradeStatusEnum.CompletedWithError;\n }\n static {\n this.ɵfac = function PriUpgradeComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || PriUpgradeComponent)(i0.ɵɵdirectiveInject(i1$1.UpgradeApplicationService), i0.ɵɵdirectiveInject(i2$1.ExceptionHandlerService), i0.ɵɵdirectiveInject(i1.I18nService));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: PriUpgradeComponent,\n selectors: [[\"po-upgrade-application\"]],\n outputs: {\n upgradeCompleted: \"upgradeCompleted\"\n },\n decls: 2,\n vars: 3,\n consts: [[1, \"application-upgrade\"], [1, \"application-upgrade-container\"], [1, \"application-upgrade-container-description\"], [1, \"application-upgrade-container-flag\"], [1, \"application-upgrade-container-flag-title\"], [1, \"application-upgrade-container-flag-subtitle\"], [1, \"application-upgrade-container-description-with-flag\"], [\"customSize\", \"0.4rem\", \"customThickness\", \".2rem\", 3, \"type\"], [1, \"application-upgrade-container-description-with-flag-info\", 3, \"innerHtml\"], [\"width\", \"4rem\", \"height\", \"4rem\"], [1, \"application-upgrade-container-description-title\"], [1, \"application-upgrade-container-description-message\"]],\n template: function PriUpgradeComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, PriUpgradeComponent_Conditional_0_Template, 6, 1, \"section\", 0);\n i0.ɵɵpipe(1, \"async\");\n }\n if (rf & 2) {\n i0.ɵɵconditional(i0.ɵɵpipeBind1(1, 1, ctx.isReady$) ? 0 : -1);\n }\n },\n dependencies: [i2$1.LoadingSpinnerComponent, i2$1.CegidLogoSvgComponent, i2$1.ErrorSvgComponent, i2$1.SuccessSvgComponent, i3.AsyncPipe, i1.PriI18nPipe],\n styles: [\"po-upgrade-application{position:fixed;top:0;left:0;width:100%;height:100%}po-upgrade-application .application-upgrade{display:flex;justify-content:center;width:100%;margin-top:16vh}po-upgrade-application .application-upgrade .application-upgrade-container{display:flex;flex-direction:column;align-items:flex-start;width:28.75rem;height:21.25rem;background-color:var(--grey-1);border-radius:2rem;box-shadow:0 .3125rem .5rem var(--shadow-6);padding:2rem 2.5rem;gap:1rem;overflow:hidden}po-upgrade-application .application-upgrade .application-upgrade-container-logo{height:2.5rem}po-upgrade-application .application-upgrade .application-upgrade-container-flag{display:flex;flex-direction:column}po-upgrade-application .application-upgrade .application-upgrade-container-flag-title{font-size:1.25rem;color:var(--grey-8);margin-bottom:1rem;font-weight:700}po-upgrade-application .application-upgrade .application-upgrade-container-flag-subtitle{font-size:.875rem;color:var(--grey-7)}po-upgrade-application .application-upgrade .application-upgrade-container-description-with-flag{display:flex;flex-direction:column;align-items:center;width:100%;margin-top:1.5rem;gap:1rem}po-upgrade-application .application-upgrade .application-upgrade-container-description-with-flag-info{font-size:.875rem;color:var(--grey-7);text-align:center}po-upgrade-application .application-upgrade .application-upgrade-container-description{display:flex;width:100%;height:100%;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:1rem}po-upgrade-application .application-upgrade .application-upgrade-container-description-title{font-size:1.25rem;color:var(--grey-8);font-weight:700;text-align:center}po-upgrade-application .application-upgrade .application-upgrade-container-description-message{color:var(--grey-7);font-size:.875rem;text-align:center}@media only screen and (max-width: 575px){po-upgrade-application .application-upgrade{display:flex;justify-content:center;width:100%;height:100%;margin:0}po-upgrade-application .application-upgrade .application-upgrade-container{width:100%;height:100%;justify-content:center;box-shadow:none;border-radius:0}po-upgrade-application .application-upgrade .application-upgrade-container-description-with-flag{height:100%;justify-content:center;margin:0}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return PriUpgradeComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// export const popoverModule: ModuleWithProviders = PopoverModule.forRoot();\nconst primaveraI18nModule = PrimaveraI18nModule.forRoot();\nconst primaveraServicesModule = PrimaveraServicesModule.forRoot();\nconst componentsModule = ComponentsModule.forRoot();\nlet ShellModule = /*#__PURE__*/(() => {\n class ShellModule {\n static {\n this.ɵfac = function ShellModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ShellModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: ShellModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [ZopimService, ScrollDispatcher, ZendeskConfig, SortByPropertyPipe, IsExternalUriPipe, TreatUriPipe, UriParamsPipe],\n imports: [CommonModule, FormsModule, ReactiveFormsModule, componentsModule, PopoverModule, primaveraI18nModule, RouterModule, MatIconModule, MatTooltipModule, MatTabsModule, ScrollingModule, A11yModule, primaveraServicesModule, SearchComponent, EnvironmentSelectorComponent, EnvironmentSelectorTopbarComponent, EnvironmentSelectorUserAreaComponent, PriNotificationsComponent, UserAreaDropdownButtonComponent, UserAreaComponent, ApplicationsMenuComponent, ApplicationsMenuTopbarComponent, ApplicationsMenuUserAreaComponent, AlertBarComponent]\n });\n }\n }\n return ShellModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet RightPanelComponent = /*#__PURE__*/(() => {\n class RightPanelComponent {\n get config() {\n return this._config;\n }\n set config(value) {\n this._config = value;\n this.changeDetectorRef.detectChanges();\n }\n constructor(rightPanelService, broadcastService, deviceService, elementRef, messagesService, appContextService, changeDetectorRef) {\n this.rightPanelService = rightPanelService;\n this.broadcastService = broadcastService;\n this.deviceService = deviceService;\n this.elementRef = elementRef;\n this.messagesService = messagesService;\n this.appContextService = appContextService;\n this.changeDetectorRef = changeDetectorRef;\n this.panelIsOpened = signal(false);\n this.closeFinish = new EventEmitter();\n this.destroy$ = new Subject();\n }\n clickout(event) {\n if (this.panelIsOpened() && this.config.closeOnOutsideClick && !this.modalIsOpen(event) && this.elementRef.nativeElement && !this.elementRef.nativeElement.contains(event.target) && (this.config.parent && !this.config.parent.nativeElement.contains(event.target) || !this.config.parent)) {\n this.onClose();\n }\n }\n ngOnDestroy() {\n this.destroy$.next();\n this.destroy$.unsubscribe();\n }\n onClose() {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef\n });\n }\n onOpenSettingsClick() {\n this.config.openSettings();\n }\n open() {\n this.hasAlerts = this.appContextService.hasAlerts();\n this.panelIsOpened.set(true);\n if (!this.deviceService.greaterThanMdBreakpoint) {\n this.broadcastService.emit(SHELL_CLOSE_SIDEBAR_STATE);\n }\n this.broadcastService.emit(SHELL_CONTEXT_BAR_ONLY_CLOSE);\n }\n modalIsOpen(event) {\n try {\n return event?.target?.closest('po-modal-content') ? true : false;\n } catch {\n return false;\n }\n }\n static {\n this.ɵfac = function RightPanelComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || RightPanelComponent)(i0.ɵɵdirectiveInject(i1$1.RightPanelService), i0.ɵɵdirectiveInject(i1$1.BroadcastService), i0.ɵɵdirectiveInject(i1$1.DeviceService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i2$1.MessagesService), i0.ɵɵdirectiveInject(i1$1.AppContextService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef));\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: RightPanelComponent,\n selectors: [[\"po-right-panel-component\"]],\n hostBindings: function RightPanelComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"click\", function RightPanelComponent_click_HostBindingHandler($event) {\n return ctx.clickout($event);\n }, false, i0.ɵɵresolveDocument);\n }\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 10,\n vars: 12,\n consts: [[\"data-testid\", \"right-panel-container\", 1, \"right-panel-container\", 3, \"ngClass\"], [1, \"header-container\"], [1, \"title\"], [1, \"header-buttons-container\"], [1, \"header-icon\", \"header-settings-icon\", \"icon-settings\"], [\"data-testid\", \"right-panel-header-close-icon\", 1, \"header-icon\", \"header-close-icon\", \"icon-close\", 3, \"click\"], [1, \"body-container\"], [1, \"header-icon\", \"header-settings-icon\", \"icon-settings\", 3, \"click\"], [3, \"ngTemplateOutlet\"]],\n template: function RightPanelComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"div\", 1)(2, \"div\", 2);\n i0.ɵɵtext(3);\n i0.ɵɵpipe(4, \"async\");\n i0.ɵɵpipe(5, \"priI18n\");\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(6, \"div\", 3);\n i0.ɵɵtemplate(7, RightPanelComponent_Conditional_7_Template, 1, 0, \"div\", 4);\n i0.ɵɵelementStart(8, \"div\", 5);\n i0.ɵɵlistener(\"click\", function RightPanelComponent_Template_div_click_8_listener() {\n return ctx.onClose();\n });\n i0.ɵɵelementEnd()()();\n i0.ɵɵtemplate(9, RightPanelComponent_Conditional_9_Template, 2, 1, \"div\", 6);\n i0.ɵɵelementEnd();\n }\n if (rf & 2) {\n i0.ɵɵclassMap((ctx.config == null ? null : ctx.config.class) || \"\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(10, _c22, ctx.panelIsOpened()));\n i0.ɵɵadvance(3);\n i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 8, i0.ɵɵpipeBind1(4, 6, ctx.rightPanelService.title$)));\n i0.ɵɵadvance(4);\n i0.ɵɵconditional((ctx.config == null ? null : ctx.config.openSettings) ? 7 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional((ctx.config == null ? null : ctx.config.body) ? 9 : -1);\n }\n },\n dependencies: [CommonModule, i3.NgClass, i3.NgTemplateOutlet, i3.AsyncPipe, PrimaveraI18nModule, i1.PriI18nPipe],\n styles: [\"po-right-panel-component{display:flex}po-right-panel-component .right-panel-container{display:flex;flex-direction:column;position:absolute;top:0;bottom:0;right:-320px;width:320px;background-color:var(--grey-1);z-index:1043;overflow:hidden;transition:all .35s;box-shadow:none}po-right-panel-component .right-panel-container.open{right:0;box-shadow:-.25rem 0 .9375rem var(--shadow-4)}po-right-panel-component .right-panel-container.under-modal{z-index:1040}po-right-panel-component .right-panel-container .header-container{position:relative;display:flex;flex-shrink:0;align-items:center;width:100%;padding:1.5rem 1.25rem}po-right-panel-component .right-panel-container .header-container .title{width:100%;color:var(--grey-8);font-weight:700;font-size:18px;margin-right:15px;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}po-right-panel-component .right-panel-container .header-container .header-buttons-container{display:flex}po-right-panel-component .right-panel-container .header-container .header-buttons-container .header-icon{color:var(--grey-8);margin-right:15px;cursor:pointer}po-right-panel-component .right-panel-container .header-container .header-buttons-container .header-icon:hover{color:var(--grey-7)}po-right-panel-component .right-panel-container .header-container .header-buttons-container .header-icon.header-close-icon{font-size:18px;margin-right:0}po-right-panel-component .right-panel-container .body-container{display:flex;width:100%;height:100%;overflow:hidden}@media only screen and (max-width: 767px){po-right-panel-component .right-panel-container{right:-100%;width:100%}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return RightPanelComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MenuKeyboardNavigationDirective = /*#__PURE__*/(() => {\n class MenuKeyboardNavigationDirective {\n constructor() {\n this.sidebarItemClick = output();\n this.focusLimitReached = output();\n this.menuItems = model([]);\n this.disabled = model(false);\n this.sidebarItemType = signal(SidebarItemType.Menu);\n this.elementRef = inject(ElementRef);\n /** Class to identify the element that can get focus */\n this.focusableItemClass = 'focusable-item';\n }\n /** What happens when the Arrow Down key is pressed */\n handleArrowDownPress(event) {\n event.preventDefault();\n const {\n activeElementAnchor,\n activeMenuItem\n } = this.getActiveElementMetadata();\n let nextElement;\n // If the active element is an expanded menu item...\n if (activeElementAnchor.classList.contains('active') && activeMenuItem.menuItems?.length > 0) {\n // The element to focus would be its first child\n nextElement = document.getElementById(this.menuElementIdPrefix + activeMenuItem.menuItems[0].id);\n }\n // If the active element is not an expandable menu item...\n else {\n // The element to focus would be its next sibling element\n nextElement = activeElementAnchor.nextElementSibling;\n }\n // If the next element is not found, try go to its parent's next sibling element\n if (!nextElement) {\n nextElement = this.findSiblingElement(activeMenuItem.id);\n }\n this.focusElement(nextElement);\n if (!nextElement) {\n // If the next element is not found, it means the navigation has reached the bottom end of the menu.\n // Emit an event to notify the parent component to navigate to the next element.\n this.focusLimitReached.emit({\n limitType: SidebarNavigationDirection.Next,\n currentItemType: this.sidebarItemType()\n });\n }\n }\n /** What happens when the Arrow Up key is pressed */\n handleArrowUpPress(event) {\n event.preventDefault();\n const {\n activeElementAnchor\n } = this.getActiveElementMetadata();\n let previousElement = activeElementAnchor.previousElementSibling;\n // If the previous element was not found...\n if (!previousElement) {\n // The element to focus would be its parent element\n previousElement = this.findSiblingElement(activeElementAnchor.id.replace(this.menuElementIdPrefix, ''), SidebarNavigationDirection.Previous);\n } else {\n // The previous element is found, but if it's an expanded menu item, go to its last child\n previousElement = this.findLastInnerElement(previousElement);\n }\n this.focusElement(previousElement);\n if (!previousElement) {\n // If the previous element is not found, it means the navigation has reached the top end of the menu.\n // Emit an event to notify the parent component to navigate to the previous element.\n this.focusLimitReached.emit({\n limitType: SidebarNavigationDirection.Previous,\n currentItemType: this.sidebarItemType()\n });\n }\n }\n /** When pressing the Right or Left Arrow keys on an expandable `MenuItem`, expand or collapse it accordingly */\n handleArrowsTogglePress(event) {\n event.preventDefault();\n const {\n activeElementAnchor,\n activeMenuItem\n } = this.getActiveElementMetadata();\n const isActive = activeElementAnchor.classList.contains('active');\n const hasChildMenuItems = activeMenuItem.menuItems?.length > 0;\n switch (event.key) {\n case 'ArrowRight':\n // If the active element has child menu items and it's not expanded, expand it when pressing the Right Arrow key\n if (hasChildMenuItems && !isActive) {\n this.menuItemClicked(new MouseEvent('click'), activeMenuItem);\n return;\n }\n break;\n case 'ArrowLeft':\n {\n const isActivatable = activeElementAnchor.classList.contains('activatable');\n const hasActivatableParent = activeElementAnchor.parentElement.parentElement.classList.contains('activatable');\n // If the element has no expandable parent, is expandable but not expanded, do nothing\n if (isActivatable && !hasActivatableParent && !isActive) {\n return;\n }\n // If the active element has child menu items and it's expanded, collapse it when pressing the Left Arrow key\n if (hasChildMenuItems && isActive) {\n this.menuItemClicked(new MouseEvent('click'), activeMenuItem);\n return;\n }\n // If the active element is a child menu item, go to its parent menu item and collapse it\n const menuChildrenElement = activeElementAnchor.parentElement.parentElement;\n const focusableCollapsableElement = menuChildrenElement?.getElementsByClassName(this.focusableItemClass).item(0);\n const parentAnchorMetadata = this.getActiveElementMetadata(focusableCollapsableElement);\n this.menuItemClicked(new MouseEvent('click'), parentAnchorMetadata.activeMenuItem);\n this.focusElement(parentAnchorMetadata.activeElementAnchor);\n break;\n }\n }\n }\n /** Sets the focus on the `MenuComponent` as a `SidebarItem`. */\n focusSidebarItem(navigationDirection) {\n if (!this.disabled()) {\n const focusableChild = this.elementRef.nativeElement.getElementsByClassName(this.focusableItemClass).item(0);\n focusableChild?.focus();\n }\n }\n /**\n * Recursively finds a menu item by its ID.\n *\n * @param id The ID of the menu item to find.\n * @param menuItems The menu items to search in.\n * @returns The found menu item or `null` if it wasn't found.\n */\n findMenuItemById(id, menuItems) {\n for (const menuItem of menuItems) {\n if (id === menuItem.id) {\n return menuItem;\n } else if (menuItem.menuItems?.length > 0) {\n const selectedMenu = this.findMenuItemById(id, menuItem.menuItems);\n if (selectedMenu) {\n return selectedMenu;\n }\n }\n }\n return null; // The menu was not found!\n }\n /**\n * Focuses a menu item's HTML element.\n *\n * @param elementReference The HTML element to use as reference.\n */\n focusElement(elementReference) {\n if (elementReference?.classList?.contains(this.menuItemClass) && elementReference.id?.startsWith(this.menuElementIdPrefix)) {\n const focusableChild = elementReference.getElementsByClassName(this.focusableItemClass).item(0);\n focusableChild?.focus();\n }\n }\n /**\n * Find the sibling `HTMLElement` of a menu item.\n *\n * @param menuItemId The menu item ID for which the next sibling must be found.\n * @param direction Whether to search for the previous or next sibling.\n * @returns The sibling `HTMLElement` or `null` if it wasn't found.\n */\n findSiblingElement(menuItemId, direction = SidebarNavigationDirection.Next) {\n let element;\n const path = this.getMenuItemPathIds(menuItemId, false);\n if (path.length > 0) {\n const parentElementId = path.pop();\n if (parentElementId) {\n // Get the parent element\n element = document.getElementById(this.menuElementIdPrefix + parentElementId);\n // Get the parent's next/previous sibling element\n if (direction === SidebarNavigationDirection.Next) {\n element = element?.nextElementSibling;\n }\n if (!element) {\n return this.findSiblingElement(parentElementId, direction);\n }\n }\n }\n return element;\n }\n /**\n * Gets the current active element and its corresponding `MenuItem`.\n *\n * @returns the current active element and its corresponding `MenuItem`.\n */\n getActiveElementMetadata(activeElement = document.activeElement) {\n // The focusable item is the child, but to get the previous/next sibling menu we need to use the parent as reference\n const activeElementAnchor = activeElement.parentElement;\n const activeMenuItem = this.findMenuItemById(activeElementAnchor.id.replace(this.menuElementIdPrefix, ''), this.menuItems());\n return {\n activeElementAnchor,\n activeMenuItem\n };\n }\n /**\n * If the element is expanded, return its last child. Otherwise, return the element itself.\n *\n * @param element The element to check if it's expanded.\n * @returns The last child of the expanded element or the element itself, if not expandable.\n */\n findLastInnerElement(element) {\n if (element.classList.contains('active')) {\n // If the previous element is an expanded menu item, go to its last child\n let previousMenuItem = this.findMenuItemById(element.id.replace(this.menuElementIdPrefix, ''), this.menuItems());\n if (previousMenuItem.menuItems?.length > 0) {\n // Get the last menu item of the expanded menu item\n previousMenuItem = previousMenuItem.menuItems[previousMenuItem.menuItems.length - 1];\n element = document.getElementById(this.menuElementIdPrefix + previousMenuItem.id);\n // Recursively check if the last child is expanded, returning its last child if so\n return this.findLastInnerElement(element);\n }\n }\n return element;\n }\n static {\n this.ɵfac = function MenuKeyboardNavigationDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || MenuKeyboardNavigationDirective)();\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: MenuKeyboardNavigationDirective,\n selectors: [[\"\", \"priMenuKeyboardNavigation\", \"\"]],\n hostBindings: function MenuKeyboardNavigationDirective_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"keydown.ArrowDown\", function MenuKeyboardNavigationDirective_keydown_ArrowDown_HostBindingHandler($event) {\n return ctx.handleArrowDownPress($event);\n })(\"keydown.ArrowUp\", function MenuKeyboardNavigationDirective_keydown_ArrowUp_HostBindingHandler($event) {\n return ctx.handleArrowUpPress($event);\n })(\"keydown.ArrowRight\", function MenuKeyboardNavigationDirective_keydown_ArrowRight_HostBindingHandler($event) {\n return ctx.handleArrowsTogglePress($event);\n })(\"keydown.ArrowLeft\", function MenuKeyboardNavigationDirective_keydown_ArrowLeft_HostBindingHandler($event) {\n return ctx.handleArrowsTogglePress($event);\n });\n }\n },\n inputs: {\n menuItems: [1, \"menuItems\"],\n disabled: [1, \"disabled\"]\n },\n outputs: {\n sidebarItemClick: \"sidebarItemClick\",\n focusLimitReached: \"focusLimitReached\",\n menuItems: \"menuItemsChange\",\n disabled: \"disabledChange\"\n },\n standalone: true\n });\n }\n }\n return MenuKeyboardNavigationDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet MenuComponent = /*#__PURE__*/(() => {\n class MenuComponent extends MenuKeyboardNavigationDirective {\n constructor() {\n super(...arguments);\n /** Identifies whether the sidebar is minimized */\n this.minimized = input(false);\n /** Each menu item must have this class. */\n this.menuItemClass = 'menu-item';\n /** All rendered menu items' IDs will be prefixed with this string. */\n this.menuElementIdPrefix = `${this.menuItemClass}-`;\n /** The active menu items IDs. This is used to know which menus are expanded/marked as active. */\n this.activeMenuItemsIds = signal([]);\n /**\n * Indicates whether the menu was accessed from a sidebar item.\n * It help us to know if the menu can be expanded automatically or not.\n */\n this.accessedFromSidebarItem = computed(() => this.sidebarService.accessOrigin() === RouteAccessOrigin.SidebarItem);\n /** The current selected sidebar item ID. */\n this.selectedItemId = computed(() => this.sidebarService.selectedItemId());\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this.amsService = inject(AmsService);\n this.broadcastService = inject(BroadcastService);\n this.router = inject(Router);\n this.destroyRef = inject(DestroyRef);\n this.sidebarMenuItemsProvider = inject(SIDEBAR_MENU_ITEMS_PROVIDER_TOKEN);\n this.routeHelperService = inject(RouteHelperService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.isExternalUriPipe = inject(IsExternalUriPipe);\n this.activeItemType$ = toObservable(this.sidebarService.activeItemType);\n }\n async ngOnInit() {\n // Get AMS account and subscription\n this.account = this.amsService.account;\n this.subscription = this.amsService.subscription;\n await this.readMenuUris();\n await this.loadMenuItems();\n // Subscribe to the sidebar's selected item changes.\n // If not the menu, collapse and deactivate all menu items.\n this.activeItemType$.pipe(filter(id => id !== this.sidebarItemType() && this.activeMenuItemsIds().length !== 0), takeUntilDestroyed(this.destroyRef)).subscribe(id => {\n this.activeMenuItemsIds.set([]);\n });\n // On the first load, get the current URL and activate the selected menu\n this.routeHelperService.getUrl(this.account, this.subscription, false).pipe(take(1)).subscribe(currentUrl => this.activateSelectedMenu(currentUrl));\n // Subscribe to next route changes\n this.router.events.pipe(\n // Use switchMap to cancel the previous navigation event and only keep the last one\n switchMap(event => {\n if (event instanceof NavigationEnd) {\n this.activateSelectedMenu(event.url);\n return of(null); // Returning a null observable to continue the stream\n }\n return of(event); // Returning the event if it's not an instance of NavigationEnd\n }), takeUntilDestroyed(this.destroyRef)).subscribe();\n // Subscribe the 'refreshMenu' event\n this._refreshMenuSubscription = this.broadcastService.subscribe('refreshMenu', () => this.loadMenuItems());\n }\n ngOnDestroy() {\n if (this._refreshMenuSubscription) {\n this._refreshMenuSubscription();\n this._refreshMenuSubscription = null;\n }\n if (this._searchSubscription) {\n this._searchSubscription();\n this._searchSubscription = null;\n }\n }\n /**\n * What happens when a menu is clicked.\n *\n * @param menuItem The clicked `MenuItem`.\n */\n async menuItemClicked(event, menuItem) {\n this.sidebarService.activeItemType.set(SidebarItemType.Menu);\n // If it's a parent menu item...\n if (menuItem.menuItems?.length > 0) {\n if (!this.activeMenuItemsIds().includes(menuItem.id)) {\n this.activateMenuItemPath(menuItem.id);\n } else {\n this.activeMenuItemsIds.update(currentValue => currentValue.filter(id => id.toLowerCase() !== menuItem.id?.toLowerCase()));\n }\n }\n // If the menu item is selectable...\n else {\n this.sidebarService.accessOrigin.set(RouteAccessOrigin.Menu);\n this.sidebarService.selectedItemId.set(menuItem.id);\n this.sidebarItemClick.emit();\n }\n }\n /**\n * Find the IDs of the menu items that are part of the path of a menu item.\n *\n * @param menuItemId The menu item ID for which the path must be found.\n * @param includeSelf Whether to include the menu item itself in the path.\n * @returns An array with the IDs of the menu items that are part of the path.\n */\n getMenuItemPathIds(menuItemId, includeSelf = true) {\n const path = [];\n this.menuItems()?.forEach(searchingIn => {\n const menuItemPath = this.findMenuItemPathById(searchingIn, menuItemId);\n if (menuItemPath) {\n // Add to the path\n menuItemPath.map(toActivate => {\n if (!path.includes(toActivate.id)) {\n path.push(toActivate.id);\n }\n });\n }\n });\n if (!includeSelf) {\n path.pop();\n }\n return path;\n }\n /** Gets the shell configuration */\n async readMenuUris() {\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n const {\n uri,\n customUri\n } = shellOptions.sidebar.menu;\n this.menuUri = uri;\n this.customMenuUri = customUri;\n }\n /**\n * Gets the menu items from the provider.\n */\n async loadMenuItems() {\n const menuItems = await this.sidebarMenuItemsProvider.getMenuItems(this.menuUri, this.customMenuUri);\n this.mapperMenuItems(menuItems);\n this.menuItems.set(menuItems ?? []);\n }\n /**\n * Recursively replace uri parameter.\n *\n * @param menuItems The menu items to filter.\n */\n mapperMenuItems(menuItems = []) {\n menuItems.map(async item => {\n if (item.uri && !this.isExternalUriPipe.transform(item.uri) && !item.uri?.startsWith('/')) {\n item.uri = `/${item.uri}`;\n }\n if (item.menuItems) {\n this.mapperMenuItems(item.menuItems);\n }\n });\n }\n /**\n * Finds and activates the selected menu item, by its URI.\n *\n * @param uri The URI of the menu item to activate.\n */\n activateSelectedMenu(uri) {\n uri = this.routeHelperService.removeAccountAndSubscription(uri, this.account, this.subscription);\n uri = this.routeHelperService.removeQueryParameters(uri);\n if (this.currentUri?.toLowerCase() !== uri?.toLowerCase()) {\n this.currentUri = uri;\n const entryMenu = this.findMenuItemByUri(uri, this.menuItems());\n if (!entryMenu?.id) {\n return;\n }\n // Indicates whether the menu was accessed by navigation event or menu click\n const accessedByNavigationOrMenu = this.sidebarService.accessOrigin() === RouteAccessOrigin.Navigation || this.sidebarService.accessOrigin() === RouteAccessOrigin.Menu;\n // When the menu is accessed by navigation event or clicking the menu,\n // sets the active item type in sidebar service to apply the defined behaviors\n if (accessedByNavigationOrMenu) {\n this.sidebarService.activeItemType.set(this.sidebarItemType());\n }\n // When the menu is accessed from a sidebar item, the menu cannot be expanded\n if (!this.accessedFromSidebarItem()) {\n this.activateMenuItemPath(entryMenu?.id);\n this.sidebarService.selectedItemId.set(entryMenu.id);\n }\n }\n }\n /**\n * Recursively finds a menu item by its URI.\n *\n * @param uri The URI of the menu item to find.\n * @param menuItems The menu items to search in.\n * @returns The found menu item or `null` if it wasn't found.\n */\n findMenuItemByUri(uri, menuItems) {\n for (const menuItem of menuItems) {\n const menuUri = menuItem.uri ? this.routeHelperService.removeQueryParameters(menuItem.uri) : undefined;\n if (menuUri?.toLocaleLowerCase() === uri?.toLocaleLowerCase()) {\n return menuItem;\n } else if (menuItem.menuItems?.length > 0) {\n const selectedMenu = this.findMenuItemByUri(uri, menuItem.menuItems);\n if (selectedMenu) {\n return selectedMenu;\n }\n }\n }\n return null; // The menu was not found!\n }\n /**\n * Activate the entire menu item's hierarchy.\n *\n * @param menuItemId - The menu item ID for which the path must be activated.\n */\n activateMenuItemPath(menuItemId) {\n this.activeMenuItemsIds.set(this.getMenuItemPathIds(menuItemId));\n }\n /**\n * Find a menu item's full path, using its ID.\n *\n * @param menuItem - The `MenuItem` inside we're searching for.\n * @param id - The ID we're searching for inside the `MenuItem`.\n * @param parents - Tracker menu item, so we don't lose track of the parents as we go through them.\n * @returns An array of the found menu items or null if no menu item was found.\n */\n findMenuItemPathById(menuItem, id, parents = []) {\n if (menuItem.id?.toLowerCase() === id?.toLowerCase()) {\n return [...parents, menuItem];\n }\n if (menuItem.menuItems) {\n for (const child of menuItem.menuItems) {\n const found = this.findMenuItemPathById(child, id, [...parents, menuItem]);\n if (found) {\n return found;\n }\n }\n }\n return null;\n }\n static {\n this.ɵfac = /* @__PURE__ */(() => {\n let ɵMenuComponent_BaseFactory;\n return function MenuComponent_Factory(__ngFactoryType__) {\n return (ɵMenuComponent_BaseFactory || (ɵMenuComponent_BaseFactory = i0.ɵɵgetInheritedFactory(MenuComponent)))(__ngFactoryType__ || MenuComponent);\n };\n })();\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: MenuComponent,\n selectors: [[\"po-menu\"]],\n inputs: {\n minimized: [1, \"minimized\"]\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([providePrimaveraLocalization(), IsExternalUriPipe]), i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature],\n decls: 6,\n vars: 0,\n consts: [[\"menuItemTmpl\", \"\"], [\"menuItemContentTemplate\", \"\"], [\"menuItemContainer\", \"\"], [4, \"ngTemplateOutlet\", \"ngTemplateOutletContext\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", 3, \"class\", \"activatable\", \"invalid\", \"minimized\", \"id\", \"active\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", \"target\", \"_blank\", 3, \"class\", \"minimized\", \"id\", \"href\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", 3, \"class\", \"minimized\", \"selected\", \"id\", \"routerLink\", \"queryParams\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", 3, \"id\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", \"target\", \"_blank\", 3, \"id\", \"href\"], [\"tabindex\", \"-1\", \"data-generic-test-id\", \"menu-item-anchor\", 3, \"id\", \"routerLink\", \"queryParams\"], [\"data-testid\", \"menu-item-container\", \"tabindex\", \"0\", 3, \"click\", \"keydown.enter\", \"keydown.space\"], [1, \"content\"], [1, \"menu-icon\", \"icon\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"right\", 1, \"menu-caption\"], [1, \"icon\", \"menu-expander\"], [\"data-testid\", \"menu-children\", 1, \"menu-children\", 3, \"id\"], [1, \"icon-chevron_right\"]],\n template: function MenuComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵrepeaterCreate(0, MenuComponent_For_1_Template, 1, 4, \"ng-container\", null, _forTrack0);\n i0.ɵɵtemplate(2, MenuComponent_ng_template_2_Template, 4, 3, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor)(4, MenuComponent_ng_template_4_Template, 12, 24, \"ng-template\", null, 1, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n i0.ɵɵrepeater(ctx.menuItems());\n }\n },\n dependencies: [CommonModule, i3.NgTemplateOutlet, PrimaveraI18nModule, i1.PriI18nPipe, RouterModule, i2.RouterLink, IsExternalUriPipe, TreatUriPipe, UriParamsPipe, TooltipHoverDirective, IncludesPipe],\n styles: [\"po-menu{width:100%;display:flex;flex-direction:column;gap:.5rem;-webkit-user-select:none;user-select:none;padding:.0625rem .0625rem .5rem}po-menu .menu-item{width:100%;display:flex;flex-direction:column;color:var(--grey-7);border-radius:.25rem}po-menu .menu-item:focus-visible{outline:none}po-menu .menu-item .icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:1.5rem;height:1.5rem;font-size:1.5rem}po-menu .menu-item.activatable .selectable-item .menu-caption{font-size:.875rem}po-menu .menu-item .selectable-item{width:100%;height:2.5rem;display:flex;gap:.5rem;align-items:center;overflow:hidden;border-radius:.25rem;padding:.5rem}po-menu .menu-item .selectable-item:hover:not(.selected){cursor:pointer;background-color:var(--grey-2)}po-menu .menu-item .selectable-item:focus-visible{outline:.0625rem solid var(--theme-highlight)}po-menu .menu-item .selectable-item .content{width:100%;display:flex;align-items:center;flex-wrap:nowrap;gap:.5rem;overflow:hidden;padding-right:.25rem}po-menu .menu-item .selectable-item .menu-caption{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}po-menu .menu-item .activatable-item{width:100%;display:flex;overflow:hidden;padding:.5rem;border-radius:.25rem;height:2.5rem}po-menu .menu-item .activatable-item:hover:not(.selected){cursor:pointer;background-color:var(--grey-2)}po-menu .menu-item .activatable-item:focus-visible{outline:.0625rem solid var(--theme-highlight)}po-menu .menu-item .activatable-item .content{width:100%;display:flex;align-items:center;flex-wrap:nowrap;gap:.5rem;overflow:hidden;padding-right:.25rem}po-menu .menu-item .activatable-item .content .menu-caption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-menu .menu-item .activatable-item .menu-expander{height:100%;opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-menu .menu-item .menu-children{width:100%;display:flex;flex-direction:column;gap:.25rem;padding:.25rem 0 .25rem .5rem;opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-menu .menu-item .menu-children .menu-item .activatable-item{font-size:.875rem}po-menu .menu-item.active{color:var(--theme-100)}po-menu .menu-item.active>.activatable-item .menu-expander i{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}po-menu .menu-item.selected{background-color:var(--theme-10);color:var(--theme-100)}po-menu .menu-item.selected:hover{background-color:var(--theme-20)}po-menu .menu-item.minimized .activatable-item .content .menu-caption,po-menu .menu-item.minimized .selectable-item .content .menu-caption{width:0;opacity:0;overflow:hidden}po-menu .menu-item.minimized .activatable-item .menu-expander,po-menu .menu-item.minimized .selectable-item .menu-expander{width:0;opacity:0;overflow:hidden}po-menu .menu-item.minimized>.menu-children{width:0;opacity:0;overflow:hidden}po-menu .menu-item.invalid,po-menu .menu-item.disabled,po-menu .menu-item:disabled{pointer-events:none;color:var(--grey-6)}po-menu>.menu-item>.menu-children{padding-left:2rem}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return MenuComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SidebarItemComponent = /*#__PURE__*/(() => {\n class SidebarItemComponent {\n constructor() {\n this.viewAllButtonElement = viewChild('viewAllButton', {\n read: ElementRef\n });\n this.focusableAnchor = viewChild('sidebarItemContainer', {\n read: ElementRef\n });\n this.childElements = viewChildren('childElement', {\n read: ElementRef\n });\n this.sidebarItemClick = output();\n this.focusLimitReached = output();\n /** The item caption */\n this.caption = model('');\n /** The item uri */\n this.uri = model(undefined);\n /** The item icon */\n this.icon = model('');\n /** Identifies whether the sidebar is minimized */\n this.minimized = input(false);\n /** The item children */\n this.children = model([]);\n /** Identifies whether the item is disabled */\n this.disabled = model(false);\n /** Identifies whether the item children is grouped */\n this.hasGroups = model(false);\n /** Identifies whether the item is example (should has children) */\n this.isExpansible = model(false);\n /* The sidebar item type */\n this.sidebarItemType = model(null);\n /** Identifies whether the item is active */\n this.active = computed(() => this.sidebarService?.activeItemType() !== null && this.sidebarService?.activeItemType() === this.sidebarItemType());\n /** Identifies whether there is at least one valid child */\n this.hasValidChildren = computed(() => this.validChildren().length > 0);\n /** The item ID */\n this.id = GuidService.createUID();\n this.elementRef = inject(ElementRef);\n /** List of children with a valid ID */\n this.validChildren = computed(() => this.children().map(child => {\n child.id = child.id || GuidService.createUID();\n return child;\n }));\n /** Identifies whether children can be displayed */\n this.canRenderChildren = computed(() => this.active() && this.hasValidChildren() && !this.disabled());\n /** List of visible children */\n this.visibleChildren = computed(() => this.validChildren().slice(0, this.visibleChildrenCount()));\n /** Represents the maximum child items that can be displayed */\n this.visibleChildrenCount = computed(() => this.showMaxVisibleChildren() ? this.maxVisibleChildren : this.initialVisibleChildren);\n /**\n * List of children grouped by their group name in a format that can be easily used in the template.\n */\n this.groupedChildren = computed(() => {\n if (this.hasGroups()) {\n const distinctChildrenGroups = [...new Set(this.visibleChildren().map(child => child.group))];\n return distinctChildrenGroups.map(group => ({\n group,\n children: this.visibleChildren().filter(child => child.group === group)\n }));\n }\n return [{\n group: null,\n children: this.visibleChildren()\n }];\n });\n /** Identifies whether the view all container can be displayed */\n this.canRenderViewAllContainer = computed(() => !this.showMaxVisibleChildren() && this.validChildren().length > this.initialVisibleChildren);\n /** The current selected sidebar item ID. */\n this.selectedItemId = computed(() => this.sidebarService.selectedItemId());\n this.LoadingSpinnerTypeEnum = LoadingSpinnerTypeEnum;\n this.LoadingSpinnerSizeEnum = LoadingSpinnerSizeEnum;\n /** Defines how many child items should be rendered */\n this.initialVisibleChildren = 5 /* SidebarItemConfigEnum.InitialVisibleChildren */;\n /** The maximum child items that can be rendered. This value was set arbitrarily */\n this.maxVisibleChildren = 15 /* SidebarItemConfigEnum.MaxVisibleChildren */;\n /** Identifies when to display all child items */\n this.showMaxVisibleChildren = signal(false);\n this.SidebarItemType = SidebarItemType;\n this.ButtonColorEnum = ButtonColorEnum;\n this.ButtonTypeEnum = ButtonTypeEnum;\n this.FieldSizeEnum = FieldsSizeEnum;\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n }\n handleClick(event) {\n event.preventDefault();\n // When the sidebar has children (is expandable), the click event should not be triggered\n // because this output will be triggered by the child item click event\n if (this.isExpansible()) {\n return;\n }\n this.sidebarItemClick.emit();\n }\n /** What happens when the Arrow Down key is pressed */\n handleArrowDownPress(event) {\n event.preventDefault();\n const activeElement = document.activeElement;\n const selectableItemFocused = this.childElements()?.some(element => element.nativeElement.id === activeElement.id);\n if (selectableItemFocused) {\n // Focus the next sibling or emit an event to notify the parent component to navigate to the next component.\n const nextElement = this.getSiblingElement(activeElement, SidebarNavigationDirection.Next);\n if (nextElement) {\n nextElement.focus();\n } else {\n this.focusLimitReached.emit({\n limitType: SidebarNavigationDirection.Next,\n currentItemType: this.sidebarItemType(),\n skipChildren: true\n });\n }\n return;\n }\n const hasNoChildToFocus = !this.hasValidChildren() || !this.active();\n const viewAllButtonFocused = this.canRenderViewAllContainer() && activeElement.parentElement.id === this.viewAllButtonElement()?.nativeElement?.id;\n if (hasNoChildToFocus || viewAllButtonFocused) {\n // Emit an event to notify the parent component to navigate to the next component.\n this.focusLimitReached.emit({\n limitType: SidebarNavigationDirection.Next,\n currentItemType: this.sidebarItemType(),\n skipChildren: viewAllButtonFocused\n });\n return;\n }\n this.focusFirstChild(activeElement);\n return;\n }\n /** What happens when the Arrow Up key is pressed */\n handleArrowUpPress(event) {\n event.preventDefault();\n const activeElement = document.activeElement;\n const selectableItemFocused = this.childElements()?.some(element => element.nativeElement.id === activeElement.id);\n const viewAllButtonFocused = this.canRenderViewAllContainer() && activeElement.parentElement.id === this.viewAllButtonElement()?.nativeElement.id;\n if (selectableItemFocused || viewAllButtonFocused) {\n const previousElement = this.getSiblingElement(activeElement, SidebarNavigationDirection.Previous);\n if (previousElement) {\n previousElement.focus();\n return;\n }\n // Focus the anchor\n this.focusableAnchor().nativeElement?.focus();\n return;\n }\n const activatableItemFocused = this.focusableAnchor()?.nativeElement.id === activeElement.id;\n const hasNoChildToFocus = !this.hasValidChildren();\n if (hasNoChildToFocus || activatableItemFocused) {\n // Emit an event to notify the parent component to navigate to the previous component.\n this.focusLimitReached.emit({\n limitType: SidebarNavigationDirection.Previous,\n currentItemType: this.sidebarItemType()\n });\n return;\n }\n this.focusFirstChild(activeElement);\n return;\n }\n /** When pressing the Right or Left Arrow keys on an expandable `SidebarItem`, expand or collapse it accordingly */\n handleArrowsTogglePress(event) {\n this.toggleExpandableState(event);\n }\n /** Sets the focus on the `SidebarItem`. */\n focusSidebarItem(direction) {\n if (!this.disabled()) {\n const focusableChild = this.focusableAnchor()?.nativeElement;\n switch (direction) {\n case SidebarNavigationDirection.Next:\n focusableChild?.focus();\n break;\n case SidebarNavigationDirection.Previous:\n {\n const lastChild = this.getLastChildElement();\n if (lastChild) {\n lastChild?.focus();\n } else {\n focusableChild?.focus();\n }\n break;\n }\n }\n }\n }\n onAnchorClick() {\n if (this.hasValidChildren() && !this.active()) {\n this.showMaxVisibleChildren.set(false);\n }\n this.sidebarService.activeItemType.update(currentValue => !this.isExpansible() || currentValue !== this.sidebarItemType() ? this.sidebarItemType() : null);\n if (!this.isExpansible()) {\n this.sidebarService.accessOrigin.set(RouteAccessOrigin.SidebarItem);\n this.sidebarService.selectedItemId.set(this.id);\n }\n }\n onChildItemClick(event, child) {\n event.preventDefault();\n event.stopPropagation();\n this.sidebarService.accessOrigin.set(RouteAccessOrigin.SidebarItem);\n this.sidebarService.selectedItemId.set(child.id);\n child.onClick?.();\n this.sidebarItemClick.emit();\n }\n /**\n * Performs the element click event when the user presses the `Enter` or `Space` key during the view all button focus.\n *\n * @param elementRef The `po-button` element reference.\n */\n handleViewAllButtonKeydown(elementRef) {\n const selectableItems = this.childElements();\n // Focus the first item rendered before the view all button\n const selectableItem = selectableItems[selectableItems.length - 1].nativeElement;\n elementRef.nativeElement.click();\n selectableItem?.focus();\n }\n /**\n * Sets focus on the first child of the currently active element.\n *\n * @param activeElement The currently active element.\n */\n focusFirstChild(activeElement) {\n const firstSelectableItemElement = this.childElements()?.[0]?.nativeElement;\n firstSelectableItemElement?.focus();\n }\n /**\n * Returns the last child element sibling to the active element.\n */\n getLastChildElement() {\n let lastChildElement;\n if (this.canRenderViewAllContainer()) {\n lastChildElement = this.viewAllButtonElement()?.nativeElement?.firstElementChild;\n } else {\n lastChildElement = this.childElements()?.[this.childElements().length - 1]?.nativeElement;\n }\n return lastChildElement;\n }\n /**\n * Gets the sibling element to focus based on the current element and the direction.\n *\n * @param currentElement The current element.\n * @param direction The direction to search for.\n * @returns The sibling element to focus, or undefined if not found.\n */\n getSiblingElement(currentElement, direction = SidebarNavigationDirection.Next) {\n let elementToFocus;\n const indexOnChildren = this.validChildren().findIndex(child => child.id === currentElement.id);\n // If no child is focused, focus the first or last child based on the direction\n if (indexOnChildren !== -1) {\n let childToFocus;\n if (direction === SidebarNavigationDirection.Next) {\n childToFocus = this.validChildren()[indexOnChildren + 1];\n } else if (direction === SidebarNavigationDirection.Previous) {\n childToFocus = this.validChildren()[indexOnChildren - 1];\n }\n elementToFocus = document.getElementById(childToFocus?.id);\n }\n // Check if the view all button is rendered to move the focus based on the direction\n if (this.canRenderViewAllContainer()) {\n if (direction === SidebarNavigationDirection.Next) {\n const lastVisibleChildFocused = indexOnChildren === this.visibleChildren().length - 1;\n if (lastVisibleChildFocused) {\n elementToFocus = this.viewAllButtonElement()?.nativeElement?.firstElementChild;\n }\n }\n if (direction === SidebarNavigationDirection.Previous) {\n const viewAllButtonFocused = currentElement.parentElement.id === this.viewAllButtonElement()?.nativeElement?.id;\n if (viewAllButtonFocused) {\n const childToFocus = this.validChildren()[this.visibleChildren().length - 1];\n elementToFocus = document.getElementById(childToFocus?.id);\n }\n }\n }\n return elementToFocus;\n }\n /**\n * Toggles the expandable state of the sidebar item that has valid children.\n * If the item is not expanded, it will be expanded. If it is already expanded, it will be collapsed.\n *\n * @param event The keyboard event that triggered the method.\n */\n toggleExpandableState(event) {\n // If it's an expandable sidebar item...\n if (this.hasValidChildren()) {\n // If it is not yet expanded, expand it\n if (['ArrowRight', 'Space', 'Enter'].includes(event.key) && !this.active()) {\n this.sidebarService.activeItemType.set(this.sidebarItemType());\n }\n // Or if it is already expanded, collapse it\n else if (['ArrowLeft', 'Space', 'Enter'].includes(event.key) && this.active()) {\n const focusedElement = document.activeElement;\n const isFocusedOnChild = this.childElements()?.some(element => element.nativeElement.id === focusedElement.id);\n this.sidebarService.activeItemType.set(null);\n if (isFocusedOnChild) {\n this.focusableAnchor().nativeElement.focus();\n }\n }\n }\n }\n static {\n this.ɵfac = function SidebarItemComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarItemComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SidebarItemComponent,\n selectors: [[\"po-sidebar-item\"]],\n viewQuery: function SidebarItemComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuerySignal(ctx.viewAllButtonElement, _c31, 5, ElementRef);\n i0.ɵɵviewQuerySignal(ctx.focusableAnchor, _c32, 5, ElementRef);\n i0.ɵɵviewQuerySignal(ctx.childElements, _c33, 5, ElementRef);\n }\n if (rf & 2) {\n i0.ɵɵqueryAdvance(3);\n }\n },\n hostBindings: function SidebarItemComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"click\", function SidebarItemComponent_click_HostBindingHandler($event) {\n return ctx.handleClick($event);\n })(\"keydown.ArrowDown\", function SidebarItemComponent_keydown_ArrowDown_HostBindingHandler($event) {\n return ctx.handleArrowDownPress($event);\n })(\"keydown.ArrowUp\", function SidebarItemComponent_keydown_ArrowUp_HostBindingHandler($event) {\n return ctx.handleArrowUpPress($event);\n })(\"keydown.ArrowRight\", function SidebarItemComponent_keydown_ArrowRight_HostBindingHandler($event) {\n return ctx.handleArrowsTogglePress($event);\n })(\"keydown.ArrowLeft\", function SidebarItemComponent_keydown_ArrowLeft_HostBindingHandler($event) {\n return ctx.handleArrowsTogglePress($event);\n });\n }\n },\n inputs: {\n caption: [1, \"caption\"],\n uri: [1, \"uri\"],\n icon: [1, \"icon\"],\n minimized: [1, \"minimized\"],\n children: [1, \"children\"],\n disabled: [1, \"disabled\"],\n hasGroups: [1, \"hasGroups\"],\n isExpansible: [1, \"isExpansible\"],\n sidebarItemType: [1, \"sidebarItemType\"]\n },\n outputs: {\n sidebarItemClick: \"sidebarItemClick\",\n focusLimitReached: \"focusLimitReached\",\n caption: \"captionChange\",\n uri: \"uriChange\",\n icon: \"iconChange\",\n children: \"childrenChange\",\n disabled: \"disabledChange\",\n hasGroups: \"hasGroupsChange\",\n isExpansible: \"isExpansibleChange\",\n sidebarItemType: \"sidebarItemTypeChange\"\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([providePrimaveraLocalization()]), i0.ɵɵStandaloneFeature],\n decls: 4,\n vars: 1,\n consts: [[\"sidebarItemContainerTemplate\", \"\"], [\"sidebarItemContainer\", \"\"], [\"childTemplate\", \"\"], [\"childElement\", \"\"], [\"routerLinkElement\", \"\"], [\"viewAllButton\", \"\"], [\"tabindex\", \"-1\", 1, \"sidebar-item\", \"activatable\", 3, \"disabled\", \"active\", \"minimized\"], [\"tabindex\", \"-1\", 1, \"sidebar-item\", \"selectable\", 3, \"minimized\", \"selected\", \"routerLink\", \"queryParams\"], [\"tabindex\", \"-1\", 1, \"sidebar-item\", \"activatable\", 3, \"disabled\"], [3, \"ngTemplateOutlet\", \"ngTemplateOutletContext\"], [\"tabindex\", \"-1\", 1, \"sidebar-item\", \"selectable\", 3, \"routerLink\", \"queryParams\"], [\"data-testid\", \"sidebar-item-content\", \"role\", \"button\", 1, \"focusable-item\", 3, \"click\", \"keydown.enter\", \"keydown.space\", \"id\"], [1, \"anchor-item-content\"], [1, \"anchor-item-icon\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"right\", 1, \"anchor-item-caption\"], [\"tabindex\", \"-1\", 1, \"selectable-children\"], [\"tabindex\", \"-1\", 1, \"selectable-item-view-all\", 3, \"hidden\"], [\"tabindex\", \"0\", \"data-testid\", \"selectable-item\", 1, \"selectable-item\", 3, \"mouseenter\", \"mouseleave\", \"focus\", \"blur\", \"keydown.enter\", \"keydown.space\", \"id\"], [\"tabindex\", \"-1\", \"data-testid\", \"selectable-item-router-link\", 1, \"selectable-item-router-link\", 3, \"click\", \"routerLink\", \"queryParams\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"right\", 1, \"selectable-item-caption\"], [\"priTooltipHover\", \"\", \"matTooltipPosition\", \"right\", 1, \"selectable-item-secondary-text\"], [1, \"selectable-item-loading-container\"], [\"data-testid\", \"selectable-item-remove\", 1, \"icon-close\", \"selectable-item-remove\", 3, \"matTooltip\"], [3, \"type\", \"size\"], [\"data-testid\", \"selectable-item-remove\", 1, \"icon-close\", \"selectable-item-remove\", 3, \"click\", \"matTooltip\"], [\"tabindex\", \"-1\", 1, \"selectable-item-group\"], [\"tabindex\", \"-1\", 1, \"selectable-item-view-all\"], [\"tabindex\", \"-1\", \"data-testid\", \"selectable-item-view-all-button\", \"id\", \"view-all-button\", 1, \"selectable-item-view-all-button\", 3, \"click\", \"keydown.space\", \"keydown.enter\", \"options\"]],\n template: function SidebarItemComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, SidebarItemComponent_Conditional_0_Template, 2, 10, \"button\", 6)(1, SidebarItemComponent_Conditional_1_Template, 4, 15, \"a\", 7)(2, SidebarItemComponent_ng_template_2_Template, 9, 17, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n if (rf & 2) {\n i0.ɵɵconditional(ctx.isExpansible() ? 0 : 1);\n }\n },\n dependencies: [PrimaveraI18nModule, i1.PriI18nPipe, RouterModule, i2.RouterLink, NgTemplateOutlet, TooltipHoverDirective, ButtonComponent, TreatUriPipe, UriParamsPipe, LoadingSpinnerComponent, MatTooltip, UpperCasePipe],\n styles: [\"po-sidebar-item button.sidebar-item{background-color:transparent;border:none;padding:unset}po-sidebar-item button.sidebar-item:focus{outline:none}po-sidebar-item button.sidebar-item:hover{cursor:unset}po-sidebar-item .sidebar-item{width:100%;display:flex;flex-direction:column;color:var(--grey-7);border-radius:.25rem}po-sidebar-item .sidebar-item:focus-visible{outline:none}po-sidebar-item .sidebar-item:disabled{pointer-events:none;color:var(--grey-6)}po-sidebar-item .sidebar-item.minimized .sidebar-item-caption,po-sidebar-item .sidebar-item.minimized .selectable-item-group,po-sidebar-item .sidebar-item.minimized .selectable-item-caption,po-sidebar-item .sidebar-item.minimized .selectable-item-remove,po-sidebar-item .sidebar-item.minimized .selectable-item-loading-container,po-sidebar-item .sidebar-item.minimized .selectable-item-secondary-text,po-sidebar-item .sidebar-item.minimized .selectable-item-view-all-button{width:0;opacity:0;overflow:hidden}po-sidebar-item .sidebar-item.minimized .selectable-item-view-all{height:1.75rem}po-sidebar-item .sidebar-item.minimized .selectable-item-group{padding-left:unset!important;padding-right:unset!important}po-sidebar-item .sidebar-item.selected{background-color:var(--theme-10);color:var(--theme-100)}po-sidebar-item .sidebar-item.selected:hover{background-color:var(--theme-20)}po-sidebar-item .sidebar-item.active{color:var(--theme-100)}po-sidebar-item .sidebar-item.activatable .selectable-item .selectable-item-caption{font-size:.875rem}po-sidebar-item .sidebar-item .activatable-item{width:100%;display:flex;overflow:hidden;padding:.5rem;border-radius:.25rem;height:2.5rem}po-sidebar-item .sidebar-item .activatable-item:hover:not(.selected){cursor:pointer;background-color:var(--grey-2)}po-sidebar-item .sidebar-item .activatable-item:focus-visible{outline:.0625rem solid var(--theme-highlight)}po-sidebar-item .sidebar-item .activatable-item .anchor-item-content{width:100%;display:flex;align-items:center;flex-wrap:nowrap;gap:.5rem;overflow:hidden;padding-right:.25rem}po-sidebar-item .sidebar-item .activatable-item .anchor-item-content .anchor-item-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:1.5rem;height:1.5rem;font-size:1.5rem}po-sidebar-item .sidebar-item .activatable-item .anchor-item-content .anchor-item-caption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-sidebar-item .sidebar-item .selectable-item{width:100%;height:2.5rem;display:flex;gap:.5rem;align-items:center;overflow:hidden;border-radius:.25rem;padding:.5rem}po-sidebar-item .sidebar-item .selectable-item:hover:not(.selected){cursor:pointer;background-color:var(--grey-2)}po-sidebar-item .sidebar-item .selectable-item:focus-visible{outline:.0625rem solid var(--theme-highlight)}po-sidebar-item .sidebar-item .selectable-item.removable{min-height:2.25rem}po-sidebar-item .sidebar-item .selectable-item.selected{background-color:var(--theme-10);color:var(--theme-100)}po-sidebar-item .sidebar-item .selectable-item.selected:hover{background-color:var(--theme-20)}po-sidebar-item .sidebar-item .selectable-item.has-secondary-text{height:3rem}po-sidebar-item .sidebar-item .selectable-item .anchor-item-content{width:100%;display:flex;align-items:center;flex-wrap:nowrap;gap:.5rem;overflow:hidden;padding-right:.25rem}po-sidebar-item .sidebar-item .selectable-item .anchor-item-content .anchor-item-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:1.5rem;height:1.5rem;font-size:1.5rem}po-sidebar-item .sidebar-item .selectable-item .anchor-item-content .anchor-item-caption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-sidebar-item .sidebar-item .selectable-item .selectable-item-router-link{min-width:calc(100% - 2rem);padding-top:.5rem;padding-bottom:.5rem;display:flex;flex-direction:column;gap:.25rem;text-align:left}po-sidebar-item .sidebar-item .selectable-item .selectable-item-router-link.disabled{pointer-events:none;cursor:unset;color:var(--grey-6)}po-sidebar-item .sidebar-item .selectable-item .selectable-item-router-link:not(.selected){color:var(--grey-7)}po-sidebar-item .sidebar-item .selectable-item .selectable-item-caption{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}po-sidebar-item .sidebar-item .selectable-item .selectable-item-secondary-text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.75rem}po-sidebar-item .sidebar-item .selectable-item .selectable-item-remove{flex-shrink:0;font-size:1.5rem;color:var(--grey-7)}po-sidebar-item .sidebar-item .selectable-item .selectable-item-remove:hover{color:var(--grey-8);background-color:var(--grey-3);border-radius:50%;cursor:pointer}po-sidebar-item .sidebar-item .selectable-item .selectable-item-remove:active{background-color:var(--grey-4);border-radius:50%}po-sidebar-item .sidebar-item .selectable-item .selectable-item-loading-container{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}po-sidebar-item .sidebar-item .selectable-children{width:100%;display:flex;flex-direction:column;gap:.25rem;opacity:1;transition:width .2s 0ms,opacity .2s 0ms;padding:.5rem 0 .5rem 2.0625rem}po-sidebar-item .sidebar-item .selectable-children .selectable-item-group{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;opacity:1;transition:width .2s 0ms,opacity .2s 0ms;text-align:left;color:var(--grey-6);font-size:.625rem;font-weight:700;padding-left:.5rem;padding-right:.5rem}po-sidebar-item .sidebar-item .selectable-item-view-all{width:100%;display:flex;justify-content:center;align-items:center}po-sidebar-item .sidebar-item .selectable-item-view-all-button{opacity:1;transition:width .2s 0ms,opacity .2s 0ms}po-sidebar-item .sidebar-item .selectable-item-view-all.hidden{display:block!important;opacity:0;visibility:hidden}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return SidebarItemComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** The directive that implements the \"default-actions\" as a `po-sidebar-item`. */\nlet DefaultActionsDirective = /*#__PURE__*/(() => {\n class DefaultActionsDirective {\n constructor() {\n this.disabled = model(false);\n /** Controls whether the component is focused or not. */\n this.focused = model(false);\n this.sidebarItemClick = output();\n this.hidden = signal(true);\n this.hidden$ = toObservable(this.hidden);\n this.sidebarItemType = SidebarItemType.DefaultAction;\n this._sidebarItemComponent = inject(SidebarItemComponent);\n this._sidebarDefaultActionsProvider = inject(SIDEBAR_DEFAULT_ACTIONS_PROVIDER_TOKEN);\n this._sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this._shellConfigurationService = inject(ShellConfigurationService);\n this._amsService = inject(AmsService);\n this._broadcastService = inject(BroadcastService);\n this._router = inject(Router);\n this._destroyRef = inject(DestroyRef);\n this._routeHelperService = inject(RouteHelperService);\n this._productInitialization = inject(ProductInitialization);\n }\n get hiddenClass() {\n return this.hidden();\n }\n async ngOnInit() {\n // Get AMS account and subscription\n this._account = this._amsService.account;\n this._subscription = this._amsService.subscription;\n await this.readMenuUri();\n this.loadDefaultActions();\n // Subscribe the 'refreshMenu' event\n this._unsubscribeRefreshMenu = this._broadcastService.subscribe('refreshMenu', () => {\n this.treatNavigationRedirects();\n this.loadDefaultActions();\n });\n }\n ngOnDestroy() {\n if (this._unsubscribeRefreshMenu) {\n this._unsubscribeRefreshMenu();\n this._unsubscribeRefreshMenu = null;\n }\n }\n /** Gets the shell configuration */\n async readMenuUri() {\n const shellOptions$ = this._shellConfigurationService.getShellOptions();\n const shellOptions = await firstValueFrom(shellOptions$);\n this._menuUri = shellOptions.sidebar.menu.uri;\n }\n treatNavigationRedirects() {\n // Navigation\n this._router.events.pipe(takeUntilDestroyed(this._destroyRef)).subscribe(event => {\n if (event instanceof NavigationEnd) {\n if (this.isStartPage(event.url)) {\n this._sidebarService.activeItemType.set(this.sidebarItemType);\n this._sidebarService.selectedItemId.set(this._sidebarItemComponent.id);\n this._sidebarService.navigateToHomePage();\n }\n // if has initializationUri, navigate to Initialization Popup\n else if (this._productInitialization.initializationUri && !this.targetIncludesSource(event.url, this._productInitialization.initializationUri)) {\n this._productInitialization.navigateToInitializationPopup();\n }\n // If the current URI does not match the currently selected default action, deselect the top item\n else if (this._sidebarItemComponent.active()) {\n event.url = this._routeHelperService.removeAccountAndSubscription(event.url, this._account, this._subscription);\n event.url = this._routeHelperService.removeQueryParameters(event.url);\n let defaultUri = this._routeHelperService.removeAccountAndSubscription(this._defaultAction?.contextUri, this._account, this._subscription);\n defaultUri = this._routeHelperService.removeQueryParameters(defaultUri);\n if (event.url?.toLowerCase() !== defaultUri?.toLowerCase()) {\n this._sidebarService.activeItemType.set(null);\n }\n }\n }\n });\n }\n /**\n * Returns true if the `target` URL includes the `source` URL.\n *\n * @param target The target URL.\n * @param source The source URL.\n * @return Wether the target URL includes the source URL.\n */\n targetIncludesSource(target, source) {\n if (source.includes('#')) {\n source = source.split('#')[1];\n }\n if (source[0] === '/') {\n source = source.substring(1, source.length);\n }\n return target.includes(source);\n }\n /** Get the default actions */\n loadDefaultActions() {\n // Find if the current page is the start page\n this._routeHelperService.getUrl(this._account, this._subscription, false).pipe(\n // Use switchMap to cancel the previous get event and only keep the last one\n switchMap(url => from(this._sidebarDefaultActionsProvider.getDefaultActions(this._menuUri)).pipe(map(defaultActions => ({\n url,\n defaultActions\n })))), take(1)).subscribe(({\n url,\n defaultActions\n }) => {\n this._defaultAction = defaultActions?.length > 0 ? defaultActions[0] : null;\n if (this._defaultAction) {\n this.hidden.set(Boolean(this._defaultAction.hidden));\n } else {\n this.hidden.set(true);\n }\n this.setComponentMetadata();\n if (this.isStartPage(url)) {\n this._sidebarService.activeItemType.set(this.sidebarItemType);\n this._sidebarService.selectedItemId.set(this._sidebarItemComponent.id);\n this._sidebarService.navigateToHomePage();\n } else if (url?.toLowerCase() === this._defaultAction?.contextUri?.toLowerCase()) {\n this._sidebarService.activeItemType.set(this.sidebarItemType);\n this._sidebarService.selectedItemId.set(this._sidebarItemComponent.id);\n }\n });\n }\n /** Prepares the `sidebar-item` component, setting its icon and caption */\n async setComponentMetadata() {\n this._sidebarItemComponent.sidebarItemType.set(this.sidebarItemType);\n this._sidebarItemComponent.icon.set(this._defaultAction?.icon || 'icon-home');\n this._sidebarItemComponent.caption.set(this._defaultAction?.caption || 'shell.components.RES_Sidebar_TopItems_Homepage');\n this._sidebarItemComponent.uri.set(this._defaultAction?.contextUri);\n }\n /**\n * Checks if an URI is the start page.\n * An URI is the start page if it is empty, '/', or '/start'.\n *\n * @param uri The URI to check if it is the start page.\n * @returns Wether the URI is the start page or not.\n */\n isStartPage(uri) {\n return uri === '' || uri === '/' || uri === '/start';\n }\n static {\n this.ɵfac = function DefaultActionsDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DefaultActionsDirective)();\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: DefaultActionsDirective,\n selectors: [[\"po-sidebar-item\", \"priDefaultActions\", \"\"]],\n hostVars: 2,\n hostBindings: function DefaultActionsDirective_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵclassProp(\"hidden\", ctx.hiddenClass);\n }\n },\n inputs: {\n disabled: [1, \"disabled\"],\n focused: [1, \"focused\"]\n },\n outputs: {\n disabled: \"disabledChange\",\n focused: \"focusedChange\",\n sidebarItemClick: \"sidebarItemClick\"\n },\n standalone: true\n });\n }\n }\n return DefaultActionsDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet DraftsDirective = /*#__PURE__*/(() => {\n class DraftsDirective {\n constructor() {\n this.disabled = model(false);\n this.draftItems = signal([]);\n this.draftItems$ = toObservable(this.draftItems);\n this.sidebarItemType = SidebarItemType.Drafts;\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this.draftsService = inject(SIDEBAR_DRAFTS_PROVIDER_TOKEN);\n this.sidebarItemComponent = inject(SidebarItemComponent);\n this.destroyRef = inject(DestroyRef);\n this.broadcastService = inject(BroadcastService);\n }\n ngOnInit() {\n this.listenDraftItemsChanges();\n this.setComponentMetadata();\n this.init();\n }\n ngOnDestroy() {\n if (this.unsubscribeRefreshData) {\n this.unsubscribeRefreshData();\n this.unsubscribeRefreshData = null;\n }\n }\n setComponentMetadata() {\n this.sidebarItemComponent.sidebarItemType.set(this.sidebarItemType);\n this.sidebarItemComponent.isExpansible.set(true);\n this.sidebarItemComponent.icon.set('icon-drafts');\n this.sidebarItemComponent.caption.set('shell.components.RES_Sidebar_TopItems_Drafts');\n this.sidebarItemComponent.hasGroups.set(true);\n }\n async init() {\n this.getDraftItems();\n this.listenRefreshDraftItems();\n }\n async getDraftItems() {\n try {\n const items = await this.draftsService.getDrafts();\n this.draftItems.set(items);\n } catch (ex) {\n console.error(ex);\n }\n }\n listenDraftItemsChanges() {\n this.draftItems$.pipe(skip(1), takeUntilDestroyed(this.destroyRef)).subscribe(items => this.setSidebarItems(items));\n }\n setSidebarItems(items) {\n if (items.length <= 0) {\n this.sidebarService.activeItemType.set(null);\n this.sidebarItemComponent.disabled.set(true);\n return;\n }\n const children = items.map(item => ({\n id: item.documentId,\n caption: item.title,\n secondaryText: item.description,\n removable: true,\n uri: item.url,\n group: item.timestamp,\n focused: signal(false),\n hovered: signal(false),\n removing: signal(false),\n onRemove: () => this.onItemRemove(item.documentId)\n }));\n this.sidebarItemComponent.disabled.set(false);\n this.sidebarItemComponent.children.set(children);\n }\n /**\n * Updates the `removing` state of a draft item\n *\n * @param id The draft item ID\n * @param state The state to set\n */\n setDraftRemovingState(id, state) {\n const child = this.sidebarItemComponent.children().find(child => child.id === id);\n if (!child) {\n return;\n }\n child.removing.set(state);\n }\n /** Removes a draft item */\n async onItemRemove(id) {\n this.setDraftRemovingState(id, true);\n const draftItems = await this.draftsService.deleteDraft(id);\n this.setDraftRemovingState(id, false);\n this.draftItems.set(draftItems);\n }\n listenRefreshDraftItems() {\n this.unsubscribeRefreshData = this.broadcastService.subscribe('refreshDrafts', () => this.getDraftItems());\n }\n static {\n this.ɵfac = function DraftsDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DraftsDirective)();\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: DraftsDirective,\n selectors: [[\"po-sidebar-item\", \"priDrafts\", \"\"]],\n inputs: {\n disabled: [1, \"disabled\"]\n },\n outputs: {\n disabled: \"disabledChange\"\n },\n standalone: true\n });\n }\n }\n return DraftsDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet NavigationHistoryDirective = /*#__PURE__*/(() => {\n class NavigationHistoryDirective {\n constructor() {\n this.disabled = model(false);\n this.sidebarItemType = SidebarItemType.NavigationHistory;\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this.sidebarItemComponent = inject(SidebarItemComponent);\n this.navigationHistoryProvider = inject(SIDEBAR_NAVIGATION_HISTORY_PROVIDER_TOKEN);\n this.datesUtil = inject(DatesUtil);\n this.destroyRef = inject(DestroyRef);\n }\n ngOnInit() {\n this.setComponentMetadata();\n this.listenNavigationHistoryItemsChanges();\n }\n setComponentMetadata() {\n this.sidebarItemComponent.sidebarItemType.set(this.sidebarItemType);\n this.sidebarItemComponent.isExpansible.set(true);\n this.sidebarItemComponent.icon.set('icon-schedule');\n this.sidebarItemComponent.caption.set('shell.components.RES_Sidebar_TopItems_History');\n this.sidebarItemComponent.hasGroups.set(true);\n }\n listenNavigationHistoryItemsChanges() {\n this.navigationHistoryProvider.history$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(items => this.setSidebarItems(items));\n }\n setSidebarItems(items) {\n if (items.length <= 0) {\n this.sidebarService.activeItemType.set(null);\n this.sidebarItemComponent.disabled.set(true);\n return;\n }\n const children = items.map(({\n id,\n title,\n uri,\n recordedDate\n }) => {\n const child = {\n id,\n caption: title,\n uri,\n group: this.datesUtil.getElapsedTimeCaption(new Date(recordedDate)),\n focused: signal(false),\n hovered: signal(false)\n };\n return child;\n });\n this.sidebarItemComponent.disabled.set(false);\n this.sidebarItemComponent.children.set(children);\n }\n static {\n this.ɵfac = function NavigationHistoryDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NavigationHistoryDirective)();\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: NavigationHistoryDirective,\n selectors: [[\"po-sidebar-item\", \"priNavigationHistory\", \"\"]],\n inputs: {\n disabled: [1, \"disabled\"]\n },\n outputs: {\n disabled: \"disabledChange\"\n },\n standalone: true\n });\n }\n }\n return NavigationHistoryDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** The directive that implements the \"quick-actions\" as a `po-sidebar-item`. */\nlet QuickActionsDirective = /*#__PURE__*/(() => {\n class QuickActionsDirective {\n constructor() {\n this.disabled = model(false);\n this.sidebarItemClick = output();\n this.hidden = computed(() => !this.sidebarQuickActionsProvider.hasItems());\n this.hidden$ = toObservable(this.hidden);\n this.sidebarItemType = SidebarItemType.QuickActions;\n this.sidebarItemComponent = inject(SidebarItemComponent);\n this.sidebarQuickActionsProvider = inject(SIDEBAR_QUICK_ACTIONS_PROVIDER_TOKEN);\n }\n get hiddenClass() {\n return this.hidden();\n }\n ngOnInit() {\n this.setQuickActionsMetadata();\n }\n /** Prepares the `sidebar-item` setting the icon, caption and children */\n async setQuickActionsMetadata() {\n this.sidebarItemComponent.sidebarItemType.set(this.sidebarItemType);\n this.sidebarItemComponent.icon.set('icon-lightning');\n this.sidebarItemComponent.caption.set('shell.components.RES_Sidebar_TopItems_QuickActions');\n this.sidebarItemComponent.isExpansible.set(true);\n const quickActions = await this.getQuickActions();\n const children = quickActions?.map(({\n id,\n caption,\n uri\n }) => ({\n id,\n caption,\n uri,\n removable: false\n }));\n this.sidebarItemComponent.children.set(children || []);\n }\n /** Gets the list of available quick actions */\n async getQuickActions() {\n return await this.sidebarQuickActionsProvider.getQuickActions();\n }\n static {\n this.ɵfac = function QuickActionsDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || QuickActionsDirective)();\n };\n }\n static {\n this.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: QuickActionsDirective,\n selectors: [[\"po-sidebar-item\", \"priQuickActions\", \"\"]],\n hostVars: 2,\n hostBindings: function QuickActionsDirective_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵclassProp(\"hidden\", ctx.hiddenClass);\n }\n },\n inputs: {\n disabled: [1, \"disabled\"]\n },\n outputs: {\n disabled: \"disabledChange\",\n sidebarItemClick: \"sidebarItemClick\"\n },\n standalone: true\n });\n }\n }\n return QuickActionsDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SidebarComponent = /*#__PURE__*/(() => {\n class SidebarComponent {\n get navigableItems() {\n return this.sidebarItems.toArray().filter(item => !item.elementRef?.nativeElement?.classList.contains('hidden') && !item.disabled());\n }\n constructor() {\n this.sidebarIsCollapsed = input(false);\n this.sidebarItemClick = output();\n /**\n * Identifies if the sidebar is hovered.\n */\n this.sidebarIsHovered = signal(false);\n /**\n * Identifies if the sidebar is focused by the keyboard navigation.\n */\n this.sidebarIsFocusedByKeyboard = signal(false);\n /**\n * Controls the visibility of the sidebar items.\n * The sidebar items must be \"hidden\" or \"minimized\" when the sidebar is collapsed, not hovered and not focused by keyboard\n */\n this.sidebarItemsIsMinimized = computed(() => this.sidebarIsCollapsed() && !this.sidebarIsHovered() && !this.sidebarIsFocusedByKeyboard());\n /**\n * Identifies if the sidebar has top items.\n */\n this.hasTopItems = signal(false);\n this.SidebarItemType = SidebarItemType;\n this.deviceService = inject(DeviceService);\n this.isMobileScreen = signal(this.deviceService?.isMobileScreen);\n this.quickActionsSideBarItemIsVisible = signal(false);\n this.draftsSideBarItemIsVisible = signal(false);\n this.historySideBarItemIsVisible = signal(false);\n this.menuSideBarItemIsVisible = signal(false);\n this.searchSideBarIsVisible = signal(false);\n this.isNavigationKey = signal(false);\n this.broadcastService = inject(BroadcastService);\n this.elementRef = inject(ElementRef);\n this.destroyRef = inject(DestroyRef);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n /**\n * Notifies when the sidebar items are minimized.\n */\n this.sidebarItemsIsMinimized$ = toObservable(this.sidebarItemsIsMinimized).pipe(filter(minimized => minimized), takeUntilDestroyed(this.destroyRef));\n this.shellConfigurationService.getShellOptions().subscribe(options => {\n this.quickActionsSideBarItemIsVisible.set(options?.sidebar?.quickActions?.visible);\n this.draftsSideBarItemIsVisible.set(options?.sidebar?.drafts?.visible);\n this.historySideBarItemIsVisible.set(options?.sidebar?.history?.visible);\n this.menuSideBarItemIsVisible.set(options?.sidebar?.menu?.visible);\n });\n }\n /**\n * Helps to identify whether the user is navigating through the sidebar using the keyboard by storing the last key pressed.\n */\n handleKeyDownEvent(event) {\n this.isNavigationKey.set(['Tab', 'ArrowUp', 'ArrowDown'].includes(event.key));\n }\n /**\n * Identifies whether the sidebar is focused through the keyboard navigation combining the `focusin` event and the metadata\n * colleted by `keydown` event.\n */\n handleFocusInEvent() {\n /**\n * In the first focusin event, the `isNavigationKey` is not set yet,\n * the sidebar should be considered as focused by the keyboard when not hovered.\n */\n const isFocusedByKeyboard = this.isNavigationKey() || !this.sidebarIsHovered();\n this.sidebarIsFocusedByKeyboard.set(isFocusedByKeyboard);\n }\n /**\n * When the sidebar loses the focus, it should not be considered as focused by the keyboard.\n */\n handleFocusOutEvent() {\n this.sidebarIsFocusedByKeyboard.set(false);\n }\n async ngOnInit() {\n this.listenKeyboardNavigationEvents();\n this.broadcastService.emit('refreshMenu');\n this.sidebarItemsIsMinimized$.subscribe(() => this.blurFocusedSidebarItem());\n this.checkSearchVisibility();\n }\n ngAfterViewInit() {\n this.updateHasTopItemsState();\n this.listenDefaultActionsVisibilityChanges();\n this.listenQuickActionsVisibilityChanges();\n }\n /** When a sidebar item is clicked, emit the event. */\n onSidebarItemClick() {\n this.sidebarItemClick.emit();\n }\n /**\n * Treats the `ISidebarItemFocusLimit` events, which are typically emitted when there's the need to\n * navigate to the previous/next sidebar item.\n *\n * @param navigationEvent The `ISidebarItemFocusLimit` with the type of navigation and the current item type.\n */\n onSidebarItemNavigationLimit(navigationEvent) {\n const indexOnSidebarItems = this.navigableItems.findIndex(sidebarItem => sidebarItem.sidebarItemType() === navigationEvent.currentItemType);\n if (indexOnSidebarItems !== -1) {\n const currentItem = this.navigableItems[indexOnSidebarItems];\n if (!navigationEvent.skipChildren && navigationEvent.limitType === SidebarNavigationDirection.Next && currentItem instanceof SidebarItemComponent && currentItem.hasValidChildren() && currentItem.active()) {\n // When the current item has children and is active,\n // and there's not a flag to skip the children,\n // do not navigate to the next `ISidebarItem`,\n // as the `SidebarItemComponent` itself will manage the navigation between its children.\n return;\n }\n const sidebarItemToFocus = this.findSiblingItem(indexOnSidebarItems, navigationEvent.limitType);\n sidebarItemToFocus?.focusSidebarItem(navigationEvent.limitType);\n }\n }\n /**\n * Updates the states of sidebarIsHovered` and `sidebarIsFocusedByKeyboard` to `true` and `false` respectively.\n */\n onSidebarMouseEnter() {\n this.sidebarIsHovered.set(true);\n /**\n * When the sidebar gets the `mouseenter` event, it means that the user is interacting with it using the mouse.\n * Then, the sidebar should not be considered as focused by the keyboard,\n * because is not possible to determine if the user is focusing the sidebar using the keyboard or the mouse.\n *\n * Scenarios:\n * 1. The user is navigating through the sidebar using the keyboard and not hovering the sidebar.\n * \t\t- The sidebar should be expanded until loses the focus.\n * 2. The user is navigating through the sidebar using the keyboard and hovering the sidebar.\n * \t\t- The sidebar should be expanded until loses the hover.\n * 3. The user is navigating through the sidebar using the mouse.\n * \t\t- The sidebar should be expanded until loses the hover.\n */\n this.isNavigationKey.set(false);\n this.sidebarIsFocusedByKeyboard.set(false);\n }\n /**\n * Updates the state of `sidebarIsHovered` to `false`.\n */\n onSidebarMouseLeave() {\n this.sidebarIsHovered.set(false);\n }\n /** Updates the value of `isMobileScreen` and `searchSideBarIsVisible` states when the window is resized. */\n onResize() {\n this.isMobileScreen.set(this.deviceService?.isMobileScreen);\n this.checkSearchVisibility();\n }\n /**\n * Finds the next `ISidebarItem` sibling based on the index of an `ISidebarItem` and the direction to search for.\n *\n * @param currentItemIndex The index of a `ISidebarItem`.\n * @param direction The direction to search for.\n * @returns The next non disabled `ISidebarItem` sibling.\n */\n findSiblingItem(currentItemIndex, direction) {\n let index;\n if (direction === SidebarNavigationDirection.Previous) {\n index = currentItemIndex - 1;\n } else if (direction === SidebarNavigationDirection.Next) {\n index = currentItemIndex + 1;\n }\n const nextSibling = this.navigableItems[index];\n if (nextSibling?.disabled()) {\n return this.findSiblingItem(index, direction);\n }\n return nextSibling;\n }\n /**\n * Blurs the current focused sidebar item.\n */\n blurFocusedSidebarItem() {\n const currentFocusedElement = document.activeElement;\n const isFocusedChild = this.elementRef.nativeElement.contains(currentFocusedElement);\n if (isFocusedChild) {\n currentFocusedElement.blur();\n }\n }\n updateHasTopItemsState() {\n const hasTopChildren = Boolean(this.sidebarTopElement.nativeElement.children.length);\n const isDefaultActionsVisible = !this.defaultActionsDirective?.hidden();\n const isQuickActionsVisible = Boolean(this.quickActionsDirective && !this.quickActionsDirective?.hidden());\n const isDraftsVisible = Boolean(this.draftsDirective);\n const hasTopItems = hasTopChildren && (isDefaultActionsVisible || isQuickActionsVisible || isDraftsVisible);\n this.hasTopItems.set(hasTopItems);\n }\n listenDefaultActionsVisibilityChanges() {\n if (!this.defaultActionsDirective) {\n return;\n }\n this.defaultActionsDirective.hidden$.pipe(pairwise(), filter(([old, current]) => old !== current), takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.updateHasTopItemsState();\n });\n }\n listenQuickActionsVisibilityChanges() {\n if (!this.quickActionsDirective) {\n return;\n }\n this.quickActionsDirective.hidden$.pipe(pairwise(), filter(([old, current]) => old !== current), takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.updateHasTopItemsState();\n });\n }\n /**\n * Sets if the sidebar's SearchComponent is visible based on the shell configuration and the device screen size.\n */\n async checkSearchVisibility() {\n const {\n topbar\n } = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n this.searchSideBarIsVisible.set(!topbar?.hiddenSearchBar && !this.deviceService.greaterThanMdBreakpoint);\n }\n /**\n * Listens to the keyboard navigation events to update the sidebar focus state.\n */\n listenKeyboardNavigationEvents() {\n this.sidebarService.routeChangedByKeyboardNavigation$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => this.sidebarIsFocusedByKeyboard.set(false));\n }\n static {\n this.ɵfac = function SidebarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: SidebarComponent,\n selectors: [[\"po-sidebar\"]],\n viewQuery: function SidebarComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c36, 7);\n i0.ɵɵviewQuery(SearchComponent, 5);\n i0.ɵɵviewQuery(QuickActionsDirective, 5);\n i0.ɵɵviewQuery(DraftsDirective, 5);\n i0.ɵɵviewQuery(DefaultActionsDirective, 5);\n i0.ɵɵviewQuery(MenuComponent, 5);\n i0.ɵɵviewQuery(_c37, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sidebarTopElement = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.searchComponent = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.quickActionsDirective = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.draftsDirective = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.defaultActionsDirective = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.menuComponent = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sidebarItems = _t);\n }\n },\n hostBindings: function SidebarComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"keydown\", function SidebarComponent_keydown_HostBindingHandler($event) {\n return ctx.handleKeyDownEvent($event);\n })(\"focusin\", function SidebarComponent_focusin_HostBindingHandler() {\n return ctx.handleFocusInEvent();\n })(\"focusout\", function SidebarComponent_focusout_HostBindingHandler() {\n return ctx.handleFocusOutEvent();\n });\n }\n },\n inputs: {\n sidebarIsCollapsed: [1, \"sidebarIsCollapsed\"]\n },\n outputs: {\n sidebarItemClick: \"sidebarItemClick\"\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([providePrimaveraLocalization()]), i0.ɵɵStandaloneFeature],\n decls: 13,\n vars: 18,\n consts: [[\"sidebarTop\", \"\"], [\"sidebarItem\", \"\"], [\"priResizeObserver\", \"\", 1, \"sidebar\", 3, \"mouseenter\", \"mouseleave\", \"sizeChanges\"], [1, \"sidebar-inner\"], [1, \"top\"], [\"priDefaultActions\", \"\", 3, \"sidebarItemClick\", \"focusLimitReached\", \"minimized\"], [\"priQuickActions\", \"\", 3, \"minimized\"], [\"priNavigationHistory\", \"\", 3, \"minimized\"], [\"priDrafts\", \"\", 3, \"minimized\"], [1, \"divider\"], [1, \"bottom\"], [1, \"sidebar-search-container\"], [1, \"sidebar-menu-container\"], [\"priQuickActions\", \"\", 3, \"sidebarItemClick\", \"focusLimitReached\", \"minimized\"], [\"priNavigationHistory\", \"\", 3, \"sidebarItemClick\", \"focusLimitReached\", \"minimized\"], [\"priDrafts\", \"\", 3, \"sidebarItemClick\", \"focusLimitReached\", \"minimized\"], [3, \"sidebarItemClick\", \"focusLimitReached\"], [\"data-testid\", \"po-menu\", 3, \"sidebarItemClick\", \"focusLimitReached\", \"minimized\"]],\n template: function SidebarComponent_Template(rf, ctx) {\n if (rf & 1) {\n const _r1 = i0.ɵɵgetCurrentView();\n i0.ɵɵelementStart(0, \"div\", 2);\n i0.ɵɵlistener(\"mouseenter\", function SidebarComponent_Template_div_mouseenter_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onSidebarMouseEnter());\n })(\"mouseleave\", function SidebarComponent_Template_div_mouseleave_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onSidebarMouseLeave());\n })(\"sizeChanges\", function SidebarComponent_Template_div_sizeChanges_0_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onResize());\n });\n i0.ɵɵelementStart(1, \"div\", 3)(2, \"div\", 4, 0)(4, \"po-sidebar-item\", 5, 1);\n i0.ɵɵlistener(\"sidebarItemClick\", function SidebarComponent_Template_po_sidebar_item_sidebarItemClick_4_listener() {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onSidebarItemClick());\n })(\"focusLimitReached\", function SidebarComponent_Template_po_sidebar_item_focusLimitReached_4_listener($event) {\n i0.ɵɵrestoreView(_r1);\n return i0.ɵɵresetView(ctx.onSidebarItemNavigationLimit($event));\n });\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(6, SidebarComponent_Conditional_6_Template, 2, 1, \"po-sidebar-item\", 6)(7, SidebarComponent_Conditional_7_Template, 2, 1, \"po-sidebar-item\", 7)(8, SidebarComponent_Conditional_8_Template, 2, 1, \"po-sidebar-item\", 8);\n i0.ɵɵelementEnd();\n i0.ɵɵelement(9, \"div\", 9);\n i0.ɵɵelementStart(10, \"div\", 10);\n i0.ɵɵtemplate(11, SidebarComponent_Conditional_11_Template, 3, 0, \"div\", 11)(12, SidebarComponent_Conditional_12_Template, 3, 1, \"div\", 12);\n i0.ɵɵelementEnd()()();\n }\n if (rf & 2) {\n i0.ɵɵclassProp(\"is-collapsed\", ctx.sidebarIsCollapsed())(\"hovered\", !ctx.isMobileScreen() && ctx.sidebarIsHovered())(\"focused-by-keyboard\", ctx.sidebarIsFocusedByKeyboard());\n i0.ɵɵadvance(2);\n i0.ɵɵclassProp(\"hidden\", !ctx.hasTopItems());\n i0.ɵɵadvance(2);\n i0.ɵɵproperty(\"minimized\", ctx.sidebarItemsIsMinimized());\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(ctx.quickActionsSideBarItemIsVisible() ? 6 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.historySideBarItemIsVisible() ? 7 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.draftsSideBarItemIsVisible() ? 8 : -1);\n i0.ɵɵadvance();\n i0.ɵɵclassProp(\"hidden\", !ctx.hasTopItems() || !ctx.searchSideBarIsVisible() && !ctx.menuSideBarItemIsVisible());\n i0.ɵɵadvance();\n i0.ɵɵclassProp(\"has-top-items\", ctx.hasTopItems());\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.searchSideBarIsVisible() ? 11 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.menuSideBarItemIsVisible() ? 12 : -1);\n }\n },\n dependencies: [PrimaveraI18nModule, SidebarItemComponent, DefaultActionsDirective, QuickActionsDirective, MenuComponent, SearchComponent, DraftsDirective, NavigationHistoryDirective, ResizeObserverDirective],\n styles: [\"body:has(.po-typeahead,.po-field-options,.date-input-dropdown-container,.tox-menu):not(:has(po-modal-wrapper,.po-modal-wrapper,modal-container,po-dropdown-menu)) po-sidebar .sidebar.is-collapsed{z-index:1501}po-sidebar{height:100%}po-sidebar .sidebar{position:absolute;left:0;display:flex;flex-direction:column;transition:width .2s ease;background-color:var(--grey-1);overflow:hidden;width:16rem;height:100%;flex-shrink:0;z-index:1005;box-shadow:0 0 .625rem var(--shadow-5);gap:.5rem}po-sidebar .sidebar.is-collapsed{width:3.5rem}po-sidebar .sidebar.is-collapsed.hovered,po-sidebar .sidebar.is-collapsed.focused-by-keyboard{width:16rem;z-index:1044}po-sidebar .sidebar.is-collapsed:not(.hovered):not(.focused-by-keyboard) .sidebar-inner .top{overflow-y:hidden}po-sidebar .sidebar.is-collapsed:not(.hovered):not(.focused-by-keyboard) .sidebar-inner .sidebar-menu-container{overflow-y:hidden}po-sidebar .sidebar .sidebar-inner{height:100%;width:100%;display:flex;flex-direction:column;min-height:0;overflow:hidden;padding-top:1rem}po-sidebar .sidebar .sidebar-inner .top{width:100%;display:flex;flex-direction:column;flex-shrink:0;gap:.5rem;overflow-x:hidden;padding:.0625rem .5rem;-webkit-user-select:none;user-select:none;max-height:70%}po-sidebar .sidebar .sidebar-inner .divider{margin:.0625rem .5rem 1rem;border-bottom:.0625rem solid var(--grey-4);padding-top:1rem}po-sidebar .sidebar .sidebar-inner .bottom{width:100%;max-height:100%;display:flex;flex-direction:column;overflow:hidden}po-sidebar .sidebar .sidebar-inner .bottom .sidebar-search-container{padding:0 .5rem;margin-bottom:1rem}po-sidebar .sidebar .sidebar-inner .bottom .sidebar-menu-container{width:100%;overflow-x:hidden;overflow-y:auto;padding:0 .5rem}@media only screen and (max-width: 767px){po-sidebar .sidebar{width:100%;height:100%;box-shadow:unset}po-sidebar .sidebar.is-collapsed{width:0}}@media (orientation: landscape) and (max-height: 768px){po-sidebar .sidebar.is-collapsed:not(.hovered):not(.focused-by-keyboard){overflow:unset}po-sidebar .sidebar:not(.is-collapsed),po-sidebar .sidebar.hovered,po-sidebar .sidebar.focused-by-keyboard{overflow-y:auto}po-sidebar .sidebar:not(.is-collapsed) .sidebar-inner,po-sidebar .sidebar.hovered .sidebar-inner,po-sidebar .sidebar.focused-by-keyboard .sidebar-inner{height:unset;min-height:unset;overflow:unset}po-sidebar .sidebar:not(.is-collapsed) .sidebar-inner .top,po-sidebar .sidebar.hovered .sidebar-inner .top,po-sidebar .sidebar.focused-by-keyboard .sidebar-inner .top{max-height:unset;overflow:hidden}po-sidebar .sidebar:not(.is-collapsed) .sidebar-inner .sidebar-menu-container,po-sidebar .sidebar.hovered .sidebar-inner .sidebar-menu-container,po-sidebar .sidebar.focused-by-keyboard .sidebar-inner .sidebar-menu-container{overflow:hidden}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return SidebarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Enumeration representing the identification of data that can be sent through the\n * [postMessage](https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage) event within a chat iframe.\n *\n * APP_READY - Identifies that the static chat web application is ready to be accessed (sessionID, token and complete status are all valid).\n *\n * CHAT_APP_LOADED - Identifies that the app with chat component has been successfully loaded.\n *\n * CHAT_HISTORY_LOADED - Identifies that the chat history has been loaded. This is the last event to be emitted.\n *\n * SESSION_ID - Represents the chat session id\n *\n * THEME - Represents the chat theme\n *\n * TOKEN - Represents the chat token\n *\n * REQUEST_NEW_TOKEN - Represents a request for a new token (when the last one returns 401)\n *\n * WEB_APP_URL - Represents the URL to access the chatbot web app\n *\n * WEB_COMPONENT_CAN_BE_READY - Identifies that the web component can emit the ready event.\n */\nvar ChatbotIframeEventType = /*#__PURE__*/function (ChatbotIframeEventType) {\n /**\n * Identifies that the static chat web application is ready to be accessed (sessionID, token and complete status are all valid).\n */\n ChatbotIframeEventType[\"APP_READY\"] = \"APP_READY\";\n /**\n * Identifies that the app with chat component has been successfully loaded.\n */\n ChatbotIframeEventType[\"CHAT_APP_LOADED\"] = \"CHAT_APP_LOADED\";\n /**\n * Identifies that the chat history has been loaded. This is the last event to be emitted.\n */\n ChatbotIframeEventType[\"CHAT_HISTORY_LOADED\"] = \"CHAT_HISTORY_LOADED\";\n /**\n * Represents the chat session ID\n */\n ChatbotIframeEventType[\"SESSION_ID\"] = \"SESSION_ID\";\n /**\n * Represents the chat theme.\n */\n ChatbotIframeEventType[\"THEME\"] = \"THEME\";\n /**\n * Represents the chat token.\n */\n ChatbotIframeEventType[\"TOKEN\"] = \"TOKEN\";\n /**\n * Represents a request for a new token (when the last one returns 401).\n */\n ChatbotIframeEventType[\"REQUEST_NEW_TOKEN\"] = \"REQUEST_NEW_TOKEN\";\n /**\n * Represents the URL to access the chatbot web app\n */\n ChatbotIframeEventType[\"WEB_APP_URL\"] = \"WEB_APP_URL\";\n /**\n * Identifies that the web component can emit the ready event.\n * This is necessary because we need to ensure that this event is listened to before it is emitted.\n */\n ChatbotIframeEventType[\"WEB_COMPONENT_CAN_BE_READY\"] = \"WEB_COMPONENT_CAN_BE_READY\";\n return ChatbotIframeEventType;\n}(ChatbotIframeEventType || {});\nlet CfsChatbotIframeComponent = /*#__PURE__*/(() => {\n class CfsChatbotIframeComponent {\n constructor() {\n /** Template reference to be dynamically appended to the HTML body of the right panel through the `CfsChatbotIntegrationService` */\n this.cfsChatbotTemplate = viewChild.required('cfsChatbot', {\n read: TemplateRef\n });\n this.loading = signal(true);\n this.rightPanelService = inject(RightPanelService);\n this.messagesService = inject(MessagesService);\n this.i18nService = inject(I18nService);\n this.destroyRef = inject(DestroyRef);\n this.cfsChatbotIntegrationService = inject(CfsChatbotIntegrationService);\n this.LoadingSpinnerTypeEnum = LoadingSpinnerTypeEnum;\n this.LoadingSpinnerSizeEnum = LoadingSpinnerSizeEnum;\n }\n onWindowMessage(event) {\n this.handleWindowMessageEvent(event);\n }\n ngOnInit() {\n this.listenRightPanelDestroyEvent();\n }\n /**\n * Listens to the right panel destroy event to reset the loading state.\n */\n listenRightPanelDestroyEvent() {\n this.rightPanelService.onDestroy$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.loading.set(true);\n });\n }\n /**\n * Handles the window message event to update the loading state.\n *\n * @param event The message event.\n */\n handleWindowMessageEvent(event) {\n if (!event.data || !(typeof event.data === 'string')) {\n return;\n }\n let metadata;\n try {\n metadata = JSON.parse(event.data);\n } catch (error) {\n return;\n }\n const isChatbotHistoryLoadedMessage = Object.keys(metadata).some(key => key === ChatbotIframeEventType.CHAT_HISTORY_LOADED);\n if (isChatbotHistoryLoadedMessage) {\n if (!metadata.CHAT_HISTORY_LOADED) {\n const message = this.i18nService.get('shell.components.RES_CFS_Chatbot_History_Loaded_Error_Message');\n const messageInfo = new MessageInfo(message, '', MessageType.ErrorToast);\n this.messagesService.show(messageInfo);\n }\n this.loading.set(false);\n return;\n }\n const isRequestingNewToken = Object.keys(metadata).some(key => key === ChatbotIframeEventType.REQUEST_NEW_TOKEN);\n if (isRequestingNewToken) {\n this.cfsChatbotIntegrationService.updateToken();\n return;\n }\n }\n static {\n this.ɵfac = function CfsChatbotIframeComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CfsChatbotIframeComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: CfsChatbotIframeComponent,\n selectors: [[\"po-cfs-chatbot-iframe\"]],\n viewQuery: function CfsChatbotIframeComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuerySignal(ctx.cfsChatbotTemplate, _c38, 5, TemplateRef);\n }\n if (rf & 2) {\n i0.ɵɵqueryAdvance();\n }\n },\n hostBindings: function CfsChatbotIframeComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"message\", function CfsChatbotIframeComponent_message_HostBindingHandler($event) {\n return ctx.onWindowMessage($event);\n }, false, i0.ɵɵresolveWindow);\n }\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 2,\n vars: 0,\n consts: [[\"cfsChatbot\", \"\"], [1, \"cfs-chatbot-loading-container\"], [\"data-testid\", \"cfs-chatbot-iframe\"], [\"data-testid\", \"loading-spinner\", 3, \"type\", \"size\"]],\n template: function CfsChatbotIframeComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, CfsChatbotIframeComponent_ng_template_0_Template, 2, 3, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n },\n dependencies: [LoadingSpinnerComponent],\n styles: [\".cfs-chatbot-loading-container{width:100%;display:flex;justify-content:center;align-items:center}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return CfsChatbotIframeComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CfsChatbotIntegrationService = /*#__PURE__*/(() => {\n class CfsChatbotIntegrationService {\n constructor() {\n this.sessionID = computed(() => this._sessionID());\n this._sessionID = signal('');\n this.token = signal('');\n this.theme = signal(null);\n /** Identifies the CFS chatbot metadata is loaded. */\n this.metadataLoaded$ = new BehaviorSubject(false);\n this.title = 'Pulse';\n this.chatbotNotDefinedErrorMsg = 'CfsChatbot is not defined';\n this.chatbotNotDefinedFriendlyErrorMsg = 'The CfsChatbot class is not defined. Make sure the chatbot script is loaded through the user engagement service.';\n this.identityService = inject(IdentityService);\n this.rightPanelService = inject(RightPanelService);\n this.environmentSettings = inject(EnvironmentSettings);\n this.httpClient = inject(HttpClient);\n this.themeService = inject(ThemeService);\n this.domService = inject(DomService);\n this.broadcastService = inject(BroadcastService);\n this.getChatbotMetadata();\n this.listenThemeChanges();\n }\n ngOnDestroy() {\n if (this.unsubscribeThemeChange) {\n this.unsubscribeThemeChange();\n this.unsubscribeThemeChange = null;\n }\n }\n /**\n * Opens the CFS chatbot component in a right panel.\n */\n openCfsChatbotPanel() {\n this.metadataLoaded$.pipe(filter(loaded => loaded), take(1)).subscribe(() => {\n if (this.appendedChatbotComponentRef) {\n return;\n }\n const componentRef = this.domService.appendComponentToBodyAndGetReference(CfsChatbotIframeComponent);\n const templateRef = componentRef.instance.cfsChatbotTemplate();\n this.appendedChatbotComponentRef = componentRef;\n this.rightPanelService.title$.next(this.title);\n this.rightPanelService.openRightPanel$.next({\n body: templateRef,\n bodyID: 'cfs-chatbot',\n closeOnOutsideClick: false,\n class: 'under-modal'\n });\n this.initializeCfsChatbot();\n this.listenRightPanelCloseToDestroyComponentRef(componentRef);\n });\n }\n /**\n * Updates the chatbot token, requesting a new one from the identity service.\n */\n updateToken() {\n // TO DO: Implement the logic to get a new token from the identity service without having to redo whole login process.\n this.identityService.login();\n }\n listenThemeChanges() {\n this.unsubscribeThemeChange = this.broadcastService.subscribe(SHELL_THEME_CHANGED, () => {\n this.updateTheme(this.themeService.theme);\n });\n }\n /**\n * Updates the chatbot theme.\n *\n * @param theme The theme to set.\n */\n updateTheme(theme) {\n try {\n this.theme.set(theme);\n CfsChatbot.updateTheme(theme);\n } catch (error) {\n const errorMessage = error?.message === this.chatbotNotDefinedErrorMsg ? this.chatbotNotDefinedFriendlyErrorMsg : error?.message;\n console.error(errorMessage);\n }\n }\n /**\n * Listens to the right panel destroy event to remove the chatbot component from HTML body.\n *\n * @param componentRef The component reference to be removed from the HTML body.\n */\n listenRightPanelCloseToDestroyComponentRef(componentRef) {\n this.rightPanelService.onDestroy$.pipe(filter(() => this.rightPanelService.componentInstance?.config?.bodyID === 'cfs-chatbot')).subscribe(() => {\n this.domService.removeComponentFromBody(componentRef);\n this.appendedChatbotComponentRef = null;\n });\n }\n /**\n * Loads the chatbot metadata and update the signals.\n */\n async getChatbotMetadata() {\n const chatbotSettings = this.environmentSettings.userEngagement?.cfsChatbot;\n if (chatbotSettings?.id && chatbotSettings?.sessionURL && chatbotSettings?.webAppURL) {\n const sessionID = await this.getSessionID(chatbotSettings);\n const token = this.identityService.getToken();\n const theme = this.themeService.theme;\n if (!sessionID) {\n return;\n }\n this._sessionID.set(sessionID);\n this.token.set(token);\n this.theme.set(theme);\n this.metadataLoaded$.next(true);\n return;\n }\n this.metadataLoaded$.next(false);\n }\n /**\n * Initializes the CFS chatbot through the injected script.\n */\n initializeCfsChatbot() {\n try {\n CfsChatbot.initialize({\n sessionID: this.sessionID(),\n token: this.token(),\n theme: this.theme(),\n webAppURL: this.environmentSettings?.userEngagement?.cfsChatbot?.webAppURL\n });\n } catch (error) {\n const errorMessage = error?.message === this.chatbotNotDefinedErrorMsg ? this.chatbotNotDefinedFriendlyErrorMsg : error?.message;\n console.error(errorMessage);\n }\n }\n /**\n * Returns the session ID for the chatbot.\n *\n * @param chatbotSettings The chatbot settings defined in the environment settings.\n */\n async getSessionID(chatbotSettings) {\n try {\n const url = chatbotSettings.sessionURL;\n const body = {\n chatbotId: chatbotSettings.id,\n physicalKey: chatbotSettings.physicalKey ?? '',\n businessKey: chatbotSettings.businessKey ?? '',\n userId: this.identityService.getUser().id,\n culture: this.identityService.getUser().culture,\n scopes: chatbotSettings.scopes ?? [{\n key: 'Source',\n value: 'Client'\n }, {\n key: 'Product',\n value: 'Client'\n }]\n };\n const interceptorsOptions = new FrameworkInterceptors();\n interceptorsOptions.skipErrors = true;\n const result = await firstValueFrom(this.httpClient.post(url, body, {\n context: new HttpContext().set(FrameworkInterceptorsOptions, interceptorsOptions)\n }));\n return result?.id;\n } catch (error) {\n console.error(error);\n }\n return '';\n }\n static {\n this.ɵfac = function CfsChatbotIntegrationService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CfsChatbotIntegrationService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: CfsChatbotIntegrationService,\n factory: CfsChatbotIntegrationService.ɵfac,\n providedIn: 'root'\n });\n }\n }\n return CfsChatbotIntegrationService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet CfsChatbotWrapperComponent = /*#__PURE__*/(() => {\n class CfsChatbotWrapperComponent {\n constructor() {\n this.OrientationEnum = OrientationEnum;\n this.rightPanelService = inject(RightPanelService);\n this.cfsChatbotIntegrationService = inject(CfsChatbotIntegrationService);\n }\n onClick() {\n this.cfsChatbotIntegrationService.openCfsChatbotPanel();\n }\n static {\n this.ɵfac = function CfsChatbotWrapperComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || CfsChatbotWrapperComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: CfsChatbotWrapperComponent,\n selectors: [[\"po-cfs-chatbot-wrapper\"]],\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 6,\n vars: 6,\n consts: [[\"data-testid\", \"chatbot-wrapper\", \"priKeyboardNavigation\", \"\", \"matTooltipPosition\", \"below\", 1, \"cfs-chatbot-wrapper-container\", 3, \"click\", \"navigationOrientation\", \"matTooltip\"], [\"width\", \"40\", \"height\", \"40\", \"viewBox\", \"0 0 40 40\", \"fill\", \"none\", \"xmlns\", \"http://www.w3.org/2000/svg\", 1, \"cfs-chatbot-svg\"], [\"d\", \"M19.7247 27.5751L22.0148 26.5524C22.0549 26.5349 22.0891 26.5061 22.113 26.4695C22.137 26.4329 22.1497 26.3901 22.1497 26.3463C22.1497 26.3026 22.137 26.2598 22.113 26.2232C22.0891 26.1866 22.0549 26.1577 22.0148 26.1402L19.7247 25.1158L18.7008 22.8256C18.6831 22.7859 18.6543 22.7521 18.6178 22.7284C18.5814 22.7047 18.5388 22.6921 18.4953 22.6921C18.4518 22.6921 18.4092 22.7047 18.3728 22.7284C18.3363 22.7521 18.3075 22.7859 18.2898 22.8256L17.2653 25.1158L14.9752 26.1402C14.9354 26.1579 14.9017 26.1867 14.878 26.2232C14.8543 26.2597 14.8416 26.3022 14.8416 26.3457C14.8416 26.3892 14.8543 26.4318 14.878 26.4683C14.9017 26.5047 14.9354 26.5336 14.9752 26.5512L17.2653 27.5751L18.2898 29.8665C18.3075 29.9062 18.3363 29.94 18.3728 29.9637C18.4092 29.9874 18.4518 30 18.4953 30C18.5388 30 18.5814 29.9874 18.6178 29.9637C18.6543 29.94 18.6831 29.9062 18.7008 29.8665L19.7247 27.5751Z\"], [\"d\", \"M26.9565 21.9653L29.8346 20.6784C29.8842 20.6558 29.9256 20.6194 29.955 20.5736C29.9844 20.5277 30 20.4744 30 20.4199C29.9999 20.3655 29.9842 20.3122 29.9546 20.2664C29.9251 20.2207 29.883 20.1844 29.8334 20.1619L26.9553 18.875L25.6683 15.9968C25.646 15.947 25.6097 15.9047 25.5639 15.8751C25.5181 15.8455 25.4646 15.8297 25.4101 15.8297C25.3555 15.8297 25.3021 15.8455 25.2563 15.8751C25.2105 15.9047 25.1742 15.947 25.1518 15.9968L23.8649 18.8744L20.9873 20.1613C20.9374 20.1836 20.8949 20.2198 20.8652 20.2657C20.8354 20.3116 20.8195 20.3651 20.8195 20.4198C20.8195 20.4745 20.8354 20.5281 20.8652 20.5739C20.8949 20.6198 20.9374 20.6561 20.9873 20.6784L23.8655 21.9653L25.1531 24.8435C25.1754 24.8933 25.2117 24.9355 25.2575 24.9652C25.3033 24.9948 25.3567 25.0106 25.4113 25.0106C25.4659 25.0106 25.5193 24.9948 25.5651 24.9652C25.6109 24.9355 25.6472 24.8933 25.6695 24.8435L26.9565 21.9653Z\"], [\"d\", \"M10.0578 16.0446C10.095 16.1029 10.148 16.1495 10.2106 16.1788L13.8805 17.8191L15.5214 21.4884C15.5507 21.551 15.5973 21.604 15.6556 21.6412C15.714 21.6783 15.7817 21.698 15.8509 21.698C15.9201 21.698 15.9878 21.6783 16.0461 21.6412C16.1045 21.604 16.1511 21.551 16.1804 21.4884L17.8207 17.8197L21.49 16.1788C21.5526 16.1495 21.6056 16.1029 21.6427 16.0446C21.6799 15.9862 21.6996 15.9185 21.6996 15.8493C21.6996 15.7801 21.6799 15.7124 21.6427 15.6541C21.6056 15.5957 21.5526 15.5491 21.49 15.5198L17.8207 13.8789L16.1797 10.2096C16.1504 10.147 16.1039 10.094 16.0455 10.0569C15.9872 10.0197 15.9194 10 15.8503 10C15.7811 10 15.7134 10.0197 15.655 10.0569C15.5967 10.094 15.5501 10.147 15.5208 10.2096L13.8799 13.8789L10.2106 15.5198C10.148 15.5491 10.095 15.5957 10.0578 15.6541C10.0207 15.7124 10.001 15.7801 10.001 15.8493C10.001 15.9185 10.0207 15.9862 10.0578 16.0446Z\"]],\n template: function CfsChatbotWrapperComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0);\n i0.ɵɵpipe(1, \"priI18n\");\n i0.ɵɵlistener(\"click\", function CfsChatbotWrapperComponent_Template_div_click_0_listener() {\n return ctx.onClick();\n });\n i0.ɵɵnamespaceSVG();\n i0.ɵɵelementStart(2, \"svg\", 1);\n i0.ɵɵelement(3, \"path\", 2)(4, \"path\", 3)(5, \"path\", 4);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵclassProp(\"open\", (ctx.rightPanelService.componentInstance == null ? null : ctx.rightPanelService.componentInstance.panelIsOpened()) && (ctx.rightPanelService.componentInstance == null ? null : ctx.rightPanelService.componentInstance.config == null ? null : ctx.rightPanelService.componentInstance.config.bodyID) === \"cfs-chatbot\");\n i0.ɵɵproperty(\"navigationOrientation\", ctx.OrientationEnum.Landscape)(\"matTooltip\", i0.ɵɵpipeBind1(1, 4, \"shell.components.RES_TopBar_RightItem_CfsChatbot\"));\n }\n },\n dependencies: [MatTooltip, PrimaveraI18nModule, i1.PriI18nPipe, KeyboardNavigationDirective],\n styles: [\"po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container{display:flex;align-items:center;justify-content:center;background-color:transparent;border:.0625rem solid transparent;flex-shrink:0;width:2.5rem;height:2.5rem;border-radius:100%}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container:hover{background-color:var(--theme-10);border-color:var(--theme-10);cursor:pointer}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container:focus-visible{outline:none;background-color:var(--theme-20);border-color:var(--grey-8)}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container:focus-visible .cfs-chatbot-svg path{fill:var(--grey-8)}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container.open{background-color:var(--theme-20)}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container.open .cfs-chatbot-svg path{fill:var(--grey-8)}po-cfs-chatbot-wrapper .cfs-chatbot-wrapper-container .cfs-chatbot-svg path{fill:var(--grey-7)}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return CfsChatbotWrapperComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet TopbarComponent = /*#__PURE__*/(() => {\n class TopbarComponent {\n constructor() {\n this.changeSidebarState = output();\n this.sidebarIsVisible = input(false);\n this.sidebarIsCollapsed = model(false);\n this.states = {\n contextBarState: 'closed',\n // closed, open\n contextBarButtonState: 'disabled' // closed, open, highlighted, disabled\n };\n this.topBarSettings = {\n hiddenApplicationMenuButton: false,\n hiddenLogo: false,\n hiddenSearchBar: false,\n hiddenChatButton: false,\n hiddenResourceCenterButton: false,\n hiddenUserAreaMenuButton: false\n };\n this.OrientationEnum = OrientationEnum;\n this.dropDownMenuChainID = GuidService.createUID();\n this.deviceService = inject(DeviceService);\n this.zopimService = inject(ZopimService);\n this.environmentSettings = inject(EnvironmentSettings);\n this.rightPanelService = inject(RightPanelService);\n this.cfsChatbotIntegrationService = inject(CfsChatbotIntegrationService);\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this.appContextService = inject(AppContextService);\n this.broadcastService = inject(BroadcastService);\n this.hotkeysService = inject(HotkeysService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.userPilotService = inject(UserPilotService);\n this.storageService = inject(StorageService);\n this.identityService = inject(IdentityService);\n this.broadcastService.subscribe(SHELL_CONTEXT_BAR_CLOSE, () => this.closeContextBar());\n this.broadcastService.subscribe('contextBarInfo', info => {\n if (info) {\n this.states.contextBarButtonState = 'disabled';\n this.states.contextBarState = 'closed';\n }\n });\n this.broadcastService.subscribe('contextBarActivator', activator => this.openContextBar(activator));\n this.broadcastService.subscribe(SHELL_CONTEXT_BAR_HIGHLIGHT, () => this.states.contextBarButtonState = 'highlighted');\n this.broadcastService.subscribe('contextBarReset', () => this.closeContextBar());\n const pnsExternalUri = this.appContextService.getContext()?.pnsExternalUri;\n if (pnsExternalUri && pnsExternalUri.length > 0) {\n this.pnsUri = pnsExternalUri;\n }\n this.addHotKeys();\n }\n //#region Public Methods\n async ngOnInit() {\n this.broadcastService.subscribe('onToggleSidebarState', () => this.sidebarIsCollapsed.set(!this.sidebarIsCollapsed()));\n await this.getTopBarSettings();\n }\n ngOnDestroy() {\n this.rightPanelService.title$.next('');\n }\n /**\n * Get the settings to enable/disable specific actions from the topbar\n */\n async getTopBarSettings() {\n try {\n // get the general settings\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n // check for different brand label and title if it is set in the AppContext\n const productBrand = this.appContextService.getContext()?.productBrand;\n // set brand label and title\n this.brandTitle = productBrand?.title || shellOptions.productBrand?.title;\n this.brandLabel = productBrand?.label || shellOptions.productBrand?.label;\n this.topBarSettings = {\n ...this.topBarSettings,\n ...shellOptions.topbar\n };\n } catch (ex) {\n console.error(ex);\n }\n }\n goHome() {\n this.sidebarService.navigateToHomePage();\n }\n toggleSidebarState() {\n this.sidebarIsCollapsed.set(!this.sidebarIsCollapsed());\n let storageKey = 'userSettingsStorage-';\n storageKey += this.identityService?.getUser()?.id ? `${this.identityService.getUser().id}-` : '';\n storageKey += 'sidebarCollapsed';\n this.storageService.set(storageKey, JSON.stringify(this.sidebarIsCollapsed()));\n this.changeSidebarState.emit(this.sidebarIsCollapsed());\n }\n toggleNotificationsMenu() {\n this.showNotificationsDropDown = !this.showNotificationsDropDown;\n }\n //#region Private Methods\n toggleContextBar() {\n if (this.states.contextBarButtonState === 'disabled') {\n return;\n }\n if (this.states.contextBarState === 'closed') {\n this.openContextBar();\n } else {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_TOGGLE);\n this.closeContextBar();\n }\n }\n /**\n * Shows or hides the live chat\n */\n toggleLiveChat() {\n this.zopimService.toggle();\n }\n triggerUserPilot() {\n this.userPilotService.trigger(this.environmentSettings.userEngagement.userpilot.resourceCenter);\n }\n addHotKeys() {\n const hotkeysDefinitions = [{\n // Ctrl + Alt + Home => Go to Homepage\n hotkey: [17 /* HotkeysKeys.Ctrl */, 18 /* HotkeysKeys.Alt */, 36 /* HotkeysKeys.Home */],\n action: () => {\n this.goHome();\n }\n }];\n this.hotkeysService.addHotkeys(hotkeysDefinitions);\n }\n closeContextBar() {\n this.states.contextBarButtonState = this.states.contextBarState === 'open' ? 'closed' : 'disabled';\n this.states.contextBarState = 'closed';\n }\n openContextBar(activator) {\n if (this.states.contextBarState === 'closed') {\n this.states.contextBarState = 'open';\n this.states.contextBarButtonState = 'open';\n }\n if (activator) {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_OPEN, activator);\n } else {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_OPEN);\n }\n }\n static {\n this.ɵfac = function TopbarComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || TopbarComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: TopbarComponent,\n selectors: [[\"po-topbar\"]],\n inputs: {\n sidebarIsVisible: [1, \"sidebarIsVisible\"],\n sidebarIsCollapsed: [1, \"sidebarIsCollapsed\"]\n },\n outputs: {\n changeSidebarState: \"changeSidebarState\",\n sidebarIsCollapsed: \"sidebarIsCollapsedChange\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 17,\n vars: 12,\n consts: [[\"pnsComponent\", \"\"], [\"priKeyboardNavigationGroup\", \"\", \"data-testid\", \"topbar-wrapper\"], [1, \"left\"], [1, \"menu-logo-container\"], [\"data-testid\", \"access-menu\", \"matTooltipPosition\", \"below\", \"priKeyboardNavigation\", \"\", 1, \"access-menu\", \"top-bar-button\", 3, \"matTooltip\", \"navigationOrientation\"], [\"id\", \"sidebar-logo\", \"data-testid\", \"sidebar-logo\", 1, \"logo\", 3, \"click\"], [1, \"logo-container\", 3, \"width\", \"height\"], [1, \"logo-extra-info-title\"], [1, \"logo-extra-info-label\", 3, \"ngClass\"], [\"data-testid\", \"navbar\", 1, \"right\"], [\"dropDownMenuCustomClass\", \"topBar\"], [3, \"dropDownMenuChainID\", \"dropDownMenuChildLevel\"], [1, \"top-bar-button\"], [\"id\", \"chat-wrapper\", \"matTooltipPosition\", \"below\", \"data-testid\", \"chat-button\", \"priKeyboardNavigation\", \"\", 1, \"top-bar-button\", \"chat-wrapper\", 3, \"matTooltip\", \"ngClass\", \"navigationOrientation\"], [\"matTooltipPosition\", \"below\", \"data-testid\", \"resource-center-button\", \"priKeyboardNavigation\", \"\", 1, \"top-bar-button\", \"resource-center-wrapper\", 3, \"matTooltip\", \"navigationOrientation\"], [\"id\", \"notifications-area\", 1, \"top-bar-button\", \"notifications-area-wrapper\", 3, \"ngClass\"], [\"id\", \"user-area-image\", 1, \"user-area-wrapper\"], [\"data-testid\", \"access-menu\", \"matTooltipPosition\", \"below\", \"priKeyboardNavigation\", \"\", 1, \"access-menu\", \"top-bar-button\", 3, \"click\", \"matTooltip\", \"navigationOrientation\"], [1, \"icon-menu\"], [\"id\", \"chat-wrapper\", \"matTooltipPosition\", \"below\", \"data-testid\", \"chat-button\", \"priKeyboardNavigation\", \"\", 1, \"top-bar-button\", \"chat-wrapper\", 3, \"click\", \"matTooltip\", \"ngClass\", \"navigationOrientation\"], [1, \"icon-support_agent\"], [\"matTooltipPosition\", \"below\", \"data-testid\", \"resource-center-button\", \"priKeyboardNavigation\", \"\", 1, \"top-bar-button\", \"resource-center-wrapper\", 3, \"click\", \"matTooltip\", \"navigationOrientation\"], [1, \"icon-help_center\"], [3, \"pnsUri\"], [3, \"topBarSettings\"]],\n template: function TopbarComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 1)(1, \"div\", 2)(2, \"div\", 3);\n i0.ɵɵtemplate(3, TopbarComponent_Conditional_3_Template, 3, 4, \"div\", 4);\n i0.ɵɵelementStart(4, \"div\", 5);\n i0.ɵɵlistener(\"click\", function TopbarComponent_Template_div_click_4_listener() {\n return ctx.goHome();\n });\n i0.ɵɵtemplate(5, TopbarComponent_Conditional_5_Template, 1, 2, \"po-cegid-logo-svg\", 6)(6, TopbarComponent_Conditional_6_Template, 3, 1, \"div\", 7);\n i0.ɵɵelementEnd();\n i0.ɵɵtemplate(7, TopbarComponent_Conditional_7_Template, 3, 4, \"div\", 8);\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(8, \"div\", 9);\n i0.ɵɵtemplate(9, TopbarComponent_Conditional_9_Template, 1, 0, \"po-search\", 10)(10, TopbarComponent_Conditional_10_Template, 1, 2, \"po-environment-selector-topbar\", 11)(11, TopbarComponent_Conditional_11_Template, 1, 0, \"po-cfs-chatbot-wrapper\")(12, TopbarComponent_Conditional_12_Template, 1, 0, \"po-applications-menu-topbar\", 12)(13, TopbarComponent_Conditional_13_Template, 3, 7, \"div\", 13)(14, TopbarComponent_Conditional_14_Template, 3, 4, \"div\", 14)(15, TopbarComponent_Conditional_15_Template, 3, 4, \"div\", 15)(16, TopbarComponent_Conditional_16_Template, 2, 1, \"div\", 16);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵadvance(3);\n i0.ɵɵconditional(ctx.sidebarIsVisible() ? 3 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(!(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenLogo) ? 5 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.brandTitle && ctx.deviceService.greaterThanSmBreakpoint ? 6 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.brandLabel && ctx.deviceService.greaterThanXxlBreakpoint ? 7 : -1);\n i0.ɵɵadvance(2);\n i0.ɵɵconditional(!(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenSearchBar) && ctx.deviceService.greaterThanMdBreakpoint ? 9 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.deviceService.greaterThanXlBreakpoint ? 10 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional((ctx.environmentSettings.userEngagement == null ? null : ctx.environmentSettings.userEngagement.cfsChatbot == null ? null : ctx.environmentSettings.userEngagement.cfsChatbot.id) && (ctx.environmentSettings.userEngagement == null ? null : ctx.environmentSettings.userEngagement.cfsChatbot == null ? null : ctx.environmentSettings.userEngagement.cfsChatbot.webAppURL) && (ctx.cfsChatbotIntegrationService == null ? null : ctx.cfsChatbotIntegrationService.sessionID()) ? 11 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenApplicationMenuButton) && ctx.deviceService.greaterThanXlBreakpoint ? 12 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.zopimService.initialized() && !(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenChatButton) && ctx.deviceService.greaterThanXlBreakpoint ? 13 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenResourceCenterButton) && (ctx.environmentSettings.userEngagement == null ? null : ctx.environmentSettings.userEngagement.userpilot == null ? null : ctx.environmentSettings.userEngagement.userpilot.applicationId) && (ctx.environmentSettings.userEngagement == null ? null : ctx.environmentSettings.userEngagement.userpilot == null ? null : ctx.environmentSettings.userEngagement.userpilot.resourceCenter) && ctx.deviceService.greaterThanXlBreakpoint ? 14 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.pnsUri ? 15 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(!(ctx.topBarSettings == null ? null : ctx.topBarSettings.hiddenUserAreaMenuButton) ? 16 : -1);\n }\n },\n dependencies: [NgClass, MatTooltip, PrimaveraI18nModule, i1.PriI18nPipe, KeyboardNavigationGroupDirective, KeyboardNavigationDirective, CegidLogoSvgComponent, EnvironmentSelectorTopbarComponent, PriNotificationsComponent, UserAreaComponent, SearchComponent, ApplicationsMenuTopbarComponent, CfsChatbotWrapperComponent],\n styles: [\"po-topbar{position:relative;border-radius:0;width:100%;border:none;height:4rem;flex-shrink:0;display:flex;background-color:var(--grey-1);color:var(--grey-7);z-index:1042;border-bottom:.0625rem solid var(--grey-5)}po-topbar .top-bar-button{display:flex;align-items:center;justify-content:center;background-color:transparent;border:.0625rem solid transparent;flex-shrink:0;width:2.5rem;height:2.5rem;border-radius:100%}po-topbar .top-bar-button i{font-size:1.25rem;color:var(--grey-7)}po-topbar .top-bar-button:hover{background-color:var(--theme-10);border-color:var(--theme-10);cursor:pointer}po-topbar .top-bar-button:active,po-topbar .top-bar-button.is-open{background-color:var(--theme-20)}po-topbar .top-bar-button:active i,po-topbar .top-bar-button.is-open i{color:var(--grey-8)}po-topbar .top-bar-button:focus-visible{outline:none;background-color:var(--theme-20);border-color:var(--grey-8)}po-topbar .top-bar-button:focus-visible i{color:var(--grey-8)}po-topbar .top-bar-button:disabled,po-topbar .top-bar-button:has(:disabled),po-topbar .top-bar-button:has([disabled=true]){background-color:transparent;border-color:transparent;pointer-events:none}po-topbar .top-bar-button:disabled i,po-topbar .top-bar-button:has(:disabled) i,po-topbar .top-bar-button:has([disabled=true]) i{color:var(--grey-5)}po-topbar .left{position:absolute;display:flex;flex-grow:1;left:0;height:100%;overflow:hidden;align-items:center;margin-left:.5rem}po-topbar .left .menu-logo-container{display:flex;height:100%;width:100%;overflow:hidden;align-items:center;flex-shrink:0}po-topbar .left .menu-logo-container .logo{display:flex;flex-direction:row;align-items:center;cursor:pointer;overflow:hidden;margin-left:.75rem}po-topbar .left .menu-logo-container .logo .logo-container{display:flex;align-items:center;height:100%;overflow:hidden;flex-shrink:0}po-topbar .left .menu-logo-container .logo .logo-extra-info-title{flex-shrink:0;padding-left:.5rem;padding-right:1rem;padding-bottom:.0625rem}po-topbar .left .menu-logo-container .logo .logo-extra-info-title span{font-family:Poppins,sans-serif;font-size:1.5rem;color:var(--grey-7);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1}po-topbar .left .menu-logo-container .logo-extra-info-label{flex-shrink:0;padding:0 1rem .0625rem;cursor:default}po-topbar .left .menu-logo-container .logo-extra-info-label.show-separator{border-left:.0625rem solid var(--grey-4)}po-topbar .left .menu-logo-container .logo-extra-info-label span{font-family:Poppins,sans-serif;font-size:1.25rem;font-weight:700;color:var(--grey-7);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1}po-topbar .right{position:absolute;display:flex;justify-content:flex-end;flex-grow:1;right:0;height:100%;overflow:hidden;align-items:center;margin-right:1rem;gap:.5rem}po-topbar .right po-search .search-wrapper{width:20rem}\\n\"],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n }\n return TopbarComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet ViewTitleComponent = /*#__PURE__*/(() => {\n class ViewTitleComponent {\n constructor() {\n this.outlet = OutletEnum.Primary;\n this.viewTitle = '';\n this.showDeletedLabel = false;\n this.showInactiveLabel = false;\n this.lock = new Lock();\n this.showContextBar = signal(false);\n this.enableContextBar = signal(false);\n this.broadcastService = inject(BroadcastService);\n this.editionHistoryEvent = inject(EditionHistoryEventService);\n this.changeDetectorRef = inject(ChangeDetectorRef);\n this.applicationRef = inject(ApplicationRef);\n this.appContextService = inject(AppContextService);\n this.environmentSettings = inject(EnvironmentSettings);\n this.viewTitleService = inject(ViewTitleService);\n this.destroyRef = inject(DestroyRef);\n this.i18nService = inject(I18nService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.unsubscribeEventTitleChanges = this.broadcastService.subscribe('eventTitleChanged', changes => {\n if (changes && this.isToProceedWithEvent(changes.outlet)) {\n this.viewTitle = changes.value;\n document.title = this.pageTitle(changes.value);\n // set default values\n this.historyItems = undefined;\n this.lock = new Lock(false);\n this.showDeletedLabel = false;\n this.showInactiveLabel = false;\n this.changeDetectorRef.detectChanges();\n }\n });\n this.unsubscribeDocumentIsLockChanges = this.broadcastService.subscribe('documentIsLock', lock => {\n if (this.isToProceedWithEvent(lock.outlet)) {\n this.lock = lock;\n }\n });\n // TO DO: Remove this subscription in the next major version (Breaking Change).\n this.unsubscribeViewTitleChanges = this.broadcastService.subscribe('view_title', titleDefinition => {\n if (titleDefinition) {\n const formattedTitleDefinition = {\n title: titleDefinition.title,\n outlet: titleDefinition.outlet,\n isDeleted: titleDefinition.isDeleted,\n isInactive: titleDefinition.isInactive || titleDefinition.isInactiveActive\n };\n this.viewTitleService.setViewTitleMetadata(formattedTitleDefinition);\n }\n });\n this.viewTitleService.viewTitleChange$.pipe(filter(titleDefinition => Boolean(titleDefinition) && this.isToProceedWithEvent(titleDefinition.outlet)), takeUntilDestroyed(this.destroyRef)).subscribe(titleDefinition => {\n this.setTitle(titleDefinition);\n });\n this.broadcastService.subscribe('contextBarInfo', info => {\n if (info) {\n this.showContextBar.set(true);\n }\n });\n this.broadcastService.subscribe('contextBarReset', () => {\n this.showContextBar.set(false);\n this.enableContextBar.set(false);\n });\n this.broadcastService.subscribe('contextBarHighlight', () => {\n this.enableContextBar.set(true);\n });\n }\n async ngOnInit() {\n this.editionHistoryEvent.getOnEvent().pipe(takeUntilDestroyed(this.destroyRef)).subscribe(events => {\n if (this.isToProceedWithEvent(events.outlet)) {\n this.onEditionHistoryEvent(events);\n }\n });\n this.lock.isLocked = false;\n this.productName = await this.getProductName();\n }\n ngOnDestroy() {\n if (this.unsubscribeViewTitleChanges) {\n this.unsubscribeViewTitleChanges();\n this.unsubscribeViewTitleChanges = null;\n }\n if (this.unsubscribeEventTitleChanges) {\n this.unsubscribeEventTitleChanges();\n this.unsubscribeEventTitleChanges = null;\n }\n if (this.unsubscribeDocumentIsLockChanges) {\n this.unsubscribeDocumentIsLockChanges();\n this.unsubscribeDocumentIsLockChanges = null;\n }\n }\n toggleContextBar() {\n const contextBarIsOpen = document.querySelector('po-contextbar .contextbar-open');\n if (contextBarIsOpen) {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_TOGGLE);\n } else {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_OPEN);\n }\n }\n /**\n * Whether is to proceed to with an event.\n * For instance, the function will return true in case of this view was created\n * by a popup view and there is an popup view open.\n */\n isToProceedWithEvent(outlet = OutletEnum.Primary) {\n return outlet === OutletEnum.Primary;\n }\n setTitle(viewTitleMetadata) {\n this.viewTitle = viewTitleMetadata?.title || '';\n document.title = this.pageTitle(this.viewTitle);\n this.showDeletedLabel = viewTitleMetadata?.isDeleted === true;\n // Inactive is only visible if the entity is inactive and is not deleted\n this.showInactiveLabel = viewTitleMetadata?.isInactive === true && !viewTitleMetadata?.isDeleted;\n this.historyItems = undefined;\n }\n async onEditionHistoryEvent(events) {\n this.historyItems = await events.getDropDownEditionHistoryItems();\n /** because this function is async, some times the component does not detect changes on the history items.\n * More info on https://stackoverflow.com/questions/35105374/how-to-force-a-components-re-rendering-in-angular-2*/\n this.applicationRef.tick();\n }\n async getProductName() {\n // get the general settings\n const shellOptions = await firstValueFrom(this.shellConfigurationService.getShellOptions());\n return this.appContextService.getContext().productName || shellOptions.productBrand?.pageTitle || this.environmentSettings.productName;\n }\n pageTitle(title) {\n const titles = [];\n if (title) {\n titles.push(this.i18nService.get(title));\n }\n if (this.productName) {\n titles.push(this.i18nService.get(this.productName));\n }\n if (titles.length > 0) {\n return titles.join(' | ');\n } else {\n return '';\n }\n }\n static {\n this.ɵfac = function ViewTitleComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ViewTitleComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ViewTitleComponent,\n selectors: [[\"po-view-title\"]],\n inputs: {\n historyItems: \"historyItems\",\n outlet: \"outlet\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 1,\n vars: 1,\n consts: [[1, \"view-title\", 3, \"ngClass\"], [\"priDropDownEditionHistory\", \"\", 1, \"view-title-value-wrapper\", 3, \"priDropDownEditionHistoryItems\", \"priDropDownEditionHistoryTransformToLink\", \"origin\"], [\"data-testid\", \"layout-view-title-value\", 1, \"view-title-value\"], [1, \"icon-information\", 3, \"ngClass\"], [\"id\", \"record-selector-tag\", 1, \"record-selector-wrapper\", 3, \"outlet\"], [1, \"document-states\"], [1, \"state-label-wrapper\", \"deleted\"], [1, \"state-label-wrapper\", \"inactive\"], [1, \"is-lock-description-wrapper\"], [1, \"icon-information\", 3, \"click\", \"ngClass\"], [1, \"state-label\"], [\"priI18n\", \"shell.components.RES_EntityView_IsInactiveEntity\", 1, \"state-label\"], [1, \"is-lock-description\"], [1, \"is-lock-span\"], [1, \"help-lock-description-tooltip\", 3, \"matTooltip\"]],\n template: function ViewTitleComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, ViewTitleComponent_Conditional_0_Template, 11, 14, \"div\", 0);\n }\n if (rf & 2) {\n i0.ɵɵconditional((ctx.viewTitle == null ? null : ctx.viewTitle.length) > 0 ? 0 : -1);\n }\n },\n dependencies: [NgClass, RecordSelectorComponent, MatTooltipModule, i1$2.MatTooltip, PrimaveraI18nModule, i1.PriI18nDirective, i1.PriI18nPipe, ComponentsModule, i2$1.DropDownEditionHistoryDirective],\n styles: [\"po-view-title .view-title{margin-bottom:1rem;display:flex;align-items:center;position:relative;overflow:hidden;flex-shrink:0;padding:0 1.75rem}po-view-title .view-title .view-title-value-wrapper{overflow:hidden;text-overflow:ellipsis}po-view-title .view-title .view-title-value-wrapper .view-title-value{font-size:1.125rem;font-weight:700}po-view-title .view-title .view-title-value-wrapper.history-link{color:var(--theme-100)}po-view-title .view-title .view-title-value-wrapper.history-link:hover .view-title-value{cursor:pointer;text-decoration:underline}po-view-title .view-title .view-title-value-wrapper:not(.history-link){color:var(--grey-8)}po-view-title .view-title .icon-information{margin-left:.5rem;color:var(--theme-100)}po-view-title .view-title .icon-information.disabled{pointer-events:none;color:var(--grey-6)}po-view-title .view-title .icon-information:hover{cursor:pointer}po-view-title .view-title .record-selector-wrapper{margin-left:.5rem}po-view-title .view-title .document-states{margin-left:0;display:flex}po-view-title .view-title .document-states .state-label-wrapper{color:#fff;display:flex;align-items:center;padding:.0625rem .25rem;margin-left:.5rem}po-view-title .view-title .document-states .state-label-wrapper.deleted{background-color:var(--error-100)}po-view-title .view-title .document-states .state-label-wrapper.inactive{background-color:var(--warning-100)}po-view-title .view-title .document-states .state-label-wrapper .state-label{font-weight:700;font-size:.625rem;text-transform:uppercase}po-view-title .view-title .document-states .is-lock-description-wrapper{display:flex;align-items:center;margin-left:.5rem}po-view-title .view-title .document-states .is-lock-description-wrapper .is-lock-description{background-color:var(--grey-6);color:#fff;padding:1px;display:flex;align-items:center;padding-left:.25rem;padding-right:.25rem}po-view-title .view-title .document-states .is-lock-description-wrapper .is-lock-description .is-lock-span{font-weight:700;font-size:.625rem;text-transform:uppercase}po-view-title .view-title .document-states .is-lock-description-wrapper .help-lock-description-tooltip{margin-left:.5rem;display:flex;align-items:center;justify-content:center;border-radius:100%;color:var(--grey-6);font-weight:700;font-size:.625rem;cursor:pointer;border:.0625rem solid var(--grey-6);background-color:transparent;width:1rem;height:1rem;flex-shrink:0}po-view-title .view-title .document-states .is-lock-description-wrapper .help-lock-description-tooltip:hover{background:var(--grey-6);color:#fff}@media only screen and (max-width: 767px){po-view-title .view-title{padding:0 .5rem;margin-bottom:.5rem}po-view-title .view-title .view-title-value-wrapper .view-title-value{font-size:.875rem}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return ViewTitleComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet LayoutRootComponent = /*#__PURE__*/(() => {\n class LayoutRootComponent {\n constructor() {\n this.editorIsVisible = signal(true);\n this.hasActions = false;\n this.hasErrorInLoading = false;\n // Sidebar related\n this.sidebarIsVisible = false;\n this.sidebarIsCollapsed = false;\n this.ready = signal(false);\n this.shellStateService = inject(ShellStateService);\n this.progressBars = [];\n this.sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this.appContextService = inject(AppContextService);\n this.shellConfigurationService = inject(ShellConfigurationService);\n this.zopimService = inject(ZopimService);\n this.broadcastService = inject(BroadcastService);\n this.hotKeysService = inject(HotkeysService);\n this.deviceService = inject(DeviceService);\n this.upgradeApplicationService = inject(UpgradeApplicationService);\n this.settingsService = inject(SettingsService);\n this.domService = inject(DomService);\n this.identityService = inject(IdentityService);\n this.rightPanelService = inject(RightPanelService);\n this.i18nService = inject(I18nService);\n this.errorsService = inject(ErrorsService);\n this.storageService = inject(StorageService);\n this.destroyRef = inject(DestroyRef);\n this.environmentSettings = inject(EnvironmentSettings);\n this.ngZone = inject(NgZone);\n this.userEngagementService = inject(UserEngagementService);\n this.roleService = inject(RoleService);\n this.companyDependentService = inject(CompanyDependentService);\n this.userSettingsService = inject(UserSettingsService);\n this.themeService = inject(ThemeService);\n this.appInitializerCustomService = inject(AppInitializerCustomService);\n this.readShellConfiguration();\n }\n onResize() {\n this.onWindowResize();\n }\n onToggleSidebarState() {\n this.sidebarIsCollapsed = !this.sidebarIsCollapsed;\n if (!this.deviceService.greaterThanMdBreakpoint) {\n this.broadcastService.emit(SHELL_CONTEXT_BAR_ONLY_CLOSE);\n }\n }\n ngOnInit() {\n this.addHotKeys();\n this.broadcastService.subscribe('hasErrorInLoading', data => this.hasErrorInLoading = data);\n this.broadcastService.subscribe('onToggleSidebarState', () => this.onToggleSidebarState());\n this.broadcastService.subscribe(SHELL_CLOSE_SIDEBAR_STATE, () => this.closeSidebar());\n this.broadcastService.subscribe('addProgressBar', data => this.handleDownloadPanelComponent(data));\n this.listenRightPanelOpen();\n this.listenRightPanelClose();\n this.broadcastService.subscribe('navigateToHomePage', () => this.sidebarService.navigateToHomePage());\n this.shellStateService.refreshView$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => {\n this.refreshView();\n });\n }\n ngAfterContentChecked() {\n this.hasActions = this.wrapper?.nativeElement?.querySelector('.actions-wrapper') ? true : false;\n if (this.hasActions) {\n this.actionsHeight = this.wrapper?.nativeElement?.querySelector('.actions-wrapper')?.offsetHeight;\n } else {\n this.actionsHeight = 0;\n }\n }\n /** What happens when a sidebar item is clicked. */\n onSidebarItemClick() {\n if (this.sidebarStartBehavior === \"default\" /* SidebarStartBehavior.Default */ || !this.deviceService.greaterThanMdBreakpoint) {\n this.closeSidebar();\n const storageKey = this.sidebarCollapsedStorageKey();\n this.storageService.set(storageKey, JSON.stringify(this.sidebarIsCollapsed));\n this.sidebarStartBehavior = \"collapsed\" /* SidebarStartBehavior.Collapsed */;\n }\n }\n async initializedShellRequiredServices() {\n try {\n // Initialize app context\n await this.appContextService.loadContextFromServer();\n // Initialize theme\n await this.initializeTheme();\n if (this.appContextService.hasErrorInContextLoading) {\n return;\n }\n // Initialize roles\n await this.roleService.initialize();\n // Initialize companies\n await this.companyDependentService.initialize();\n // Initialize custom app initialize service\n await this.appInitializerCustomService.initialize();\n } catch {\n this.showInitErrorMessage();\n }\n }\n /**\n * Base on the app context configuration, selects the user theme.\n */\n async initializeTheme() {\n const isElevation = await this.settingsService.isElevationFW();\n let theme;\n if (isElevation) {\n theme = this.appContextService.getContext().appTheme;\n } else {\n const setting = await this.userSettingsService.getCurrentUserSetting('appTheme');\n theme = setting?.value;\n }\n await this.themeService.addTheme(theme);\n }\n listenRightPanelOpen() {\n this.rightPanelService.openRightPanel$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(config => {\n if (this.rightPanelService.currentOpenComponentRef) {\n this.rightPanelService.closeRightPanel$.next({\n componentRef: this.rightPanelService.currentOpenComponentRef,\n onCloseFinish: () => this.handleRightPanelComponentOpen(config)\n });\n } else {\n this.handleRightPanelComponentOpen(config);\n }\n });\n }\n listenRightPanelClose() {\n this.rightPanelService.closeRightPanel$.pipe(filter$1(({\n componentRef\n }) => {\n if (!componentRef) {\n componentRef = this.rightPanelService.currentOpenComponentRef;\n }\n return Boolean(componentRef);\n }), takeUntilDestroyed(this.destroyRef)).subscribe(callBackValue => this.handleRightPanelComponentClose(callBackValue));\n }\n async readShellConfiguration() {\n await this.i18nService.load();\n this.shellConfigurationService.getShellOptions().subscribe(async shellOptions => {\n this.configuration = shellOptions;\n await this.checkToUpdates();\n });\n }\n async checkToUpdates() {\n await this.initializedShellRequiredServices();\n const isElevation = await this.settingsService.isElevationFW();\n if (isElevation || this.environmentSettings?.requireUpgrade) {\n this.upgradeApplicationService.upgradeApplication().then(async data => {\n if (data) {\n this.removeMainLoader();\n this.handleUpgradeComponent();\n } else {\n await this.init();\n }\n }).catch(() => {\n this.showInitErrorMessage();\n });\n } else {\n await this.init();\n }\n }\n removeMainLoader() {\n if (this.domService.document.getElementsByClassName('main-loader')?.length > 0) {\n document.body.classList.remove('is-app-initializing');\n this.domService.document.getElementsByClassName('main-loader')[0].remove();\n }\n }\n appReady() {\n this.removeMainLoader();\n this.ready.set(true);\n }\n async handleContextBarComponent() {\n const isElevation = await this.settingsService.isElevationFW();\n if (isElevation) {\n this.domService.appendComponentToBodyAndGetReference(ContextBarComponent);\n }\n }\n handleUpgradeComponent() {\n const upgradeComponentRef = this.domService.appendComponentToBodyAndGetReference(PriUpgradeComponent);\n upgradeComponentRef.instance.upgradeCompleted.pipe(take$1(1)).subscribe(() => {\n this.domService.removeComponentFromBody(upgradeComponentRef);\n this.init();\n });\n }\n handleDownloadPanelComponent({\n overlay,\n progressBar\n }) {\n this.progressBars.push(progressBar);\n const downloadComponentData = {\n progressBars: this.progressBars,\n overlay\n };\n const downloadComponentRef = this.domService.appendComponentToBodyAndGetReference(DownloadsPanelComponent, downloadComponentData);\n const {\n total,\n onComplete,\n onAllComplete\n } = progressBar;\n const {\n instance\n } = downloadComponentRef;\n onComplete.pipe(take$1(total)).subscribe(uid => instance.downloadComplete(uid));\n onAllComplete.pipe(take$1(1)).subscribe(uid => {\n instance.allDownloadComplete(uid);\n this.progressBars = [];\n setTimeout(() => this.domService.removeComponentFromBody(downloadComponentRef), 300);\n });\n }\n handleRightPanelComponentOpen(config) {\n const rightPanelComponentData = {\n config: {\n ...config,\n closeOnOutsideClick: config.closeOnOutsideClick ?? true\n }\n };\n const rightPanelComponentRef = this.domService.appendComponentToBodyAndGetReference(RightPanelComponent, rightPanelComponentData, this.domService.findElementsByClassName('page-container')[0]);\n this.rightPanelService.currentOpenComponentRef = rightPanelComponentRef;\n const {\n instance\n } = rightPanelComponentRef;\n instance.open();\n }\n handleRightPanelComponentClose(callBackValue) {\n if (this.rightPanelService.currentOpenComponentRef?.instance?.panelIsOpened()) {\n this.rightPanelService.currentOpenComponentRef.instance.panelIsOpened.set(false);\n const cssAnimationDurationInMS = 300;\n setTimeout(() => {\n this.rightPanelService.onDestroy$.next();\n this.rightPanelService.currentOpenComponentRef?.destroy();\n this.rightPanelService.currentOpenComponentRef = null;\n callBackValue?.onCloseFinish?.();\n }, cssAnimationDurationInMS);\n }\n }\n async init() {\n if (!this.configuration) {\n this.showInitErrorMessage();\n return;\n }\n await this.handleContextBarComponent();\n await this.parseConfigurationUris();\n this.onWindowResize();\n // Initialize user engagement services\n await this.userEngagementService.initialize();\n if (this.environmentSettings.userEngagement?.zendesk?.endpoint?.length) {\n this.zopimService.init(this.environmentSettings.userEngagement.zendesk.endpoint);\n }\n this.appReady();\n }\n async parseConfigurationUris() {\n const {\n visible,\n startBehavior\n } = this.configuration.sidebar;\n this.sidebarIsVisible = visible;\n this.sidebarStartBehavior = startBehavior;\n this.sidebarIsCollapsed = startBehavior == \"collapsed\" /* SidebarStartBehavior.Collapsed */;\n }\n addHotKeys() {\n const hotkeysDefinitions = [{\n // Ctrl + Alt + M => Toggle Sidebar\n hotkey: [17 /* HotkeysKeys.Ctrl */, 18 /* HotkeysKeys.Alt */, 77 /* HotkeysKeys.M */],\n action: () => this.onToggleSidebarState()\n }];\n this.hotKeysService.addHotkeys(hotkeysDefinitions);\n }\n onWindowResize() {\n const isSidebarCollapsedUserPreference = this.getSidebarCollapsedUserSetting();\n // For big screen\n if (this.deviceService.greaterThanMdBreakpoint) {\n this.sidebarIsCollapsed = isSidebarCollapsedUserPreference;\n }\n // For small screen\n else if (!this.deviceService.isMobileBrowser) {\n this.closeSidebar();\n }\n }\n /**\n * Closes the sidebar.\n */\n closeSidebar() {\n this.sidebarIsCollapsed = true;\n this.sidebarComponent?.searchComponent?.cleanText();\n this.sidebarComponent?.searchComponent?.hideDropDownMenuEvent.emit();\n }\n /**\n * Get the user setting for the sidebar collapsed state.\n * If the user setting is not found, it will be set to the default value from the General Settings configuration.\n *\n * @returns The user setting for the sidebar collapsed state.\n */\n getSidebarCollapsedUserSetting() {\n let menuSettingsCollapsed = this.configuration?.sidebar.startBehavior === \"collapsed\" /* SidebarStartBehavior.Collapsed */;\n const storageKey = this.sidebarCollapsedStorageKey();\n let sidebarCollapsedUserSetting;\n try {\n sidebarCollapsedUserSetting = JSON.parse(this.storageService.get(storageKey));\n } catch (e) {\n sidebarCollapsedUserSetting = null;\n }\n if (sidebarCollapsedUserSetting !== undefined && sidebarCollapsedUserSetting !== null) {\n menuSettingsCollapsed = sidebarCollapsedUserSetting;\n } else {\n // Starting in mobile, the sidebar should be collapsed by default\n if (!this.deviceService.greaterThanMdBreakpoint) {\n menuSettingsCollapsed = true;\n }\n this.storageService.set(storageKey, JSON.stringify(menuSettingsCollapsed));\n }\n return menuSettingsCollapsed;\n }\n /**\n * Returns the storage key for the sidebar collapsed state.\n *\n * @returns The storage key for the sidebar collapsed state.\n */\n sidebarCollapsedStorageKey() {\n let storageKey = 'userSettingsStorage-';\n storageKey += this.identityService.getUser()?.id ? `${this.identityService.getUser()?.id}-` : '';\n storageKey += 'sidebarCollapsed';\n return storageKey;\n }\n /**\n * Refreshes the view by hiding and showing the editor and reloading all components.\n */\n refreshView() {\n // Remove components from the DOM to reload all components.\n this.ready.set(false);\n this.editorIsVisible.set(false);\n // Add components to the DOM to reload all components.\n this.ngZone.onMicrotaskEmpty.pipe(take$1(1)).subscribe(() => {\n this.ready.set(true);\n // Add a timeout to avoid showing the editor transition effect\n // 200ms is the duration of the editor transition effect\n setTimeout(() => {\n this.editorIsVisible.set(true);\n }, 200);\n });\n }\n /**\n * Displays an initialization error message to the user.\n */\n showInitErrorMessage() {\n this.errorInContext = true;\n this.appReady();\n this.errorsService.showErrorMessage({\n message: this.i18nService.get('shell.components.RES_Error_OnApplicationInit'),\n canBackToHome: false,\n canBackToPreviousPage: false,\n canGoToSubscriptionsPage: true\n });\n }\n static {\n this.ɵfac = function LayoutRootComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LayoutRootComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: LayoutRootComponent,\n selectors: [[\"po-layout-root\"]],\n viewQuery: function LayoutRootComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c43, 5);\n i0.ɵɵviewQuery(SidebarComponent, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.wrapper = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sidebarComponent = _t.first);\n }\n },\n hostBindings: function LayoutRootComponent_HostBindings(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵlistener(\"resize\", function LayoutRootComponent_resize_HostBindingHandler() {\n return ctx.onResize();\n }, false, i0.ɵɵresolveWindow);\n }\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 2,\n vars: 2,\n consts: [[\"wrapper\", \"\"], [1, \"root-container\"], [3, \"changeSidebarState\", \"sidebarIsVisible\", \"sidebarIsCollapsed\"], [1, \"page-container\"], [3, \"sidebarIsCollapsed\"], [1, \"po-editor-view\", 3, \"ngClass\"], [1, \"router-wrapper\", 3, \"ngClass\"], [3, \"sidebarItemClick\", \"sidebarIsCollapsed\"], [1, \"page-overlay\", 3, \"ngClass\"]],\n template: function LayoutRootComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, LayoutRootComponent_Conditional_0_Template, 11, 13, \"div\", 1)(1, LayoutRootComponent_Conditional_1_Template, 2, 0, \"div\", 1);\n }\n if (rf & 2) {\n i0.ɵɵconditional(ctx.ready() && !ctx.errorInContext ? 0 : -1);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.errorInContext ? 1 : -1);\n }\n },\n dependencies: [ShellModule, CommonModule, i3.NgClass, ComponentsModule, PrimaveraI18nModule, RouterModule, i2.RouterOutlet, SidebarComponent, ViewTitleComponent, TopbarComponent, AlertBarComponent],\n styles: [\"po-layout-root{width:100%;height:100%}po-layout-root .root-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden}po-layout-root .root-container .page-container{display:flex;width:100%;height:100%;overflow:hidden;position:relative}po-layout-root .root-container .page-container .po-editor-view{display:flex;width:100%;height:100%;padding-top:1.75rem;overflow:hidden;flex-direction:column;transition:all .2s ease}po-layout-root .root-container .page-container .po-editor-view .router-wrapper{width:100%;height:100%;min-height:0;overflow-x:hidden;overflow-y:auto;padding:0 1.75rem}po-layout-root .root-container .page-container .po-editor-view .router-wrapper.has-footer{padding-bottom:.5rem}po-layout-root .root-container .page-container .po-editor-view .router-wrapper .actions-wrapper{position:fixed;background-color:var(--grey-3);margin:0 1.75rem;right:0;bottom:0;z-index:1003;border-top:.0625rem solid var(--theme-100);transition:all .2s ease;padding:.25rem 0;left:0}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible{margin-left:16rem}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible .router-wrapper .actions-wrapper{left:16rem}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible.sidebar-collapsed{margin-left:3.5rem}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible.sidebar-collapsed .router-wrapper .actions-wrapper{left:3.5rem}po-layout-root .page-overlay{z-index:99999;position:fixed;top:0;left:0;width:100%;height:100%;text-align:center;background-color:#00000059}po-layout-root .page-overlay.background-solid{background-color:var(--grey-3)}@media only screen and (max-width: 767px){po-layout-root{width:100%;height:100%}po-layout-root .root-container .page-container .po-editor-view{padding-top:1rem;margin-left:0}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible{margin-left:0}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible.sidebar-collapsed{margin-left:0}po-layout-root .root-container .page-container .po-editor-view.sidebar-visible.sidebar-collapsed .router-wrapper .actions-wrapper{left:0}po-layout-root .root-container .page-container .po-editor-view .router-wrapper{padding:0 .5rem}po-layout-root .root-container .page-container .po-editor-view .router-wrapper .actions-wrapper{left:0;margin:0 .5rem}}\\n\"],\n encapsulation: 2\n });\n }\n }\n return LayoutRootComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Responsible to create the modal styling.\n */\nlet ModalWrapperComponent = /*#__PURE__*/(() => {\n class ModalWrapperComponent {\n constructor() {\n /** Modal title. */\n this.title = '';\n /** Whether the close button should be shown. */\n this.showCloseButton = false;\n /** Modal background color. */\n this.backgroundColor = 0 /* ModalWrapperBackgroundColorEnum.White */;\n /** Modal size. */\n this.modalSize = 4 /* ModalSize.AdjustToContent */;\n /** Event which is emitted each time the user closes the modal. */\n this.closeEvent = new EventEmitter();\n this.hasActions = false;\n this.FieldsSizeEnum = FieldsSizeEnum;\n this.domService = inject(DomService);\n this.routeHelperService = inject(RouteHelperService);\n this.activatedRoute = inject(ActivatedRoute);\n }\n /** Gets the size css class name. */\n get sizeClass() {\n switch (this.modalSize) {\n case 0 /* ModalSize.Small */:\n return 'modal-size-small';\n case 1 /* ModalSize.Medium */:\n return 'modal-size-medium';\n case 2 /* ModalSize.Large */:\n return 'modal-size-large';\n case 3 /* ModalSize.Fullscreen */:\n return 'modal-size-fullscreen';\n case 4 /* ModalSize.AdjustToContent */:\n return 'modal-size-adjust-to-content';\n }\n }\n ngAfterViewInit() {\n this.popupVisibilityEventSubscription = this.routeHelperService.popupVisibilityChangedEvent(this.activatedRoute).subscribe(state => {\n this.changeAllowFocusOnlyOnPopup(state);\n });\n }\n ngAfterContentChecked() {\n this.hasActions = this.wrapper?.nativeElement?.querySelector('.actions-wrapper') ? true : false;\n if (this.hasActions) {\n this.actionsHeight = this.wrapper?.nativeElement?.querySelector('.actions-wrapper')?.offsetHeight;\n } else {\n this.actionsHeight = 0;\n }\n }\n ngOnDestroy() {\n if (this.popupVisibilityEventSubscription) {\n this.popupVisibilityEventSubscription.unsubscribe();\n }\n this.unsubscribeFocusEvents();\n }\n /** Handles each time a click on the close button is performed. */\n close() {\n this.closeEvent.emit();\n }\n /**\n * Changes the focus allowance only on popup state.\n *\n * @param state new focus allowance state.\n */\n changeAllowFocusOnlyOnPopup(state) {\n if (state) {\n this.keyDownSubscriptionEvent = event => {\n if (event.keyCode === 9) {\n setTimeout(() => {\n this.unFocusElementNotInsideModal();\n });\n }\n };\n document.addEventListener('keydown', this.keyDownSubscriptionEvent);\n this.focusSubscriptionEvent = () => {\n setTimeout(() => {\n this.unFocusElementNotInsideModal();\n });\n };\n window.addEventListener('focus', this.focusSubscriptionEvent);\n } else {\n document.removeEventListener('keydown', this.keyDownSubscriptionEvent);\n window.removeEventListener('focus', this.focusSubscriptionEvent);\n }\n }\n /**\n * Unfocused a dom element if it is not a child of the the ModalWrapperComponent component.\n */\n unFocusElementNotInsideModal() {\n const focusedElement = document.activeElement;\n if (focusedElement) {\n if (!this.isElementInsideModal(focusedElement)) {\n this.unfocusedElement(focusedElement);\n }\n }\n }\n /**\n * Determines whether element is inside of the ModalWrapperComponent component.\n *\n * @param element Dom element.\n * @returns Whether element is inside of the ModalWrapperComponent component.\n */\n isElementInsideModal(element) {\n return this.domService.findAncestorByDomElementName(element, 'po-modal-wrapper') ? true : false;\n }\n /**\n * Unfocused a given element.\n *\n * @param element Element to be unfocused.\n */\n unfocusedElement(element) {\n element.focus();\n setTimeout(() => {\n element.blur();\n });\n }\n /**\n * Unsubscribes all focus event listener.\n */\n unsubscribeFocusEvents() {\n document.removeEventListener('keydown', this.keyDownSubscriptionEvent);\n window.removeEventListener('focus', this.focusSubscriptionEvent);\n }\n static {\n this.ɵfac = function ModalWrapperComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ModalWrapperComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ModalWrapperComponent,\n selectors: [[\"po-modal-wrapper\"]],\n viewQuery: function ModalWrapperComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c43, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.wrapper = _t.first);\n }\n },\n inputs: {\n title: \"title\",\n showCloseButton: \"showCloseButton\",\n backgroundColor: \"backgroundColor\",\n modalSize: \"modalSize\"\n },\n outputs: {\n closeEvent: \"closeEvent\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n ngContentSelectors: _c47,\n decls: 5,\n vars: 7,\n consts: [[\"wrapper\", \"\"], [1, \"po-modal-wrapper-card\", 3, \"ngClass\"], [1, \"po-modal-wrapper-title\"], [1, \"po-modal-wrapper-content\", \"po-editor-view\", 3, \"ngClass\"], [1, \"close-button\", 3, \"options\"], [1, \"close-button\", 3, \"action\", \"options\"]],\n template: function ModalWrapperComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef();\n i0.ɵɵelementStart(0, \"div\", 1);\n i0.ɵɵtemplate(1, ModalWrapperComponent_Conditional_1_Template, 5, 4, \"div\", 2);\n i0.ɵɵelementStart(2, \"div\", 3, 0);\n i0.ɵɵprojection(4);\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"ngClass\", ctx.sizeClass);\n i0.ɵɵadvance();\n i0.ɵɵconditional(ctx.title || ctx.showCloseButton ? 1 : -1);\n i0.ɵɵadvance();\n i0.ɵɵstyleProp(\"margin-bottom\", ctx.actionsHeight, \"px\");\n i0.ɵɵproperty(\"ngClass\", i0.ɵɵpureFunction1(5, _c45, ctx.hasActions));\n }\n },\n dependencies: [CommonModule, i3.NgClass, PrimaveraI18nModule, i1.PriI18nPipe, CloseButtonComponent],\n styles: [\"po-modal-wrapper{position:fixed;background-color:#00000059;width:100%;height:100%;top:0;left:0;z-index:1043;display:flex;align-items:center;justify-content:center}po-modal-wrapper .po-modal-wrapper-card{border-radius:.25rem;box-shadow:0 .3125rem .5rem var(--shadow-6);background-color:var(--grey-3);display:flex;flex-direction:column;position:relative}@media only screen and (max-width: 767px){po-modal-wrapper .po-modal-wrapper-card{width:100%!important;height:100%!important;border-radius:0}}po-modal-wrapper .po-modal-wrapper-card.modal-size-small{width:40%;height:40%}po-modal-wrapper .po-modal-wrapper-card.modal-size-medium{width:60%;height:60%}po-modal-wrapper .po-modal-wrapper-card.modal-size-large{width:80%;height:80%}po-modal-wrapper .po-modal-wrapper-card.modal-size-fullscreen{width:100%;height:100%;border-radius:0}po-modal-wrapper .po-modal-wrapper-card.modal-size-adjust-to-content{width:auto;height:auto}po-modal-wrapper .po-modal-wrapper-card.modal-background-color-white,po-modal-wrapper .po-modal-wrapper-card.modal-background-color-gray{background-color:var(--grey-3)}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-title{font-size:1.25rem;font-weight:700;display:flex;align-items:center;flex-shrink:0;padding:1.5rem 1.5rem 1rem}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-title .close-button{position:absolute;top:.75rem;right:.75rem}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-content{overflow-y:auto;height:100%;margin:0;padding:0 1.5rem}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-content .po-modal-router-container{max-height:100%}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-content .po-modal-router-container .actions-wrapper{position:absolute;background-color:var(--grey-3);margin:0 1.5rem;left:0;right:0;bottom:0;z-index:1003;padding:1rem 0 1.5rem;border:none}po-modal-wrapper .po-modal-wrapper-card .po-modal-wrapper-content.has-footer{padding-bottom:.5rem}\\n\"],\n encapsulation: 2\n });\n }\n }\n return ModalWrapperComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Responsible to inject components associated with a specific uri\n */\nlet ModalRouterInjectorComponent = /*#__PURE__*/(() => {\n class ModalRouterInjectorComponent {\n constructor() {\n /** Modal background color. */\n this.modalBackgroundColor = 1 /* ModalWrapperBackgroundColorEnum.Gray */;\n /** Modal title. */\n this.viewTitle = '';\n /** Modal size. */\n this.modalSize = 2 /* ModalSize.Large */;\n /** Wether is to show or hide the modal close button. */\n this.showCloseButton = false;\n this.activatedRoute = inject(ActivatedRoute);\n this.broadcastService = inject(BroadcastService);\n this.routerHelperService = inject(RouteHelperService);\n this.viewTitleService = inject(ViewTitleService);\n this.ngZone = inject(NgZone);\n this.destroyRef = inject(DestroyRef);\n this.broadcastService.subscribe('eventTitleChanged', changes => {\n if (changes.outlet && changes.outlet === OutletEnum.Popup) {\n this.ngZone.onMicrotaskEmpty.pipe(take(1)).subscribe(() => {\n this.viewTitle = changes.value;\n });\n }\n });\n this.viewTitleService.viewTitleChange$.pipe(filter(definition => definition.outlet === OutletEnum.Popup), takeUntilDestroyed(this.destroyRef)).subscribe(definition => {\n this.ngZone.onMicrotaskEmpty.pipe(take(1)).subscribe(() => {\n this.viewTitle = definition.title;\n });\n });\n this.navigationSubscription = this.routerHelperService.navigationEndEvent().subscribe(() => {\n if (this.popupId) {\n this.create();\n }\n this.popupId = this.activatedRoute.snapshot.queryParams['popupid'];\n });\n }\n ngOnDestroy() {\n if (this.navigationSubscription) {\n this.navigationSubscription.unsubscribe();\n }\n }\n ngOnInit() {\n this.create();\n }\n create() {\n // first activatedRoute is from the main.routes.ts (1st lazy load)\n // in this case we want the last children route\n const outletActivatedRouteData = this.routerHelperService.getDataFromRoute(this.activatedRoute);\n const routeModalSize = outletActivatedRouteData['popupSize'];\n this.showCloseButton = outletActivatedRouteData['showCloseButton'] ? true : false;\n if (outletActivatedRouteData['title']) {\n this.viewTitle = outletActivatedRouteData['title'];\n }\n if (routeModalSize?.toString().length) {\n this.modalSize = routeModalSize;\n }\n }\n /** Handles a close modal event. */\n close() {\n this.routerHelperService.closeOutlet(OutletEnum.Popup);\n }\n static {\n this.ɵfac = function ModalRouterInjectorComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ModalRouterInjectorComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: ModalRouterInjectorComponent,\n selectors: [[\"po-modal-router-injector\"]],\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 3,\n vars: 4,\n consts: [[3, \"closeEvent\", \"backgroundColor\", \"title\", \"modalSize\", \"showCloseButton\"], [1, \"po-modal-router-container\"]],\n template: function ModalRouterInjectorComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"po-modal-wrapper\", 0);\n i0.ɵɵlistener(\"closeEvent\", function ModalRouterInjectorComponent_Template_po_modal_wrapper_closeEvent_0_listener() {\n return ctx.close();\n });\n i0.ɵɵelementStart(1, \"div\", 1);\n i0.ɵɵelement(2, \"router-outlet\");\n i0.ɵɵelementEnd()();\n }\n if (rf & 2) {\n i0.ɵɵproperty(\"backgroundColor\", ctx.modalBackgroundColor)(\"title\", ctx.viewTitle)(\"modalSize\", ctx.modalSize)(\"showCloseButton\", ctx.showCloseButton);\n }\n },\n dependencies: [ModalWrapperComponent, RouterOutlet],\n encapsulation: 2\n });\n }\n }\n return ModalRouterInjectorComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Responsible to inject components associated with a specific uri\n */\nlet PanelRouterInjectorComponent = /*#__PURE__*/(() => {\n class PanelRouterInjectorComponent {\n constructor() {\n this.hasActions = false;\n this.destroy$ = new Subject();\n this.onOutletClose = false;\n this.activatedRoute = inject(ActivatedRoute);\n this.broadcastService = inject(BroadcastService);\n this.routeHelperService = inject(RouteHelperService);\n this.rightPanelService = inject(RightPanelService);\n this.viewTitleService = inject(ViewTitleService);\n }\n ngOnInit() {\n // Gets the injector component form the route data definition.\n const currentRoute = this.routeHelperService.getRouteFromOutlet(this.activatedRoute);\n this.injectableComponent = currentRoute.component;\n if (this.injectableComponent) {\n this.listenRightPanelClose();\n this.listenEventTitleChanges();\n this.listenViewTitleChanges();\n this.openRightPanel();\n }\n // Listen to outlet event close of type Panel ensure the closure of the right panel.\n // The right panel is closed when the outlet is closed.\n this.routeHelperService.onOutletClose(OutletEnum.Panel).pipe(takeUntil(this.destroy$)).subscribe(() => {\n // Avoid satck overflow\n // This component handles the outlet close event and also the listenRightPanelClose\n // event. When the outlet is closed, the listenRightPanelClose event is triggered\n // and the outlet is closed again. This is a workaround to avoid this behavior.\n this.onOutletClose = true;\n // The right panel is closed when the outlet is closed.\n this.rightPanelService?.closeRightPanel$?.next({\n componentRef: null\n });\n });\n }\n ngAfterContentChecked() {\n const actionsWrapper = this.container?.nativeElement?.querySelector('.actions-wrapper');\n if (actionsWrapper) {\n this.hasActions = true;\n this.actionsHeight = actionsWrapper.offsetHeight;\n } else {\n this.hasActions = false;\n this.actionsHeight = 0;\n }\n }\n ngOnDestroy() {\n this.destroy$.next();\n this.destroy$.unsubscribe();\n if (this.eventTitleChangedSubscription) {\n this.eventTitleChangedSubscription();\n this.eventTitleChangedSubscription = undefined;\n }\n }\n openRightPanel() {\n this.rightPanelService.openRightPanel$.next({\n body: this.body,\n bodyID: 'panel-router',\n closeOnOutsideClick: false\n });\n }\n /**\n * Subscribes to the close right panel event to close outlet when it's active.\n */\n listenRightPanelClose() {\n this.rightPanelService.closeRightPanel$.pipe(filter(({\n componentRef\n }) => {\n if (this.onOutletClose) {\n this.onOutletClose = false;\n return false;\n }\n if (!componentRef) {\n componentRef = this.rightPanelService.currentOpenComponentRef;\n }\n return componentRef?.instance?.config?.bodyID === 'panel-router';\n }), takeUntil(this.destroy$)).subscribe(({\n data\n }) => {\n if (this.routeHelperService.isOutletActive(this.activatedRoute, OutletEnum.Panel)) {\n this.routeHelperService.closeOutlet(OutletEnum.Panel, false, data);\n }\n });\n }\n /**\n * Subscribes to title event in order to defined the right bar title.\n */\n listenEventTitleChanges() {\n this.eventTitleChangedSubscription = this.broadcastService.subscribe('eventTitleChanged', changes => {\n if (changes?.outlet === OutletEnum.Popup) {\n this.rightPanelService.title$.next(changes.value);\n }\n });\n }\n /**\n * Subscribes to the close right panel event in order no close the panel outlet.\n */\n listenViewTitleChanges() {\n this.viewTitleService.viewTitleChange$.pipe(filter(({\n outlet\n }) => outlet === OutletEnum.Panel), takeUntil(this.destroy$)).subscribe(({\n title\n }) => {\n this.rightPanelService.title$.next(title);\n });\n }\n static {\n this.ɵfac = function PanelRouterInjectorComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || PanelRouterInjectorComponent)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: PanelRouterInjectorComponent,\n selectors: [[\"po-panel-router-injector\"]],\n viewQuery: function PanelRouterInjectorComponent_Query(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵviewQuery(_c20, 7, TemplateRef);\n i0.ɵɵviewQuery(_c49, 5);\n }\n if (rf & 2) {\n let _t;\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.body = _t.first);\n i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.container = _t.first);\n }\n },\n inputs: {\n injectableComponent: \"injectableComponent\"\n },\n standalone: true,\n features: [i0.ɵɵStandaloneFeature],\n decls: 2,\n vars: 0,\n consts: [[\"body\", \"\"], [\"container\", \"\"], [1, \"panel-router-wrapper\", \"po-editor-view\", 3, \"ngClass\"]],\n template: function PanelRouterInjectorComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵtemplate(0, PanelRouterInjectorComponent_ng_template_0_Template, 3, 5, \"ng-template\", null, 0, i0.ɵɵtemplateRefExtractor);\n }\n },\n dependencies: [RouterOutlet, NgClass],\n styles: [\".panel-router-wrapper{width:100%;max-height:100%;padding:0 1.25rem;overflow-y:auto}.panel-router-wrapper .actions-wrapper{position:absolute;background-color:var(--grey-1);margin:0 .75rem;left:0;right:0;bottom:0;z-index:1003;border-top:.0625rem solid var(--theme-100);padding:.25rem 0}.panel-router-wrapper.po-editor-view>*{width:100%}.panel-router-wrapper.po-editor-view .po-field-container{padding-right:0}.panel-router-wrapper.has-footer{padding-bottom:.5rem}\\n\"],\n encapsulation: 2\n });\n }\n }\n return PanelRouterInjectorComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nclass DefaultAction {\n constructor(defaultAction) {\n if (defaultAction) {\n Object.assign(this, defaultAction);\n }\n }\n}\nclass DefaultActionElevation extends DefaultAction {\n constructor(defaultAction) {\n super();\n this.subscriptionClaims = [];\n if (defaultAction) {\n Object.assign(this, defaultAction);\n }\n }\n}\nclass MenuDefinitionElevation extends MenuDefinition {\n constructor(menuDefinition) {\n super();\n /** The menu items. */\n this.menuItems = [];\n if (menuDefinition) {\n Object.assign(this, menuDefinition);\n }\n }\n}\nclass MenuItem {\n constructor(menuItem) {\n this.menuItems = [];\n if (menuItem) {\n Object.assign(this, menuItem);\n }\n this.id ??= GuidService.createUID();\n }\n}\nclass MenuItemElevation extends MenuItem {\n constructor(menuItem) {\n super();\n this.menuItems = [];\n this.isSearchable = false;\n this.isVisible = true;\n this.useCustomUri = false;\n this.subscriptionClaims = [];\n if (menuItem) {\n Object.assign(this, menuItem);\n }\n }\n}\nlet SidebarElevationService = /*#__PURE__*/(() => {\n class SidebarElevationService extends SidebarService {\n constructor() {\n super(...arguments);\n this.appContextService = inject(AppContextService);\n }\n get menuVersion() {\n if (this.appContextService.getContext()?.menuLastModifiedDate) {\n const date = new Date(this.appContextService.getContext().menuLastModifiedDate);\n if (date.toString() !== 'Invalid Date') {\n return date.getTime().toString();\n } else {\n return this.appContextService.getContext()?.menuLastModifiedDate;\n }\n } else {\n return undefined;\n }\n }\n /**\n * Retrieves the menu data.\n *\n * @returns The menu definition.\n */\n async getMenuData(url) {\n const menuDefinition = await super.getMenuData(url);\n const menuWithClaims = new MenuDefinitionElevation(this.applyClaimsRestriction(menuDefinition));\n return menuWithClaims;\n }\n applyClaimsRestriction(menuDefinition) {\n const subscriptionClaims = this.appContextService.getSubscriptionClaims();\n menuDefinition.defaultActions = [...this.applyDefaultActionsClaimsRestriction(menuDefinition.defaultActions, subscriptionClaims)];\n menuDefinition.menuItems = [...this.applyMenuItemsClaimsRestriction(menuDefinition.menuItems, subscriptionClaims)];\n return menuDefinition;\n }\n applyDefaultActionsClaimsRestriction(defaultActions, subscriptionClaims) {\n const allowedDefaultActions = defaultActions?.filter(m => {\n if (m.subscriptionClaims?.length > 0) {\n const matchedClaim = m.subscriptionClaims.find(claim => subscriptionClaims.includes(claim));\n return matchedClaim;\n }\n return true;\n });\n if (allowedDefaultActions?.length > 0) {\n return allowedDefaultActions;\n }\n return [];\n }\n applyMenuItemsClaimsRestriction(menuItems, subscriptionClaims) {\n const allowedMenuItems = menuItems?.filter(m => {\n if (m.subscriptionClaims?.length > 0) {\n const matchClaimResult = m.subscriptionClaims.some(claimString => {\n // For single claims, just check if it exists in subscriptionClaims\n if (subscriptionClaims.includes(claimString)) {\n return true;\n }\n // Split each claimString by space\n const splitClaims = claimString.split(' ');\n // For space-separated claims, check if every individual claim from splitClaims exists in subscriptionClaims\n if (splitClaims.length > 1) {\n return splitClaims.every(claim => subscriptionClaims.includes(claim));\n }\n return false;\n });\n return matchClaimResult;\n }\n return true;\n });\n const parentMenuItemsToRemove = [];\n allowedMenuItems.forEach(childMenuItem => {\n if (childMenuItem?.menuItems?.length > 0) {\n const childMenuItems = this.applyMenuItemsClaimsRestriction(childMenuItem.menuItems, subscriptionClaims);\n if (childMenuItems.length === 0) {\n parentMenuItemsToRemove.push(childMenuItem);\n } else {\n childMenuItem.menuItems = childMenuItems;\n }\n }\n });\n const result = allowedMenuItems.filter(allowedMenuItem => !parentMenuItemsToRemove.find(menuToRemove => menuToRemove === allowedMenuItem));\n return result;\n }\n static {\n this.ɵfac = /* @__PURE__ */(() => {\n let ɵSidebarElevationService_BaseFactory;\n return function SidebarElevationService_Factory(__ngFactoryType__) {\n return (ɵSidebarElevationService_BaseFactory || (ɵSidebarElevationService_BaseFactory = i0.ɵɵgetInheritedFactory(SidebarElevationService)))(__ngFactoryType__ || SidebarElevationService);\n };\n })();\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarElevationService,\n factory: SidebarElevationService.ɵfac\n });\n }\n }\n return SidebarElevationService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/** Service that provides the Elevation Sidebar's menu items. */\nlet SidebarMenuItemsProviderElevationService = /*#__PURE__*/(() => {\n class SidebarMenuItemsProviderElevationService extends SearchProvider {\n constructor() {\n super();\n /**\n * Used to store the menu items including the non visible ones.\n * When searching for menu items, the search should be done on all searchable menu items, not only the visible ones.\n */\n this._unfilteredMenuItems = [];\n this._sidebarService = inject(SIDEBAR_PROVIDER_TOKEN);\n this._searchService = inject(SearchService);\n this._i18n = inject(I18nService);\n this._httpClient = inject(HttpClient);\n this._wildcardService = inject(WildcardService);\n this.name = 'menu';\n this._searchService.registerProvider(this);\n }\n /**\n * Retrieves the menu items.\n *\n * @param uri The URI where to obtain the menu items from.\n * @param customUri The URI where to obtain the custom menu items from.\n * @returns A promise with the menu items.\n */\n async getMenuItems(uri, customUri) {\n let menuDefinition = await this._sidebarService.loadMenuDefinition(uri);\n if (!menuDefinition.menuItems) {\n return this._unfilteredMenuItems;\n }\n if (customUri) {\n menuDefinition = await this.mergeCustomMenuDefinition(customUri, menuDefinition);\n }\n this._unfilteredMenuItems = menuDefinition.menuItems ?? [];\n const menuItems = this.filterVisibleMenuItems(this._unfilteredMenuItems);\n await this.mapperMenuItems(menuItems);\n return menuItems;\n }\n /**\n * Finds the search term on the menu items.\n *\n * @param searchTerm The search term to find.\n * @returns A promise with the search results.\n */\n search(searchTerm) {\n return new Promise(resolve => {\n let searchResult = [];\n // Find on root\n const deepFindResult = this.deepFind(searchTerm, this._unfilteredMenuItems, '');\n if (deepFindResult?.length > 0) {\n searchResult = [...searchResult, ...deepFindResult];\n }\n // Find on children\n else {\n this._unfilteredMenuItems.forEach(m => {\n const deepFindResult = this.deepFind(searchTerm, m.menuItems, m.caption);\n if (deepFindResult?.length > 0) {\n searchResult = [...searchResult, ...deepFindResult];\n }\n });\n }\n resolve(searchResult);\n });\n }\n /**\n * Gets an array of menu items from a custom menu definition and merges them with the global menu definition.\n *\n * @param url The URL to get the custom menu items from.\n * @param menuDefinition The base menu definition to add the custom menu items.\n */\n mergeCustomMenuDefinition(url, menuDefinition) {\n return new Promise(resolve => {\n this._httpClient.get(url).pipe(take(1)).subscribe({\n next: customMenuItems => {\n customMenuItems.forEach(customMenuItem => {\n // Search in the first level of the global menu\n const indexOnRoot = menuDefinition.menuItems.findIndex(globalMenuItem => globalMenuItem.id === customMenuItem.id);\n // Found on global menu, merge the custom menu items\n if (indexOnRoot !== -1) {\n menuDefinition.menuItems[indexOnRoot].menuItems.push(...customMenuItem.menuItems);\n }\n // Recursively find the custom menu item it on the root menu menuItems\n else {\n for (const rootMenuItem of menuDefinition.menuItems) {\n if (this.mergeMenuRecursive(customMenuItem, rootMenuItem)) {\n break;\n }\n }\n }\n });\n resolve(menuDefinition);\n },\n error: _err => resolve(menuDefinition)\n });\n });\n }\n /**\n * Recursively filter out menu items that are not visible.\n *\n * @param menuItems The menu items to filter.\n */\n filterVisibleMenuItems(menuItems = []) {\n return deepClone(menuItems).filter(item => {\n if (item.isVisible) {\n if (item.menuItems) {\n item.menuItems = this.filterVisibleMenuItems(item.menuItems);\n }\n return true;\n }\n return false;\n });\n }\n /**\n * Recursively replace parameters on options with custom uri.\n *\n * @param menuItems The menu items to filter.\n */\n async mapperMenuItems(menuItems = []) {\n menuItems.map(async item => {\n // Replace parameters on options with custom uri\n if (item.useCustomUri) {\n item.uri = await firstValueFrom(this._wildcardService.formatOperation(item.uri));\n }\n if (item.menuItems) {\n await this.mapperMenuItems(item.menuItems);\n }\n });\n }\n /**\n * Finds the `MenuItem` on a `MenuItem`'s children and merges their children.\n *\n * @param customMenu The `MenuItem` to search for.\n * @param searchOn The `MenuItem` to search on.\n * @returns\tThe `MenuItem`, if found, or null otherwise.\n */\n mergeMenuRecursive(customMenu, searchOn) {\n const foundOnIndex = searchOn.menuItems.findIndex(child => child.id === customMenu.id);\n // Found the menu\n if (foundOnIndex !== -1) {\n searchOn.menuItems[foundOnIndex].menuItems.push(...customMenu.menuItems);\n return true;\n }\n // Search in the children\n for (const childMenuItem of searchOn.menuItems) {\n this.mergeMenuRecursive(customMenu, childMenuItem);\n }\n return false;\n }\n deepFind(searchTerm, items, parentName) {\n searchTerm = searchTerm.toLowerCase();\n const match = items?.filter(it => it.uri != null && it.caption != null && it.isSearchable && this._i18n.get(it.caption).toLowerCase().normalize('NFD').replace(/[\\u0300-\\u036f]/g, '').includes(searchTerm));\n let res = match?.map(o => {\n const snippet = `
${this._i18n.get(parentName)}
`;\n const r = {\n id: o.uri,\n url: o.uri,\n authorityName: 'menus',\n authorityTitle: 'Menus',\n title: this._i18n.get(o.caption),\n snippet\n };\n return r;\n });\n const subMenus = items?.filter(it => it.menuItems != null);\n if (subMenus?.length > 0) {\n subMenus.forEach(m => {\n if (m.menuItems?.length > 0) {\n // Filter all non empty values from the breadcrumbs\n const breadcrumbs = [this._i18n.get(parentName), this._i18n.get(m.caption)].filter(value => value);\n const deepFindResults = this.deepFind(searchTerm, m.menuItems, breadcrumbs.join('/'));\n if (deepFindResults) {\n res = [...res, ...deepFindResults];\n }\n }\n });\n }\n return res;\n }\n static {\n this.ɵfac = function SidebarMenuItemsProviderElevationService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SidebarMenuItemsProviderElevationService)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: SidebarMenuItemsProviderElevationService,\n factory: SidebarMenuItemsProviderElevationService.ɵfac\n });\n }\n }\n return SidebarMenuItemsProviderElevationService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst addElevationFwShellProviders = [{\n provide: SIDEBAR_PROVIDER_TOKEN,\n useClass: SidebarElevationService\n}, {\n provide: SIDEBAR_MENU_ITEMS_PROVIDER_TOKEN,\n useClass: SidebarMenuItemsProviderElevationService\n}, {\n provide: UserSettingsService,\n useClass: UserSettingsElevationService\n}];\nclass QuickAction {\n constructor(quickAction) {\n if (quickAction) {\n Object.assign(this, quickAction);\n }\n }\n}\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { APPLICATIONS_PROVIDER_TOKEN, ApplicationsMenuComponent, ApplicationsMenuTopbarComponent, ApplicationsMenuUserAreaComponent, CardFiltersEnum, CfsChatbotIntegrationService, DefaultActionElevation, LayoutRootComponent, MenuDefinition, MenuDefinitionElevation, MenuItem, MenuItemElevation, ModalRouterInjectorComponent, NavigationHistory, NotificationTypeEnum, PanelRouterInjectorComponent, QuickAction, SELECTOR_PROVIDER_TOKEN, SHELL_CLOSE_SIDEBAR_STATE, SHELL_CONTEXT_BAR_CLOSE, SHELL_CONTEXT_BAR_HIGHLIGHT, SHELL_CONTEXT_BAR_ONLY_CLOSE, SHELL_CONTEXT_BAR_OPEN, SHELL_CONTEXT_BAR_SHOW_COMPONENT, SHELL_CONTEXT_BAR_TOGGLE, SHELL_CONTEXT_PROPERTY_CHANGED, SHELL_THEME_CHANGED, SIDEBAR_DEFAULT_ACTIONS_PROVIDER_TOKEN, SIDEBAR_DRAFTS_PROVIDER_TOKEN, SIDEBAR_FAVORITES_PROVIDER_TOKEN, SIDEBAR_MENU_ITEMS_PROVIDER_TOKEN, SIDEBAR_NAVIGATION_HISTORY_PROVIDER_TOKEN, SIDEBAR_PROVIDER_TOKEN, SIDEBAR_QUICK_ACTIONS_PROVIDER_TOKEN, SearchProvider, SearchService, SidebarDefaultActionsProviderService, SidebarDraftsProviderService, SidebarElevationService, SidebarFavoritesProviderService, SidebarItemType, SidebarMenuItemsProviderElevationService, SidebarMenuItemsProviderService, SidebarNavigationDirection, SidebarQuickActionsProviderService, SidebarService, SignalRHelper, SignalRService, SignalRStateEnum, TabsGroupsModel, addElevationFwShellProviders };\n"],"mappings":"8zEAAA,IAo9BIA,GAp9BJC,GAAAC,EAAA,KAAAC,KAEAA,KAk9BIH,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,MAAO,CACL,KAAK,UAAO,SAA+BI,EAAmB,CAC5D,OAAO,IAAKA,GAAqBJ,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBK,GAAiB,CAC7C,KAAML,CACR,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAyBM,GAAiB,CAC7C,QAAS,CAACC,GAAiBA,EAAe,CAC5C,CAAC,CACH,CACF,CACA,OAAOP,CACT,GAAG,ICv+BH,IAGaQ,GAgBAC,GAcAC,GAeAC,GAkBAC,GAkBAC,GAkBAC,GAgBAC,GAtHbC,GAAAC,EAAA,KAGaT,GAAN,cAAwB,KAAM,CAMnC,YAAYU,EAAcC,EAAY,CACpC,IAAMC,EAAY,WAAW,UAC7B,MAAM,GAAGF,CAAY,kBAAkBC,CAAU,GAAG,EACpD,KAAK,WAAaA,EAGlB,KAAK,UAAYC,CACnB,CACF,EAEaX,GAAN,cAA2B,KAAM,CAKtC,YAAYS,EAAe,sBAAuB,CAChD,IAAME,EAAY,WAAW,UAC7B,MAAMF,CAAY,EAGlB,KAAK,UAAYE,CACnB,CACF,EAEaV,GAAN,cAAyB,KAAM,CAKpC,YAAYQ,EAAe,qBAAsB,CAC/C,IAAME,EAAY,WAAW,UAC7B,MAAMF,CAAY,EAGlB,KAAK,UAAYE,CACnB,CACF,EAGaT,GAAN,cAAwC,KAAM,CAMnD,YAAYU,EAASC,EAAW,CAC9B,IAAMF,EAAY,WAAW,UAC7B,MAAMC,CAAO,EACb,KAAK,UAAYC,EACjB,KAAK,UAAY,4BAGjB,KAAK,UAAYF,CACnB,CACF,EAGaR,GAAN,cAAqC,KAAM,CAMhD,YAAYS,EAASC,EAAW,CAC9B,IAAMF,EAAY,WAAW,UAC7B,MAAMC,CAAO,EACb,KAAK,UAAYC,EACjB,KAAK,UAAY,yBAGjB,KAAK,UAAYF,CACnB,CACF,EAGaP,GAAN,cAA0C,KAAM,CAMrD,YAAYQ,EAASC,EAAW,CAC9B,IAAMF,EAAY,WAAW,UAC7B,MAAMC,CAAO,EACb,KAAK,UAAYC,EACjB,KAAK,UAAY,8BAGjB,KAAK,UAAYF,CACnB,CACF,EAGaN,GAAN,cAA+C,KAAM,CAK1D,YAAYO,EAAS,CACnB,IAAMD,EAAY,WAAW,UAC7B,MAAMC,CAAO,EACb,KAAK,UAAY,mCAGjB,KAAK,UAAYD,CACnB,CACF,EAGaL,GAAN,cAA8B,KAAM,CAMzC,YAAYM,EAASE,EAAa,CAChC,IAAMH,EAAY,WAAW,UAC7B,MAAMC,CAAO,EACb,KAAK,YAAcE,EAGnB,KAAK,UAAYH,CACnB,CACF,ICpIA,IAGaI,GAWAC,GAdbC,GAAAC,EAAA,KAGaH,GAAN,KAAmB,CACxB,YAAYI,EAAYC,EAAYC,EAAS,CAC3C,KAAK,WAAaF,EAClB,KAAK,WAAaC,EAClB,KAAK,QAAUC,CACjB,CACF,EAKaL,GAAN,KAAiB,CACtB,IAAIM,EAAKC,EAAS,CAChB,OAAO,KAAK,KAAKC,GAAAC,EAAA,GACZF,GADY,CAEf,OAAQ,MACR,IAAAD,CACF,EAAC,CACH,CACA,KAAKA,EAAKC,EAAS,CACjB,OAAO,KAAK,KAAKC,GAAAC,EAAA,GACZF,GADY,CAEf,OAAQ,OACR,IAAAD,CACF,EAAC,CACH,CACA,OAAOA,EAAKC,EAAS,CACnB,OAAO,KAAK,KAAKC,GAAAC,EAAA,GACZF,GADY,CAEf,OAAQ,SACR,IAAAD,CACF,EAAC,CACH,CAOA,gBAAgBA,EAAK,CACnB,MAAO,EACT,CACF,IC7CA,IAOWI,EAPXC,GAAAC,EAAA,KAOWF,EAAwB,SAAUA,EAAU,CAErD,OAAAA,EAASA,EAAS,MAAW,CAAC,EAAI,QAElCA,EAASA,EAAS,MAAW,CAAC,EAAI,QAElCA,EAASA,EAAS,YAAiB,CAAC,EAAI,cAExCA,EAASA,EAAS,QAAa,CAAC,EAAI,UAEpCA,EAASA,EAAS,MAAW,CAAC,EAAI,QAElCA,EAASA,EAAS,SAAc,CAAC,EAAI,WAErCA,EAASA,EAAS,KAAU,CAAC,EAAI,OAC1BA,CACT,EAAEA,GAAY,CAAC,CAAC,ICvBhB,IAGaG,GAHbC,GAAAC,EAAA,KAGaF,GAAN,KAAiB,CACtB,aAAc,CAAC,CAGf,IAAIG,EAAWC,EAAU,CAAC,CAC5B,EAEAJ,GAAW,SAAW,IAAIA,KCqCnB,SAASK,GAAcC,EAAMC,EAAgB,CAClD,IAAIC,EAAS,GACb,OAAIC,GAAcH,CAAI,GACpBE,EAAS,yBAAyBF,EAAK,UAAU,GAC7CC,IACFC,GAAU,eAAeE,GAAkBJ,CAAI,CAAC,MAEzC,OAAOA,GAAS,WACzBE,EAAS,yBAAyBF,EAAK,MAAM,GACzCC,IACFC,GAAU,eAAeF,CAAI,MAG1BE,CACT,CAEO,SAASE,GAAkBJ,EAAM,CACtC,IAAMK,EAAO,IAAI,WAAWL,CAAI,EAE5BM,EAAM,GACV,OAAAD,EAAK,QAAQE,GAAO,CAClB,IAAMC,EAAMD,EAAM,GAAK,IAAM,GAC7BD,GAAO,KAAKE,CAAG,GAAGD,EAAI,SAAS,EAAE,CAAC,GACpC,CAAC,EAEMD,EAAI,OAAO,EAAGA,EAAI,OAAS,CAAC,CACrC,CAGO,SAASH,GAAcM,EAAK,CACjC,OAAOA,GAAO,OAAO,YAAgB,MAAgBA,aAAe,aAEpEA,EAAI,aAAeA,EAAI,YAAY,OAAS,cAC9C,CAEA,SAAsBC,GAAYC,EAAQC,EAAeC,EAAYC,EAAKC,EAASC,EAAS,QAAAC,EAAA,sBAC1F,IAAMC,EAAU,CAAC,EACX,CAACC,EAAMC,CAAK,EAAIC,GAAmB,EACzCH,EAAQC,CAAI,EAAIC,EAChBT,EAAO,IAAIW,EAAS,MAAO,IAAIV,CAAa,6BAA6Bb,GAAcgB,EAASC,EAAQ,iBAAiB,CAAC,GAAG,EAC7H,IAAMO,EAAepB,GAAcY,CAAO,EAAI,cAAgB,OACxDS,EAAW,MAAMX,EAAW,KAAKC,EAAK,CAC1C,QAAAC,EACA,QAASU,IAAA,GACJP,GACAF,EAAQ,SAEb,aAAAO,EACA,QAASP,EAAQ,QACjB,gBAAiBA,EAAQ,eAC3B,CAAC,EACDL,EAAO,IAAIW,EAAS,MAAO,IAAIV,CAAa,kDAAkDY,EAAS,UAAU,GAAG,CACtH,GAEO,SAASE,GAAaf,EAAQ,CACnC,OAAIA,IAAW,OACN,IAAIgB,GAAcL,EAAS,WAAW,EAE3CX,IAAW,KACNiB,GAAW,SAEhBjB,EAAO,MAAQ,OACVA,EAEF,IAAIgB,GAAchB,CAAM,CACjC,CA8CO,SAASU,IAAqB,CACnC,IAAIQ,EAAsB,uBAC1B,OAAIC,EAAS,SACXD,EAAsB,cAEjB,CAACA,EAAqBE,GAAmBC,GAASC,GAAU,EAAGC,GAAW,EAAGC,GAAkB,CAAC,CAAC,CAC1G,CAEO,SAASJ,GAAmBK,EAASC,EAAIC,EAASC,EAAgB,CAEvE,IAAIC,EAAY,qBACVC,EAAgBL,EAAQ,MAAM,GAAG,EACvC,OAAAI,GAAa,GAAGC,EAAc,CAAC,CAAC,IAAIA,EAAc,CAAC,CAAC,GACpDD,GAAa,KAAKJ,CAAO,KACrBC,GAAMA,IAAO,GACfG,GAAa,GAAGH,CAAE,KAElBG,GAAa,eAEfA,GAAa,GAAGF,CAAO,GACnBC,EACFC,GAAa,KAAKD,CAAc,GAEhCC,GAAa,4BAEfA,GAAa,IACNA,CACT,CAGA,SAASP,IAAY,CACnB,GAAIH,EAAS,OACX,OAAQ,QAAQ,SAAU,CACxB,IAAK,QACH,MAAO,aACT,IAAK,SACH,MAAO,QACT,IAAK,QACH,MAAO,QACT,QACE,OAAO,QAAQ,QACnB,KAEA,OAAO,EAEX,CAGA,SAASK,IAAoB,CAC3B,GAAIL,EAAS,OACX,OAAO,QAAQ,SAAS,IAG5B,CACA,SAASI,IAAa,CACpB,OAAIJ,EAAS,OACJ,SAEA,SAEX,CAEO,SAASY,GAAeC,EAAG,CAChC,OAAIA,EAAE,MACGA,EAAE,MACAA,EAAE,QACJA,EAAE,QAEJ,GAAGA,CAAC,EACb,CAEO,SAASC,IAAgB,CAE9B,GAAI,OAAO,WAAe,IACxB,OAAO,WAET,GAAI,OAAO,KAAS,IAClB,OAAO,KAET,GAAI,OAAO,OAAW,IACpB,OAAO,OAET,GAAI,OAAO,OAAW,IACpB,OAAO,OAET,MAAM,IAAI,MAAM,uBAAuB,CACzC,CApPA,IAMaZ,GAEAa,EAmBAf,EAuFAgB,GAgBAnB,GAlIboB,GAAAC,EAAA,KAEAC,KACAC,KAGalB,GAAU,SAEVa,EAAN,KAAU,CACf,OAAO,WAAWpC,EAAKU,EAAM,CAC3B,GAAIV,GAAQ,KACV,MAAM,IAAI,MAAM,QAAQU,CAAI,yBAAyB,CAEzD,CACA,OAAO,WAAWV,EAAKU,EAAM,CAC3B,GAAI,CAACV,GAAOA,EAAI,MAAM,OAAO,EAC3B,MAAM,IAAI,MAAM,QAAQU,CAAI,iCAAiC,CAEjE,CACA,OAAO,KAAKV,EAAK0C,EAAQhC,EAAM,CAE7B,GAAI,EAAEV,KAAO0C,GACX,MAAM,IAAI,MAAM,WAAWhC,CAAI,WAAWV,CAAG,GAAG,CAEpD,CACF,EAEaqB,EAAN,KAAe,CAEpB,WAAW,WAAY,CACrB,OAAO,OAAO,QAAW,UAAY,OAAO,OAAO,UAAa,QAClE,CAEA,WAAW,aAAc,CACvB,OAAO,OAAO,MAAS,UAAY,kBAAmB,IACxD,CAEA,WAAW,eAAgB,CACzB,OAAO,OAAO,QAAW,UAAY,OAAO,OAAO,SAAa,GAClE,CAGA,WAAW,QAAS,CAClB,MAAO,CAAC,KAAK,WAAa,CAAC,KAAK,aAAe,CAAC,KAAK,aACvD,CACF,EAqEagB,GAAN,KAA0B,CAC/B,YAAYM,EAASC,EAAU,CAC7B,KAAK,SAAWD,EAChB,KAAK,UAAYC,CACnB,CACA,SAAU,CACR,IAAMC,EAAQ,KAAK,SAAS,UAAU,QAAQ,KAAK,SAAS,EACxDA,EAAQ,IACV,KAAK,SAAS,UAAU,OAAOA,EAAO,CAAC,EAErC,KAAK,SAAS,UAAU,SAAW,GAAK,KAAK,SAAS,gBACxD,KAAK,SAAS,eAAe,EAAE,MAAMC,GAAK,CAAC,CAAC,CAEhD,CACF,EAEa5B,GAAN,KAAoB,CACzB,YAAY6B,EAAiB,CAC3B,KAAK,UAAYA,EACjB,KAAK,IAAM,OACb,CACA,IAAIC,EAAUC,EAAS,CACrB,GAAID,GAAY,KAAK,UAAW,CAC9B,IAAME,EAAM,IAAI,IAAI,KAAK,EAAE,YAAY,CAAC,KAAKrC,EAASmC,CAAQ,CAAC,KAAKC,CAAO,GAC3E,OAAQD,EAAU,CAChB,KAAKnC,EAAS,SACd,KAAKA,EAAS,MACZ,KAAK,IAAI,MAAMqC,CAAG,EAClB,MACF,KAAKrC,EAAS,QACZ,KAAK,IAAI,KAAKqC,CAAG,EACjB,MACF,KAAKrC,EAAS,YACZ,KAAK,IAAI,KAAKqC,CAAG,EACjB,MACF,QAEE,KAAK,IAAI,IAAIA,CAAG,EAChB,KACJ,CACF,CACF,CACF,ICjCA,SAASC,GAAmBC,EAAUC,EAAc,CAClD,IAAIC,EACJ,OAAQD,EAAc,CACpB,IAAK,cACHC,EAAUF,EAAS,YAAY,EAC/B,MACF,IAAK,OACHE,EAAUF,EAAS,KAAK,EACxB,MACF,IAAK,OACL,IAAK,WACL,IAAK,OACH,MAAM,IAAI,MAAM,GAAGC,CAAY,oBAAoB,EACrD,QACEC,EAAUF,EAAS,KAAK,EACxB,KACJ,CACA,OAAOE,CACT,CA7IA,IAMaC,GANbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACaN,GAAN,cAA8BO,EAAW,CAC9C,YAAYC,EAAQ,CAGlB,GAFA,MAAM,EACN,KAAK,QAAUA,EACX,OAAO,MAAU,IAAa,CAGhC,IAAMC,EAAc,OAAO,qBAAwB,WAAa,wBAA0BC,GAE1F,KAAK,KAAO,IAAKD,EAAY,cAAc,GAAE,UAC7C,KAAK,WAAaA,EAAY,YAAY,EAG1C,KAAK,WAAaA,EAAY,cAAc,EAAE,KAAK,WAAY,KAAK,IAAI,CAC1E,MACE,KAAK,WAAa,MAAM,KAAKE,GAAc,CAAC,EAE9C,GAAI,OAAO,gBAAoB,IAAa,CAG1C,IAAMF,EAAc,OAAO,qBAAwB,WAAa,wBAA0BC,GAE1F,KAAK,qBAAuBD,EAAY,kBAAkB,CAC5D,MACE,KAAK,qBAAuB,eAEhC,CAEM,KAAKG,EAAS,QAAAC,EAAA,sBAElB,GAAID,EAAQ,aAAeA,EAAQ,YAAY,QAC7C,MAAM,IAAIE,GAEZ,GAAI,CAACF,EAAQ,OACX,MAAM,IAAI,MAAM,oBAAoB,EAEtC,GAAI,CAACA,EAAQ,IACX,MAAM,IAAI,MAAM,iBAAiB,EAEnC,IAAMG,EAAkB,IAAI,KAAK,qBAC7BC,EAEAJ,EAAQ,cACVA,EAAQ,YAAY,QAAU,IAAM,CAClCG,EAAgB,MAAM,EACtBC,EAAQ,IAAIF,EACd,GAIF,IAAIG,EAAY,KAChB,GAAIL,EAAQ,QAAS,CACnB,IAAMM,EAAYN,EAAQ,QAC1BK,EAAY,WAAW,IAAM,CAC3BF,EAAgB,MAAM,EACtB,KAAK,QAAQ,IAAII,EAAS,QAAS,4BAA4B,EAC/DH,EAAQ,IAAII,EACd,EAAGF,CAAS,CACd,CACIN,EAAQ,UAAY,KACtBA,EAAQ,QAAU,QAEhBA,EAAQ,UAEVA,EAAQ,QAAUA,EAAQ,SAAW,CAAC,EAClCS,GAAcT,EAAQ,OAAO,EAC/BA,EAAQ,QAAQ,cAAc,EAAI,2BAElCA,EAAQ,QAAQ,cAAc,EAAI,4BAGtC,IAAIf,EACJ,GAAI,CACFA,EAAW,MAAM,KAAK,WAAWe,EAAQ,IAAK,CAC5C,KAAMA,EAAQ,QACd,MAAO,WACP,YAAaA,EAAQ,kBAAoB,GAAO,UAAY,cAC5D,QAASU,EAAA,CACP,mBAAoB,kBACjBV,EAAQ,SAEb,OAAQA,EAAQ,OAChB,KAAM,OACN,SAAU,SACV,OAAQG,EAAgB,MAC1B,CAAC,CACH,OAASQ,EAAG,CACV,MAAIP,IAGJ,KAAK,QAAQ,IAAIG,EAAS,QAAS,4BAA4BI,CAAC,GAAG,EAC7DA,EACR,QAAE,CACIN,GACF,aAAaA,CAAS,EAEpBL,EAAQ,cACVA,EAAQ,YAAY,QAAU,KAElC,CACA,GAAI,CAACf,EAAS,GAAI,CAChB,IAAM2B,EAAe,MAAM5B,GAAmBC,EAAU,MAAM,EAC9D,MAAM,IAAI4B,GAAUD,GAAgB3B,EAAS,WAAYA,EAAS,MAAM,CAC1E,CAEA,IAAM6B,EAAU,MADA9B,GAAmBC,EAAUe,EAAQ,YAAY,EAEjE,OAAO,IAAIe,GAAa9B,EAAS,OAAQA,EAAS,WAAY6B,CAAO,CACvE,GACA,gBAAgBE,EAAK,CACnB,IAAIC,EAAU,GACd,OAAIC,EAAS,QAAU,KAAK,MAE1B,KAAK,KAAK,WAAWF,EAAK,CAACL,EAAGQ,IAAMF,EAAUE,EAAE,KAAK,IAAI,CAAC,EAErDF,CACT,CACF,IC1HA,IAMaG,GANbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACaN,GAAN,cAA4BO,EAAW,CAC5C,YAAYC,EAAQ,CAClB,MAAM,EACN,KAAK,QAAUA,CACjB,CAEA,KAAKC,EAAS,CAEZ,OAAIA,EAAQ,aAAeA,EAAQ,YAAY,QACtC,QAAQ,OAAO,IAAIC,EAAY,EAEnCD,EAAQ,OAGRA,EAAQ,IAGN,IAAI,QAAQ,CAACE,EAASC,IAAW,CACtC,IAAMC,EAAM,IAAI,eAChBA,EAAI,KAAKJ,EAAQ,OAAQA,EAAQ,IAAK,EAAI,EAC1CI,EAAI,gBAAkBJ,EAAQ,kBAAoB,OAAY,GAAOA,EAAQ,gBAC7EI,EAAI,iBAAiB,mBAAoB,gBAAgB,EACrDJ,EAAQ,UAAY,KACtBA,EAAQ,QAAU,QAEhBA,EAAQ,UAENK,GAAcL,EAAQ,OAAO,EAC/BI,EAAI,iBAAiB,eAAgB,0BAA0B,EAE/DA,EAAI,iBAAiB,eAAgB,0BAA0B,GAGnE,IAAME,EAAUN,EAAQ,QACpBM,GACF,OAAO,KAAKA,CAAO,EAAE,QAAQC,GAAU,CACrCH,EAAI,iBAAiBG,EAAQD,EAAQC,CAAM,CAAC,CAC9C,CAAC,EAECP,EAAQ,eACVI,EAAI,aAAeJ,EAAQ,cAEzBA,EAAQ,cACVA,EAAQ,YAAY,QAAU,IAAM,CAClCI,EAAI,MAAM,EACVD,EAAO,IAAIF,EAAY,CACzB,GAEED,EAAQ,UACVI,EAAI,QAAUJ,EAAQ,SAExBI,EAAI,OAAS,IAAM,CACbJ,EAAQ,cACVA,EAAQ,YAAY,QAAU,MAE5BI,EAAI,QAAU,KAAOA,EAAI,OAAS,IACpCF,EAAQ,IAAIM,GAAaJ,EAAI,OAAQA,EAAI,WAAYA,EAAI,UAAYA,EAAI,YAAY,CAAC,EAEtFD,EAAO,IAAIM,GAAUL,EAAI,UAAYA,EAAI,cAAgBA,EAAI,WAAYA,EAAI,MAAM,CAAC,CAExF,EACAA,EAAI,QAAU,IAAM,CAClB,KAAK,QAAQ,IAAIM,EAAS,QAAS,4BAA4BN,EAAI,MAAM,KAAKA,EAAI,UAAU,GAAG,EAC/FD,EAAO,IAAIM,GAAUL,EAAI,WAAYA,EAAI,MAAM,CAAC,CAClD,EACAA,EAAI,UAAY,IAAM,CACpB,KAAK,QAAQ,IAAIM,EAAS,QAAS,4BAA4B,EAC/DP,EAAO,IAAIQ,EAAc,CAC3B,EACAP,EAAI,KAAKJ,EAAQ,OAAO,CAC1B,CAAC,EAvDQ,QAAQ,OAAO,IAAI,MAAM,iBAAiB,CAAC,EAH3C,QAAQ,OAAO,IAAI,MAAM,oBAAoB,CAAC,CA2DzD,CACF,IC9EA,IAQaY,GARbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KAEaP,GAAN,cAAgCQ,EAAW,CAEhD,YAAYC,EAAQ,CAElB,GADA,MAAM,EACF,OAAO,MAAU,KAAeC,EAAS,OAC3C,KAAK,YAAc,IAAIC,GAAgBF,CAAM,UACpC,OAAO,eAAmB,IACnC,KAAK,YAAc,IAAIG,GAAcH,CAAM,MAE3C,OAAM,IAAI,MAAM,6BAA6B,CAEjD,CAEA,KAAKI,EAAS,CAEZ,OAAIA,EAAQ,aAAeA,EAAQ,YAAY,QACtC,QAAQ,OAAO,IAAIC,EAAY,EAEnCD,EAAQ,OAGRA,EAAQ,IAGN,KAAK,YAAY,KAAKA,CAAO,EAF3B,QAAQ,OAAO,IAAI,MAAM,iBAAiB,CAAC,EAH3C,QAAQ,OAAO,IAAI,MAAM,oBAAoB,CAAC,CAMzD,CACA,gBAAgBE,EAAK,CACnB,OAAO,KAAK,YAAY,gBAAgBA,CAAG,CAC7C,CACF,ICrCA,IAIaC,GAJbC,GAAAC,EAAA,KAIaF,GAAN,MAAMG,CAAkB,CAC7B,OAAO,MAAMC,EAAQ,CACnB,MAAO,GAAGA,CAAM,GAAGD,EAAkB,eAAe,EACtD,CACA,OAAO,MAAME,EAAO,CAClB,GAAIA,EAAMA,EAAM,OAAS,CAAC,IAAMF,EAAkB,gBAChD,MAAM,IAAI,MAAM,wBAAwB,EAE1C,IAAMG,EAAWD,EAAM,MAAMF,EAAkB,eAAe,EAC9D,OAAAG,EAAS,IAAI,EACNA,CACT,CACF,EACAN,GAAkB,oBAAsB,GACxCA,GAAkB,gBAAkB,OAAO,aAAaA,GAAkB,mBAAmB,IClB7F,IAKaO,GALbC,GAAAC,EAAA,KAEAC,KACAC,KAEaJ,GAAN,KAAwB,CAE7B,sBAAsBK,EAAkB,CACtC,OAAOC,GAAkB,MAAM,KAAK,UAAUD,CAAgB,CAAC,CACjE,CACA,uBAAuBE,EAAM,CAC3B,IAAIC,EACAC,EACJ,GAAIC,GAAcH,CAAI,EAAG,CAEvB,IAAMI,EAAa,IAAI,WAAWJ,CAAI,EAChCK,EAAiBD,EAAW,QAAQL,GAAkB,mBAAmB,EAC/E,GAAIM,IAAmB,GACrB,MAAM,IAAI,MAAM,wBAAwB,EAI1C,IAAMC,EAAiBD,EAAiB,EACxCJ,EAAc,OAAO,aAAa,MAAM,KAAM,MAAM,UAAU,MAAM,KAAKG,EAAW,MAAM,EAAGE,CAAc,CAAC,CAAC,EAC7GJ,EAAgBE,EAAW,WAAaE,EAAiBF,EAAW,MAAME,CAAc,EAAE,OAAS,IACrG,KAAO,CACL,IAAMC,EAAWP,EACXK,EAAiBE,EAAS,QAAQR,GAAkB,eAAe,EACzE,GAAIM,IAAmB,GACrB,MAAM,IAAI,MAAM,wBAAwB,EAI1C,IAAMC,EAAiBD,EAAiB,EACxCJ,EAAcM,EAAS,UAAU,EAAGD,CAAc,EAClDJ,EAAgBK,EAAS,OAASD,EAAiBC,EAAS,UAAUD,CAAc,EAAI,IAC1F,CAEA,IAAME,EAAWT,GAAkB,MAAME,CAAW,EAC9CQ,EAAW,KAAK,MAAMD,EAAS,CAAC,CAAC,EACvC,GAAIC,EAAS,KACX,MAAM,IAAI,MAAM,gDAAgD,EAKlE,MAAO,CAACP,EAHgBO,CAGc,CACxC,CACF,IChDA,IAGWC,EAHXC,GAAAC,EAAA,KAGWF,EAA2B,SAAUA,EAAa,CAE3D,OAAAA,EAAYA,EAAY,WAAgB,CAAC,EAAI,aAE7CA,EAAYA,EAAY,WAAgB,CAAC,EAAI,aAE7CA,EAAYA,EAAY,WAAgB,CAAC,EAAI,aAE7CA,EAAYA,EAAY,iBAAsB,CAAC,EAAI,mBAEnDA,EAAYA,EAAY,iBAAsB,CAAC,EAAI,mBAEnDA,EAAYA,EAAY,KAAU,CAAC,EAAI,OAEvCA,EAAYA,EAAY,MAAW,CAAC,EAAI,QACjCA,CACT,EAAEA,GAAe,CAAC,CAAC,ICnBnB,IAIaG,GAJbC,GAAAC,EAAA,KAEAC,KAEaH,GAAN,KAAc,CACnB,aAAc,CACZ,KAAK,UAAY,CAAC,CACpB,CACA,KAAKI,EAAM,CACT,QAAWC,KAAY,KAAK,UAC1BA,EAAS,KAAKD,CAAI,CAEtB,CACA,MAAME,EAAK,CACT,QAAWD,KAAY,KAAK,UACtBA,EAAS,OACXA,EAAS,MAAMC,CAAG,CAGxB,CACA,UAAW,CACT,QAAWD,KAAY,KAAK,UACtBA,EAAS,UACXA,EAAS,SAAS,CAGxB,CACA,UAAUA,EAAU,CAClB,YAAK,UAAU,KAAKA,CAAQ,EACrB,IAAIE,GAAoB,KAAMF,CAAQ,CAC/C,CACF,IC/BA,IAQMG,GACAC,GAEKC,EAcEC,GAzBbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACMX,GAAwB,GAAK,IAC7BC,GAA8B,GAAK,IAE9BC,EAAkC,SAAUA,EAAoB,CAEzE,OAAAA,EAAmB,aAAkB,eAErCA,EAAmB,WAAgB,aAEnCA,EAAmB,UAAe,YAElCA,EAAmB,cAAmB,gBAEtCA,EAAmB,aAAkB,eAC9BA,CACT,EAAEA,GAAsB,CAAC,CAAC,EAEbC,GAAN,MAAMS,CAAc,CACzB,YAAYC,EAAYC,EAAQC,EAAUC,EAAiB,CACzD,KAAK,eAAiB,EACtB,KAAK,qBAAuB,IAAM,CAChC,KAAK,QAAQ,IAAIC,EAAS,QAAS,sNAAsN,CAC3P,EACAC,EAAI,WAAWL,EAAY,YAAY,EACvCK,EAAI,WAAWJ,EAAQ,QAAQ,EAC/BI,EAAI,WAAWH,EAAU,UAAU,EACnC,KAAK,4BAA8Bf,GACnC,KAAK,gCAAkCC,GACvC,KAAK,QAAUa,EACf,KAAK,UAAYC,EACjB,KAAK,WAAaF,EAClB,KAAK,iBAAmBG,EACxB,KAAK,mBAAqB,IAAIG,GAC9B,KAAK,WAAW,UAAYC,GAAQ,KAAK,qBAAqBA,CAAI,EAClE,KAAK,WAAW,QAAUC,GAAS,KAAK,kBAAkBA,CAAK,EAC/D,KAAK,WAAa,CAAC,EACnB,KAAK,SAAW,CAAC,EACjB,KAAK,iBAAmB,CAAC,EACzB,KAAK,uBAAyB,CAAC,EAC/B,KAAK,sBAAwB,CAAC,EAC9B,KAAK,cAAgB,EACrB,KAAK,2BAA6B,GAClC,KAAK,iBAAmBnB,EAAmB,aAC3C,KAAK,mBAAqB,GAC1B,KAAK,mBAAqB,KAAK,UAAU,aAAa,CACpD,KAAMoB,EAAY,IACpB,CAAC,CACH,CAMA,OAAO,OAAOT,EAAYC,EAAQC,EAAUC,EAAiB,CAC3D,OAAO,IAAIJ,EAAcC,EAAYC,EAAQC,EAAUC,CAAe,CACxE,CAEA,IAAI,OAAQ,CACV,OAAO,KAAK,gBACd,CAIA,IAAI,cAAe,CACjB,OAAO,KAAK,YAAa,KAAK,WAAW,cAAgB,IAC3D,CAEA,IAAI,SAAU,CACZ,OAAO,KAAK,WAAW,SAAW,EACpC,CAMA,IAAI,QAAQO,EAAK,CACf,GAAI,KAAK,mBAAqBrB,EAAmB,cAAgB,KAAK,mBAAqBA,EAAmB,aAC5G,MAAM,IAAI,MAAM,wFAAwF,EAE1G,GAAI,CAACqB,EACH,MAAM,IAAI,MAAM,4CAA4C,EAE9D,KAAK,WAAW,QAAUA,CAC5B,CAKA,OAAQ,CACN,YAAK,cAAgB,KAAK,2BAA2B,EAC9C,KAAK,aACd,CACM,4BAA6B,QAAAC,EAAA,sBACjC,GAAI,KAAK,mBAAqBtB,EAAmB,aAC/C,OAAO,QAAQ,OAAO,IAAI,MAAM,uEAAuE,CAAC,EAE1G,KAAK,iBAAmBA,EAAmB,WAC3C,KAAK,QAAQ,IAAIe,EAAS,MAAO,yBAAyB,EAC1D,GAAI,CACF,MAAM,KAAK,eAAe,EACtBQ,EAAS,WAEX,OAAO,SAAS,iBAAiB,SAAU,KAAK,oBAAoB,EAEtE,KAAK,iBAAmBvB,EAAmB,UAC3C,KAAK,mBAAqB,GAC1B,KAAK,QAAQ,IAAIe,EAAS,MAAO,uCAAuC,CAC1E,OAASS,EAAG,CACV,YAAK,iBAAmBxB,EAAmB,aAC3C,KAAK,QAAQ,IAAIe,EAAS,MAAO,gEAAgES,CAAC,IAAI,EAC/F,QAAQ,OAAOA,CAAC,CACzB,CACF,GACM,gBAAiB,QAAAF,EAAA,sBACrB,KAAK,sBAAwB,OAC7B,KAAK,2BAA6B,GAElC,IAAMG,EAAmB,IAAI,QAAQ,CAACC,EAASC,IAAW,CACxD,KAAK,mBAAqBD,EAC1B,KAAK,mBAAqBC,CAC5B,CAAC,EACD,MAAM,KAAK,WAAW,MAAM,KAAK,UAAU,cAAc,EACzD,GAAI,CACF,IAAMC,EAAmB,CACvB,SAAU,KAAK,UAAU,KACzB,QAAS,KAAK,UAAU,OAC1B,EAYA,GAXA,KAAK,QAAQ,IAAIb,EAAS,MAAO,4BAA4B,EAC7D,MAAM,KAAK,aAAa,KAAK,mBAAmB,sBAAsBa,CAAgB,CAAC,EACvF,KAAK,QAAQ,IAAIb,EAAS,YAAa,sBAAsB,KAAK,UAAU,IAAI,IAAI,EAEpF,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,MAAMU,EAIF,KAAK,sBAKP,MAAM,KAAK,sBAER,KAAK,WAAW,SAAS,oBAC5B,MAAM,KAAK,aAAa,KAAK,kBAAkB,EAEnD,OAAS,EAAG,CACV,WAAK,QAAQ,IAAIV,EAAS,MAAO,oCAAoC,CAAC,2CAA2C,EACjH,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EAGvB,MAAM,KAAK,WAAW,KAAK,CAAC,EACtB,CACR,CACF,GAKM,MAAO,QAAAO,EAAA,sBAEX,IAAMO,EAAe,KAAK,cAC1B,KAAK,aAAe,KAAK,cAAc,EACvC,MAAM,KAAK,aACX,GAAI,CAEF,MAAMA,CACR,MAAY,CAEZ,CACF,GACA,cAAcV,EAAO,CACnB,OAAI,KAAK,mBAAqBnB,EAAmB,cAC/C,KAAK,QAAQ,IAAIe,EAAS,MAAO,8BAA8BI,CAAK,4DAA4D,EACzH,QAAQ,QAAQ,GAErB,KAAK,mBAAqBnB,EAAmB,eAC/C,KAAK,QAAQ,IAAIe,EAAS,MAAO,+BAA+BI,CAAK,yEAAyE,EACvI,KAAK,eAEd,KAAK,iBAAmBnB,EAAmB,cAC3C,KAAK,QAAQ,IAAIe,EAAS,MAAO,yBAAyB,EACtD,KAAK,uBAIP,KAAK,QAAQ,IAAIA,EAAS,MAAO,+DAA+D,EAChG,aAAa,KAAK,qBAAqB,EACvC,KAAK,sBAAwB,OAC7B,KAAK,eAAe,EACb,QAAQ,QAAQ,IAEzB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAwBI,GAAS,IAAIW,GAAW,qEAAqE,EAInH,KAAK,WAAW,KAAKX,CAAK,GACnC,CAQA,OAAOY,KAAeC,EAAM,CAC1B,GAAM,CAACC,EAASC,CAAS,EAAI,KAAK,wBAAwBF,CAAI,EACxDG,EAAuB,KAAK,wBAAwBJ,EAAYC,EAAME,CAAS,EAEjFE,EACEC,EAAU,IAAIC,GACpB,OAAAD,EAAQ,eAAiB,IAAM,CAC7B,IAAME,EAAmB,KAAK,wBAAwBJ,EAAqB,YAAY,EACvF,cAAO,KAAK,WAAWA,EAAqB,YAAY,EACjDC,EAAa,KAAK,IAChB,KAAK,kBAAkBG,CAAgB,CAC/C,CACH,EACA,KAAK,WAAWJ,EAAqB,YAAY,EAAI,CAACK,EAAiBrB,IAAU,CAC/E,GAAIA,EAAO,CACTkB,EAAQ,MAAMlB,CAAK,EACnB,MACF,MAAWqB,IAELA,EAAgB,OAASpB,EAAY,WACnCoB,EAAgB,MAClBH,EAAQ,MAAM,IAAI,MAAMG,EAAgB,KAAK,CAAC,EAE9CH,EAAQ,SAAS,EAGnBA,EAAQ,KAAKG,EAAgB,IAAI,EAGvC,EACAJ,EAAe,KAAK,kBAAkBD,CAAoB,EAAE,MAAMX,GAAK,CACrEa,EAAQ,MAAMb,CAAC,EACf,OAAO,KAAK,WAAWW,EAAqB,YAAY,CAC1D,CAAC,EACD,KAAK,eAAeF,EAASG,CAAY,EAClCC,CACT,CACA,aAAaI,EAAS,CACpB,YAAK,wBAAwB,EACtB,KAAK,WAAW,KAAKA,CAAO,CACrC,CAKA,kBAAkBA,EAAS,CACzB,OAAO,KAAK,aAAa,KAAK,UAAU,aAAaA,CAAO,CAAC,CAC/D,CAUA,KAAKV,KAAeC,EAAM,CACxB,GAAM,CAACC,EAASC,CAAS,EAAI,KAAK,wBAAwBF,CAAI,EACxDU,EAAc,KAAK,kBAAkB,KAAK,kBAAkBX,EAAYC,EAAM,GAAME,CAAS,CAAC,EACpG,YAAK,eAAeD,EAASS,CAAW,EACjCA,CACT,CAYA,OAAOX,KAAeC,EAAM,CAC1B,GAAM,CAACC,EAASC,CAAS,EAAI,KAAK,wBAAwBF,CAAI,EACxDG,EAAuB,KAAK,kBAAkBJ,EAAYC,EAAM,GAAOE,CAAS,EA2BtF,OA1BU,IAAI,QAAQ,CAACR,EAASC,IAAW,CAEzC,KAAK,WAAWQ,EAAqB,YAAY,EAAI,CAACK,EAAiBrB,KAAU,CAC/E,GAAIA,GAAO,CACTQ,EAAOR,EAAK,EACZ,MACF,MAAWqB,IAELA,EAAgB,OAASpB,EAAY,WACnCoB,EAAgB,MAClBb,EAAO,IAAI,MAAMa,EAAgB,KAAK,CAAC,EAEvCd,EAAQc,EAAgB,MAAM,EAGhCb,EAAO,IAAI,MAAM,4BAA4Ba,EAAgB,IAAI,EAAE,CAAC,EAG1E,EACA,IAAMJ,EAAe,KAAK,kBAAkBD,CAAoB,EAAE,MAAMX,GAAK,CAC3EG,EAAOH,CAAC,EAER,OAAO,KAAK,WAAWW,EAAqB,YAAY,CAC1D,CAAC,EACD,KAAK,eAAeF,EAASG,CAAY,CAC3C,CAAC,CAEH,CACA,GAAGL,EAAYY,EAAW,CACpB,CAACZ,GAAc,CAACY,IAGpBZ,EAAaA,EAAW,YAAY,EAC/B,KAAK,SAASA,CAAU,IAC3B,KAAK,SAASA,CAAU,EAAI,CAAC,GAG3B,KAAK,SAASA,CAAU,EAAE,QAAQY,CAAS,IAAM,IAGrD,KAAK,SAASZ,CAAU,EAAE,KAAKY,CAAS,EAC1C,CACA,IAAIZ,EAAYa,EAAQ,CACtB,GAAI,CAACb,EACH,OAEFA,EAAaA,EAAW,YAAY,EACpC,IAAMc,EAAW,KAAK,SAASd,CAAU,EACzC,GAAKc,EAGL,GAAID,EAAQ,CACV,IAAME,EAAYD,EAAS,QAAQD,CAAM,EACrCE,IAAc,KAChBD,EAAS,OAAOC,EAAW,CAAC,EACxBD,EAAS,SAAW,GACtB,OAAO,KAAK,SAASd,CAAU,EAGrC,MACE,OAAO,KAAK,SAASA,CAAU,CAEnC,CAKA,QAAQgB,EAAU,CACZA,GACF,KAAK,iBAAiB,KAAKA,CAAQ,CAEvC,CAKA,eAAeA,EAAU,CACnBA,GACF,KAAK,uBAAuB,KAAKA,CAAQ,CAE7C,CAKA,cAAcA,EAAU,CAClBA,GACF,KAAK,sBAAsB,KAAKA,CAAQ,CAE5C,CACA,qBAAqB7B,EAAM,CAOzB,GANA,KAAK,gBAAgB,EAChB,KAAK,6BACRA,EAAO,KAAK,0BAA0BA,CAAI,EAC1C,KAAK,2BAA6B,IAGhCA,EAAM,CAER,IAAM8B,EAAW,KAAK,UAAU,cAAc9B,EAAM,KAAK,OAAO,EAChE,QAAWuB,KAAWO,EACpB,OAAQP,EAAQ,KAAM,CACpB,KAAKrB,EAAY,WAEf,KAAK,oBAAoBqB,CAAO,EAChC,MACF,KAAKrB,EAAY,WACjB,KAAKA,EAAY,WACf,CACE,IAAM2B,EAAW,KAAK,WAAWN,EAAQ,YAAY,EACrD,GAAIM,EAAU,CACRN,EAAQ,OAASrB,EAAY,YAC/B,OAAO,KAAK,WAAWqB,EAAQ,YAAY,EAE7C,GAAI,CACFM,EAASN,CAAO,CAClB,OAASjB,EAAG,CACV,KAAK,QAAQ,IAAIT,EAAS,MAAO,gCAAgCkC,GAAezB,CAAC,CAAC,EAAE,CACtF,CACF,CACA,KACF,CACF,KAAKJ,EAAY,KAEf,MACF,KAAKA,EAAY,MACf,CACE,KAAK,QAAQ,IAAIL,EAAS,YAAa,qCAAqC,EAC5E,IAAMI,EAAQsB,EAAQ,MAAQ,IAAI,MAAM,sCAAwCA,EAAQ,KAAK,EAAI,OAC7FA,EAAQ,iBAAmB,GAI7B,KAAK,WAAW,KAAKtB,CAAK,EAG1B,KAAK,aAAe,KAAK,cAAcA,CAAK,EAE9C,KACF,CACF,QACE,KAAK,QAAQ,IAAIJ,EAAS,QAAS,yBAAyB0B,EAAQ,IAAI,GAAG,EAC3E,KACJ,CAEJ,CACA,KAAK,oBAAoB,CAC3B,CACA,0BAA0BvB,EAAM,CAC9B,IAAIgC,EACAC,EACJ,GAAI,CACF,CAACA,EAAeD,CAAe,EAAI,KAAK,mBAAmB,uBAAuBhC,CAAI,CACxF,OAASM,EAAG,CACV,IAAMiB,EAAU,qCAAuCjB,EACvD,KAAK,QAAQ,IAAIT,EAAS,MAAO0B,CAAO,EACxC,IAAMtB,EAAQ,IAAI,MAAMsB,CAAO,EAC/B,WAAK,mBAAmBtB,CAAK,EACvBA,CACR,CACA,GAAI+B,EAAgB,MAAO,CACzB,IAAMT,EAAU,oCAAsCS,EAAgB,MACtE,KAAK,QAAQ,IAAInC,EAAS,MAAO0B,CAAO,EACxC,IAAMtB,EAAQ,IAAI,MAAMsB,CAAO,EAC/B,WAAK,mBAAmBtB,CAAK,EACvBA,CACR,MACE,KAAK,QAAQ,IAAIJ,EAAS,MAAO,4BAA4B,EAE/D,YAAK,mBAAmB,EACjBoC,CACT,CACA,yBAA0B,CACpB,KAAK,WAAW,SAAS,oBAK7B,KAAK,eAAiB,IAAI,KAAK,EAAE,QAAQ,EAAI,KAAK,gCAClD,KAAK,kBAAkB,EACzB,CACA,qBAAsB,CACpB,IAAI,CAAC,KAAK,WAAW,UAAY,CAAC,KAAK,WAAW,SAAS,qBAEzD,KAAK,eAAiB,WAAW,IAAM,KAAK,cAAc,EAAG,KAAK,2BAA2B,EAEzF,KAAK,oBAAsB,QAAW,CACxC,IAAIC,EAAW,KAAK,eAAiB,IAAI,KAAK,EAAE,QAAQ,EACpDA,EAAW,IACbA,EAAW,GAGb,KAAK,kBAAoB,WAAW,IAAY9B,EAAA,sBAC9C,GAAI,KAAK,mBAAqBtB,EAAmB,UAC/C,GAAI,CACF,MAAM,KAAK,aAAa,KAAK,kBAAkB,CACjD,MAAQ,CAGN,KAAK,kBAAkB,CACzB,CAEJ,GAAGoD,CAAQ,CACb,CAEJ,CAEA,eAAgB,CAId,KAAK,WAAW,KAAK,IAAI,MAAM,qEAAqE,CAAC,CACvG,CACM,oBAAoBC,EAAmB,QAAA/B,EAAA,sBAC3C,IAAMS,EAAasB,EAAkB,OAAO,YAAY,EAClDC,EAAU,KAAK,SAASvB,CAAU,EACxC,GAAI,CAACuB,EAAS,CACZ,KAAK,QAAQ,IAAIvC,EAAS,QAAS,mCAAmCgB,CAAU,UAAU,EAEtFsB,EAAkB,eACpB,KAAK,QAAQ,IAAItC,EAAS,QAAS,wBAAwBgB,CAAU,+BAA+BsB,EAAkB,YAAY,IAAI,EACtI,MAAM,KAAK,kBAAkB,KAAK,yBAAyBA,EAAkB,aAAc,kCAAmC,IAAI,CAAC,GAErI,MACF,CAEA,IAAME,EAAcD,EAAQ,MAAM,EAE5BE,EAAkB,EAAAH,EAAkB,aAEtCI,EACAC,EACAC,EACJ,QAAWC,KAAKL,EACd,GAAI,CACF,IAAMM,EAAUJ,EAChBA,EAAM,MAAMG,EAAE,MAAM,KAAMP,EAAkB,SAAS,EACjDG,GAAmBC,GAAOI,IAC5B,KAAK,QAAQ,IAAI9C,EAAS,MAAO,kCAAkCgB,CAAU,6BAA6B,EAC1G4B,EAAoB,KAAK,yBAAyBN,EAAkB,aAAc,oCAAqC,IAAI,GAG7HK,EAAY,MACd,OAASlC,EAAG,CACVkC,EAAYlC,EACZ,KAAK,QAAQ,IAAIT,EAAS,MAAO,8BAA8BgB,CAAU,kBAAkBP,CAAC,IAAI,CAClG,CAEEmC,EACF,MAAM,KAAK,kBAAkBA,CAAiB,EACrCH,GAELE,EACFC,EAAoB,KAAK,yBAAyBN,EAAkB,aAAc,GAAGK,CAAS,GAAI,IAAI,EAC7FD,IAAQ,OACjBE,EAAoB,KAAK,yBAAyBN,EAAkB,aAAc,KAAMI,CAAG,GAE3F,KAAK,QAAQ,IAAI1C,EAAS,QAAS,wBAAwBgB,CAAU,+BAA+BsB,EAAkB,YAAY,IAAI,EAEtIM,EAAoB,KAAK,yBAAyBN,EAAkB,aAAc,kCAAmC,IAAI,GAE3H,MAAM,KAAK,kBAAkBM,CAAiB,GAE1CF,GACF,KAAK,QAAQ,IAAI1C,EAAS,MAAO,qBAAqBgB,CAAU,gDAAgD,CAGtH,GACA,kBAAkBZ,EAAO,CACvB,KAAK,QAAQ,IAAIJ,EAAS,MAAO,kCAAkCI,CAAK,2BAA2B,KAAK,gBAAgB,GAAG,EAE3H,KAAK,sBAAwB,KAAK,uBAAyBA,GAAS,IAAIW,GAAW,+EAA+E,EAG9J,KAAK,oBACP,KAAK,mBAAmB,EAE1B,KAAK,0BAA0BX,GAAS,IAAI,MAAM,oEAAoE,CAAC,EACvH,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACnB,KAAK,mBAAqBnB,EAAmB,cAC/C,KAAK,eAAemB,CAAK,EAChB,KAAK,mBAAqBnB,EAAmB,WAAa,KAAK,iBAExE,KAAK,WAAWmB,CAAK,EACZ,KAAK,mBAAqBnB,EAAmB,WACtD,KAAK,eAAemB,CAAK,CAO7B,CACA,eAAeA,EAAO,CACpB,GAAI,KAAK,mBAAoB,CAC3B,KAAK,iBAAmBnB,EAAmB,aAC3C,KAAK,mBAAqB,GACtBuB,EAAS,WACX,OAAO,SAAS,oBAAoB,SAAU,KAAK,oBAAoB,EAEzE,GAAI,CACF,KAAK,iBAAiB,QAAQuC,GAAKA,EAAE,MAAM,KAAM,CAAC3C,CAAK,CAAC,CAAC,CAC3D,OAAS,EAAG,CACV,KAAK,QAAQ,IAAIJ,EAAS,MAAO,0CAA0CI,CAAK,kBAAkB,CAAC,IAAI,CACzG,CACF,CACF,CACM,WAAWA,EAAO,QAAAG,EAAA,sBACtB,IAAMyC,EAAqB,KAAK,IAAI,EAChCC,EAA4B,EAC5BC,EAAa9C,IAAU,OAAYA,EAAQ,IAAI,MAAM,iDAAiD,EACtG+C,EAAiB,KAAK,mBAAmBF,IAA6B,EAAGC,CAAU,EACvF,GAAIC,IAAmB,KAAM,CAC3B,KAAK,QAAQ,IAAInD,EAAS,MAAO,oGAAoG,EACrI,KAAK,eAAeI,CAAK,EACzB,MACF,CAOA,GANA,KAAK,iBAAmBnB,EAAmB,aACvCmB,EACF,KAAK,QAAQ,IAAIJ,EAAS,YAAa,6CAA6CI,CAAK,IAAI,EAE7F,KAAK,QAAQ,IAAIJ,EAAS,YAAa,0BAA0B,EAE/D,KAAK,uBAAuB,SAAW,EAAG,CAC5C,GAAI,CACF,KAAK,uBAAuB,QAAQ+C,GAAKA,EAAE,MAAM,KAAM,CAAC3C,CAAK,CAAC,CAAC,CACjE,OAASK,EAAG,CACV,KAAK,QAAQ,IAAIT,EAAS,MAAO,iDAAiDI,CAAK,kBAAkBK,CAAC,IAAI,CAChH,CAEA,GAAI,KAAK,mBAAqBxB,EAAmB,aAAc,CAC7D,KAAK,QAAQ,IAAIe,EAAS,MAAO,uFAAuF,EACxH,MACF,CACF,CACA,KAAOmD,IAAmB,MAAM,CAM9B,GALA,KAAK,QAAQ,IAAInD,EAAS,YAAa,4BAA4BiD,CAAyB,kBAAkBE,CAAc,MAAM,EAClI,MAAM,IAAI,QAAQxC,GAAW,CAC3B,KAAK,sBAAwB,WAAWA,EAASwC,CAAc,CACjE,CAAC,EACD,KAAK,sBAAwB,OACzB,KAAK,mBAAqBlE,EAAmB,aAAc,CAC7D,KAAK,QAAQ,IAAIe,EAAS,MAAO,mFAAmF,EACpH,MACF,CACA,GAAI,CAIF,GAHA,MAAM,KAAK,eAAe,EAC1B,KAAK,iBAAmBf,EAAmB,UAC3C,KAAK,QAAQ,IAAIe,EAAS,YAAa,yCAAyC,EAC5E,KAAK,sBAAsB,SAAW,EACxC,GAAI,CACF,KAAK,sBAAsB,QAAQ+C,GAAKA,EAAE,MAAM,KAAM,CAAC,KAAK,WAAW,YAAY,CAAC,CAAC,CACvF,OAAStC,EAAG,CACV,KAAK,QAAQ,IAAIT,EAAS,MAAO,uDAAuD,KAAK,WAAW,YAAY,kBAAkBS,CAAC,IAAI,CAC7I,CAEF,MACF,OAASA,EAAG,CAEV,GADA,KAAK,QAAQ,IAAIT,EAAS,YAAa,8CAA8CS,CAAC,IAAI,EACtF,KAAK,mBAAqBxB,EAAmB,aAAc,CAC7D,KAAK,QAAQ,IAAIe,EAAS,MAAO,4BAA4B,KAAK,gBAAgB,4EAA4E,EAE1J,KAAK,mBAAqBf,EAAmB,eAC/C,KAAK,eAAe,EAEtB,MACF,CACAiE,EAAazC,aAAa,MAAQA,EAAI,IAAI,MAAMA,EAAE,SAAS,CAAC,EAC5D0C,EAAiB,KAAK,mBAAmBF,IAA6B,KAAK,IAAI,EAAID,EAAoBE,CAAU,CACnH,CACF,CACA,KAAK,QAAQ,IAAIlD,EAAS,YAAa,+CAA+C,KAAK,IAAI,EAAIgD,CAAkB,WAAWC,CAAyB,6CAA6C,EACtM,KAAK,eAAe,CACtB,GACA,mBAAmBG,EAAoBC,EAAqBC,EAAa,CACvE,GAAI,CACF,OAAO,KAAK,iBAAiB,6BAA6B,CACxD,oBAAAD,EACA,mBAAAD,EACA,YAAAE,CACF,CAAC,CACH,OAAS7C,EAAG,CACV,YAAK,QAAQ,IAAIT,EAAS,MAAO,6CAA6CoD,CAAkB,KAAKC,CAAmB,kBAAkB5C,CAAC,IAAI,EACxI,IACT,CACF,CACA,0BAA0BL,EAAO,CAC/B,IAAMmD,EAAY,KAAK,WACvB,KAAK,WAAa,CAAC,EACnB,OAAO,KAAKA,CAAS,EAAE,QAAQC,GAAO,CACpC,IAAMxB,EAAWuB,EAAUC,CAAG,EAC9B,GAAI,CACFxB,EAAS,KAAM5B,CAAK,CACtB,OAASK,EAAG,CACV,KAAK,QAAQ,IAAIT,EAAS,MAAO,wCAAwCI,CAAK,kBAAkB8B,GAAezB,CAAC,CAAC,EAAE,CACrH,CACF,CAAC,CACH,CACA,mBAAoB,CACd,KAAK,oBACP,aAAa,KAAK,iBAAiB,EACnC,KAAK,kBAAoB,OAE7B,CACA,iBAAkB,CACZ,KAAK,gBACP,aAAa,KAAK,cAAc,CAEpC,CACA,kBAAkBO,EAAYC,EAAMwC,EAAatC,EAAW,CAC1D,GAAIsC,EACF,OAAItC,EAAU,SAAW,EAChB,CACL,UAAWF,EACX,UAAAE,EACA,OAAQH,EACR,KAAMX,EAAY,UACpB,EAEO,CACL,UAAWY,EACX,OAAQD,EACR,KAAMX,EAAY,UACpB,EAEG,CACL,IAAMqD,EAAe,KAAK,cAE1B,OADA,KAAK,gBACDvC,EAAU,SAAW,EAChB,CACL,UAAWF,EACX,aAAcyC,EAAa,SAAS,EACpC,UAAAvC,EACA,OAAQH,EACR,KAAMX,EAAY,UACpB,EAEO,CACL,UAAWY,EACX,aAAcyC,EAAa,SAAS,EACpC,OAAQ1C,EACR,KAAMX,EAAY,UACpB,CAEJ,CACF,CACA,eAAea,EAASG,EAAc,CACpC,GAAIH,EAAQ,SAAW,EAIvB,CAAKG,IACHA,EAAe,QAAQ,QAAQ,GAIjC,QAAWsC,KAAYzC,EACrBA,EAAQyC,CAAQ,EAAE,UAAU,CAC1B,SAAU,IAAM,CACdtC,EAAeA,EAAa,KAAK,IAAM,KAAK,kBAAkB,KAAK,yBAAyBsC,CAAQ,CAAC,CAAC,CACxG,EACA,MAAOC,GAAO,CACZ,IAAIlC,EACAkC,aAAe,MACjBlC,EAAUkC,EAAI,QACLA,GAAOA,EAAI,SACpBlC,EAAUkC,EAAI,SAAS,EAEvBlC,EAAU,gBAEZL,EAAeA,EAAa,KAAK,IAAM,KAAK,kBAAkB,KAAK,yBAAyBsC,EAAUjC,CAAO,CAAC,CAAC,CACjH,EACA,KAAMmC,GAAQ,CACZxC,EAAeA,EAAa,KAAK,IAAM,KAAK,kBAAkB,KAAK,yBAAyBsC,EAAUE,CAAI,CAAC,CAAC,CAC9G,CACF,CAAC,EAEL,CACA,wBAAwB5C,EAAM,CAC5B,IAAMC,EAAU,CAAC,EACXC,EAAY,CAAC,EACnB,QAAS,EAAI,EAAG,EAAIF,EAAK,OAAQ,IAAK,CACpC,IAAM6C,EAAW7C,EAAK,CAAC,EACvB,GAAI,KAAK,cAAc6C,CAAQ,EAAG,CAChC,IAAMH,EAAW,KAAK,cACtB,KAAK,gBAELzC,EAAQyC,CAAQ,EAAIG,EACpB3C,EAAU,KAAKwC,EAAS,SAAS,CAAC,EAElC1C,EAAK,OAAO,EAAG,CAAC,CAClB,CACF,CACA,MAAO,CAACC,EAASC,CAAS,CAC5B,CACA,cAAc4C,EAAK,CAEjB,OAAOA,GAAOA,EAAI,WAAa,OAAOA,EAAI,WAAc,UAC1D,CACA,wBAAwB/C,EAAYC,EAAME,EAAW,CACnD,IAAMuC,EAAe,KAAK,cAE1B,OADA,KAAK,gBACDvC,EAAU,SAAW,EAChB,CACL,UAAWF,EACX,aAAcyC,EAAa,SAAS,EACpC,UAAAvC,EACA,OAAQH,EACR,KAAMX,EAAY,gBACpB,EAEO,CACL,UAAWY,EACX,aAAcyC,EAAa,SAAS,EACpC,OAAQ1C,EACR,KAAMX,EAAY,gBACpB,CAEJ,CACA,wBAAwB2D,EAAI,CAC1B,MAAO,CACL,aAAcA,EACd,KAAM3D,EAAY,gBACpB,CACF,CACA,yBAAyB2D,EAAIH,EAAM,CACjC,MAAO,CACL,aAAcG,EACd,KAAAH,EACA,KAAMxD,EAAY,UACpB,CACF,CACA,yBAAyB2D,EAAI5D,EAAO6D,EAAQ,CAC1C,OAAI7D,EACK,CACL,MAAAA,EACA,aAAc4D,EACd,KAAM3D,EAAY,UACpB,EAEK,CACL,aAAc2D,EACd,OAAAC,EACA,KAAM5D,EAAY,UACpB,CACF,CACF,IC10BA,IAGM6D,GAEOC,GALbC,GAAAC,EAAA,KAGMH,GAAuC,CAAC,EAAG,IAAM,IAAO,IAAO,IAAI,EAE5DC,GAAN,KAA6B,CAClC,YAAYG,EAAa,CACvB,KAAK,aAAeA,IAAgB,OAAY,CAAC,GAAGA,EAAa,IAAI,EAAIJ,EAC3E,CACA,6BAA6BK,EAAc,CACzC,OAAO,KAAK,aAAaA,EAAa,kBAAkB,CAC1D,CACF,ICZA,IAGMC,GAHNC,GAAAC,EAAA,KAGMF,IAA2B,IAAA,UACb,OAAAA,EAAA,cAAgB,gBAChBA,EAAA,OAAS,iBCL7B,IAKaG,GALbC,GAAAC,EAAA,KAEAC,KACAC,KAEaJ,GAAN,cAAoCK,EAAW,CACpD,YAAYC,EAAaC,EAAoB,CAC3C,MAAM,EACN,KAAK,aAAeD,EACpB,KAAK,oBAAsBC,CAC7B,CACM,KAAKC,EAAS,QAAAC,EAAA,sBAClB,IAAIC,EAAa,GACb,KAAK,sBAAwB,CAAC,KAAK,cAAgBF,EAAQ,KAAOA,EAAQ,IAAI,QAAQ,aAAa,EAAI,KAEzGE,EAAa,GACb,KAAK,aAAe,MAAM,KAAK,oBAAoB,GAErD,KAAK,wBAAwBF,CAAO,EACpC,IAAMG,EAAW,MAAM,KAAK,aAAa,KAAKH,CAAO,EACrD,OAAIE,GAAcC,EAAS,aAAe,KAAO,KAAK,qBACpD,KAAK,aAAe,MAAM,KAAK,oBAAoB,EACnD,KAAK,wBAAwBH,CAAO,EAC7B,MAAM,KAAK,aAAa,KAAKA,CAAO,GAEtCG,CACT,GACA,wBAAwBH,EAAS,CAC1BA,EAAQ,UACXA,EAAQ,QAAU,CAAC,GAEjB,KAAK,aACPA,EAAQ,QAAQI,GAAY,aAAa,EAAI,UAAU,KAAK,YAAY,GAGjE,KAAK,qBACRJ,EAAQ,QAAQI,GAAY,aAAa,GAC3C,OAAOJ,EAAQ,QAAQI,GAAY,aAAa,CAGtD,CACA,gBAAgBC,EAAK,CACnB,OAAO,KAAK,aAAa,gBAAgBA,CAAG,CAC9C,CACF,IC5CA,IAIWC,GAYAC,GAhBXC,GAAAC,EAAA,KAIWH,GAAiC,SAAUA,EAAmB,CAEvE,OAAAA,EAAkBA,EAAkB,KAAU,CAAC,EAAI,OAEnDA,EAAkBA,EAAkB,WAAgB,CAAC,EAAI,aAEzDA,EAAkBA,EAAkB,iBAAsB,CAAC,EAAI,mBAE/DA,EAAkBA,EAAkB,YAAiB,CAAC,EAAI,cACnDA,CACT,EAAEA,IAAqB,CAAC,CAAC,EAEdC,GAA8B,SAAUA,EAAgB,CAEjE,OAAAA,EAAeA,EAAe,KAAU,CAAC,EAAI,OAE7CA,EAAeA,EAAe,OAAY,CAAC,EAAI,SACxCA,CACT,EAAEA,IAAkB,CAAC,CAAC,ICtBtB,IAOaG,GAPbC,GAAAC,EAAA,KAOaF,GAAN,KAAsB,CAC3B,aAAc,CACZ,KAAK,WAAa,GAClB,KAAK,QAAU,IACjB,CACA,OAAQ,CACD,KAAK,aACR,KAAK,WAAa,GACd,KAAK,SACP,KAAK,QAAQ,EAGnB,CACA,IAAI,QAAS,CACX,OAAO,IACT,CACA,IAAI,SAAU,CACZ,OAAO,KAAK,UACd,CACF,IC1BA,IASaG,GATbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KAGaP,GAAN,KAA2B,CAChC,YAAYQ,EAAYC,EAAQC,EAAS,CACvC,KAAK,YAAcF,EACnB,KAAK,QAAUC,EACf,KAAK,WAAa,IAAIE,GACtB,KAAK,SAAWD,EAChB,KAAK,SAAW,GAChB,KAAK,UAAY,KACjB,KAAK,QAAU,IACjB,CAEA,IAAI,aAAc,CAChB,OAAO,KAAK,WAAW,OACzB,CACM,QAAQE,EAAKC,EAAgB,QAAAC,EAAA,sBAOjC,GANAC,EAAI,WAAWH,EAAK,KAAK,EACzBG,EAAI,WAAWF,EAAgB,gBAAgB,EAC/CE,EAAI,KAAKF,EAAgBG,GAAgB,gBAAgB,EACzD,KAAK,KAAOJ,EACZ,KAAK,QAAQ,IAAIK,EAAS,MAAO,qCAAqC,EAElEJ,IAAmBG,GAAe,QAAU,OAAO,eAAmB,KAAe,OAAO,IAAI,eAAe,EAAE,cAAiB,SACpI,MAAM,IAAI,MAAM,4FAA4F,EAE9G,GAAM,CAACE,EAAMC,CAAK,EAAIC,GAAmB,EACnCC,EAAUC,EAAA,CACd,CAACJ,CAAI,EAAGC,GACL,KAAK,SAAS,SAEbI,EAAc,CAClB,YAAa,KAAK,WAAW,OAC7B,QAAAF,EACA,QAAS,IACT,gBAAiB,KAAK,SAAS,eACjC,EACIR,IAAmBG,GAAe,SACpCO,EAAY,aAAe,eAI7B,IAAMC,EAAU,GAAGZ,CAAG,MAAM,KAAK,IAAI,CAAC,GACtC,KAAK,QAAQ,IAAIK,EAAS,MAAO,oCAAoCO,CAAO,GAAG,EAC/E,IAAMC,EAAW,MAAM,KAAK,YAAY,IAAID,EAASD,CAAW,EAC5DE,EAAS,aAAe,KAC1B,KAAK,QAAQ,IAAIR,EAAS,MAAO,qDAAqDQ,EAAS,UAAU,GAAG,EAE5G,KAAK,YAAc,IAAIC,GAAUD,EAAS,YAAc,GAAIA,EAAS,UAAU,EAC/E,KAAK,SAAW,IAEhB,KAAK,SAAW,GAElB,KAAK,WAAa,KAAK,MAAM,KAAK,KAAMF,CAAW,CACrD,GACM,MAAMX,EAAKW,EAAa,QAAAT,EAAA,sBAC5B,GAAI,CACF,KAAO,KAAK,UACV,GAAI,CACF,IAAMU,EAAU,GAAGZ,CAAG,MAAM,KAAK,IAAI,CAAC,GACtC,KAAK,QAAQ,IAAIK,EAAS,MAAO,oCAAoCO,CAAO,GAAG,EAC/E,IAAMC,EAAW,MAAM,KAAK,YAAY,IAAID,EAASD,CAAW,EAC5DE,EAAS,aAAe,KAC1B,KAAK,QAAQ,IAAIR,EAAS,YAAa,oDAAoD,EAC3F,KAAK,SAAW,IACPQ,EAAS,aAAe,KACjC,KAAK,QAAQ,IAAIR,EAAS,MAAO,qDAAqDQ,EAAS,UAAU,GAAG,EAE5G,KAAK,YAAc,IAAIC,GAAUD,EAAS,YAAc,GAAIA,EAAS,UAAU,EAC/E,KAAK,SAAW,IAGZA,EAAS,SACX,KAAK,QAAQ,IAAIR,EAAS,MAAO,0CAA0CU,GAAcF,EAAS,QAAS,KAAK,SAAS,iBAAiB,CAAC,GAAG,EAC1I,KAAK,WACP,KAAK,UAAUA,EAAS,OAAO,GAIjC,KAAK,QAAQ,IAAIR,EAAS,MAAO,oDAAoD,CAG3F,OAASW,EAAG,CACL,KAAK,SAIJA,aAAaC,GAEf,KAAK,QAAQ,IAAIZ,EAAS,MAAO,oDAAoD,GAGrF,KAAK,YAAcW,EACnB,KAAK,SAAW,IARlB,KAAK,QAAQ,IAAIX,EAAS,MAAO,wDAAwDW,EAAE,OAAO,EAAE,CAWxG,CAEJ,QAAE,CACA,KAAK,QAAQ,IAAIX,EAAS,MAAO,2CAA2C,EAGvE,KAAK,aACR,KAAK,cAAc,CAEvB,CACF,GACM,KAAKa,EAAM,QAAAhB,EAAA,sBACf,OAAK,KAAK,SAGHiB,GAAY,KAAK,QAAS,cAAe,KAAK,YAAa,KAAK,KAAMD,EAAM,KAAK,QAAQ,EAFvF,QAAQ,OAAO,IAAI,MAAM,8CAA8C,CAAC,CAGnF,GACM,MAAO,QAAAhB,EAAA,sBACX,KAAK,QAAQ,IAAIG,EAAS,MAAO,2CAA2C,EAE5E,KAAK,SAAW,GAChB,KAAK,WAAW,MAAM,EACtB,GAAI,CACF,MAAM,KAAK,WAEX,KAAK,QAAQ,IAAIA,EAAS,MAAO,qDAAqD,KAAK,IAAI,GAAG,EAClG,IAAMI,EAAU,CAAC,EACX,CAACH,EAAMC,CAAK,EAAIC,GAAmB,EACzCC,EAAQH,CAAI,EAAIC,EAChB,IAAMa,EAAgB,CACpB,QAASV,IAAA,GACJD,GACA,KAAK,SAAS,SAEnB,QAAS,KAAK,SAAS,QACvB,gBAAiB,KAAK,SAAS,eACjC,EACA,MAAM,KAAK,YAAY,OAAO,KAAK,KAAMW,CAAa,EACtD,KAAK,QAAQ,IAAIf,EAAS,MAAO,8CAA8C,CACjF,QAAE,CACA,KAAK,QAAQ,IAAIA,EAAS,MAAO,wCAAwC,EAGzE,KAAK,cAAc,CACrB,CACF,GACA,eAAgB,CACd,GAAI,KAAK,QAAS,CAChB,IAAIgB,EAAa,gDACb,KAAK,cACPA,GAAc,WAAa,KAAK,aAElC,KAAK,QAAQ,IAAIhB,EAAS,MAAOgB,CAAU,EAC3C,KAAK,QAAQ,KAAK,WAAW,CAC/B,CACF,CACF,IC/JA,IAMaC,GANbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KAEaL,GAAN,KAAgC,CACrC,YAAYM,EAAYC,EAAaC,EAAQC,EAAS,CACpD,KAAK,YAAcH,EACnB,KAAK,aAAeC,EACpB,KAAK,QAAUC,EACf,KAAK,SAAWC,EAChB,KAAK,UAAY,KACjB,KAAK,QAAU,IACjB,CACM,QAAQC,EAAKC,EAAgB,QAAAC,EAAA,sBACjC,OAAAC,EAAI,WAAWH,EAAK,KAAK,EACzBG,EAAI,WAAWF,EAAgB,gBAAgB,EAC/CE,EAAI,KAAKF,EAAgBG,GAAgB,gBAAgB,EACzD,KAAK,QAAQ,IAAIC,EAAS,MAAO,6BAA6B,EAE9D,KAAK,KAAOL,EACR,KAAK,eACPA,IAAQA,EAAI,QAAQ,GAAG,EAAI,EAAI,IAAM,KAAO,gBAAgB,mBAAmB,KAAK,YAAY,CAAC,IAE5F,IAAI,QAAQ,CAACM,EAASC,IAAW,CACtC,IAAIC,EAAS,GACb,GAAIP,IAAmBG,GAAe,KAAM,CAC1CG,EAAO,IAAI,MAAM,2EAA2E,CAAC,EAC7F,MACF,CACA,IAAIE,EACJ,GAAIC,EAAS,WAAaA,EAAS,YACjCD,EAAc,IAAI,KAAK,SAAS,YAAYT,EAAK,CAC/C,gBAAiB,KAAK,SAAS,eACjC,CAAC,MACI,CAEL,IAAMW,EAAU,KAAK,YAAY,gBAAgBX,CAAG,EAC9CY,EAAU,CAAC,EACjBA,EAAQ,OAASD,EACjB,GAAM,CAACE,EAAMC,CAAK,EAAIC,GAAmB,EACzCH,EAAQC,CAAI,EAAIC,EAChBL,EAAc,IAAI,KAAK,SAAS,YAAYT,EAAK,CAC/C,gBAAiB,KAAK,SAAS,gBAC/B,QAASgB,IAAA,GACJJ,GACA,KAAK,SAAS,QAErB,CAAC,CACH,CACA,GAAI,CACFH,EAAY,UAAYQ,GAAK,CAC3B,GAAI,KAAK,UACP,GAAI,CACF,KAAK,QAAQ,IAAIZ,EAAS,MAAO,kCAAkCa,GAAcD,EAAE,KAAM,KAAK,SAAS,iBAAiB,CAAC,GAAG,EAC5H,KAAK,UAAUA,EAAE,IAAI,CACvB,OAASE,EAAO,CACd,KAAK,OAAOA,CAAK,EACjB,MACF,CAEJ,EAEAV,EAAY,QAAUQ,GAAK,CAErBT,EACF,KAAK,OAAO,EAEZD,EAAO,IAAI,MAAM,8PAAwQ,CAAC,CAE9R,EACAE,EAAY,OAAS,IAAM,CACzB,KAAK,QAAQ,IAAIJ,EAAS,YAAa,oBAAoB,KAAK,IAAI,EAAE,EACtE,KAAK,aAAeI,EACpBD,EAAS,GACTF,EAAQ,CACV,CACF,OAASW,EAAG,CACVV,EAAOU,CAAC,EACR,MACF,CACF,CAAC,CACH,GACM,KAAKG,EAAM,QAAAlB,EAAA,sBACf,OAAK,KAAK,aAGHmB,GAAY,KAAK,QAAS,MAAO,KAAK,YAAa,KAAK,KAAMD,EAAM,KAAK,QAAQ,EAF/E,QAAQ,OAAO,IAAI,MAAM,8CAA8C,CAAC,CAGnF,GACA,MAAO,CACL,YAAK,OAAO,EACL,QAAQ,QAAQ,CACzB,CACA,OAAOH,EAAG,CACJ,KAAK,eACP,KAAK,aAAa,MAAM,EACxB,KAAK,aAAe,OAChB,KAAK,SACP,KAAK,QAAQA,CAAC,EAGpB,CACF,ICvGA,IAOaK,GAPbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KAEaN,GAAN,KAAyB,CAC9B,YAAYO,EAAYC,EAAoBC,EAAQC,EAAmBC,EAAsBC,EAAS,CACpG,KAAK,QAAUH,EACf,KAAK,oBAAsBD,EAC3B,KAAK,mBAAqBE,EAC1B,KAAK,sBAAwBC,EAC7B,KAAK,YAAcJ,EACnB,KAAK,UAAY,KACjB,KAAK,QAAU,KACf,KAAK,SAAWK,CAClB,CACM,QAAQC,EAAKC,EAAgB,QAAAC,EAAA,sBACjCC,EAAI,WAAWH,EAAK,KAAK,EACzBG,EAAI,WAAWF,EAAgB,gBAAgB,EAC/CE,EAAI,KAAKF,EAAgBG,GAAgB,gBAAgB,EACzD,KAAK,QAAQ,IAAIC,EAAS,MAAO,oCAAoC,EACrE,IAAIC,EACJ,OAAI,KAAK,sBACPA,EAAQ,MAAM,KAAK,oBAAoB,GAElC,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtCR,EAAMA,EAAI,QAAQ,QAAS,IAAI,EAC/B,IAAIS,EACEC,EAAU,KAAK,YAAY,gBAAgBV,CAAG,EAChDW,EAAS,GACb,GAAIC,EAAS,QAAUA,EAAS,cAAe,CAC7C,IAAMb,EAAU,CAAC,EACX,CAACc,EAAMC,EAAK,EAAIC,GAAmB,EACzChB,EAAQc,CAAI,EAAIC,GACZR,IACFP,EAAQiB,GAAY,aAAa,EAAI,UAAUV,CAAK,IAElDI,IACFX,EAAQiB,GAAY,MAAM,EAAIN,GAGhCD,EAAY,IAAI,KAAK,sBAAsBT,EAAK,OAAW,CACzD,QAASiB,IAAA,GACJlB,GACA,KAAK,SAEZ,CAAC,CACH,MACMO,IACFN,IAAQA,EAAI,QAAQ,GAAG,EAAI,EAAI,IAAM,KAAO,gBAAgB,mBAAmBM,CAAK,CAAC,IAGpFG,IAEHA,EAAY,IAAI,KAAK,sBAAsBT,CAAG,GAE5CC,IAAmBG,GAAe,SACpCK,EAAU,WAAa,eAEzBA,EAAU,OAASS,GAAU,CAC3B,KAAK,QAAQ,IAAIb,EAAS,YAAa,0BAA0BL,CAAG,GAAG,EACvE,KAAK,WAAaS,EAClBE,EAAS,GACTJ,EAAQ,CACV,EACAE,EAAU,QAAUU,GAAS,CAC3B,IAAIC,EAAQ,KAER,OAAO,WAAe,KAAeD,aAAiB,WACxDC,EAAQD,EAAM,MAEdC,EAAQ,wCAEV,KAAK,QAAQ,IAAIf,EAAS,YAAa,0BAA0Be,CAAK,GAAG,CAC3E,EACAX,EAAU,UAAYY,GAAW,CAE/B,GADA,KAAK,QAAQ,IAAIhB,EAAS,MAAO,yCAAyCiB,GAAcD,EAAQ,KAAM,KAAK,kBAAkB,CAAC,GAAG,EAC7H,KAAK,UACP,GAAI,CACF,KAAK,UAAUA,EAAQ,IAAI,CAC7B,OAASD,EAAO,CACd,KAAK,OAAOA,CAAK,EACjB,MACF,CAEJ,EACAX,EAAU,QAAUU,GAAS,CAG3B,GAAIR,EACF,KAAK,OAAOQ,CAAK,MACZ,CACL,IAAIC,EAAQ,KAER,OAAO,WAAe,KAAeD,aAAiB,WACxDC,EAAQD,EAAM,MAEdC,EAAQ,iSAEVZ,EAAO,IAAI,MAAMY,CAAK,CAAC,CACzB,CACF,CACF,CAAC,CACH,GACA,KAAKG,EAAM,CACT,OAAI,KAAK,YAAc,KAAK,WAAW,aAAe,KAAK,sBAAsB,MAC/E,KAAK,QAAQ,IAAIlB,EAAS,MAAO,wCAAwCiB,GAAcC,EAAM,KAAK,kBAAkB,CAAC,GAAG,EACxH,KAAK,WAAW,KAAKA,CAAI,EAClB,QAAQ,QAAQ,GAElB,QAAQ,OAAO,oCAAoC,CAC5D,CACA,MAAO,CACL,OAAI,KAAK,YAGP,KAAK,OAAO,MAAS,EAEhB,QAAQ,QAAQ,CACzB,CACA,OAAOJ,EAAO,CAER,KAAK,aAEP,KAAK,WAAW,QAAU,IAAM,CAAC,EACjC,KAAK,WAAW,UAAY,IAAM,CAAC,EACnC,KAAK,WAAW,QAAU,IAAM,CAAC,EACjC,KAAK,WAAW,MAAM,EACtB,KAAK,WAAa,QAEpB,KAAK,QAAQ,IAAId,EAAS,MAAO,uCAAuC,EACpE,KAAK,UACH,KAAK,cAAcc,CAAK,IAAMA,EAAM,WAAa,IAASA,EAAM,OAAS,KAC3E,KAAK,QAAQ,IAAI,MAAM,sCAAsCA,EAAM,IAAI,KAAKA,EAAM,QAAU,iBAAiB,IAAI,CAAC,EACzGA,aAAiB,MAC1B,KAAK,QAAQA,CAAK,EAElB,KAAK,QAAQ,EAGnB,CACA,cAAcA,EAAO,CACnB,OAAOA,GAAS,OAAOA,EAAM,UAAa,WAAa,OAAOA,EAAM,MAAS,QAC/E,CACF,ICgSA,SAASK,GAAiBC,EAAoBC,EAAiB,CAC7D,MAAO,CAACD,IAAuBC,EAAkBD,KAAwB,CAC3E,CApbA,IAWME,GAEOC,GAyaAC,GA6DPC,GAnfNC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACMd,GAAgB,IAETC,GAAN,KAAqB,CAC1B,YAAYc,EAAKC,EAAU,CAAC,EAAG,CAS7B,GARA,KAAK,qBAAuB,IAAM,CAAC,EACnC,KAAK,SAAW,CAAC,EACjB,KAAK,kBAAoB,EACzBC,EAAI,WAAWF,EAAK,KAAK,EACzB,KAAK,QAAUG,GAAaF,EAAQ,MAAM,EAC1C,KAAK,QAAU,KAAK,YAAYD,CAAG,EACnCC,EAAUA,GAAW,CAAC,EACtBA,EAAQ,kBAAoBA,EAAQ,oBAAsB,OAAY,GAAQA,EAAQ,kBAClF,OAAOA,EAAQ,iBAAoB,WAAaA,EAAQ,kBAAoB,OAC9EA,EAAQ,gBAAkBA,EAAQ,kBAAoB,OAAY,GAAOA,EAAQ,oBAEjF,OAAM,IAAI,MAAM,iEAAiE,EAEnFA,EAAQ,QAAUA,EAAQ,UAAY,OAAY,IAAM,IAAOA,EAAQ,QACvE,IAAIG,EAAkB,KAClBC,EAAoB,KACxB,GAAIC,EAAS,QAAU,OAAOC,GAAY,IAAa,CAGrD,IAAMC,EAAc,OAAO,qBAAwB,WAAa,wBAA0BD,GAC1FH,EAAkBI,EAAY,IAAI,EAClCH,EAAoBG,EAAY,aAAa,CAC/C,CACI,CAACF,EAAS,QAAU,OAAO,UAAc,KAAe,CAACL,EAAQ,UACnEA,EAAQ,UAAY,UACXK,EAAS,QAAU,CAACL,EAAQ,WACjCG,IACFH,EAAQ,UAAYG,GAGpB,CAACE,EAAS,QAAU,OAAO,YAAgB,KAAe,CAACL,EAAQ,YACrEA,EAAQ,YAAc,YACbK,EAAS,QAAU,CAACL,EAAQ,aACjC,OAAOI,EAAsB,MAC/BJ,EAAQ,YAAcI,GAG1B,KAAK,YAAc,IAAII,GAAsBR,EAAQ,YAAc,IAAIS,GAAkB,KAAK,OAAO,EAAGT,EAAQ,kBAAkB,EAClI,KAAK,iBAAmB,eACxB,KAAK,mBAAqB,GAC1B,KAAK,SAAWA,EAChB,KAAK,UAAY,KACjB,KAAK,QAAU,IACjB,CACM,MAAMU,EAAgB,QAAAC,EAAA,sBAI1B,GAHAD,EAAiBA,GAAkBE,GAAe,OAClDX,EAAI,KAAKS,EAAgBE,GAAgB,gBAAgB,EACzD,KAAK,QAAQ,IAAIC,EAAS,MAAO,6CAA6CD,GAAeF,CAAc,CAAC,IAAI,EAC5G,KAAK,mBAAqB,eAC5B,OAAO,QAAQ,OAAO,IAAI,MAAM,yEAAyE,CAAC,EAM5G,GAJA,KAAK,iBAAmB,aACxB,KAAK,sBAAwB,KAAK,eAAeA,CAAc,EAC/D,MAAM,KAAK,sBAEP,KAAK,mBAAqB,gBAAqC,CAEjE,IAAMI,EAAU,+DAChB,YAAK,QAAQ,IAAID,EAAS,MAAOC,CAAO,EAExC,MAAM,KAAK,aACJ,QAAQ,OAAO,IAAIC,GAAWD,CAAO,CAAC,CAC/C,SAAW,KAAK,mBAAqB,YAA6B,CAEhE,IAAMA,EAAU,8GAChB,YAAK,QAAQ,IAAID,EAAS,MAAOC,CAAO,EACjC,QAAQ,OAAO,IAAIC,GAAWD,CAAO,CAAC,CAC/C,CACA,KAAK,mBAAqB,EAC5B,GACA,KAAKE,EAAM,CACT,OAAI,KAAK,mBAAqB,YACrB,QAAQ,OAAO,IAAI,MAAM,qEAAqE,CAAC,GAEnG,KAAK,aACR,KAAK,WAAa,IAAI9B,GAAmB,KAAK,SAAS,GAGlD,KAAK,WAAW,KAAK8B,CAAI,EAClC,CACM,KAAKC,EAAO,QAAAN,EAAA,sBAChB,GAAI,KAAK,mBAAqB,eAC5B,YAAK,QAAQ,IAAIE,EAAS,MAAO,+BAA+BI,CAAK,wEAAwE,EACtI,QAAQ,QAAQ,EAEzB,GAAI,KAAK,mBAAqB,gBAC5B,YAAK,QAAQ,IAAIJ,EAAS,MAAO,+BAA+BI,CAAK,yEAAyE,EACvI,KAAK,aAEd,KAAK,iBAAmB,gBACxB,KAAK,aAAe,IAAI,QAAQC,GAAW,CAEzC,KAAK,qBAAuBA,CAC9B,CAAC,EAED,MAAM,KAAK,cAAcD,CAAK,EAC9B,MAAM,KAAK,YACb,GACM,cAAcA,EAAO,QAAAN,EAAA,sBAIzB,KAAK,WAAaM,EAClB,GAAI,CACF,MAAM,KAAK,qBACb,MAAY,CAEZ,CAIA,GAAI,KAAK,UAAW,CAClB,GAAI,CACF,MAAM,KAAK,UAAU,KAAK,CAC5B,OAAS,EAAG,CACV,KAAK,QAAQ,IAAIJ,EAAS,MAAO,gDAAgD,CAAC,IAAI,EACtF,KAAK,gBAAgB,CACvB,CACA,KAAK,UAAY,MACnB,MACE,KAAK,QAAQ,IAAIA,EAAS,MAAO,wFAAwF,CAE7H,GACM,eAAeH,EAAgB,QAAAC,EAAA,sBAGnC,IAAIZ,EAAM,KAAK,QACf,KAAK,oBAAsB,KAAK,SAAS,mBACzC,KAAK,YAAY,oBAAsB,KAAK,oBAC5C,GAAI,CACF,GAAI,KAAK,SAAS,gBAChB,GAAI,KAAK,SAAS,YAAcoB,GAAkB,WAEhD,KAAK,UAAY,KAAK,oBAAoBA,GAAkB,UAAU,EAGtE,MAAM,KAAK,gBAAgBpB,EAAKW,CAAc,MAE9C,OAAM,IAAI,MAAM,8EAA8E,MAE3F,CACL,IAAIU,EAAoB,KACpBC,EAAY,EAChB,EAAG,CAGD,GAFAD,EAAoB,MAAM,KAAK,wBAAwBrB,CAAG,EAEtD,KAAK,mBAAqB,iBAAuC,KAAK,mBAAqB,eAC7F,MAAM,IAAIgB,GAAW,gDAAgD,EAEvE,GAAIK,EAAkB,MACpB,MAAM,IAAI,MAAMA,EAAkB,KAAK,EAEzC,GAAIA,EAAkB,gBACpB,MAAM,IAAI,MAAM,8LAA8L,EAKhN,GAHIA,EAAkB,MACpBrB,EAAMqB,EAAkB,KAEtBA,EAAkB,YAAa,CAGjC,IAAME,EAAcF,EAAkB,YACtC,KAAK,oBAAsB,IAAME,EAEjC,KAAK,YAAY,aAAeA,EAChC,KAAK,YAAY,oBAAsB,MACzC,CACAD,GACF,OAASD,EAAkB,KAAOC,EAAYrC,IAC9C,GAAIqC,IAAcrC,IAAiBoC,EAAkB,IACnD,MAAM,IAAI,MAAM,uCAAuC,EAEzD,MAAM,KAAK,iBAAiBrB,EAAK,KAAK,SAAS,UAAWqB,EAAmBV,CAAc,CAC7F,CACI,KAAK,qBAAqBa,KAC5B,KAAK,SAAS,kBAAoB,IAEhC,KAAK,mBAAqB,eAG5B,KAAK,QAAQ,IAAIV,EAAS,MAAO,4CAA4C,EAC7E,KAAK,iBAAmB,YAK5B,OAASW,EAAG,CACV,YAAK,QAAQ,IAAIX,EAAS,MAAO,mCAAqCW,CAAC,EACvE,KAAK,iBAAmB,eACxB,KAAK,UAAY,OAEjB,KAAK,qBAAqB,EACnB,QAAQ,OAAOA,CAAC,CACzB,CACF,GACM,wBAAwBzB,EAAK,QAAAY,EAAA,sBACjC,IAAMc,EAAU,CAAC,EACX,CAACC,EAAMC,CAAK,EAAIC,GAAmB,EACzCH,EAAQC,CAAI,EAAIC,EAChB,IAAME,EAAe,KAAK,qBAAqB9B,CAAG,EAClD,KAAK,QAAQ,IAAIc,EAAS,MAAO,gCAAgCgB,CAAY,GAAG,EAChF,GAAI,CACF,IAAMC,EAAW,MAAM,KAAK,YAAY,KAAKD,EAAc,CACzD,QAAS,GACT,QAASE,IAAA,GACJN,GACA,KAAK,SAAS,SAEnB,QAAS,KAAK,SAAS,QACvB,gBAAiB,KAAK,SAAS,eACjC,CAAC,EACD,GAAIK,EAAS,aAAe,IAC1B,OAAO,QAAQ,OAAO,IAAI,MAAM,mDAAmDA,EAAS,UAAU,GAAG,CAAC,EAE5G,IAAMV,EAAoB,KAAK,MAAMU,EAAS,OAAO,EACrD,OAAI,CAACV,EAAkB,kBAAoBA,EAAkB,iBAAmB,KAG9EA,EAAkB,gBAAkBA,EAAkB,cAEjDA,CACT,OAASI,EAAG,CACV,IAAIQ,EAAe,mDAAqDR,EACxE,OAAIA,aAAaS,IACXT,EAAE,aAAe,MACnBQ,EAAeA,EAAe,uFAGlC,KAAK,QAAQ,IAAInB,EAAS,MAAOmB,CAAY,EACtC,QAAQ,OAAO,IAAIE,GAAiCF,CAAY,CAAC,CAC1E,CACF,GACA,kBAAkBjC,EAAKoC,EAAiB,CACtC,OAAKA,EAGEpC,GAAOA,EAAI,QAAQ,GAAG,IAAM,GAAK,IAAM,KAAO,MAAMoC,CAAe,GAFjEpC,CAGX,CACM,iBAAiBA,EAAKjB,EAAoBsC,EAAmBgB,EAAyB,QAAAzB,EAAA,sBAC1F,IAAI0B,EAAa,KAAK,kBAAkBtC,EAAKqB,EAAkB,eAAe,EAC9E,GAAI,KAAK,cAActC,CAAkB,EAAG,CAC1C,KAAK,QAAQ,IAAI+B,EAAS,MAAO,yEAAyE,EAC1G,KAAK,UAAY/B,EACjB,MAAM,KAAK,gBAAgBuD,EAAYD,CAAuB,EAC9D,KAAK,aAAehB,EAAkB,aACtC,MACF,CACA,IAAMkB,EAAsB,CAAC,EACvBC,EAAanB,EAAkB,qBAAuB,CAAC,EACzDoB,EAAYpB,EAChB,QAAWqB,KAAYF,EAAY,CACjC,IAAMG,EAAmB,KAAK,yBAAyBD,EAAU3D,EAAoBsD,CAAuB,EAC5G,GAAIM,aAA4B,MAE9BJ,EAAoB,KAAK,GAAGG,EAAS,SAAS,UAAU,EACxDH,EAAoB,KAAKI,CAAgB,UAChC,KAAK,cAAcA,CAAgB,EAAG,CAE/C,GADA,KAAK,UAAYA,EACb,CAACF,EAAW,CACd,GAAI,CACFA,EAAY,MAAM,KAAK,wBAAwBzC,CAAG,CACpD,OAAS4C,GAAI,CACX,OAAO,QAAQ,OAAOA,EAAE,CAC1B,CACAN,EAAa,KAAK,kBAAkBtC,EAAKyC,EAAU,eAAe,CACpE,CACA,GAAI,CACF,MAAM,KAAK,gBAAgBH,EAAYD,CAAuB,EAC9D,KAAK,aAAeI,EAAU,aAC9B,MACF,OAASG,GAAI,CAIX,GAHA,KAAK,QAAQ,IAAI9B,EAAS,MAAO,kCAAkC4B,EAAS,SAAS,MAAME,EAAE,EAAE,EAC/FH,EAAY,OACZF,EAAoB,KAAK,IAAIM,GAA4B,GAAGH,EAAS,SAAS,YAAYE,EAAE,GAAIxB,GAAkBsB,EAAS,SAAS,CAAC,CAAC,EAClI,KAAK,mBAAqB,aAA+B,CAC3D,IAAM3B,GAAU,uDAChB,YAAK,QAAQ,IAAID,EAAS,MAAOC,EAAO,EACjC,QAAQ,OAAO,IAAIC,GAAWD,EAAO,CAAC,CAC/C,CACF,CACF,CACF,CACA,OAAIwB,EAAoB,OAAS,EACxB,QAAQ,OAAO,IAAIO,GAAgB,yEAAyEP,EAAoB,KAAK,GAAG,CAAC,GAAIA,CAAmB,CAAC,EAEnK,QAAQ,OAAO,IAAI,MAAM,6EAA6E,CAAC,CAChH,GACA,oBAAoBQ,EAAW,CAC7B,OAAQA,EAAW,CACjB,KAAK3B,GAAkB,WACrB,GAAI,CAAC,KAAK,SAAS,UACjB,MAAM,IAAI,MAAM,mDAAmD,EAErE,OAAO,IAAI4B,GAAmB,KAAK,YAAa,KAAK,oBAAqB,KAAK,QAAS,KAAK,SAAS,kBAAmB,KAAK,SAAS,UAAW,KAAK,SAAS,SAAW,CAAC,CAAC,EAC/K,KAAK5B,GAAkB,iBACrB,GAAI,CAAC,KAAK,SAAS,YACjB,MAAM,IAAI,MAAM,qDAAqD,EAEvE,OAAO,IAAI6B,GAA0B,KAAK,YAAa,KAAK,YAAY,aAAc,KAAK,QAAS,KAAK,QAAQ,EACnH,KAAK7B,GAAkB,YACrB,OAAO,IAAII,GAAqB,KAAK,YAAa,KAAK,QAAS,KAAK,QAAQ,EAC/E,QACE,MAAM,IAAI,MAAM,sBAAsBuB,CAAS,GAAG,CACtD,CACF,CACA,gBAAgB/C,EAAKW,EAAgB,CACnC,YAAK,UAAU,UAAY,KAAK,UAChC,KAAK,UAAU,QAAUc,GAAK,KAAK,gBAAgBA,CAAC,EAC7C,KAAK,UAAU,QAAQzB,EAAKW,CAAc,CACnD,CACA,yBAAyB+B,EAAU3D,EAAoBsD,EAAyB,CAC9E,IAAMU,EAAY3B,GAAkBsB,EAAS,SAAS,EACtD,GAAIK,GAAc,KAChB,YAAK,QAAQ,IAAIjC,EAAS,MAAO,uBAAuB4B,EAAS,SAAS,+CAA+C,EAClH,IAAI,MAAM,uBAAuBA,EAAS,SAAS,+CAA+C,EAEzG,GAAI5D,GAAiBC,EAAoBgE,CAAS,EAEhD,GADwBL,EAAS,gBAAgB,IAAI,GAAK7B,GAAe,CAAC,CAAC,EACvD,QAAQwB,CAAuB,GAAK,EAAG,CACzD,GAAIU,IAAc3B,GAAkB,YAAc,CAAC,KAAK,SAAS,WAAa2B,IAAc3B,GAAkB,kBAAoB,CAAC,KAAK,SAAS,YAC/I,YAAK,QAAQ,IAAIN,EAAS,MAAO,uBAAuBM,GAAkB2B,CAAS,CAAC,qDAAqD,EAClI,IAAIG,GAA0B,IAAI9B,GAAkB2B,CAAS,CAAC,0CAA2CA,CAAS,EAEzH,KAAK,QAAQ,IAAIjC,EAAS,MAAO,wBAAwBM,GAAkB2B,CAAS,CAAC,IAAI,EACzF,GAAI,CACF,OAAO,KAAK,oBAAoBA,CAAS,CAC3C,OAASH,EAAI,CACX,OAAOA,CACT,CAEJ,KACE,aAAK,QAAQ,IAAI9B,EAAS,MAAO,uBAAuBM,GAAkB2B,CAAS,CAAC,gEAAgElC,GAAewB,CAAuB,CAAC,IAAI,EACxL,IAAI,MAAM,IAAIjB,GAAkB2B,CAAS,CAAC,sBAAsBlC,GAAewB,CAAuB,CAAC,GAAG,MAGnH,aAAK,QAAQ,IAAIvB,EAAS,MAAO,uBAAuBM,GAAkB2B,CAAS,CAAC,0CAA0C,EACvH,IAAII,GAAuB,IAAI/B,GAAkB2B,CAAS,CAAC,+BAAgCA,CAAS,CAGjH,CACA,cAAcA,EAAW,CACvB,OAAOA,GAAa,OAAOA,GAAc,UAAY,YAAaA,CACpE,CACA,gBAAgB7B,EAAO,CAMrB,GALA,KAAK,QAAQ,IAAIJ,EAAS,MAAO,iCAAiCI,CAAK,2BAA2B,KAAK,gBAAgB,GAAG,EAC1H,KAAK,UAAY,OAEjBA,EAAQ,KAAK,YAAcA,EAC3B,KAAK,WAAa,OACd,KAAK,mBAAqB,eAAmC,CAC/D,KAAK,QAAQ,IAAIJ,EAAS,MAAO,yCAAyCI,CAAK,4EAA4E,EAC3J,MACF,CACA,GAAI,KAAK,mBAAqB,aAC5B,WAAK,QAAQ,IAAIJ,EAAS,QAAS,yCAAyCI,CAAK,wEAAwE,EACnJ,IAAI,MAAM,iCAAiCA,CAAK,qEAAqE,EAoB7H,GAlBI,KAAK,mBAAqB,iBAG5B,KAAK,qBAAqB,EAExBA,EACF,KAAK,QAAQ,IAAIJ,EAAS,MAAO,uCAAuCI,CAAK,IAAI,EAEjF,KAAK,QAAQ,IAAIJ,EAAS,YAAa,0BAA0B,EAE/D,KAAK,aACP,KAAK,WAAW,KAAK,EAAE,MAAM,GAAK,CAChC,KAAK,QAAQ,IAAIA,EAAS,MAAO,0CAA0C,CAAC,IAAI,CAClF,CAAC,EACD,KAAK,WAAa,QAEpB,KAAK,aAAe,OACpB,KAAK,iBAAmB,eACpB,KAAK,mBAAoB,CAC3B,KAAK,mBAAqB,GAC1B,GAAI,CACE,KAAK,SACP,KAAK,QAAQI,CAAK,CAEtB,OAAS,EAAG,CACV,KAAK,QAAQ,IAAIJ,EAAS,MAAO,0BAA0BI,CAAK,kBAAkB,CAAC,IAAI,CACzF,CACF,CACF,CACA,YAAYlB,EAAK,CAEf,GAAIA,EAAI,YAAY,WAAY,CAAC,IAAM,GAAKA,EAAI,YAAY,UAAW,CAAC,IAAM,EAC5E,OAAOA,EAET,GAAI,CAACM,EAAS,UACZ,MAAM,IAAI,MAAM,mBAAmBN,CAAG,IAAI,EAO5C,IAAMoD,EAAO,OAAO,SAAS,cAAc,GAAG,EAC9C,OAAAA,EAAK,KAAOpD,EACZ,KAAK,QAAQ,IAAIc,EAAS,YAAa,gBAAgBd,CAAG,SAASoD,EAAK,IAAI,IAAI,EACzEA,EAAK,IACd,CACA,qBAAqBpD,EAAK,CACxB,IAAMqD,EAAQrD,EAAI,QAAQ,GAAG,EACzB8B,EAAe9B,EAAI,UAAU,EAAGqD,IAAU,GAAKrD,EAAI,OAASqD,CAAK,EACrE,OAAIvB,EAAaA,EAAa,OAAS,CAAC,IAAM,MAC5CA,GAAgB,KAElBA,GAAgB,YAChBA,GAAgBuB,IAAU,GAAK,GAAKrD,EAAI,UAAUqD,CAAK,EACnDvB,EAAa,QAAQ,kBAAkB,IAAM,KAC/CA,GAAgBuB,IAAU,GAAK,IAAM,IACrCvB,GAAgB,oBAAsB,KAAK,mBAEtCA,CACT,CACF,EAKa3C,GAAN,MAAMmE,CAAmB,CAC9B,YAAYC,EAAY,CACtB,KAAK,WAAaA,EAClB,KAAK,QAAU,CAAC,EAChB,KAAK,WAAa,GAClB,KAAK,kBAAoB,IAAInE,GAC7B,KAAK,iBAAmB,IAAIA,GAC5B,KAAK,iBAAmB,KAAK,UAAU,CACzC,CACA,KAAK6B,EAAM,CACT,YAAK,YAAYA,CAAI,EAChB,KAAK,mBACR,KAAK,iBAAmB,IAAI7B,IAEvB,KAAK,iBAAiB,OAC/B,CACA,MAAO,CACL,YAAK,WAAa,GAClB,KAAK,kBAAkB,QAAQ,EACxB,KAAK,gBACd,CACA,YAAY6B,EAAM,CAChB,GAAI,KAAK,QAAQ,QAAU,OAAO,KAAK,QAAQ,CAAC,GAAM,OAAOA,EAC3D,MAAM,IAAI,MAAM,+BAA+B,OAAO,KAAK,OAAO,oBAAoB,OAAOA,CAAI,EAAE,EAErG,KAAK,QAAQ,KAAKA,CAAI,EACtB,KAAK,kBAAkB,QAAQ,CACjC,CACM,WAAY,QAAAL,EAAA,sBAChB,OAAa,CAEX,GADA,MAAM,KAAK,kBAAkB,QACzB,CAAC,KAAK,WAAY,CAChB,KAAK,kBACP,KAAK,iBAAiB,OAAO,qBAAqB,EAEpD,KACF,CACA,KAAK,kBAAoB,IAAIxB,GAC7B,IAAMoE,EAAkB,KAAK,iBAC7B,KAAK,iBAAmB,OACxB,IAAMvC,EAAO,OAAO,KAAK,QAAQ,CAAC,GAAM,SAAW,KAAK,QAAQ,KAAK,EAAE,EAAIqC,EAAmB,eAAe,KAAK,OAAO,EACzH,KAAK,QAAQ,OAAS,EACtB,GAAI,CACF,MAAM,KAAK,WAAW,KAAKrC,CAAI,EAC/BuC,EAAgB,QAAQ,CAC1B,OAAStC,EAAO,CACdsC,EAAgB,OAAOtC,CAAK,CAC9B,CACF,CACF,GACA,OAAO,eAAeuC,EAAc,CAClC,IAAMC,EAAcD,EAAa,IAAIE,GAAKA,EAAE,UAAU,EAAE,OAAO,CAACC,EAAGD,IAAMC,EAAID,CAAC,EACxEE,EAAS,IAAI,WAAWH,CAAW,EACrCI,EAAS,EACb,QAAWC,KAAQN,EACjBI,EAAO,IAAI,IAAI,WAAWE,CAAI,EAAGD,CAAM,EACvCA,GAAUC,EAAK,WAEjB,OAAOF,EAAO,MAChB,CACF,EACMzE,GAAN,KAAoB,CAClB,aAAc,CACZ,KAAK,QAAU,IAAI,QAAQ,CAAC+B,EAAS6C,IAAW,CAAC,KAAK,UAAW,KAAK,SAAS,EAAI,CAAC7C,EAAS6C,CAAM,CAAC,CACtG,CACA,SAAU,CACR,KAAK,UAAU,CACjB,CACA,OAAOC,EAAQ,CACb,KAAK,UAAUA,CAAM,CACvB,CACF,IC7fA,IAOMC,GAEOC,GATbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KACMR,GAAyB,OAElBC,GAAN,KAAsB,CAC3B,aAAc,CAEZ,KAAK,KAAOD,GAEZ,KAAK,QAAU,EAEf,KAAK,eAAiBS,GAAe,IACvC,CAMA,cAAcC,EAAOC,EAAQ,CAE3B,GAAI,OAAOD,GAAU,SACnB,MAAM,IAAI,MAAM,yDAAyD,EAE3E,GAAI,CAACA,EACH,MAAO,CAAC,EAENC,IAAW,OACbA,EAASC,GAAW,UAGtB,IAAMC,EAAWC,GAAkB,MAAMJ,CAAK,EACxCK,EAAc,CAAC,EACrB,QAAWC,KAAWH,EAAU,CAC9B,IAAMI,EAAgB,KAAK,MAAMD,CAAO,EACxC,GAAI,OAAOC,EAAc,MAAS,SAChC,MAAM,IAAI,MAAM,kBAAkB,EAEpC,OAAQA,EAAc,KAAM,CAC1B,KAAKC,EAAY,WACf,KAAK,qBAAqBD,CAAa,EACvC,MACF,KAAKC,EAAY,WACf,KAAK,qBAAqBD,CAAa,EACvC,MACF,KAAKC,EAAY,WACf,KAAK,qBAAqBD,CAAa,EACvC,MACF,KAAKC,EAAY,KAEf,MACF,KAAKA,EAAY,MAEf,MACF,QAEEP,EAAO,IAAIQ,EAAS,YAAa,yBAA2BF,EAAc,KAAO,YAAY,EAC7F,QACJ,CACAF,EAAY,KAAKE,CAAa,CAChC,CACA,OAAOF,CACT,CAMA,aAAaC,EAAS,CACpB,OAAOF,GAAkB,MAAM,KAAK,UAAUE,CAAO,CAAC,CACxD,CACA,qBAAqBA,EAAS,CAC5B,KAAK,sBAAsBA,EAAQ,OAAQ,yCAAyC,EAChFA,EAAQ,eAAiB,QAC3B,KAAK,sBAAsBA,EAAQ,aAAc,yCAAyC,CAE9F,CACA,qBAAqBA,EAAS,CAE5B,GADA,KAAK,sBAAsBA,EAAQ,aAAc,yCAAyC,EACtFA,EAAQ,OAAS,OACnB,MAAM,IAAI,MAAM,yCAAyC,CAE7D,CACA,qBAAqBA,EAAS,CAC5B,GAAIA,EAAQ,QAAUA,EAAQ,MAC5B,MAAM,IAAI,MAAM,yCAAyC,EAEvD,CAACA,EAAQ,QAAUA,EAAQ,OAC7B,KAAK,sBAAsBA,EAAQ,MAAO,yCAAyC,EAErF,KAAK,sBAAsBA,EAAQ,aAAc,yCAAyC,CAC5F,CACA,sBAAsBI,EAAOC,EAAc,CACzC,GAAI,OAAOD,GAAU,UAAYA,IAAU,GACzC,MAAM,IAAI,MAAMC,CAAY,CAEhC,CACF,ICjFA,SAASC,GAAcC,EAAM,CAI3B,IAAMC,EAAUC,GAAoBF,EAAK,YAAY,CAAC,EACtD,GAAI,OAAOC,EAAY,IACrB,OAAOA,EAEP,MAAM,IAAI,MAAM,sBAAsBD,CAAI,EAAE,CAEhD,CA6EA,SAASG,GAASC,EAAQ,CACxB,OAAOA,EAAO,MAAQ,MACxB,CA7GA,IASMF,GAuBOG,GAhCbC,GAAAC,EAAA,KAEAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACAC,KACMZ,GAAsB,CAC1B,MAAOa,EAAS,MAChB,MAAOA,EAAS,MAChB,KAAMA,EAAS,YACf,YAAaA,EAAS,YACtB,KAAMA,EAAS,QACf,QAASA,EAAS,QAClB,MAAOA,EAAS,MAChB,SAAUA,EAAS,SACnB,KAAMA,EAAS,IACjB,EAaaV,GAAN,KAA2B,CAChC,iBAAiBW,EAAS,CAExB,GADAC,EAAI,WAAWD,EAAS,SAAS,EAC7Bb,GAASa,CAAO,EAClB,KAAK,OAASA,UACL,OAAOA,GAAY,SAAU,CACtC,IAAME,EAAWnB,GAAciB,CAAO,EACtC,KAAK,OAAS,IAAIG,GAAcD,CAAQ,CAC1C,MACE,KAAK,OAAS,IAAIC,GAAcH,CAAO,EAEzC,OAAO,IACT,CACA,QAAQI,EAAKC,EAAwB,CACnC,OAAAJ,EAAI,WAAWG,EAAK,KAAK,EACzBH,EAAI,WAAWG,EAAK,KAAK,EACzB,KAAK,IAAMA,EAGP,OAAOC,GAA2B,SACpC,KAAK,sBAAwBC,IAAA,GACxB,KAAK,uBACLD,GAGL,KAAK,sBAAwBE,GAAAD,EAAA,GACxB,KAAK,uBADmB,CAE3B,UAAWD,CACb,GAEK,IACT,CAKA,gBAAgBG,EAAU,CACxB,OAAAP,EAAI,WAAWO,EAAU,UAAU,EACnC,KAAK,SAAWA,EACT,IACT,CACA,uBAAuBC,EAA8B,CACnD,GAAI,KAAK,gBACP,MAAM,IAAI,MAAM,yCAAyC,EAE3D,OAAKA,EAEM,MAAM,QAAQA,CAA4B,EACnD,KAAK,gBAAkB,IAAIC,GAAuBD,CAA4B,EAE9E,KAAK,gBAAkBA,EAJvB,KAAK,gBAAkB,IAAIC,GAMtB,IACT,CAKA,OAAQ,CAGN,IAAMC,EAAwB,KAAK,uBAAyB,CAAC,EAO7D,GALIA,EAAsB,SAAW,SAEnCA,EAAsB,OAAS,KAAK,QAGlC,CAAC,KAAK,IACR,MAAM,IAAI,MAAM,0FAA0F,EAE5G,IAAMC,EAAa,IAAIC,GAAe,KAAK,IAAKF,CAAqB,EACrE,OAAOG,GAAc,OAAOF,EAAY,KAAK,QAAUG,GAAW,SAAU,KAAK,UAAY,IAAIC,GAAmB,KAAK,eAAe,CAC1I,CACF,IC1GA,IAAAC,GAAAC,EAAA,KAKAC,KACAC,KAEAC,OC2BA,SAASC,GAA8DC,EAAIC,EAAK,CAO9E,GANID,EAAK,IACJE,EAAe,EAAG,OAAQ,CAAC,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMM,EAAoBC,EAAc,EAAE,UACvCC,EAAU,EACVC,EAAqBC,EAAY,EAAG,EAAGJ,EAAe,KAAK,CAAC,CACjE,CACF,CACA,SAASK,GAA8DX,EAAIC,EAAK,CAO9E,GANID,EAAK,IACJE,EAAe,EAAG,OAAQ,CAAC,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMM,EAAoBC,EAAc,EAAE,UACvCC,EAAU,EACVC,EAAqBC,EAAY,EAAG,EAAGJ,EAAe,WAAW,CAAC,CACvE,CACF,CACA,SAASM,GAAgDZ,EAAIC,EAAK,CAChE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAAgF,CACrG,IAAMT,EAAoBU,EAAcH,CAAG,EAAE,UACvCI,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,gBAAgBX,CAAc,CAAC,CAC9D,CAAC,EAAE,UAAW,SAAgFa,EAAQ,CACjGH,EAAcH,CAAG,EACpB,IAAMI,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,aAAaE,CAAM,CAAC,CACnD,CAAC,EACEjB,EAAe,EAAG,OAAQ,CAAC,EAC3BkB,EAAU,EAAG,GAAG,EAChBf,EAAa,EACbH,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGtB,GAA+D,EAAG,EAAG,OAAQ,CAAC,EAAE,EAAGY,GAA+D,EAAG,EAAG,OAAQ,CAAC,EAC/KN,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAIsB,EACEhB,EAAiBL,EAAI,UACxBO,EAAU,CAAC,EACXe,IAAYD,EAAWhB,EAAe,QAAU,MAAQgB,IAAa,OAAYA,EAAW,WAAW,EACvGd,EAAU,CAAC,EACXgB,GAAelB,EAAe,OAAS,KAAO,KAAOA,EAAe,MAAM,QAAU,EAAI,EAAI,EAAE,EAC9FE,EAAU,EACVgB,GAAelB,EAAe,aAAe,KAAO,KAAOA,EAAe,YAAY,QAAU,EAAI,EAAI,EAAE,CAC/G,CACF,CAKA,SAASmB,GAA+DzB,EAAIC,EAAK,CAC/E,GAAID,EAAK,EAAG,CACV,IAAM0B,EAASZ,EAAiB,EAC7BZ,EAAe,EAAG,+BAAgC,CAAC,EACnDa,EAAW,YAAa,UAA4H,CAClJC,EAAcU,CAAG,EACpB,IAAMC,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,uBAAuB,KAAK,CAAC,CAC5D,CAAC,EAAE,gBAAiB,UAAgI,CAC/IX,EAAcU,CAAG,EACpB,IAAMC,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,4BAA4B,CAAC,CAC5D,CAAC,EACEtB,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACPO,EAAc,EACjB,IAAMqB,EAA2BC,EAAY,CAAC,EACxCF,EAAYpB,EAAc,EAC7BuB,EAAW,QAASH,EAAO,MAAM,IAAMC,GAAyB,KAAO,KAAOA,EAAsB,sBAAsB,EAAE,MAAM,EAAE,eAAgBD,EAAO,kBAAkB,CAAC,CACnL,CACF,CACA,SAASI,GAAiD/B,EAAIC,EAAK,CACjE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7BE,EAAO,EAAG,SAAS,EACnBW,EAAW,mBAAoB,SAA0FI,EAAQ,CAC/HH,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,iBAAiB,KAAKR,CAAM,CAAC,CAC5D,CAAC,EAAE,mBAAoB,SAA0FA,EAAQ,CACpHH,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,iBAAiB,KAAKR,CAAM,CAAC,CAC5D,CAAC,EAAE,UAAW,SAAiFA,EAAQ,CAClGH,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEa,GAAmB,EAAG,CAAC,EACvB3B,EAAa,EACbgB,EAAW,EAAGI,GAAgE,EAAG,EAAG,cAAe,KAAM,EAAMQ,EAAsB,CAC1I,CACA,GAAIjC,EAAK,EAAG,CACV,IAAMkC,EAAqBL,EAAY,CAAC,EAClCF,EAAYpB,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,GAAIC,GAAK,CAACT,EAAO,cAAc,uBAAuB,CAAC,EAAE,6BAA8BA,EAAO,4BAA4B,CAAC,EAAE,0BAA2BA,EAAO,qBAAqB,CAAC,EAAE,yBAA0BA,EAAO,oBAAoB,CAAC,EAAE,sBAAuBA,EAAO,sBAAsB,EAAE,sBAAuBO,CAAe,EAAE,eAAgBP,EAAO,qBAAqB,CAAC,EAAE,eAAgBA,EAAO,qBAAqB,CAAC,EAAE,UAAWA,EAAO,oBAAoB,CAAC,EAAE,aAAcA,EAAO,uBAAuB,CAAC,EAAE,YAAaA,EAAO,qBAAqB,EAAE,aAAcA,EAAO,cAAc,wBAA6BjB,EAAY,EAAG,GAAI,4CAA4C,EAAI,EAAE,EAAE,wBAAyBiB,EAAO,qBAAqB,EAAE,6BAA8B,EAAI,EACvzBnB,EAAU,CAAC,EACXsB,EAAW,mBAAoBH,EAAO,eAAe,CAAC,CAC3D,CACF,CACA,SAASU,GAAuDrC,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,IAAK,CAAC,EACnBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BgC,EAAY,SAAUD,EAAO,0BAA0B,uBAAyB,KAAO,KAAOA,EAAO,0BAA0B,sBAAsB,SAAS,CAAC,CACpK,CACF,CACA,SAASE,GAAyDxC,EAAIC,EAAK,CACrED,EAAK,IACJoB,EAAU,EAAG,+BAAgC,CAAC,EAC9ChB,EAAO,EAAG,SAAS,GAEpBJ,EAAK,GACJ8B,EAAW,UAAcpB,EAAY,EAAG,EAAG,4CAA4C,CAAC,CAE/F,CAMA,SAAS+B,GAAuDzC,EAAIC,EAAK,CAavE,GAZID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACvCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBF,EAAe,EAAG,QAAQ,EAAE,EAAG,IAAK,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfF,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,4DAA4D,EAAG,GAAG,EAC/GF,EAAU,CAAC,EACXmC,GAAsB,OAAQL,EAAO,0BAA8BM,EAAa,EAChFpC,EAAU,EACVC,EAAqBC,EAAY,EAAG,EAAG,wDAAwD,CAAC,EAChGF,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,sEAAsE,EAAG,GAAG,CAC9H,CACF,CACA,SAASmC,GAAuD7C,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,MAAO,CAAC,EACrBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,YAAaQ,EAAO,QAAQ,EAAMQ,EAAc,CAChE,CACF,CACA,SAASC,GAAuD/C,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,MAAO,CAAC,EACrBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAIgD,EACEV,EAAY/B,EAAc,CAAC,EAC9BuB,EAAW,UAAcmB,GAAgB,EAAGC,KAAOF,EAAUV,EAAO,oBAAoB,IAAM,KAAO,KAAOU,EAAQ,YAAY,KAAO,SAAUA,EAAUV,EAAO,oBAAoB,IAAM,KAAO,KAAOU,EAAQ,YAAY,KAAO,YAAaA,EAAUV,EAAO,oBAAoB,IAAM,KAAO,KAAOU,EAAQ,YAAY,KAAO,UAAU,CAAC,EACjVxC,EAAU,EACVsB,EAAW,YAAaQ,EAAO,QAAQ,EAAMQ,EAAc,CAChE,CACF,CACA,SAASK,GAAyCnD,EAAIC,EAAK,CAMzD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGoB,GAAwD,GAAI,GAAI,MAAO,CAAC,EAAE,EAAGI,GAAwD,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGE,GAAwD,EAAG,EAAG,MAAO,CAAC,EAC5O1C,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BC,EAAU,EACVgB,EAAcc,EAAO,mBAAmB,EAAI,EAAI,EAAE,EAClD9B,EAAU,EACVgB,EAAcc,EAAO,4BAA4B,GAAK,CAACA,EAAO,mBAAmB,EAAI,EAAI,EAAE,EAC3F9B,EAAU,EACVgB,EAAcc,EAAO,kBAAkB,GAAK,CAACA,EAAO,mBAAmB,GAAK,CAACA,EAAO,4BAA4B,EAAI,EAAI,EAAE,CAC/H,CACF,CAEA,SAASc,GAAoCpD,EAAIC,EAAK,CAMpD,GALID,EAAK,IACJE,EAAe,EAAG,KAAK,EACvBkB,EAAU,EAAG,iCAAkC,CAAC,EAChDf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMqD,EAAepD,EAAI,UACtBO,EAAU,EACVsB,EAAW,SAAUuB,CAAY,CACtC,CACF,CAYA,SAASC,GAAmCtD,EAAIC,EAAK,CAMnD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,kBAAmB,CAAC,EACjCf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMuD,EAAUtD,EAAI,UACduD,EAAgBvD,EAAI,OACpBgB,EAAYV,EAAc,EAC7BuB,EAAW,UAAc2B,GAAgB,EAAGC,GAAKF,IAAkBvC,EAAO,SAAUA,EAAO,MAAM,SAAW,CAAC,CAAC,EAC9GT,EAAU,EACVsB,EAAW,SAAU0B,IAAkBvC,EAAO,QAAQ,EAAE,aAAcsC,EAAQ,UAAU,CAC7F,CACF,CACA,SAASI,GAAkD3D,EAAIC,EAAK,CAClE,GAAID,EAAK,EAAG,CACV,IAAM4D,EAAS9C,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAAkF,CACvG,IAAM8C,EAAmB7C,EAAc4C,CAAG,EAAE,OACtC3C,EAAYV,EAAc,CAAC,EACjC,OAAUW,EAAYD,EAAO,gBAAgB4C,CAAa,CAAC,CAC7D,CAAC,EACEzC,EAAU,EAAG,MAAO,EAAE,EACtBf,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM6D,EAAgB5D,EAAI,OACpBgB,EAAYV,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,UAAcK,EAAgB,EAAG2B,GAAKD,IAAkB5C,EAAO,QAAQ,CAAC,CACxF,CACF,CACA,SAAS8C,GAA4C/D,EAAIC,EAAK,CAC5D,GAAID,EAAK,EAAG,CACV,IAAMgE,EAASlD,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACtDa,EAAW,QAAS,UAA4E,CAC9FC,EAAcgD,CAAG,EACpB,IAAM/C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,iBAAiB,CAAC,CACjD,CAAC,EACEZ,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAC3B+D,GAAiB,EAAGN,GAAmD,EAAG,EAAG,MAAO,GAAOO,EAAyB,EACpH7D,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAA4E,CAC9FC,EAAcgD,CAAG,EACpB,IAAM/C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,aAAa,CAAC,CAC7C,CAAC,EACEZ,EAAa,EAAE,EAAE,CACtB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BC,EAAU,CAAC,EACX2D,GAAWlD,EAAO,KAAK,CAC5B,CACF,CAKA,SAASmD,GAAuCpE,EAAIC,EAAK,CAIvD,GAHID,EAAK,GACJoB,EAAU,EAAG,2BAA4B,CAAC,EAE3CpB,EAAK,EAAG,CACV,IAAMqE,EAAiBpE,EAAI,UACxB6B,EAAW,mBAAoB,MAAS,EAAE,OAAQuC,CAAc,CACrE,CACF,CAKA,SAASC,GAAyDtE,EAAIC,EAAK,CACzE,GAAID,EAAK,EAAG,CACV,IAAMgE,EAASlD,EAAiB,EAC7BZ,EAAe,EAAG,KAAM,EAAE,EAC1Ba,EAAW,QAAS,UAAwF,CAC7G,IAAMwD,EAAgBvD,EAAcgD,CAAG,EAAE,UACnCQ,EAAYjE,EAAc,EAAE,UAC5BoB,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,eAAe6C,EAAQD,CAAU,CAAC,CACjE,CAAC,EAAE,UAAW,SAAwFpD,EAAQ,CACzGH,EAAcgD,CAAG,EACpB,IAAMrC,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,IAAK,GAAI,CAAC,EAC1CE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAuF,CACzGC,EAAcgD,CAAG,EACpB,IAAMS,EAAgB5C,EAAY,CAAC,EACnC,OAAUX,EAAYuD,EAAW,OAAO,CAAC,CAC3C,CAAC,EAAE,QAAS,SAAqFtD,EAAQ,CACvG,IAAMoD,EAAgBvD,EAAcgD,CAAG,EAAE,UACnCQ,EAAYjE,EAAc,EAAE,UAC5BoB,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,iBAAiB6C,EAAQD,EAAYpD,CAAM,CAAC,CAC3E,CAAC,EACEd,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACvDC,EAAO,CAAC,EACRE,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,GAAI,IAAK,EAAE,EACrBlB,EAAe,GAAI,MAAO,EAAE,EAC5BC,EAAO,EAAE,EACTE,EAAa,EAAE,EAAE,EAAE,EAAE,CAC1B,CACA,GAAIL,EAAK,EAAG,CACV,IAAMuE,EAAatE,EAAI,UACjByE,EAAgBzE,EAAI,OACpB0E,EAAYpE,EAAc,EAC1BiE,EAASG,EAAO,UAChBC,EAAeD,EAAO,OACtBhD,EAAYpB,EAAc,EAC7BsE,GAAY,MAAOlD,EAAO,8BAA8B+C,CAAa,CAAC,EACtEnC,EAAY,SAAUgC,EAAW,UAAU,EAC3CO,GAAwB,cAAe,qBAAsBF,EAAc,IAAKF,EAAe,EAAE,EACjGK,GAAuB,KAAM,GAAIP,EAAO,GAAI,IAAKD,EAAW,IAAK,EAAE,EACnE/D,EAAU,CAAC,EACXsB,EAAW,UAAWH,EAAO,YAAY6C,EAAQD,CAAU,CAAC,EAAE,aAAiB7D,EAAY,EAAG,GAAI,8DAA8D,CAAC,EAAE,qBAAsBiB,EAAO,gCAAgC6C,EAAQD,CAAU,CAAC,EACnP/D,EAAU,CAAC,EACXkC,EAAmB,IAAKf,EAAO,qBAAqB6C,EAAQD,CAAU,EAAG,GAAG,EAC5E/D,EAAU,CAAC,EACXkC,EAAmB,IAAKf,EAAO,wBAAwB6C,EAAQD,CAAU,EAAG,GAAG,CACpF,CACF,CACA,SAASS,GAA8DhF,EAAIC,EAAK,CAC1ED,EAAK,IACJE,EAAe,EAAG,KAAM,EAAE,EAC1BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,GAEdL,EAAK,IACJQ,EAAU,EACVkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,yDAAyD,EAAG,GAAG,EAEnH,CACA,SAASuE,GAAmDjF,EAAIC,EAAK,CACnE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,SAAU,CAAC,EAAE,EAAG,MAAO,CAAC,EAC1Ca,EAAW,UAAW,SAAmFI,EAAQ,CAC/GH,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,IAAK,CAAC,EACnBf,EAAa,EACbH,EAAe,EAAG,QAAS,CAAC,EAC5BgF,GAAiB,gBAAiB,SAA2F/D,EAAQ,CACtI,IAAMqD,EAAYxD,EAAcH,CAAG,EAAE,UAC/Bc,EAAYpB,EAAc,EAChC,OAAG4E,GAAmBxD,EAAO,gBAAgB6C,EAAO,EAAE,EAAGrD,CAAM,IAAMQ,EAAO,gBAAgB6C,EAAO,EAAE,EAAIrD,GAC/FD,EAAYC,CAAM,CAC9B,CAAC,EACEd,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,KAAM,CAAC,EACtC+D,GAAiB,EAAGK,GAA0D,GAAI,GAAI,KAAM,GAAIc,GAAY,GAAOJ,GAA+D,EAAG,EAAG,KAAM,EAAE,EAChM5E,EAAO,GAAI,QAAQ,EACnBA,EAAO,GAAI,gBAAgB,EAC3BC,EAAa,EAAE,EAAE,CACtB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMwE,EAASvE,EAAI,UACb2E,EAAe3E,EAAI,OACnB0B,EAAYpB,EAAc,EAC7BuB,EAAW,UAAc2B,GAAgB,GAAI4B,GAAKb,EAAO,GAAIA,EAAO,WAAW,CAAC,CAAC,EACjFhE,EAAU,CAAC,EACX8E,GAAwB,cAAe,uBAAwBV,EAAc,EAAE,EAC/E9C,EAAW,cAAe0C,EAAO,yBAAyB,CAAC,EAC3De,GAAiB,UAAW5D,EAAO,gBAAgB6C,EAAO,EAAE,CAAC,EAC7DhE,EAAU,CAAC,EACX8E,GAAwB,cAAe,2BAA4BV,EAAc,EAAE,EACnFpE,EAAU,EACV2D,GAAcqB,GAAY,GAAI,GAAOA,GAAY,GAAI,EAAG7D,EAAO,SAAS,EAAE6C,EAAO,EAAE,EAAG7C,EAAO,gBAAgB6C,EAAO,EAAE,EAAGA,EAAO,oBAAoB,EAAG,UAAW,MAAM,CAAC,CAC9K,CACF,CAUA,SAASiB,GAAkEzF,EAAIC,EAAK,CAMlF,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1B8B,GAAmB,EAAG,CAAC,EACvB3B,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,mBAAoBQ,EAAO,eAAe,CAAC,EAAE,0BAA8BW,GAAgB,EAAGyC,GAAKpD,EAAO,QAASA,EAAO,yBAA0BA,EAAO,0BAA0B,CAAC,CACtM,CACF,CACA,SAASqD,GAAgF3F,EAAIC,EAAK,CAChG,GAAID,EAAK,EAAG,CACV,IAAM0B,EAASZ,EAAiB,EAC7BZ,EAAe,EAAG,kCAAmC,CAAC,EACtDa,EAAW,YAAa,UAAgJ,CACtKC,EAAcU,CAAG,EACpB,IAAMY,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,UAAU,KAAK,CAAC,CAC/C,CAAC,EACEjC,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACPO,EAAc,EACjB,IAAMqB,EAA2BC,EAAY,CAAC,EACxCS,EAAY/B,EAAc,CAAC,EAC9BuB,EAAW,cAAeQ,EAAO,YAAY,CAAC,EAAE,WAAYA,EAAO,SAAS,CAAC,EAAE,qBAAsBV,CAAqB,EAAE,sBAAuBU,EAAO,oBAAoB,CAAC,EAAE,yBAA0BA,EAAO,uBAAuB,CAAC,EAAE,yBAA0BA,EAAO,sBAAsB,CACxS,CACF,CACA,SAASsD,GAAkE5F,EAAIC,EAAK,CAClF,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7Ba,EAAW,mBAAoB,SAA2GI,EAAQ,CAChJH,EAAc6E,CAAG,EACpB,IAAMvD,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,iBAAiB,KAAKnB,CAAM,CAAC,CAC5D,CAAC,EAAE,mBAAoB,SAA2GA,EAAQ,CACrIH,EAAc6E,CAAG,EACpB,IAAMvD,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,iBAAiB,KAAKnB,CAAM,CAAC,CAC5D,CAAC,EAAE,UAAW,SAAkGA,EAAQ,CACnHH,EAAc6E,CAAG,EACpB,IAAMvD,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,UAAUnB,CAAM,CAAC,CAChD,CAAC,EACEa,GAAmB,EAAG,CAAC,EACvB3B,EAAa,EACbgB,EAAW,EAAGsE,GAAiF,EAAG,EAAG,cAAe,KAAM,EAAM1D,EAAsB,CAC3J,CACA,GAAIjC,EAAK,EAAG,CACV,IAAM8F,EAA8BjE,EAAY,CAAC,EAC3CkE,EAAqBlE,EAAY,CAAC,EAClCS,EAAY/B,EAAc,CAAC,EAC9BuB,EAAW,UAAcK,EAAgB,GAAIC,GAAK,CAACE,EAAO,cAAc,uBAAuB,CAAC,EAAE,6BAA8BA,EAAO,4BAA4B,CAAC,EAAE,0BAA2BA,EAAO,qBAAqB,CAAC,EAAE,yBAA0BA,EAAO,oBAAoB,CAAC,EAAE,sBAAuBA,EAAO,qBAAqB,EAAE,sBAAuBA,EAAO,sBAAsB,EAAE,sBAAuByD,CAAe,EAAE,eAAgBzD,EAAO,qBAAqB,CAAC,EAAE,eAAgBA,EAAO,qBAAqB,CAAC,EAAE,UAAWA,EAAO,oBAAoB,CAAC,EAAE,aAAcA,EAAO,uBAAuB,CAAC,EAAE,YAAaA,EAAO,qBAAqB,EAAE,wBAAyBA,EAAO,qBAAqB,EAAE,6BAA8B,EAAI,EACruB9B,EAAU,CAAC,EACXsB,EAAW,mBAAoBQ,EAAO,eAAe,CAAC,EAAE,0BAA8BmB,GAAgB,GAAIuC,GAAM1D,EAAO,QAASwD,GAA4B,KAAO,KAAOA,EAAyB,QAAQ,CAAC,CACjN,CACF,CACA,SAASG,GAAoDjG,EAAIC,EAAK,CAIpE,GAHID,EAAK,GACJqB,EAAW,EAAGoE,GAAmE,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGG,GAAmE,EAAG,EAAE,EAE7K5F,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BiB,EAAcc,EAAO,mBAAmB,EAAI,EAAI,CAAC,CACtD,CACF,CAIA,SAAS4D,GAAwElG,EAAIC,EAAK,CACxF,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAAwG,CAC1HC,EAAcH,CAAG,EACpB,IAAMsF,EAAiC5F,EAAc,EAAE,yBACvD,OAAUW,EAAYiF,EAA4B,KAAK,CAAC,CAC1D,CAAC,EACE/E,EAAU,EAAG,IAAK,CAAC,EACnBf,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMoG,EAAmC7F,EAAc,EAAE,2BACnD8F,EAAY9F,EAAc,EAC7BuB,EAAW,aAAcsE,CAA6B,EAAE,wBAAyBC,EAAO,gBAAgB,SAAS,CACtH,CACF,CACA,SAASC,GAAwEtG,EAAIC,EAAK,CAMxF,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,IAAK,EAAE,EACpBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMuG,EAAyBhG,EAAc,EAAE,iBAC5CC,EAAU,EACVe,GAAWgF,EAAoB,EAAI,mBAAqB,kBAAkB,CAC/E,CACF,CACA,SAASC,GAA0DxG,EAAIC,EAAK,CAQ1E,GAPID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,OAAQ,CAAC,EAClEC,EAAO,CAAC,EACRE,EAAa,EAAE,EACfgB,EAAW,EAAG6E,GAAyE,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGI,GAAyE,EAAG,EAAG,MAAO,CAAC,EACjMjG,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMyG,EAAaxG,EAAI,QACjBkG,EAA8BlG,EAAI,yBACrC6B,EAAW,UAAcK,EAAgB,EAAGuE,GAAMP,CAA2B,CAAC,EAC9E3F,EAAU,CAAC,EACXC,EAAkBgG,EAAW,CAAC,EAC9BjG,EAAU,EACVgB,EAAc2E,EAA8B,EAAI,CAAC,CACtD,CACF,CACA,SAASQ,GAA0E3G,EAAIC,EAAK,CAC1F,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAA0G,CAC5HC,EAAc6E,CAAG,EACpB,IAAMe,EAAiCrG,EAAc,EAAE,yBACjD8F,EAAY9F,EAAc,EAChC,OAAAqG,EAA4B,KAAK,EACvB1F,EAAYmF,EAAO,UAAU,KAAK,CAAC,CAC/C,CAAC,EACEjF,EAAU,EAAG,MAAO,CAAC,EACrBlB,EAAe,EAAG,MAAO,CAAC,EAC1BC,EAAO,CAAC,EACRE,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM6G,EAAgBtG,EAAc,EAAE,QACnCC,EAAU,CAAC,EACXC,EAAkBoG,EAAW,CAAC,CACnC,CACF,CACA,SAASC,GAA0E9G,EAAIC,EAAK,CAI1F,GAHID,EAAK,GACJoB,EAAU,EAAG,+BAAgC,CAAC,EAE/CpB,EAAK,EAAG,CACV,IAAM6G,EAAgBtG,EAAc,EAAE,QACnCuB,EAAW,UAAW+E,EAAW,CAAC,CACvC,CACF,CACA,SAASE,GAA4D/G,EAAIC,EAAK,CAI5E,GAHID,EAAK,GACJqB,EAAW,EAAGsF,GAA2E,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGG,GAA2E,EAAG,EAAG,+BAAgC,CAAC,EAE/N9G,EAAK,EAAG,CACV,IAAM4G,EAA8B3G,EAAI,yBACrCuB,EAAcoF,EAA8B,EAAI,CAAC,CACtD,CACF,CAMA,SAASI,GAAoDhH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,GAAOhC,EAAY,EAAG,EAAG,iDAAiD,EAAG,IAAI,EACpGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,cAAc,CACtD,CACF,CACA,SAAS2E,GAAoDjH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,GAAOhC,EAAY,EAAG,EAAG,gDAAgD,EAAG,IAAI,EACnGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,aAAa,CACrD,CACF,CACA,SAAS4E,GAAoDlH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,GAAOhC,EAAY,EAAG,EAAG,mDAAmD,EAAG,IAAI,EACtGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,gBAAgB,CACxD,CACF,CACA,SAAS6E,GAAoDnH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,GAAOhC,EAAY,EAAG,EAAG,oDAAoD,EAAG,IAAI,EACvGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,iBAAiB,CACzD,CACF,CACA,SAAS8E,GAAoDpH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,GAAOhC,EAAY,EAAG,EAAG,kDAAkD,EAAG,IAAI,EACrGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,eAAe,CACvD,CACF,CACA,SAAS+E,GAAoDrH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,qDAAqD,EAAG,IAAI,EACzGF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,kBAAkB,CAC1D,CACF,CACA,SAASgF,GAAoDtH,EAAIC,EAAK,CAUpE,GATID,EAAK,IACJE,EAAe,EAAG,KAAK,EAAE,EAAG,OAAQ,CAAC,EACrCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,sDAAsD,EAAG,IAAI,EAC1GF,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,mBAAmB,CAC3D,CACF,CACA,SAASiF,GAAoDvH,EAAIC,EAAK,CAMpE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAM,EACrCC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXC,EAAkB6B,EAAO,UAAU,cAAc,CACtD,CACF,CACA,SAASkF,GAAsCxH,EAAIC,EAAK,CAMtD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAG2F,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,KAAK,EAAE,EAAGC,GAAqD,EAAG,EAAG,MAAO,CAAC,EACpjBlH,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BC,EAAU,EACVgB,EAAcc,EAAO,UAAU,eAAiB,EAAI,EAAE,EACtD9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,cAAgB,EAAI,EAAE,EACrD9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,iBAAmB,EAAI,EAAE,EACxD9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,kBAAoB,EAAI,EAAE,EACzD9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,gBAAkB,EAAI,EAAE,EACvD9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,mBAAqB,EAAI,EAAE,EAC1D9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,oBAAsB,EAAI,EAAE,EAC3D9B,EAAU,EACVgB,EAAcc,EAAO,UAAU,eAAiB,EAAI,EAAE,CAC3D,CACF,CACA,SAASmF,GAAsCzH,EAAIC,EAAK,CAClDD,EAAK,IACJE,EAAe,EAAG,MAAM,EACxBkB,EAAU,EAAG,qBAAsB,EAAE,EACrCf,EAAa,EAEpB,CAUA,SAASqH,GAAgD1H,EAAIC,EAAK,CAgBhE,GAfID,EAAK,IACJE,EAAe,EAAG,OAAQ,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,QAAS,EAAE,EAAE,EAAG,MAAM,EAC/FC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,QAAS,EAAE,EACxBf,EAAa,EAAE,EACfH,EAAe,GAAI,MAAO,EAAE,EAAE,GAAI,QAAS,EAAE,EAAE,GAAI,MAAM,EACzDC,EAAO,EAAE,EACTC,EAAO,GAAI,SAAS,EACpBC,EAAa,EAAE,EACfe,EAAU,GAAI,aAAc,EAAE,EAC9Bf,EAAa,EAAE,EAAE,EAAE,GAEpBL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BuB,EAAW,YAAaQ,EAAO,kBAAkB,EACjD9B,EAAU,CAAC,EACXsB,EAAW,UAAcK,EAAgB,EAAGwF,GAAM,CAACrF,EAAO,SAAWA,EAAO,QAAQ,OAAO,CAAC,EAC5F9B,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,iDAAiD,CAAC,EACzFF,EAAU,CAAC,EACXC,EAAqBC,EAAY,GAAI,EAAG,qDAAqD,CAAC,EAC9FF,EAAU,CAAC,EACXsB,EAAW,UAAc8F,GAAgB,GAAIC,EAAI,CAAC,CACvD,CACF,CACA,SAASC,GAAgD9H,EAAIC,EAAK,CAC5DD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,IAAI,EACjDC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,IAAI,EACtBC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EAAE,GAElBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,4DAA4D,CAAC,EACpGF,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,8DAA8D,CAAC,EAE7G,CACA,SAASqH,GAAgD/H,EAAIC,EAAK,CAC5DD,EAAK,IACJE,EAAe,EAAG,MAAM,EACxBkB,EAAU,EAAG,qBAAsB,EAAE,EACrCf,EAAa,EAEpB,CACA,SAAS2H,GAAgDhI,EAAIC,EAAK,CAChE,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,YAAa,EAAE,EACjCE,EAAO,EAAG,SAAS,EACnBW,EAAW,SAAU,UAAuF,CAC1GC,EAAc6E,CAAG,EACpB,IAAMvD,EAAY/B,EAAc,EAChC,OAAUW,EAAYoB,EAAO,KAAK,CAAC,CACrC,CAAC,EACEjC,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,EAAG8F,GAASvH,EAAY,EAAG,EAAG,+CAA+C,CAAC,CAAC,EAAE,WAAY,CAAC4B,EAAO,oBAAsB,CAACA,EAAO,mBAAmB,KAAK,CACzM,CACF,CAIA,SAAS4F,GAAqClI,EAAIC,EAAK,CAIrD,GAHID,EAAK,GACJoB,EAAU,EAAG,MAAO,CAAC,EAEtBpB,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,EAAGgG,GAAM7F,EAAO,4BAA4B,CAAC,CAAC,CAC5F,CACF,CAIA,SAAS8F,GAAqCpI,EAAIC,EAAK,CAMrD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BC,EAAO,CAAC,EACRE,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BC,EAAU,EACVC,EAAkB6B,EAAO,KAAK,KAAK,CACxC,CACF,CACA,SAAS+F,GAAqCrI,EAAIC,EAAK,CAIrD,GAHID,EAAK,GACJoB,EAAU,EAAG,MAAO,CAAC,EAEtBpB,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BuB,EAAW,YAAaQ,EAAO,KAAK,KAASQ,EAAc,CAChE,CACF,CACA,SAASwF,GAAqCtI,EAAIC,EAAK,CACrD,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,SAAmEI,EAAQ,CAC7FH,EAAc6E,CAAG,EACpB,IAAMvD,EAAY/B,EAAc,EAChC,OAAUW,EAAYoB,EAAO,QAAQnB,CAAM,CAAC,CAC9C,CAAC,EACEd,EAAa,CAClB,CACF,CACA,SAASkI,GAAqCvI,EAAIC,EAAK,CAIrD,GAHID,EAAK,GACJoB,EAAU,EAAG,MAAO,CAAC,EAEtBpB,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BuB,EAAW,aAAcQ,EAAO,0BAA4B,QAAU,EAAE,CAC7E,CACF,CAMA,SAASkG,GAAoCxI,EAAIC,EAAK,CAIpD,GAHID,EAAK,GACJgC,GAAmB,EAAG,CAAC,EAExBhC,EAAK,EAAG,CACV,IAAMyI,EAAUxI,EAAI,UACdyI,EAAcnI,EAAc,EAAE,UACjCA,EAAc,EACjB,IAAMoI,EAAqB9G,EAAY,CAAC,EACrCC,EAAW,mBAAoB6G,CAAe,EAAE,0BAA8BlF,GAAgB,EAAGmF,GAAMH,EAASC,CAAQ,CAAC,CAC9H,CACF,CACA,SAASG,GAA8B7I,EAAIC,EAAK,CAC9C,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACpDC,EAAO,CAAC,EACRE,EAAa,EACbH,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,SAA4DI,EAAQ,CACzF,IAAMuH,EAAc1H,EAAc6E,CAAG,EAAE,UACjCQ,EAAY9F,EAAc,EAChC,OAAUW,EAAYmF,EAAO,WAAWlF,EAAQuH,CAAQ,CAAC,CAC3D,CAAC,EACEvI,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfyI,GAAwB,CAAC,EACzB7E,GAAiB,EAAGuE,GAAqC,EAAG,EAAG,eAAgB,EAAMtE,EAAyB,EAC9G9D,EAAO,GAAI,OAAO,EAClB2I,GAAsB,EACtB1I,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM0I,EAAWzI,EAAI,UACfoG,EAAY9F,EAAc,EAC7BuB,EAAW,iBAAkB4G,EAAS,gBAAkB,UAAY,EAAE,EACtElI,EAAU,CAAC,EACXC,EAAkBiI,EAAS,KAAK,EAChClI,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,6DAA6D,EAAG,GAAG,EAChHF,EAAU,CAAC,EACX2D,GAAcqB,GAAY,GAAI,EAAGkD,EAAS,MAAO,EAAGrC,EAAO,eAAe,CAAC,CAChF,CACF,CACA,SAAS2C,GAAsChJ,EAAIC,EAAK,CACtD,GAAID,EAAK,EAAG,CACV,IAAMiJ,EAASnI,EAAiB,EAC7BZ,EAAe,EAAG,oBAAqB,CAAC,EACxCa,EAAW,cAAe,UAA0F,CACrH,IAAM4D,EAAY3D,EAAciI,CAAG,EAC7BC,EAAUvE,EAAO,KACjBwE,EAAYxE,EAAO,MACnB0B,EAAY9F,EAAc,EAChC,OAAUW,EAAYmF,EAAO,UAAU6C,EAASC,CAAS,CAAC,CAC5D,CAAC,EACE9I,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMkJ,EAAUjJ,EAAI,KACdoG,EAAY9F,EAAc,EAC7BgC,EAAY,SAAU8D,EAAO,cAAc,EAC3CvE,EAAW,OAAQoH,CAAO,EAAE,iBAAkB7C,EAAO,cAAc,CACxE,CACF,CAMA,SAAS+C,GAA+DpJ,EAAIC,EAAK,CAC/E,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,qBAAsB,CAAC,EACzCa,EAAW,mBAAoB,SAAuHI,EAAQ,CAC5JH,EAAc6E,CAAG,EACpB,IAAM5E,EAAYV,EAAc,CAAC,EACjC,OAAUW,EAAYD,EAAO,qBAAqBE,CAAM,CAAC,CAC3D,CAAC,EACEd,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,CAAC,EAC9BuB,EAAW,QAASb,EAAO,MAAM,CAAC,EAAE,eAAgBA,EAAO,YAAY,CAC5E,CACF,CACA,SAASoI,GAAiDrJ,EAAIC,EAAK,CAIjE,GAHID,EAAK,GACJqB,EAAW,EAAG+H,GAAgE,EAAG,EAAG,qBAAsB,CAAC,EAE5GpJ,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BiB,EAAcP,EAAO,cAAgB,EAAI,EAAE,CAChD,CACF,CAGA,SAASqI,GAAuCtJ,EAAIC,EAAK,CACvD,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAAuE,CACzFC,EAAc6E,CAAG,EACpB,IAAM5E,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,UAAU,CAAC,CAC1C,CAAC,EACEG,EAAU,EAAG,IAAK,CAAC,EACnBf,EAAa,CAClB,CACF,CACA,SAASkJ,GAA6CvJ,EAAIC,EAAK,CAC7D,GAAID,EAAK,EAAG,CACV,IAAMgE,EAASlD,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAA6E,CAClG,IAAMyI,EAAaxI,EAAcgD,CAAG,EAAE,UAChC/C,EAAYV,EAAc,CAAC,EACjC,OAAUW,EAAYD,EAAO,WAAWuI,CAAO,CAAC,CAClD,CAAC,EAAE,UAAW,SAA6ErI,EAAQ,CAC9FH,EAAcgD,CAAG,EACpB,IAAM/C,EAAYV,EAAc,CAAC,EACjC,OAAUW,EAAYD,EAAO,sBAAsBE,CAAM,CAAC,CAC5D,CAAC,EACEjB,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,OAAQ,EAAE,EAC1CC,EAAO,CAAC,EACRE,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRE,EAAa,EAAE,EACfe,EAAU,EAAG,OAAQ,EAAE,EACvBhB,EAAO,EAAG,cAAc,EACxBC,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMwJ,EAAUvJ,EAAI,UACdwJ,EAAgBxJ,EAAI,OACpBgB,EAAYV,EAAc,CAAC,EAC9BmJ,GAAuB,KAAM,gBAAiBD,EAAe,EAAE,EAC/D3H,EAAW,wBAAyB,CAACb,EAAO,cAAc,CAAC,EAC3DT,EAAU,CAAC,EACXC,EAAkB+I,EAAQ,KAAK,EAC/BhJ,EAAU,CAAC,EACXC,EAAkB+I,EAAQ,cAAc,EACxChJ,EAAU,EACVsB,EAAW,YAAgBpB,EAAY,EAAG,EAAG8I,EAAQ,OAAO,EAAM1G,EAAc,CACrF,CACF,CACA,SAAS6G,GAAkD3J,EAAIC,EAAK,CAOlE,GANID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,OAAQ,EAAE,EAC1CC,EAAO,CAAC,EACRC,EAAO,EAAG,OAAO,EACjBC,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXoJ,GAAmB,KAAO3I,EAAO,WAAW,OAASA,EAAO,gBAAqBuE,GAAY,EAAG,EAAGvE,EAAO,WAAY,EAAGA,EAAO,eAAe,EAAI,MAAQA,EAAO,WAAY,KAAOA,EAAO,gBAAiB,GAAG,CACrN,CACF,CACA,SAAS4I,GAAuC7J,EAAIC,EAAK,CASvD,GARID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BE,EAAO,EAAG,mBAAmB,EAC7BA,EAAO,EAAG,SAAS,EACnBF,EAAe,EAAG,MAAO,EAAE,EAC3B+D,GAAiB,EAAGsF,GAA8C,EAAG,EAAG,MAAO,GAAOrF,GAA2B,GAAOyF,GAAmD,EAAG,EAAG,MAAO,EAAE,EAC1LtJ,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC1BuJ,EAAuBjI,EAAY,CAAC,EACvCgD,GAAY,QAAYkF,GAAY,EAAG,EAAMvE,GAAY,EAAG,EAAGsE,EAAmB,QAAS,EAAI,EAAG,CAAC,EAAG,IAAI,EAC1GtJ,EAAU,CAAC,EACX2D,GAAWlD,EAAO,aAAa,CACpC,CACF,CAUA,SAAS+I,GAAuDhK,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7BE,EAAO,EAAG,OAAO,EACjBA,EAAO,EAAG,SAAS,EACnBW,EAAW,mBAAoB,UAAkG,CAC/HC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,cAAc,CAAC,CAC9C,CAAC,EAAE,UAAW,SAAuFR,EAAQ,CACxGH,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEa,GAAmB,EAAG,CAAC,EACvB3B,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC3B0J,EAA6BpI,EAAY,CAAC,EAC1CqI,EAAiCrI,EAAY,CAAC,EACjD6H,GAAuB,6BAA8B,qBAAyBhJ,EAAY,EAAG,EAAGiB,EAAO,UAAU,EAAI,iBAAmB,GAAI,EAAE,EAC9IG,EAAW,sBAAuBoI,CAA2B,EAAE,sBAAuBvI,EAAO,qBAAqB,EAAE,UAAWA,EAAO,mBAAmB,EAAE,aAAiBjB,EAAY,EAAG,GAAI,gDAAgD,CAAC,EAAE,wBAAyBiB,EAAO,gBAAgB,SAAS,EAAE,6BAA8B,EAAI,EAC/UnB,EAAU,CAAC,EACXsB,EAAW,mBAAoBmI,CAAuB,CAC3D,CACF,CACA,SAASE,GAAuDnK,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1B8B,GAAmB,EAAG,CAAC,EACvB3B,EAAa,GAEdL,EAAK,EAAG,CACPO,EAAc,CAAC,EAClB,IAAM0J,EAA6BpI,EAAY,CAAC,EAC7CrB,EAAU,EACVsB,EAAW,mBAAoBmI,CAAuB,CAC3D,CACF,CACA,SAASG,GAAyCpK,EAAIC,EAAK,CAIzD,GAHID,EAAK,GACJqB,EAAW,EAAG2I,GAAwD,EAAG,GAAI,MAAO,CAAC,EAAE,EAAGG,GAAwD,EAAG,EAAG,MAAO,CAAC,EAEjKnK,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BiB,EAAcG,EAAO,wBAAwB,EAAI,EAAI,CAAC,CAC3D,CACF,CACA,SAAS0I,GAAyCrK,EAAIC,EAAK,CAIzD,GAHID,EAAK,GACJoB,EAAU,EAAG,WAAY,CAAC,EAE3BpB,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7B+J,GAAW3I,EAAO,UAAU,EAC5BG,EAAW,WAAYH,EAAO,UAAY,KAAO,KAAOA,EAAO,SAAS,OAAO,EAAE,cAAeA,EAAO,UAAY,KAAO,KAAOA,EAAO,SAAS,WAAW,EAAE,mBAAoB,CAAAA,EAAO,QAAuB,CACrN,CACF,CACA,SAAS4I,GAAuDvK,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMwK,EAAS1J,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,WAAY,CAAC,EAC1BlB,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCC,EAAO,CAAC,EACRE,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EAAE,EACfH,EAAe,EAAG,YAAa,EAAE,EACjCE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAA6F,CAC/GC,EAAcwJ,CAAG,EACpB,IAAM7I,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,gBAAgB,CAAC,CAChD,CAAC,EAAE,UAAW,SAA6FR,EAAQ,CAC9GH,EAAcwJ,CAAG,EACpB,IAAM7I,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEd,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACV8J,GAAW3I,EAAO,UAAU,EAC5BG,EAAW,WAAYH,EAAO,UAAY,KAAO,KAAOA,EAAO,SAAS,OAAO,EAAE,cAAeA,EAAO,UAAY,KAAO,KAAOA,EAAO,SAAS,WAAW,EAAE,mBAAoB,CAAAA,EAAO,QAAuB,EAChNnB,EAAU,CAAC,EACXC,EAAkBkB,EAAO,SAAS,WAAW,EAC7CnB,EAAU,CAAC,EACXC,EAAkBkB,EAAO,SAAS,KAAK,EACvCnB,EAAU,EACVsB,EAAW,UAAcmB,GAAgB,GAAIwH,GAAS/J,EAAY,EAAG,EAAG,gDAAgD,EAAGiB,EAAO,eAAe,SAAUA,EAAO,gBAAgB,IAAI,CAAC,CAC5L,CACF,CACA,SAAS+I,GAA2E1K,EAAIC,EAAK,CAC3F,GAAID,EAAK,EAAG,CACV,IAAM2K,EAAS7J,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAA2G,CAChI,IAAM6J,EAAa5J,EAAc2J,CAAG,EAAE,UAChChJ,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,mBAAmBiJ,EAAQ,OAAO,CAAC,CAClE,CAAC,EACE1K,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM4K,EAAU3K,EAAI,UACd0B,EAAYpB,EAAc,CAAC,EAC9B+E,GAAwB,cAAe,kBAAmBsF,EAAQ,QAAS,EAAE,EAC7E9I,EAAW,UAAcK,EAAgB,EAAG0I,GAAMD,EAAQ,UAAYjJ,EAAO,YAAY,OAAO,CAAC,EACjGnB,EAAU,CAAC,EACXC,EAAkBmK,EAAQ,WAAW,CAC1C,CACF,CACA,SAASE,GAAqE9K,EAAIC,EAAK,CACrF,GAAID,EAAK,EAAG,CACV,IAAMiJ,EAASnI,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,YAAa,UAAyG,CAC/HC,EAAciI,CAAG,EACpB,IAAMtH,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,aAAa,CAAC,CAC7C,CAAC,EAAE,WAAY,UAAwG,CAClHX,EAAciI,CAAG,EACpB,IAAMtH,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,cAAc,CAAC,CAC9C,CAAC,EAAE,QAAS,SAAmGR,EAAQ,CAClHH,EAAciI,CAAG,EACpB,IAAMtH,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,eAAeR,CAAM,CAAC,CACrD,CAAC,EAAE,UAAW,SAAqGA,EAAQ,CACtHH,EAAciI,CAAG,EACpB,IAAMtH,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,UAAW,SAAqGI,EAAQ,CACjIH,EAAciI,CAAG,EACpB,IAAMtH,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACE8C,GAAiB,EAAGyG,GAA4E,EAAG,EAAG,MAAO,GAAOxG,EAAyB,EAC7I7D,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BuB,EAAW,6BAA8B,EAAI,EAC7CtB,EAAU,CAAC,EACXC,EAAkBkB,EAAO,YAAY,WAAW,EAChDnB,EAAU,EACVsB,EAAW,UAAcK,EAAgB,EAAG4I,GAAMpJ,EAAO,mBAAmB,CAAC,CAAC,EAC9EnB,EAAU,EACV2D,GAAWxC,EAAO,QAAQ,CAC/B,CACF,CACA,SAASqJ,GAAqEhL,EAAIC,EAAK,CAQrF,GAPID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXC,EAAkBkB,EAAO,YAAY,WAAW,CACrD,CACF,CACA,SAASsJ,GAAuDjL,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BmB,EAAW,EAAGyJ,GAAsE,EAAG,EAAG,MAAO,EAAE,EAAE,EAAGE,GAAsE,EAAG,EAAG,MAAO,EAAE,EAC7L3K,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACVgB,EAAcG,EAAO,mBAAmB,EAAI,EAAI,CAAC,CACtD,CACF,CACA,SAASuJ,GAAqElL,EAAIC,EAAK,CACrF,GAAID,EAAK,EAAG,CACV,IAAMmL,EAAUrK,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,SAAmGI,EAAQ,CAC7HH,EAAcmK,CAAI,EACrB,IAAMxJ,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,WAAWR,EAAQQ,EAAO,wBAAwB,CAAC,CAClF,CAAC,EAAE,UAAW,SAAqGR,EAAQ,CACtHH,EAAcmK,CAAI,EACrB,IAAMxJ,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,0DAA0D,EAAG,GAAG,EAEpH,CACA,SAAS0K,GAAqEpL,EAAIC,EAAK,CACrF,GAAID,EAAK,EAAG,CACV,IAAMqL,EAAUvK,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,SAAmGI,EAAQ,CAC7HH,EAAcqK,CAAI,EACrB,IAAM1J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,WAAWR,EAAQQ,EAAO,0BAA2B,EAAI,CAAC,CACzF,CAAC,EAAE,UAAW,SAAqGR,EAAQ,CACtHH,EAAcqK,CAAI,EACrB,IAAM1J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,6DAA6D,EAAG,GAAG,EAEvH,CACA,SAAS4K,GAAuDtL,EAAIC,EAAK,CAMvE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BmB,EAAW,EAAG6J,GAAsE,EAAG,EAAG,MAAO,EAAE,EAAE,EAAGE,GAAsE,EAAG,EAAG,MAAO,EAAE,EAC7L/K,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACVgB,EAAcG,EAAO,UAAU,yBAAyB,EAAI,EAAI,EAAE,EAClEnB,EAAU,EACVgB,EAAcG,EAAO,UAAU,oBAAoB,EAAI,EAAI,EAAE,CAClE,CACF,CACA,SAAS4J,GAAuDvL,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMwL,EAAU1K,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,UAAW,SAAuFI,EAAQ,CACnHH,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,EAAG,oCAAqC,EAAE,EACzDa,EAAW,YAAa,UAAyH,CAC/IC,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,sBAAsB,KAAK,CAAC,CAC3D,CAAC,EAAE,mBAAoB,UAAgI,CAClJX,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,cAAc,CAAC,CAC9C,CAAC,EACEtB,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,UAAW,SAAuFI,EAAQ,CACnHH,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,EAAG,iCAAkC,EAAE,EACtDa,EAAW,YAAa,UAAsH,CAC5IC,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,sBAAsB,KAAK,CAAC,CAC3D,CAAC,EAAE,mBAAoB,UAA6H,CAC/IX,EAAcwK,CAAI,EACrB,IAAM7J,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,cAAc,CAAC,CAC9C,CAAC,EACEtB,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAIyL,EACE9J,EAAYpB,EAAc,CAAC,EAC9BgC,EAAY,SAAU,CAACZ,EAAO,6BAA6B,EAAE,MAAM,CAAC,EACpEnB,EAAU,EACVsB,EAAW,sBAAuBH,EAAO,mBAAmB,EAAE,yBAA0B,CAAC,EACzFnB,EAAU,EACV+B,EAAY,SAAU,GAAGkJ,EAAU9J,EAAO,0BAA0B,EAAE,kBAAoB,MAAc8J,EAAQ,EAAE,EAClHjL,EAAU,EACVsB,EAAW,sBAAuBH,EAAO,mBAAmB,EAAE,yBAA0B,CAAC,CAC9F,CACF,CACA,SAAS+J,GAAuD1L,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAM2L,EAAU7K,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCa,EAAW,YAAa,UAA2F,CACjHC,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,cAAc,CAAC,CAC9C,CAAC,EAAE,WAAY,UAA0F,CACpGX,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,eAAe,CAAC,CAC/C,CAAC,EAAE,QAAS,SAAqFR,EAAQ,CACpGH,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,gBAAgBR,CAAM,CAAC,CACtD,CAAC,EAAE,UAAW,SAAuFA,EAAQ,CACxGH,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCa,EAAW,QAAS,UAAuF,CACzGC,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,YAAYA,EAAO,WAAW,KAAK,CAAC,CACnE,CAAC,EAAE,UAAW,SAAuFR,EAAQ,CACxGH,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,GAAI,SAAS,EACpBC,EAAa,EAAE,EACfH,EAAe,GAAI,MAAO,EAAE,EAC5Ba,EAAW,QAAS,UAAwF,CAC1GC,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,YAAYA,EAAO,WAAW,IAAI,CAAC,CAClE,CAAC,EAAE,UAAW,SAAwFR,EAAQ,CACzGH,EAAc2K,CAAI,EACrB,IAAMhK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEjB,EAAe,GAAI,MAAO,EAAE,EAC5BC,EAAO,EAAE,EACTC,EAAO,GAAI,SAAS,EACpBC,EAAa,EAAE,EAAE,EAAE,EAAE,CAC1B,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,6BAA8B,EAAI,EAC7CtB,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,qDAAqD,CAAC,EAC7FF,EAAU,CAAC,EACXsB,EAAW,UAAcK,EAAgB,GAAI4I,GAAMpJ,EAAO,oBAAoB,CAAC,CAAC,EAChFnB,EAAU,EACVsB,EAAW,UAAcK,EAAgB,GAAI0I,GAAMlJ,EAAO,WAAW,QAAUA,EAAO,aAAa,KAAK,CAAC,EACzGnB,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,GAAI,EAAG,6DAA6D,EAAG,GAAG,EACjHF,EAAU,CAAC,EACXsB,EAAW,UAAcK,EAAgB,GAAI0I,GAAMlJ,EAAO,WAAW,OAASA,EAAO,aAAa,KAAK,CAAC,EACxGnB,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,GAAI,GAAI,0DAA0D,EAAG,GAAG,CACpH,CACF,CACA,SAASkL,GAA6D5L,EAAIC,EAAK,CAC7E,GAAID,EAAK,EAAG,CACV,IAAM6L,EAAU/K,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAA6F,CAClH,IAAM+K,EAAkB9K,EAAc6K,CAAI,EAAE,UACtClK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,eAAemK,EAAa,IAAI,CAAC,CAChE,CAAC,EACE5L,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM8L,EAAe7L,EAAI,UACnB0B,EAAYpB,EAAc,CAAC,EAC9B+E,GAAwB,cAAe,sBAAuBwG,EAAa,KAAK,MAAM,EAAG,CAAC,EAAG,EAAE,EAC/FhK,EAAW,UAAcK,EAAgB,EAAG0I,GAAMlJ,EAAO,gBAAgB,QAAQ,EAAE,QAAQ,MAAM,EAAG,CAAC,IAAMmK,EAAa,KAAK,MAAM,EAAG,CAAC,CAAC,CAAC,EACzItL,EAAU,CAAC,EACXC,EAAkBqL,EAAa,KAAK,MAAM,EAAG,CAAC,CAAC,CACpD,CACF,CACA,SAASC,GAAuD/L,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMgM,EAAUlL,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCa,EAAW,YAAa,UAA2F,CACjHC,EAAcgL,CAAI,EACrB,IAAMrK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,iBAAiB,CAAC,CACjD,CAAC,EAAE,WAAY,UAA0F,CACpGX,EAAcgL,CAAI,EACrB,IAAMrK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,kBAAkB,CAAC,CAClD,CAAC,EAAE,QAAS,SAAqFR,EAAQ,CACpGH,EAAcgL,CAAI,EACrB,IAAMrK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,mBAAmBR,CAAM,CAAC,CACzD,CAAC,EAAE,UAAW,SAAuFA,EAAQ,CACxGH,EAAcgL,CAAI,EACrB,IAAMrK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,UAAW,SAAuFI,EAAQ,CACnHH,EAAcgL,CAAI,EACrB,IAAMrK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACE8C,GAAiB,EAAG2H,GAA8D,EAAG,EAAG,MAAO,GAAO1H,EAAyB,EAC/H7D,EAAa,EAAE,EAAE,CACtB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,6BAA8B,EAAI,EAC7CtB,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,wDAAwD,CAAC,EAChGF,EAAU,CAAC,EACXsB,EAAW,UAAcK,EAAgB,EAAG4I,GAAMpJ,EAAO,uBAAuB,CAAC,CAAC,EAClFnB,EAAU,EACV2D,GAAWxC,EAAO,UAAU,CAAC,CAClC,CACF,CACA,SAASsK,GAAuDjM,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMkM,EAAUpL,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAAuF,CACzGC,EAAckL,CAAI,EACrB,IAAMvK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,wBAAwB,CAAC,CACxD,CAAC,EAAE,UAAW,SAAuFR,EAAQ,CACxGH,EAAckL,CAAI,EACrB,IAAMvK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,uDAAuD,CAAC,EAEtG,CACA,SAASyL,GAAuDnM,EAAIC,EAAK,CACvE,GAAID,EAAK,EAAG,CACV,IAAMoM,EAAUtL,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAAuF,CACzGC,EAAcoL,CAAI,EACrB,IAAMzK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,eAAe,CAAC,CAC/C,CAAC,EAAE,UAAW,SAAuFR,EAAQ,CACxGH,EAAcoL,CAAI,EACrB,IAAMzK,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,oDAAoD,CAAC,EAEnG,CACA,SAAS2L,GAAwDrM,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAMsM,EAAUxL,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAAwF,CAC1GC,EAAcsL,CAAI,EACrB,IAAM3K,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,iBAAiB,CAAC,CACjD,CAAC,EAAE,UAAW,SAAwFR,EAAQ,CACzGH,EAAcsL,CAAI,EACrB,IAAM3K,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,EAAG,uDAAuD,EAAG,GAAG,EAEjH,CACA,SAAS6L,GAA8DvM,EAAIC,EAAK,CAC9E,GAAID,EAAK,EAAG,CACV,IAAMwM,EAAU1L,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAA8F,CAChHC,EAAcwL,CAAI,EACrB,IAAMC,EAAclM,EAAc,EAAE,UACpC,OAAUW,EAAYuL,EAAS,OAAO,CAAC,CACzC,CAAC,EAAE,UAAW,SAA8FtL,EAAQ,CAC/GH,EAAcwL,CAAI,EACrB,IAAM7K,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRE,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMyM,EAAclM,EAAc,EAAE,UACjC+E,GAAwB,cAAe,uBAAwBmH,EAAS,UAAW,EAAE,EACrF9J,GAAsB,KAAM8J,EAAS,SAAS,EAC9C3K,EAAW,UAAcK,EAAgB,EAAGuK,GAAMD,EAAS,WAAW,CAAC,CAAC,EACxEjM,EAAU,EACVsB,EAAW,UAAW2K,EAAS,SAAS,EACxCjM,EAAU,CAAC,EACXC,EAAkBgM,EAAS,KAAK,CACrC,CACF,CACA,SAASE,GAAgD3M,EAAIC,EAAK,CAIhE,GAHID,EAAK,GACJqB,EAAW,EAAGkL,GAA+D,EAAG,EAAG,MAAO,EAAE,EAE7FvM,EAAK,EAAG,CACV,IAAMyM,EAAWxM,EAAI,UAClBuB,EAAciL,EAAS,aAAa,EAAI,EAAI,EAAE,CACnD,CACF,CACA,SAASG,GAAwD5M,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAM6M,EAAU/L,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,SAAsFI,EAAQ,CAChHH,EAAc6L,CAAI,EACrB,IAAMlL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,WAAWR,EAAQQ,EAAO,wBAAyB,EAAI,CAAC,CACvF,CAAC,EAAE,UAAW,SAAwFR,EAAQ,CACzGH,EAAc6L,CAAI,EACrB,IAAMlL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,6CAA6C,CAAC,EAE5F,CACA,SAASoM,GAAwD9M,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAM+M,EAAUjM,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAC3Ba,EAAW,QAAS,UAAwF,CAC1GC,EAAc+L,CAAI,EACrB,IAAMpL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,eAAe,CAAC,CAC/C,CAAC,EAAE,UAAW,SAAwFR,EAAQ,CACzGH,EAAc+L,CAAI,EACrB,IAAMpL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,CACpB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,yCAAyC,CAAC,EAExF,CACA,SAASsM,GAAwDhN,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAMiN,EAAUnM,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCa,EAAW,QAAS,UAAwF,CAC1GC,EAAciM,CAAI,EACrB,IAAMtL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,QAAQ,CAAC,CACxC,CAAC,EAAE,UAAW,SAAwFR,EAAQ,CACzGH,EAAciM,CAAI,EACrB,IAAMtL,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,UAAUR,CAAM,CAAC,CAChD,CAAC,EACEC,EAAU,EAAG,MAAO,EAAE,EACtBlB,EAAe,EAAG,MAAO,EAAE,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EAAE,CACtB,CACIL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,+CAA+C,CAAC,EAE9F,CACA,SAASwM,GAAyClN,EAAIC,EAAK,CACzD,GAAID,EAAK,EAAG,CACV,IAAM4D,EAAS9C,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,SAAU,SAAwEI,EAAQ,CACnGH,EAAc4C,CAAG,EACpB,IAAMjC,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,gBAAgBR,CAAM,CAAC,CACtD,CAAC,EACEE,EAAW,EAAGkJ,GAAwD,EAAG,GAAI,MAAO,CAAC,EAAE,EAAGU,GAAwD,EAAG,EAAG,MAAO,EAAE,EAAE,EAAGK,GAAwD,EAAG,EAAG,MAAO,EAAE,EAAE,EAAGC,GAAwD,EAAG,CAAC,EAAE,EAAGG,GAAwD,GAAI,GAAI,MAAO,EAAE,EAAE,EAAGK,GAAwD,EAAG,EAAG,MAAO,EAAE,EACxc7L,EAAe,EAAG,MAAO,EAAE,EAC3BmB,EAAW,EAAG4K,GAAwD,EAAG,EAAG,MAAO,EAAE,EAAE,EAAGE,GAAwD,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIE,GAAyD,EAAG,EAAG,MAAO,EAAE,EAC/OpI,GAAiB,GAAI0I,GAAiD,EAAG,EAAG,KAAM,KAASzI,EAAyB,EACpH7C,EAAW,GAAIuL,GAAyD,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIE,GAAyD,EAAG,EAAG,MAAO,EAAE,EACrKzM,EAAa,EACbgB,EAAW,GAAI2L,GAAyD,EAAG,EAAG,MAAO,EAAE,EACvF3M,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,EACVgB,EAAcG,EAAO,eAAe,EAAI,EAAI,EAAE,EAC9CnB,EAAU,EACVgB,EAAcG,EAAO,aAAa,EAAI,EAAI,EAAE,EAC5CnB,EAAU,EACVgB,EAAcG,EAAO,iBAAiB,EAAI,EAAI,EAAE,EAChDnB,EAAU,EACVgB,EAAeG,EAAO,wBAAwB,EAAQ,GAAJ,CAAM,EACxDnB,EAAU,EACVgB,EAAcG,EAAO,aAAa,EAAI,EAAI,EAAE,EAC5CnB,EAAU,EACVgB,EAAcG,EAAO,gBAAgB,EAAI,EAAI,EAAE,EAC/CnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,iBAAiB,EAAI,EAAI,EAAE,EAChDnB,EAAU,EACVgB,EAAcG,EAAO,cAAc,EAAI,EAAI,EAAE,EAC7CnB,EAAU,EACVgB,EAAcG,EAAO,wBAAwB,EAAI,GAAK,EAAE,EACxDnB,EAAU,EACV2D,GAAWxC,EAAO,aAAa,EAC/BnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,YAAY,EAAI,GAAK,EAAE,EAC5CnB,EAAU,EACVgB,EAAcG,EAAO,eAAe,EAAI,GAAK,EAAE,EAC/CnB,EAAU,EACVgB,EAAcG,EAAO,gBAAgB,EAAI,GAAK,EAAE,CACrD,CACF,CACA,SAASwL,GAAkDnN,EAAIC,EAAK,CAkBlE,GAjBID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,OAAQ,CAAC,EACxCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,CAAC,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,CAAC,EAC3BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfH,EAAe,GAAI,MAAO,CAAC,EAC3BkB,EAAU,GAAI,qBAAsB,CAAC,EAAE,GAAI,OAAQ,CAAC,EACpDf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,wDAAwD,CAAC,EAChGF,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,sEAAsE,CAAC,EAC9GF,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,qEAAqE,CAAC,EAC7GF,EAAU,CAAC,EACXsB,EAAW,OAAQQ,EAAO,kBAAkB,EAC5C9B,EAAU,EACVsB,EAAW,YAAaQ,EAAO,QAAYQ,EAAc,CAC9D,CACF,CACA,SAASsK,GAAkDpN,EAAIC,EAAK,CAC9DD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,iBAAkB,CAAC,EAChClB,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,gEAAgE,CAAC,EAE/G,CACA,SAAS2M,GAAkDrN,EAAIC,EAAK,CAC9DD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,eAAgB,CAAC,EAC9BlB,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,6DAA6D,CAAC,EACrGF,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,oEAAoE,CAAC,EAEnH,CACA,SAAS4M,GAA2CtN,EAAIC,EAAK,CAO3D,GANID,EAAK,IACJE,EAAe,EAAG,UAAW,CAAC,EAAE,EAAG,MAAO,CAAC,EAC3CkB,EAAU,EAAG,mBAAmB,EAChCC,EAAW,EAAG8L,GAAmD,GAAI,EAAE,EAAE,EAAGC,GAAmD,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGC,GAAmD,EAAG,EAAG,MAAO,CAAC,EACnNhN,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAIuN,EACEjL,EAAY/B,EAAc,EAC7BC,EAAU,CAAC,EACXgB,GAAe+L,EAAUjL,EAAO,gBAAkBA,EAAO,kBAAkB,KAAO,EAAIiL,IAAYjL,EAAO,kBAAkB,UAAY,EAAIiL,IAAYjL,EAAO,kBAAkB,mBAAqB,EAAI,EAAE,CAChN,CACF,CACA,SAASkL,GAA2CxN,EAAIC,EAAK,CAC3D,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAA2E,CAC7FC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,oBAAoB,CAAC,CACpD,CAAC,EACEtB,EAAa,CAClB,CACF,CACA,SAASoN,GAA2CzN,EAAIC,EAAK,CAM3D,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1B8B,GAAmB,EAAG,CAAC,EACvB3B,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,EACVsB,EAAW,mBAAoBH,EAAO,OAAO,IAAI,CACtD,CACF,CAYA,SAAS+L,GAA4C1N,EAAIC,EAAK,CACxDD,EAAK,GACJgC,GAAmB,CAAC,CAE3B,CACA,SAAS2L,GAA6B3N,EAAIC,EAAK,CAI7C,GAHID,EAAK,GACJqB,EAAW,EAAGqM,GAA6C,EAAG,EAAG,eAAgB,CAAC,EAEnF1N,EAAK,EAAG,CACV,IAAM4N,EAAc3N,EAAI,UACrBM,EAAc,EACjB,IAAMsN,EAAqBhM,EAAY,CAAC,EACrCC,EAAW,mBAAoB+L,CAAe,EAAE,0BAA8B1L,EAAgB,EAAG2L,GAAMF,CAAW,CAAC,CACxH,CACF,CACA,SAASG,GAAkE/N,EAAIC,EAAK,CAC9ED,EAAK,GACJgC,GAAmB,CAAC,CAE3B,CACA,SAASgM,GAAmDhO,EAAIC,EAAK,CAOnE,GANID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BE,EAAO,EAAG,UAAU,EACpBiB,EAAW,EAAG0M,GAAmE,EAAG,EAAG,eAAgB,CAAC,EACxG1N,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC1B0N,EAAchN,EAAO,SACrBiN,EAAajN,EAAO,QACpBkN,EAAY5N,EAAc,EAC1B6N,EAAgCvM,EAAY,CAAC,EAChDN,GAAW4M,EAAO,aAAa,EAC/B5L,EAAY,eAAgB0L,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,CAAC,EAAE,UAAW,CAACA,EAAY,KAAO,EAAEA,EAAY,WAAa,MAAcA,EAAY,UAAU,OAAO,EAAE,YAAaE,EAAO,UAAU,CAAC,EAAE,SAAapE,GAAY,EAAG,GAAIoE,EAAO,mBAAmB,EAAGF,EAAY,EAAE,CAAC,EAC1TnM,EAAW,KAAMqM,EAAO,oBAAsBF,EAAY,EAAE,EAC5DI,GAAY,cAAeF,EAAO,oBAAsBF,EAAY,EAAE,EACtEzN,EAAU,CAAC,EACXsB,EAAW,mBAAoBsM,CAA0B,EAAE,0BAA8B3K,GAAgB,GAAI6K,GAAML,EAAaC,CAAU,CAAC,CAChJ,CACF,CACA,SAASK,GAAkEvO,EAAIC,EAAK,CAC9ED,EAAK,GACJgC,GAAmB,CAAC,CAE3B,CACA,SAASwM,GAAmDxO,EAAIC,EAAK,CAOnE,GANID,EAAK,IACJE,EAAe,EAAG,IAAK,CAAC,EACxBE,EAAO,EAAG,UAAU,EACpBiB,EAAW,EAAGkN,GAAmE,EAAG,EAAG,eAAgB,CAAC,EACxGlO,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC1B0N,EAAchN,EAAO,SACrBiN,EAAajN,EAAO,QACpBkN,EAAY5N,EAAc,EAC1B6N,EAAgCvM,EAAY,CAAC,EAChDN,GAAW4M,EAAO,cAAgB,aAAa,EAC/C5L,EAAY,YAAa4L,EAAO,UAAU,CAAC,EAC3CrM,EAAW,KAAMqM,EAAO,oBAAsBF,EAAY,EAAE,EAAE,OAAWvN,EAAY,EAAG,EAAGuN,EAAY,GAAG,EAAMrL,EAAa,EAC7HyL,GAAY,cAAeF,EAAO,oBAAsBF,EAAY,EAAE,EACtEzN,EAAU,CAAC,EACXsB,EAAW,mBAAoBsM,CAA0B,EAAE,0BAA8B3K,GAAgB,GAAI6K,GAAML,EAAaC,CAAU,CAAC,CAChJ,CACF,CACA,SAASO,GAAkEzO,EAAIC,EAAK,CAC9ED,EAAK,GACJgC,GAAmB,CAAC,CAE3B,CACA,SAAS0M,GAAmD1O,EAAIC,EAAK,CAQnE,GAPID,EAAK,IACJE,EAAe,EAAG,IAAK,CAAC,EACxBE,EAAO,EAAG,UAAU,EACpBA,EAAO,EAAG,WAAW,EACrBiB,EAAW,EAAGoN,GAAmE,EAAG,EAAG,eAAgB,CAAC,EACxGpO,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC1B0N,EAAchN,EAAO,SACrBiN,EAAajN,EAAO,QACpBkN,EAAY5N,EAAc,EAC1B6N,EAAgCvM,EAAY,CAAC,EAChDN,GAAW4M,EAAO,cAAgB,aAAa,EAC/C5L,EAAY,YAAa4L,EAAO,UAAU,CAAC,EAAE,WAAYA,EAAO,eAAe,IAAMF,EAAY,IAAM,CAACE,EAAO,wBAAwB,CAAC,EACxIrM,EAAW,KAAMqM,EAAO,oBAAsBF,EAAY,EAAE,EAAE,aAAiBvN,EAAY,EAAG,GAAIuN,EAAY,GAAG,CAAC,EAAE,cAAkBvN,EAAY,EAAG,GAAIuN,EAAY,GAAG,CAAC,EACzKI,GAAY,cAAeF,EAAO,oBAAsBF,EAAY,EAAE,EACtEzN,EAAU,CAAC,EACXsB,EAAW,mBAAoBsM,CAA0B,EAAE,0BAA8B3K,GAAgB,GAAI6K,GAAML,EAAaC,CAAU,CAAC,CAChJ,CACF,CACA,SAASS,GAAqC3O,EAAIC,EAAK,CAMrD,GALID,EAAK,IACJqB,EAAW,EAAG2M,GAAoD,EAAG,GAAI,MAAO,CAAC,EACjF5N,EAAO,EAAG,eAAe,EACzBiB,EAAW,EAAGmN,GAAoD,EAAG,GAAI,IAAK,CAAC,EAAE,EAAGE,GAAoD,EAAG,GAAI,IAAK,CAAC,GAEtJ1O,EAAK,EAAG,CACV,IAAMiO,EAAchO,EAAI,SACrBuB,EAAc,CAACyM,EAAY,MAAQA,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,EAAI,EAAOvN,EAAY,EAAG,EAAGuN,EAAY,GAAG,EAAI,EAAI,CAAC,CACpK,CACF,CACA,SAASW,GAAmD5O,EAAIC,EAAK,CAMnE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,GAAG,EAChBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM6O,EAAiBtO,EAAc,EAAE,SACpCC,EAAU,EACVe,GAAWsN,EAAY,QAAUA,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,EAAI,cAAgB,mBAAmB,CACpJ,CACF,CACA,SAASC,GAAmD9O,EAAIC,EAAK,CAC/DD,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,IAAK,EAAE,EACpBf,EAAa,EAEpB,CACA,SAAS0O,GAAyE/O,EAAIC,EAAK,CACrFD,EAAK,GACJgC,GAAmB,CAAC,CAE3B,CACA,SAASgN,GAA0DhP,EAAIC,EAAK,CAI1E,GAHID,EAAK,GACJqB,EAAW,EAAG0N,GAA0E,EAAG,EAAG,eAAgB,CAAC,EAEhH/O,EAAK,EAAG,CACV,IAAMiP,EAAYhP,EAAI,UACnBM,EAAc,CAAC,EAClB,IAAMsN,EAAqBhM,EAAY,CAAC,EACrCC,EAAW,mBAAoB+L,CAAe,EAAE,0BAA8B1L,EAAgB,EAAG+M,GAAMD,CAAS,CAAC,CACtH,CACF,CACA,SAASE,GAAoDnP,EAAIC,EAAK,CAMpE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3B+D,GAAiB,EAAG+K,GAA2D,EAAG,EAAG,eAAgB,KAAM5J,EAAU,EACrH/E,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM6O,EAAiBtO,EAAc,EAAE,SACpCuB,EAAW,KAAM,YAAc+M,EAAY,EAAE,EAC7CrO,EAAU,EACV2D,GAAW0K,EAAY,SAAS,CACrC,CACF,CACA,SAASO,GAAqCpP,EAAIC,EAAK,CACrD,GAAID,EAAK,EAAG,CACV,IAAM2K,EAAS7J,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,GAAI,CAAC,EAC9BE,EAAO,EAAG,UAAU,EACpBA,EAAO,EAAG,eAAe,EACzBW,EAAW,QAAS,SAAmEI,EAAQ,CAChG,IAAM0N,EAAiB7N,EAAc2J,CAAG,EAAE,SACpCwD,EAAY5N,EAAc,EAChC,OAAUW,EAAYiN,EAAO,gBAAgBhN,EAAQ0N,CAAW,CAAC,CACnE,CAAC,EAAE,gBAAiB,UAA6E,CAC5F7N,EAAc2J,CAAG,EACpB,IAAM0E,EAA2BxN,EAAY,CAAC,EACxCsM,EAAY5N,EAAc,EAChC,OAAUW,EAAYiN,EAAO,eAAe,2BAA2BkB,CAAqB,CAAC,CAC/F,CAAC,EAAE,gBAAiB,UAA6E,CAC5FrO,EAAc2J,CAAG,EACpB,IAAM0E,EAA2BxN,EAAY,CAAC,EACxCsM,EAAY5N,EAAc,EAChC,OAAUW,EAAYiN,EAAO,eAAe,2BAA2BkB,CAAqB,CAAC,CAC/F,CAAC,EACEnP,EAAe,EAAG,MAAO,EAAE,EAC3BmB,EAAW,EAAGuN,GAAoD,EAAG,EAAG,MAAO,EAAE,EACjF1O,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfgB,EAAW,EAAGyN,GAAoD,EAAG,EAAG,MAAO,EAAE,EACjFzO,EAAa,EACbgB,EAAW,GAAI8N,GAAqD,EAAG,EAAG,MAAO,EAAE,EACnF/O,EAAO,GAAI,UAAU,CAC1B,CACA,GAAIJ,EAAK,EAAG,CACV,IAAM6O,EAAc5O,EAAI,SAClBqP,EAAcrP,EAAI,QAClBkO,EAAY5N,EAAc,EAC7BgB,GAAW4M,EAAO,kBAAkB,EACpC5L,EAAY,oBAAqBsM,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,CAAC,EAAE,kBAAmB,EAAEA,EAAY,WAAa,MAAcA,EAAY,UAAU,OAAO,EAAE,UAAWA,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,GAAQ9E,GAAY,EAAG,GAAIoE,EAAO,mBAAmB,EAAGU,EAAY,EAAE,CAAC,EAAE,WAAYV,EAAO,eAAe,IAAMU,EAAY,IAAM,CAACV,EAAO,wBAAwB,GAAK,CAAIzN,EAAY,EAAG,GAAImO,EAAY,GAAG,CAAC,EACverO,EAAU,CAAC,EACXgB,EAAe8N,EAAkB,GAAJ,CAAM,EACnC9O,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,GAAImO,EAAY,OAAO,EAAG,EAAE,EACtErO,EAAU,CAAC,EACXgB,GAAeqN,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,EAAI,EAAI,EAAE,EAChGrO,EAAU,EACVgB,GAAeqN,EAAY,WAAa,KAAO,KAAOA,EAAY,UAAU,QAAU,GAAQ9E,GAAY,GAAI,GAAIoE,EAAO,mBAAmB,EAAGU,EAAY,EAAE,EAAI,GAAK,EAAE,CAC7K,CACF,CAeA,SAASU,GAA4CvP,EAAIC,EAAK,CAM5D,GALID,EAAK,IACJE,EAAe,EAAG,SAAU,CAAC,EAC7B8B,GAAmB,EAAG,CAAC,EACvB3B,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC1BiP,EAAqC3N,EAAY,CAAC,EACrDU,EAAY,SAAUD,EAAO,OAAO,CAAC,EAAE,YAAaA,EAAO,UAAU,CAAC,EACtER,EAAW,WAAYQ,EAAO,SAAS,GAAK,CAACA,EAAO,iBAAiB,CAAC,EACtE+L,GAAY,cAAe/L,EAAO,gBAAgB,CAAC,EACnD9B,EAAU,EACVsB,EAAW,mBAAoB0N,CAA+B,EAAE,0BAA8BrN,EAAgB,EAAG2B,GAAKxB,EAAO,OAAO,CAAC,CAAC,CAC3I,CACF,CACA,SAASmN,GAA4CzP,EAAIC,EAAK,CAQ5D,GAPID,EAAK,IACJE,EAAe,EAAG,IAAK,EAAE,EACzBE,EAAO,EAAG,UAAU,EACpBA,EAAO,EAAG,WAAW,EACrB4B,GAAmB,EAAG,CAAC,EACvB3B,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC1BiP,EAAqC3N,EAAY,CAAC,EACrDU,EAAY,YAAaD,EAAO,UAAU,CAAC,EAAE,WAAYA,EAAO,eAAe,IAAMA,EAAO,EAAE,EAC9FR,EAAW,aAAiBpB,EAAY,EAAG,EAAG4B,EAAO,IAAI,CAAC,CAAC,EAAE,cAAkB5B,EAAY,EAAG,GAAI4B,EAAO,IAAI,CAAC,CAAC,EAC/G+L,GAAY,cAAe/L,EAAO,gBAAgB,CAAC,EACnD9B,EAAU,CAAC,EACXsB,EAAW,mBAAoB0N,CAA+B,EAAE,0BAA8BrN,EAAgB,GAAI0I,GAAMvI,EAAO,eAAe,IAAMA,EAAO,EAAE,CAAC,CACnK,CACF,CACA,SAASoN,GAAsF1P,EAAIC,EAAK,CAOtG,GANID,EAAK,IACJE,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2P,EAAcpP,EAAc,EAAE,UACjCC,EAAU,EACVkC,EAAmB,IAAQhC,EAAY,EAAG,EAAGiP,EAAS,aAAa,EAAG,GAAG,CAC9E,CACF,CACA,SAASC,GAAuF5P,EAAIC,EAAK,CAMvG,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,qBAAsB,EAAE,EACrCf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,OAAQQ,EAAO,uBAAuB,QAAQ,EAAE,OAAQA,EAAO,uBAAuB,KAAK,CAC3G,CACF,CACA,SAASuN,GAAuF7P,EAAIC,EAAK,CACvG,GAAID,EAAK,EAAG,CACV,IAAM2K,EAAS7J,EAAiB,EAC7BZ,EAAe,EAAG,IAAK,EAAE,EACzBE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,SAAmHI,EAAQ,CAC7IH,EAAc2J,CAAG,EACpB,IAAMgF,EAAcpP,EAAc,EAAE,UACpC,OAAAY,EAAO,gBAAgB,EACbD,EAAYyO,EAAS,SAAS,CAAC,CAC3C,CAAC,EACEtP,EAAa,CAClB,CACIL,EAAK,GACJ8B,EAAW,aAAiBpB,EAAY,EAAG,EAAG,gDAAgD,CAAC,CAEtG,CACA,SAASoP,GAAwE9P,EAAIC,EAAK,CACxF,GAAID,EAAK,EAAG,CACV,IAAM4D,EAAS9C,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,GAAI,CAAC,EAC9Ba,EAAW,aAAc,UAA6G,CACvI,IAAM4O,EAAc3O,EAAc4C,CAAG,EAAE,UACvC,OAAU1C,EAAYyO,EAAS,SAAW,MAAcA,EAAS,QAAQ,KAAO,KAA/B,KAA6CA,EAAS,QAAQ,IAAI,EAAI,CAAC,CAC1H,CAAC,EAAE,aAAc,UAA6G,CAC5H,IAAMA,EAAc3O,EAAc4C,CAAG,EAAE,UACvC,OAAU1C,EAAYyO,EAAS,SAAW,MAAcA,EAAS,QAAQ,KAAO,KAA/B,KAA6CA,EAAS,QAAQ,IAAI,EAAK,CAAC,CAC3H,CAAC,EAAE,QAAS,UAAwG,CAClH,IAAMA,EAAc3O,EAAc4C,CAAG,EAAE,UACvC,OAAU1C,EAAYyO,EAAS,SAAW,MAAcA,EAAS,QAAQ,KAAO,KAA/B,KAA6CA,EAAS,QAAQ,IAAI,EAAI,CAAC,CAC1H,CAAC,EAAE,OAAQ,UAAuG,CAChH,IAAMA,EAAc3O,EAAc4C,CAAG,EAAE,UACvC,OAAU1C,EAAYyO,EAAS,SAAW,MAAcA,EAAS,QAAQ,KAAO,KAA/B,KAA6CA,EAAS,QAAQ,IAAI,EAAK,CAAC,CAC3H,CAAC,EAAE,gBAAiB,UAAgH,CAC/H3O,EAAc4C,CAAG,EACpB,IAAMmM,EAA0BlO,EAAY,CAAC,EAC7C,OAAUX,EAAY6O,EAAqB,MAAM,CAAC,CACpD,CAAC,EAAE,gBAAiB,UAAgH,CAC/H/O,EAAc4C,CAAG,EACpB,IAAMmM,EAA0BlO,EAAY,CAAC,EAC7C,OAAUX,EAAY6O,EAAqB,MAAM,CAAC,CACpD,CAAC,EACE7P,EAAe,EAAG,IAAK,GAAI,CAAC,EAC5BE,EAAO,EAAG,UAAU,EACpBA,EAAO,EAAG,WAAW,EACrBW,EAAW,QAAS,SAAoGI,EAAQ,CACjI,IAAMwO,EAAc3O,EAAc4C,CAAG,EAAE,UACjCtB,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,iBAAiBnB,EAAQwO,CAAQ,CAAC,CACjE,CAAC,EACEzP,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbgB,EAAW,EAAGqO,GAAuF,EAAG,EAAG,OAAQ,EAAE,EACrHrP,EAAa,EACbgB,EAAW,GAAIuO,GAAwF,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIC,GAAwF,EAAG,EAAG,IAAK,EAAE,EACjOxP,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2P,EAAW1P,EAAI,UACf+P,EAAc/P,EAAI,SAClBqC,EAAY/B,EAAc,CAAC,EAC9BgC,EAAY,YAAaoN,EAAS,QAAQ,EAAE,WAAYK,GAAe,CAAC1N,EAAO,UAAU,CAAC,EAAE,qBAAsBqN,EAAS,aAAa,EACxI7N,EAAW,KAAM6N,EAAS,EAAE,EAC5BnP,EAAU,CAAC,EACX+B,EAAY,WAAYyN,CAAW,EAAE,WAAYL,EAAS,UAAY,KAAO,KAAOA,EAAS,SAAS,CAAC,EACvG7N,EAAW,aAAiBpB,EAAY,EAAG,GAAIiP,EAAS,GAAG,CAAC,EAAE,cAAkBjP,EAAY,EAAG,GAAIiP,EAAS,GAAG,CAAC,EAChHnP,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,GAAIiP,EAAS,OAAO,EAAG,GAAG,EACpEnP,EAAU,CAAC,EACXgB,EAAcmO,EAAS,cAAgB,EAAI,EAAE,EAC7CnP,EAAU,EACVgB,EAAemO,EAAS,UAAY,MAAcA,EAAS,SAAS,EAAK,GAAK,CAACK,GAAeL,EAAS,WAAcA,EAAS,SAAW,MAAcA,EAAS,QAAQ,GAAOA,EAAS,SAAW,MAAcA,EAAS,QAAQ,GAAM,GAAK,EAAE,CACpP,CACF,CACA,SAASM,GAAoFjQ,EAAIC,EAAK,CAIpG,GAHID,EAAK,GACJgC,GAAmB,EAAG,CAAC,EAExBhC,EAAK,EAAG,CACV,IAAMkQ,EAAYjQ,EAAI,UACnBM,EAAc,CAAC,EAClB,IAAM4P,EAAuBtO,EAAY,CAAC,EACpCS,EAAY/B,EAAc,CAAC,EAC9BuB,EAAW,mBAAoBqO,CAAiB,EAAE,0BAA8B1M,GAAgB,EAAG2M,GAAMF,EAAW5N,EAAO,eAAe,IAAM4N,EAAU,EAAE,CAAC,CAClK,CACF,CACA,SAASG,GAA8ErQ,EAAIC,EAAK,CAS9F,GARID,EAAK,IACJE,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBA,EAAO,EAAG,WAAW,EACrBC,EAAa,EACb4D,GAAiB,EAAGgM,GAAqF,EAAG,EAAG,eAAgB,EAAG7K,EAAU,GAE7IpF,EAAK,EAAG,CACV,IAAMsQ,EAAsBrQ,EAAI,UAC7BO,EAAU,EACVkC,EAAmB,IAAQhC,EAAY,EAAG,EAAMA,EAAY,EAAG,EAAG4P,EAAoB,KAAK,CAAC,EAAG,GAAG,EAClG9P,EAAU,CAAC,EACX2D,GAAWmM,EAAoB,QAAQ,CAC5C,CACF,CACA,SAASC,GAAwEvQ,EAAIC,EAAK,CAIxF,GAHID,EAAK,GACJiE,GAAiB,EAAGoM,GAA+E,EAAG,EAAG,KAAM,KAAMG,EAAU,EAEhIxQ,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9B4D,GAAW7B,EAAO,gBAAgB,CAAC,CACxC,CACF,CACA,SAASmO,GAA8EzQ,EAAIC,EAAK,CAI9F,GAHID,EAAK,GACJgC,GAAmB,EAAG,CAAC,EAExBhC,EAAK,EAAG,CACV,IAAM0Q,EAAYzQ,EAAI,UACnBM,EAAc,CAAC,EAClB,IAAM4P,EAAuBtO,EAAY,CAAC,EACpCS,EAAY/B,EAAc,CAAC,EAC9BuB,EAAW,mBAAoBqO,CAAiB,EAAE,0BAA8B1M,GAAgB,EAAG2M,GAAMM,EAAWpO,EAAO,eAAe,IAAMoO,EAAU,EAAE,CAAC,CAClK,CACF,CACA,SAASC,GAAwE3Q,EAAIC,EAAK,CAIxF,GAHID,EAAK,GACJiE,GAAiB,EAAGwM,GAA+E,EAAG,EAAG,eAAgB,EAAGrL,EAAU,EAEvIpF,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9B4D,GAAW7B,EAAO,gBAAgB,CAAC,CACxC,CACF,CACA,SAASsO,GAAwE5Q,EAAIC,EAAK,CACxF,GAAID,EAAK,EAAG,CACV,IAAMgM,EAAUlL,EAAiB,EAC9BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,YAAa,GAAI,CAAC,EAClDE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,SAA4GI,EAAQ,CACtIH,EAAcgL,CAAI,EACrB,IAAM1J,EAAY/B,EAAc,CAAC,EACjC,OAAAY,EAAO,gBAAgB,EACbD,EAAYoB,EAAO,uBAAuB,IAAI,EAAI,CAAC,CAC/D,CAAC,EAAE,gBAAiB,UAAsH,CACrItB,EAAcgL,CAAI,EACrB,IAAM1J,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,2BAA2BA,EAAO,qBAAqB,CAAC,CAAC,CACxF,CAAC,EAAE,gBAAiB,UAAsH,CACrItB,EAAcgL,CAAI,EACrB,IAAM1J,EAAY/B,EAAc,CAAC,EACjC,OAAUW,EAAYoB,EAAO,2BAA2BA,EAAO,qBAAqB,CAAC,CAAC,CACxF,CAAC,EACEjC,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BgC,EAAY,SAAUD,EAAO,UAAU,CAAC,EACxC9B,EAAU,EACVsB,EAAW,UAAc+O,GAAgB,EAAGC,GAASpQ,EAAY,EAAG,EAAG,+CAA+C,EAAG4B,EAAO,cAAc,MAAOA,EAAO,eAAe,KAAMA,EAAO,gBAAgB,KAAK,CAAC,CACnN,CACF,CACA,SAASyO,GAA0D/Q,EAAIC,EAAK,CAQ1E,GAPID,EAAK,IACJqB,EAAW,EAAGyO,GAAyE,GAAI,GAAI,cAAe,KAAM,EAAM7N,EAAsB,EAChJ/B,EAAe,EAAG,MAAO,EAAE,EAC3BmB,EAAW,EAAGkP,GAAyE,EAAG,CAAC,EAAE,EAAGI,GAAyE,EAAG,CAAC,EAC7KtQ,EAAa,EACbgB,EAAW,EAAGuP,GAAyE,EAAG,GAAI,MAAO,EAAE,GAExG5Q,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXgB,EAAcc,EAAO,UAAU,EAAI,EAAI,CAAC,EACxC9B,EAAU,CAAC,EACXgB,EAAcc,EAAO,0BAA0B,EAAI,EAAI,EAAE,CAC9D,CACF,CACA,SAAS0O,GAA4ChR,EAAIC,EAAK,CAC5D,GAAID,EAAK,EAAG,CACV,IAAM0B,EAASZ,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,GAAI,CAAC,EAC9Ba,EAAW,QAAS,UAA4E,CAC9FC,EAAcU,CAAG,EACpB,IAAMY,EAAY/B,EAAc,EAChC,OAAUW,EAAYoB,EAAO,cAAc,CAAC,CAC9C,CAAC,EAAE,gBAAiB,UAAoF,CACnGtB,EAAcU,CAAG,EACpB,IAAMuP,EAA6BpP,EAAY,CAAC,EAC1CS,EAAY/B,EAAc,EAChC,OAAUW,EAAYoB,EAAO,eAAe,2BAA2B2O,CAAuB,CAAC,CACjG,CAAC,EAAE,gBAAiB,UAAoF,CACnGjQ,EAAcU,CAAG,EACpB,IAAMuP,EAA6BpP,EAAY,CAAC,EAC1CS,EAAY/B,EAAc,EAChC,OAAUW,EAAYoB,EAAO,eAAe,2BAA2B2O,CAAuB,CAAC,CACjG,CAAC,EACE/Q,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,MAAO,EAAE,EACzCkB,EAAU,EAAG,GAAG,EAChBf,EAAa,EACbH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EAAE,EACjBgB,EAAW,EAAG0P,GAA2D,EAAG,CAAC,CAClF,CACA,GAAI/Q,EAAK,EAAG,CACV,IAAMkR,EAAajR,EAAI,OACjBkR,EAAelR,EAAI,SACnBqC,EAAY/B,EAAc,EAC7BgC,EAAY,SAAU2O,CAAU,EAAE,WAAYC,CAAY,EAAE,mBAAoB7O,EAAO,aAAa,CAAC,EAAE,kBAAmB,CAACA,EAAO,aAAa,CAAC,EAChJR,EAAW,KAAMQ,EAAO,gBAAgB,CAAC,EACzC+L,GAAY,WAAY/L,EAAO,SAAS,EAAI,GAAK,CAAC,EAClD9B,EAAU,CAAC,EACXe,GAAWe,EAAO,KAAK,CAAC,EACxB9B,EAAU,CAAC,EACXkC,EAAmB,IAAQhC,EAAY,EAAG,GAAI4B,EAAO,QAAQ,CAAC,EAAG,GAAG,EACpE9B,EAAU,CAAC,EACXgB,EAAcc,EAAO,kBAAkB,EAAI,EAAI,EAAE,CACtD,CACF,CAGA,SAAS8O,GAAwCpR,EAAIC,EAAK,CACxD,GAAID,EAAK,EAAG,CACV,IAAM6F,EAAS/E,EAAiB,EAC7BZ,EAAe,EAAG,kBAAmB,GAAI,CAAC,EAC1Ca,EAAW,mBAAoB,UAA+F,CAC5HC,EAAc6E,CAAG,EACpB,IAAM5E,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,mBAAmB,CAAC,CACnD,CAAC,EAAE,oBAAqB,SAA8FE,EAAQ,CACzHH,EAAc6E,CAAG,EACpB,IAAM5E,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,6BAA6BE,CAAM,CAAC,CACnE,CAAC,EACEd,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BuB,EAAW,YAAab,EAAO,wBAAwB,CAAC,CAC7D,CACF,CACA,SAASoQ,GAAwCrR,EAAIC,EAAK,CACxD,GAAID,EAAK,EAAG,CACV,IAAMgE,EAASlD,EAAiB,EAC7BZ,EAAe,EAAG,kBAAmB,GAAI,CAAC,EAC1Ca,EAAW,mBAAoB,UAA+F,CAC5HC,EAAcgD,CAAG,EACpB,IAAM/C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,mBAAmB,CAAC,CACnD,CAAC,EAAE,oBAAqB,SAA8FE,EAAQ,CACzHH,EAAcgD,CAAG,EACpB,IAAM/C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,6BAA6BE,CAAM,CAAC,CACnE,CAAC,EACEd,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BuB,EAAW,YAAab,EAAO,wBAAwB,CAAC,CAC7D,CACF,CACA,SAASqQ,GAAwCtR,EAAIC,EAAK,CACxD,GAAID,EAAK,EAAG,CACV,IAAM4D,EAAS9C,EAAiB,EAC7BZ,EAAe,EAAG,kBAAmB,GAAI,CAAC,EAC1Ca,EAAW,mBAAoB,UAA+F,CAC5HC,EAAc4C,CAAG,EACpB,IAAM3C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,mBAAmB,CAAC,CACnD,CAAC,EAAE,oBAAqB,SAA8FE,EAAQ,CACzHH,EAAc4C,CAAG,EACpB,IAAM3C,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,6BAA6BE,CAAM,CAAC,CACnE,CAAC,EACEd,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BuB,EAAW,YAAab,EAAO,wBAAwB,CAAC,CAC7D,CACF,CACA,SAASsQ,GAAyCvR,EAAIC,EAAK,CACzD,GAAID,EAAK,EAAG,CACV,IAAMwK,EAAS1J,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,YAAa,GAAI,CAAC,EAClDa,EAAW,mBAAoB,UAA0F,CACvHC,EAAcwJ,CAAG,EACpB,IAAMvJ,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,mBAAmB,CAAC,CACnD,CAAC,EAAE,oBAAqB,SAAyFE,EAAQ,CACpHH,EAAcwJ,CAAG,EACpB,IAAMvJ,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,6BAA6BE,CAAM,CAAC,CACnE,CAAC,EACEd,EAAa,EAAE,CACpB,CACF,CACA,SAASmR,GAAyCxR,EAAIC,EAAK,CACzD,GAAID,EAAK,EAAG,CACV,IAAMiJ,EAASnI,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAAE,EAAG,UAAW,GAAI,CAAC,EAChDa,EAAW,mBAAoB,UAAwF,CACrHC,EAAciI,CAAG,EACpB,IAAMhI,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,mBAAmB,CAAC,CACnD,CAAC,EAAE,oBAAqB,SAAuFE,EAAQ,CAClHH,EAAciI,CAAG,EACpB,IAAMhI,EAAYV,EAAc,EAChC,OAAUW,EAAYD,EAAO,6BAA6BE,CAAM,CAAC,CACnE,CAAC,EACEd,EAAa,EAAE,CACpB,CACA,GAAIL,EAAK,EAAG,CACV,IAAMiB,EAAYV,EAAc,EAC7BC,EAAU,EACVsB,EAAW,YAAab,EAAO,wBAAwB,CAAC,CAC7D,CACF,CAEA,SAASwQ,GAA+DzR,EAAIC,EAAK,CAM/E,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,qBAAsB,CAAC,EACpCf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,OAAQQ,EAAO,uBAAuB,aAAa,EAAE,OAAQA,EAAO,uBAAuB,KAAK,CAChH,CACF,CACA,SAASoP,GAAiD1R,EAAIC,EAAK,CAKjE,GAJID,EAAK,IACJqB,EAAW,EAAGoQ,GAAgE,EAAG,EAAG,MAAO,CAAC,EAC5FrQ,EAAU,EAAG,qBAAsB,CAAC,GAErCpB,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BiB,EAAcc,EAAO,QAAQ,EAAI,EAAI,EAAE,EACvC9B,EAAU,EACV+B,EAAY,SAAUD,EAAO,QAAQ,CAAC,CAC3C,CACF,CAOA,SAASqP,GAAuC3R,EAAIC,EAAK,CACvD,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3BE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAuE,CACzFC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,mBAAmB,CAAC,CACnD,CAAC,EACEP,EAAU,EAAG,IAAK,EAAE,EACpBf,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,aAAiBpB,EAAY,EAAG,EAAG,wCAAwC,CAAC,EAAE,wBAAyBiB,EAAO,gBAAgB,SAAS,CACvJ,CACF,CACA,SAASiQ,GAAuC5R,EAAIC,EAAK,CACnDD,EAAK,GACJoB,EAAU,EAAG,oBAAqB,CAAC,EAEpCpB,EAAK,GACJ8B,EAAW,QAAS,MAAM,EAAE,SAAU,MAAM,CAEnD,CACA,SAAS+P,GAAuC7R,EAAIC,EAAK,CAMvD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAM,EACrCC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,CAAC,EACXC,EAAkBkB,EAAO,UAAU,CACxC,CACF,CACA,SAASmQ,GAAuC9R,EAAIC,EAAK,CAMvD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAM,EACrCC,EAAO,CAAC,EACRE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,EAAG4P,GAAMpQ,EAAO,WAAW,OAAS,CAAC,CAAC,EAC/EnB,EAAU,CAAC,EACXC,EAAkBkB,EAAO,UAAU,CACxC,CACF,CACA,SAASqQ,GAAuChS,EAAIC,EAAK,CACnDD,EAAK,GACJoB,EAAU,EAAG,YAAa,EAAE,CAEnC,CACA,SAAS6Q,GAAwCjS,EAAIC,EAAK,CAIxD,GAHID,EAAK,GACJoB,EAAU,EAAG,iCAAkC,EAAE,EAElDpB,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,sBAAuBH,EAAO,mBAAmB,EAAE,yBAA0B,CAAC,CAC9F,CACF,CACA,SAASuQ,GAAwClS,EAAIC,EAAK,CACpDD,EAAK,GACJoB,EAAU,EAAG,wBAAwB,CAE5C,CACA,SAAS+Q,GAAwCnS,EAAIC,EAAK,CACpDD,EAAK,GACJoB,EAAU,EAAG,8BAA+B,EAAE,CAErD,CACA,SAASgR,GAAwCpS,EAAIC,EAAK,CACxD,GAAID,EAAK,EAAG,CACV,IAAM0B,EAASZ,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3BE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAwE,CAC1FC,EAAcU,CAAG,EACpB,IAAMC,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,eAAe,CAAC,CAC/C,CAAC,EACEP,EAAU,EAAG,IAAK,EAAE,EACpBf,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,aAAiBpB,EAAY,EAAG,EAAG,mDAAmD,CAAC,EAAE,UAAcyB,EAAgB,EAAGkQ,GAAM1Q,EAAO,aAAa,UAAU,CAAC,EAAE,wBAAyBA,EAAO,gBAAgB,SAAS,CAC1O,CACF,CACA,SAAS2Q,GAAwCtS,EAAIC,EAAK,CACxD,GAAID,EAAK,EAAG,CACV,IAAMgE,EAASlD,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAE,EAC3BE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAwE,CAC1FC,EAAcgD,CAAG,EACpB,IAAMrC,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,iBAAiB,CAAC,CACjD,CAAC,EACEP,EAAU,EAAG,IAAK,EAAE,EACpBf,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,aAAiBpB,EAAY,EAAG,EAAG,uDAAuD,CAAC,EAAE,wBAAyBiB,EAAO,gBAAgB,SAAS,CACtK,CACF,CACA,SAAS4Q,GAAwCvS,EAAIC,EAAK,CAMxD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,mBAAoB,GAAI,CAAC,EACtCf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMwS,EAAqB3Q,EAAY,CAAC,EAClCF,EAAYpB,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,EAAGkQ,GAAMG,EAAgB,aAAa,CAAC,EAChFhS,EAAU,EACVsB,EAAW,SAAUH,EAAO,MAAM,CACvC,CACF,CACA,SAAS8Q,GAAwCzS,EAAIC,EAAK,CAMxD,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAE,EAC3BkB,EAAU,EAAG,eAAgB,EAAE,EAC/Bf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,EACVsB,EAAW,iBAAkBH,EAAO,cAAc,CACvD,CACF,CAOA,SAAS+Q,GAAwD1S,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,IAAK,CAAC,EACxBa,EAAW,QAAS,UAAsF,CACxGC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,iBAAiB,CAAC,CACjD,CAAC,EACEtB,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BuB,EAAW,UAAcK,EAAgB,EAAGwQ,GAAM,CAAChR,EAAO,iBAAiB,CAAC,CAAC,CAClF,CACF,CACA,SAASiR,GAAwD5S,EAAIC,EAAK,CACpED,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,OAAQ,EAAE,EACzCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,iDAAiD,CAAC,EAEhG,CACA,SAASmS,GAAwD7S,EAAIC,EAAK,CACpED,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,OAAQ,EAAE,EACzCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,kDAAkD,CAAC,EAEjG,CACA,SAASoS,GAAyD9S,EAAIC,EAAK,CAUzE,GATID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,EAAE,EAAE,EAAG,OAAQ,EAAE,EACvDC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfH,EAAe,EAAG,OAAQ,EAAE,EAC5BC,EAAO,EAAG,GAAG,EACbE,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,CAAC,EACXkC,EAAmB,IAAKf,EAAO,KAAK,iBAAsBjB,EAAY,EAAG,EAAG,gDAAgD,EAAG,GAAG,EAClIF,EAAU,CAAC,EACXsB,EAAW,aAAcH,EAAO,KAAK,qBAAqB,CAC/D,CACF,CACA,SAASoR,GAA0C/S,EAAIC,EAAK,CAY1D,GAXID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,OAAQ,CAAC,EACrDC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfgB,EAAW,EAAGqR,GAAyD,EAAG,EAAG,IAAK,CAAC,EACnFtR,EAAU,EAAG,qBAAsB,CAAC,EACpClB,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGuR,GAAyD,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGC,GAAyD,EAAG,EAAG,MAAO,CAAC,EAAE,GAAIC,GAA0D,EAAG,EAAG,MAAO,CAAC,EAC/OzS,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BuB,EAAW,UAAcK,EAAgB,GAAI6Q,GAAMrR,EAAO,KAAK,QAAQ,CAAC,EACxEnB,EAAU,EACVsB,EAAW,iCAAkCH,EAAO,YAAY,EAAE,2CAA4C,EAAI,EAAE,SAAUA,EAAO,MAAM,EAC3InB,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,GAAIiB,EAAO,SAAS,CAAC,EACzDnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,eAAe,EAAI,EAAI,EAAE,EAC9CnB,EAAU,EACVsB,EAAW,SAAUH,EAAO,MAAM,EAClCnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,iBAAmB,EAAI,EAAE,EAC9CnB,EAAU,EACVgB,EAAcG,EAAO,kBAAoB,EAAI,EAAE,EAC/CnB,EAAU,EACVgB,EAAcG,EAAO,KAAK,SAAW,GAAK,EAAE,CACjD,CACF,CAYA,SAASsR,GAAyDjT,EAAIC,EAAK,CACzE,GAAID,EAAK,EAAG,CACV,IAAM0B,EAASZ,EAAiB,EAC7BZ,EAAe,EAAG,aAAc,CAAC,EACjCa,EAAW,mBAAoB,UAA2G,CACxIC,EAAcU,CAAG,EACpB,IAAMC,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,mBAAmB,CAAC,CACnD,CAAC,EACEtB,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BuB,EAAW,qBAAsBH,EAAO,kBAAkB,CAC/D,CACF,CACA,SAASuR,GAA0DlT,EAAIC,EAAK,CAM1E,GALID,EAAK,IACJE,EAAe,EAAG,KAAK,EACvBkB,EAAU,EAAG,MAAO,CAAC,EACrBf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BC,EAAU,EACVsB,EAAW,UAAcK,EAAgB,EAAGgR,GAAM,CAACxR,EAAO,gBAAgB,CAAC,CAAC,CACjF,CACF,CACA,SAASyR,GAA2CpT,EAAIC,EAAK,CAC3D,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,cAAc,EAC3BlB,EAAe,EAAG,YAAa,CAAC,EAChCa,EAAW,qBAAsB,UAA8F,CAC7HC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,EAChC,OAAUW,EAAYS,EAAO,qBAAqB,CAAC,CACrD,CAAC,EACEtB,EAAa,EACbH,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAG4R,GAA0D,EAAG,EAAG,aAAc,CAAC,EAC7F/S,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,eAAe,EAC5BlB,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7BkB,EAAU,EAAG,eAAe,EAC5Bf,EAAa,EAAE,EAAE,EACjBgB,EAAW,GAAI6R,GAA2D,EAAG,EAAG,KAAK,EACrF7S,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,CAAC,EACXsB,EAAW,mBAAoBH,EAAO,gBAAgB,EAAE,qBAAsBA,EAAO,kBAAkB,EACvGnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,iBAAmB,EAAI,EAAE,EAC9CnB,EAAU,EACVsB,EAAW,UAAc2B,GAAgB,EAAG4P,GAAM1R,EAAO,mBAAoBA,EAAO,gBAAgB,CAAC,EACrGnB,EAAU,CAAC,EACXqE,GAAY,gBAAiBlD,EAAO,cAAe,IAAI,EACvDG,EAAW,UAAcK,EAAgB,GAAImR,GAAM3R,EAAO,UAAU,CAAC,EACrEnB,EAAU,CAAC,EACXgB,EAAeG,EAAO,mBAAqB,MAAcA,EAAO,kBAAkB,gBAAmB,CAACA,EAAO,gBAAgB,EAAI,GAAK,EAAE,CAC7I,CACF,CACA,SAAS4R,GAA2CvT,EAAIC,EAAK,CACvDD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,eAAe,EAC5Bf,EAAa,EAEpB,CAKA,SAASmT,GAA2DxT,EAAIC,EAAK,CAC3E,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,kBAAmB,CAAC,EACtCa,EAAW,SAAU,UAAwG,CAC3HC,EAAcH,CAAG,EACpB,IAAMc,EAAYpB,EAAc,CAAC,EACjC,OAAUW,EAAYS,EAAO,MAAM,CAAC,CACtC,CAAC,EACEtB,EAAa,CAClB,CACA,GAAIL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,CAAC,EAC9BuB,EAAW,UAAcK,EAAgB,EAAGsR,GAAM9R,EAAO,eAAe,KAAK,CAAC,CACnF,CACF,CACA,SAAS+R,GAA6C1T,EAAIC,EAAK,CAS7D,GARID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,KAAK,EACpCC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbgB,EAAW,EAAGmS,GAA4D,EAAG,EAAG,kBAAmB,CAAC,EACpGnT,EAAa,GAEdL,EAAK,EAAG,CACV,IAAM2B,EAAYpB,EAAc,EAC7BC,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAGiB,EAAO,KAAK,CAAC,EACpDnB,EAAU,CAAC,EACXgB,EAAcG,EAAO,gBAAkB,EAAI,EAAE,CAClD,CACF,CAEA,SAASgS,GAAoD3T,EAAIC,EAAK,CAMpE,GALID,EAAK,IACJE,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7BkB,EAAU,EAAG,eAAe,EAC5Bf,EAAa,GAEdL,EAAK,EAAG,CACV,IAAMsC,EAAY/B,EAAc,EAC7BsE,GAAY,gBAAiBvC,EAAO,cAAe,IAAI,EACvDR,EAAW,UAAcK,EAAgB,EAAGmR,GAAMhR,EAAO,UAAU,CAAC,CACzE,CACF,CAv1FA,IAkCM8C,GA0DAwO,GACAxR,GA2EAc,GAwEA2Q,GAaAC,GAIApQ,GAIAI,GAgEAiQ,GAaA1O,GAgHAK,GAKAM,GAyEAU,GA2FA+D,GAgLA9C,GAGAE,GAGAI,GA0EAE,GAYA6L,GA6CAC,GACArL,GAqEAsL,GACAC,GACAC,GA4BAC,GACAC,GAiFAvJ,GAGAF,GAGA6B,GA6wBAoB,GAGAQ,GAIAY,GA8MAqF,GACAC,GACAC,GACAjE,GACAJ,GAIAU,GA+RA4D,GACAC,GAkGAC,GAyBA7C,GAGAM,GA4IAW,GAGAL,GA4FAkC,GACAxB,GAIAC,GAGAH,GA2EA2B,GACArB,GAoCAsB,GAaFC,GA8BEC,GAIFC,GA6EAC,GAyKAC,GAwDAC,GAoDAC,GAmFAC,GAmCAC,GA2BAC,GAsKAC,GAoEEC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACAC,GACFC,GA0FAC,GAmCAC,GAuUAC,GAuEAC,GA8NAC,GAsEEC,GAIFC,GAiMAC,GAgDEC,GAiBFC,GAUEC,GA0BFC,GAaAC,GA8HEC,GAMFC,GA8BEC,GAIAC,GACFC,GAkDAC,GA0GEC,GAMFC,GAsBEC,GAMFC,GA+JEC,GAQAC,GAaFC,GAiTEC,GAMFC,GAiEEC,GAIFC,GAkDAC,GAwBAC,GAmDAC,GAoCAC,GAoCAC,GA2KAC,GA6LAC,GA+CAC,GAkFAC,GA4EAC,GAiDAC,GAiJAC,GAaAC,GAaAC,GAOEC,GAqCFC,GA6EAC,GA6NAC,GA+BAC,GAiJAC,GAqPAC,GAkUAC,GAKAC,GA2BAC,GAkVAC,GAqdAC,GAgIEC,GACAC,GACAC,GACFC,GAwBAC,GAiHAC,GAwPAC,GA0QAC,GAyXAC,GAyKAC,GAkHAC,GA4EAC,GAuEAC,GA6VAC,GAwCAC,GA2GAC,GA8KAC,GAqDAC,GAuNAC,GA8KAC,GAsZAC,GA2LAC,GAuGAC,GAsJEC,GAOAC,GASAC,GAUAC,GASAC,GAaFC,GAuGAC,GAkMEC,GAUAC,GAnvYNC,GAAAC,EAAA,KAAAC,KACAA,KACAC,KACAA,KACAC,KACAA,KACAC,KACAA,KACAC,KACAA,KACAC,KACAA,KACAC,KACAC,KACAC,KACAA,KACAC,KACAC,KACAC,KACAC,KACAA,KACAC,KACAC,KACAC,KACAC,KACAC,KACAA,KACAX,KACAA,KACAY,KAKM7X,GAAa,CAAC8X,EAAQC,IAAUA,EAAM,GA0DtCvJ,GAAM,CAAC,oBAAoB,EAC3BxR,GAAMgb,IAAO,CACjB,OAAQA,CACV,GAyEMla,GAAM,CAACka,EAAIC,EAAIC,KAAQ,CAC3B,oBAAqBF,EACrB,uBAAwBC,EACxB,wBAAyBC,CAC3B,GAoEMzJ,GAAM,CAAC,oBAAoB,EAa3BC,GAAM,CAACsJ,EAAIC,KAAQ,CACvB,kBAAmBD,EACnB,iBAAkBC,CACpB,GACM3Z,GAAM,CAAC0Z,EAAIC,KAAQ,CACvB,OAAQD,EACR,KAAMC,CACR,GACMvZ,GAAMsZ,IAAO,CACjB,OAAQA,CACV,GA8DMrJ,GAAM,CAACqJ,EAAIC,KAAQ,CACvB,QAASD,EACT,iBAAkBC,CACpB,GAUMhY,GAAM,CAAC+X,EAAIC,KAAQ,CACvB,GAAID,EACJ,MAAOC,CACT,GA6GM3X,GAAM,CAAC0X,EAAIC,EAAIC,KAAQ,CAC3B,QAASF,EACT,yBAA0BC,EAC1B,2BAA4BC,CAC9B,GACMtX,GAAO,CAACoX,EAAIC,KAAQ,CACxB,QAASD,EACT,iBAAkBC,CACpB,GAsEM3W,GAAO0W,IAAO,CAClB,mBAAoBA,CACtB,GAyFM3S,GAAO,CAAC2S,EAAIC,EAAIC,KAAQ,CAC5B,KAAMF,EACN,KAAMC,EACN,MAAOC,CACT,GA4KM3V,GAAOyV,IAAO,CAClB,oBAAqBA,CACvB,GACMvV,GAAO,KAAO,CAClB,UAAW,GACb,GACMI,GAAOmV,IAAO,CAClB,KAAMA,CACR,GAwEMjV,GAAOiV,IAAO,CAClB,MAAOA,CACT,GAUMpJ,GAAOoJ,IAAO,CAClB,YAAaA,CACf,GA2CMnJ,GAAO,CAAC,YAAY,EACpBrL,GAAO,CAACwU,EAAIC,KAAQ,CACxB,KAAMD,EACN,MAAOC,CACT,GAkEMnJ,GAAO,CAAC,MAAM,EACdC,GAAO,CAAC,MAAM,EACdC,GAAOgJ,IAAO,CAClB,KAAMA,CACR,GA0BM/I,GAAO,CAAC,aAAa,EACrBC,GAAO,CAAC,aAAa,EAiFrBvJ,GAAOqS,IAAO,CAClB,mBAAoBA,CACtB,GACMvS,GAAOuS,IAAO,CAClB,SAAUA,CACZ,GACM1Q,GAAO0Q,IAAO,CAClB,cAAeA,CACjB,GA2wBMtP,GAAOsP,IAAO,CAClB,SAAUA,CACZ,GACM9O,GAAO,CAAC8O,EAAIC,KAAQ,CACxB,SAAUD,EACV,QAASC,CACX,GACMnO,GAAOkO,IAAO,CAClB,SAAUA,EACV,QAAS,EACX,GA2MM7I,GAAO,CAAC,eAAe,EACvBC,GAAO,CAAC,sBAAsB,EAC9BC,GAAO,CAAC,cAAc,EACtBjE,GAAa,CAAC0M,EAAQC,IAAUA,EAAM,MACtC/M,GAAO,CAACgN,EAAIC,KAAQ,CACxB,UAAWD,EACX,SAAUC,CACZ,GACMvM,GAAO,CAACsM,EAAIC,EAAIC,EAAIC,KAAQ,CAChC,KAAMH,EACN,KAAMC,EACN,KAAMC,EACN,MAAOC,CACT,GA0RM7I,GAAO,CAAC,YAAY,EACpBC,GAAO,CAAC,aAAa,EAkGrBC,GAAO,CAAC,YAAY,EAyBpB7C,GAAOqL,IAAO,CAClB,iBAAkBA,CACpB,GACM/K,GAAO+K,IAAO,CAClB,UAAWA,CACb,GA0IMpK,GAAOoK,IAAO,CAClB,iBAAkBA,CACpB,GACMzK,GAAOyK,IAAO,CAClB,SAAUA,CACZ,GA0FMvI,GAAO,CAAC,SAAS,EACjBxB,GAAO,CAAC+J,EAAIC,KAAQ,CACxB,oBAAqBD,EACrB,kBAAmBC,CACrB,GACM/J,GAAO8J,IAAO,CAClB,aAAcA,CAChB,GACMjK,GAAOiK,IAAO,CAClB,mBAAoBA,CACtB,GAyEMtI,GAAO,CAAC,GAAG,EACXrB,GAAO2J,IAAO,CAClB,KAAMA,CACR,GAkCMrI,GAAO,CAAC,WAAW,EAarBC,IAAmD,IAAM,CAC3D,MAAMA,CAAmC,CACvC,aAAc,CACZ,KAAK,gBAAkBwI,EAAOC,EAAe,CAC/C,CAMM,iBAAkB,QAAAC,EAAA,sBACtB,OAAO,MAAM,KAAK,gBAAgB,6BAA6B,CACjE,GACA,MAAO,CACL,KAAK,UAAO,SAAoDC,EAAmB,CACjF,OAAO,IAAKA,GAAqB3I,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B4I,EAAmB,CAChD,MAAO5I,EACP,QAASA,EAAmC,SAC9C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAA8B,IAAI4I,GAAe,uBAAwB,CAC7E,WAAY,OACZ,QAAS,IAAM,IAAI7I,EACrB,CAAC,EACGE,IAAiD,IAAM,CACzD,MAAMA,CAAiC,CACrC,aAAc,CACZ,KAAK,MAAQ4I,EAAM,SAAS,EAC5B,KAAK,aAAeA,EAAM,CAAC,CAAC,EAC5B,KAAK,UAAYC,EAAO,EACxB,KAAK,cAAgBA,EAAO,EAC5B,KAAK,gBAAkBP,EAAOQ,EAAe,CAC/C,CAMA,gBAAgBC,EAAa,CAC3B,KAAK,gBAAgB,gBAAgBA,EAAY,GAAG,EAAE,KAAKC,GAAK,CAAC,CAAC,EAAE,UAAUC,GAAO,CACnF,KAAK,UAAU,KAAK,EACpB,OAAO,KAAKA,CAAG,CACjB,CAAC,CACH,CAMA,aAAaC,EAAO,CACd,CAAC,SAAU,KAAK,EAAE,SAASA,EAAM,GAAG,IACtCA,EAAM,eAAe,EACrB,KAAK,cAAc,KAAK,EAE5B,CACA,MAAO,CACL,KAAK,UAAO,SAAkDT,EAAmB,CAC/E,OAAO,IAAKA,GAAqBzI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBmJ,EAAkB,CAC9C,KAAMnJ,EACN,UAAW,CAAC,CAAC,8BAA8B,CAAC,EAC5C,OAAQ,CACN,MAAO,CAAC,EAAG,OAAO,EAClB,aAAc,CAAC,EAAG,cAAc,CAClC,EACA,QAAS,CACP,UAAW,YACX,cAAe,eACjB,EACA,WAAY,GACZ,SAAU,CAAIoJ,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,6BAA8B,GAAI,EAAG,6BAA6B,EAAG,CAAC,cAAe,gBAAiB,wBAAyB,GAAI,EAAG,eAAe,EAAG,CAAC,cAAe,gBAAiB,wBAAyB,GAAI,EAAG,gBAAiB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,kBAAmB,GAAI,EAAG,UAAU,EAAG,CAAC,kBAAmB,GAAI,EAAG,UAAU,CAAC,EAClY,SAAU,SAAmDte,EAAIC,EAAK,CAChED,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1B+D,GAAiB,EAAGrD,GAAiD,EAAG,EAAG,MAAO,EAAGwE,EAAU,EAC/F/E,EAAa,GAEdL,EAAK,IACJ6E,GAAY,QAAS5E,EAAI,MAAM,EAAG,IAAI,EACtCO,EAAU,EACV2D,GAAWlE,EAAI,aAAa,CAAC,EAEpC,EACA,aAAc,CAACse,EAAwBC,GAAaC,GAAkCC,EAA2B,EACjH,OAAQ,CAAC;AAAA,CAAi5C,EAC15C,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOxJ,CACT,GAAG,EAICC,IAA0C,IAAM,CAClD,MAAMA,CAA0B,CAC9B,aAAc,CACZ,KAAK,MAAQ2I,EAAM,CAAC,EACpB,KAAK,eAAiBA,EAAM,SAAS,EACrC,KAAK,oBAAsBA,EAAMa,GAAqB,KAAK,EAC3D,KAAK,oBAAsBb,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,qBAAuBA,EAAM,OAAO,EACzC,KAAK,qBAAuBA,EAAM,CAAC,EACnC,KAAK,qBAAuBA,EAAM,CAAC,EACnC,KAAK,wBAA0BA,EAAM,EAAE,EACvC,KAAK,UAAYC,EAAO,EACxB,KAAK,qBAAuBA,EAAO,EACnC,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,aAAea,EAAO,CAAC,CAAC,EAE7B,KAAK,kBAAoBC,EAAS,IAAM,KAAK,aAAa,EAAE,IAAIZ,IAC9DA,EAAY,GAAKA,EAAY,IAAMa,GAAY,UAAU,EAClDb,EACR,CAAC,EACF,KAAK,gBAAkBY,EAAS,IAAM,KAAK,kBAAkB,EAAE,OAAS,CAAC,EACzE,KAAK,mBAAqBE,GAAU,oBAAoB,EACxD,KAAK,4BAA8BF,EAAS,IAAM,2CAA6C,KAAK,wBAAwB,EAAI,IAAI,KAAK,wBAAwB,CAAC,GAAK,GAAG,EAC1K,KAAK,cAAgBrB,EAAOwB,EAAa,EACzC,KAAK,sBAAwB,KAAK,cAAc,wBAA0BC,GAAgB,UAAYA,GAAgB,SACtH,KAAK,sBAAwB,IAC7B,KAAK,uBAAyB,IAAIC,GAClC,KAAK,kBAAoB1B,EAAO2B,EAAiB,EACjD,KAAK,qBAAuB3B,EAAOvI,EAA2B,CAChE,CACA,UAAW,CACT,KAAK,iBAAiB,CACxB,CAOA,UAAUmJ,EAAO,CACX,KAAK,cAAc,wBACjB,CAAC,SAAU,MAAO,YAAa,YAAY,EAAE,SAASA,EAAM,IAAI,GAClE,KAAK,uBAAuB,KAAK,EAGnCA,EAAM,eAAe,CAEzB,CAEA,6BAA8B,CAC5B,KAAK,uBAAuB,KAAK,EACjC,KAAK,mBAAmB,GAAG,cAAc,MAAM,CACjD,CAKM,kBAAmB,QAAAV,EAAA,sBACvB,GAAI,KAAK,qBAAsB,CAC7B,IAAM0B,EAAqB,MAAM,KAAK,qBAAqB,gBAAgB,EACrEC,EAAe,KAAK,UAAUD,EAAoB,KAAK,kBAAkB,sBAAsB,CAAC,EACtG,KAAK,aAAa,IAAIC,CAAY,EAClC,KAAK,sBAAsB,KAAK,KAAK,gBAAgB,CAAC,CACxD,MACE,QAAQ,KAAK,2CAA2C,EACxD,KAAK,sBAAsB,KAAK,EAAK,CAEzC,GAQA,UAAUC,EAAMC,EAAoB,CAClC,IAAMC,EAAkB,CAAC,EACzB,OAAAF,EAAK,QAAQG,GAAO,CAClB,GAAIA,EAAI,OACN,GAAIA,EAAI,SAAW,GAEjBD,EAAgB,KAAKC,CAAG,MACnB,CACL,IAAIC,EAAQ,EACNC,EAAqB,CAAC,EAC5BF,EAAI,OAAO,MAAM,GAAG,EAAE,QAAQG,GAAS,CACrCF,IACIH,EAAmB,SAASK,CAAK,GACnCD,EAAmB,KAAKF,CAAG,CAE/B,CAAC,EAEGE,EAAmB,SAAWD,GAChCF,EAAgB,KAAKC,CAAG,CAE5B,MAGAD,EAAgB,KAAKC,CAAG,CAE5B,CAAC,EACMD,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAA2C7B,EAAmB,CACxE,OAAO,IAAKA,GAAqBxI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBkJ,EAAkB,CAC9C,KAAMlJ,EACN,UAAW,CAAC,CAAC,sBAAsB,CAAC,EACpC,UAAW,SAAyCnV,EAAIC,EAAK,CAM3D,GALID,EAAK,IACJ6f,GAAkB5f,EAAI,mBAAoB2T,GAAK,CAAC,EAChDkM,EAAYpB,GAA6B,CAAC,EAC1CoB,EAAYC,GAAuB,CAAC,GAErC/f,EAAK,EAAG,CACPggB,GAAe,EAClB,IAAIC,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,4BAA8BggB,EAAG,OAC/EC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,sBAAwBggB,EAAG,MAC9E,CACF,EACA,OAAQ,CACN,MAAO,CAAC,EAAG,OAAO,EAClB,eAAgB,CAAC,EAAG,gBAAgB,EACpC,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,EACpD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,wBAAyB,CAAC,EAAG,yBAAyB,CACxD,EACA,QAAS,CACP,UAAW,YACX,qBAAsB,uBACtB,iBAAkB,mBAClB,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,qBAAsB,EAAE,EAAG,CAAC,eAAgB,EAAE,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,wBAAyB,GAAI,EAAG,2BAA4B,EAAG,mBAAoB,mBAAoB,UAAW,UAAW,6BAA8B,0BAA2B,yBAA0B,sBAAuB,sBAAuB,eAAgB,eAAgB,UAAW,aAAc,YAAa,aAAc,wBAAyB,4BAA4B,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,YAAa,gBAAiB,QAAS,cAAc,CAAC,EAC/kB,SAAU,SAA4Cte,EAAIC,EAAK,CACzDD,EAAK,GACJqB,EAAW,EAAGU,GAAkD,EAAG,EAAE,EAEtE/B,EAAK,GACJwB,EAAcvB,EAAI,gBAAgB,EAAI,EAAI,EAAE,CAEnD,EACA,aAAc,CAACmgB,GAASC,GAAkBN,GAAuB7K,GAAkCwJ,GAA6B4B,GAAY/B,EAAwBC,EAAW,EAC/K,OAAQ,CAAC;AAAA,CAAsT,EAC/T,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOrJ,CACT,GAAG,EAICC,IAAgD,IAAM,CACxD,MAAMA,CAAgC,CACpC,IAAI,aAAc,CAChB,MAAO,CAAC,KAAK,2BAA2B,gBAAgB,CAC1D,CACA,MAAO,CACL,KAAK,UAAO,SAAiDuI,EAAmB,CAC9E,OAAO,IAAKA,GAAqBvI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBiJ,EAAkB,CAC9C,KAAMjJ,EACN,UAAW,CAAC,CAAC,6BAA6B,CAAC,EAC3C,UAAW,SAA+CpV,EAAIC,EAAK,CAIjE,GAHID,EAAK,GACJ8f,EAAY3K,GAA2B,CAAC,EAEzCnV,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,0BAA4BggB,EAAG,MAClF,CACF,EACA,SAAU,EACV,aAAc,SAAsDjgB,EAAIC,EAAK,CACvED,EAAK,GACJuC,EAAY,SAAUtC,EAAI,WAAW,CAE5C,EACA,WAAY,GACZ,SAAU,CAAIqe,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,iBAAkB,EAAE,EAAG,CAAC,EAAG,QAAS,gBAAgB,EAAG,CAAC,EAAG,cAAc,EAAG,CAAC,EAAG,WAAW,CAAC,EACtG,SAAU,SAAkDte,EAAIC,EAAK,CAKnE,GAJID,EAAK,IACJoB,EAAU,EAAG,uBAAwB,CAAC,EACtCC,EAAW,EAAGgB,GAAwD,EAAG,EAAG,cAAe,KAAM,EAAMJ,EAAsB,GAE9HjC,EAAK,EAAG,CACV,IAAMugB,EAAuB1e,EAAY,CAAC,EACvCC,EAAW,QAAS,GAAG,EAAE,iBAAkBye,CAAiB,CACjE,CACF,EACA,aAAc,CAACpL,EAAyB,EACxC,OAAQ,CAAC;AAAA,CAA+sC,EACxtC,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOC,CACT,GAAG,EAICC,IAAgD,IAAM,CACxD,MAAMA,CAAgC,CACpC,aAAc,CACZ,KAAK,QAAUyI,EAAM,EAAE,EACvB,KAAK,cAAgBN,EAAOwB,EAAa,EACzC,KAAK,eAAiB,KAAK,eAAe,cAC5C,CACA,MAAO,CACL,KAAK,UAAO,SAAiDrB,EAAmB,CAC9E,OAAO,IAAKA,GAAqBtI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBgJ,EAAkB,CAC9C,KAAMhJ,EACN,UAAW,CAAC,CAAC,8BAA8B,CAAC,EAC5C,OAAQ,CACN,QAAS,CAAC,EAAG,SAAS,CACxB,EACA,WAAY,GACZ,SAAU,CAAIiJ,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,OAAQ,SAAU,cAAe,4BAA6B,EAAG,2BAA2B,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,EAAG,MAAM,CAAC,EACvL,SAAU,SAAkDte,EAAIC,EAAK,CAC/DD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,MAAO,CAAC,EACrBlB,EAAe,EAAG,MAAO,CAAC,EAC1BC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,EACV+B,EAAY,mBAAoBtC,EAAI,cAAc,EAAE,oBAAqB,CAACA,EAAI,cAAc,EAC5FO,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAGT,EAAI,QAAQ,CAAC,CAAC,EAE5D,EACA,aAAc,CAACse,EAAwBC,GAAagC,EAAqB,EACzE,OAAQ,CAAC;AAAA,CAAioB,EAC1oB,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOnL,CACT,GAAG,EAICC,IAAkD,IAAM,CAC1D,MAAMA,CAAkC,CACtC,aAAc,CACZ,KAAK,oBAAsBwI,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,UAAYC,EAAO,EACxB,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,cAAgBP,EAAOwB,EAAa,EACzC,KAAK,eAAiB,KAAK,eAAe,eAC1C,KAAK,WAAa,KAAK,eAAiB,EAAI,EAC5C,KAAK,oBAAsB,KAAK,eAAiBL,GAAqB,MAAQA,GAAqB,WACnG,KAAK,qBAAuBA,EAC9B,CACA,IAAI,0BAA0B8B,EAAU,CACtC,KAAK,gBAAkBA,EAAS,eAClC,CACA,MAAO,CACL,KAAK,UAAO,SAAmD9C,EAAmB,CAChF,OAAO,IAAKA,GAAqBrI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB+I,EAAkB,CAC9C,KAAM/I,EACN,UAAW,CAAC,CAAC,gCAAgC,CAAC,EAC9C,UAAW,SAAiDtV,EAAIC,EAAK,CAInE,GAHID,EAAK,GACJ8f,EAAY3K,GAA2B,CAAC,EAEzCnV,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,0BAA4BggB,EAAG,MAClF,CACF,EACA,OAAQ,CACN,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,CACtD,EACA,QAAS,CACP,UAAW,YACX,iBAAkB,mBAClB,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,iBAAkB,EAAE,EAAG,CAAC,EAAG,YAAa,mBAAoB,mBAAoB,QAAS,iBAAkB,sBAAuB,yBAA0B,sBAAuB,uBAAwB,uBAAwB,uBAAwB,yBAAyB,EAAG,CAAC,EAAG,SAAS,CAAC,EAC/S,SAAU,SAAoDte,EAAIC,EAAK,CACrE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,uBAAwB,CAAC,EAC3Ca,EAAW,YAAa,UAAgG,CACzH,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,UAAU,KAAK,CAAC,CAC5C,CAAC,EAAE,mBAAoB,SAAqGkB,EAAQ,CAClI,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,iBAAiB,KAAKkB,CAAM,CAAC,CACzD,CAAC,EAAE,mBAAoB,SAAqGA,EAAQ,CAClI,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,iBAAiB,KAAKkB,CAAM,CAAC,CACzD,CAAC,EACEd,EAAa,EACbgB,EAAW,EAAGmB,GAA0D,EAAG,EAAG,cAAe,KAAM,EAAMP,EAAsB,CACpI,CACA,GAAIjC,EAAK,EAAG,CACV,IAAMugB,EAAuB1e,EAAY,CAAC,EACvCC,EAAW,QAASye,EAAkB,WAAW,cAAc,WAAW,EAAE,iBAAkBA,CAAiB,EAAE,sBAAuBtgB,EAAI,oBAAoB,CAAC,EAAE,yBAA0BA,EAAI,uBAAuB,CAAC,EAAE,sBAAuBA,EAAI,mBAAmB,EAAE,uBAAwBA,EAAI,eAAiB,OAAS,UAAU,EAAE,uBAAwBA,EAAI,eAAiB,EAAI,EAAE,EAAE,uBAAwBA,EAAI,UAAU,EAAE,0BAA2BA,EAAI,eAAiB,SAAW,SAAS,CACnf,CACF,EACA,aAAc,CAACkV,GAA2BE,GAAiCkJ,EAAwBC,EAAW,EAC9G,OAAQ,CAAC;AAAA,CAAujB,EAChkB,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOlJ,CACT,GAAG,EAICC,IAA0C,IAAM,CAClD,MAAMA,CAA0B,CAI9B,aAAc,CACZ,KAAK,aAAe,IAAImL,GAAc,CAAC,EACvC,KAAK,gBAAkBlD,EAAOC,EAAe,EAC7C,KAAK,uBAAuB,CAC9B,CACA,iBAAkB,CAChB,OAAO,KAAK,aAAa,aAAa,EAAE,KAAKS,GAAK,CAAC,CAAC,CACtD,CACM,wBAAyB,QAAAR,EAAA,sBAC7B,IAAMiD,EAAW,MAAMC,GAAe,KAAK,gBAAgB,iBAAiB,QAAS,QAAQ,CAAC,EAC9F,KAAK,aAAa,KAAKD,CAAQ,CACjC,GACA,MAAO,CACL,KAAK,UAAO,SAA2ChD,EAAmB,CACxE,OAAO,IAAKA,GAAqBpI,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BqI,EAAmB,CAChD,MAAOrI,EACP,QAASA,EAA0B,UACnC,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,aAAc,CAEZ,KAAK,WAAa,2BAClB,KAAK,QAAU,CACjB,CACA,SAASqL,EAAI,CACXA,EAAG,YAAa,MAAM,CACxB,CACA,MAAO,CACL,KAAK,UAAO,SAA+BlD,EAAmB,CAC5D,OAAO,IAAKA,GAAqBnI,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BoI,EAAmB,CAChD,MAAOpI,EACP,QAASA,EAAc,SACzB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA6B,IAAM,CACrC,MAAMA,CAAa,CACjB,YAAYqL,EAAmBC,EAAaC,EAAeC,EAAeC,EAAY,CAQpF,GAPA,KAAK,kBAAoBJ,EACzB,KAAK,YAAcC,EACnB,KAAK,cAAgBC,EACrB,KAAK,cAAgBC,EACrB,KAAK,WAAaC,EAClB,KAAK,YAActC,EAAO,EAAK,EAC/B,KAAK,WAAa,GACd,CAACoC,EAAc,WACjB,MAAM,IAAI,MAAM,wEAAwE,EAE1F,KAAK,OAAS,KAAK,cAAc,MACnC,CAKM,KAAKG,EAAY,QAAAzD,EAAA,sBAErB,GADA,KAAK,cAAc,WAAayD,EAC5B,MAAM,KAAK,kBAAkB,KAAK,aAAa,EAAG,CACpD,IAAMlhB,EAAM,KAAK,kBAAkB,WAAW,EACxCmhB,EAAgB,KAAK,kBAAkB,UAAU,EACvD,KAAK,GAAG,YAAa,YAAanhB,EAAI,KAAK,OAAO,EAClD,KAAK,GAAG,YAAa,WAAY,CAC/B,KAAMA,EAAI,KAAK,YACf,MAAOA,EAAI,KAAK,IAClB,CAAC,EACD,IAAMohB,EAAUD,EAAgB,QAAU,OAC1C,KAAK,GAAG,YAAa,iBAAkB,CACrC,UAAW,CACT,SAAU,CACR,WAAY,QACZ,SAAU,KACZ,EACA,OAAQ,CACN,SAAUC,CACZ,EACA,KAAM,CACJ,YAAa,CACX,QAAS,CAACphB,EAAI,OAAO,UAAU,EAC/B,OAAQA,EAAI,OAAO,UACrB,EACA,KAAM,CAAC,KAAK,WAAW,QAAS,KAAK,WAAW,YAAY,EAC5D,UAAW,CACT,KAAM,KAAK,YAAY,IAAI,0CAA0C,EACrE,MAAO,CACL,IAAK,KAAK,YAAY,IAAI,2CAA2C,CACvE,CACF,EACA,YAAa,CACX,SAAU,CACR,IAAK,KAAK,YAAY,IAAI,gDAAgD,CAC5E,CACF,CACF,CACF,CACF,CAAC,EACD,KAAK,QAAQ,CACf,CACF,GACA,QAAS,CACH,KAAK,WACP,KAAK,GAAG,YAAa,MAAM,EAE3B,KAAK,GAAG,SAAS,EAEnB,KAAK,WAAa,MAAK,UACzB,CACA,MAAO,CACL,KAAK,GAAG,YAAa,MAAM,CAC7B,CACA,MAAO,CACL,KAAK,GAAG,YAAa,MAAM,CAC7B,CACA,WAAWqhB,EAAM,CACf,KAAK,WAAaA,CACpB,CACA,SAAU,CACR,KAAK,GAAG,IAAM,CACZ,KAAK,GAAG,eAAgB,QAAS,IAAM,CACrC,KAAK,WAAW,EAAK,CACvB,CAAC,CACH,CAAC,CACH,CACA,kBAAkBC,EAAQ,CACxB,OAAI,KAAK,OAAO,OACd,KAAK,OAAO,OAAO,EAEnB,KAAK,OAAOA,CAAM,EAEb,KAAK,cAAc,CAC5B,CACA,eAAgB,CACd,OAAO,IAAI,QAAQC,GAAW,CAC5B,IAAMC,EAAU,WAAW,IAAM,CAC/B,KAAK,YAAY,IAAI,EAAK,EAC1BD,EAAQ,EAAK,CACf,EAAG,KAAK,cAAc,SAAW,GAAK,EACtC,KAAK,OAAO,GAAG,IAAM,CACnB,KAAK,cAAc,SAAS,KAAK,OAAO,EAAE,EAC1C,KAAK,YAAY,IAAI,EAAI,EACzB,KAAK,GAAK,KAAK,OAAO,GACtB,aAAaC,CAAO,EACpBD,EAAQ,EAAI,CACd,CAAC,CACH,CAAC,CACH,CACA,OAAOD,EAAQ,CACb,IAAIG,EACAC,EACAC,EACEC,EAAI,CAAC,EACLC,EAAI,SAAS,cAAc,QAAQ,EACzC,KAAK,OAAO,OAAS,YAAaC,EAAM,CACtCF,EAAE,KAAKE,CAAI,CACb,EACA,KAAK,OAAO,GAAK,KAAK,OAAO,IAAM,KAAK,OAAO,OAC/CD,EAAE,IAAM,mBACRA,EAAE,MAAQ,GACVA,EAAE,MAAM,QAAU,gBAClBF,EAAI,SAAS,qBAAqBL,EAAO,cAAgB,MAAM,EAC/DK,EAAIA,EAAEA,EAAE,OAAS,CAAC,EAClBA,EAAE,WAAW,aAAaE,EAAGF,CAAC,EAE9B,IAAMI,EADIF,EAAE,cACA,SACZ,GAAI,CACFH,EAAIK,CACN,MAAY,CACVN,EAAI,SAAS,OACbI,EAAE,IAAM,8CAAgDJ,EAAI,aAC5DC,EAAIK,CACN,CACAL,EAAE,KAAK,EAAE,GAAK,UAAY,CACxB,IAAMM,EAAK,KAAK,cAAc,QAAQ,EAClCP,IACF,KAAK,OAASA,GAEhBO,EAAG,GAAK,kBACRA,EAAG,IAAM,0DACT,KAAK,EAAI,CAAC,IAAI,KACd,KAAK,YAAcV,EAAO,WAC1B,KAAK,QAAUM,EACf,KAAK,KAAK,YAAYI,CAAE,CAC1B,EACAN,EAAE,MAAM,gCAAgC,EACxCA,EAAE,MAAM,CACV,CACA,MAAO,CACL,KAAK,UAAO,SAA8BhE,EAAmB,CAC3D,OAAO,IAAKA,GAAqBlI,GAAiByM,GAAc/C,EAAiB,EAAM+C,GAAYC,EAAW,EAAMD,GAAS1M,EAAa,EAAM0M,GAAcE,EAAa,EAAMF,GAAcG,EAAU,CAAC,CAC5M,CACF,CACA,MAAO,CACL,KAAK,WAA0BzE,EAAmB,CAChD,MAAOnI,EACP,QAASA,EAAa,SACxB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAkC,IAAM,CAC1C,MAAMA,CAAkB,CACtB,aAAc,CACZ,KAAK,QAAUkJ,EAAO,IAAI,EAC1B,KAAK,oBAAsBA,EAAO,IAAI,EACtC,KAAK,kBAAoBA,EAAO,EAAK,EACrC,KAAK,mBAAqBA,EAAO,EAAK,EACtC,KAAK,4BAA8BA,EAAO,EAAK,EAC/C,KAAK,kBAAoBpB,EAAO2B,EAAiB,CACnD,CACA,UAAW,CACT,KAAK,WAAW,CAClB,CAIA,YAAa,CACX,IAAMmD,EAAa,KAAK,kBAAkB,WAAW,EACjDA,GAAY,SACd,KAAK,OAASA,EAAW,OACzB,KAAK,mBAAmB,IAAI,KAAK,OAAO,kBAAkB,EAC1D,KAAK,kBAAkB,IAAI,KAAK,OAAO,iBAAiB,EACxD,KAAK,4BAA4B,IAAI,KAAK,OAAO,2BAA2B,EACxE,KAAK,4BAA4B,EACnC,KAAK,QAAQ,IAAI,KAAK,OAAO,oBAAoB,EACxC,KAAK,oBACd,KAAK,oBAAoB,IAAI,KAAK,OAAO,mBAAmB,EAC5D,KAAK,QAAQ,IAAI,KAAK,OAAO,qBAAqB,GAGxD,CACA,IAAI,2BAA4B,CAC9B,OAAO,KAAK,kBAAkB,WAAW,EAAE,yBAC7C,CACA,MAAO,CACL,KAAK,UAAO,SAAmC3E,EAAmB,CAChE,OAAO,IAAKA,GAAqBjI,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB2I,EAAkB,CAC9C,KAAM3I,EACN,UAAW,CAAC,CAAC,cAAc,CAAC,EAC5B,WAAY,GACZ,SAAU,CAAI4I,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,eAAgB,uBAAuB,EAAG,CAAC,EAAG,eAAgB,EAAG,SAAS,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,KAAM,eAAgB,SAAU,SAAU,EAAG,MAAM,EAAG,CAAC,EAAG,iBAAkB,EAAG,WAAW,CAAC,EACtO,SAAU,SAAoCte,EAAIC,EAAK,CACjDD,EAAK,GACJqB,EAAW,EAAG8B,GAA0C,EAAG,EAAG,MAAO,CAAC,EAEvEnD,EAAK,GACJwB,EAAcvB,EAAI,OAAS,EAAI,EAAE,CAExC,EACA,aAAc,CAACmgB,GAAS7B,EAAwBC,EAAW,EAC3D,OAAQ,CAAC;AAAA,CAA4iC,EACrjC,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAO9I,CACT,GAAG,EAIGC,GAAmC,0BACnCC,GAAyB,iBACzBC,GAA0B,kBAC1BC,GAA8B,sBAC9BC,GAA+B,sBAC/BC,GAA2B,mBAC3BC,GAAiC,yBACjCC,GAA4B,oBAC5BC,GAAsB,gBACxBC,IAAmD,IAAM,CAC3D,MAAMA,CAAmC,CACvC,YAAYmM,EAA0BC,EAAkB,CACtD,KAAK,yBAA2BD,EAChC,KAAK,iBAAmBC,CAC1B,CACA,UAAW,CACT,KAAK,cAAc,EACd,KAAK,+BACR,KAAK,6BAA+B,KAAK,iBAAiB,UAAUvM,GAAgCwM,GAAQ,CAC1G,GAAI,KAAK,cAAgBA,EAAM,CAC7B,IAAMC,EAAY,KAAK,aAAa,SAChCA,GAAaA,EAAU,aACrBA,EAAU,cAAgBD,EAAK,cAC5BA,EAAK,WAAW,OAInBC,EAAU,kBAAkBD,CAAI,GAHhC,KAAK,iBAAiB,EACtB,KAAK,cAAc,GAM3B,CACF,CAAC,EAEL,CACA,aAAc,CACR,KAAK,+BACP,KAAK,6BAA6B,EAClC,KAAK,6BAA+B,MAElC,KAAK,cACP,KAAK,aAAa,QAAQ,CAE9B,CAEA,eAAgB,CACd,GAAI,CAAC,KAAK,cAAgB,KAAK,QAAQ,KAAM,CAC3C,KAAK,UAAU,MAAM,EACrB,IAAME,EAAU,KAAK,yBAAyB,wBAAwB,KAAK,OAAO,IAAI,EACtF,KAAK,aAAe,KAAK,UAAU,gBAAgBA,CAAO,EAC1D,KAAK,aAAa,SAAS,YAAc,KAAK,OAAO,KACrD,KAAK,aAAa,kBAAkB,cAAc,CACpD,CACF,CAEA,kBAAmB,CACb,KAAK,eACP,KAAK,aAAa,QAAQ,EAC1B,KAAK,aAAe,KAExB,CACA,MAAO,CACL,KAAK,UAAO,SAAoDhF,EAAmB,CACjF,OAAO,IAAKA,GAAqBvH,GAAuCwM,EAAqBC,EAAwB,EAAMD,EAAuBE,EAAgB,CAAC,CACrK,CACF,CACA,MAAO,CACL,KAAK,UAAyBzE,EAAkB,CAC9C,KAAMjI,EACN,UAAW,CAAC,CAAC,gCAAgC,CAAC,EAC9C,UAAW,SAAkDpW,EAAIC,EAAK,CAIpE,GAHID,EAAK,GACJ8f,EAAYjM,GAAK,EAAGkP,EAAgB,EAErC/iB,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,UAAYggB,EAAG,MAClE,CACF,EACA,OAAQ,CACN,OAAQ,QACV,EACA,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,qBAAsB,EAAE,CAAC,EACnC,SAAU,SAAqDjgB,EAAIC,EAAK,CAClED,EAAK,GACJgC,GAAmB,EAAG,KAAM,CAAC,CAEpC,EACA,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOoU,CACT,GAAG,EAICC,IAAqC,IAAM,CAC7C,MAAMA,CAAqB,CACzB,MAAO,CACL,KAAK,UAAO,SAAsCsH,EAAmB,CACnE,OAAO,IAAKA,GAAqBtH,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBgI,EAAkB,CAC9C,KAAMhI,EACN,UAAW,CAAC,CAAC,iBAAiB,CAAC,EAC/B,OAAQ,CACN,WAAY,YACd,EACA,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,QAAQ,CAAC,EACtB,SAAU,SAAuCrW,EAAIC,EAAK,CACpDD,EAAK,GACJiE,GAAiB,EAAGb,GAAqC,EAAG,EAAG,MAAO,KAASc,EAAyB,EAEzGlE,EAAK,GACJmE,GAAWlE,EAAI,UAAU,CAEhC,EACA,aAAc,CAACmW,EAAkC,EACjD,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOC,CACT,GAAG,EAICC,IAAoC,IAAM,CAC5C,MAAMA,CAAoB,CACxB,YAAYkM,EAAkBQ,EAAgBC,EAAoBC,EAAgBpC,EAAmB,CACnG,KAAK,iBAAmB0B,EACxB,KAAK,eAAiBQ,EACtB,KAAK,mBAAqBC,EAC1B,KAAK,eAAiBC,EACtB,KAAK,kBAAoBpC,EACzB,KAAK,iBAAmB,GACxB,KAAK,MAAQ,CAAC,EACd,KAAK,SAAW,EAChB,KAAK,OAAS,GACd,KAAK,cAAgB,GACrB,KAAK,kBAAoB,GACzB,KAAK,kBAAoB,GACzB,KAAK,cAAgB,GACrB,KAAK,cAAgB,KAAK,kBAAkB,EAC5C,KAAK,iBAAiB,UAAU,yBAA0BqC,GAAc,CAClEA,IACF,KAAK,cAAgBA,EACrB,KAAK,eAAe,IAAI,yBAA0B,KAAK,UAAU,KAAK,aAAa,CAAC,EAExF,CAAC,EACD,KAAK,iBAAiB,UAAU,iBAAkBC,GAAQ,CAExD,KAAK,MAAQ,CAAC,EACd,KAAK,UAAY,IAAI,IACrB,KAAK,SAAW,IAAI,IACpB,KAAK,OAAS,GACd,KAAK,SAAW,GAChB,KAAK,iBAAmB,OACpBA,GAAQA,EAAK,MAAQA,EAAK,KAAK,WACjC,KAAK,SAAWA,EAAK,KAAK,SAC1B,KAAK,uBAAuB,EAC5B,KAAK,gBAAgBA,CAAI,EAE7B,CAAC,EACD,KAAK,iBAAiB,UAAU,oBAAqBC,GAAW,KAAK,mBAAmBA,CAAO,CAAC,EAChG,KAAK,iBAAiB,UAAUzN,GAAwB0N,GAAa,CACnE,KAAK,OAAS,GACVA,IACF,KAAK,iBAAmBA,GAE1B,KAAK,iBAAiB,EACtB,KAAK,sBAAsB,KAAK,gBAAgB,CAClD,CAAC,EACD,KAAK,iBAAiB,UAAUtN,GAA0B,IAAM,KAAK,OAAS,CAAC,KAAK,MAAM,EAC1F,KAAK,iBAAiB,UAAU,kBAAmB,IAAM,KAAK,MAAM,CAAC,EACrE,KAAK,iBAAiB,UAAUD,GAA8B,IAAM,KAAK,OAAS,EAAK,CACzF,CACA,gBAAgBwN,EAAO,CACrB,IAAMC,EAAa,KAAK,MAAM,OAC9B,GAAID,GAASC,EACX,OAEF,QAASC,EAAI,EAAGA,EAAID,EAAYC,IAAK,CACnC,IAAMC,EAAO,KAAK,MAAMD,CAAC,EACrBA,IAAMF,IACR,KAAK,SAAWA,EAChB,KAAK,YAAcG,EACnB,KAAK,iBAAmBA,EAAK,MAC7B,KAAK,iBAAiB,KAAK/N,GAAkC,KAAK,WAAW,EAIjF,CACA,IAAMgO,GAAkBJ,EAAQ,GAAKC,EACjCI,GAAiBL,EAAQ,GAAKC,EAClCI,EAAgBA,EAAgB,EAAIJ,EAAa,EAAII,EACrD,KAAK,cAAgB,KAAK,MAAMD,CAAc,EAAE,MAChD,KAAK,kBAAoB,KAAK,MAAMC,CAAa,EAAE,KACrD,CACA,cAAe,CACb,KAAK,UAAY,KAAK,SAAW,GAAK,KAAK,MAAM,OACjD,KAAK,gBAAgB,KAAK,QAAQ,CACpC,CACA,kBAAmB,CACjB,KAAK,UAAY,KAAK,SAAW,GAAK,KAAK,MAAM,OACjD,KAAK,SAAW,KAAK,SAAW,EAAI,KAAK,MAAM,OAAS,EAAI,KAAK,SACjE,KAAK,gBAAgB,KAAK,QAAQ,CACpC,CACA,OAAQ,CACN,KAAK,OAAS,GACd,KAAK,iBAAiB,KAAK/N,EAAuB,CACpD,CACA,wBAAyB,CACvB,GAAI,KAAK,UACP,QAAWgO,KAAe,KAAK,SAC7B,GAAI,OAAO,UAAU,eAAe,KAAK,KAAK,SAAUA,CAAW,EAAG,CACpE,IAAMC,EAAmB,KAAK,SAASD,CAAW,EAClD,QAAWE,KAAgBD,EACzB,GAAI,OAAO,UAAU,eAAe,KAAKA,EAAkBC,CAAY,EAAG,CACxE,IAAMC,EAAiBF,EAAiBC,CAAY,EAC9CE,EAAiB,KAAK,SAAS,IAAID,CAAc,EACvD,GAAIC,EACFA,EAAe,KAAKJ,CAAW,MAC1B,CACL,IAAMK,EAAoB,CAAC,EAC3BA,EAAkB,KAAKL,CAAW,EAClC,KAAK,SAAS,IAAIG,EAAgBE,CAAiB,CACrD,CACF,CAEJ,EAGN,CACA,gBAAgBd,EAAM,CACpBA,EAAK,aAAa,QAAQM,GAAQ,CAChCA,EAAK,WAAW,QAAQhB,GAAa,CACnC,IAAMyB,EAAiB,KAAK,eAAe,OAAOC,GAAMA,EAAG,GAAG,YAAY,IAAM1B,EAAU,KAAK,YAAY,CAAC,IAAI,CAAC,EAC7GyB,IACFzB,EAAU,KAAOyB,EAAe,KAEpC,CAAC,EACD,KAAK,MAAM,KAAKT,CAAI,EACpB,KAAK,gBAAgB,CAAC,CACxB,CAAC,CACH,CACA,mBAAmBL,EAAS,CAC1B,IAAMgB,EAAoB,CAAC,EACvB,KAAK,WACP,KAAK,SAAS,QAAQ,CAACJ,EAAgBK,EAAUC,IAAQ,CACvD,IAAMC,EAAQF,EAAS,MAAM,GAAG,EAAE,OAAO,CAACG,EAAMH,IAAa,CAC3D,GAAIG,GAAQ,OAAOA,GAAS,UAAYH,KAAYG,EAClD,OAAOA,EAAKH,CAAQ,CAExB,EAAGjB,CAAO,EAEV,GAAImB,GAAS,QACP,CAAC,KAAK,kBAAoB,CAAC,KAAK,YAClC,KAAK,iBAAmB,KAAK,cAAcF,CAAQ,GAEjDL,GAAgB,CAClBI,EAAkB,KAAKC,CAAQ,EAC/B,QAAW5B,KAAauB,EAAgB,CACtC,IAAMS,EAAQ,KAAK,UAAU,IAAIhC,CAAS,EAC1C,GAAIgC,EACFA,EAAM,IAAIJ,EAAUE,CAAK,MACpB,CACL,IAAMG,EAAW,IAAI,IACrBA,EAAS,IAAIL,EAAUE,CAAK,EAC5B,KAAK,UAAU,IAAI9B,EAAWiC,CAAQ,CACxC,CACF,CACF,CAEJ,CAAC,EAGG,KAAK,SACP,KAAK,iBAAiB,EACtB,KAAK,UAAY,IAAI,KAGnB,KAAK,8BAA8BN,CAAiB,IACjD,KAAK,QACR,KAAK,iBAAiB,KAAKvO,EAA2B,EAEpD,KAAK,kBACP,KAAK,sBAAsB,KAAK,gBAAgB,IAIlD,KAAK,WACP,KAAK,SAAW,CAAC,KAAK,SAE1B,CACA,cAAcwO,EAAU,CACtB,GAAI,KAAK,OAAS,KAAK,SACrB,QAAWZ,KAAQ,KAAK,MACtB,KAAK,SAAS,QAAQ,CAACO,EAAgBW,EAAiBL,IAAQ,CAC9D,GAAID,IAAaM,EACf,OAAOlB,EAAK,SAGhB,CAAC,EAGL,OAAOY,CACT,CACA,kBAAmB,CACjB,IAAMO,EAAY,CAAC,EACnB,KAAK,UAAU,QAAQ,CAACC,EAAgBjB,EAAakB,IAAS,CAC5D,GAAID,GAAkBjB,EAAa,CACjC,IAAMa,EAAQ,CAAC,EACfI,EAAe,QAAQ,CAACE,EAAeC,EAAcC,IAAS,CAC5D,GAAIF,GAAiBC,EAAc,CACjC,IAAME,EAAO,CACX,IAAKF,EACL,MAAOD,CACT,EACAN,EAAM,KAAKS,CAAI,CACjB,CACF,CAAC,EACDN,EAAU,KAAK,CACb,YAAAhB,EACA,WAAYa,CACd,CAAC,CACH,CACF,CAAC,EACDG,EAAU,QAAQM,GAAQ,KAAK,iBAAiB,KAAKlP,GAAgCkP,CAAI,CAAC,CAC5F,CACA,sBAAsB7B,EAAW,CAC/B,IAAME,EAAa,KAAK,MAAM,OAC9B,GAAIA,GAAc,EAChB,OAEF,IAAI4B,EAAqB,EACzB,QAAS3B,EAAI,EAAGA,EAAID,EAAYC,IAE9B,GADa,KAAK,MAAMA,CAAC,EAChB,YAAcH,EAAW,CAChC8B,EAAqB3B,EACrB,KACF,CAEF,KAAK,SAAW2B,EAChB,KAAK,gBAAgBA,CAAkB,CACzC,CAEA,8BAA8Bf,EAAmB,CAC/C,IAAIgB,EAAc,GAClB,GAAI,CAAChB,GAAqB,CAAC,KAAK,UAAY,CAAC,KAAK,SAChD,MAAO,GAGT,IAAMiB,EAAmB,CAAC,EAC1B,QAAWH,KAAQd,EACjB,QAAWkB,KAAa,KAAK,SAC3B,GAAI,OAAO,UAAU,eAAe,KAAK,KAAK,SAAUA,CAAS,EAAG,CAClE,IAAMC,EAAU,KAAK,SAASD,CAAS,EACvC,QAAWxB,KAAgByB,EAErBA,EAAQzB,CAAY,IAAMoB,GAC5BG,EAAiB,KAAK,CACpB,UAAAC,EACA,SAAUC,CACZ,CAAC,CAGP,CAKJ,QAAWD,KAAaD,EACtB,GAAI,OAAO,UAAU,eAAe,KAAKA,EAAkBC,CAAS,EAAG,CAGrE,IAAIE,EAAiB,GACfD,EAAUF,EAAiBC,CAAS,EACpCG,EAAmB,KAAK,UAAU,IAAIF,EAAQ,SAAS,EAC7D,GAAIE,GACF,QAAW3B,KAAgByB,EAAQ,SACjC,GAAI,OAAO,UAAU,eAAe,KAAKA,EAAQ,SAAUzB,CAAY,EAAG,CACxE,IAAMC,EAAiBwB,EAAQ,SAASzB,CAAY,EAC9B2B,EAAiB,IAAI1B,CAAc,IAEvDyB,EAAiB,GAErB,OAGFA,EAAiB,GAEfA,IAAmB,KAGrBJ,EAAc,GAElB,CAEF,OAAOA,CACT,CACA,mBAAoB,CAElB,OADc,KAAK,mBAAmB,mBAAmB,KAAK,cAAc,GAC9D,UAAU,KAAK,iBAC/B,CACA,MAAO,CACL,KAAK,UAAO,SAAqC1H,EAAmB,CAClE,OAAO,IAAKA,GAAqBrH,GAAwBsM,EAAuBE,EAAgB,EAAMF,EAAqB+C,EAAc,EAAM/C,EAAuBgD,EAAkB,EAAMhD,EAAuBiD,EAAc,EAAMjD,EAAuBzD,EAAiB,CAAC,CACpR,CACF,CACA,MAAO,CACL,KAAK,UAAyBd,EAAkB,CAC9C,KAAM/H,EACN,UAAW,CAAC,CAAC,eAAe,CAAC,EAC7B,MAAO,GACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,aAAc,EAAG,SAAS,EAAG,CAAC,EAAG,SAAS,EAAG,CAAC,EAAG,OAAO,EAAG,CAAC,kBAAmB,GAAI,EAAG,YAAY,EAAG,CAAC,EAAG,mBAAoB,aAAc,EAAG,OAAO,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,kBAAmB,GAAI,EAAG,eAAe,EAAG,CAAC,EAAG,OAAQ,EAAG,SAAS,EAAG,CAAC,kBAAmB,GAAI,EAAG,aAAa,EAAG,CAAC,EAAG,SAAU,YAAY,EAAG,CAAC,EAAG,UAAU,EAAG,CAAC,EAAG,gBAAiB,oBAAqB,EAAG,OAAO,EAAG,CAAC,EAAG,cAAc,EAAG,CAAC,EAAG,YAAY,EAAG,CAAC,EAAG,YAAa,qBAAsB,EAAG,OAAO,EAAG,CAAC,EAAG,aAAc,EAAG,OAAO,EAAG,CAAC,EAAG,YAAa,EAAG,SAAS,CAAC,EACniB,SAAU,SAAsCtW,EAAIC,EAAK,CACnDD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACjEC,EAAO,CAAC,EACRE,EAAa,EACbH,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAA6D,CAClF,OAAOd,EAAI,MAAM,CACnB,CAAC,EACEI,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACvC+D,GAAiB,EAAGX,GAAoC,EAAG,EAAG,MAAO,EAAMY,EAAyB,EACpG7D,EAAa,EAAE,EACfgB,EAAW,GAAI0C,GAA6C,EAAG,EAAG,MAAO,CAAC,EAC1E1D,EAAa,EAAE,GAEhBL,EAAK,IACJ8B,EAAW,UAAc2B,GAAgB,EAAGqQ,GAAK7T,EAAI,OAAQA,EAAI,kBAAkB,UAAU,CAAC,CAAC,EAC/FO,EAAU,CAAC,EACXkC,EAAmB,IAAKzC,EAAI,iBAAkB,GAAG,EACjDO,EAAU,CAAC,EACX2D,GAAWlE,EAAI,KAAK,EACpBO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,MAAM,OAAS,EAAI,GAAK,EAAE,EAEnD,EACA,aAAc,CAAImgB,GAAcI,GAAuBnK,EAAoB,EAC3E,OAAQ,CAAC;AAAA,CAAi/H,EAC1/H,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOC,CACT,GAAG,EAICC,IAAwC,IAAM,CAChD,MAAMA,CAAwB,CAC5B,YAAYuK,EAAmB,CAC7B,KAAK,kBAAoBA,EACzB,KAAK,aAAe,CAAC,CACvB,CAMA,iBAAiBgF,EAAK,CACpB,IAAMC,EAAc,KAAK,aAAa,KAAKC,GAAQA,EAAK,MAAQF,CAAG,EACnEC,EAAY,OACd,CAMA,oBAAoBD,EAAK,CACvB,IAAMvC,EAAQ,KAAK,aAAa,UAAUyC,GAAQA,EAAK,MAAQF,CAAG,EAClE,KAAK,aAAa,OAAOvC,EAAO,CAAC,CACnC,CACA,MAAO,CACL,KAAK,UAAO,SAAyC5F,EAAmB,CACtE,OAAO,IAAKA,GAAqBpH,GAA4BqM,EAAuBzD,EAAiB,CAAC,CACxG,CACF,CACA,MAAO,CACL,KAAK,UAAyBd,EAAkB,CAC9C,KAAM9H,EACN,UAAW,CAAC,CAAC,8BAA8B,CAAC,EAC5C,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,4BAA6B,EAAG,SAAS,EAAG,CAAC,EAAG,MAAM,CAAC,EACpE,SAAU,SAA0CvW,EAAIC,EAAK,CACvDD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1B+D,GAAiB,EAAGG,GAAwC,EAAG,EAAG,2BAA4B,EAAMF,EAAyB,EAC7H7D,EAAa,GAEdL,EAAK,IACJ8B,EAAW,UAAc2B,GAAgB,EAAGsQ,GAAK9T,EAAI,QAASA,EAAI,kBAAkB,UAAU,CAAC,CAAC,EAChGO,EAAU,EACV2D,GAAWlE,EAAI,YAAY,EAElC,EACA,aAAc,CAAImgB,GAAc6F,EAA+B,EAC/D,OAAQ,CAAC;AAAA,CAAikB,EAC1kB,cAAe,EACf,KAAM,CACJ,UAAW,CAACC,GAAQ,kBAAmB,CAACC,GAAW,SAAU,CAACC,GAAM,CAClE,QAAS,EACT,UAAW,mBACb,CAAC,EAAGC,GAAQ,WAAYD,GAAM,CAC5B,QAAS,EACT,UAAW,eACb,CAAC,CAAC,CAAC,CAAC,EAAGD,GAAW,SAAU,CAACE,GAAQ,WAAYD,GAAM,CACrD,QAAS,EACT,UAAW,oBACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CACT,CACF,CAAC,CACH,CACF,CACA,OAAO7P,CACT,GAAG,EAICC,IAA4C,IAAM,CACpD,MAAMA,CAA4B,CAChC,IAAI,sBAAuB,CACzB,MAAO,CAAC,OAAQ,aAAa,CAC/B,CACA,aAAc,CACZ,KAAK,GAAK,gBACV,KAAK,gBAAkB,GACvB,KAAK,aAAe,GACpB,KAAK,SAAW,IAAI8P,GAAgB,EAAK,EACzC,KAAK,gBAAkB9I,EAAOC,EAAe,EAC7C,KAAK,YAAcD,EAAO2E,EAAW,EACrC,KAAK,WAAa3E,EAAO+I,EAAU,EACnC,KAAK,gBAAkB/I,EAAOgJ,EAAe,EAC7C,KAAK,wBAA0BhJ,EAAOiJ,EAAuB,EAC7D,KAAK,oBAAsBjJ,EAAOkJ,EAAmB,EACrD,KAAK,kBAAoBlJ,EAAO2B,EAAiB,EACjD,KAAK,WAAa3B,EAAO6E,EAAU,EACnC,KAAK,gBAAkB,GACvB,KAAK,UAAY,CAAC,EAClB,KAAK,wBAA0B,CAAC,WAAY,YAAa,oBAAoB,KAAK,WAAW,YAAY,EAAE,EAAE,KAAK,GAAG,EACrH,KAAK,gBAAgB,gBAAgB,EAAE,KAAKsE,GAAsB,CAC5DA,GAAoB,OAAS,GAC/B,KAAK,SAAS,KAAK,EAAI,CAE3B,CAAC,EAED,KAAK,wBAAwB,aAAa,KAAKC,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUC,GAAQ,CACpG,KAAK,gBAAkBA,CACzB,CAAC,CACH,CAIA,SAAU,CACR,OAAO,IAAIC,GAAWC,GAAO,CAC3B,KAAK,wBAAwB,WAAW,KAAKH,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAgBI,GAAatJ,EAAA,sBAC7G,MAAM,KAAK,cAAcsJ,CAAS,EAAE,KAAKC,GAAS,CAChD,KAAK,UAAYA,EACjB,KAAK,wBAAwB,iBAAiB,KAAKL,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUM,GAAW,CAC3G,KAAK,cAAcA,CAAO,EAC1BH,EAAI,KAAK,KAAK,SAAS,CACzB,CAAC,CACH,CAAC,CACH,EAAC,CACH,CAAC,CACH,CAIA,YAAa,CACX,OAAO,KAAK,YAAY,IAAI,gDAAgD,CAC9E,CAIA,0BAA2B,CACzB,OAAO,KAAK,YAAY,IAAI,0DAA0D,CACxF,CAIA,QAAQf,EAAM,CACZ,GAAIA,EAAM,CAER,IAAMkB,EAAU,KAAK,UAAU,KAAKA,GAAWA,EAAQ,KAAOlB,EAAK,EAAE,EAEjEkB,IACFA,EAAQ,QAAU,IAAI,MAGxB,KAAK,sBAAsB,CAC7B,CACF,CAIA,UAAUlB,EAAM,CACd,GAAIA,EAAM,CAER,IAAMkB,EAAU,KAAK,UAAU,KAAKA,GAAWA,EAAQ,KAAOlB,EAAK,EAAE,EAEjEkB,IACFA,EAAQ,QAAU,IAAI,KAAK,IAAI,GAGjC,KAAK,sBAAsB,CAC7B,CACF,CAIA,YAAYlB,EAAM,CAGhB,GAAI,KAAK,gBAAiB,CACxB,KAAK,gBAAgB,KAAK,IAAImB,GAAY,KAAK,YAAY,IAAI,sDAAsD,EAAG,KAAMC,GAAY,IAAI,CAAC,EAC/I,MACF,CAEA,KAAK,wBAAwB,iBAAiBpB,EAAK,EAAE,EAErD,IAAIqB,EAAwB,KAAK,YAAY,IAAI,kDAAkD,EACnGA,EAAwBA,EAAsB,QAAQ,MAAOrB,EAAK,IAAI,EACtE,KAAK,gBAAgB,KAAK,IAAImB,GAAYE,EAAuB,KAAMD,GAAY,IAAI,CAAC,CAC1F,CAIA,wBAAyB,CACvB,IAAME,EAAkB,KAAK,WAAW,KAAKJ,GAAWA,EAAQ,UAAU,EAC1E,GAAII,GAAiB,KACnB,OAAOA,EAAgB,IAG3B,CAIA,0BAA2B,CACzB,IAAMA,EAAkB,KAAK,WAAW,KAAKJ,GAAWA,EAAQ,UAAU,EAC1E,GAAII,GAAiB,YACnB,OAAOA,EAAgB,WAG3B,CAIA,6BAA6BtB,EAAM,CACjC,OAAOA,EAAK,IACd,CAIA,gCAAgCA,EAAM,CACpC,OAAOA,EAAK,WACd,CAOM,cAAcgB,EAAW,QAAAtJ,EAAA,sBAC7B,IAAM6J,EAAkB,MAAM,KAAK,mBAAmB,EAChDC,EAAgB,CAAC,EACvB,OAAAR,GAAW,IAAIE,GAAW,CACxB,IAAMO,EAAUF,EAAgB,KAAKvF,GAAKA,EAAE,KAAOkF,EAAQ,EAAE,GAAG,aAChEM,EAAc,KAAK,CACjB,GAAIN,EAAQ,GACZ,IAAKA,EAAQ,KAAOA,EAAQ,GAC5B,KAAMA,EAAQ,KACd,YAAaA,EAAQ,cAAgBA,EAAQ,YAC7C,KAAMA,EAAQ,KACd,QAASO,EAAU,IAAI,KAAKA,CAAO,EAAI,IAAI,KAAK,IAAI,EACpD,WAAY,EACd,CAAC,CACH,CAAC,EACMD,CACT,GAMA,cAAcN,EAAS,CACrB,KAAK,UAAU,QAAQQ,GAAK,CAC1BA,EAAE,WAAaA,EAAE,KAAOR,EAAQ,EAClC,CAAC,CACH,CAMM,oBAAqB,QAAAxJ,EAAA,sBACzB,GAAI,CAAC,KAAK,gBACR,GAAI,CACF,IAAMiK,EAAe,MAAM,KAAK,oBAAoB,sBAAsB,KAAK,wBAAyB,KAAK,kBAAkB,WAAW,EAAE,WAAW,EACvJ,KAAK,gBAAkB,CAAC,EACpBA,GAAc,QAChB,KAAK,gBAAkB,KAAK,MAAMA,EAAa,KAAK,EAExD,MAAgB,CACd,KAAK,gBAAkB,CAAC,CAC1B,CAEF,OAAO,KAAK,eACd,GAIA,uBAAwB,CACtB,IAAMnD,EAAQ,KAAK,UAAU,OAAOoD,GAAWA,EAAQ,QAAQ,QAAQ,IAAM,IAAI,KAAK,IAAI,EAAE,QAAQ,CAAC,EAAE,IAAIA,IAAY,CACrH,GAAIA,EAAQ,GACZ,aAAcA,EAAQ,OACxB,EAAE,EACIC,EAAoB,CACxB,WAAY,KAAK,wBACjB,MAAO,KAAK,UAAUrD,CAAK,EAC3B,SAAU,KAAK,kBAAkB,WAAW,EAAE,WAChD,EACA,KAAK,oBAAoB,sBAAsBqD,CAAiB,CAClE,CACA,MAAO,CACL,KAAK,UAAO,SAA6ClK,EAAmB,CAC1E,OAAO,IAAKA,GAAqBnH,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BoH,EAAmB,CAChD,MAAOpH,EACP,QAASA,EAA4B,SACvC,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA6C,IAAM,CACrD,MAAMA,CAA6B,CACjC,aAAc,CACZ,KAAK,MAAQ,IAAI6P,GAAgB,MAAS,EAC1C,KAAK,0BAA4B9I,EAAOjI,EAAyB,EACjE,KAAK,WAAaiI,EAAOsK,EAAU,EACnC,KAAK,WAAatK,EAAO6E,EAAU,CACrC,CAMM,SAAU,QAAA3E,EAAA,sBAEd,IAAMqK,GADe,MAAMnH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,IAC7C,2BAA2B,uBACxE,GAAI,CAACmH,EACH,MAAO,CAAC,EAEV,IAAMC,EAAM,KAAK,iCAAiCD,CAAsB,EAClEE,EAAS,MAAMrH,GAAe,KAAK,WAAW,IAAIoH,CAAG,CAAC,EACtDE,EAAgB,CAAC,EACvB,OAAAD,GAAQ,QAAQE,GAAoB,CAClC,IAAMC,EAAe,CACnB,GAAID,EAAiB,eACrB,IAAKA,EAAiB,kBACtB,KAAMA,EAAiB,wBACvB,YAAaA,EAAiB,kBAC9B,KAAM,KAEN,WAAYA,EAAiB,mBAAmB,YAAY,IAAM,KAAK,WAAW,cAAc,YAAY,EAC5G,eAAgB,CACd,WAAYA,EAAiB,WAC7B,UAAWA,EAAiB,SAC9B,CACF,EACAD,EAAc,KAAKE,CAAY,CACjC,CAAC,EACMF,CACT,GAOA,iCAAiCF,EAAK,CACpC,OAAAA,EAAMA,EAAI,QAAQ,eAAgB,MAAM,EACxCA,EAAMA,EAAI,QAAQ,gBAAiB,GAAG,EACtCA,EAAMA,EAAI,QAAQ,iBAAkB,EAAE,EAC/BA,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAA8CrK,EAAmB,CAC3E,OAAO,IAAKA,GAAqBlH,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BmH,EAAmB,CAChD,MAAOnH,EACP,QAASA,EAA6B,UACtC,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAA+B,IAAImH,GAAe,6BAA8B,CACpF,WAAY,OACZ,QAAS,IAAM,IAAIpH,EACrB,CAAC,EACGE,IAAgD,IAAM,CACxD,MAAMA,CAAgC,CACpC,IAAI,sBAAuB,CACzB,MAAO,CAAC,OAAQ,cAAe,WAAW,CAC5C,CACA,aAAc,CACZ,KAAK,GAAK,oBACV,KAAK,gBAAkB,GACvB,KAAK,aAAe,GACpB,KAAK,SAAW,IAAI2P,GAAgB,EAAK,EACzC,KAAK,0BAA4B9I,EAAOjI,EAAyB,EACjE,KAAK,YAAciI,EAAO2E,EAAW,EACrC,KAAK,cAAgB3E,EAAO4E,EAAa,EACzC,KAAK,WAAa5E,EAAO+I,EAAU,EACnC,KAAK,kBAAoB/I,EAAO2B,EAAiB,EACjD,KAAK,oBAAsB3B,EAAOkJ,EAAmB,EACrD,KAAK,qBAAuBlJ,EAAO9G,EAA4B,EAC/D,KAAK,2BAA6B,CAAC,WAAY,eAAe,EAAE,KAAK,GAAG,EACxE,KAAK,0BAA0B,gBAAgB,EAAE,KAAKkQ,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUyB,GAAgB,CACnH,GAAM,CACJ,uBAAAN,CACF,EAAIM,EAAa,2BACbN,GAAwB,OAAS,GACnC,KAAK,SAAS,KAAK,EAAI,CAE3B,CAAC,CACH,CAIA,SAAU,CACR,GAAI,KAAK,cACP,OAAOO,GAAG,KAAK,aAAa,EACvB,CACL,IAAMC,EAAsB,KAAK,uBAAuB,EAClDC,EAAsB,KAAK,qBAAqB,QAAQ,EAC9D,OAAOC,GAAS,CAACD,EAAqBD,CAAmB,CAAC,EAAE,KAAKrK,GAAK,CAAC,EAAGqG,GAAI,CAAC,CAACmE,EAAkBH,CAAmB,KACnHG,GAAkB,QAAQN,GAAgB,CACxC,IAAMX,EAAUc,EAAoB,KAAKvG,GAAKA,EAAE,KAAOoG,EAAa,EAAE,GAAG,aACzEA,EAAa,QAAUX,EAAU,IAAI,KAAKA,CAAO,EAAI,IAAI,KAAK,IAAI,CACpE,CAAC,EACD,KAAK,cAAgBiB,EACdA,EACR,CAAC,CACJ,CACF,CAIA,YAAa,CACX,OAAO,KAAK,YAAY,IAAI,oDAAoD,CAClF,CAIA,0BAA2B,CAEzB,OAD8B,KAAK,cAAc,OAAON,GAAgBA,EAAa,gBAAiB,WAAc,MAAM,GAC/F,OAClB,KAAK,YAAY,IAAI,wEAAwE,EAE/F,KAAK,YAAY,IAAI,+DAA+D,CAC7F,CAIA,QAAQpC,EAAM,CACZ,GAAIA,EAAM,CAER,IAAM2C,EAAmB,KAAK,cAAc,KAAK3G,GAAKA,EAAE,KAAOgE,EAAK,EAAE,EAElE2C,IACFA,EAAiB,QAAU,IAAI,MAGjC,KAAK,0BAA0B,CACjC,CACF,CAIA,UAAU3C,EAAM,CACd,GAAIA,EAAM,CAER,IAAM2C,EAAmB,KAAK,cAAc,KAAK3G,GAAKA,EAAE,KAAOgE,EAAK,EAAE,EAElE2C,IACFA,EAAiB,QAAU,IAAI,KAAK,IAAI,GAG1C,KAAK,0BAA0B,CACjC,CACF,CAIA,YAAY3C,EAAM,CAChB,GAAIA,EAAM,CACR,IAAI7H,EAAM,KAAK,2BAA2B,CAAC,KAAK,cAAc,OAAO,SAAS,OAAQ6H,EAAK,eAAe,WAAeA,EAAK,GAAG,CAAC,EAElI7H,GAAO,IACP,KAAK,cAAc,OAAO,SAAS,OAAOA,CAAG,CAC/C,CACF,CAIA,wBAAyB,CAEvB,OAD4B,KAAK,eAAe,KAAK6D,GAAKA,EAAE,UAAU,GAC1C,MAAQ,EACtC,CAIA,6BAA6BgE,EAAM,CACjC,OAAOA,EAAK,IACd,CAIA,gCAAgCA,EAAM,CACpC,IAAM4C,EAAoB5C,EAAK,eAAe,WAAc,OAC5D,OAAK4C,EAIE,GAAGA,CAAiB,IAAI,KAAK,YAAY,IAAI,gDAAgD,CAAC,GAF5F5C,EAAK,GAGhB,CAIA,2BAA4B,CAC1B,IAAMxB,EAAQ,KAAK,cAAc,OAAOoD,GAAWA,EAAQ,QAAQ,QAAQ,IAAM,IAAI,KAAK,IAAI,EAAE,QAAQ,CAAC,EAAE,IAAIA,IAAY,CACzH,GAAIA,EAAQ,GACZ,aAAcA,EAAQ,OACxB,EAAE,EACIC,EAAoB,CACxB,WAAY,KAAK,2BACjB,MAAO,KAAK,UAAUrD,CAAK,EAC3B,SAAU,KAAK,kBAAkB,WAAW,EAAE,WAChD,EACA,KAAK,oBAAoB,sBAAsBqD,CAAiB,CAClE,CAMM,wBAAyB,QAAAnK,EAAA,sBAC7B,GAAI,CACF,IAAMiK,EAAe,MAAM,KAAK,oBAAoB,sBAAsB,KAAK,2BAA4B,KAAK,kBAAkB,WAAW,EAAE,WAAW,EACtJY,EAAsB,CAAC,EAC3B,OAAIZ,GAAc,QAChBY,EAAsB,KAAK,MAAMZ,EAAa,KAAK,GAE9CY,CACT,MAAgB,CACd,MAAO,CAAC,CACV,CACF,GAOA,2BAA2BM,EAAU,CACnC,IAAIC,EAAM,GACV,OAAAD,EAAS,QAAQ7G,GAAK,CAChBA,EAAE,WAAW,MAAM,GAAKA,EAAE,WAAW,GAAG,EAC1C8G,GAAO9G,EAEP8G,GAAO,IAAM9G,CAEjB,CAAC,EACM8G,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAAiDnL,EAAmB,CAC9E,OAAO,IAAKA,GAAqBhH,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BiH,EAAmB,CAChD,MAAOjH,EACP,QAASA,EAAgC,SAC3C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA+C,IAAM,CACvD,MAAMA,CAA+B,CACnC,aAAc,CACZ,KAAK,aAAegI,EAAO,CAAC,CAAC,EAC7B,KAAK,cAAgBmK,GAAa,KAAK,YAAY,EACnD,KAAK,gCAAkCvL,EAAO7G,EAA+B,EAC7E,KAAK,4BAA8B6G,EAAOhH,EAA2B,EACrE,KAAK,0BAA4BgH,EAAOjI,EAAyB,EACjE,KAAK,gBAAgB,CACvB,CAEA,SAAU,CACR,OAAO,KAAK,aACd,CAEA,wBAAyB,CACvB,OAAO,KAAK,4BAA4B,uBAAuB,GAAK,KAAK,gCAAgC,uBAAuB,CAClI,CAEA,0BAA2B,CACzB,OAAO,KAAK,4BAA4B,yBAAyB,GAAK,EACxE,CACM,iBAAkB,QAAAmI,EAAA,sBACtB,IAAM2K,EAAe,MAAMzH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EACtFyH,EAAa,2BAA2B,wBAAwB,OAAS,GAC3E,KAAK,aAAa,EAAE,KAAK,KAAK,+BAA+B,EAE3DA,EAAa,2BAA2B,oBAAoB,OAAS,GACvE,KAAK,aAAa,EAAE,KAAK,KAAK,2BAA2B,CAE7D,GACA,MAAO,CACL,KAAK,UAAO,SAAgD1K,EAAmB,CAC7E,OAAO,IAAKA,GAAqB/G,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BgH,EAAmB,CAChD,MAAOhH,EACP,QAASA,EAA+B,SAC1C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAA0B,IAAIgH,GAAe,wBAAyB,CAC1E,WAAY,OACZ,QAAS,IAAM,CAOb,IAAMmL,EAAWxL,EAAOyL,EAAQ,EAKhC,OAJuCA,GAAS,OAAO,CACrD,UAAW,CAACrS,GAAgCD,GAAiCH,EAA2B,EACxG,OAAQwS,CACV,CAAC,EAAE,IAAIpS,EAA8B,CAEvC,CACF,CAAC,EACGE,GAA+B,SAAUA,EAAiB,CAC5D,OAAAA,EAAgB,cAAmB,iBACnCA,EAAgB,kBAAuB,qBACvCA,EAAgB,aAAkB,gBAClCA,EAAgB,OAAY,SAC5BA,EAAgB,UAAe,YAC/BA,EAAgB,OAAY,SAC5BA,EAAgB,KAAU,OACnBA,CACT,EAAEA,IAAmB,CAAC,CAAC,EACjBC,GAAN,KAAqB,CACnB,YAAYmS,EAAgB,CAE1B,KAAK,eAAiB,CAAC,EAEvB,KAAK,UAAY,CAAC,EACdA,GACF,OAAO,OAAO,KAAMA,CAAc,CAEtC,CACF,EAgBIlS,GAAiC,SAAUA,EAAmB,CAEhE,OAAAA,EAAkBA,EAAkB,YAAiB,CAAC,EAAI,cAE1DA,EAAkBA,EAAkB,KAAU,CAAC,EAAI,OAEnDA,EAAkBA,EAAkB,WAAgB,CAAC,EAAI,aAEzDA,EAAkBA,EAAkB,OAAY,CAAC,EAAI,SAErDA,EAAkBA,EAAkB,YAAiB,CAAC,EAAI,cACnDA,CACT,EAAEA,IAAqB,CAAC,CAAC,EACrBC,IAA+B,IAAM,CACvC,MAAMA,CAAe,CACnB,aAAc,CACZ,KAAK,aAAe2H,EAAO5H,GAAkB,UAAU,EACvD,KAAK,eAAiB4H,EAAO,IAAI,EACjC,KAAK,eAAiBA,EAAO,IAAI,EAIjC,KAAK,kCAAoC,IAAIuK,GAC7C,KAAK,eAAiBvK,EAAO,IAAI,EACjC,KAAK,yBAA2B,IAAI0H,GAAgB,EAAK,EACzD,KAAK,OAAS9I,EAAO4L,EAAM,EAC3B,KAAK,iBAAmB5L,EAAOsF,EAAgB,EAC/C,KAAK,mBAAqBtF,EAAOoI,EAAkB,EACnD,KAAK,WAAapI,EAAO6E,EAAU,EACnC,KAAK,mBAAqB7E,EAAO6L,EAAkB,EACnD,KAAK,eAAiB7L,EAAOqI,EAAc,EAC3C,KAAK,YAAcrI,EAAO8L,EAAW,EACrC,KAAK,WAAa9L,EAAOsK,EAAU,EACnC,KAAK,cAAgBtK,EAAO+L,EAAa,CAC3C,CAIA,IAAI,aAAc,CAElB,CAMM,mBAAmBpL,EAAK,QAAAT,EAAA,sBAE5B,GAAI,KAAK,yBAAyB,SAAS,EAEzC,OADgB,MAAMkD,GAAe,KAAK,yBAAyB,KAAK4I,EAAOC,GAAW,CAACA,CAAO,EAAGlF,GAAI,IAAM,KAAK,mBAAmBpG,CAAG,CAAC,CAAC,CAAC,EAI/I,IAAMuL,EAAW,KAAK,mBAAmB,iBAAiB,OAAK,WAAW,QAAwB,GAAM,GAAM,CAAC,iBAAiB,EAAG,KAAK,YAAc,CAAC,KAAK,WAAW,EAAI,CAAC,CAAC,EACvKC,EAAO,KAAK,eAAe,IAAID,CAAQ,EAC7C,GAAIC,EAAM,CAER,IAAMT,EAAiB,IAAInS,GAAe,KAAK,MAAM4S,CAAI,CAAC,EAC1D,YAAK,eAAe,IAAIT,CAAc,EAC/BA,CACT,KAAO,CAEL,KAAK,yBAAyB,KAAK,EAAI,EACvC,IAAMA,EAAiB,MAAM,KAAK,YAAY/K,CAAG,EACjD,YAAK,eAAe,IAAI+K,CAAc,EACtC,KAAK,eAAe,IAAIQ,EAAU,KAAK,UAAUR,CAAc,CAAC,EAChE,KAAK,yBAAyB,KAAK,EAAK,EACjCA,CACT,CACF,GAIA,oBAAqB,CACnB,IAAMU,EAAgB,KAAK,eAAe,GAAG,iBAAiB,CAAC,GAAK,MAEhE,CAAC,KAAK,OAAO,IAAI,SAASA,GAAe,UAAU,GAAKA,GAAe,aAAe,KAAOA,GAAe,aAAe,MAE7H,KAAK,iBAAiB,KAAK,oBAAqB,CAC9C,MAAO,EACT,CAAC,EACGA,GAAe,YACjB,KAAK,mBAAmB,SAAS,KAAK,WAAW,QAAS,KAAK,WAAW,aAAcA,EAAc,WAAY,CAAC,EAAGC,GAAW,QAAS,EAAK,EAC/I,KAAK,aAAa,IAAI7S,GAAkB,UAAU,EAClD,KAAK,eAAe,IAAIF,GAAgB,aAAa,EACrD,KAAK,eAAe,IAAI,IAAI,IAE5B,KAAK,mBAAmB,eAAe,KAAK,WAAW,QAAS,KAAK,WAAW,YAAY,EAC5F,KAAK,aAAa,IAAIE,GAAkB,UAAU,EAClD,KAAK,eAAe,IAAI,IAAI,EAC5B,KAAK,eAAe,IAAI,IAAI,GAGlC,CACA,2BAA2B8S,EAAS,CAClCA,EAAQ,MAAM,EACOA,EAAQ,UAAU,SAAS,iBAAiB,GAE/D,KAAK,kCAAkC,KAAK,CAEhD,CAMM,YAAY3L,EAAK,QAAAT,EAAA,sBACrB,GAAI,CAIF,OAHuB,MAAMkD,GAAe,KAAK,WAAW,IAAIzC,CAAG,EAAE,KAErE4L,GAAUb,GAAkBZ,GAAG,IAAIvR,GAAemS,CAAc,CAAC,CAAC,EAAGhL,GAAK,CAAC,CAAC,CAAC,CAE/E,OAAS8L,EAAO,CACd,WAAK,cAAc,iBAAiB,CAClC,QAAS,qCAAqC7L,CAAG,IACjD,cAAe,GACf,sBAAuB,GACvB,yBAA0B,EAC5B,CAAC,EACK6L,CACR,CACF,GACA,MAAO,CACL,KAAK,UAAO,SAAgCrM,EAAmB,CAC7D,OAAO,IAAKA,GAAqB1G,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B2G,EAAmB,CAChD,MAAO3G,EACP,QAASA,EAAe,SAC1B,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAyB,IAAI2G,GAAe,yBAA0B,CAC1E,WAAY,OACZ,QAAS,IAAM,IAAI5G,EACrB,CAAC,EAGGE,IAAqD,IAAM,CAC7D,MAAMA,CAAqC,CACzC,aAAc,CACZ,KAAK,gBAAkB,CAAC,EACxB,KAAK,gBAAkBqG,EAAOtG,EAAsB,CACtD,CACM,kBAAkB8Q,EAAK,QAAAtK,EAAA,sBAC3B,IAAMwL,EAAiB,MAAM,KAAK,gBAAgB,mBAAmBlB,CAAG,EACxE,OAAIkB,EAAe,gBAAgB,OAAS,IAC1C,KAAK,gBAAkBA,EAAe,gBAEjC,KAAK,eACd,GACA,MAAO,CACL,KAAK,UAAO,SAAsDvL,EAAmB,CACnF,OAAO,IAAKA,GAAqBxG,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0ByG,EAAmB,CAChD,MAAOzG,EACP,QAASA,EAAqC,SAChD,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAyC,IAAIyG,GAAe,gCAAiC,CACjG,WAAY,OACZ,QAAS,IAAM,IAAI1G,EACrB,CAAC,EACKE,GAAN,KAAqB,CAAC,EAClBC,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,aAAc,CACZ,KAAK,WAAa,CAAC,CACrB,CACA,IAAI,WAAY,CACd,OAAO,KAAK,UACd,CACA,iBAAiB2S,EAAU,CACzB,IAAMC,EAAW,KAAK,WAAW,OAAOC,GAAKA,EAAE,OAASF,EAAS,IAAI,EACjEC,GAAYA,EAAS,OAAS,GAChC,QAAQ,MAAM,uBAAuBA,EAAS,CAAC,EAAE,IAAI,yBAAyB,EAEhF,KAAK,WAAW,KAAKD,CAAQ,CAC/B,CACA,OAAOG,EAAY,CACjB,IAAMC,EAAU,IAAI3J,GAAc,CAAC,EACnC,KAAK,QAAU,GACf,IAAI4J,EAAiB,KAAK,UAAU,OACpC,YAAK,WAAW,QAAQH,GAAK,CAC3BA,EAAE,OAAOC,CAAU,EAAE,KAAK3H,GAAQ,CAChC6H,IACIA,IAAmB,IACrB,KAAK,QAAU,IAEjBD,EAAQ,KAAK5H,CAAI,CACnB,CAAC,CACH,CAAC,EACM4H,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAA+B1M,EAAmB,CAC5D,OAAO,IAAKA,GAAqBrG,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BsG,EAAmB,CAChD,MAAOtG,EACP,QAASA,EAAc,UACvB,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAMCC,IAA6C,IAAM,CACrD,MAAMA,UAAqCF,EAAe,CACxD,aAAc,CACZ,MAAM,EACN,KAAK,UAAY,CAAC,EAClB,KAAK,KAAOmG,EAAOsK,EAAU,EAC7B,KAAK,kBAAoBtK,EAAO+M,EAAiB,EACjD,KAAK,gBAAkB/M,EAAOgJ,EAAe,EAC7C,KAAK,cAAgBhJ,EAAOlG,EAAa,EACzC,KAAK,YAAckG,EAAO2E,EAAW,EACrC,KAAK,wBAA0B3E,EAAOgN,EAAuB,EAC7D,KAAK,0BAA4BhN,EAAOjI,EAAyB,EACjE,KAAK,KAAO,SACZ,KAAK,MAAQ,KAAK,YAAY,IAAI,2CAA2C,EAC7E,KAAK,cAAc,iBAAiB,IAAI,CAC1C,CACM,WAAY,QAAAmI,EAAA,sBAChB,GAAI,CACF,GAAI,CAAC,KAAK,IAAK,CACb,GAAM,CACJ,QAAA+M,CACF,EAAI,MAAM7J,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EACnE8J,EAAgBD,EAAQ,OAAO,IACrC,GAAI,CAACC,EACH,eAAQ,OAAO,IAAI,MAAM,sDAAsD,CAAC,EACzE,KAAK,UAEd,KAAK,IAAMA,CACb,CACA,IAAMC,EAAa,KAAK,gBAAgB,KAAK,GAAG,EAC1C1D,EAAQ,MAAMrG,GAAe,KAAK,KAAK,IAAI+J,EAAY,CAC3D,QAAS,UACX,CAAC,EAAE,KAAKpG,GAAIqG,GAAYA,EAAS,IAAI,EAAG1M,GAAK,CAAC,CAAC,CAAC,EAEhD,KAAK,UAAY+I,EAAM,IAAIjB,IACzBA,EAAK,IAAMA,EAAK,IAAI,MAAM,KAAK,EAAE,CAAC,EAC3BA,EACR,CACH,OAASgE,EAAO,CACd,KAAK,wBAAwB,UAAUA,CAAK,CAC9C,QAAE,CAEA,OAAO,KAAK,SACd,CACF,GACM,YAAYa,EAAI,QAAAnN,EAAA,sBACpB,GAAI,CACF,aAAM,KAAK,kBAAkB,OAAOmN,CAAE,EACtC,KAAK,UAAY,KAAK,UAAU,OAAO,CAAC,CACtC,WAAAC,CACF,IAAMA,IAAeD,CAAE,EAChB,KAAK,SACd,OAASb,EAAO,CACd,YAAK,gBAAgB,KAAKA,CAAK,EACxB,KAAK,SACd,CACF,GACA,OAAOI,EAAY,CACjBA,EAAaA,EAAW,YAAY,EAEpC,IAAMtB,EADQ,KAAK,UAAU,OAAOrF,GAAKA,EAAE,aAAeA,EAAE,YAAY,YAAY,EAAE,SAAS2G,CAAU,GAAK3G,EAAE,MAAM,YAAY,EAAE,UAAU,KAAK,EAAE,QAAQ,mBAAoB,EAAE,EAAE,SAAS2G,CAAU,CAAC,EACvL,IAAIzI,IACV,CACR,GAAIA,EAAE,WACN,IAAKA,EAAE,IACP,cAAe,KAAK,KACpB,eAAgB,KAAK,MACrB,MAAOA,EAAE,MACT,QAASA,EAAE,YAAcA,EAAE,YAAc,EAC3C,EAED,EACD,OAAO,QAAQ,QAAQmH,CAAG,CAC5B,CAMA,gBAAgBd,EAAK,CAEnB,IAAM+C,EAAe,IAAI,KACzBA,EAAa,SAASA,EAAa,SAAS,EAAI,CAAC,EACjD,IAAMC,EAAUD,EAAa,YAAY,EACnCE,EAAQ,IAAI,KAClBA,EAAM,QAAQA,EAAM,QAAQ,EAAI,CAAC,EACjC,IAAMC,EAAUD,EAAM,YAAY,EAElC,OADajD,EAAI,QAAQ,cAAegD,CAAO,EAAE,QAAQ,cAAeE,CAAO,EAAE,QAAQ,eAAgB,KAAK,EAAE,QAAQ,gBAAiB,GAAG,EAAE,QAAQ,iBAAkB,EAAE,CAE5K,CACA,MAAO,CACL,KAAK,UAAO,SAA8CvN,EAAmB,CAC3E,OAAO,IAAKA,GAAqBpG,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BqG,EAAmB,CAChD,MAAOrG,EACP,QAASA,EAA6B,SACxC,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAgC,IAAIqG,GAAe,wBAAyB,CAChF,WAAY,OACZ,QAAS,IAAM,IAAItG,EACrB,CAAC,EAGGE,IAAgD,IAAM,CACxD,MAAMA,CAAgC,CACpC,cAAe,CACb,MAAM,IAAI,MAAM,yBAAyB,CAC3C,CACA,MAAO,CACL,KAAK,UAAO,SAAiDkG,EAAmB,CAC9E,OAAO,IAAKA,GAAqBlG,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BmG,EAAmB,CAChD,MAAOnG,EACP,QAASA,EAAgC,SAC3C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAmC,IAAImG,GAAe,2BAA4B,CACtF,WAAY,OACZ,QAAS,IAAM,IAAIpG,EACrB,CAAC,EAGGE,IAAgD,IAAM,CACxD,MAAMA,UAAwCN,EAAe,CAC3D,aAAc,CACZ,MAAM,EACN,KAAK,WAAa,CAAC,EACnB,KAAK,gBAAkBmG,EAAOtG,EAAsB,EACpD,KAAK,eAAiBsG,EAAOlG,EAAa,EAC1C,KAAK,MAAQkG,EAAO2E,EAAW,EAC/B,KAAK,YAAc3E,EAAOsK,EAAU,EAEpC,KAAK,KAAO,OAEZ,KAAK,eAAe,iBAAiB,IAAI,CAC3C,CAQM,aAAaE,EAAKmD,EAAW,QAAAzN,EAAA,sBACjC,IAAIwL,EAAiB,MAAM,KAAK,gBAAgB,mBAAmBlB,CAAG,EACtE,OAAKkB,EAAe,WAGhBiC,IACFjC,EAAiB,MAAM,KAAK,0BAA0BiC,EAAWjC,CAAc,GAE7EA,EAAe,UAAU,OAAS,IACpC,KAAK,WAAaA,EAAe,WAE5B,KAAK,YARH,KAAK,UAShB,GAOA,OAAOkB,EAAY,CACjB,OAAO,IAAI,QAAQ5I,GAAW,CAC5B,IAAI4J,EAAe,CAAC,EAEdC,EAAiB,KAAK,SAASjB,EAAY,KAAK,WAAY,EAAE,EAChEiB,GAAkBA,EAAe,OAAS,EAC5CD,EAAe,CAAC,GAAGA,EAAc,GAAGC,CAAc,EAIlD,KAAK,WAAW,QAAQC,GAAK,CAC3B,IAAMD,EAAiB,KAAK,SAASjB,EAAYkB,EAAE,UAAWA,EAAE,OAAO,EACnED,GAAkBA,EAAe,OAAS,IAC5CD,EAAe,CAAC,GAAGA,EAAc,GAAGC,CAAc,EAEtD,CAAC,EAEH7J,EAAQ4J,CAAY,CACtB,CAAC,CACH,CAOA,0BAA0BjN,EAAK+K,EAAgB,CAC7C,OAAO,IAAI,QAAQ1H,GAAW,CAC5B,KAAK,YAAY,IAAIrD,CAAG,EAAE,KAAKD,GAAK,CAAC,CAAC,EAAE,UAAU,CAChD,KAAMqN,GAAmB,CACvBA,EAAgB,QAAQC,GAAkB,CAExC,IAAMC,EAAcvC,EAAe,UAAU,UAAUwC,GAAkBA,EAAe,KAAOF,EAAe,EAAE,EAEhH,GAAIC,IAAgB,GAClBvC,EAAe,UAAUuC,CAAW,EAAE,UAAU,KAAK,GAAGD,EAAe,SAAS,MAIhF,SAAWG,KAAgBzC,EAAe,UACxC,GAAI,KAAK,mBAAmBsC,EAAgBG,CAAY,EACtD,KAIR,CAAC,EACDnK,EAAQ0H,CAAc,CACxB,EACA,MAAO0C,GAAQpK,EAAQ0H,CAAc,CACvC,CAAC,CACH,CAAC,CACH,CAQA,mBAAmB2C,EAAYC,EAAU,CACvC,IAAMC,EAAeD,EAAS,UAAU,UAAUE,GAASA,EAAM,KAAOH,EAAW,EAAE,EAErF,GAAIE,IAAiB,GACnB,OAAAD,EAAS,UAAUC,CAAY,EAAE,UAAU,KAAK,GAAGF,EAAW,SAAS,EAChE,GAGT,QAAWI,KAAiBH,EAAS,UACnC,KAAK,mBAAmBD,EAAYI,CAAa,EAEnD,MAAO,EACT,CACA,SAAS7B,EAAYnD,EAAOiF,EAAY,CACtC9B,EAAaA,EAAW,YAAY,EAEpC,IAAItB,EADU7B,GAAO,OAAOkF,GAAMA,EAAG,KAAO,MAAQA,EAAG,SAAW,MAAQ,KAAK,MAAM,IAAIA,EAAG,OAAO,EAAE,YAAY,EAAE,UAAU,KAAK,EAAE,QAAQ,mBAAoB,EAAE,EAAE,SAAS/B,CAAU,CAAC,GACvK,IAAIzI,GAAK,CACxB,IAAMyK,EAAU,cAAc,KAAK,MAAM,IAAIF,CAAU,CAAC,gBASxD,MARU,CACR,GAAIvK,EAAE,IACN,IAAKA,EAAE,IACP,cAAe,QACf,eAAgB,QAChB,MAAO,KAAK,MAAM,IAAIA,EAAE,OAAO,EAC/B,QAAAyK,CACF,CAEF,CAAC,EACKC,EAAWpF,GAAO,OAAOkF,GAAMA,EAAG,WAAa,IAAI,EACzD,OAAIE,GAAU,OAAS,GACrBA,EAAS,QAAQf,GAAK,CACpB,GAAIA,EAAE,WAAW,OAAS,EAAG,CAE3B,IAAMgB,EAAc,CAAC,KAAK,MAAM,IAAIJ,CAAU,EAAG,KAAK,MAAM,IAAIZ,EAAE,OAAO,CAAC,EAAE,OAAO9G,IAASA,EAAK,EAC3F+H,EAAkB,KAAK,SAASnC,EAAYkB,EAAE,UAAWgB,EAAY,KAAK,GAAG,CAAC,EAChFC,IACFzD,EAAM,CAAC,GAAGA,EAAK,GAAGyD,CAAe,EAErC,CACF,CAAC,EAEIzD,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAAiDnL,EAAmB,CAC9E,OAAO,IAAKA,GAAqBhG,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BiG,EAAmB,CAChD,MAAOjG,EACP,QAASA,EAAgC,SAC3C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAoC,IAAIiG,GAAe,2BAA4B,CACvF,WAAY,OACZ,QAAS,IAAM,IAAIlG,EACrB,CAAC,EAKKE,GAAN,KAAwB,CACtB,YAAY2U,EAAc,CACpBA,GACF,OAAO,OAAO,KAAMA,CAAY,EAE7B,KAAK,KACR,KAAK,GAAK1N,GAAY,UAAU,GAE7B,KAAK,SACR,KAAK,OAAS+K,GAAW,QAE7B,CACF,EACI/R,IAAwD,IAAM,CAChE,MAAMA,CAAwC,CAC5C,aAAc,CAEZ,KAAK,SAAW,IAAIwO,GAAgB,CAAC,CAAC,EAEtC,KAAK,aAAe,IAAI6C,GAExB,KAAK,eAAiB,IAAI7C,GAAgB,EAAK,EAC/C,KAAK,WAAa,GAClB,KAAK,OAAS9I,EAAO4L,EAAM,EAC3B,KAAK,WAAa5L,EAAO+I,EAAU,EACnC,KAAK,oBAAsB/I,EAAOkJ,EAAmB,EACrD,KAAK,kBAAoBlJ,EAAO2B,EAAiB,EACjD,KAAK,WAAa3B,EAAO6E,EAAU,EACnC,KAAK,iBAAmB7E,EAAOiP,EAAgB,EAC/C,KAAK,mBAAqBjP,EAAOoI,EAAkB,EACnD,KAAK,YAAcpI,EAAO8L,EAAW,EACrC,KAAK,SAAW,KAAK,kBAAkB,WAAW,EAAE,YACpD,KAAK,WAAW,CAClB,CACA,wBAAyB,CACvB,KAAK,OAAO,OAAO,KAAKE,EAAOpL,GAASA,aAAiBsO,EAAa,EAAGlD,EAAO,IAAM,KAAK,oBAAoB,CAAC,EAAGjF,GAAInG,GAASA,CAAK,EAAGmG,GAAI,CAAC,CAC3I,kBAAAoI,CACF,IAAM,KAAK,sBAAsBA,CAAiB,CAAC,EAAGnD,EAAOoD,GAAsB,KAAK,sBAAsBA,EAAmB,QAAQ,CAAC,EAAGC,GAAwB,UAAU,EAAGjG,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUgG,GAAsB,CACrP,KAAK,aAAa,KAAK,EACvB,KAAK,+BAA+BA,CAAkB,EAC1B,KAAK,6BAA6BA,EAAmB,QAAQ,IAEvF,KAAK,oBAAoB,EACzB,KAAK,0BAA0BA,EAAmB,QAAQ,EAE9D,CAAC,CACH,CACM,gBAAiB,QAAAlP,EAAA,sBACrB,IAAMmK,EAAoB,CACxB,WAAY,KAAK,WACjB,MAAO,KAAK,UAAU,KAAK,SAAS,SAAS,CAAC,EAC9C,SAAU,KAAK,QACjB,EACA,MAAM,KAAK,oBAAoB,sBAAsBA,CAAiB,CACxE,GACM,aAAc,QAAAnK,EAAA,sBAClB,IAAMiK,EAAe,MAAM,KAAK,oBAAoB,sBAAsB,KAAK,WAAY,KAAK,QAAQ,EACxG,GAAIA,GAAc,MAAO,CAEvB,IAAMmF,EADgB,KAAK,MAAMnF,EAAa,KAAK,EACrB,IAAI3B,GAAQ,IAAInO,GAAkBmO,CAAI,CAAC,EAAE,KAAK,CAACnE,EAAGkL,IAAMA,EAAE,aAAelL,EAAE,YAAY,EACrH,KAAK,SAAS,KAAKiL,CAAO,CAC5B,CACF,GAMA,6BAA6BE,EAAU,CAErC,OADsB,KAAK,SAAS,SAAS,EAAE,KAAKC,GAAUA,EAAO,WAAaD,CAAQ,CAE5F,CAMA,sBAAuB,CACrB,IAAME,EAAqB,KAAK,OAAO,IACjCN,EAAqB,KAAK,sBAAsBM,CAAkB,EACxE,KAAK,+BAA+BN,EAAoB,EAAI,CAC9D,CAKA,qBAAsB,CACpB,KAAK,OAAO,OAAO,KAAKpD,EAAOpL,GAASA,aAAiBsO,EAAa,EAAGlD,EAAO,IAAM,KAAK,OAAO,qBAAqB,EAAE,OAAO,UAAU,EAAGjF,GAAInG,GAASA,CAAK,EAAGmG,GAAI,CAAC,CACrK,kBAAAoI,CACF,IAAM,KAAK,sBAAsBA,CAAiB,CAAC,EAAGQ,GAAU,KAAK,YAAY,CAAC,EAAE,UAAiBC,GAG/F1P,EAAA,MAH+F0P,GAG/F,UAH+F,CACnG,kBAAAT,EACA,SAAAK,CACF,EAAM,CACJ,IAAMK,EAAiB,KAAK,6BAA6BL,CAAQ,EACjE,GAAIK,GAAgB,MAAQV,EAC1B,OAGF,MAAM/L,GAAe,KAAK,eAAe,KAAK4I,EAAO,OAAO,CAAC,CAAC,EAE9D,IAAM8D,EADiB,KAAK,oBAAoB,EACV,IAAIL,GACpCA,EAAO,KAAOI,GAAgB,GACzB,IAAIxV,GAAkB0V,GAAAC,EAAA,GACxBP,GADwB,CAE3B,IAAKN,CACP,EAAC,EAEIM,CACR,EACD,KAAK,qBAAqBK,CAAc,CAC1C,EAAC,CACH,CAUA,0BAA0BN,EAAU,CAClC,KAAK,aAAa,EAAE,KAAKG,GAAU,KAAK,YAAY,CAAC,EAAE,UAAiBC,GAElE1P,EAAA,MAFkE0P,GAElE,UAFkE,CACtE,MAAAK,CACF,EAAM,CACJ,IAAMJ,EAAiB,KAAK,6BAA6BL,CAAQ,EACjE,GAAIK,EAAe,QAAUI,EAC3B,OAGF,MAAM7M,GAAe,KAAK,eAAe,KAAK4I,EAAO,OAAO,CAAC,CAAC,EAE9D,IAAM8D,EADiB,KAAK,oBAAoB,EACV,IAAIL,GACpCA,EAAO,KAAOI,GAAgB,GACzB,IAAIxV,GAAkB0V,GAAAC,EAAA,GACxBP,GADwB,CAE3B,MAAAQ,CACF,EAAC,EAEIR,CACR,EACD,KAAK,qBAAqBK,CAAc,CAC1C,EAAC,CACH,CAUA,+BAA+BV,EAAoBc,EAAoB,GAAO,CAC5E,KAAK,eAAe,KAAK,EAAK,EAC9B,IAAMC,EAAc,KAAK,6BAA6Bf,EAAmB,QAAQ,EAC7Ee,EACF,KAAK,wBAAwBA,CAAW,EAExC,KAAK,aAAaf,EAAoBc,CAAiB,CAE3D,CAOA,wBAAwBL,EAAgB,CACtC,IAAMO,EAAiB,KAAK,oBAAoB,EAC1CC,EAAe,KAAK,IAAI,EACxBP,EAAiBM,EAAe,IAAIX,GACpCA,EAAO,KAAOI,GAAgB,GACzB,IAAIxV,GAAkB0V,GAAAC,EAAA,GACxBP,GADwB,CAE3B,aAAAY,CACF,EAAC,EAEIZ,CACR,EACD,KAAK,qBAAqBK,CAAc,EACxC,KAAK,eAAe,KAAK,EAAI,CAC/B,CAIA,sBAAsBX,EAAmB,CACvC,IAAMmB,EAAU,OAAO,SAAS,OAASnB,EACnCK,EAAW,IAAI,IAAIc,CAAO,EAAE,SAKlC,MAJ2B,CACzB,kBAAAnB,EACA,SAAAK,CACF,CAEF,CAMA,qBAAsB,CAGpB,MAD4B,CADH,KAAK,OAAO,qBAAqB,EAAE,OACd,UAEhD,CAOA,sBAAsBA,EAAU,CAE9B,OAD2C,KAAK,mBAAmB,6BAA6BA,EAAU,KAAK,WAAW,QAAS,KAAK,WAAW,YAAY,IACjH,EAChD,CAMA,qBAAqBe,EAAY,CAC/B,IAAMC,EAAmBD,EAAW,KAAK,CAAClM,EAAGkL,IAAMA,EAAE,aAAelL,EAAE,YAAY,EAClF,KAAK,SAAS,KAAKmM,CAAgB,EACnC,KAAK,eAAe,CACtB,CACM,YAAa,QAAAtQ,EAAA,sBACjB,MAAM,KAAK,YAAY,EACvB,MAAM,KAAK,qBAAqB,EAChC,KAAK,uBAAuB,CAC9B,GASA,aAAauQ,EAAiBP,EAAmB,CAG/C,IAAMQ,EAA8B,KAAK,iBAAiB,qBAAqB,GACzDR,GAAqBQ,GAA6B,MAAQ5F,GAAG4F,CAA2B,EAAI,KAAK,aAAa,GACtH,KAAKhQ,GAAK,CAAC,EAAGiP,GAAU,KAAK,YAAY,CAAC,EAAE,UAAU,CAAC,CACnE,MAAAM,EACA,OAAAU,CACF,IAAM,CACJ,IAAMC,EAAY,IAAIvW,GAAkB,CACtC,MAAA4V,EACA,IAAKQ,EAAgB,kBACrB,SAAUA,EAAgB,SAC1B,aAAc,KAAK,IAAI,EACvB,OAAAE,CACF,CAAC,EACKP,EAAiB,KAAK,oBAAoB,EAE1CS,EAAsBT,EAAe,KAAKX,IAAUA,GAAO,QAAUmB,EAAU,KAAK,EAC1F,GAAIC,EAAqB,CACvB,IAAMC,GAA6BV,EAAe,QAAQS,CAAmB,EAC7ET,EAAe,OAAOU,GAA4B,CAAC,CACrD,CAEIV,EAAe,QAAU,KAAK,YAChCA,EAAe,IAAI,EAErB,IAAMN,GAAiB,CAAC,GAAGM,EAAgBQ,CAAS,EACpD,KAAK,qBAAqBd,EAAc,EACxC,KAAK,eAAe,KAAK,EAAI,CAC/B,CAAC,CACH,CAIA,cAAe,CACb,OAAO,KAAK,iBAAiB,iBAAiB,KAAK9D,EAAO,CAAC,CACzD,MAAAiE,CACF,IAAM,EAAQA,CAAM,CAAC,CACvB,CAIA,qBAAsB,CACpB,MAAO,CAAC,GAAG,KAAK,SAAS,SAAS,CAAC,CACrC,CAQA,IAAI,YAAa,CACf,IAAMc,EAAa,CAAC,UAAW,aAAc,SAAS,EACtD,OAAI,KAAK,YAAY,cACnBA,EAAW,KAAK,oBAAoB,KAAK,WAAW,YAAY,EAAE,EAEhE,KAAK,aAAa,eAAe,OAAO,SAC1CA,EAAW,KAAK,YAAY,KAAK,YAAY,cAAc,MAAM,OAAO,EAAE,EAErEA,EAAW,KAAK,GAAG,CAC5B,CACA,MAAO,CACL,KAAK,UAAO,SAAyD5Q,EAAmB,CACtF,OAAO,IAAKA,GAAqB7F,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B8F,EAAmB,CAChD,MAAO9F,EACP,QAASA,EAAwC,SACnD,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAA4C,IAAI8F,GAAe,mCAAoC,CACvG,WAAY,OACZ,QAAS,IAAM,IAAI/F,EACrB,CAAC,EAGGE,IAAmD,IAAM,CAC3D,MAAMA,CAAmC,CACvC,aAAc,CACZ,KAAK,aAAe4G,EAAO,CAAC,CAAC,EAC7B,KAAK,SAAWC,EAAS,IAAM,KAAK,aAAa,GAAG,OAAS,CAAC,EAC9D,KAAK,2BAA6BrB,EAAOjI,EAAyB,EAClE,KAAK,oBAAsBiI,EAAO6L,EAAkB,EACpD,KAAK,YAAc7L,EAAO6E,EAAU,EACpC,KAAK,gBAAkB7E,EAAOqI,EAAc,EAC5C,KAAK,aAAerI,EAAO8L,EAAW,EACtC,KAAK,YAAc9L,EAAOsK,EAAU,CACtC,CACM,iBAAkB,QAAApK,EAAA,sBACtB,GAAM,CACJ,QAAA+M,CACF,EAAI,MAAM7J,GAAe,KAAK,2BAA2B,gBAAgB,CAAC,EAC1E,GAAI,CAAC6J,EAAQ,aAAa,IACxB,MAAO,CAAC,EAEV,IAAM+D,EAAe,MAAM,KAAK,iBAAiB/D,EAAQ,aAAa,GAAG,EACzE,YAAK,aAAa,IAAI+D,CAAY,EAC3B,KAAK,aAAa,CAC3B,GAMA,iBAAiBrQ,EAAK,CACpB,IAAMuL,EAAW,KAAK,oBAAoB,iBAAiB,OAAK,YAAY,QAAwB,GAAM,GAAM,CAAC,eAAe,CAAC,EAC3H+E,EAAU,KAAK,gBAAgB,IAAI/E,CAAQ,EACjD,OAAI+E,EACK,IAAI,QAAQjN,GAAW,CAC5B,IAAMgN,EAAe,KAAK,MAAMC,CAAO,EACvCjN,EAAQgN,CAAY,CACtB,CAAC,EAEM,IAAI,QAAQ,CAAChN,EAASkN,IAAW,CACtC,KAAK,YAAY,IAAIvQ,CAAG,EAAE,UAAU,CAClC,KAAMqQ,GAAgB,CACpB,KAAK,gBAAgB,IAAI9E,EAAU,KAAK,UAAU8E,CAAY,CAAC,EAC/DhN,EAAQgN,CAAY,CACtB,EACA,MAAOG,GAAOD,EAAOC,CAAG,CAC1B,CAAC,CACH,CAAC,CAEL,CACA,MAAO,CACL,KAAK,UAAO,SAAoDhR,EAAmB,CACjF,OAAO,IAAKA,GAAqB3F,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B4F,EAAmB,CAChD,MAAO5F,EACP,QAASA,EAAmC,SAC9C,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAAuC,IAAI4F,GAAe,8BAA+B,CAC7F,WAAY,OACZ,QAAS,IAAM,IAAI7F,EACrB,CAAC,EACGE,IAA2B,IAAM,CACnC,MAAMA,CAAW,CACf,UAAU+O,EAAO2H,EAAYC,EAAkB,CAE7C,OAAK5H,EAID2H,IAAe,QAAa,CAACC,GAAkB,OAC1C,CAAC,GAAG5H,CAAK,EAGXA,EAAM,OAAOjB,GAAQ,CAE1B,QAAWb,KAAQ0J,EAAkB,CAEnC,GAAI7I,EAAKb,CAAI,IAAM,OACjB,SAGF,IAAM2J,EAAY9I,EAAKb,CAAI,EAAE,eAAe,EAC5C,GAAI,OAAO2J,GAAc,UAEnBA,EAAU,YAAY,EAAE,SAASF,EAAW,YAAY,CAAC,EAC3D,MAAO,EAGb,CACA,MAAO,EACT,CAAC,EAxBQ,CAAC,CAyBZ,CACA,MAAO,CACL,KAAK,UAAO,SAA4BjR,EAAmB,CACzD,OAAO,IAAKA,GAAqBzF,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B6W,GAAa,CAC1C,KAAM,SACN,KAAM7W,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAkC,IAAM,CAC1C,MAAMA,CAAkB,CACtB,UAAU6P,EAAK,CACb,OAAOgH,GAAW,KAAKhH,CAAG,CAC5B,CACA,MAAO,CACL,KAAK,UAAO,SAAmCrK,EAAmB,CAChE,OAAO,IAAKA,GAAqBxF,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B4W,GAAa,CAC1C,KAAM,gBACN,KAAM5W,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAmC,IAAM,CAC3C,MAAMA,CAAmB,CACvB,UAAU6O,EAAO3C,EAAU2K,EAAQ,MAAO,CAExC,OAAKhI,EAIA3C,EAIE2C,EAAM,KAAK,CAACpF,EAAGkL,IAAM,CAE1B,GAAI,CAAC,OAAO,UAAU,eAAe,KAAKlL,EAAGyC,CAAQ,GAAK,CAAC,OAAO,UAAU,eAAe,KAAKyI,EAAGzI,CAAQ,EACzG,MAAM,IAAI,MAAM,aAAaA,CAAQ,uCAAuC,EAE9E,IAAM4K,EAASrN,EAAEyC,CAAQ,EACnB6K,EAASpC,EAAEzI,CAAQ,EACrB8K,EAAa,EACjB,GAAIF,aAAkB,MAAQC,aAAkB,KAC9CC,EAAaF,EAAO,QAAQ,EAAIC,EAAO,QAAQ,UACtC,OAAOD,GAAW,UAAY,OAAOC,GAAW,SACzDC,EAAaF,EAAO,cAAcC,CAAM,UAC/B,OAAOD,GAAW,UAAY,OAAOC,GAAW,SACzDC,EAAaF,EAASC,MAEtB,OAAM,IAAI,MAAM,aAAa7K,CAAQ,oCAAoC,EAE3E,OAAO2K,IAAU,MAAQG,EAAa,CAACA,CACzC,CAAC,EArBQnI,EAJA,CAAC,CA0BZ,CACA,MAAO,CACL,KAAK,UAAO,SAAoCtJ,EAAmB,CACjE,OAAO,IAAKA,GAAqBvF,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B2W,GAAa,CAC1C,KAAM,iBACN,KAAM3W,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA6B,IAAM,CACrC,MAAMA,CAAa,CACjB,aAAc,CACZ,KAAK,YAAcmF,EAAO6E,EAAU,CACtC,CACA,UAAU2F,EAAK,CACb,GAAI,CAACA,EACH,MAAO,CAAC,EAGV,GAAIgH,GAAW,KAAKhH,CAAG,EACrB,MAAO,CAACA,CAAG,EAEb,IAAM7J,EAAM,KAAK,YAAY,+BAA+B6J,CAAG,EAAE,QAAQ,KAAM,EAAE,EAEjF,MAAO,EADQ7J,EAAI,WAAW,GAAG,EAAIA,EAAM,IAAIA,CAAG,IACnC,MAAM,MAAM,EAAE,CAAC,CAAC,CACjC,CACA,MAAO,CACL,KAAK,UAAO,SAA8BR,EAAmB,CAC3D,OAAO,IAAKA,GAAqBtF,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0B0W,GAAa,CAC1C,KAAM,WACN,KAAM1W,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,aAAc,CACZ,KAAK,YAAckF,EAAO6E,EAAU,EACpC,KAAK,QAAU7E,EAAO4L,EAAM,CAC9B,CACA,UAAUpB,EAAK,CACb,GAAI,CAACA,EACH,MAAO,CAAC,EAGV,GAAIgH,GAAW,KAAKhH,CAAG,EACrB,OAAO,KAAK,QAAQ,SAASA,CAAG,EAAE,YAEpC,IAAM7J,EAAM,KAAK,YAAY,+BAA+B6J,CAAG,EAAE,QAAQ,KAAM,EAAE,EACjF,OAAO,KAAK,QAAQ,SAAS7J,CAAG,EAAE,WACpC,CACA,MAAO,CACL,KAAK,UAAO,SAA+BR,EAAmB,CAC5D,OAAO,IAAKA,GAAqBrF,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0ByW,GAAa,CAC1C,KAAM,YACN,KAAMzW,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAoD,IAAM,CAC5D,MAAMA,CAAoC,CACxC,aAAc,CACZ,KAAK,UAAY,IAAI2G,GACrB,KAAK,mBAAqBpB,EAAM,EAChC,KAAK,oBAAsBA,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,uBAAyBA,EAAM,EACpC,KAAK,YAAcA,EAAM,CAAC,CAAC,EAC3B,KAAK,SAAWA,EAAM,CAAC,CAAC,EACxB,KAAK,mBAAqB,IAAIqL,GAC9B,KAAK,gBAAkB,CAAC,EACxB,KAAK,eAAiB,EACtB,KAAK,YAAc,IAAI,KAAK,IAAI,CAClC,CAQA,8BAA8B5F,EAAO,CAGnC,MAAO,GADa,GAAuBA,CACtB,IACvB,CACA,eAAe8L,EAAKrJ,EAAM,CACxB,KAAK,uBAAuB,EAAE,KAAK,EACnCqJ,EAAI,YAAYrJ,CAAI,EACpB,KAAK,UAAU,KAAK,CACtB,CACA,qBAAqBqJ,EAAKrJ,EAAM,CAC9B,OAAOqJ,EAAI,6BAA6BrJ,CAAI,CAC9C,CACA,wBAAwBqJ,EAAKrJ,EAAM,CACjC,OAAOqJ,EAAI,gCAAgCrJ,CAAI,CACjD,CAMA,UAAU5H,EAAO,CACf,GAAI,CAAC,UAAW,WAAW,EAAE,SAASA,EAAM,IAAI,EAAG,CACjD,IAAMkR,EAAgB,SAAS,cACzBC,EAAyB,MAAM,KAAK,KAAK,4BAA4B,0BAA0B,CAAC,EACtG,GAAID,EAAc,UAAU,SAAS,uBAAuB,EAAG,CAC7DlR,EAAM,eAAe,EACrB,IAAMoR,EAAqBD,EAAuB,OAAOtN,GAAM,CAACA,EAAG,UAAU,SAAS,uBAAuB,CAAC,EACxGwN,EAAYrR,EAAM,OAAS,YAAc,EAAIoR,EAAmB,OAAS,EAC/E,KAAK,4BAA4B,aAAaA,IAAqBC,CAAS,CAAC,EAC7E,MACF,CACA,GAAIrR,EAAM,OAAS,WAAakR,EAAc,UAAU,SAAS,cAAc,EAAG,CAChF,IAAMI,EAAoBH,EAAuB,OAAOtN,GAAMA,EAAG,UAAU,SAAS,uBAAuB,CAAC,EAC5G,KAAK,4BAA4B,aAAayN,IAAoB,CAAC,CAAC,EACpE,MACF,CACF,CACI,CAAC,SAAU,KAAK,EAAE,SAAStR,EAAM,GAAG,IACtCA,EAAM,eAAe,EACrB,KAAK,uBAAuB,EAAE,KAAK,EACnC,KAAK,mBAAmB,GAAG,MAAM,EAErC,CACA,iBAAiBiR,EAAKrJ,EAAM5H,EAAO,CACjCA,EAAM,gBAAgB,EAEtB,IAAMuR,EAAe,KAAK,SAAS,EAAEN,EAAI,EAAE,EAAE,OAAOO,GAAOA,EAAI,SAAS,QAAQ,IAAM,KAAK,YAAY,QAAQ,CAAC,EAEhH,GAAID,EAAa,QAAU,KAAK,gBAAkB,CAACA,EAAa,SAAS3J,CAAI,EAC3E,OAGgB2J,EAAa,UAAUC,GAAOA,EAAI,KAAO5J,EAAK,EAAE,IAChD,IAChBA,EAAK,QAAU,IAAI,KACnBqJ,EAAI,QAAQrJ,CAAI,IAEhBA,EAAK,QAAU,KAAK,YACpBqJ,EAAI,UAAUrJ,CAAI,EAEtB,CACA,YAAYqJ,EAAKrJ,EAAM,CACrB,IAAM2J,EAAe,KAAK,SAAS,EAAEN,EAAI,EAAE,EAAE,OAAOO,GAAOA,EAAI,SAAS,QAAQ,IAAM,IAAI,KAAK,IAAI,EAAE,QAAQ,CAAC,EAAE,OAC5GC,EAAW,wBACf,OAAIF,GAAgB,KAAK,iBACvBE,GAAY,mBAEV7J,EAAK,SAAS,QAAQ,IAAM,IAAI,KAAK,IAAI,EAAE,QAAQ,IACrD6J,EAAW,sBAENA,CACT,CACA,gCAAgCR,EAAKrJ,EAAM,CAIzC,MAAO,EAFc,KAAK,SAAS,EAAEqJ,EAAI,EAAE,EAAE,OAAOO,GAAOA,EAAI,SAAS,QAAQ,IAAM,KAAK,YAAY,QAAQ,CAAC,GAEzF,QAAU,KAAK,gBAAkB5J,EAAK,QAAQ,QAAQ,IAAM,IAAI,KAAK,IAAI,EAAE,QAAQ,EAC5G,CACA,MAAO,CACL,KAAK,UAAO,SAAqDrI,EAAmB,CAClF,OAAO,IAAKA,GAAqBpF,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB8F,EAAkB,CAC9C,KAAM9F,EACN,UAAW,CAAC,CAAC,iCAAiC,CAAC,EAC/C,UAAW,SAAmDvY,EAAIC,EAAK,CAIrE,GAHID,EAAK,GACJ8f,EAAYpB,GAA6B,CAAC,EAE3C1e,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,4BAA8BggB,EAAG,MACpF,CACF,EACA,OAAQ,CACN,mBAAoB,CAAC,EAAG,oBAAoB,EAC5C,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,EACpD,uBAAwB,CAAC,EAAG,wBAAwB,EACpD,YAAa,CAAC,EAAG,aAAa,EAC9B,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,UAAW,WACb,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,GACN,OAAQ,CAAC,CAAC,UAAW,YAAY,EAAG,CAAC,cAAe,8BAA+B,EAAG,8BAA+B,EAAG,SAAS,EAAG,CAAC,cAAe,oBAAqB,6BAA8B,GAAI,EAAG,cAAe,gBAAiB,kBAAmB,sBAAuB,wBAAwB,EAAG,CAAC,cAAe,cAAe,EAAG,SAAS,EAAG,CAAC,EAAG,SAAU,EAAG,SAAS,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,OAAQ,OAAQ,wBAAyB,GAAI,EAAG,gBAAiB,eAAgB,EAAG,gBAAiB,cAAe,SAAS,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,aAAc,YAAY,EAAG,CAAC,wBAAyB,GAAI,EAAG,OAAQ,gBAAiB,EAAG,KAAM,SAAU,KAAK,EAAG,CAAC,cAAe,4BAA6B,EAAG,OAAQ,OAAO,EAAG,CAAC,wBAAyB,GAAI,EAAG,OAAQ,gBAAiB,EAAG,QAAS,UAAW,IAAI,EAAG,CAAC,EAAG,WAAW,EAAG,CAAC,EAAG,MAAO,EAAG,QAAS,UAAW,aAAc,oBAAoB,EAAG,CAAC,cAAe,qBAAsB,EAAG,WAAW,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,cAAe,4BAA6B,kBAAmB,GAAI,EAAG,YAAY,EAAG,CAAC,EAAG,OAAQ,eAAe,EAAG,CAAC,EAAG,+BAA+B,EAAG,CAAC,kBAAmB,GAAI,EAAG,aAAa,CAAC,EAC3qC,SAAU,SAAsDte,EAAIC,EAAK,CAevE,GAdID,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BE,EAAO,EAAG,mBAAmB,EAC7BA,EAAO,EAAG,SAAS,EACnBW,EAAW,UAAW,SAA6EI,EAAQ,CAC5G,OAAOlB,EAAI,UAAUkB,CAAM,CAC7B,CAAC,EACEjB,EAAe,EAAG,eAAgB,CAAC,EACnCa,EAAW,cAAe,UAA4F,CACvH,OAAOd,EAAI,mBAAmB,KAAK,CACrC,CAAC,EACEgE,GAAiB,EAAGgB,GAAoD,GAAI,GAAI,SAAU,EAAMf,EAAyB,EACzH7D,EAAa,EAAE,GAEhBL,EAAK,EAAG,CACV,IAAIuN,EACD1I,GAAY,QAAYkF,GAAY,EAAG,GAAOvE,GAAY,EAAG,EAAGvF,EAAI,mBAAmB,EAAG,QAAS,EAAI,EAAG,CAAC,EAAG,IAAI,EAClHO,EAAU,CAAC,EACXsB,EAAW,gBAAiB7B,EAAI,YAAY,EAAE,SAAW,GAAKsN,EAAUtN,EAAI,YAAY,IAAM,MAAcsN,EAAQ,CAAC,GAAK,KAArB,KAAmCA,EAAQ,CAAC,EAAE,IAAMA,EAAUtN,EAAI,YAAY,IAAM,MAAcsN,EAAQ,CAAC,GAAK,KAArB,KAAmCA,EAAQ,CAAC,EAAE,EAAE,EAAE,kBAAmB,eAAe,EAAE,sBAAuBtN,EAAI,oBAAoB,CAAC,EAAE,yBAA0BA,EAAI,uBAAuB,EAAI,CAAC,EAClYO,EAAU,EACV2D,GAAWlE,EAAI,YAAY,CAAC,CACjC,CACF,EACA,aAAc,CAACmgB,GAAS0P,GAAgBC,GAAyBC,GAAoBC,GAAS3P,GAAYpI,GAAYE,GAAoB8X,GAAuBC,GAAaC,GAAmBC,GAAc9R,EAAwBC,GAAaC,GAAkCC,EAA2B,EACjT,OAAQ,CAAC;AAAA,CAAmgJ,EAC5gJ,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOnG,CACT,GAAG,EAICC,IAA6C,IAAM,CACrD,MAAMA,CAA6B,CACjC,aAAc,CACZ,KAAK,eAAiBsF,EAAM,SAAS,EACrC,KAAK,oBAAsBA,EAAMa,GAAqB,KAAK,EAC3D,KAAK,oBAAsBb,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,qBAAuBA,EAAM,MAAM,EACxC,KAAK,qBAAuBA,EAAM,CAAC,EACnC,KAAK,qBAAuBA,EAAM,CAAC,EACnC,KAAK,wBAA0BA,EAAM,EAAE,EACvC,KAAK,UAAYC,EAAO,EACxB,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,MAAQc,EAAS,IAAM,KAAK,OAAO,IAAM,KAAK,YAAY,EAAE,OAAS,GAAK,KAAK,mBAAmB,EAAE,EACzG,KAAK,4BAA8BA,EAAS,IAAM,GAAG,KAAK,wBAAwB,CAAC,qCAAqC,EACxH,KAAK,YAAcD,EAAO,EAAE,EAC5B,KAAK,cAAgBA,EAAO,EAAE,EAC9B,KAAK,QAAUC,EAAS,IAAM,KAAK,cAAc,EAAI,GAAG,KAAK,YAAY,CAAC,MAAM,KAAK,cAAc,CAAC,GAAK,KAAK,YAAY,CAAC,EAC3H,KAAK,cAAgBrB,EAAOwB,EAAa,EACzC,KAAK,sBAAwB,KAAK,cAAc,wBAA0BC,GAAgB,UAAYA,GAAgB,SACtH,KAAK,OAASL,EAAO,EAAK,EAC1B,KAAK,KAAOA,EAAO,CAAC,CAAC,EACrB,KAAK,mBAAqBA,EAAO,EAAK,EACtC,KAAK,SAAWA,EAAO,CAAC,CAAC,EACzB,KAAK,UAAYmK,GAAa,KAAK,QAAQ,EAI3C,KAAK,YAAclK,EAAS,IACL,KAAK,KAAK,EAAE,OAAOwQ,GAAO,KAAK,SAAS,EAAEA,EAAI,EAAE,GAAG,OAAS,CAAC,CAEnF,EACD,KAAK,sBAAwB,IAC7B,KAAK,sBAAwB,IAAInQ,GACjC,KAAK,uBAAyB,IAAIA,GAClC,KAAK,yBAA2B,IAAIiK,GACpC,KAAK,WAAa3L,EAAO+I,EAAU,EACnC,KAAK,kBAAoB/I,EAAO3G,EAAuB,EACvD,KAAK,YAAc2G,EAAO2E,EAAW,CACvC,CACM,UAAW,QAAAzE,EAAA,sBACf,KAAK,oBAAoB,EACrB,KAAK,kBAAkB,SACzB,MAAM,KAAK,uBAAuB,EAClC,KAAK,yBAAyB,GACrB,KAAK,kBAAkB,sBAChC,KAAK,yBAAyB,KAAKkJ,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CACtF,KAAK,iBAAiB,oBAAoB,CAC5C,CAAC,EACD,KAAK,2BAA6B,KAAK,iBAAiB,4BAA8B,KAAK,YAAY,IAAI,4CAA4C,EACvJ,KAAK,mBAAmB,IAAI,EAAI,EAChC,KAAK,cAAc,EAEvB,GAOA,UAAUxI,EAAO,CACX,KAAK,cAAc,wBACjB,CAAC,SAAU,MAAO,YAAa,YAAY,EAAE,SAASA,EAAM,IAAI,GAClE,KAAK,uBAAuB,KAAK,EAGnCA,EAAM,eAAe,CAEzB,CAIA,qBAAsB,CAEpB,GAAI,EAAE,KAAK,6BAA6B,OAAQ,CAC9C,KAAK,iBAAmB,KAAK,kBAC7B,MACF,CAEA,GAAI,KAAK,kBAAkB,SAAW,EAAG,CACvC,KAAK,iBAAmB,KAAK,kBAAkB,CAAC,EAChD,MACF,CAEA,GAAI,KAAK,kBAAkB,OAAS,EAAG,CACrC,KAAK,iBAAmB,KAAK,kBAAkB,KAAK,kBAAkB,OAAS,CAAC,EAChF,MACF,CACF,CAMM,wBAAyB,QAAAV,EAAA,sBAC7B,IAAM4S,EAAO,MAAM1P,GAAe,KAAK,iBAAiB,QAAQ,CAAC,EACjE,KAAK,KAAK,IAAI0P,CAAI,EAClB,KAAK,KAAK,EAAE,QAAQjB,GAAO,CACzBA,EAAI,QAAQ,EAAE,KAAKzI,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUnE,GAAQ,CACxE,KAAK,SAAS,OAAO8N,GAAgBhD,GAAAC,EAAA,GAChC+C,GADgC,CAEnC,CAAClB,EAAI,EAAE,EAAG5M,CACZ,EAAE,CACJ,CAAC,CACH,CAAC,CACH,GAKA,0BAA2B,CACzB,KAAK,UAAU,KAAK+G,EAAOgH,GAAY,KAAK,KAAK,EAAE,OAAS,GAAK,OAAO,KAAKA,CAAQ,EAAE,SAAW,KAAK,KAAK,EAAE,QAAU,OAAO,KAAKA,CAAQ,GAAG,MAAMC,GAAS,KAAK,KAAK,EAAE,IAAIpB,GAAOA,EAAI,EAAE,EAAE,SAASoB,CAAK,CAAC,CAAC,EAAG7J,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CACnQ,KAAK,cAAc,CACrB,CAAC,CACH,CAMA,eAAgB,CACd,IAAM8J,EAAc,KAAK,iBAAiB,yBAAyB,EAC7DC,EAAgB,KAAK,iBAAiB,2BAA2B,EACnE,KAAK,iBAAiB,sBACxB,KAAK,cAAgB,KAAK,iBAAiB,sBAEvCA,GACF,KAAK,cAAc,IAAIA,CAAa,EAGpC,KAAK,iBAAiB,oBACxB,KAAK,YAAc,KAAK,iBAAiB,oBAErCD,GACF,KAAK,YAAY,IAAIA,CAAW,EAGpC,KAAK,OAAO,IAAI,EAAI,CACtB,CACA,MAAO,CACL,KAAK,UAAO,SAA8C/S,EAAmB,CAC3E,OAAO,IAAKA,GAAqBnF,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB6F,EAAkB,CAC9C,KAAM7F,EACN,UAAW,CAAC,CAAC,yBAAyB,CAAC,EACvC,OAAQ,CACN,eAAgB,CAAC,EAAG,gBAAgB,EACpC,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,EACpD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,qBAAsB,CAAC,EAAG,sBAAsB,EAChD,wBAAyB,CAAC,EAAG,yBAAyB,CACxD,EACA,QAAS,CACP,UAAW,YACX,iBAAkB,mBAClB,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAI8F,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,qBAAsB,GAAI,wBAAyB,iBAAiB,EAAG,CAAC,eAAgB,EAAE,EAAG,CAAC,cAAe,qCAAsC,EAAG,oCAAoC,EAAG,CAAC,EAAG,mBAAoB,yBAAyB,EAAG,CAAC,cAAe,qCAAsC,kBAAmB,GAAI,wBAAyB,GAAI,EAAG,qCAAsC,EAAG,mBAAoB,mBAAoB,UAAW,UAAW,6BAA8B,0BAA2B,yBAA0B,sBAAuB,sBAAuB,sBAAuB,eAAgB,eAAgB,UAAW,aAAc,YAAa,wBAAyB,4BAA4B,EAAG,CAAC,EAAG,YAAa,cAAe,WAAY,qBAAsB,sBAAuB,yBAA0B,wBAAwB,CAAC,EACj3B,SAAU,SAA+Cte,EAAIC,EAAK,CAC5DD,EAAK,GACJqB,EAAW,EAAG4E,GAAqD,EAAG,CAAC,EAExEjG,EAAK,GACJwB,EAAcvB,EAAI,MAAM,EAAI,EAAI,EAAE,CAEzC,EACA,aAAc,CAACmgB,GAASC,GAAkBN,GAAuBxH,GAAqCmG,EAA2B,EACjI,OAAQ,CAAC;AAAA,CAAstB,EAC/tB,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOlG,CACT,GAAG,EAICC,IAAmD,IAAM,CAC3D,MAAMA,CAAmC,CACvC,aAAc,CACZ,KAAK,oBAAsBqF,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,gBAAkBmB,EACzB,CACA,MAAO,CACL,KAAK,UAAO,SAAoDtB,EAAmB,CACjF,OAAO,IAAKA,GAAqBlF,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB4F,EAAkB,CAC9C,KAAM5F,EACN,UAAW,CAAC,CAAC,gCAAgC,CAAC,EAC9C,OAAQ,CACN,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,CACtD,EACA,WAAY,GACZ,SAAU,CAAI6F,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,iBAAkB,EAAE,EAAG,CAAC,EAAG,iBAAkB,sBAAuB,wBAAwB,EAAG,CAAC,EAAG,yBAA0B,EAAG,SAAS,EAAG,CAAC,cAAe,eAAgB,EAAG,cAAc,EAAG,CAAC,cAAe,UAAW,EAAG,SAAS,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,OAAO,EAAG,CAAC,cAAe,cAAe,wBAAyB,GAAI,EAAG,cAAe,EAAG,aAAc,uBAAuB,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,cAAe,cAAe,wBAAyB,GAAI,EAAG,cAAe,EAAG,QAAS,aAAc,uBAAuB,EAAG,CAAC,cAAe,wBAAyB,EAAG,kBAAkB,EAAG,CAAC,cAAe,qBAAqB,CAAC,EACrqB,SAAU,SAAqDte,EAAIC,EAAK,CAKtE,GAJID,EAAK,IACJoB,EAAU,EAAG,0BAA2B,CAAC,EACzCC,EAAW,EAAGmF,GAA2D,EAAG,EAAG,cAAe,KAAM,EAAMvE,EAAsB,GAEjIjC,EAAK,EAAG,CACV,IAAM4wB,EAAuB/uB,EAAY,CAAC,EACvCC,EAAW,iBAAkB8uB,CAAiB,EAAE,sBAAuB3wB,EAAI,oBAAoB,CAAC,EAAE,yBAA0BA,EAAI,uBAAuB,CAAC,CAC7J,CACF,EACA,aAAc,CAACuY,GAA8BgI,GAAuBJ,GAAS7B,EAAqBsS,GAAuBvQ,GAAY5B,EAA2B,EAChK,OAAQ,CAAC;AAAA,CAA2wD,EACpxD,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOjG,CACT,GAAG,EAICC,IAAqD,IAAM,CAC7D,MAAMA,CAAqC,CACzC,aAAc,CACZ,KAAK,oBAAsBoF,EAAM,IAAI,EACrC,KAAK,uBAAyBA,EAAM,IAAI,EACxC,KAAK,UAAYC,EAAO,EACxB,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,iBAAmBA,EAAO,EAC/B,KAAK,cAAgBP,EAAOwB,EAAa,EACzC,KAAK,eAAiB,KAAK,eAAe,eAC1C,KAAK,oBAAsB,KAAK,eAAiBL,GAAqB,MAAQA,GAAqB,WACnG,KAAK,qBAAuBA,EAC9B,CACA,IAAI,6BAA6B8B,EAAU,CACzC,KAAK,MAAQA,EAAS,KACxB,CACA,MAAO,CACL,KAAK,UAAO,SAAsD9C,EAAmB,CACnF,OAAO,IAAKA,GAAqBjF,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB2F,EAAkB,CAC9C,KAAM3F,EACN,UAAW,CAAC,CAAC,mCAAmC,CAAC,EACjD,UAAW,SAAoD1Y,EAAIC,EAAK,CAItE,GAHID,EAAK,GACJ8f,EAAYtH,GAA8B,CAAC,EAE5CxY,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,6BAA+BggB,EAAG,MACrF,CACF,EACA,OAAQ,CACN,oBAAqB,CAAC,EAAG,qBAAqB,EAC9C,uBAAwB,CAAC,EAAG,wBAAwB,CACtD,EACA,QAAS,CACP,UAAW,YACX,iBAAkB,mBAClB,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,iBAAkB,EAAE,EAAG,CAAC,EAAG,YAAa,mBAAoB,mBAAoB,iBAAkB,sBAAuB,yBAA0B,sBAAuB,uBAAwB,uBAAwB,uBAAwB,yBAAyB,EAAG,CAAC,cAAe,kCAAmC,wBAAyB,GAAI,EAAG,aAAc,iCAAiC,EAAG,CAAC,EAAG,SAAS,EAAG,CAAC,cAAe,kCAAmC,wBAAyB,GAAI,EAAG,aAAc,kCAAmC,EAAG,OAAO,EAAG,CAAC,EAAG,OAAQ,kBAAkB,EAAG,CAAC,kBAAmB,GAAI,EAAG,MAAM,CAAC,EACjoB,SAAU,SAAuDte,EAAIC,EAAK,CACxE,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,0BAA2B,CAAC,EAC9Ca,EAAW,YAAa,UAAsG,CAC/H,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,UAAU,KAAK,CAAC,CAC5C,CAAC,EAAE,mBAAoB,SAA2GkB,EAAQ,CACxI,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,iBAAiB,KAAKkB,CAAM,CAAC,CACzD,CAAC,EAAE,mBAAoB,SAA2GA,EAAQ,CACxI,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,iBAAiB,KAAKkB,CAAM,CAAC,CACzD,CAAC,EACEd,EAAa,EACbgB,EAAW,EAAG0F,GAA6D,EAAG,EAAG,cAAe,KAAM,EAAM9E,EAAsB,CACvI,CACA,GAAIjC,EAAK,EAAG,CACV,IAAM8wB,EAAuBjvB,EAAY,CAAC,EACvCC,EAAW,iBAAkBgvB,CAAiB,EAAE,sBAAuB7wB,EAAI,oBAAoB,CAAC,EAAE,yBAA0BA,EAAI,uBAAuB,CAAC,EAAE,sBAAuBA,EAAI,mBAAmB,EAAE,uBAAwBA,EAAI,eAAiB,OAAS,UAAU,EAAE,uBAAwBA,EAAI,eAAiB,EAAI,EAAE,EAAE,uBAAwBA,EAAI,eAAiB,EAAI,CAAC,EAAE,0BAA2BA,EAAI,eAAiB,SAAW,SAAS,CAC9b,CACF,EACA,aAAc,CAACuY,GAA8BnD,GAAiCmL,GAAuB9B,EAA2B,EAChI,OAAQ,CAAC;AAAA,CAA45B,EACr6B,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOhG,CACT,GAAG,EAICC,IAA+B,IAAM,CACvC,MAAMA,CAAe,CAMnB,YAAYoY,EAAiBC,EAAyB,CACpD,KAAK,gBAAkBD,EACvB,KAAK,wBAA0BC,EAC/B,KAAK,UAAY,IAAI1K,GAAgB,EAAI,EACzC,KAAK,eAAiB2K,GACtB,KAAK,gBAAkBC,EACzB,CACA,UAAW,CACT,KAAK,gBAAgB,sBAAsB,EAAE,KAAK9N,GAAQ,CACxD,KAAK,UAAYA,EACjB,KAAK,UAAU,KAAK,EAAK,CAC3B,EAAG4G,GAAS,CACV,KAAK,wBAAwB,UAAUA,CAAK,EAC5C,KAAK,UAAU,KAAK,EAAK,CAC3B,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAO,SAAgCrM,EAAmB,CAC7D,OAAO,IAAKA,GAAqBhF,GAAmBiK,EAAuBnF,EAAe,EAAMmF,EAAuB4H,EAAuB,CAAC,CACjJ,CACF,CACA,MAAO,CACL,KAAK,UAAyBnM,EAAkB,CAC9C,KAAM1F,EACN,UAAW,CAAC,CAAC,UAAU,CAAC,EACxB,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,EAAG,UAAU,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,EAAG,uBAAuB,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,EAAG,YAAY,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,cAAe,0BAA2B,EAAG,SAAU,SAAS,EAAG,CAAC,EAAG,uBAAuB,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,WAAY,8BAA8B,CAAC,EACjW,SAAU,SAAiC3Y,EAAIC,EAAK,CAC9CD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACpDC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACvCmB,EAAW,EAAGmG,GAAuC,EAAG,EAAG,MAAO,CAAC,EACnEnH,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGoG,GAAuC,EAAG,EAAG,MAAM,EACjErH,EAAO,GAAI,OAAO,EAClBF,EAAe,GAAI,YAAa,CAAC,EACjCE,EAAO,GAAI,SAAS,EACpBW,EAAW,SAAU,UAAgE,CACtF,OAAOd,EAAI,QAAQ,CACrB,CAAC,EACEI,EAAa,EAAE,EAAE,GAElBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,sCAAsC,CAAC,EAC9EF,EAAU,CAAC,EACXgB,EAAcvB,EAAI,UAAY,EAAI,EAAE,EACpCO,EAAU,CAAC,EACXgB,EAAiBd,EAAY,GAAI,EAAGT,EAAI,SAAS,EAAI,EAAI,EAAE,EAC3DO,EAAU,CAAC,EACXsB,EAAW,UAAcmB,GAAgB,GAAIwH,GAAS/J,EAAY,GAAI,EAAG,mDAAmD,EAAGT,EAAI,eAAe,KAAMA,EAAI,gBAAgB,IAAI,CAAC,EAExL,EACA,aAAc,CAAMkxB,GAA8BC,GAAoBC,GAAc7S,EAAW,EAC/F,OAAQ,CAAC;AAAA,CAA8J,EACvK,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO7F,CACT,GAAG,EAICC,IAAsC,IAAM,CAC9C,MAAMA,CAAsB,CAM1B,YAAY0Y,EAAY,CACtB,KAAK,WAAaA,CACpB,CAMA,wBAAyB,CACvB,OAAO,KAAK,WAAW,IAAI,sDAAsD,EAAE,UAAU,CAC/F,CAOA,KAAKjH,EAASkH,EAAS,CACrB,IAAMC,EAAU,CACd,QAAAnH,EACA,QAAAkH,CACF,EACA,OAAO,KAAK,WAAW,KAAK,4CAA6CC,CAAO,EAAE,UAAU,CAC9F,CACA,MAAO,CACL,KAAK,UAAO,SAAuC7T,EAAmB,CACpE,OAAO,IAAKA,GAAqB/E,GAA0BsJ,GAAc4F,EAAU,CAAC,CACtF,CACF,CACA,MAAO,CACL,KAAK,WAA0BlK,EAAmB,CAChD,MAAOhF,EACP,QAASA,EAAsB,UAC/B,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAwC,IAAM,CAChD,MAAMA,CAAwB,CAS5B,YAAYkI,EAAa0Q,EAAuBT,EAAyBU,EAAiB,CACxF,KAAK,YAAc3Q,EACnB,KAAK,sBAAwB0Q,EAC7B,KAAK,wBAA0BT,EAC/B,KAAK,gBAAkBU,EACvB,KAAK,mBAAqB,IAAIC,GAAU,CACtC,QAAS,IAAIC,GAAY,KAAM,CAACC,GAAW,QAAQ,CAAC,EACpD,QAAS,IAAID,EACf,CAAC,EACD,KAAK,kBAAoB,EACzB,KAAK,WAAa,EAClB,KAAK,eAAiBX,GACtB,KAAK,gBAAkBC,EACzB,CACA,UAAW,CAET,KAAK,uBAAuB,CAC9B,CACA,IAAI,SAAU,CACZ,OAAO,KAAK,mBAAmB,IAAI,SAAS,CAC9C,CACA,IAAI,SAAU,CACZ,OAAO,KAAK,mBAAmB,IAAI,SAAS,CAC9C,CAIA,MAAO,CACL,KAAK,UAAY,GACjB,KAAK,sBAAsB,KAAK,KAAK,mBAAmB,IAAI,SAAS,EAAE,MAAO,KAAK,mBAAmB,IAAI,SAAS,EAAE,KAAK,EAAE,KAAK,IAAM,CACrI,KAAK,UAAY,GAEjB,KAAK,gBAAgB,KAAK,IAAI/J,GAAY,KAAK,YAAY,IAAI,4DAA4D,EAAG,KAAMC,GAAY,IAAI,CAAC,EACrJ,KAAK,QAAQ,CACf,EAAG4C,GAAS,CACV,KAAK,UAAY,GAEjB,KAAK,wBAAwB,UAAUA,CAAK,CAC9C,CAAC,CACH,CAIA,wBAAyB,CACvB,KAAK,UAAY,GACjB,KAAK,sBAAsB,uBAAuB,EAAE,KAAKvH,GAAQ,CAC/D,KAAK,mBAAqBA,EAC1BA,EAAK,qBAAuB,GAC5B,KAAK,kBAAoBA,EAAK,qBAAuBA,EAAK,aAC1D,KAAK,WAAaA,EAAK,qBAAuB,EAAI,YAAYA,EAAK,aAAe,IAAMA,EAAK,sBAAsB,QAAQ,CAAC,CAAC,EAAI,EACjI,KAAK,8BAA8B,EACnC,KAAK,UAAY,EACnB,EAAGuH,GAAS,CACV,KAAK,wBAAwB,UAAUA,CAAK,EAC5C,KAAK,UAAY,EACnB,CAAC,CACH,CAIA,+BAAgC,CAC1B,KAAK,oBAAsB,SACzB,KAAK,oBAAsB,EAC7B,KAAK,2BAA6B,KAAK,YAAY,IAAI,+DAA+D,EAEtH,KAAK,2BAA6B,KAAK,YAAY,IAAI,6DAA6D,EAAE,QAAQ,MAAO,KAAK,kBAAkB,SAAS,CAAC,EAG5K,CACA,MAAO,CACL,KAAK,UAAO,SAAyCrM,EAAmB,CACtE,OAAO,IAAKA,GAAqB9E,GAA4B+J,EAAqBT,EAAW,EAAMS,EAAkBhK,EAAqB,EAAMgK,EAAuB4H,EAAuB,EAAM5H,EAAuB4D,EAAe,CAAC,CAC7O,CACF,CACA,MAAO,CACL,KAAK,UAAyBnI,EAAkB,CAC9C,KAAMxF,EACN,UAAW,CAAC,CAAC,oBAAoB,CAAC,EAClC,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,EAAG,UAAU,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,EAAG,uBAAuB,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,EAAG,YAAY,EAAG,CAAC,EAAG,MAAO,gBAAgB,EAAG,CAAC,EAAG,aAAc,QAAS,SAAS,EAAG,CAAC,eAAgB,OAAQ,EAAG,kBAAmB,EAAG,WAAW,EAAG,CAAC,EAAG,KAAK,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,cAAe,yBAA0B,EAAG,SAAU,SAAS,EAAG,CAAC,cAAe,uBAAwB,EAAG,UAAW,UAAU,EAAG,CAAC,EAAG,WAAW,EAAG,CAAC,EAAG,YAAa,2BAA4B,EAAG,SAAS,EAAG,CAAC,MAAO,iCAAkC,EAAG,WAAY,UAAU,EAAG,CAAC,EAAG,UAAU,EAAG,CAAC,OAAQ,OAAQ,YAAa,MAAO,KAAM,UAAW,KAAM,iCAAkC,kBAAmB,UAAW,OAAQ,UAAW,WAAY,GAAI,WAAY,IAAK,EAAG,eAAgB,UAAU,EAAG,CAAC,MAAO,iCAAkC,WAAY,KAAM,EAAG,WAAY,UAAU,EAAG,CAAC,kBAAmB,UAAW,KAAM,iCAAkC,EAAG,SAAS,EAAG,CAAC,EAAG,YAAa,kBAAmB,WAAY,iBAAiB,EAAG,CAAC,WAAY,8BAA8B,EAAG,CAAC,cAAe,uBAAwB,EAAG,SAAU,UAAW,UAAU,CAAC,EAClqC,SAAU,SAA0C7Y,EAAIC,EAAK,CACvDD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACpDC,EAAO,CAAC,EACRC,EAAO,EAAG,SAAS,EACnBC,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACjEkB,EAAU,EAAG,kBAAmB,CAAC,EACjCf,EAAa,EACbgB,EAAW,GAAIqG,GAAiD,GAAI,GAAI,OAAQ,CAAC,EAAE,GAAII,GAAiD,EAAG,EAAG,MAAO,CAAC,EACtJzH,EAAa,EAAE,EAAE,EACjBH,EAAe,GAAI,MAAO,EAAE,EAC5BmB,EAAW,GAAI0G,GAAiD,EAAG,EAAG,MAAM,EAC5E7H,EAAe,GAAI,YAAa,EAAE,EAClCE,EAAO,GAAI,SAAS,EACpBW,EAAW,SAAU,UAAyE,CAC/F,OAAOd,EAAI,QAAQ,CACrB,CAAC,EACEI,EAAa,EACbgB,EAAW,GAAI2G,GAAiD,EAAG,EAAG,YAAa,EAAE,EACrF3H,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAG,+CAA+C,CAAC,EACvFF,EAAU,CAAC,EACXsB,EAAW,aAAc7B,EAAI,UAAU,EAAE,QAASA,EAAI,mBAAqBA,EAAI,mBAAmB,aAAe,IAAI,EAAE,UAAWA,EAAI,0BAA0B,EAChKO,EAAU,EACVgB,EAAcvB,EAAI,oBAAsBA,EAAI,kBAAoB,EAAI,GAAK,EAAE,EAC3EO,EAAU,EACVgB,EAAcvB,EAAI,oBAAsBA,EAAI,oBAAsB,EAAI,GAAK,EAAE,EAC7EO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,UAAY,GAAK,EAAE,EACrCO,EAAU,EACVsB,EAAW,UAAcmB,GAAgB,GAAIwH,GAAS/J,EAAY,GAAI,GAAI,4DAA4D,EAAGT,EAAI,eAAe,KAAMA,EAAI,gBAAgB,IAAI,CAAC,EAC3LO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,kBAAoB,EAAI,GAAK,EAAE,EAExD,EACA,aAAc,CAAImgB,GAAY0R,GAAkB/B,GAAyBC,GAAoB+B,GAAyBC,GAAsBC,GAAuBC,GAAuBC,GAAsBC,GAA2BC,GAAuBlB,GAA8BC,GAAoB5S,EAAW,EAC/T,OAAQ,CAAC;AAAA,CAAwP,EACjQ,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO3F,CACT,GAAG,EAQCC,GAA+B,SAAUA,EAAiB,CAC5D,OAAAA,EAAgBA,EAAgB,SAAc,CAAC,EAAI,WACnDA,EAAgBA,EAAgB,QAAa,CAAC,EAAI,UAClDA,EAAgBA,EAAgB,OAAY,CAAC,EAAI,SAC1CA,CACT,EAAEA,IAAmB,CAAC,CAAC,EAQnBC,GAAgC,SAAUA,EAAkB,CAC9D,OAAAA,EAAiBA,EAAiB,aAAkB,CAAC,EAAI,eACzDA,EAAiBA,EAAiB,cAAmB,CAAC,EAAI,gBAC1DA,EAAiBA,EAAiB,qBAA0B,CAAC,EAAI,uBACjEA,EAAiBA,EAAiB,cAAmB,CAAC,EAAI,gBAC1DA,EAAiBA,EAAiB,gBAAqB,CAAC,EAAI,kBAC5DA,EAAiBA,EAAiB,aAAkB,CAAC,EAAI,eACzDA,EAAiBA,EAAiB,YAAiB,CAAC,EAAI,cACjDA,CACT,EAAEA,IAAoB,CAAC,CAAC,EAIpBC,GAAoC,SAAUA,EAAsB,CACtE,OAAAA,EAAqBA,EAAqB,KAAU,CAAC,EAAI,OACzDA,EAAqBA,EAAqB,QAAa,CAAC,EAAI,UAC5DA,EAAqBA,EAAqB,QAAa,CAAC,EAAI,UAC5DA,EAAqBA,EAAqB,MAAW,CAAC,EAAI,QACnDA,CACT,EAAEA,IAAwB,CAAC,CAAC,EACtBC,GAAN,KAAsB,CACpB,OAAO,iBAAkB,CAiBvB,MAhBe,CAAC,CACd,KAAM,EACN,MAAO,8DACT,EAAG,CACD,KAAM,EACN,MAAO,kEACT,EAAG,CACD,KAAM,EACN,MAAO,kEACT,EAAG,CACD,KAAM,EACN,MAAO,kEACT,EAAG,CACD,KAAM,EACN,MAAO,8DACT,CAAC,CAEH,CACA,OAAO,aAAc,CAcnB,MAbe,CAAC,CACd,KAAMD,GAAqB,MAC3B,MAAO,2DACT,EAAG,CACD,KAAMA,GAAqB,QAC3B,MAAO,6DACT,EAAG,CACD,KAAMA,GAAqB,QAC3B,MAAO,6DACT,EAAG,CACD,KAAMA,GAAqB,KAC3B,MAAO,0DACT,CAAC,CAEH,CACF,EACIE,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,aAAc,CAEZ,KAAK,uBAAyB4E,EAAMwU,EAAmB,UAAU,EAEjE,KAAK,MAAQxU,EAAM,CAAC,CAAC,EAErB,KAAK,cAAgBA,EAAM,EAAK,EAEhC,KAAK,yBAA2BA,EAAM,EAAK,EAE3C,KAAK,oBAAsBC,EAAO,EAElC,KAAK,wBAA0BuU,EAC/B,KAAK,gBAAkBrT,GAEvB,KAAK,4BAA8BJ,EAAS,IAAM,KAAK,MAAM,EAAE,KAAK0T,GAAQA,EAAK,OAASvZ,GAAqB,KAAK,CAAC,CACvH,CAIA,mBAAoB,CAClB,KAAK,oBAAoB,KAAK,CAChC,CACA,MAAO,CACL,KAAK,UAAO,SAA+B2E,EAAmB,CAC5D,OAAO,IAAKA,GAAqBzE,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBmF,EAAkB,CAC9C,KAAMnF,EACN,UAAW,CAAC,CAAC,mBAAmB,CAAC,EACjC,OAAQ,CACN,uBAAwB,CAAC,EAAG,wBAAwB,EACpD,MAAO,CAAC,EAAG,OAAO,EAClB,cAAe,CAAC,EAAG,eAAe,EAClC,yBAA0B,CAAC,EAAG,0BAA0B,CAC1D,EACA,QAAS,CACP,oBAAqB,qBACvB,EACA,WAAY,GACZ,SAAU,CAAIoF,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,wBAAyB,GAAI,qBAAsB,QAAS,EAAG,iBAAkB,EAAG,QAAS,wBAAyB,YAAY,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,kBAAmB,EAAG,SAAS,CAAC,EACvM,SAAU,SAAgCte,EAAIC,EAAK,CAC7CD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAuD,CAC5E,OAAOd,EAAI,kBAAkB,CAC/B,CAAC,EACEmB,EAAU,EAAG,IAAK,CAAC,EACnBC,EAAW,EAAG6G,GAAsC,EAAG,EAAG,MAAO,CAAC,EAClE7H,EAAa,GAEdL,EAAK,IACJ8B,EAAW,wBAAyB7B,EAAI,gBAAgB,SAAS,EAAE,aAAiBS,EAAY,EAAG,EAAG,qDAAqD,CAAC,EAC5J2N,GAAY,WAAYpO,EAAI,uBAAuB,IAAMA,EAAI,wBAAwB,WAAaA,EAAI,MAAM,EAAE,SAAW,GAAK,CAACA,EAAI,yBAAyB,GAAK,IAAI,EACrKO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,MAAM,EAAE,OAAS,GAAKA,EAAI,yBAAyB,EAAI,EAAI,EAAE,EAEtF,EACA,aAAc,CAACmgB,GAASE,GAAY/B,EAAwBC,GAAaE,EAA2B,EACpG,OAAQ,CAAC;AAAA,CAA8xB,EACvyB,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOxF,CACT,GAAG,EAICC,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,aAAc,CAEZ,KAAK,YAAc,IAAI+F,GACvB,KAAK,qBAAuBlG,GAE5B,KAAK,cAAgB,IACrB,KAAK,gBAAkBwE,EAAOgV,EAAe,EAC7C,KAAK,gBAAkBhV,EAAOgJ,EAAe,EAC7C,KAAK,YAAchJ,EAAO2E,EAAW,CACvC,CAEA,IAAI,KAAKqC,EAAO,CACd,KAAK,UAAYA,EACjB,KAAK,kBAAoB,KAAK,cAChC,CAEA,IAAI,MAAO,CACT,OAAO,KAAK,SACd,CAMA,QAAQpG,EAAO,CACbA,EAAM,gBAAgB,EACtB,KAAK,UAAU,CACjB,CAMA,WAAWA,EAAO,CACX,KAAK,iBAGV,KAAK,YAAcA,EAAM,QAAQ,CAAC,EAAE,QACtC,CAMA,UAAUA,EAAO,CACf,GAAK,KAAK,iBAGV,KAAK,YAAcA,EAAM,QAAQ,CAAC,EAAE,QAAU,KAAK,YAC/C,KAAK,YAAc,GAAG,CACxB,IAAMqU,EAAU,KAAK,IAAI,EAAI,KAAK,YAAc,KAAK,cAAe,EAAG,EACvE,KAAK,0BAA4B,GACjC,KAAK,MAAQ,CACX,UAAW,cAAgB,KAAK,YAAc,MAC9C,QAAAA,CACF,CACF,CACF,CAMA,UAAW,CACJ,KAAK,iBAGN,KAAK,YAAc,KAAK,cAC1B,KAAK,UAAU,EAEf,KAAK,WAAW,EAEpB,CAEA,IAAI,gBAAiB,CAEnB,GADoBC,GAAU,UAAU,IAAI,KAAK,KAAK,KAAK,SAAS,EAAG,IAAI,IAAM,EAChE,CACf,IAAMC,EAAUD,GAAU,oBAAoB,IAAI,KAAQ,IAAI,KAAK,KAAK,KAAK,SAAS,CAAC,EACvF,OAAIC,IAAY,EACP,KAAK,YAAY,IAAI,yDAAyD,EAC5EA,EAAU,GACZ,KAAK,YAAY,IAAI,0DAA0D,EAAE,QAAQ,MAAOA,EAAQ,SAAS,CAAC,EAElH,IAAIC,GAAkB,KAAK,eAAe,EAAE,UAAU,KAAK,KAAK,UAAU,SAAS,EAAG,IAAI,CAErG,KACE,QAAO,IAAIA,GAAkB,KAAK,eAAe,EAAE,UAAU,KAAK,KAAK,UAAU,SAAS,EAAG,IAAI,CAErG,CAIA,YAAa,CACX,KAAK,MAAQ,CACX,UAAW,gBACX,QAAS,CACX,EACA,KAAK,0BAA4B,EACnC,CAIA,WAAY,CACN,KAAK,KAAK,OAAS5Z,GAAqB,MAC1C,KAAK,gBAAgB,UAAU,CAC7B,MAAO,KAAK,YAAY,IAAI,0EAA0E,EACtG,OAAQ,KAAK,YAAY,IAAI,2EAA2E,EACxG,UAAW,CACT,IAAKoF,GAAS,CACZA,GAAO,gBAAgB,EACvBA,GAAO,eAAe,EACtB,KAAK,WAAW,CAClB,EACA,GAAIA,GAAS,CACXA,GAAO,gBAAgB,EACvBA,GAAO,eAAe,EACtB,KAAK,WAAW,CAClB,CACF,CACF,CAAC,EAED,KAAK,WAAW,CAEpB,CAIA,YAAa,CACX,KAAK,gBAAkB,GACvB,WAAW,IAAM,CACf,KAAK,YAAY,KAAK,CACxB,EAAG,GAAG,CACR,CACA,MAAO,CACL,KAAK,UAAO,SAA+BT,EAAmB,CAC5D,OAAO,IAAKA,GAAqBxE,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBkF,EAAkB,CAC9C,KAAMlF,EACN,UAAW,CAAC,CAAC,mBAAmB,CAAC,EACjC,OAAQ,CACN,eAAgB,iBAChB,KAAM,MACR,EACA,QAAS,CACP,YAAa,aACf,EACA,WAAY,GACZ,SAAU,CAAImF,CAAmB,EACjC,MAAO,EACP,KAAM,GACN,OAAQ,CAAC,CAAC,EAAG,iBAAkB,EAAG,aAAc,YAAa,WAAY,UAAW,SAAS,EAAG,CAAC,EAAG,qBAAqB,EAAG,CAAC,EAAG,sBAAsB,EAAG,CAAC,kBAAmB,GAAI,EAAG,OAAO,EAAG,CAAC,EAAG,iBAAkB,EAAG,SAAS,EAAG,CAAC,eAAgB,GAAI,EAAG,UAAW,EAAG,WAAW,EAAG,CAAC,EAAG,aAAc,YAAY,EAAG,CAAC,EAAG,eAAgB,YAAY,EAAG,CAAC,EAAG,aAAc,aAAc,EAAG,OAAO,CAAC,EACtY,SAAU,SAAgCte,EAAIC,EAAK,CAC7CD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,aAAc,SAA0DI,EAAQ,CAC5F,OAAOlB,EAAI,WAAWkB,CAAM,CAC9B,CAAC,EAAE,YAAa,SAAyDA,EAAQ,CAC/E,OAAOlB,EAAI,UAAUkB,CAAM,CAC7B,CAAC,EAAE,WAAY,UAA0D,CACvE,OAAOlB,EAAI,SAAS,CACtB,CAAC,EACEC,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACvCmB,EAAW,EAAG+G,GAAsC,EAAG,EAAG,MAAO,CAAC,EAClElI,EAAe,EAAG,MAAO,CAAC,EAC1BC,EAAO,CAAC,EACRE,EAAa,EAAE,EACfgB,EAAW,EAAGgH,GAAsC,EAAG,EAAG,MAAO,CAAC,EAClEhI,EAAa,EAAE,EACfgB,EAAW,EAAGiH,GAAsC,EAAG,EAAG,MAAO,CAAC,EAAE,EAAGC,GAAsC,EAAG,EAAG,MAAO,CAAC,GAE5HvI,EAAK,IACJ8B,EAAW,UAAW7B,EAAI,KAAK,EAAE,UAAWA,EAAI,qBAAqBA,EAAI,KAAK,IAAI,CAAC,EAAE,YAAaA,EAAI,gBAAkB,QAAU,EAAE,EACpIO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,KAAK,MAAQ,EAAI,EAAE,EACrCO,EAAU,EACVsB,EAAW,UAAcK,EAAgB,EAAG6R,GAAM,CAAC/T,EAAI,KAAK,KAAK,CAAC,EAClEO,EAAU,EACVC,EAAkBR,EAAI,iBAAiB,EACvCO,EAAU,EACVgB,EAAcvB,EAAI,KAAK,KAAO,EAAI,EAAE,EACpCO,EAAU,EACVgB,EAAc,CAACvB,EAAI,iBAAmB,CAACA,EAAI,eAAiB,EAAI,EAAE,EAClEO,EAAU,EACVgB,EAAc,CAACvB,EAAI,iBAAmBA,EAAI,eAAiB,EAAI,EAAE,EAExE,EACA,aAAc,CAAC4yB,GAAiBzS,GAAY0S,GAASvU,EAAqBwU,EAAkB,EAC5F,OAAQ,CAAC;AAAA,CAAu/E,EAChgF,cAAe,EACf,KAAM,CACJ,UAAW,CAAC7M,GAAQ,WAAY,CAACC,GAAW,aAAc,CAAC6M,GAAS,CAAC3M,GAAQ,YAAaD,GAAM,CAC9F,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,EAAGC,GAAQ,YAAaD,GAAM,CAC9B,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAGF,GAAQ,YAAa,CAACC,GAAW,aAAc,CAACC,GAAM,CAC/D,UAAW,mBACb,CAAC,EAAGC,GAAQ,WAAYD,GAAM,CAC5B,UAAW,eACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CACT,CACF,CAAC,CACH,CACF,CACA,OAAOjN,CACT,GAAG,EAQCC,IAA8B,IAAM,CACtC,MAAMA,CAAc,CAClB,MAAO,CACL,KAAK,UAAY,GACnB,CAMA,OAAO,YAAY6Z,EAAQ,CAEzB,OADeA,EAAO,KAAK,KAAK,SAAS,CAE3C,CACA,MAAO,CACL,KAAK,UAAO,SAA+BtV,EAAmB,CAC5D,OAAO,IAAKA,GAAqBvE,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BwE,EAAmB,CAChD,MAAOxE,EACP,QAASA,EAAc,SACzB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA+B,IAAM,CACvC,MAAMA,CAAe,CACnB,YAAY6Z,EAAiB,CAC3B,KAAK,gBAAkBA,EAEvB,KAAK,aAAe,IAAIhU,GAExB,KAAK,mBAAqB,IAAIA,GAE9B,KAAK,iBAAmB,IAAIA,GAE5B,KAAK,yBAA2B,IAAIA,GAEpC,KAAK,cAAgB,IAAIA,EAC3B,CAMA,KAAKiU,EAAaC,EAAY,CACxB,KAAK,sBAAsB,QAAkBd,EAAmB,YAGpE,KAAK,OAASa,EACd,KAAK,iBAAmB,OACxB,KAAK,qBAAuB,OAC5B,KAAK,iBAAiBC,CAAU,EAChC,KAAK,eAAe,EACtB,CAMA,wBAAwBC,EAAQ,CAC9B,KAAK,iBAAiBA,CAAM,CAC9B,CAIA,qBAAsB,CACpB,KAAK,iBAAiB,KAAK,MAAM,CACnC,CAMA,qBAAqBC,EAAU,CAC7B,KAAK,qBAAqB,OAAO,4BAA6BA,CAAQ,EAAE,KAAK,IAAM,CACjF,KAAK,iBAAiB,KAAKA,CAAQ,CACrC,CAAC,EAAE,MAAMC,GAAM,CACb,KAAK,cAAc,KAAKxa,GAAiB,aAAa,CACxD,CAAC,CACH,CAIA,iBAAiBqa,EAAY,CAC3B,KAAK,qBAAuB,IAAYI,GAAqB,EAAE,iBAAyBC,EAAS,KAAK,EAAE,QAAQL,EAAa,iBAAkB,CAC7I,mBAAoB,IAAM,KAAK,gBAAgB,SAAS,CAC1D,CAAC,EAAE,uBAAuB,EAAE,MAAM,EAClC,KAAK,qBAAqB,QAAQ,IAAM,CACtC,KAAK,gBAAgB,CACvB,CAAC,EACD,KAAK,qBAAqB,GAAG,wBAAyB3Q,GAAQ,CAC5D,KAAK,gBAAgBA,CAAI,CAC3B,CAAC,EACD,KAAK,qBAAqB,eAAe,IAAM,CAC7C,KAAK,cAAc,KAAK1J,GAAiB,YAAY,CACvD,CAAC,EACD,KAAK,qBAAqB,cAAc,IAAM,CAC5C,KAAK,cAAc,KAAKA,GAAiB,WAAW,EACpD,KAAK,oBAAoB,CAC3B,CAAC,CACH,CAIM,gBAAiB,QAAA2E,EAAA,sBACrB,MAAM,KAAK,qBAAqB,MAAM,EAAE,KAAK,IAAM,CAEjD,KAAK,oBAAoB,CAC3B,CAAC,EAAE,MAAM,IAAM,CACb,KAAK,cAAc,KAAK3E,GAAiB,YAAY,CACvD,CAAC,CACH,GAIM,qBAAsB,QAAA2E,EAAA,sBAE1B,MAAM,KAAK,qBAAqB,OAAO,iCAAkC,KAAK,MAAM,EAAE,KAAKgW,GAAgB,CACzG,KAAK,iBAAmBA,EACxB,KAAK,mBAAmB,KAAK,CAC/B,CAAC,EAAE,MAAM,IAAM,CACb,KAAK,cAAc,KAAK3a,GAAiB,aAAa,CACxD,CAAC,CACH,GAMM,iBAAiBsa,EAAQ,QAAA3V,EAAA,sBAC7B,MAAM,KAAK,qBAAqB,OAAO,wBAAyB2V,CAAM,EAAE,KAAK,IAAM,CACjF,KAAK,sBAAwB,GAC7B,KAAK,yBAAyB,KAAK,CACrC,CAAC,EAAE,MAAM,IAAM,CACb,KAAK,cAAc,KAAKta,GAAiB,oBAAoB,CAC/D,CAAC,CACH,GAIA,iBAAkB,CAChB,KAAK,cAAc,KAAKA,GAAiB,eAAe,CAC1D,CAMA,gBAAgB4a,EAAc,CAC5B,KAAK,aAAa,KAAKA,CAAY,CACrC,CACA,MAAO,CACL,KAAK,UAAO,SAAgChW,EAAmB,CAC7D,OAAO,IAAKA,GAAqBtE,GAAmB6I,GAAcsQ,EAAe,CAAC,CACpF,CACF,CACA,MAAO,CACL,KAAK,WAA0B5U,EAAmB,CAChD,MAAOvE,EACP,QAASA,EAAe,UACxB,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA+B,IAAM,CACvC,MAAMA,CAAe,CASnB,YAAYoY,EAAiB3Q,EAAa6S,EAAeC,EAAmB,CAC1E,KAAK,gBAAkBnC,EACvB,KAAK,YAAc3Q,EACnB,KAAK,cAAgB6S,EACrB,KAAK,kBAAoBC,EAEzB,KAAK,iBAAmB,IAAI3U,GAE5B,KAAK,gBAAkB,IAEvB,KAAK,KAAO,CAAC,CACX,GAAI,EACJ,MAAO,KAAK,YAAY,IAAI,kDAAkD,CAChF,EAAG,CACD,GAAI,EACJ,MAAO,KAAK,YAAY,IAAI,mDAAmD,CACjF,CAAC,EAED,KAAK,UAAYjG,GAAgB,gBAAgB,EAEjD,KAAK,OAASA,GAAgB,YAAY,EAC1C,KAAK,eAAiB,KAAK,cAAc,eAC3C,CAIA,UAAW,CACT,KAAK,kBAAkB,KAAK,KAAK,CAAC,CAAC,EACnC,KAAK,aAAa,UAAU,IAAM,CAChC,KAAK,eAAe,CACtB,CAAC,CACH,CAIA,kBAAkB6a,EAAa,CAC7B,KAAK,YAAcA,EACnB,KAAK,iBAAiB,EACtB,KAAK,eAAe,CACtB,CAMA,UAAUvB,EAAMwB,EAAW,CACzBA,EAAU,MAAM,OAAOA,EAAU,MAAM,QAAQxB,CAAI,EAAG,CAAC,EACvD,KAAK,iBAAiB,KAAK,CAACA,CAAI,CAAC,EAC7BwB,EAAU,MAAM,SAAW,GAC7B,KAAK,gBAAgBA,CAAS,CAElC,CAOA,WAAW3V,EAAO2V,EAAW,CAC3B3V,EAAM,gBAAgB,EACR2V,EAAU,MAAM,OAAOxB,GAAQA,EAAK,OAASvZ,GAAqB,KAAK,EAC3E,OAAS,EACjB,KAAK,gBAAgB,UAAU,CAC7B,MAAO,KAAK,YAAY,IAAI,2EAA2E,EACvG,OAAQ,KAAK,YAAY,IAAI,4EAA4E,EACzG,UAAW,CACT,IAAKoF,GAAS,CACZA,GAAO,gBAAgB,EACvBA,GAAO,eAAe,EACtB,KAAK,gBAAgB2V,CAAS,CAChC,EACA,GAAI3V,GAAS,CACXA,GAAO,gBAAgB,EACvBA,GAAO,eAAe,CACxB,CACF,CACF,CAAC,EAED,KAAK,gBAAgB2V,CAAS,CAElC,CAIA,gBAAiB,CACf,KAAK,WAAa,KAAK,aAAa,KAAO,EAAwB,KAAK,qBAAqB,EAAI,KAAK,kBAAkB,EACxH,KAAK,kBAAkB,cAAc,CACvC,CAMA,gBAAgBA,EAAW,CACzBA,EAAU,gBAAkB,GAC5B,KAAK,kBAAkB,cAAc,EACrC,WAAW,IAAM,CACf,KAAK,WAAW,OAAO,KAAK,WAAW,QAAQA,CAAS,EAAG,CAAC,EAC5D,KAAK,iBAAiB,KAAKA,EAAU,KAAK,CAC5C,EAAG,GAAG,CACR,CAIA,sBAAuB,CACrB,IAAMC,EAAa,CAAC,EACpB,YAAK,UAAU,QAAQC,GAAY,CACjC,IAAMC,EAAQ,KAAK,MAAM,OAAO3B,GAAQ,CACtC,IAAM4B,EAAO,IAAI,KAAK5B,EAAK,SAAS,EACpC,OAAQ0B,EAAS,KAAM,CACrB,IAAK,GACH,OAAOvB,GAAU,QAAQyB,CAAI,EAC/B,IAAK,GACH,OAAOzB,GAAU,YAAYyB,CAAI,EACnC,IAAK,GACH,OAAOzB,GAAU,WAAWyB,CAAI,GAAKzB,GAAU,SAASyB,EAAMzB,GAAU,iBAAiB,CAAC,EAC5F,IAAK,GACH,OAAOA,GAAU,cAAcyB,CAAI,IAAMzB,GAAU,cAAc,IAAI,IAAM,EAAI,EACjF,IAAK,GACH,OAAOyB,EAAOzB,GAAU,UAAUA,GAAU,WAAW,IAAI,KAAQ,MAAM,EAAG,GAAI,OAAO,CAC3F,CACF,CAAC,EACGwB,EAAM,OAAS,GACjBF,EAAW,KAAK,CACd,MAAO,KAAK,YAAY,IAAIC,EAAS,KAAK,EAC1C,MAAAC,CACF,CAAC,CAEL,CAAC,EACMF,CACT,CAIA,mBAAoB,CAClB,IAAMA,EAAa,CAAC,EACpB,YAAK,OAAO,QAAQI,GAAS,CAC3B,IAAMF,EAAQ,KAAK,MAAM,OAAO3B,GAAQA,EAAK,OAAS6B,EAAM,IAAI,EAC5DF,EAAM,OAAS,GACjBF,EAAW,KAAK,CACd,MAAO,KAAK,YAAY,IAAII,EAAM,KAAK,EACvC,MAAAF,CACF,CAAC,CAEL,CAAC,EACMF,CACT,CAIA,kBAAmB,CACb,KAAK,aACP,KAAK,WAAW,cAAc,UAAY,EAE9C,CACA,MAAO,CACL,KAAK,UAAO,SAAgCrW,EAAmB,CAC7D,OAAO,IAAKA,GAAqBrE,GAAmBsJ,EAAuB4D,EAAe,EAAM5D,EAAqBT,EAAW,EAAMS,EAAuB5D,EAAa,EAAM4D,EAAqByR,EAAiB,CAAC,CACzN,CACF,CACA,MAAO,CACL,KAAK,UAAyBhW,EAAkB,CAC9C,KAAM/E,EACN,UAAW,CAAC,CAAC,oBAAoB,CAAC,EAClC,UAAW,SAA8BtZ,EAAIC,EAAK,CAIhD,GAHID,EAAK,GACJ8f,EAAY7L,GAAM,CAAC,EAEpBjU,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,WAAaggB,EAAG,MACnE,CACF,EACA,OAAQ,CACN,aAAc,eACd,MAAO,OACT,EACA,QAAS,CACP,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,aAAc,EAAE,EAAG,CAAC,eAAgB,EAAE,EAAG,CAAC,EAAG,oBAAqB,OAAQ,oBAAoB,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,uBAAuB,EAAG,CAAC,EAAG,oBAAoB,EAAG,CAAC,EAAG,0BAA0B,EAAG,CAAC,EAAG,2BAA4B,EAAG,OAAO,EAAG,CAAC,EAAG,mBAAoB,yBAAyB,EAAG,CAAC,EAAG,cAAe,OAAQ,gBAAgB,CAAC,EACtW,SAAU,SAAiCte,EAAIC,EAAK,CAClD,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,oBAAqB,CAAC,EACxCa,EAAW,oBAAqB,SAAgFI,EAAQ,CACzH,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,kBAAkBkB,CAAM,CAAC,CACrD,CAAC,EACEd,EAAa,EACbH,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7B+D,GAAiB,EAAG4E,GAA+B,GAAI,EAAG,MAAO,EAAM3E,EAAyB,EAChG7D,EAAa,EACbgB,EAAW,EAAG2H,GAAuC,EAAG,EAAG,cAAe,KAAM,EAAM/G,EAAsB,CACjH,CACIjC,EAAK,IACJ8B,EAAW,OAAQ7B,EAAI,IAAI,EAAE,qBAAsBA,EAAI,WAAW,EAClEO,EAAU,CAAC,EACX2D,GAAWlE,EAAI,UAAU,EAEhC,EACA,aAAc,CAACse,EAAwBC,GAAarF,GAAe0Z,GAAiBxS,GAAqBiU,GAAWC,GAAuBC,EAAa,EACxJ,OAAQ,CAAC;AAAA,CAAsqC,EAC/qC,cAAe,EACf,KAAM,CACJ,UAAW,CAACtO,GAAQ,gBAAiB,CAACC,GAAW,eAAgB,CAAC6M,GAAS,CAAC3M,GAAQ,YAAaD,GAAM,CACrG,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,EAAGC,GAAQ,YAAaD,GAAM,CAC9B,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAGF,GAAQ,WAAY,CAACC,GAAW,SAAU,CAAC6M,GAAS,CAAC3M,GAAQ,YAAaD,GAAM,CACzF,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,EAAGC,GAAQ,YAAaD,GAAM,CAC9B,OAAQ,IACR,QAAS,EACT,UAAW,mBACb,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CACX,CACF,CAAC,CACH,CACF,CACA,OAAO9M,CACT,GAAG,EAICC,IAA0C,IAAM,CAClD,MAAMA,CAA0B,CAC9B,aAAc,CAEZ,KAAK,OAASuE,EAAM,SAAS,EAE7B,KAAK,yBAA2B2W,GAAM,EAEtC,KAAK,MAAQA,GAAM,CAAC,CAAC,EAErB,KAAK,aAAe,IAAIvV,GAExB,KAAK,mBAAqBoT,EAE1B,KAAK,WAAa,GAElB,KAAK,SAAW,EAEhB,KAAK,gBAAkB,IAEvB,KAAK,wBAA0B,CAAC,EAEhC,KAAK,2BAA6B,IAClC,KAAK,WAAa9U,EAAO+I,EAAU,EACnC,KAAK,eAAiB/I,EAAOnE,EAAc,EAC3C,KAAK,gBAAkBmE,EAAOgJ,EAAe,EAC7C,KAAK,YAAchJ,EAAO2E,EAAW,EACrC,KAAK,kBAAoB3E,EAAO2B,EAAiB,EACjD,KAAK,iBAAmB3B,EAAOsF,EAAgB,EAC/C,KAAK,kBAAoBtF,EAAOkX,EAAiB,EACjD,KAAK,YAAclX,EAAO8L,EAAW,EACrC,KAAK,WAAa9L,EAAO6E,EAAU,EACnC,KAAK,gBAAkB7E,EAAOgV,EAAe,CAC/C,CAEA,IAAI,eAAgB,CAClB,OAAO,KAAK,kBAAkB,mBAAmB,cAAc,GAAK,KAAK,kBAAkB,mBAAmB,QAAQ,SAAW,uBACnI,CAIA,UAAW,CAET,KAAK,eAAe,aAAa,KAAK5L,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU+M,GAAgB,KAAK,cAAcA,CAAY,CAAC,EAErI,KAAK,eAAe,mBAAmB,KAAK/M,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,KAAK,iBAAiB,CAAC,EAExH,KAAK,eAAe,yBAAyB,KAAKA,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,KAAK,yBAAyB,IAAI,EAAI,CAAC,EAE9I,KAAK,eAAe,iBAAiB,KAAKA,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUnE,GAAQ,KAAK,cAAc,CAAC,EAErH,KAAK,eAAe,cAAc,KAAKmE,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU+N,GAAS,CAE7F,OADA,QAAQ,MAAM,wBAA0B5b,GAAiB4b,CAAK,CAAC,EACvDA,EAAO,CACb,KAAK5b,GAAiB,aACtB,KAAKA,GAAiB,gBACpB,CACM,KAAK,kBAAkB,yBAAyB,UAAU,QAAQ,SAAW,yBAC/E,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,uBACvC,CAAC,EAEH,aAAa,KAAK,OAAO,EACzB,KAAK,WACL,IAAM6b,EAAO,KAAK,gBAAkB,KAAK,SACzC,KAAK,QAAU,WAAW,IAAM,CAC9B,KAAK,QAAU,OACf,KAAK,YAAY,CACnB,EAAGA,CAAI,EACP,KACF,CACF,KAAK7b,GAAiB,cACpB,KAAK,iBAAiB,EACtB,MACF,KAAKA,GAAiB,aACpB,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,uBACvC,CAAC,EACD,KACJ,CACF,CAAC,EACD,KAAK,YAAY,EACjB,KAAK,WAAa,KAAK,YAAY,IAAI,qEAAqE,EAC5G,KAAK,gBAAkB,CACrB,KAAM,KAAK,KACX,OAAQ,wBACR,OAAQ,KAAK,KACb,MAAO,aACT,CACF,CAIA,aAAc,CACZ,KAAK,kBAAkB,OAAO,KAAK,EAAE,CACvC,CAIA,eAAgB,CACd,IAAM8b,EAAS,KAAK,kBAAkB,yBAAyB,UAAU,QAAQ,OAC7EA,EACEA,IAAW,wBACb,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,uBACvC,CAAC,EAED,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,wBACrC,cAAe,IAAM,CACnB,KAAK,UAAU,CACjB,CACF,CAAC,EAGH,KAAK,UAAU,CAEnB,CAIA,qBAAqBX,EAAO,CAC1BA,EAAM,QAAQ3B,GAAQ,CACpB,KAAK,wBAAwB,KAAK,CAChC,GAAIA,EAAK,GACT,OAAQA,EAAK,MACf,CAAC,EACD,KAAK,WAAWA,CAAI,CACtB,CAAC,EACD,KAAK,cAAc,CACrB,CAIA,WAAY,CACV,KAAK,kBAAkB,gBAAgB,KAAK,KAAK,eAAe,EAChE,KAAK,kBAAkB,OAAO,KAAK,KAAK,UAAU,CACpD,CAIA,aAAc,CAEZ,IAAMuC,EADU,KAAK,kBAAkB,WAAW,EACtB,YACtBC,EAAa,KAAK,WAAW,QAC7BC,EAAkB,KAAK,WAAW,aAClCC,EAAU,KAAK,aAAa,eAAe,OAAO,QAClDC,EAAS,KAAK,iBAAiB,QAAQ,GAAG,GAC1C7B,EAAS,CAACja,GAAc,YAAY,CAAC0b,CAAW,CAAC,CAAC,EACpDI,GACF7B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaI,CAAM,CAAC,CAAC,EAE1DD,GACF5B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaG,CAAO,CAAC,CAAC,EAE3DF,GAAcC,IAChB3B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaC,CAAU,CAAC,CAAC,EAChE1B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaC,EAAYC,CAAe,CAAC,CAAC,EACjF3B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaC,EAAYC,EAAiBE,CAAM,CAAC,CAAC,EACrFD,GACF5B,EAAO,KAAKja,GAAc,YAAY,CAAC0b,EAAaC,EAAYC,EAAiBC,CAAO,CAAC,CAAC,GAG9F,IAAME,EAAgB,CACpB,OAAA9B,EACA,OAAA6B,CACF,EACA,KAAK,eAAe,KAAKC,EAAe,KAAK,OAAO,CAAC,CACvD,CAIA,kBAAmB,CACjB,KAAK,MAAM,IAAI,CAAC,CAAC,EACjB,KAAK,yBAAyB,IAAI,EAAK,EAEvC,KAAK,eAAe,oBAAoB,CAC1C,CAIA,eAAgB,CACd,GAAI,KAAK,wBAAwB,OAAQ,CACvC,IAAMC,EAAgB,KAAK,wBAAwB,OAAO,EAAG,KAAK,0BAA0B,EAC5F,KAAK,eAAe,qBAAqB,CACvC,WAAY,KAAK,gBAAgB,QAAQ,GAAG,GAC5C,cAAAA,CACF,CAAC,CACH,CACF,CAMA,cAAczB,EAAc,CAC1B,IAAMlG,EAAQ,KAAK,oBAAoBkG,EAAa,QAAS,OAAO,EAC9D0B,EAAO,KAAK,oBAAoB1B,EAAa,QAAS,SAAS,EACrE,GAAIlG,GAAS4H,EAAM,CACjB,IAAM9C,EAAO,CACX,GAAIoB,EAAa,GACjB,OAAQA,EAAa,OACrB,KAAMA,EAAa,iBACnB,MAAOlG,EAAQA,EAAM,MAAQ,OAC7B,KAAM4H,EAAOA,EAAK,MAAQ,OAC1B,UAAW1B,EAAa,SAC1B,EACIA,EAAa,mBAAqB3a,GAAqB,OAASqc,GAAQ,KAAK,yBAAyB,GACxG,KAAK,gBAAgB,KAAK,IAAIlO,GAAYkO,EAAK,MAAO,KAAMjO,GAAY,KAAK,CAAC,EAEhF,KAAK,QAAQmL,CAAI,CACnB,CACF,CAOA,oBAAoB+C,EAAUC,EAAK,CACjC,IAAMC,EAAgBF,EAAS,OAAOhK,GAAKA,EAAE,IAAI,YAAY,IAAMiK,CAAG,EACtE,GAAI,CAACC,EACH,OAEF,IAAIjE,EAAUiE,EAAc,KAAKlK,GAAKA,EAAE,UAAY,KAAK,gBAAgB,QAAQ,GAAG,OAAO,EAC3F,OAAKiG,IACHA,EAAUiE,EAAc,KAAKlK,GAAKA,EAAE,QAAQ,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,IAAM,KAAK,gBAAgB,QAAQ,GAAG,QAAQ,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,CAAC,EAC1IiG,IACHA,EAAUiE,EAAc,KAAKlK,GAAKA,EAAE,UAAY,OAAO,EAClDiG,IACHA,EAAUiE,EAAc,CAAC,KAIxBjE,CACT,CAIA,QAAQgB,EAAM,CACZ,KAAK,MAAM,EAAE,KAAKA,CAAI,EACtB,KAAK,UAAU,CACjB,CAMA,WAAWA,EAAM,CACf,KAAK,MAAM,EAAE,OAAO,KAAK,MAAM,EAAE,QAAQA,CAAI,EAAG,CAAC,EAC7C,KAAK,MAAM,EAAE,SAAW,GAC1B,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,uBACvC,CAAC,CAEL,CAIA,WAAY,CACV,KAAK,MAAM,EAAE,KAAK,CAAC1Q,EAAGkL,IAAM,IAAI,KAAKA,EAAE,SAAS,EAAE,QAAQ,EAAI,IAAI,KAAKlL,EAAE,SAAS,EAAE,QAAQ,CAAC,CAC/F,CACA,MAAO,CACL,KAAK,UAAO,SAA2ClE,EAAmB,CACxE,OAAO,IAAKA,GAAqBpE,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB8E,EAAkB,CAC9C,KAAM9E,EACN,UAAW,CAAC,CAAC,kBAAkB,CAAC,EAChC,UAAW,SAAyCvZ,EAAIC,EAAK,CAK3D,GAJID,EAAK,IACJ8f,EAAY5L,GAAM,CAAC,EACnB4L,EAAY3L,GAAM,EAAGshB,EAAU,GAEhCz1B,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,KAAOggB,EAAG,OACxDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,KAAOggB,EAAG,MAC7D,CACF,EACA,OAAQ,CACN,OAAQ,CAAC,EAAG,QAAQ,EACpB,yBAA0B,CAAC,EAAG,0BAA0B,EACxD,MAAO,CAAC,EAAG,OAAO,CACpB,EACA,QAAS,CACP,yBAA0B,iCAC1B,MAAO,aACT,EACA,WAAY,GACZ,SAAU,CAAIyV,GAAmB,CAAC,CAAC,EAAMpX,CAAmB,EAC5D,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,OAAQ,EAAE,EAAG,CAAC,OAAQ,EAAE,EAAG,CAAC,EAAG,sBAAuB,UAAW,yBAA0B,QAAS,gBAAiB,0BAA0B,EAAG,CAAC,EAAG,QAAS,cAAc,EAAG,CAAC,EAAG,mBAAoB,QAAS,cAAc,CAAC,EAC1O,SAAU,SAA4Cte,EAAIC,EAAK,CAC7D,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,oBAAqB,EAAG,CAAC,EAC3Ca,EAAW,sBAAuB,UAA+F,CAClI,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,cAAc,CAAC,CAC3C,CAAC,EACEI,EAAa,EACbgB,EAAW,EAAGgI,GAAkD,EAAG,EAAG,cAAe,KAAM,EAAMpH,EAAsB,CAC5H,CACIjC,EAAK,GACJ8B,EAAW,UAAcK,EAAgB,EAAGiS,GAAMnU,EAAI,aAAa,CAAC,EAAE,yBAA2BA,EAAI,gBAAkB,MAAcA,EAAI,eAAe,qBAAwBA,EAAI,eAAe,qBAAqB,MAAQA,EAAI,mBAAmB,YAAY,EAAE,QAASA,EAAI,MAAM,CAAC,EAAE,gBAAiBA,EAAI,aAAa,EAAE,2BAA4BA,EAAI,yBAAyB,CAAC,CAEhY,EACA,aAAc,CAACqZ,GAAgBJ,GAAeqb,GAAkBhW,EAAqBoX,GAAyBC,GAAexV,EAAO,EACpI,OAAQ,CAAC;AAAA,CAA2D,EACpE,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO7G,CACT,GAAG,EAICC,GAA0C,SAAUA,EAA4B,CAClF,OAAAA,EAA2B,KAAU,OACrCA,EAA2B,SAAc,WAClCA,CACT,EAAEA,IAA8B,CAAC,CAAC,EAC9BC,IAAiC,IAAM,CACzC,MAAMA,CAAiB,CACrB,YAAYoc,EAAW,CACrB,KAAK,UAAYA,CACnB,CACA,UAAUrR,EAAO,CACf,OAAO,KAAK,UAAU,wBAAwBA,CAAK,CACrD,CACA,MAAO,CACL,KAAK,UAAO,SAAkC7G,EAAmB,CAC/D,OAAO,IAAKA,GAAqBlE,GAAqBmJ,EAAuBkT,GAAc,EAAE,CAAC,CAChG,CACF,CACA,MAAO,CACL,KAAK,WAA0B/G,GAAa,CAC1C,KAAM,eACN,KAAMtV,EACN,KAAM,GACN,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAAgC,IAAM,CACxC,MAAMA,CAAgB,CACpB,aAAc,CACZ,KAAK,iBAAmBqE,EAAO,EAC/B,KAAK,kBAAoBA,EAAO,EAChC,KAAK,wBAA0BD,EAAM,EAAE,EACvC,KAAK,SAAW2W,GAAM,EAAK,EAC3B,KAAK,sBAAwB,IAAIvV,GACjC,KAAK,sBAAwB,IAAIA,GACjC,KAAK,gBAAkBN,EAAO9H,GAAgB,MAAM,EACpD,KAAK,WAAa0G,EAAOiY,EAAU,EAEnC,KAAK,YAAc1W,GAAU,aAAa,EAC1C,KAAK,YAAcA,GAAU,aAAa,EAC1C,KAAK,qBAAuB,GAC5B,KAAK,gBAAkB,GACvB,KAAK,cAAgB,IAAI,MACzB,KAAK,4BAA8BF,EAAS,IAAM,GAAG,KAAK,wBAAwB,CAAC,SAAS,EAC5F,KAAK,gBAAkBI,GACvB,KAAK,cAAgBJ,EAAS,IAAM,CAAC,KAAK,cAAc,uBAAuB,EAC/E,KAAK,qBAAuBF,GAC5B,KAAK,oBAAsB,eAC3B,KAAK,0BAA4B,GACjC,KAAK,cAAgBnB,EAAOlG,EAAa,EACzC,KAAK,YAAckG,EAAO2E,EAAW,EACrC,KAAK,eAAiB3E,EAAOuY,EAAc,EAC3C,KAAK,kBAAoBvY,EAAO6W,EAAiB,EACjD,KAAK,mBAAqB7W,EAAOoI,EAAkB,EACnD,KAAK,WAAapI,EAAO6E,EAAU,EACnC,KAAK,cAAgB7E,EAAOwB,EAAa,EACzC,KAAK,WAAaxB,EAAO+I,EAAU,EACnC,KAAK,eAAiB/I,EAAOtG,EAAsB,EAEnD,KAAK,WAAW,EAChB,KAAK,gBAAkB,KAAK,YAAY,IAAI,gDAAgD,CAC9F,CAEA,mBAAmBkH,EAAO,CACxB,KAAK,iCAAiCA,CAAK,CAC7C,CAEA,qBAAqBA,EAAO,CAC1B,KAAK,iCAAiCA,CAAK,CAC7C,CAEA,kBAAmB,CACZ,KAAK,SAAS,GACI,KAAK,WAAW,eAAe,kBAAkB,cAAc,IAAI,KAAK,mBAAmB,QAAQ,GAC1G,MAAM,CAExB,CACA,aAAc,CACR,KAAK,oBACP,KAAK,mBAAmB,CAE5B,CAIA,kBAAmB,CACjB,KAAK,YAAY,EAAE,cAAc,MAAM,CACzC,CAMA,eAAeA,EAAO,CAChB,CAAC,SAAU,KAAK,EAAE,SAASA,EAAM,IAAI,IACvC,KAAK,iBAAiB,EACtB,KAAK,sBAAsB,KAAK,EAEpC,CAMA,sBAAsBA,EAAO,CACvBA,EAAM,OAAS,WACjBA,EAAM,eAAe,EACrB,KAAK,YAAY,EAAE,cAAc,MAAM,EAE3C,CAIA,qBAAsB,CACpB,aAAa,KAAK,OAAO,EACzB,KAAK,QAAU,WAAW,IAAM,CAC9B,KAAK,QAAU,OACf,KAAK,cAAc,CACrB,EAAG,GAAG,CACR,CACA,eAAgB,CAEd,GADA,KAAK,qBAAuB,GACxB,KAAK,WAAY,CACnB,IAAM4X,EAAc,KAAK,WAAW,KAAK,EAAE,UAAU,KAAK,EAAE,QAAQ,mBAAoB,EAAE,EAC1F,KAAK,cAAgB,CAAC,EACtB,KAAK,cAAc,OAAOA,CAAW,EAAE,KAAKpP,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUqM,GAAU,CACnG,KAAK,cAAgB,CAAC,GAAG,KAAK,cAAe,GAAGA,CAAM,EAClD,KAAK,eAAe,SAAW,GAAK,CAAC,KAAK,cAAc,SAC1D,KAAK,qBAAqB,EAE5B,KAAK,kBAAkB,cAAc,CACvC,CAAC,EACD,KAAK,sBAAsB,KAAK,CAClC,MACE,KAAK,sBAAsB,KAAK,CAEpC,CAIA,sBAAuB,CACrB,KAAK,gBAAkB,KAAK,IAAI,KAAK,0BAA4B,KAAK,gBAAgB,MAAM,CAC9F,CAOA,WAAWjN,EAAM,CACf,KAAK,YAAYA,EAAK,GAAG,EACzB,KAAK,eAAe,aAAa,IAAIhP,GAAkB,MAAM,EAE7D,KAAK,eAAe,eAAe,IAAI,IAAI,EAC3C,KAAK,eAAe,eAAe,IAAI,IAAI,EAC3C,KAAK,iBAAiB,KAAK,CAC7B,CAIA,kBAAkBoH,EAAO,CAEvB,GADA,KAAK,eAAiB,GAClB,KAAK,YAAY,GAAK,KAAM,CAC1B,KAAK,YAAY,OAAS,IAC5BA,EAAM,gBAAgB,EACtBA,EAAM,eAAe,GAEvB,IAAM6X,EAAYC,GAAQA,EAAK,MAAM,EAC/BC,EAAY,KAAK,YAAY,EAAE,cACrC,WAAW,IAAM,CACfF,EAAUE,CAAS,EACnBA,EAAU,OAAO,CACnB,EAAG,CAAC,CACN,CACF,CAIA,oBAAoB/X,EAAO,CACrB,KAAK,WAAWA,CAAK,IACvB,KAAK,eAAiB,GACtB,KAAK,UAAU,EAEnB,CAIA,WAAY,CACV,KAAK,WAAa,EACpB,CAIA,kBAAmB,CACjB,KAAK,eAAiB,GACtB,KAAK,UAAU,CACjB,CAIA,YAAa,CACX,IAAMgY,EAAqB,CAAC,CAE1B,OAAQ,CAAC,GAA2B,GAA0B,EAAsB,EACpF,OAAQ,IAAM,KAAK,iBAAiB,CACtC,CAAC,EAED,KAAK,mBAAqB,KAAK,eAAe,WAAWA,CAAkB,CAC7E,CAMA,iCAAiChY,EAAO,CAElC,KAAK,cAAc,GAErB,KAAK,kBAAkB,KAAK,CAC1B,UAAWA,EAAM,OAAS,UAAY5E,GAA2B,SAAWA,GAA2B,KACvG,gBAAiB,KAAK,gBAAgB,CACxC,CAAC,CAEL,CAOA,WAAW4E,EAAO,CAChB,MAAO,CAAC,KAAK,YAAc,KAAK,YAAY,GAAG,eAAe,SAASA,EAAM,MAAM,CACrF,CAMA,YAAYD,EAAK,CAMf,GALA,KAAK,sBAAsB,KAAK,EAC5BA,EAAI,SAAS,IAAI,IAEnBA,EAAMA,EAAI,MAAM,IAAI,EAAE,CAAC,GAErB6Q,GAAW,KAAK7Q,CAAG,EAEhBA,EAAI,WAAW,MAAM,IACxBA,EAAM,WAAWA,CAAG,IAEtB,OAAO,KAAKA,EAAK,QAAQ,MACpB,CACL,IAAMkY,EAAc,KAAK,mBAAmB,qBAAqBlY,CAAG,EACpE,KAAK,mBAAmB,SAAS,KAAK,WAAW,QAAS,KAAK,WAAW,aAAcA,EAAKkY,EAAaxM,GAAW,QAAS,EAAK,CACrI,CACA,KAAK,eAAiB,GACtB,KAAK,WAAa,GAClB,KAAK,YAAY,EAAE,cAAc,KAAK,EACtC,KAAK,kBAAkB,cAAc,CACvC,CACA,MAAO,CACL,KAAK,UAAO,SAAiClM,EAAmB,CAC9D,OAAO,IAAKA,GAAqBjE,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB2E,EAAkB,CAC9C,KAAM3E,EACN,UAAW,CAAC,CAAC,WAAW,CAAC,EACzB,UAAW,SAA+B1Z,EAAIC,EAAK,CAC7CD,EAAK,IACJ6f,GAAkB5f,EAAI,YAAaoU,GAAM,CAAC,EAC1CwL,GAAkB5f,EAAI,YAAaqU,GAAM,CAAC,GAE3CtU,EAAK,GACJggB,GAAe,CAAC,CAEvB,EACA,aAAc,SAAsChgB,EAAIC,EAAK,CACvDD,EAAK,GACJe,EAAW,kBAAmB,SAA4DI,EAAQ,CACnG,OAAOlB,EAAI,mBAAmBkB,CAAM,CACtC,CAAC,EAAE,oBAAqB,SAA8DA,EAAQ,CAC5F,OAAOlB,EAAI,qBAAqBkB,CAAM,CACxC,CAAC,CAEL,EACA,OAAQ,CACN,wBAAyB,CAAC,EAAG,yBAAyB,EACtD,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,iBAAkB,mBAClB,kBAAmB,oBACnB,SAAU,gBACZ,EACA,WAAY,GACZ,SAAU,CAAImd,CAAmB,EACjC,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,iBAAkB,EAAE,EAAG,CAAC,cAAe,EAAE,EAAG,CAAC,iBAAkB,EAAE,EAAG,CAAC,cAAe,iBAAkB,kBAAmB,GAAI,0BAA2B,OAAQ,EAAG,iBAAkB,EAAG,mBAAoB,UAAW,6BAA8B,yBAA0B,sBAAuB,sBAAuB,qBAAqB,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,OAAQ,OAAQ,cAAe,eAAgB,EAAG,eAAgB,EAAG,gBAAiB,QAAS,UAAW,QAAS,QAAS,WAAY,UAAW,cAAe,wBAAyB,uBAAuB,EAAG,CAAC,cAAe,eAAgB,EAAG,cAAc,EAAG,CAAC,cAAe,eAAgB,EAAG,eAAgB,EAAG,OAAO,EAAG,CAAC,EAAG,oBAAqB,aAAa,EAAG,CAAC,cAAe,0BAA2B,EAAG,yBAAyB,EAAG,CAAC,KAAM,sBAAuB,cAAe,8BAA+B,6BAA8B,GAAI,EAAG,qBAAqB,EAAG,CAAC,cAAe,gBAAiB,EAAG,gBAAiB,EAAG,KAAM,uBAAuB,EAAG,CAAC,cAAe,2BAA4B,EAAG,sBAAsB,EAAG,CAAC,cAAe,gBAAiB,EAAG,gBAAiB,EAAG,QAAS,UAAW,KAAM,uBAAuB,EAAG,CAAC,EAAG,WAAW,EAAG,CAAC,kBAAmB,GAAI,EAAG,OAAO,EAAG,CAAC,kBAAmB,GAAI,EAAG,WAAW,EAAG,CAAC,kBAAmB,GAAI,EAAG,aAAc,EAAG,WAAW,EAAG,CAAC,EAAG,OAAO,CAAC,EAC/3C,SAAU,SAAkCte,EAAIC,EAAK,CACnD,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7Ba,EAAW,mBAAoB,UAAoE,CACpG,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,iBAAiB,CAAC,CAC9C,CAAC,EACEC,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,IAAK,CAAC,EACnBf,EAAa,EACbH,EAAe,EAAG,KAAK,EAAE,EAAG,QAAS,EAAG,CAAC,EACzCE,EAAO,EAAG,SAAS,EACnB8E,GAAiB,gBAAiB,SAAiE/D,EAAQ,CAC5G,OAAGH,EAAcH,CAAG,EACjBsE,GAAmBlF,EAAI,WAAYkB,CAAM,IAAMlB,EAAI,WAAakB,GACzDD,EAAYC,CAAM,CAC9B,CAAC,EACEJ,EAAW,QAAS,UAA2D,CAChF,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,oBAAoB,CAAC,CACjD,CAAC,EAAE,UAAW,SAA2DkB,EAAQ,CAC/E,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,eAAekB,CAAM,CAAC,CAClD,CAAC,EAAE,QAAS,SAAyDA,EAAQ,CAC3E,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,kBAAkBkB,CAAM,CAAC,CACrD,CAAC,EAAE,QAAS,SAAyDA,EAAQ,CAC3E,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,kBAAkBkB,CAAM,CAAC,CACrD,CAAC,EAAE,WAAY,SAA4DA,EAAQ,CACjF,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,oBAAoBkB,CAAM,CAAC,CACvD,CAAC,EACEd,EAAa,EAAE,EACfgB,EAAW,EAAGiI,GAAwC,EAAG,EAAG,MAAO,CAAC,EACpEjJ,EAAa,EACbgB,EAAW,EAAGwI,GAAwC,EAAG,GAAI,cAAe,KAAM,EAAM5H,EAAsB,CACnH,CACA,GAAIjC,EAAK,EAAG,CACV,IAAMs2B,EAAuBz0B,EAAY,EAAE,EACxCC,EAAW,UAAW7B,EAAI,eAAiB,SAAW,EAAE,EAAE,6BAA8BA,EAAI,4BAA4B,CAAC,EAAE,yBAA0BA,EAAI,qBAAqB,IAAI,EAAE,sBAAuBq2B,CAAiB,EAAE,sBAAuBr2B,EAAI,qBAAqB,EAAE,sBAAuBA,EAAI,qBAAqB,EAChUO,EAAU,CAAC,EACXe,GAAWtB,EAAI,mBAAmB,EAClCO,EAAU,EACVmC,GAAsB,cAAkBjC,EAAY,EAAG,GAAI,yCAAyC,CAAC,EACrG6E,GAAiB,UAAWtF,EAAI,UAAU,EAC1C6B,EAAW,wBAAyB,CAAC7B,EAAI,cAAc,CAAC,EAAE,wBAAyBA,EAAI,gBAAgB,SAAS,EAChHO,EAAU,CAAC,EACXgB,GAAevB,EAAI,YAAc,KAAO,KAAOA,EAAI,WAAW,QAAU,EAAI,EAAI,EAAE,CACvF,CACF,EACA,aAAc,CAACwZ,GAAkB8E,EAAwBC,GAAaqU,GAAiBzS,GAAYkU,GAAWvU,GAAuB+P,GAAgBC,GAAyBC,GAAoBC,GAASC,GAAuBC,GAAa1R,GAAkCC,EAA2B,EAC5S,OAAQ,CAAC;AAAA,CAA8pG,EACvqG,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOhF,CACT,GAAG,EAICC,IAAkC,IAAM,CAC1C,MAAMA,CAAkB,CACtB,IAAI,2BAA4B,CAC9B,OAAO,KAAK,kBAAkB,WAAW,EAAE,yBAC7C,CACA,aAAc,CACZ,KAAK,6BAA+BoF,GAAUrG,EAAoC,EAClF,KAAK,0BAA4BqG,GAAUzJ,EAAiC,EAC5E,KAAK,eAAiBwI,EAAM,SAAS,EACrC,KAAK,yBAA2B,uCAChC,KAAK,qBAAuB,CAC1B,YAAa,CACX,KAAM,GACN,OAAQ,CAAC,CACX,EACA,wBAAyB,CACvB,KAAM,GACN,OAAQ,CAAC,CACX,EACA,mBAAoB,CAClB,KAAM,GACN,OAAQ,CAAC,CACX,EACA,gBAAiB,CACf,KAAM,GACN,OAAQ,CAAC,CACX,EACA,mBAAoB,CAClB,KAAM,GACN,OAAQ,CAAC,CACX,EACA,cAAe,CACb,KAAM,GACN,OAAQ,CAAC,CACX,EACA,WAAY,CACV,KAAM,GACN,OAAQ,CAAC,CACX,EACA,iBAAkB,CAChB,KAAM,GACN,OAAQ,CAAC,CACX,EACA,gBAAiB,CACf,KAAM,GACN,OAAQ,CAAC,CACX,EACA,YAAa,CACX,KAAM,GACN,OAAQ,CAAC,CACX,EACA,kBAAmB,CACjB,KAAM,GACN,OAAQ,CAAC,CACX,EACA,aAAc,CACZ,KAAM,GACN,OAAQ,CAAC,CACX,EACA,qBAAsB,CACpB,KAAM,GACN,OAAQ,CAAC,CACX,CACF,EACA,KAAK,mBAAqBiB,GAAU,oBAAoB,EACxD,KAAK,wBAA0BH,EAAO,EAAK,EAC3C,KAAK,mBAAqBA,EAAO,EAAK,EACtC,KAAK,oBAAsBA,EAAO,EAAK,EACvC,KAAK,uBAAyBA,EAAO,EAAK,EAC1C,KAAK,mBAAqBC,EAAS,IAAM,KAAK,UAAU,OAAS,CAAC,EAClE,KAAK,UAAYD,EAAO,CAAC,CAAC,EAC1B,KAAK,gBAAkBC,EAAS,IAAM,KAAK,UAAU,GAAG,OAAS,CAAC,EAElE,KAAK,eAAiBD,EAAO,EAAK,EAClC,KAAK,aAAeC,EAAS,IAAM,KAAK,aAAe,EAAE,CAAC,KAAK,mBAAmB,GAAK,KAAK,qBAAqB,qBAAqB,OAAS,KAAK,gBAAgB,SAAS,EAC7K,KAAK,iBAAmBA,EAAS,IAAM,KAAK,aAAa,GAAG,2BAA2B,wBAAwB,OAAS,IAAM,KAAK,UAAU,yBAAyB,GAAK,KAAK,UAAU,oBAAoB,EAAE,EAChN,KAAK,uBAAyBA,EAAS,IAAM,CAAC,KAAK,wBAAwB,GAAK,KAAK,6BAA6B,GAAG,QAAQ,CAAC,EAC9H,KAAK,oBAAsBA,EAAS,IAAM,CAAC,KAAK,wBAAwB,GAAK,KAAK,0BAA0B,GAAG,kBAAkB,CAAC,EAClI,KAAK,aAAeD,EAAO,EAAK,EAChC,KAAK,iBAAmBA,EAAO,EAAK,EACpC,KAAK,cAAgBC,EAAS,IAAM,CAAC,KAAK,wBAAwB,GAAK,KAAK,aAAa,YAAY,GAAK,CAAC,KAAK,eAAe,GAAG,kBAAoB,KAAK,UAAU,YAAY,CAAC,EAClL,KAAK,wBAA0BA,EAAS,IAAM,CAAC,KAAK,wBAAwB,GAAK,CAAC,KAAK,eAAe,GAAG,4BAA8B,EAAQ,KAAK,oBAAoB,gBAAgB,WAAW,eAAkB,EAAQ,KAAK,oBAAoB,gBAAgB,WAAW,cAAe,EAChS,KAAK,YAAcD,EAAO,EAAK,EAC/B,KAAK,YAAcA,EAAO,EAAK,EAC/B,KAAK,eAAiBA,EAAO,EAAK,EAClC,KAAK,gBAAkBA,EAAO,EAAK,EAEnC,KAAK,wBAA0BC,EAAS,IAAM,KAAK,eAAe,GAAK,KAAK,aAAa,GAAK,KAAK,iBAAiB,GAAK,KAAK,uBAAuB,GAAK,KAAK,oBAAoB,GAAK,KAAK,aAAa,GAAK,KAAK,gBAAgB,GAAK,KAAK,iBAAiB,GAAK,KAAK,cAAc,GAAK,KAAK,wBAAwB,GAAK,KAAK,YAAY,GAAK,KAAK,YAAY,GAAK,KAAK,eAAe,GAAK,KAAK,gBAAgB,CAAC,EACzZ,KAAK,WAAa0X,GAClB,KAAK,gBAAkBtX,GACvB,KAAK,sBAAwB,IAAIC,GACjC,KAAK,WAAa,IAAIoH,GAAgB,EAAK,EAC3C,KAAK,SAAW,IAAIA,GAAgB,EAAK,EACzC,KAAK,oBAAsBxH,GAAY,UAAU,EACjD,KAAK,WAAa0X,GAAW,MAC7B,KAAK,eAAiBvF,GACtB,KAAK,gBAAkBC,GACvB,KAAK,oBAAsB1T,EAAOiZ,EAAmB,EACrD,KAAK,cAAgBjZ,EAAOwB,EAAa,EACzC,KAAK,aAAexB,EAAOkZ,EAAY,EACvC,KAAK,aAAelZ,EAAO/H,EAAY,EACvC,KAAK,gBAAkB+H,EAAOgV,EAAe,EAC7C,KAAK,aAAe5T,EAAO,MAAS,EACpC,KAAK,kBAAoBpB,EAAO2B,EAAiB,EACjD,KAAK,aAAe3B,EAAOmZ,EAAY,EACvC,KAAK,eAAiBnZ,EAAOqI,EAAc,EAC3C,KAAK,gBAAkBrI,EAAOoZ,EAAe,EAC7C,KAAK,iBAAmBpZ,EAAOsF,EAAgB,EAC/C,KAAK,YAActF,EAAO2E,EAAW,EACrC,KAAK,aAAe3E,EAAOkJ,EAAmB,EAC9C,KAAK,wBAA0BlJ,EAAOgN,EAAuB,EAC7D,KAAK,kBAAoBhN,EAAOqZ,EAAiB,EACjD,KAAK,0BAA4BrZ,EAAOjI,EAAyB,EACjE,KAAK,mBAAqBiI,EAAOoI,EAAkB,EACnD,KAAK,WAAapI,EAAO6E,EAAU,EACnC,KAAK,YAAc7E,EAAO8L,EAAW,EACrC,KAAK,iBAAmB9L,EAAOsZ,EAAgB,EAC/C,KAAK,gBAAkBtZ,EAAOC,EAAe,EAC7C,KAAK,WAAaD,EAAO+I,EAAU,EACnC,KAAK,mBAAqB/I,EAAOuZ,EAAyB,EAC1D,KAAK,WAAW,KAAK,KAAK,kBAAkB,UAAU,CAAC,CACzD,CAEA,gBAAiB,CACf,KAAK,wBAAwB,IAAI,KAAK,cAAc,uBAAuB,CAC7E,CACM,UAAW,QAAArZ,EAAA,sBAmBf,GAlBA,KAAK,wBAAwB,IAAI,KAAK,cAAc,uBAAuB,EAC3E,KAAK,aAAa,IAAI,MAAMkD,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,CAAC,EAC5F,KAAK,wBAA0B,KAAK,aAAa,EAAE,aAAa,mBAAmB,IACnF,MAAM,KAAK,wBAAwB,EAC/B,KAAK,gBAAgB,YACvB,KAAK,SAAW,KAAK,gBAAgB,QAAQ,GAE/C,KAAK,kBAAkB,EAEvB,KAAK,eAAe,IAAI,KAAK,UAAU,aAAa,GAAK,EAAQ,KAAK,QAAS,EAE/E,KAAK,YAAY,OAAO,KAAKgG,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUoQ,GAAyB,CACnG,KAAK,SAAWA,EAChB,KAAK,YAAc,KAAK,YAAY,eAAe,KACrD,CAAC,EAED,KAAK,aAAa,IAAI,KAAK,UAAU,iBAAiB,CAAC,EAEnD,KAAK,UAAU,oBAAoB,EAAG,CACxC,IAAMC,EAAW,MAAM,KAAK,gBAAgB,gBAAgB,EACtDC,EAAiB,KAAK,gBAAgB,QAAQ,EAAE,WAChDC,EAAkBF,EAAS,KAAKG,GAAWA,EAAQ,OAASF,CAAc,GAAKD,EAAS,KAAKG,GAAWA,EAAQ,KAAK,MAAM,EAAG,CAAC,IAAMF,EAAe,MAAM,EAAG,CAAC,CAAC,EACrK,GAAIC,EAAiB,CAEnB,KAAK,UAAU,EAAE,KAAKA,CAAe,EACrC,IAAME,EAAYJ,EAAS,OAAOG,GAAWA,EAAQ,yBAA2BA,EAAQ,KAAK,MAAM,EAAG,CAAC,IAAMF,EAAe,MAAM,EAAG,CAAC,CAAC,EAAE,KAAK,CAACrV,EAAGkL,IAAMlL,EAAE,KAAK,cAAckL,EAAE,IAAI,CAAC,EACpL,KAAK,UAAU,EAAE,KAAK,GAAGsK,CAAS,CACpC,CACF,CAEA,KAAK,iBAAiB,IAAI,KAAK,UAAU,eAAe,CAAC,EAEzD,KAAK,YAAY,IAAI,KAAK,eAAe,OAAS,GAAK,KAAK,cAAc,KAAKrR,GAAQA,EAAK,aAAa,CAAC,CAAC,EAE3G,KAAK,YAAY,IAAI,KAAK,UAAU,mBAAmB,GAAK,EAAQ,KAAK,uBAAwB,EAEjG,KAAK,eAAe,IAAI,KAAK,UAAU,aAAa,CAAC,EAErD,KAAK,gBAAgB,IAAI,KAAK,UAAU,cAAc,GAAK,KAAK,gBAAgB,SAAS,EACzF,KAAK,SAAS,KAAK,EAAI,CACzB,GACA,gBAAgB5H,EAAO,CAErBA,EAAM,WAAW,cAAc,WAAW,EAAE,MAAM,UAAY,IAAIA,EAAM,WAAW,UAAY,EAAE,IACnG,CACA,WAAWA,EAAOD,EAAKmZ,EAAQ,CACxB,KAAK,cAAc,yBACtB,KAAK,iBAAiB,KAAKphB,EAAyB,EAEtDkI,EAAM,eAAe,EACrB,KAAK,sBAAsB,KAAK,EAC5BkZ,EACF,OAAO,KAAKnZ,EAAK,QAAQ,EAEzB,KAAK,mBAAmB,SAAS,KAAK,WAAW,QAAS,KAAK,WAAW,aAAcA,CAAG,CAE/F,CACA,yBAA0B,CACxB,KAAK,sBAAsB,KAAK,EAChC,KAAK,aAAa,UAAUtF,GAAyB,KAAM,KAAM,KAAM,KAAM,uBAAuB,CACtG,CACA,gBAAiB,CACf,KAAK,sBAAsB,KAAK,EAChC,KAAK,aAAa,UAAUF,GAAgB,KAAM,KAAM,KAAM,KAAM,aAAa,CACnF,CACA,gBAAiB,CACf,KAAK,sBAAsB,KAAK,EAChC,KAAK,aAAa,OAAO,CAC3B,CACA,kBAAmB,CACjB,KAAK,sBAAsB,KAAK,EAChC,KAAK,iBAAiB,QAAQ,KAAK,oBAAoB,eAAe,UAAU,cAAc,CAChG,CACA,gBAAgByF,EAAO,CACrBA,EAAM,eAAe,EACjB,KAAK,oBAAoB,EAC3B,KAAK,eAAe,EAEpB,KAAK,cAAc,CAEvB,CACA,eAAgB,CACd,KAAK,cAAc,EACnB,KAAK,oBAAoB,IAAI,EAAI,CACnC,CACA,gBAAiB,CACf,KAAK,oBAAoB,IAAI,EAAK,CACpC,CACA,eAAeA,EAAO,CACpBA,EAAM,eAAe,EACjB,KAAK,mBAAmB,EAC1B,KAAK,cAAc,EAEnB,KAAK,aAAa,CAEtB,CACA,cAAe,CACb,KAAK,cAAc,EACnB,KAAK,mBAAmB,IAAI,EAAI,CAClC,CACA,eAAgB,CACd,KAAK,mBAAmB,IAAI,EAAK,CACnC,CACA,mBAAmBA,EAAO,CACxBA,EAAM,eAAe,EACjB,KAAK,uBAAuB,EAC9B,KAAK,kBAAkB,EAEvB,KAAK,iBAAiB,CAE1B,CACA,kBAAmB,CACjB,KAAK,cAAc,EACnB,KAAK,uBAAuB,IAAI,EAAI,CACtC,CACA,mBAAoB,CAClB,KAAK,uBAAuB,IAAI,EAAK,CACvC,CAOA,cAAcA,EAAOmZ,EAAc,GAAO,CACpCnZ,GACFA,EAAM,gBAAgB,EAEpBmZ,GAEF,KAAK,mBAAmB,gBAAgB,eAAe,MAAM,EAE/D,KAAK,cAAc,EACnB,KAAK,eAAe,EACpB,KAAK,kBAAkB,CACzB,CACA,YAAYC,EAAO,CACbA,IAAU,KAAK,aAAa,QAGhC,KAAK,sBAAsB,KAAK,EAChC,KAAK,kBAAkB,gBAAgB,EAAI,EAC3C,KAAK,aAAa,SAASA,CAAK,EAAE,KAAK,IAAM,CAC3C,IAAM3P,EAAoB,CACxB,WAAY,WACZ,MAAO2P,CACT,EACA,KAAK,aAAa,sBAAsB3P,CAAiB,EACzD,KAAK,oBAAoB,IAAI,EAAK,EAClC,KAAK,kBAAkB,gBAAgB,EAAK,CAC9C,CAAC,EACH,CACM,eAAe4P,EAAU,QAAA/Z,EAAA,sBACzB+Z,IAAa,KAAK,gBAAgB,QAAQ,EAAE,UAGhD,KAAK,uBAAuB,IAAI,EAAK,EACrC,KAAK,sBAAsB,KAAK,EAChC,KAAK,gBAAgB,oBAAoBA,CAAQ,EACjD,MAAM,KAAK,YAAY,KAAK,EAAI,EAClC,GACA,mBAAmBxC,EAAS,CACtBA,GAAW,KAAK,aAAeA,IAAY,KAAK,YAAY,UAC9D,KAAK,kBAAkB,gBAAgB,EAAI,EAC3C,KAAK,sBAAsB,KAAK,EAChC,KAAK,YAAY,cAAcA,CAAO,EAAE,KAAKyC,GAAK,CAC5C,KAAK,WAAW,SAAW,KAAK,WAAW,aAC7C,OAAO,SAAS,KAAO,IAAI,KAAK,WAAW,OAAO,IAAI,KAAK,WAAW,YAAY,IAElF,OAAO,SAAS,KAAO,GAE3B,CAAC,EAAE,MAAM1N,GAAS,CAChB,KAAK,kBAAkB,gBAAgB,EAAK,EAC5C,KAAK,wBAAwB,UAAUA,CAAK,CAC9C,CAAC,EAEL,CACA,iBAAkB,CAChB,KAAK,sBAAsB,KAAK,EAChC,OAAO,KAAK,KAAK,UAAU,eAAgB,QAAQ,CACrD,CACA,SAAU,CACR,KAAK,sBAAsB,KAAK,EAChC,KAAK,eAAe,sBAAsB,aAAa,EACvD,KAAK,gBAAgB,OAAO,CAC9B,CACA,UAAU2N,EAAY,CACpB,GAAI,CAAC,KAAK,qBAAqBA,CAAU,EAAE,KAAM,CAC/C,IAAMC,EAAgB,KAAK,qBAAqBD,CAAU,EAAE,OAC5D,OAAIC,GAAe,OAAS,EACnB,KAAK,kBAAkB,eAAeA,EAAc,KAAK,GAAG,CAAC,EAE/D,EACT,CACA,MAAO,EACT,CAMA,UAAUxZ,EAAO,CACf,IAAMkR,EAAgB,SAAS,cAC/B,OAAQlR,EAAM,KAAM,CAClB,IAAK,YAECkR,EAAc,UAAU,SAAS,kBAAkB,GACrD,KAAK,sBAAsB,EAGzBA,EAAc,UAAU,SAAS,0BAA0B,GAC7D,KAAK,aAAa,EAGhBA,EAAc,UAAU,SAAS,0BAA0B,GAC7D,KAAK,cAAc,EAGjBA,EAAc,UAAU,SAAS,6BAA6B,GAChE,KAAK,iBAAiB,EAExB,MACF,IAAK,aAECA,EAAc,UAAU,SAAS,kBAAkB,GACrD,KAAK,sBAAsB,GAEzBA,EAAc,UAAU,SAAS,wBAAwB,GAAKA,EAAc,UAAU,SAAS,wBAAwB,GAAKA,EAAc,UAAU,SAAS,2BAA2B,IAC1L,KAAK,cAAclR,EAAO,EAAI,EAEhC,MACF,IAAK,SACL,IAAK,MACCkR,EAAc,UAAU,SAAS,wBAAwB,GAAKA,EAAc,UAAU,SAAS,wBAAwB,GAAKA,EAAc,UAAU,SAAS,2BAA2B,EAC1L,KAAK,cAAclR,EAAO,EAAI,GAE9B,KAAK,cAAc,EACnB,KAAK,sBAAsB,GAE7B,KACJ,CACF,CACM,yBAA0B,QAAAV,EAAA,sBAC9B,GAAI,CACF,IAAM2K,EAAe,MAAMzH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EAC1F,KAAK,qBAAuB4M,IAAA,GACvB,KAAK,sBACLnF,EAAa,aAEpB,OAASkL,EAAI,CACX,QAAQ,MAAMA,CAAE,CAClB,CACF,GAEA,uBAAwB,CACtB,KAAK,sBAAsB,KAAK,EAChC,KAAK,mBAAmB,GAAG,cAAc,MAAM,CACjD,CACA,mBAAoB,CAClB,IAAMsE,EAAgB,CAAC,EACvBA,EAAc,KAAK,CACjB,MAAO,KAAK,YAAY,IAAI,oDAAoD,EAChF,UAAW,wBACX,UAAW,mBACX,aAAc,IAAM,KAAK,UAAU,kBAAkB,EACrD,WAAY,IAAM,GAClB,OAAQ,IAAM,CACZ,KAAK,sBAAsB,KAAK,EAChC,KAAK,gBAAgB,mBAAmB,KAAK,qBAAqB,gBAAgB,CACpF,CACF,CAAC,EACG,KAAK,qBAAqB,iBAAiB,KAC7CA,EAAc,KAAK,CACjB,MAAO,KAAK,YAAY,IAAI,uDAAuD,EACnF,UAAW,qBACX,UAAW,gBACX,aAAc,IAAM,KAAK,UAAU,iBAAiB,EACpD,WAAY,IAAM,GAClB,OAAQ,IAAM,CACZ,KAAK,sBAAsB,KAAK,EAChC,KAAK,gBAAgB,sBAAsB,KAAK,qBAAqB,eAAe,CACtF,CACF,CAAC,EAEH,KAAK,cAAgBA,CACvB,CACA,MAAO,CACL,KAAK,UAAO,SAAmCla,EAAmB,CAChE,OAAO,IAAKA,GAAqBhE,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB0E,EAAkB,CAC9C,KAAM1E,EACN,UAAW,CAAC,CAAC,cAAc,CAAC,EAC5B,UAAW,SAAiC3Z,EAAIC,EAAK,CAC/CD,EAAK,IACJ6f,GAAkB5f,EAAI,6BAA8ByY,GAAsC,CAAC,EAC3FmH,GAAkB5f,EAAI,0BAA2BqV,GAAmC,CAAC,EACrFuK,GAAkB5f,EAAI,mBAAoB2T,GAAK,CAAC,GAEjD5T,EAAK,GACJggB,GAAe,CAAC,CAEvB,EACA,aAAc,SAAwChgB,EAAIC,EAAK,CACzDD,EAAK,GACJe,EAAW,SAAU,UAAuD,CAC7E,OAAOd,EAAI,eAAe,CAC5B,EAAG,GAAU63B,EAAe,CAEhC,EACA,OAAQ,CACN,eAAgB,CAAC,EAAG,gBAAgB,CACtC,EACA,WAAY,GACZ,SAAU,CAAIxZ,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,uBAAwB,EAAE,EAAG,CAAC,2BAA4B,EAAE,EAAG,CAAC,qBAAsB,EAAE,EAAG,CAAC,cAAe,mBAAoB,kBAAmB,GAAI,qBAAsB,QAAS,wBAAyB,GAAI,EAAG,mBAAoB,EAAG,6BAA8B,sBAAuB,sBAAuB,UAAW,aAAc,wBAAyB,4BAA4B,EAAG,CAAC,cAAe,mBAAoB,EAAG,mBAAoB,OAAO,EAAG,CAAC,cAAe,mBAAoB,kBAAmB,GAAI,qBAAsB,QAAS,wBAAyB,GAAI,EAAG,mBAAoB,EAAG,mBAAoB,UAAW,6BAA8B,sBAAuB,sBAAuB,UAAW,aAAc,wBAAyB,4BAA4B,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,WAAY,cAAe,kBAAkB,EAAG,CAAC,cAAe,iBAAkB,6BAA8B,GAAI,EAAG,iBAAkB,EAAG,QAAQ,EAAG,CAAC,EAAG,mBAAoB,MAAM,EAAG,CAAC,KAAM,YAAa,cAAe,sBAAuB,EAAG,iBAAkB,OAAQ,iBAAiB,EAAG,CAAC,EAAG,iBAAkB,MAAM,EAAG,CAAC,cAAe,2BAA4B,EAAG,iBAAkB,MAAM,EAAG,CAAC,EAAG,iBAAkB,QAAS,MAAM,EAAG,CAAC,cAAe,4BAA6B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,2BAA2B,EAAG,CAAC,cAAe,sBAAuB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,qBAAqB,EAAG,CAAC,cAAe,4BAA6B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,2BAA2B,EAAG,CAAC,cAAe,sBAAuB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,qBAAqB,EAAG,CAAC,cAAe,kBAAmB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,iBAAiB,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,EAAG,WAAW,EAAG,CAAC,kBAAmB,GAAI,EAAG,YAAY,EAAG,CAAC,wBAAyB,GAAI,EAAG,gBAAiB,iBAAkB,EAAG,QAAS,UAAW,SAAS,EAAG,CAAC,cAAe,2BAA4B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,2BAA4B,EAAG,4BAA4B,EAAG,CAAC,EAAG,aAAc,UAAU,EAAG,CAAC,cAAe,2BAA4B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,2BAA4B,EAAG,YAAa,WAAY,QAAS,UAAW,4BAA4B,EAAG,CAAC,EAAG,OAAQ,mBAAmB,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,6BAA8B,GAAI,EAAG,WAAY,EAAG,UAAW,SAAS,EAAG,CAAC,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,yBAA0B,EAAG,SAAS,EAAG,CAAC,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,yBAA0B,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,cAAe,8BAA+B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,6BAA6B,EAAG,CAAC,cAAe,oCAAqC,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,mCAAmC,EAAG,CAAC,cAAe,8BAA+B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,8BAA+B,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,aAAa,EAAG,CAAC,cAAe,oCAAqC,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,oCAAqC,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,aAAa,EAAG,CAAC,cAAe,iCAAkC,EAAG,gBAAiB,iBAAkB,OAAQ,iCAAkC,EAAG,SAAS,EAAG,CAAC,EAAG,YAAa,mBAAoB,sBAAuB,wBAAwB,EAAG,CAAC,cAAe,kCAAmC,EAAG,gBAAiB,iBAAkB,OAAQ,kCAAmC,EAAG,SAAS,EAAG,CAAC,cAAe,uBAAwB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,2BAA4B,EAAG,YAAa,WAAY,QAAS,UAAW,4BAA4B,EAAG,CAAC,6BAA8B,GAAI,EAAG,WAAY,EAAG,SAAS,EAAG,CAAC,cAAe,wBAAyB,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,yBAA0B,EAAG,QAAS,UAAW,SAAS,EAAG,CAAC,cAAe,uBAAwB,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,yBAA0B,EAAG,QAAS,UAAW,SAAS,EAAG,CAAC,cAAe,8BAA+B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,8BAA+B,EAAG,YAAa,WAAY,QAAS,UAAW,4BAA4B,EAAG,CAAC,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,4BAA6B,YAAa,EAAG,SAAS,EAAG,CAAC,wBAAyB,GAAI,EAAG,kBAAmB,gBAAiB,aAAc,4BAA6B,YAAa,EAAG,QAAS,SAAS,EAAG,CAAC,cAAe,4BAA6B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,4BAA6B,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,WAAW,EAAG,CAAC,cAAe,sBAAuB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,sBAAuB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,oBAAoB,EAAG,CAAC,cAAe,4BAA6B,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,4BAA6B,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,kBAAkB,EAAG,CAAC,kBAAmB,GAAI,EAAG,MAAM,EAAG,CAAC,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,sBAAuB,EAAG,UAAW,IAAI,EAAG,CAAC,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,sBAAuB,EAAG,QAAS,UAAW,UAAW,IAAI,EAAG,CAAC,EAAG,OAAQ,EAAG,SAAS,EAAG,CAAC,cAAe,sBAAuB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,sBAAuB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,mBAAmB,EAAG,CAAC,cAAe,kBAAmB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,kBAAmB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,kBAAkB,EAAG,CAAC,cAAe,mBAAoB,wBAAyB,GAAI,EAAG,gBAAiB,aAAc,mBAAoB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,OAAQ,aAAa,CAAC,EAC53M,SAAU,SAAoCte,EAAIC,EAAK,CACjDD,EAAK,IACJqB,EAAW,EAAG+I,GAA0C,EAAG,CAAC,EAC5DhK,EAAO,EAAG,OAAO,EACjBiB,EAAW,EAAGgJ,GAA0C,EAAG,EAAG,cAAe,KAAM,EAAMpI,EAAsB,EAAE,EAAGiL,GAA0C,GAAI,GAAI,cAAe,KAAM,EAAMjL,EAAsB,GAExNjC,EAAK,GACJwB,EAAiBd,EAAY,EAAG,EAAGT,EAAI,QAAQ,EAAI,EAAI,EAAE,CAEhE,EACA,aAAc,CAACoxB,GAAWjR,GAASgR,GAAiB2G,GAAgBhY,GAAuBrH,GAAsCpD,GAAmCiJ,EAAwBC,GAAa6B,GAAkB5B,GAAkCC,GAA6B4B,EAAU,EACpS,OAAQ,CAAC;AAAA,CAAq6K,EAC96K,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAO3G,CACT,GAAG,EAICC,IAAoC,IAAM,CAC5C,MAAMA,CAAoB,CAQxB,YAAYoe,EAA2BhH,EAAyBjQ,EAAa,CAC3E,KAAK,0BAA4BiX,EACjC,KAAK,wBAA0BhH,EAC/B,KAAK,YAAcjQ,EAEnB,KAAK,iBAAmB,IAAI7B,GAE5B,KAAK,QAAU,GAEf,KAAK,kBAAoB+Y,GAEzB,KAAK,mBAAqBC,GAAuB,cAEjD,KAAK,SAAW,IAAI5R,GAAgB,EAAK,EACzC,KAAK,aAAe2R,GAAkB,KACtC,KAAK,QAAU,KAAK,YAAY,IAAI,kDAAkD,CACxF,CAKA,UAAW,CACT,KAAK,mBAAmB,EACxB,KAAK,SAAS,KAAK,EAAI,CACzB,CAIA,oBAAqB,CACnB,KAAK,0BAA0B,+BAA+B,EAAE,KAAKxV,GAAQ,CAC3E,GAAIA,GAAM,OAAQ,CAChB,IAAM0V,EAAU1V,EAAK,QAAQ,EAAE,CAAC,EAChC,OAAQ0V,EAAQ,OAAQ,CACtB,KAAKF,GAAkB,SACrB,KAAK,QAAUE,EAAQ,QACvB,KAAK,iBAAiB,EACtB,MACF,KAAKF,GAAkB,UACrB,KAAK,gBAAgB,EACrB,MACF,KAAKA,GAAkB,mBACrB,KAAK,yBAAyB,EAC9B,MACF,QACE,KAAK,iBAAiB,EACtB,KACJ,CACF,CACF,CAAC,EAAE,MAAMjO,GAAS,CACZA,EAAM,OACR,KAAK,wBAAwB,UAAUA,EAAO,EAAK,GAEnD,QAAQ,MAAMA,CAAK,EACnB,KAAK,wBAAwB,UAAU,CACrC,OAAQ,GACV,EAAG,EAAK,EAEZ,CAAC,CACH,CAIA,kBAAmB,CACjB,WAAW,IAAM,CACf,KAAK,mBAAmB,CAC1B,EAAG,GAAI,CACT,CAIA,iBAAkB,CAChB,KAAK,aAAeiO,GAAkB,UACtC,WAAW,IAAM,CACf,KAAK,iBAAiB,KAAK,CAC7B,EAAG,IAAI,CACT,CAIA,0BAA2B,CACzB,KAAK,aAAeA,GAAkB,kBACxC,CACA,MAAO,CACL,KAAK,UAAO,SAAqCta,EAAmB,CAClE,OAAO,IAAKA,GAAqB/D,GAAwBgJ,EAAuBwV,EAAyB,EAAMxV,EAAuB4H,EAAuB,EAAM5H,EAAqBT,EAAW,CAAC,CACtM,CACF,CACA,MAAO,CACL,KAAK,UAAyB9D,EAAkB,CAC9C,KAAMzE,EACN,UAAW,CAAC,CAAC,wBAAwB,CAAC,EACtC,QAAS,CACP,iBAAkB,kBACpB,EACA,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,qBAAqB,EAAG,CAAC,EAAG,+BAA+B,EAAG,CAAC,EAAG,2CAA2C,EAAG,CAAC,EAAG,oCAAoC,EAAG,CAAC,EAAG,0CAA0C,EAAG,CAAC,EAAG,6CAA6C,EAAG,CAAC,EAAG,qDAAqD,EAAG,CAAC,aAAc,SAAU,kBAAmB,QAAS,EAAG,MAAM,EAAG,CAAC,EAAG,2DAA4D,EAAG,WAAW,EAAG,CAAC,QAAS,OAAQ,SAAU,MAAM,EAAG,CAAC,EAAG,iDAAiD,EAAG,CAAC,EAAG,mDAAmD,CAAC,EAChnB,SAAU,SAAsC5Z,EAAIC,EAAK,CACnDD,EAAK,IACJqB,EAAW,EAAGiM,GAA4C,EAAG,EAAG,UAAW,CAAC,EAC5ElN,EAAO,EAAG,OAAO,GAElBJ,EAAK,GACJwB,EAAiBd,EAAY,EAAG,EAAGT,EAAI,QAAQ,EAAI,EAAI,EAAE,CAEhE,EACA,aAAc,CAAMkxB,GAA8BkH,GAA4BC,GAAwBC,GAAwBlH,GAAc7S,EAAW,EACvJ,OAAQ,CAAC;AAAA,CAAqwE,EAC9wE,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO5E,CACT,GAAG,EAMGC,GAAsB0E,EAAoB,QAAQ,EAClDzE,GAA0B6b,GAAwB,QAAQ,EAC1D5b,GAAmBwa,GAAiB,QAAQ,EAC9Cva,IAA4B,IAAM,CACpC,MAAMA,CAAY,CAChB,MAAO,CACL,KAAK,UAAO,SAA6B2D,EAAmB,CAC1D,OAAO,IAAKA,GAAqB3D,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBwe,GAAiB,CAC7C,KAAMxe,CACR,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAyBye,GAAiB,CAC7C,UAAW,CAAChjB,GAAcijB,GAAkBljB,GAAe4C,GAAoBD,GAAmBE,GAAcC,EAAa,EAC7H,QAAS,CAACua,GAAc/C,GAAa6I,GAAqB5e,GAAkB6e,GAAe/e,GAAqBgf,GAAcC,GAAejI,GAAkB+E,GAAemD,GAAiBC,GAAYlf,GAAyBJ,GAAiBlB,GAA8BC,GAAoCC,GAAsCa,GAA2BlE,GAAiCsE,GAAmBxE,GAA2BC,GAAiCE,GAAmCI,EAAiB,CAC9hB,CAAC,CACH,CACF,CACA,OAAOsE,CACT,GAAG,EAICC,IAAoC,IAAM,CAC5C,MAAMA,CAAoB,CACxB,IAAI,QAAS,CACX,OAAO,KAAK,OACd,CACA,IAAI,OAAOuK,EAAO,CAChB,KAAK,QAAUA,EACf,KAAK,kBAAkB,cAAc,CACvC,CACA,YAAYyU,EAAmBzW,EAAkBoR,EAAesF,EAAYxH,EAAiB5Q,EAAmB+S,EAAmB,CACjI,KAAK,kBAAoBoF,EACzB,KAAK,iBAAmBzW,EACxB,KAAK,cAAgBoR,EACrB,KAAK,WAAasF,EAClB,KAAK,gBAAkBxH,EACvB,KAAK,kBAAoB5Q,EACzB,KAAK,kBAAoB+S,EACzB,KAAK,cAAgBjV,EAAO,EAAK,EACjC,KAAK,YAAc,IAAIM,GACvB,KAAK,SAAW,IAAIiK,EACtB,CACA,SAAS/K,EAAO,CACV,KAAK,cAAc,GAAK,KAAK,OAAO,qBAAuB,CAAC,KAAK,YAAYA,CAAK,GAAK,KAAK,WAAW,eAAiB,CAAC,KAAK,WAAW,cAAc,SAASA,EAAM,MAAM,IAAM,KAAK,OAAO,QAAU,CAAC,KAAK,OAAO,OAAO,cAAc,SAASA,EAAM,MAAM,GAAK,CAAC,KAAK,OAAO,SACnR,KAAK,QAAQ,CAEjB,CACA,aAAc,CACZ,KAAK,SAAS,KAAK,EACnB,KAAK,SAAS,YAAY,CAC5B,CACA,SAAU,CACR,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,uBACvC,CAAC,CACH,CACA,qBAAsB,CACpB,KAAK,OAAO,aAAa,CAC3B,CACA,MAAO,CACL,KAAK,UAAY,KAAK,kBAAkB,UAAU,EAClD,KAAK,cAAc,IAAI,EAAI,EACtB,KAAK,cAAc,yBACtB,KAAK,iBAAiB,KAAKlI,EAAyB,EAEtD,KAAK,iBAAiB,KAAKH,EAA4B,CACzD,CACA,YAAYqI,EAAO,CACjB,GAAI,CACF,MAAO,EAAAA,GAAO,QAAQ,QAAQ,kBAAkB,CAClD,MAAQ,CACN,MAAO,EACT,CACF,CACA,MAAO,CACL,KAAK,UAAO,SAAqCT,EAAmB,CAClE,OAAO,IAAKA,GAAqB1D,GAAwB2I,EAAuB8R,EAAiB,EAAM9R,EAAuBE,EAAgB,EAAMF,EAAuB5D,EAAa,EAAM4D,EAAqB6S,EAAU,EAAM7S,EAAuB4D,EAAe,EAAM5D,EAAuBzD,EAAiB,EAAMyD,EAAqByR,EAAiB,CAAC,CACtW,CACF,CACA,MAAO,CACL,KAAK,UAAyBhW,EAAkB,CAC9C,KAAMpE,EACN,UAAW,CAAC,CAAC,0BAA0B,CAAC,EACxC,aAAc,SAA0Cja,EAAIC,EAAK,CAC3DD,EAAK,GACJe,EAAW,QAAS,SAAsDI,EAAQ,CACnF,OAAOlB,EAAI,SAASkB,CAAM,CAC5B,EAAG,GAAUg4B,EAAiB,CAElC,EACA,WAAY,GACZ,SAAU,CAAI7a,CAAmB,EACjC,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,cAAe,wBAAyB,EAAG,wBAAyB,EAAG,SAAS,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,OAAO,EAAG,CAAC,EAAG,0BAA0B,EAAG,CAAC,EAAG,cAAe,uBAAwB,eAAe,EAAG,CAAC,cAAe,gCAAiC,EAAG,cAAe,oBAAqB,aAAc,EAAG,OAAO,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,EAAG,cAAe,uBAAwB,gBAAiB,EAAG,OAAO,EAAG,CAAC,EAAG,kBAAkB,CAAC,EAC5c,SAAU,SAAsCte,EAAIC,EAAK,CACnDD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACpDC,EAAO,CAAC,EACRC,EAAO,EAAG,OAAO,EACjBA,EAAO,EAAG,SAAS,EACnBC,EAAa,EACbH,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGmM,GAA4C,EAAG,EAAG,MAAO,CAAC,EACxEtN,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAA6D,CAClF,OAAOd,EAAI,QAAQ,CACrB,CAAC,EACEI,EAAa,EAAE,EAAE,EACjBgB,EAAW,EAAGoM,GAA4C,EAAG,EAAG,MAAO,CAAC,EACxEpN,EAAa,GAEdL,EAAK,IACJuB,IAAYtB,EAAI,QAAU,KAAO,KAAOA,EAAI,OAAO,QAAU,EAAE,EAC/D6B,EAAW,UAAcK,EAAgB,GAAIiS,GAAMnU,EAAI,cAAc,CAAC,CAAC,EACvEO,EAAU,CAAC,EACXC,EAAqBC,EAAY,EAAG,EAAMA,EAAY,EAAG,EAAGT,EAAI,kBAAkB,MAAM,CAAC,CAAC,EAC1FO,EAAU,CAAC,EACXgB,EAAevB,EAAI,QAAU,MAAcA,EAAI,OAAO,aAAgB,EAAI,EAAE,EAC5EO,EAAU,CAAC,EACXgB,EAAevB,EAAI,QAAU,MAAcA,EAAI,OAAO,KAAQ,EAAI,EAAE,EAE3E,EACA,aAAc,CAAC4yB,GAAiBzS,GAAYC,GAAqBgR,GAAW9S,EAAwBC,EAAW,EAC/G,OAAQ,CAAC;AAAA,CAA2lD,EACpmD,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOvE,CACT,GAAG,EAICC,IAAgD,IAAM,CACxD,MAAMA,CAAgC,CACpC,aAAc,CACZ,KAAK,iBAAmB6D,EAAO,EAC/B,KAAK,kBAAoBA,EAAO,EAChC,KAAK,UAAY0W,GAAM,CAAC,CAAC,EACzB,KAAK,SAAWA,GAAM,EAAK,EAC3B,KAAK,gBAAkB7V,EAAO9H,GAAgB,IAAI,EAClD,KAAK,WAAa0G,EAAOiY,EAAU,EAEnC,KAAK,mBAAqB,gBAC5B,CAEA,qBAAqBrX,EAAO,CAC1BA,EAAM,eAAe,EACrB,GAAM,CACJ,oBAAAgb,EACA,eAAAC,CACF,EAAI,KAAK,yBAAyB,EAC9BC,EAEAF,EAAoB,UAAU,SAAS,QAAQ,GAAKC,EAAe,WAAW,OAAS,EAEzFC,EAAc,SAAS,eAAe,KAAK,oBAAsBD,EAAe,UAAU,CAAC,EAAE,EAAE,EAK/FC,EAAcF,EAAoB,mBAG/BE,IACHA,EAAc,KAAK,mBAAmBD,EAAe,EAAE,GAEzD,KAAK,aAAaC,CAAW,EACxBA,GAGH,KAAK,kBAAkB,KAAK,CAC1B,UAAW9f,GAA2B,KACtC,gBAAiB,KAAK,gBAAgB,CACxC,CAAC,CAEL,CAEA,mBAAmB4E,EAAO,CACxBA,EAAM,eAAe,EACrB,GAAM,CACJ,oBAAAgb,CACF,EAAI,KAAK,yBAAyB,EAC9BG,EAAkBH,EAAoB,uBAErCG,EAKHA,EAAkB,KAAK,qBAAqBA,CAAe,EAH3DA,EAAkB,KAAK,mBAAmBH,EAAoB,GAAG,QAAQ,KAAK,oBAAqB,EAAE,EAAG5f,GAA2B,QAAQ,EAK7I,KAAK,aAAa+f,CAAe,EAC5BA,GAGH,KAAK,kBAAkB,KAAK,CAC1B,UAAW/f,GAA2B,SACtC,gBAAiB,KAAK,gBAAgB,CACxC,CAAC,CAEL,CAEA,wBAAwB4E,EAAO,CAC7BA,EAAM,eAAe,EACrB,GAAM,CACJ,oBAAAgb,EACA,eAAAC,CACF,EAAI,KAAK,yBAAyB,EAC5BG,EAAWJ,EAAoB,UAAU,SAAS,QAAQ,EAC1DK,EAAoBJ,EAAe,WAAW,OAAS,EAC7D,OAAQjb,EAAM,IAAK,CACjB,IAAK,aAEH,GAAIqb,GAAqB,CAACD,EAAU,CAClC,KAAK,gBAAgB,IAAI,WAAW,OAAO,EAAGH,CAAc,EAC5D,MACF,CACA,MACF,IAAK,YACH,CACE,IAAMK,EAAgBN,EAAoB,UAAU,SAAS,aAAa,EACpEO,EAAuBP,EAAoB,cAAc,cAAc,UAAU,SAAS,aAAa,EAE7G,GAAIM,GAAiB,CAACC,GAAwB,CAACH,EAC7C,OAGF,GAAIC,GAAqBD,EAAU,CACjC,KAAK,gBAAgB,IAAI,WAAW,OAAO,EAAGH,CAAc,EAC5D,MACF,CAGA,IAAMO,EADsBR,EAAoB,cAAc,eACL,uBAAuB,KAAK,kBAAkB,EAAE,KAAK,CAAC,EACzGS,GAAuB,KAAK,yBAAyBD,CAA2B,EACtF,KAAK,gBAAgB,IAAI,WAAW,OAAO,EAAGC,GAAqB,cAAc,EACjF,KAAK,aAAaA,GAAqB,mBAAmB,EAC1D,KACF,CACJ,CACF,CAEA,iBAAiBC,EAAqB,CAC/B,KAAK,SAAS,GACM,KAAK,WAAW,cAAc,uBAAuB,KAAK,kBAAkB,EAAE,KAAK,CAAC,GAC3F,MAAM,CAE1B,CAQA,iBAAiBjP,EAAIkP,EAAW,CAC9B,QAAWC,KAAYD,EAAW,CAChC,GAAIlP,IAAOmP,EAAS,GAClB,OAAOA,EACF,GAAIA,EAAS,WAAW,OAAS,EAAG,CACzC,IAAMC,EAAe,KAAK,iBAAiBpP,EAAImP,EAAS,SAAS,EACjE,GAAIC,EACF,OAAOA,CAEX,CACF,CACA,OAAO,IACT,CAMA,aAAaC,EAAkB,CACzBA,GAAkB,WAAW,SAAS,KAAK,aAAa,GAAKA,EAAiB,IAAI,WAAW,KAAK,mBAAmB,GAChGA,EAAiB,uBAAuB,KAAK,kBAAkB,EAAE,KAAK,CAAC,GAC9E,MAAM,CAE1B,CAQA,mBAAmBC,EAAYC,EAAY5gB,GAA2B,KAAM,CAC1E,IAAIsQ,EACEuQ,EAAO,KAAK,mBAAmBF,EAAY,EAAK,EACtD,GAAIE,EAAK,OAAS,EAAG,CACnB,IAAMC,EAAkBD,EAAK,IAAI,EACjC,GAAIC,IAEFxQ,EAAU,SAAS,eAAe,KAAK,oBAAsBwQ,CAAe,EAExEF,IAAc5gB,GAA2B,OAC3CsQ,EAAUA,GAAS,oBAEjB,CAACA,GACH,OAAO,KAAK,mBAAmBwQ,EAAiBF,CAAS,CAG/D,CACA,OAAOtQ,CACT,CAMA,yBAAyBwF,EAAgB,SAAS,cAAe,CAE/D,IAAM8J,EAAsB9J,EAAc,cACpC+J,EAAiB,KAAK,iBAAiBD,EAAoB,GAAG,QAAQ,KAAK,oBAAqB,EAAE,EAAG,KAAK,UAAU,CAAC,EAC3H,MAAO,CACL,oBAAAA,EACA,eAAAC,CACF,CACF,CAOA,qBAAqBvP,EAAS,CAC5B,GAAIA,EAAQ,UAAU,SAAS,QAAQ,EAAG,CAExC,IAAIyQ,EAAmB,KAAK,iBAAiBzQ,EAAQ,GAAG,QAAQ,KAAK,oBAAqB,EAAE,EAAG,KAAK,UAAU,CAAC,EAC/G,GAAIyQ,EAAiB,WAAW,OAAS,EAEvC,OAAAA,EAAmBA,EAAiB,UAAUA,EAAiB,UAAU,OAAS,CAAC,EACnFzQ,EAAU,SAAS,eAAe,KAAK,oBAAsByQ,EAAiB,EAAE,EAEzE,KAAK,qBAAqBzQ,CAAO,CAE5C,CACA,OAAOA,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAAiDnM,EAAmB,CAC9E,OAAO,IAAKA,GAAqBzD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBsgB,GAAkB,CAC9C,KAAMtgB,EACN,UAAW,CAAC,CAAC,GAAI,4BAA6B,EAAE,CAAC,EACjD,aAAc,SAAsDla,EAAIC,EAAK,CACvED,EAAK,GACJe,EAAW,oBAAqB,SAA8EI,EAAQ,CACvH,OAAOlB,EAAI,qBAAqBkB,CAAM,CACxC,CAAC,EAAE,kBAAmB,SAA4EA,EAAQ,CACxG,OAAOlB,EAAI,mBAAmBkB,CAAM,CACtC,CAAC,EAAE,qBAAsB,SAA+EA,EAAQ,CAC9G,OAAOlB,EAAI,wBAAwBkB,CAAM,CAC3C,CAAC,EAAE,oBAAqB,SAA8EA,EAAQ,CAC5G,OAAOlB,EAAI,wBAAwBkB,CAAM,CAC3C,CAAC,CAEL,EACA,OAAQ,CACN,UAAW,CAAC,EAAG,WAAW,EAC1B,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,iBAAkB,mBAClB,kBAAmB,oBACnB,UAAW,kBACX,SAAU,gBACZ,EACA,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAO+Y,CACT,GAAG,EAICC,IAA8B,IAAM,CACtC,MAAMA,UAAsBD,EAAgC,CAC1D,aAAc,CACZ,MAAM,GAAG,SAAS,EAElB,KAAK,UAAY4D,EAAM,EAAK,EAE5B,KAAK,cAAgB,YAErB,KAAK,oBAAsB,GAAG,KAAK,aAAa,IAEhD,KAAK,mBAAqBc,EAAO,CAAC,CAAC,EAKnC,KAAK,wBAA0BC,EAAS,IAAM,KAAK,eAAe,aAAa,IAAM7H,GAAkB,WAAW,EAElH,KAAK,eAAiB6H,EAAS,IAAM,KAAK,eAAe,eAAe,CAAC,EACzE,KAAK,eAAiBrB,EAAOtG,EAAsB,EACnD,KAAK,WAAasG,EAAO6E,EAAU,EACnC,KAAK,iBAAmB7E,EAAOsF,EAAgB,EAC/C,KAAK,OAAStF,EAAO4L,EAAM,EAC3B,KAAK,WAAa5L,EAAO+I,EAAU,EACnC,KAAK,yBAA2B/I,EAAO5F,EAAiC,EACxE,KAAK,mBAAqB4F,EAAOoI,EAAkB,EACnD,KAAK,0BAA4BpI,EAAOjI,EAAyB,EACjE,KAAK,kBAAoBiI,EAAOrF,EAAiB,EACjD,KAAK,gBAAkB4Q,GAAa,KAAK,eAAe,cAAc,CACxE,CACM,UAAW,QAAArL,EAAA,sBAEf,KAAK,QAAU,KAAK,WAAW,QAC/B,KAAK,aAAe,KAAK,WAAW,aACpC,MAAM,KAAK,aAAa,EACxB,MAAM,KAAK,cAAc,EAGzB,KAAK,gBAAgB,KAAK8L,EAAOqB,GAAMA,IAAO,KAAK,gBAAgB,GAAK,KAAK,mBAAmB,EAAE,SAAW,CAAC,EAAGjE,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUiE,GAAM,CACpK,KAAK,mBAAmB,IAAI,CAAC,CAAC,CAChC,CAAC,EAED,KAAK,mBAAmB,OAAO,KAAK,QAAS,KAAK,aAAc,EAAK,EAAE,KAAK3M,GAAK,CAAC,CAAC,EAAE,UAAUuc,GAAc,KAAK,qBAAqBA,CAAU,CAAC,EAElJ,KAAK,OAAO,OAAO,KAEnB1Q,GAAU3L,GACJA,aAAiBsO,IACnB,KAAK,qBAAqBtO,EAAM,GAAG,EAC5BkK,GAAG,IAAI,GAETA,GAAGlK,CAAK,CAChB,EAAGwI,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,EAEnD,KAAK,yBAA2B,KAAK,iBAAiB,UAAU,cAAe,IAAM,KAAK,cAAc,CAAC,CAC3G,GACA,aAAc,CACR,KAAK,2BACP,KAAK,yBAAyB,EAC9B,KAAK,yBAA2B,MAE9B,KAAK,sBACP,KAAK,oBAAoB,EACzB,KAAK,oBAAsB,KAE/B,CAMM,gBAAgBxI,EAAO4b,EAAU,QAAAtc,EAAA,sBACrC,KAAK,eAAe,eAAe,IAAI5G,GAAgB,IAAI,EAEvDkjB,EAAS,WAAW,OAAS,EAC1B,KAAK,mBAAmB,EAAE,SAASA,EAAS,EAAE,EAGjD,KAAK,mBAAmB,OAAOU,GAAgBA,EAAa,OAAO7P,GAAMA,EAAG,YAAY,IAAMmP,EAAS,IAAI,YAAY,CAAC,CAAC,EAFzH,KAAK,qBAAqBA,EAAS,EAAE,GAOvC,KAAK,eAAe,aAAa,IAAIhjB,GAAkB,IAAI,EAC3D,KAAK,eAAe,eAAe,IAAIgjB,EAAS,EAAE,EAClD,KAAK,iBAAiB,KAAK,EAE/B,GAQA,mBAAmBG,EAAYQ,EAAc,GAAM,CACjD,IAAMN,EAAO,CAAC,EACd,YAAK,UAAU,GAAG,QAAQO,GAAe,CACvC,IAAMC,EAAe,KAAK,qBAAqBD,EAAaT,CAAU,EAClEU,GAEFA,EAAa,IAAIC,GAAc,CACxBT,EAAK,SAASS,EAAW,EAAE,GAC9BT,EAAK,KAAKS,EAAW,EAAE,CAE3B,CAAC,CAEL,CAAC,EACIH,GACHN,EAAK,IAAI,EAEJA,CACT,CAEM,cAAe,QAAA3c,EAAA,sBACnB,IAAM2K,EAAe,MAAMzH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EACpF,CACJ,IAAAoH,EACA,UAAAmD,CACF,EAAI9C,EAAa,QAAQ,KACzB,KAAK,QAAUL,EACf,KAAK,cAAgBmD,CACvB,GAIM,eAAgB,QAAAzN,EAAA,sBACpB,IAAMqc,EAAY,MAAM,KAAK,yBAAyB,aAAa,KAAK,QAAS,KAAK,aAAa,EACnG,KAAK,gBAAgBA,CAAS,EAC9B,KAAK,UAAU,IAAIA,GAAa,CAAC,CAAC,CACpC,GAMA,gBAAgBA,EAAY,CAAC,EAAG,CAC9BA,EAAU,IAAU/T,GAAQtI,EAAA,sBACtBsI,EAAK,KAAO,CAAC,KAAK,kBAAkB,UAAUA,EAAK,GAAG,GAAK,CAACA,EAAK,KAAK,WAAW,GAAG,IACtFA,EAAK,IAAM,IAAIA,EAAK,GAAG,IAErBA,EAAK,WACP,KAAK,gBAAgBA,EAAK,SAAS,CAEvC,EAAC,CACH,CAMA,qBAAqBgC,EAAK,CAGxB,GAFAA,EAAM,KAAK,mBAAmB,6BAA6BA,EAAK,KAAK,QAAS,KAAK,YAAY,EAC/FA,EAAM,KAAK,mBAAmB,sBAAsBA,CAAG,EACnD,KAAK,YAAY,YAAY,IAAMA,GAAK,YAAY,EAAG,CACzD,KAAK,WAAaA,EAClB,IAAM+S,EAAY,KAAK,kBAAkB/S,EAAK,KAAK,UAAU,CAAC,EAC9D,GAAI,CAAC+S,GAAW,GACd,QAGiC,KAAK,eAAe,aAAa,IAAM/jB,GAAkB,YAAc,KAAK,eAAe,aAAa,IAAMA,GAAkB,OAIjK,KAAK,eAAe,eAAe,IAAI,KAAK,gBAAgB,CAAC,EAG1D,KAAK,wBAAwB,IAChC,KAAK,qBAAqB+jB,GAAW,EAAE,EACvC,KAAK,eAAe,eAAe,IAAIA,EAAU,EAAE,EAEvD,CACF,CAQA,kBAAkB/S,EAAK+R,EAAW,CAChC,QAAWC,KAAYD,EAAW,CAEhC,IADgBC,EAAS,IAAM,KAAK,mBAAmB,sBAAsBA,EAAS,GAAG,EAAI,SAChF,kBAAkB,IAAMhS,GAAK,kBAAkB,EAC1D,OAAOgS,EACF,GAAIA,EAAS,WAAW,OAAS,EAAG,CACzC,IAAMC,EAAe,KAAK,kBAAkBjS,EAAKgS,EAAS,SAAS,EACnE,GAAIC,EACF,OAAOA,CAEX,CACF,CACA,OAAO,IACT,CAMA,qBAAqBE,EAAY,CAC/B,KAAK,mBAAmB,IAAI,KAAK,mBAAmBA,CAAU,CAAC,CACjE,CASA,qBAAqBH,EAAUnP,EAAImQ,EAAU,CAAC,EAAG,CAC/C,GAAIhB,EAAS,IAAI,YAAY,IAAMnP,GAAI,YAAY,EACjD,MAAO,CAAC,GAAGmQ,EAAShB,CAAQ,EAE9B,GAAIA,EAAS,UACX,QAAWhO,KAASgO,EAAS,UAAW,CACtC,IAAMiB,EAAQ,KAAK,qBAAqBjP,EAAOnB,EAAI,CAAC,GAAGmQ,EAAShB,CAAQ,CAAC,EACzE,GAAIiB,EACF,OAAOA,CAEX,CAEF,OAAO,IACT,CACA,MAAO,CACL,KAAK,WAAuB,IAAM,CAChC,IAAIC,EACJ,OAAO,SAA+Bvd,EAAmB,CACvD,OAAQud,IAA+BA,EAAgCC,GAAsBhhB,CAAa,IAAIwD,GAAqBxD,CAAa,CAClJ,CACF,GAAG,CACL,CACA,MAAO,CACL,KAAK,UAAyBkE,EAAkB,CAC9C,KAAMlE,EACN,UAAW,CAAC,CAAC,SAAS,CAAC,EACvB,OAAQ,CACN,UAAW,CAAC,EAAG,WAAW,CAC5B,EACA,WAAY,GACZ,SAAU,CAAIub,GAAmB,CAAC0F,GAA6B,EAAGjjB,EAAiB,CAAC,EAAMkjB,GAA+B/c,CAAmB,EAC5I,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,eAAgB,EAAE,EAAG,CAAC,0BAA2B,EAAE,EAAG,CAAC,oBAAqB,EAAE,EAAG,CAAC,EAAG,mBAAoB,yBAAyB,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,EAAG,QAAS,cAAe,UAAW,YAAa,KAAM,QAAQ,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,SAAU,SAAU,EAAG,QAAS,YAAa,KAAM,MAAM,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,EAAG,QAAS,YAAa,WAAY,KAAM,aAAc,aAAa,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,EAAG,IAAI,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,SAAU,SAAU,EAAG,KAAM,MAAM,EAAG,CAAC,WAAY,KAAM,uBAAwB,mBAAoB,EAAG,KAAM,aAAc,aAAa,EAAG,CAAC,cAAe,sBAAuB,WAAY,IAAK,EAAG,QAAS,gBAAiB,eAAe,EAAG,CAAC,EAAG,SAAS,EAAG,CAAC,EAAG,YAAa,MAAM,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,EAAG,cAAc,EAAG,CAAC,EAAG,OAAQ,eAAe,EAAG,CAAC,cAAe,gBAAiB,EAAG,gBAAiB,EAAG,IAAI,EAAG,CAAC,EAAG,oBAAoB,CAAC,EAC3nC,SAAU,SAAgCte,EAAIC,EAAK,CAC7CD,EAAK,IACJiE,GAAiB,EAAG0J,GAA8B,EAAG,EAAG,eAAgB,KAAMvI,EAAU,EACxF/D,EAAW,EAAGsN,GAAsC,EAAG,EAAG,cAAe,KAAM,EAAM1M,EAAsB,EAAE,EAAGmN,GAAsC,GAAI,GAAI,cAAe,KAAM,EAAMnN,EAAsB,GAEhNjC,EAAK,GACJmE,GAAWlE,EAAI,UAAU,CAAC,CAEjC,EACA,aAAc,CAAC4yB,GAAiBxS,GAAkB9B,EAAwBC,GAAaqa,GAAiByC,GAAYnjB,GAAmBE,GAAcC,GAAekI,GAAuB+a,EAAY,EACvM,OAAQ,CAAC;AAAA,CAAsjG,EAC/jG,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOphB,CACT,GAAG,EAICC,IAAqC,IAAM,CAC7C,MAAMA,CAAqB,CACzB,aAAc,CACZ,KAAK,qBAAuB2E,GAAU,gBAAiB,CACrD,KAAM0W,EACR,CAAC,EACD,KAAK,gBAAkB1W,GAAU,uBAAwB,CACvD,KAAM0W,EACR,CAAC,EACD,KAAK,cAAgB+F,GAAa,eAAgB,CAChD,KAAM/F,EACR,CAAC,EACD,KAAK,iBAAmB1X,EAAO,EAC/B,KAAK,kBAAoBA,EAAO,EAEhC,KAAK,QAAU0W,GAAM,EAAE,EAEvB,KAAK,IAAMA,GAAM,MAAS,EAE1B,KAAK,KAAOA,GAAM,EAAE,EAEpB,KAAK,UAAY3W,EAAM,EAAK,EAE5B,KAAK,SAAW2W,GAAM,CAAC,CAAC,EAExB,KAAK,SAAWA,GAAM,EAAK,EAE3B,KAAK,UAAYA,GAAM,EAAK,EAE5B,KAAK,aAAeA,GAAM,EAAK,EAE/B,KAAK,gBAAkBA,GAAM,IAAI,EAEjC,KAAK,OAAS5V,EAAS,IAAM,KAAK,gBAAgB,eAAe,IAAM,MAAQ,KAAK,gBAAgB,eAAe,IAAM,KAAK,gBAAgB,CAAC,EAE/I,KAAK,iBAAmBA,EAAS,IAAM,KAAK,cAAc,EAAE,OAAS,CAAC,EAEtE,KAAK,GAAKC,GAAY,UAAU,EAChC,KAAK,WAAatB,EAAOiY,EAAU,EAEnC,KAAK,cAAgB5W,EAAS,IAAM,KAAK,SAAS,EAAE,IAAImN,IACtDA,EAAM,GAAKA,EAAM,IAAMlN,GAAY,UAAU,EACtCkN,EACR,CAAC,EAEF,KAAK,kBAAoBnN,EAAS,IAAM,KAAK,OAAO,GAAK,KAAK,iBAAiB,GAAK,CAAC,KAAK,SAAS,CAAC,EAEpG,KAAK,gBAAkBA,EAAS,IAAM,KAAK,cAAc,EAAE,MAAM,EAAG,KAAK,qBAAqB,CAAC,CAAC,EAEhG,KAAK,qBAAuBA,EAAS,IAAM,KAAK,uBAAuB,EAAI,KAAK,mBAAqB,KAAK,sBAAsB,EAIhI,KAAK,gBAAkBA,EAAS,IAC1B,KAAK,UAAU,EACc,CAAC,GAAG,IAAI,IAAI,KAAK,gBAAgB,EAAE,IAAImN,GAASA,EAAM,KAAK,CAAC,CAAC,EAC9D,IAAIyP,IAAU,CAC1C,MAAAA,EACA,SAAU,KAAK,gBAAgB,EAAE,OAAOzP,GAASA,EAAM,QAAUyP,CAAK,CACxE,EAAE,EAEG,CAAC,CACN,MAAO,KACP,SAAU,KAAK,gBAAgB,CACjC,CAAC,CACF,EAED,KAAK,0BAA4B5c,EAAS,IAAM,CAAC,KAAK,uBAAuB,GAAK,KAAK,cAAc,EAAE,OAAS,KAAK,sBAAsB,EAE3I,KAAK,eAAiBA,EAAS,IAAM,KAAK,eAAe,eAAe,CAAC,EACzE,KAAK,uBAAyBqZ,GAC9B,KAAK,uBAAyBwD,GAE9B,KAAK,uBAAyB,EAE9B,KAAK,mBAAqB,GAE1B,KAAK,uBAAyB9c,EAAO,EAAK,EAC1C,KAAK,gBAAkB9H,GACvB,KAAK,gBAAkBoa,GACvB,KAAK,eAAiBD,GACtB,KAAK,cAAgB0K,GACrB,KAAK,eAAiBne,EAAOtG,EAAsB,CACrD,CACA,YAAYkH,EAAO,CACjBA,EAAM,eAAe,EAGjB,MAAK,aAAa,GAGtB,KAAK,iBAAiB,KAAK,CAC7B,CAEA,qBAAqBA,EAAO,CAC1BA,EAAM,eAAe,EACrB,IAAMkR,EAAgB,SAAS,cAE/B,GAD8B,KAAK,cAAc,GAAG,KAAKxF,GAAWA,EAAQ,cAAc,KAAOwF,EAAc,EAAE,EACtF,CAEzB,IAAMgK,EAAc,KAAK,kBAAkBhK,EAAe9V,GAA2B,IAAI,EACrF8f,EACFA,EAAY,MAAM,EAElB,KAAK,kBAAkB,KAAK,CAC1B,UAAW9f,GAA2B,KACtC,gBAAiB,KAAK,gBAAgB,EACtC,aAAc,EAChB,CAAC,EAEH,MACF,CACA,IAAMoiB,EAAoB,CAAC,KAAK,iBAAiB,GAAK,CAAC,KAAK,OAAO,EAC7DC,EAAuB,KAAK,0BAA0B,GAAKvM,EAAc,cAAc,KAAO,KAAK,qBAAqB,GAAG,eAAe,GAChJ,GAAIsM,GAAqBC,EAAsB,CAE7C,KAAK,kBAAkB,KAAK,CAC1B,UAAWriB,GAA2B,KACtC,gBAAiB,KAAK,gBAAgB,EACtC,aAAcqiB,CAChB,CAAC,EACD,MACF,CACA,KAAK,gBAAgBvM,CAAa,CAEpC,CAEA,mBAAmBlR,EAAO,CACxBA,EAAM,eAAe,EACrB,IAAMkR,EAAgB,SAAS,cACzBwM,EAAwB,KAAK,cAAc,GAAG,KAAKhS,GAAWA,EAAQ,cAAc,KAAOwF,EAAc,EAAE,EAC3GuM,EAAuB,KAAK,0BAA0B,GAAKvM,EAAc,cAAc,KAAO,KAAK,qBAAqB,GAAG,cAAc,GAC/I,GAAIwM,GAAyBD,EAAsB,CACjD,IAAMtC,EAAkB,KAAK,kBAAkBjK,EAAe9V,GAA2B,QAAQ,EACjG,GAAI+f,EAAiB,CACnBA,EAAgB,MAAM,EACtB,MACF,CAEA,KAAK,gBAAgB,EAAE,eAAe,MAAM,EAC5C,MACF,CACA,IAAMwC,EAAyB,KAAK,gBAAgB,GAAG,cAAc,KAAOzM,EAAc,GAE1F,GAD0B,CAAC,KAAK,iBAAiB,GACxByM,EAAwB,CAE/C,KAAK,kBAAkB,KAAK,CAC1B,UAAWviB,GAA2B,SACtC,gBAAiB,KAAK,gBAAgB,CACxC,CAAC,EACD,MACF,CACA,KAAK,gBAAgB8V,CAAa,CAEpC,CAEA,wBAAwBlR,EAAO,CAC7B,KAAK,sBAAsBA,CAAK,CAClC,CAEA,iBAAiBgc,EAAW,CAC1B,GAAI,CAAC,KAAK,SAAS,EAAG,CACpB,IAAM4B,EAAiB,KAAK,gBAAgB,GAAG,cAC/C,OAAQ5B,EAAW,CACjB,KAAK5gB,GAA2B,KAC9BwiB,GAAgB,MAAM,EACtB,MACF,KAAKxiB,GAA2B,SAC9B,CACE,IAAMyiB,EAAY,KAAK,oBAAoB,EACvCA,EACFA,GAAW,MAAM,EAEjBD,GAAgB,MAAM,EAExB,KACF,CACJ,CACF,CACF,CACA,eAAgB,CACV,KAAK,iBAAiB,GAAK,CAAC,KAAK,OAAO,GAC1C,KAAK,uBAAuB,IAAI,EAAK,EAEvC,KAAK,eAAe,eAAe,OAAOtB,GAAgB,CAAC,KAAK,aAAa,GAAKA,IAAiB,KAAK,gBAAgB,EAAI,KAAK,gBAAgB,EAAI,IAAI,EACpJ,KAAK,aAAa,IACrB,KAAK,eAAe,aAAa,IAAI1jB,GAAkB,WAAW,EAClE,KAAK,eAAe,eAAe,IAAI,KAAK,EAAE,EAElD,CACA,iBAAiBoH,EAAO4N,EAAO,CAC7B5N,EAAM,eAAe,EACrBA,EAAM,gBAAgB,EACtB,KAAK,eAAe,aAAa,IAAIpH,GAAkB,WAAW,EAClE,KAAK,eAAe,eAAe,IAAIgV,EAAM,EAAE,EAC/CA,EAAM,UAAU,EAChB,KAAK,iBAAiB,KAAK,CAC7B,CAMA,2BAA2BkN,EAAY,CACrC,IAAMgD,EAAkB,KAAK,cAAc,EAErCC,EAAiBD,EAAgBA,EAAgB,OAAS,CAAC,EAAE,cACnEhD,EAAW,cAAc,MAAM,EAC/BiD,GAAgB,MAAM,CACxB,CAMA,gBAAgB7M,EAAe,CACM,KAAK,cAAc,IAAI,CAAC,GAAG,eAClC,MAAM,CACpC,CAIA,qBAAsB,CACpB,IAAI8M,EACJ,OAAI,KAAK,0BAA0B,EACjCA,EAAmB,KAAK,qBAAqB,GAAG,eAAe,kBAE/DA,EAAmB,KAAK,cAAc,IAAI,KAAK,cAAc,EAAE,OAAS,CAAC,GAAG,cAEvEA,CACT,CAQA,kBAAkBC,EAAgBjC,EAAY5gB,GAA2B,KAAM,CAC7E,IAAI8iB,EACEC,EAAkB,KAAK,cAAc,EAAE,UAAUvQ,GAASA,EAAM,KAAOqQ,EAAe,EAAE,EAE9F,GAAIE,IAAoB,GAAI,CAC1B,IAAIC,EACApC,IAAc5gB,GAA2B,KAC3CgjB,EAAe,KAAK,cAAc,EAAED,EAAkB,CAAC,EAC9CnC,IAAc5gB,GAA2B,WAClDgjB,EAAe,KAAK,cAAc,EAAED,EAAkB,CAAC,GAEzDD,EAAiB,SAAS,eAAeE,GAAc,EAAE,CAC3D,CAEA,GAAI,KAAK,0BAA0B,IAC7BpC,IAAc5gB,GAA2B,MACX+iB,IAAoB,KAAK,gBAAgB,EAAE,OAAS,IAElFD,EAAiB,KAAK,qBAAqB,GAAG,eAAe,mBAG7DlC,IAAc5gB,GAA2B,UACd6iB,EAAe,cAAc,KAAO,KAAK,qBAAqB,GAAG,eAAe,IACnF,CACxB,IAAMG,EAAe,KAAK,cAAc,EAAE,KAAK,gBAAgB,EAAE,OAAS,CAAC,EAC3EF,EAAiB,SAAS,eAAeE,GAAc,EAAE,CAC3D,CAGJ,OAAOF,CACT,CAOA,sBAAsBle,EAAO,CAE3B,GAAI,KAAK,iBAAiB,GAExB,GAAI,CAAC,aAAc,QAAS,OAAO,EAAE,SAASA,EAAM,GAAG,GAAK,CAAC,KAAK,OAAO,EACvE,KAAK,eAAe,eAAe,IAAI,KAAK,gBAAgB,CAAC,UAGtD,CAAC,YAAa,QAAS,OAAO,EAAE,SAASA,EAAM,GAAG,GAAK,KAAK,OAAO,EAAG,CAC7E,IAAMqe,EAAiB,SAAS,cAC1BC,EAAmB,KAAK,cAAc,GAAG,KAAK5S,GAAWA,EAAQ,cAAc,KAAO2S,EAAe,EAAE,EAC7G,KAAK,eAAe,eAAe,IAAI,IAAI,EACvCC,GACF,KAAK,gBAAgB,EAAE,cAAc,MAAM,CAE/C,EAEJ,CACA,MAAO,CACL,KAAK,UAAO,SAAsC/e,EAAmB,CACnE,OAAO,IAAKA,GAAqBvD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBiE,EAAkB,CAC9C,KAAMjE,EACN,UAAW,CAAC,CAAC,iBAAiB,CAAC,EAC/B,UAAW,SAAoCpa,EAAIC,EAAK,CAClDD,EAAK,IACJ6f,GAAkB5f,EAAI,qBAAsBsU,GAAM,EAAGkhB,EAAU,EAC/D5V,GAAkB5f,EAAI,gBAAiBuU,GAAM,EAAGihB,EAAU,EAC1D5V,GAAkB5f,EAAI,cAAewU,GAAM,EAAGghB,EAAU,GAEzDz1B,EAAK,GACJggB,GAAe,CAAC,CAEvB,EACA,aAAc,SAA2ChgB,EAAIC,EAAK,CAC5DD,EAAK,GACJe,EAAW,QAAS,SAAuDI,EAAQ,CACpF,OAAOlB,EAAI,YAAYkB,CAAM,CAC/B,CAAC,EAAE,oBAAqB,SAAmEA,EAAQ,CACjG,OAAOlB,EAAI,qBAAqBkB,CAAM,CACxC,CAAC,EAAE,kBAAmB,SAAiEA,EAAQ,CAC7F,OAAOlB,EAAI,mBAAmBkB,CAAM,CACtC,CAAC,EAAE,qBAAsB,SAAoEA,EAAQ,CACnG,OAAOlB,EAAI,wBAAwBkB,CAAM,CAC3C,CAAC,EAAE,oBAAqB,SAAmEA,EAAQ,CACjG,OAAOlB,EAAI,wBAAwBkB,CAAM,CAC3C,CAAC,CAEL,EACA,OAAQ,CACN,QAAS,CAAC,EAAG,SAAS,EACtB,IAAK,CAAC,EAAG,KAAK,EACd,KAAM,CAAC,EAAG,MAAM,EAChB,UAAW,CAAC,EAAG,WAAW,EAC1B,SAAU,CAAC,EAAG,UAAU,EACxB,SAAU,CAAC,EAAG,UAAU,EACxB,UAAW,CAAC,EAAG,WAAW,EAC1B,aAAc,CAAC,EAAG,cAAc,EAChC,gBAAiB,CAAC,EAAG,iBAAiB,CACxC,EACA,QAAS,CACP,iBAAkB,mBAClB,kBAAmB,oBACnB,QAAS,gBACT,IAAK,YACL,KAAM,aACN,SAAU,iBACV,SAAU,iBACV,UAAW,kBACX,aAAc,qBACd,gBAAiB,uBACnB,EACA,WAAY,GACZ,SAAU,CAAIu0B,GAAmB,CAAC0F,GAA6B,CAAC,CAAC,EAAM9c,CAAmB,EAC1F,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,+BAAgC,EAAE,EAAG,CAAC,uBAAwB,EAAE,EAAG,CAAC,gBAAiB,EAAE,EAAG,CAAC,eAAgB,EAAE,EAAG,CAAC,oBAAqB,EAAE,EAAG,CAAC,gBAAiB,EAAE,EAAG,CAAC,WAAY,KAAM,EAAG,eAAgB,cAAe,EAAG,WAAY,SAAU,WAAW,EAAG,CAAC,WAAY,KAAM,EAAG,eAAgB,aAAc,EAAG,YAAa,WAAY,aAAc,aAAa,EAAG,CAAC,WAAY,KAAM,EAAG,eAAgB,cAAe,EAAG,UAAU,EAAG,CAAC,EAAG,mBAAoB,yBAAyB,EAAG,CAAC,WAAY,KAAM,EAAG,eAAgB,aAAc,EAAG,aAAc,aAAa,EAAG,CAAC,cAAe,uBAAwB,OAAQ,SAAU,EAAG,iBAAkB,EAAG,QAAS,gBAAiB,gBAAiB,IAAI,EAAG,CAAC,EAAG,qBAAqB,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,EAAG,qBAAqB,EAAG,CAAC,WAAY,KAAM,EAAG,qBAAqB,EAAG,CAAC,WAAY,KAAM,EAAG,2BAA4B,EAAG,QAAQ,EAAG,CAAC,WAAY,IAAK,cAAe,kBAAmB,EAAG,kBAAmB,EAAG,aAAc,aAAc,QAAS,OAAQ,gBAAiB,gBAAiB,IAAI,EAAG,CAAC,WAAY,KAAM,cAAe,8BAA+B,EAAG,8BAA+B,EAAG,QAAS,aAAc,aAAa,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,EAAG,yBAAyB,EAAG,CAAC,kBAAmB,GAAI,qBAAsB,QAAS,EAAG,gCAAgC,EAAG,CAAC,EAAG,mCAAmC,EAAG,CAAC,cAAe,yBAA0B,EAAG,aAAc,yBAA0B,EAAG,YAAY,EAAG,CAAC,EAAG,OAAQ,MAAM,EAAG,CAAC,cAAe,yBAA0B,EAAG,aAAc,yBAA0B,EAAG,QAAS,YAAY,EAAG,CAAC,WAAY,KAAM,EAAG,uBAAuB,EAAG,CAAC,WAAY,KAAM,EAAG,0BAA0B,EAAG,CAAC,WAAY,KAAM,cAAe,kCAAmC,KAAM,kBAAmB,EAAG,kCAAmC,EAAG,QAAS,gBAAiB,gBAAiB,SAAS,CAAC,EACr9D,SAAU,SAAuCte,EAAIC,EAAK,CACpDD,EAAK,GACJqB,EAAW,EAAGkO,GAA6C,EAAG,GAAI,SAAU,CAAC,EAAE,EAAGE,GAA6C,EAAG,GAAI,IAAK,CAAC,EAAE,EAAGuB,GAA6C,EAAG,GAAI,cAAe,KAAM,EAAM/O,EAAsB,EAEvPjC,EAAK,GACJwB,EAAcvB,EAAI,aAAa,EAAI,EAAI,CAAC,CAE/C,EACA,aAAc,CAACse,EAAwBC,GAAaqa,GAAiByC,GAAYjb,GAAkBG,GAAuB4Q,GAAiB/Y,GAAcC,GAAe6Y,GAAyB7Q,GAAYqc,EAAa,EAC1N,OAAQ,CAAC;AAAA,CAAgxL,EACzxL,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOviB,CACT,GAAG,EAMCC,IAAwC,IAAM,CAChD,MAAMA,CAAwB,CAC5B,aAAc,CACZ,KAAK,SAAWoa,GAAM,EAAK,EAE3B,KAAK,QAAUA,GAAM,EAAK,EAC1B,KAAK,iBAAmB1W,EAAO,EAC/B,KAAK,OAASa,EAAO,EAAI,EACzB,KAAK,QAAUmK,GAAa,KAAK,MAAM,EACvC,KAAK,gBAAkBjS,GAAgB,cACvC,KAAK,sBAAwB0G,EAAOpD,EAAoB,EACxD,KAAK,+BAAiCoD,EAAOpG,EAAsC,EACnF,KAAK,gBAAkBoG,EAAOtG,EAAsB,EACpD,KAAK,2BAA6BsG,EAAOjI,EAAyB,EAClE,KAAK,YAAciI,EAAO6E,EAAU,EACpC,KAAK,kBAAoB7E,EAAOsF,EAAgB,EAChD,KAAK,QAAUtF,EAAO4L,EAAM,EAC5B,KAAK,YAAc5L,EAAO+I,EAAU,EACpC,KAAK,oBAAsB/I,EAAOoI,EAAkB,EACpD,KAAK,uBAAyBpI,EAAOof,EAAqB,CAC5D,CACA,IAAI,aAAc,CAChB,OAAO,KAAK,OAAO,CACrB,CACM,UAAW,QAAAlf,EAAA,sBAEf,KAAK,SAAW,KAAK,YAAY,QACjC,KAAK,cAAgB,KAAK,YAAY,aACtC,MAAM,KAAK,YAAY,EACvB,KAAK,mBAAmB,EAExB,KAAK,wBAA0B,KAAK,kBAAkB,UAAU,cAAe,IAAM,CACnF,KAAK,yBAAyB,EAC9B,KAAK,mBAAmB,CAC1B,CAAC,CACH,GACA,aAAc,CACR,KAAK,0BACP,KAAK,wBAAwB,EAC7B,KAAK,wBAA0B,KAEnC,CAEM,aAAc,QAAAA,EAAA,sBAClB,IAAMmf,EAAgB,KAAK,2BAA2B,gBAAgB,EAChExU,EAAe,MAAMzH,GAAeic,CAAa,EACvD,KAAK,SAAWxU,EAAa,QAAQ,KAAK,GAC5C,GACA,0BAA2B,CAEzB,KAAK,QAAQ,OAAO,KAAKzB,EAAmB,KAAK,WAAW,CAAC,EAAE,UAAUxI,GAAS,CAChF,GAAIA,aAAiBsO,IACnB,GAAI,KAAK,YAAYtO,EAAM,GAAG,EAC5B,KAAK,gBAAgB,eAAe,IAAI,KAAK,eAAe,EAC5D,KAAK,gBAAgB,eAAe,IAAI,KAAK,sBAAsB,EAAE,EACrE,KAAK,gBAAgB,mBAAmB,UAGjC,KAAK,uBAAuB,mBAAqB,CAAC,KAAK,qBAAqBA,EAAM,IAAK,KAAK,uBAAuB,iBAAiB,EAC3I,KAAK,uBAAuB,8BAA8B,UAGnD,KAAK,sBAAsB,OAAO,EAAG,CAC5CA,EAAM,IAAM,KAAK,oBAAoB,6BAA6BA,EAAM,IAAK,KAAK,SAAU,KAAK,aAAa,EAC9GA,EAAM,IAAM,KAAK,oBAAoB,sBAAsBA,EAAM,GAAG,EACpE,IAAI0e,EAAa,KAAK,oBAAoB,6BAA6B,KAAK,gBAAgB,WAAY,KAAK,SAAU,KAAK,aAAa,EACzIA,EAAa,KAAK,oBAAoB,sBAAsBA,CAAU,EAClE1e,EAAM,KAAK,YAAY,IAAM0e,GAAY,YAAY,GACvD,KAAK,gBAAgB,eAAe,IAAI,IAAI,CAEhD,EAEJ,CAAC,CACH,CAQA,qBAAqBC,EAAQC,EAAQ,CACnC,OAAIA,EAAO,SAAS,GAAG,IACrBA,EAASA,EAAO,MAAM,GAAG,EAAE,CAAC,GAE1BA,EAAO,CAAC,IAAM,MAChBA,EAASA,EAAO,UAAU,EAAGA,EAAO,MAAM,GAErCD,EAAO,SAASC,CAAM,CAC/B,CAEA,oBAAqB,CAEnB,KAAK,oBAAoB,OAAO,KAAK,SAAU,KAAK,cAAe,EAAK,EAAE,KAE1EjT,GAAU5L,GAAO8e,GAAK,KAAK,+BAA+B,kBAAkB,KAAK,QAAQ,CAAC,EAAE,KAAK1Y,GAAI2Y,IAAmB,CACtH,IAAA/e,EACA,eAAA+e,CACF,EAAE,CAAC,CAAC,EAAGhf,GAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CACzB,IAAAC,EACA,eAAA+e,CACF,IAAM,CACJ,KAAK,eAAiBA,GAAgB,OAAS,EAAIA,EAAe,CAAC,EAAI,KACnE,KAAK,eACP,KAAK,OAAO,IAAI,EAAQ,KAAK,eAAe,MAAO,EAEnD,KAAK,OAAO,IAAI,EAAI,EAEtB,KAAK,qBAAqB,EACtB,KAAK,YAAY/e,CAAG,GACtB,KAAK,gBAAgB,eAAe,IAAI,KAAK,eAAe,EAC5D,KAAK,gBAAgB,eAAe,IAAI,KAAK,sBAAsB,EAAE,EACrE,KAAK,gBAAgB,mBAAmB,GAC/BA,GAAK,YAAY,IAAM,KAAK,gBAAgB,YAAY,YAAY,IAC7E,KAAK,gBAAgB,eAAe,IAAI,KAAK,eAAe,EAC5D,KAAK,gBAAgB,eAAe,IAAI,KAAK,sBAAsB,EAAE,EAEzE,CAAC,CACH,CAEM,sBAAuB,QAAAT,EAAA,sBAC3B,KAAK,sBAAsB,gBAAgB,IAAI,KAAK,eAAe,EACnE,KAAK,sBAAsB,KAAK,IAAI,KAAK,gBAAgB,MAAQ,WAAW,EAC5E,KAAK,sBAAsB,QAAQ,IAAI,KAAK,gBAAgB,SAAW,gDAAgD,EACvH,KAAK,sBAAsB,IAAI,IAAI,KAAK,gBAAgB,UAAU,CACpE,GAQA,YAAYsK,EAAK,CACf,OAAOA,IAAQ,IAAMA,IAAQ,KAAOA,IAAQ,QAC9C,CACA,MAAO,CACL,KAAK,UAAO,SAAyCrK,EAAmB,CACtE,OAAO,IAAKA,GAAqBtD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBmgB,GAAkB,CAC9C,KAAMngB,EACN,UAAW,CAAC,CAAC,kBAAmB,oBAAqB,EAAE,CAAC,EACxD,SAAU,EACV,aAAc,SAA8Cra,EAAIC,EAAK,CAC/DD,EAAK,GACJuC,EAAY,SAAUtC,EAAI,WAAW,CAE5C,EACA,OAAQ,CACN,SAAU,CAAC,EAAG,UAAU,EACxB,QAAS,CAAC,EAAG,SAAS,CACxB,EACA,QAAS,CACP,SAAU,iBACV,QAAS,gBACT,iBAAkB,kBACpB,EACA,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOoa,CACT,GAAG,EAICC,IAAgC,IAAM,CACxC,MAAMA,CAAgB,CACpB,aAAc,CACZ,KAAK,SAAWma,GAAM,EAAK,EAC3B,KAAK,WAAa7V,EAAO,CAAC,CAAC,EAC3B,KAAK,YAAcmK,GAAa,KAAK,UAAU,EAC/C,KAAK,gBAAkBjS,GAAgB,OACvC,KAAK,eAAiB0G,EAAOtG,EAAsB,EACnD,KAAK,cAAgBsG,EAAOhG,EAA6B,EACzD,KAAK,qBAAuBgG,EAAOpD,EAAoB,EACvD,KAAK,WAAaoD,EAAO+I,EAAU,EACnC,KAAK,iBAAmB/I,EAAOsF,EAAgB,CACjD,CACA,UAAW,CACT,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,KAAK,CACZ,CACA,aAAc,CACR,KAAK,yBACP,KAAK,uBAAuB,EAC5B,KAAK,uBAAyB,KAElC,CACA,sBAAuB,CACrB,KAAK,qBAAqB,gBAAgB,IAAI,KAAK,eAAe,EAClE,KAAK,qBAAqB,aAAa,IAAI,EAAI,EAC/C,KAAK,qBAAqB,KAAK,IAAI,aAAa,EAChD,KAAK,qBAAqB,QAAQ,IAAI,8CAA8C,EACpF,KAAK,qBAAqB,UAAU,IAAI,EAAI,CAC9C,CACM,MAAO,QAAApF,EAAA,sBACX,KAAK,cAAc,EACnB,KAAK,wBAAwB,CAC/B,GACM,eAAgB,QAAAA,EAAA,sBACpB,GAAI,CACF,IAAMuJ,EAAQ,MAAM,KAAK,cAAc,UAAU,EACjD,KAAK,WAAW,IAAIA,CAAK,CAC3B,OAASsM,EAAI,CACX,QAAQ,MAAMA,CAAE,CAClB,CACF,GACA,yBAA0B,CACxB,KAAK,YAAY,KAAK4J,GAAK,CAAC,EAAGvW,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUK,GAAS,KAAK,gBAAgBA,CAAK,CAAC,CACpH,CACA,gBAAgBA,EAAO,CACrB,GAAIA,EAAM,QAAU,EAAG,CACrB,KAAK,eAAe,eAAe,IAAI,IAAI,EAC3C,KAAK,qBAAqB,SAAS,IAAI,EAAI,EAC3C,MACF,CACA,IAAMmW,EAAWnW,EAAM,IAAIjB,IAAS,CAClC,GAAIA,EAAK,WACT,QAASA,EAAK,MACd,cAAeA,EAAK,YACpB,UAAW,GACX,IAAKA,EAAK,IACV,MAAOA,EAAK,UACZ,QAASpH,EAAO,EAAK,EACrB,QAASA,EAAO,EAAK,EACrB,SAAUA,EAAO,EAAK,EACtB,SAAU,IAAM,KAAK,aAAaoH,EAAK,UAAU,CACnD,EAAE,EACF,KAAK,qBAAqB,SAAS,IAAI,EAAK,EAC5C,KAAK,qBAAqB,SAAS,IAAIoX,CAAQ,CACjD,CAOA,sBAAsBvS,EAAI8J,EAAO,CAC/B,IAAM3I,EAAQ,KAAK,qBAAqB,SAAS,EAAE,KAAKA,GAASA,EAAM,KAAOnB,CAAE,EAC3EmB,GAGLA,EAAM,SAAS,IAAI2I,CAAK,CAC1B,CAEM,aAAa9J,EAAI,QAAAnN,EAAA,sBACrB,KAAK,sBAAsBmN,EAAI,EAAI,EACnC,IAAMwS,EAAa,MAAM,KAAK,cAAc,YAAYxS,CAAE,EAC1D,KAAK,sBAAsBA,EAAI,EAAK,EACpC,KAAK,WAAW,IAAIwS,CAAU,CAChC,GACA,yBAA0B,CACxB,KAAK,uBAAyB,KAAK,iBAAiB,UAAU,gBAAiB,IAAM,KAAK,cAAc,CAAC,CAC3G,CACA,MAAO,CACL,KAAK,UAAO,SAAiC1f,EAAmB,CAC9D,OAAO,IAAKA,GAAqBrD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBkgB,GAAkB,CAC9C,KAAMlgB,EACN,UAAW,CAAC,CAAC,kBAAmB,YAAa,EAAE,CAAC,EAChD,OAAQ,CACN,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,SAAU,gBACZ,EACA,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA2C,IAAM,CACnD,MAAMA,CAA2B,CAC/B,aAAc,CACZ,KAAK,SAAWka,GAAM,EAAK,EAC3B,KAAK,gBAAkB3d,GAAgB,kBACvC,KAAK,eAAiB0G,EAAOtG,EAAsB,EACnD,KAAK,qBAAuBsG,EAAOpD,EAAoB,EACvD,KAAK,0BAA4BoD,EAAOzF,EAAyC,EACjF,KAAK,UAAYyF,EAAOkV,EAAS,EACjC,KAAK,WAAalV,EAAO+I,EAAU,CACrC,CACA,UAAW,CACT,KAAK,qBAAqB,EAC1B,KAAK,oCAAoC,CAC3C,CACA,sBAAuB,CACrB,KAAK,qBAAqB,gBAAgB,IAAI,KAAK,eAAe,EAClE,KAAK,qBAAqB,aAAa,IAAI,EAAI,EAC/C,KAAK,qBAAqB,KAAK,IAAI,eAAe,EAClD,KAAK,qBAAqB,QAAQ,IAAI,+CAA+C,EACrF,KAAK,qBAAqB,UAAU,IAAI,EAAI,CAC9C,CACA,qCAAsC,CACpC,KAAK,0BAA0B,SAAS,KAAKK,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUK,GAAS,KAAK,gBAAgBA,CAAK,CAAC,CAClI,CACA,gBAAgBA,EAAO,CACrB,GAAIA,EAAM,QAAU,EAAG,CACrB,KAAK,eAAe,eAAe,IAAI,IAAI,EAC3C,KAAK,qBAAqB,SAAS,IAAI,EAAI,EAC3C,MACF,CACA,IAAMmW,EAAWnW,EAAM,IAAI,CAAC,CAC1B,GAAA4D,EACA,MAAA4C,EACA,IAAAzF,EACA,aAAA6F,CACF,KACgB,CACZ,GAAAhD,EACA,QAAS4C,EACT,IAAAzF,EACA,MAAO,KAAK,UAAU,sBAAsB,IAAI,KAAK6F,CAAY,CAAC,EAClE,QAASjP,EAAO,EAAK,EACrB,QAASA,EAAO,EAAK,CACvB,EAED,EACD,KAAK,qBAAqB,SAAS,IAAI,EAAK,EAC5C,KAAK,qBAAqB,SAAS,IAAIwe,CAAQ,CACjD,CACA,MAAO,CACL,KAAK,UAAO,SAA4Czf,EAAmB,CACzE,OAAO,IAAKA,GAAqBpD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBigB,GAAkB,CAC9C,KAAMjgB,EACN,UAAW,CAAC,CAAC,kBAAmB,uBAAwB,EAAE,CAAC,EAC3D,OAAQ,CACN,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,SAAU,gBACZ,EACA,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAMCC,IAAsC,IAAM,CAC9C,MAAMA,CAAsB,CAC1B,aAAc,CACZ,KAAK,SAAWia,GAAM,EAAK,EAC3B,KAAK,iBAAmB1W,EAAO,EAC/B,KAAK,OAASc,EAAS,IAAM,CAAC,KAAK,4BAA4B,SAAS,CAAC,EACzE,KAAK,QAAUkK,GAAa,KAAK,MAAM,EACvC,KAAK,gBAAkBjS,GAAgB,aACvC,KAAK,qBAAuB0G,EAAOpD,EAAoB,EACvD,KAAK,4BAA8BoD,EAAOvF,EAAoC,CAChF,CACA,IAAI,aAAc,CAChB,OAAO,KAAK,OAAO,CACrB,CACA,UAAW,CACT,KAAK,wBAAwB,CAC/B,CAEM,yBAA0B,QAAAyF,EAAA,sBAC9B,KAAK,qBAAqB,gBAAgB,IAAI,KAAK,eAAe,EAClE,KAAK,qBAAqB,KAAK,IAAI,gBAAgB,EACnD,KAAK,qBAAqB,QAAQ,IAAI,oDAAoD,EAC1F,KAAK,qBAAqB,aAAa,IAAI,EAAI,EAE/C,IAAM0f,GADe,MAAM,KAAK,gBAAgB,IACjB,IAAI,CAAC,CAClC,GAAAvS,EACA,QAAAyS,EACA,IAAAtV,CACF,KAAO,CACL,GAAA6C,EACA,QAAAyS,EACA,IAAAtV,EACA,UAAW,EACb,EAAE,EACF,KAAK,qBAAqB,SAAS,IAAIoV,GAAY,CAAC,CAAC,CACvD,GAEM,iBAAkB,QAAA1f,EAAA,sBACtB,OAAO,MAAM,KAAK,4BAA4B,gBAAgB,CAChE,GACA,MAAO,CACL,KAAK,UAAO,SAAuCC,EAAmB,CACpE,OAAO,IAAKA,GAAqBnD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBggB,GAAkB,CAC9C,KAAMhgB,EACN,UAAW,CAAC,CAAC,kBAAmB,kBAAmB,EAAE,CAAC,EACtD,SAAU,EACV,aAAc,SAA4Cxa,EAAIC,EAAK,CAC7DD,EAAK,GACJuC,EAAY,SAAUtC,EAAI,WAAW,CAE5C,EACA,OAAQ,CACN,SAAU,CAAC,EAAG,UAAU,CAC1B,EACA,QAAS,CACP,SAAU,iBACV,iBAAkB,kBACpB,EACA,WAAY,EACd,CAAC,CACH,CACF,CACA,OAAOua,CACT,GAAG,EAICC,IAAiC,IAAM,CACzC,MAAMA,CAAiB,CACrB,IAAI,gBAAiB,CACnB,OAAO,KAAK,aAAa,QAAQ,EAAE,OAAOuL,GAAQ,CAACA,EAAK,YAAY,eAAe,UAAU,SAAS,QAAQ,GAAK,CAACA,EAAK,SAAS,CAAC,CACrI,CACA,aAAc,CACZ,KAAK,mBAAqBlI,EAAM,EAAK,EACrC,KAAK,iBAAmBC,EAAO,EAI/B,KAAK,iBAAmBa,EAAO,EAAK,EAIpC,KAAK,2BAA6BA,EAAO,EAAK,EAK9C,KAAK,wBAA0BC,EAAS,IAAM,KAAK,mBAAmB,GAAK,CAAC,KAAK,iBAAiB,GAAK,CAAC,KAAK,2BAA2B,CAAC,EAIzI,KAAK,YAAcD,EAAO,EAAK,EAC/B,KAAK,gBAAkB9H,GACvB,KAAK,cAAgB0G,EAAOwB,EAAa,EACzC,KAAK,eAAiBJ,EAAO,KAAK,eAAe,cAAc,EAC/D,KAAK,iCAAmCA,EAAO,EAAK,EACpD,KAAK,2BAA6BA,EAAO,EAAK,EAC9C,KAAK,4BAA8BA,EAAO,EAAK,EAC/C,KAAK,yBAA2BA,EAAO,EAAK,EAC5C,KAAK,uBAAyBA,EAAO,EAAK,EAC1C,KAAK,gBAAkBA,EAAO,EAAK,EACnC,KAAK,iBAAmBpB,EAAOsF,EAAgB,EAC/C,KAAK,WAAatF,EAAOiY,EAAU,EACnC,KAAK,WAAajY,EAAO+I,EAAU,EACnC,KAAK,0BAA4B/I,EAAOjI,EAAyB,EACjE,KAAK,eAAiBiI,EAAOtG,EAAsB,EAInD,KAAK,yBAA2B6R,GAAa,KAAK,uBAAuB,EAAE,KAAKS,EAAO+T,GAAaA,CAAS,EAAG3W,EAAmB,KAAK,UAAU,CAAC,EACnJ,KAAK,0BAA0B,gBAAgB,EAAE,UAAU4W,GAAW,CACpE,KAAK,iCAAiC,IAAIA,GAAS,SAAS,cAAc,OAAO,EACjF,KAAK,2BAA2B,IAAIA,GAAS,SAAS,QAAQ,OAAO,EACrE,KAAK,4BAA4B,IAAIA,GAAS,SAAS,SAAS,OAAO,EACvE,KAAK,yBAAyB,IAAIA,GAAS,SAAS,MAAM,OAAO,CACnE,CAAC,CACH,CAIA,mBAAmBpf,EAAO,CACxB,KAAK,gBAAgB,IAAI,CAAC,MAAO,UAAW,WAAW,EAAE,SAASA,EAAM,GAAG,CAAC,CAC9E,CAKA,oBAAqB,CAKnB,IAAMqf,EAAsB,KAAK,gBAAgB,GAAK,CAAC,KAAK,iBAAiB,EAC7E,KAAK,2BAA2B,IAAIA,CAAmB,CACzD,CAIA,qBAAsB,CACpB,KAAK,2BAA2B,IAAI,EAAK,CAC3C,CACM,UAAW,QAAA/f,EAAA,sBACf,KAAK,+BAA+B,EACpC,KAAK,iBAAiB,KAAK,aAAa,EACxC,KAAK,yBAAyB,UAAU,IAAM,KAAK,uBAAuB,CAAC,EAC3E,KAAK,sBAAsB,CAC7B,GACA,iBAAkB,CAChB,KAAK,uBAAuB,EAC5B,KAAK,sCAAsC,EAC3C,KAAK,oCAAoC,CAC3C,CAEA,oBAAqB,CACnB,KAAK,iBAAiB,KAAK,CAC7B,CAOA,6BAA6BggB,EAAiB,CAC5C,IAAMC,EAAsB,KAAK,eAAe,UAAUC,GAAeA,EAAY,gBAAgB,IAAMF,EAAgB,eAAe,EAC1I,GAAIC,IAAwB,GAAI,CAC9B,IAAME,EAAc,KAAK,eAAeF,CAAmB,EAC3D,GAAI,CAACD,EAAgB,cAAgBA,EAAgB,YAAclkB,GAA2B,MAAQqkB,aAAuBzjB,IAAwByjB,EAAY,iBAAiB,GAAKA,EAAY,OAAO,EAKxM,OAEyB,KAAK,gBAAgBF,EAAqBD,EAAgB,SAAS,GAC1E,iBAAiBA,EAAgB,SAAS,CAChE,CACF,CAIA,qBAAsB,CACpB,KAAK,iBAAiB,IAAI,EAAI,EAc9B,KAAK,gBAAgB,IAAI,EAAK,EAC9B,KAAK,2BAA2B,IAAI,EAAK,CAC3C,CAIA,qBAAsB,CACpB,KAAK,iBAAiB,IAAI,EAAK,CACjC,CAEA,UAAW,CACT,KAAK,eAAe,IAAI,KAAK,eAAe,cAAc,EAC1D,KAAK,sBAAsB,CAC7B,CAQA,gBAAgBI,EAAkB1D,EAAW,CAC3C,IAAI7W,EACA6W,IAAc5gB,GAA2B,SAC3C+J,EAAQua,EAAmB,EAClB1D,IAAc5gB,GAA2B,OAClD+J,EAAQua,EAAmB,GAE7B,IAAMC,EAAc,KAAK,eAAexa,CAAK,EAC7C,OAAIwa,GAAa,SAAS,EACjB,KAAK,gBAAgBxa,EAAO6W,CAAS,EAEvC2D,CACT,CAIA,wBAAyB,CACvB,IAAMC,EAAwB,SAAS,cAChB,KAAK,WAAW,cAAc,SAASA,CAAqB,GAEjFA,EAAsB,KAAK,CAE/B,CACA,wBAAyB,CACvB,IAAMC,EAAiB,EAAQ,KAAK,kBAAkB,cAAc,SAAS,OACvEC,EAA0B,CAAC,KAAK,yBAAyB,OAAO,EAChEC,EAAwB,GAAQ,KAAK,uBAAyB,CAAC,KAAK,uBAAuB,OAAO,GAClGC,EAAkB,EAAQ,KAAK,gBAC/BC,EAAcJ,IAAmBC,GAA2BC,GAAyBC,GAC3F,KAAK,YAAY,IAAIC,CAAW,CAClC,CACA,uCAAwC,CACjC,KAAK,yBAGV,KAAK,wBAAwB,QAAQ,KAAKC,GAAS,EAAG9U,EAAO,CAAC,CAAC+U,EAAKC,CAAO,IAAMD,IAAQC,CAAO,EAAG5X,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CACtJ,KAAK,uBAAuB,CAC9B,CAAC,CACH,CACA,qCAAsC,CAC/B,KAAK,uBAGV,KAAK,sBAAsB,QAAQ,KAAK0X,GAAS,EAAG9U,EAAO,CAAC,CAAC+U,EAAKC,CAAO,IAAMD,IAAQC,CAAO,EAAG5X,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CACpJ,KAAK,uBAAuB,CAC9B,CAAC,CACH,CAIM,uBAAwB,QAAAlJ,EAAA,sBAC5B,GAAM,CACJ,OAAA+gB,CACF,EAAI,MAAM7d,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EACzE,KAAK,uBAAuB,IAAI,CAAC6d,GAAQ,iBAAmB,CAAC,KAAK,cAAc,uBAAuB,CACzG,GAIA,gCAAiC,CAC/B,KAAK,eAAe,kCAAkC,KAAK7X,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,KAAK,2BAA2B,IAAI,EAAK,CAAC,CAC5J,CACA,MAAO,CACL,KAAK,UAAO,SAAkCjJ,EAAmB,CAC/D,OAAO,IAAKA,GAAqBlD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB4D,EAAkB,CAC9C,KAAM5D,EACN,UAAW,CAAC,CAAC,YAAY,CAAC,EAC1B,UAAW,SAAgCza,EAAIC,EAAK,CAUlD,GATID,EAAK,IACJ8f,EAAYpL,GAAM,CAAC,EACnBoL,EAAYpG,GAAiB,CAAC,EAC9BoG,EAAYtF,GAAuB,CAAC,EACpCsF,EAAYxF,GAAiB,CAAC,EAC9BwF,EAAYzF,GAAyB,CAAC,EACtCyF,EAAY3F,GAAe,CAAC,EAC5B2F,EAAYnL,GAAM,CAAC,GAEpB3U,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,kBAAoBggB,EAAG,OACrEC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,gBAAkBggB,EAAG,OACnEC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,sBAAwBggB,EAAG,OACzEC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,gBAAkBggB,EAAG,OACnEC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,wBAA0BggB,EAAG,OAC3EC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,cAAgBggB,EAAG,OACjEC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,aAAeggB,EAClE,CACF,EACA,aAAc,SAAuCjgB,EAAIC,EAAK,CACxDD,EAAK,GACJe,EAAW,UAAW,SAAqDI,EAAQ,CACpF,OAAOlB,EAAI,mBAAmBkB,CAAM,CACtC,CAAC,EAAE,UAAW,UAAuD,CACnE,OAAOlB,EAAI,mBAAmB,CAChC,CAAC,EAAE,WAAY,UAAwD,CACrE,OAAOA,EAAI,oBAAoB,CACjC,CAAC,CAEL,EACA,OAAQ,CACN,mBAAoB,CAAC,EAAG,oBAAoB,CAC9C,EACA,QAAS,CACP,iBAAkB,kBACpB,EACA,WAAY,GACZ,SAAU,CAAIy1B,GAAmB,CAAC0F,GAA6B,CAAC,CAAC,EAAM9c,CAAmB,EAC1F,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,aAAc,EAAE,EAAG,CAAC,cAAe,EAAE,EAAG,CAAC,oBAAqB,GAAI,EAAG,UAAW,EAAG,aAAc,aAAc,aAAa,EAAG,CAAC,EAAG,eAAe,EAAG,CAAC,EAAG,KAAK,EAAG,CAAC,oBAAqB,GAAI,EAAG,mBAAoB,oBAAqB,WAAW,EAAG,CAAC,kBAAmB,GAAI,EAAG,WAAW,EAAG,CAAC,uBAAwB,GAAI,EAAG,WAAW,EAAG,CAAC,YAAa,GAAI,EAAG,WAAW,EAAG,CAAC,EAAG,SAAS,EAAG,CAAC,EAAG,QAAQ,EAAG,CAAC,EAAG,0BAA0B,EAAG,CAAC,EAAG,wBAAwB,EAAG,CAAC,kBAAmB,GAAI,EAAG,mBAAoB,oBAAqB,WAAW,EAAG,CAAC,uBAAwB,GAAI,EAAG,mBAAoB,oBAAqB,WAAW,EAAG,CAAC,YAAa,GAAI,EAAG,mBAAoB,oBAAqB,WAAW,EAAG,CAAC,EAAG,mBAAoB,mBAAmB,EAAG,CAAC,cAAe,UAAW,EAAG,mBAAoB,oBAAqB,WAAW,CAAC,EAC90B,SAAU,SAAmCte,EAAIC,EAAK,CACpD,GAAID,EAAK,EAAG,CACV,IAAMa,EAASC,EAAiB,EAC7BZ,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,aAAc,UAA+D,CACzF,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,oBAAoB,CAAC,CACjD,CAAC,EAAE,aAAc,UAA+D,CAC9E,OAAGe,EAAcH,CAAG,EACVK,EAAYjB,EAAI,oBAAoB,CAAC,CACjD,CAAC,EAAE,cAAe,UAAgE,CAChF,OAAGe,EAAcH,CAAG,EACVK,EAAYjB,EAAI,SAAS,CAAC,CACtC,CAAC,EACEC,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,EAAG,CAAC,EAAE,EAAG,kBAAmB,EAAG,CAAC,EACtEa,EAAW,mBAAoB,UAAiF,CACjH,OAAGC,EAAcH,CAAG,EACVK,EAAYjB,EAAI,mBAAmB,CAAC,CAChD,CAAC,EAAE,oBAAqB,SAAgFkB,EAAQ,CAC9G,OAAGH,EAAcH,CAAG,EACVK,EAAYjB,EAAI,6BAA6BkB,CAAM,CAAC,CAChE,CAAC,EACEd,EAAa,EACbgB,EAAW,EAAG+P,GAAyC,EAAG,EAAG,kBAAmB,CAAC,EAAE,EAAGC,GAAyC,EAAG,EAAG,kBAAmB,CAAC,EAAE,EAAGC,GAAyC,EAAG,EAAG,kBAAmB,CAAC,EACjOjR,EAAa,EACbe,EAAU,EAAG,MAAO,CAAC,EACrBlB,EAAe,GAAI,MAAO,EAAE,EAC5BmB,EAAW,GAAIkQ,GAA0C,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIC,GAA0C,EAAG,EAAG,MAAO,EAAE,EACvInR,EAAa,EAAE,EAAE,CACtB,CACIL,EAAK,IACJuC,EAAY,eAAgBtC,EAAI,mBAAmB,CAAC,EAAE,UAAW,CAACA,EAAI,eAAe,GAAKA,EAAI,iBAAiB,CAAC,EAAE,sBAAuBA,EAAI,2BAA2B,CAAC,EACzKO,EAAU,CAAC,EACX+B,EAAY,SAAU,CAACtC,EAAI,YAAY,CAAC,EACxCO,EAAU,CAAC,EACXsB,EAAW,YAAa7B,EAAI,wBAAwB,CAAC,EACrDO,EAAU,CAAC,EACXgB,EAAcvB,EAAI,iCAAiC,EAAI,EAAI,EAAE,EAC7DO,EAAU,EACVgB,EAAcvB,EAAI,4BAA4B,EAAI,EAAI,EAAE,EACxDO,EAAU,EACVgB,EAAcvB,EAAI,2BAA2B,EAAI,EAAI,EAAE,EACvDO,EAAU,EACV+B,EAAY,SAAU,CAACtC,EAAI,YAAY,GAAK,CAACA,EAAI,uBAAuB,GAAK,CAACA,EAAI,yBAAyB,CAAC,EAC5GO,EAAU,EACV+B,EAAY,gBAAiBtC,EAAI,YAAY,CAAC,EAC9CO,EAAU,EACVgB,EAAcvB,EAAI,uBAAuB,EAAI,GAAK,EAAE,EACpDO,EAAU,EACVgB,EAAcvB,EAAI,yBAAyB,EAAI,GAAK,EAAE,EAE7D,EACA,aAAc,CAACse,EAAqBnE,GAAsBC,GAAyBG,GAAuBL,GAAeT,GAAiBY,GAAiBC,GAA4BmkB,EAAuB,EAC9M,OAAQ,CAAC;AAAA,CAAstF,EAC/tF,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOjkB,CACT,GAAG,EA2BCC,GAAsC,SAAUA,EAAwB,CAI1E,OAAAA,EAAuB,UAAe,YAItCA,EAAuB,gBAAqB,kBAI5CA,EAAuB,oBAAyB,sBAIhDA,EAAuB,WAAgB,aAIvCA,EAAuB,MAAW,QAIlCA,EAAuB,MAAW,QAIlCA,EAAuB,kBAAuB,oBAI9CA,EAAuB,YAAiB,cAKxCA,EAAuB,2BAAgC,6BAChDA,CACT,EAAEA,IAA0B,CAAC,CAAC,EAC1BC,IAA0C,IAAM,CAClD,MAAMA,CAA0B,CAC9B,aAAc,CAEZ,KAAK,mBAAqBoE,GAAU,SAAS,aAAc,CACzD,KAAM4f,EACR,CAAC,EACD,KAAK,QAAU/f,EAAO,EAAI,EAC1B,KAAK,kBAAoBpB,EAAOkX,EAAiB,EACjD,KAAK,gBAAkBlX,EAAOgJ,EAAe,EAC7C,KAAK,YAAchJ,EAAO2E,EAAW,EACrC,KAAK,WAAa3E,EAAO+I,EAAU,EACnC,KAAK,6BAA+B/I,EAAO5C,EAA4B,EACvE,KAAK,uBAAyBsd,GAC9B,KAAK,uBAAyBwD,EAChC,CACA,gBAAgBtd,EAAO,CACrB,KAAK,yBAAyBA,CAAK,CACrC,CACA,UAAW,CACT,KAAK,6BAA6B,CACpC,CAIA,8BAA+B,CAC7B,KAAK,kBAAkB,WAAW,KAAKwI,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CAC1F,KAAK,QAAQ,IAAI,EAAI,CACvB,CAAC,CACH,CAMA,yBAAyBxI,EAAO,CAC9B,GAAI,CAACA,EAAM,MAAU,OAAOA,EAAM,MAAS,SACzC,OAEF,IAAIwgB,EACJ,GAAI,CACFA,EAAW,KAAK,MAAMxgB,EAAM,IAAI,CAClC,MAAgB,CACd,MACF,CAEA,GADsC,OAAO,KAAKwgB,CAAQ,EAAE,KAAKrJ,GAAOA,IAAQ7a,GAAuB,mBAAmB,EACvF,CACjC,GAAI,CAACkkB,EAAS,oBAAqB,CACjC,IAAMrN,EAAU,KAAK,YAAY,IAAI,+DAA+D,EAC9FsN,EAAc,IAAI1X,GAAYoK,EAAS,GAAInK,GAAY,UAAU,EACvE,KAAK,gBAAgB,KAAKyX,CAAW,CACvC,CACA,KAAK,QAAQ,IAAI,EAAK,EACtB,MACF,CAEA,GAD6B,OAAO,KAAKD,CAAQ,EAAE,KAAKrJ,GAAOA,IAAQ7a,GAAuB,iBAAiB,EACrF,CACxB,KAAK,6BAA6B,YAAY,EAC9C,MACF,CACF,CACA,MAAO,CACL,KAAK,UAAO,SAA2CiD,EAAmB,CACxE,OAAO,IAAKA,GAAqBhD,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB0D,EAAkB,CAC9C,KAAM1D,EACN,UAAW,CAAC,CAAC,uBAAuB,CAAC,EACrC,UAAW,SAAyC3a,EAAIC,EAAK,CACvDD,EAAK,GACJ6f,GAAkB5f,EAAI,mBAAoB2U,GAAM,EAAG+pB,EAAW,EAE/D3+B,EAAK,GACJggB,GAAe,CAEtB,EACA,aAAc,SAAgDhgB,EAAIC,EAAK,CACjED,EAAK,GACJe,EAAW,UAAW,SAA8DI,EAAQ,CAC7F,OAAOlB,EAAI,gBAAgBkB,CAAM,CACnC,EAAG,GAAU22B,EAAe,CAEhC,EACA,WAAY,GACZ,SAAU,CAAIxZ,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,aAAc,EAAE,EAAG,CAAC,EAAG,+BAA+B,EAAG,CAAC,cAAe,oBAAoB,EAAG,CAAC,cAAe,kBAAmB,EAAG,OAAQ,MAAM,CAAC,EAC/J,SAAU,SAA4Cte,EAAIC,EAAK,CACzDD,EAAK,GACJqB,EAAW,EAAGqQ,GAAkD,EAAG,EAAG,cAAe,KAAM,EAAMzP,EAAsB,CAE9H,EACA,aAAc,CAACkvB,EAAuB,EACtC,OAAQ,CAAC;AAAA,CAAqG,EAC9G,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOxW,CACT,GAAG,EAICC,IAA6C,IAAM,CACrD,MAAMA,CAA6B,CACjC,aAAc,CACZ,KAAK,UAAYiE,EAAS,IAAM,KAAK,WAAW,CAAC,EACjD,KAAK,WAAaD,EAAO,EAAE,EAC3B,KAAK,MAAQA,EAAO,EAAE,EACtB,KAAK,MAAQA,EAAO,IAAI,EAExB,KAAK,gBAAkB,IAAI0H,GAAgB,EAAK,EAChD,KAAK,MAAQ,QACb,KAAK,0BAA4B,4BACjC,KAAK,kCAAoC,mHACzC,KAAK,gBAAkB9I,EAAOgV,EAAe,EAC7C,KAAK,kBAAoBhV,EAAOkX,EAAiB,EACjD,KAAK,oBAAsBlX,EAAOiZ,EAAmB,EACrD,KAAK,WAAajZ,EAAOsK,EAAU,EACnC,KAAK,aAAetK,EAAOkZ,EAAY,EACvC,KAAK,WAAalZ,EAAOshB,EAAU,EACnC,KAAK,iBAAmBthB,EAAOsF,EAAgB,EAC/C,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,CAC1B,CACA,aAAc,CACR,KAAK,yBACP,KAAK,uBAAuB,EAC5B,KAAK,uBAAyB,KAElC,CAIA,qBAAsB,CACpB,KAAK,gBAAgB,KAAK0G,EAAOuV,GAAUA,CAAM,EAAG7gB,GAAK,CAAC,CAAC,EAAE,UAAU,IAAM,CAC3E,GAAI,KAAK,4BACP,OAEF,IAAM8gB,EAAe,KAAK,WAAW,qCAAqCrkB,EAAyB,EAC7FskB,EAAcD,EAAa,SAAS,mBAAmB,EAC7D,KAAK,4BAA8BA,EACnC,KAAK,kBAAkB,OAAO,KAAK,KAAK,KAAK,EAC7C,KAAK,kBAAkB,gBAAgB,KAAK,CAC1C,KAAMC,EACN,OAAQ,cACR,oBAAqB,GACrB,MAAO,aACT,CAAC,EACD,KAAK,qBAAqB,EAC1B,KAAK,2CAA2CD,CAAY,CAC9D,CAAC,CACH,CAIA,aAAc,CAEZ,KAAK,gBAAgB,MAAM,CAC7B,CACA,oBAAqB,CACnB,KAAK,uBAAyB,KAAK,iBAAiB,UAAU7oB,GAAqB,IAAM,CACvF,KAAK,YAAY,KAAK,aAAa,KAAK,CAC1C,CAAC,CACH,CAMA,YAAYqhB,EAAO,CACjB,GAAI,CACF,KAAK,MAAM,IAAIA,CAAK,EACpB,WAAW,YAAYA,CAAK,CAC9B,OAASxN,EAAO,CACd,IAAMkV,EAAelV,GAAO,UAAY,KAAK,0BAA4B,KAAK,kCAAoCA,GAAO,QACzH,QAAQ,MAAMkV,CAAY,CAC5B,CACF,CAMA,2CAA2CF,EAAc,CACvD,KAAK,kBAAkB,WAAW,KAAKxV,EAAO,IAAM,KAAK,kBAAkB,mBAAmB,QAAQ,SAAW,aAAa,CAAC,EAAE,UAAU,IAAM,CAC/I,KAAK,WAAW,wBAAwBwV,CAAY,EACpD,KAAK,4BAA8B,IACrC,CAAC,CACH,CAIM,oBAAqB,QAAAthB,EAAA,sBACzB,IAAMyhB,EAAkB,KAAK,oBAAoB,gBAAgB,WACjE,GAAIA,GAAiB,IAAMA,GAAiB,YAAcA,GAAiB,UAAW,CACpF,IAAMC,EAAY,MAAM,KAAK,aAAaD,CAAe,EACnDE,EAAQ,KAAK,gBAAgB,SAAS,EACtC7H,EAAQ,KAAK,aAAa,MAChC,GAAI,CAAC4H,EACH,OAEF,KAAK,WAAW,IAAIA,CAAS,EAC7B,KAAK,MAAM,IAAIC,CAAK,EACpB,KAAK,MAAM,IAAI7H,CAAK,EACpB,KAAK,gBAAgB,KAAK,EAAI,EAC9B,MACF,CACA,KAAK,gBAAgB,KAAK,EAAK,CACjC,GAIA,sBAAuB,CACrB,GAAI,CACF,WAAW,WAAW,CACpB,UAAW,KAAK,UAAU,EAC1B,MAAO,KAAK,MAAM,EAClB,MAAO,KAAK,MAAM,EAClB,UAAW,KAAK,qBAAqB,gBAAgB,YAAY,SACnE,CAAC,CACH,OAASxN,EAAO,CACd,IAAMkV,EAAelV,GAAO,UAAY,KAAK,0BAA4B,KAAK,kCAAoCA,GAAO,QACzH,QAAQ,MAAMkV,CAAY,CAC5B,CACF,CAMM,aAAaC,EAAiB,QAAAzhB,EAAA,sBAClC,GAAI,CACF,IAAMS,EAAMghB,EAAgB,WACtB9J,EAAO,CACX,UAAW8J,EAAgB,GAC3B,YAAaA,EAAgB,aAAe,QAC5C,YAAaA,EAAgB,aAAe,QAC5C,OAAQ,KAAK,gBAAgB,QAAQ,EAAE,GACvC,QAAS,KAAK,gBAAgB,QAAQ,EAAE,QACxC,OAAQA,EAAgB,QAAU,CAAC,CACjC,IAAK,SACL,MAAO,QACT,EAAG,CACD,IAAK,UACL,MAAO,QACT,CAAC,CACH,EACMG,EAAsB,IAAIC,GAChC,OAAAD,EAAoB,WAAa,IAClB,MAAM1e,GAAe,KAAK,WAAW,KAAKzC,EAAKkX,EAAM,CAClE,QAAS,IAAImK,GAAY,EAAE,IAAIC,GAA8BH,CAAmB,CAClF,CAAC,CAAC,IACa,EACjB,OAAStV,EAAO,CACd,QAAQ,MAAMA,CAAK,CACrB,CACA,MAAO,EACT,GACA,MAAO,CACL,KAAK,UAAO,SAA8CrM,EAAmB,CAC3E,OAAO,IAAKA,GAAqB/C,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BgD,EAAmB,CAChD,MAAOhD,EACP,QAASA,EAA6B,UACtC,WAAY,MACd,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICC,IAA2C,IAAM,CACnD,MAAMA,CAA2B,CAC/B,aAAc,CACZ,KAAK,gBAAkBoE,GACvB,KAAK,kBAAoBzB,EAAOkX,EAAiB,EACjD,KAAK,6BAA+BlX,EAAO5C,EAA4B,CACzE,CACA,SAAU,CACR,KAAK,6BAA6B,oBAAoB,CACxD,CACA,MAAO,CACL,KAAK,UAAO,SAA4C+C,EAAmB,CACzE,OAAO,IAAKA,GAAqB9C,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBwD,EAAkB,CAC9C,KAAMxD,EACN,UAAW,CAAC,CAAC,wBAAwB,CAAC,EACtC,WAAY,GACZ,SAAU,CAAIyD,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,cAAe,kBAAmB,wBAAyB,GAAI,qBAAsB,QAAS,EAAG,gCAAiC,EAAG,QAAS,wBAAyB,YAAY,EAAG,CAAC,QAAS,KAAM,SAAU,KAAM,UAAW,YAAa,OAAQ,OAAQ,QAAS,6BAA8B,EAAG,iBAAiB,EAAG,CAAC,IAAK,03BAA03B,EAAG,CAAC,IAAK,m4BAAm4B,EAAG,CAAC,IAAK,42BAA42B,CAAC,EACx8F,SAAU,SAA6Cte,EAAIC,EAAK,CAC1DD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAC1BE,EAAO,EAAG,SAAS,EACnBW,EAAW,QAAS,UAAoE,CACzF,OAAOd,EAAI,QAAQ,CACrB,CAAC,EACEy/B,GAAe,EACfx/B,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,OAAQ,CAAC,EAAE,EAAG,OAAQ,CAAC,EAAE,EAAG,OAAQ,CAAC,EAClDf,EAAa,EAAE,GAEhBL,EAAK,IACJuC,EAAY,QAAStC,EAAI,kBAAkB,mBAAqB,KAAO,KAAOA,EAAI,kBAAkB,kBAAkB,cAAc,KAAOA,EAAI,kBAAkB,mBAAqB,MAAcA,EAAI,kBAAkB,kBAAkB,QAAU,KAAzD,KAAuEA,EAAI,kBAAkB,kBAAkB,OAAO,UAAY,aAAa,EAC5U6B,EAAW,wBAAyB7B,EAAI,gBAAgB,SAAS,EAAE,aAAiBS,EAAY,EAAG,EAAG,kDAAkD,CAAC,EAEhK,EACA,aAAc,CAAC4f,GAAY/B,EAAwBC,GAAaE,EAA2B,EAC3F,OAAQ,CAAC;AAAA,CAA84B,EACv5B,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAO7D,CACT,GAAG,EAICC,IAAgC,IAAM,CACxC,MAAMA,CAAgB,CACpB,aAAc,CACZ,KAAK,mBAAqBiD,EAAO,EACjC,KAAK,iBAAmBD,EAAM,EAAK,EACnC,KAAK,mBAAqB2W,GAAM,EAAK,EACrC,KAAK,OAAS,CACZ,gBAAiB,SAEjB,sBAAuB,UACzB,EACA,KAAK,eAAiB,CACpB,4BAA6B,GAC7B,WAAY,GACZ,gBAAiB,GACjB,iBAAkB,GAClB,2BAA4B,GAC5B,yBAA0B,EAC5B,EACA,KAAK,gBAAkBxV,GACvB,KAAK,oBAAsBH,GAAY,UAAU,EACjD,KAAK,cAAgBtB,EAAOwB,EAAa,EACzC,KAAK,aAAexB,EAAO/H,EAAY,EACvC,KAAK,oBAAsB+H,EAAOiZ,EAAmB,EACrD,KAAK,kBAAoBjZ,EAAOkX,EAAiB,EACjD,KAAK,6BAA+BlX,EAAO5C,EAA4B,EACvE,KAAK,eAAiB4C,EAAOtG,EAAsB,EACnD,KAAK,kBAAoBsG,EAAO2B,EAAiB,EACjD,KAAK,iBAAmB3B,EAAOsF,EAAgB,EAC/C,KAAK,eAAiBtF,EAAOuY,EAAc,EAC3C,KAAK,0BAA4BvY,EAAOjI,EAAyB,EACjE,KAAK,iBAAmBiI,EAAOsZ,EAAgB,EAC/C,KAAK,eAAiBtZ,EAAOqI,EAAc,EAC3C,KAAK,gBAAkBrI,EAAOgV,EAAe,EAC7C,KAAK,iBAAiB,UAAU3c,GAAyB,IAAM,KAAK,gBAAgB,CAAC,EACrF,KAAK,iBAAiB,UAAU,iBAAkBuN,GAAQ,CACpDA,IACF,KAAK,OAAO,sBAAwB,WACpC,KAAK,OAAO,gBAAkB,SAElC,CAAC,EACD,KAAK,iBAAiB,UAAU,sBAAuBE,GAAa,KAAK,eAAeA,CAAS,CAAC,EAClG,KAAK,iBAAiB,UAAUxN,GAA6B,IAAM,KAAK,OAAO,sBAAwB,aAAa,EACpH,KAAK,iBAAiB,UAAU,kBAAmB,IAAM,KAAK,gBAAgB,CAAC,EAC/E,IAAM6pB,EAAiB,KAAK,kBAAkB,WAAW,GAAG,eACxDA,GAAkBA,EAAe,OAAS,IAC5C,KAAK,OAASA,GAEhB,KAAK,WAAW,CAClB,CAEM,UAAW,QAAAjiB,EAAA,sBACf,KAAK,iBAAiB,UAAU,uBAAwB,IAAM,KAAK,mBAAmB,IAAI,CAAC,KAAK,mBAAmB,CAAC,CAAC,EACrH,MAAM,KAAK,kBAAkB,CAC/B,GACA,aAAc,CACZ,KAAK,kBAAkB,OAAO,KAAK,EAAE,CACvC,CAIM,mBAAoB,QAAAA,EAAA,sBACxB,GAAI,CAEF,IAAM2K,EAAe,MAAMzH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EAEpFgf,EAAe,KAAK,kBAAkB,WAAW,GAAG,aAE1D,KAAK,WAAaA,GAAc,OAASvX,EAAa,cAAc,MACpE,KAAK,WAAauX,GAAc,OAASvX,EAAa,cAAc,MACpE,KAAK,eAAiBmF,IAAA,GACjB,KAAK,gBACLnF,EAAa,OAEpB,OAASkL,EAAI,CACX,QAAQ,MAAMA,CAAE,CAClB,CACF,GACA,QAAS,CACP,KAAK,eAAe,mBAAmB,CACzC,CACA,oBAAqB,CACnB,KAAK,mBAAmB,IAAI,CAAC,KAAK,mBAAmB,CAAC,EACtD,IAAIsM,EAAa,uBACjBA,GAAc,KAAK,iBAAiB,QAAQ,GAAG,GAAK,GAAG,KAAK,gBAAgB,QAAQ,EAAE,EAAE,IAAM,GAC9FA,GAAc,mBACd,KAAK,eAAe,IAAIA,EAAY,KAAK,UAAU,KAAK,mBAAmB,CAAC,CAAC,EAC7E,KAAK,mBAAmB,KAAK,KAAK,mBAAmB,CAAC,CACxD,CACA,yBAA0B,CACxB,KAAK,0BAA4B,CAAC,KAAK,yBACzC,CAEA,kBAAmB,CACb,KAAK,OAAO,wBAA0B,aAGtC,KAAK,OAAO,kBAAoB,SAClC,KAAK,eAAe,GAEpB,KAAK,iBAAiB,KAAK7pB,EAAwB,EACnD,KAAK,gBAAgB,GAEzB,CAIA,gBAAiB,CACf,KAAK,aAAa,OAAO,CAC3B,CACA,kBAAmB,CACjB,KAAK,iBAAiB,QAAQ,KAAK,oBAAoB,eAAe,UAAU,cAAc,CAChG,CACA,YAAa,CACX,IAAMogB,EAAqB,CAAC,CAE1B,OAAQ,CAAC,GAA2B,GAA0B,EAAyB,EACvF,OAAQ,IAAM,CACZ,KAAK,OAAO,CACd,CACF,CAAC,EACD,KAAK,eAAe,WAAWA,CAAkB,CACnD,CACA,iBAAkB,CAChB,KAAK,OAAO,sBAAwB,KAAK,OAAO,kBAAoB,OAAS,SAAW,WACxF,KAAK,OAAO,gBAAkB,QAChC,CACA,eAAe9S,EAAW,CACpB,KAAK,OAAO,kBAAoB,WAClC,KAAK,OAAO,gBAAkB,OAC9B,KAAK,OAAO,sBAAwB,QAElCA,EACF,KAAK,iBAAiB,KAAK1N,GAAwB0N,CAAS,EAE5D,KAAK,iBAAiB,KAAK1N,EAAsB,CAErD,CACA,MAAO,CACL,KAAK,UAAO,SAAiC+H,EAAmB,CAC9D,OAAO,IAAKA,GAAqB7C,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBuD,EAAkB,CAC9C,KAAMvD,EACN,UAAW,CAAC,CAAC,WAAW,CAAC,EACzB,OAAQ,CACN,iBAAkB,CAAC,EAAG,kBAAkB,EACxC,mBAAoB,CAAC,EAAG,oBAAoB,CAC9C,EACA,QAAS,CACP,mBAAoB,qBACpB,mBAAoB,0BACtB,EACA,WAAY,GACZ,SAAU,CAAIwD,CAAmB,EACjC,MAAO,GACP,KAAM,GACN,OAAQ,CAAC,CAAC,eAAgB,EAAE,EAAG,CAAC,6BAA8B,GAAI,cAAe,gBAAgB,EAAG,CAAC,EAAG,MAAM,EAAG,CAAC,EAAG,qBAAqB,EAAG,CAAC,cAAe,cAAe,qBAAsB,QAAS,wBAAyB,GAAI,EAAG,cAAe,iBAAkB,EAAG,aAAc,uBAAuB,EAAG,CAAC,KAAM,eAAgB,cAAe,eAAgB,EAAG,OAAQ,EAAG,OAAO,EAAG,CAAC,EAAG,iBAAkB,EAAG,QAAS,QAAQ,EAAG,CAAC,EAAG,uBAAuB,EAAG,CAAC,EAAG,wBAAyB,EAAG,SAAS,EAAG,CAAC,cAAe,SAAU,EAAG,OAAO,EAAG,CAAC,0BAA2B,QAAQ,EAAG,CAAC,EAAG,sBAAuB,wBAAwB,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,KAAM,eAAgB,qBAAsB,QAAS,cAAe,cAAe,wBAAyB,GAAI,EAAG,iBAAkB,eAAgB,EAAG,aAAc,UAAW,uBAAuB,EAAG,CAAC,qBAAsB,QAAS,cAAe,yBAA0B,wBAAyB,GAAI,EAAG,iBAAkB,0BAA2B,EAAG,aAAc,uBAAuB,EAAG,CAAC,KAAM,qBAAsB,EAAG,iBAAkB,6BAA8B,EAAG,SAAS,EAAG,CAAC,KAAM,kBAAmB,EAAG,mBAAmB,EAAG,CAAC,cAAe,cAAe,qBAAsB,QAAS,wBAAyB,GAAI,EAAG,cAAe,iBAAkB,EAAG,QAAS,aAAc,uBAAuB,EAAG,CAAC,EAAG,WAAW,EAAG,CAAC,KAAM,eAAgB,qBAAsB,QAAS,cAAe,cAAe,wBAAyB,GAAI,EAAG,iBAAkB,eAAgB,EAAG,QAAS,aAAc,UAAW,uBAAuB,EAAG,CAAC,EAAG,oBAAoB,EAAG,CAAC,qBAAsB,QAAS,cAAe,yBAA0B,wBAAyB,GAAI,EAAG,iBAAkB,0BAA2B,EAAG,QAAS,aAAc,uBAAuB,EAAG,CAAC,EAAG,kBAAkB,EAAG,CAAC,EAAG,QAAQ,EAAG,CAAC,EAAG,gBAAgB,CAAC,EACl3D,SAAU,SAAkCte,EAAIC,EAAK,CAC/CD,EAAK,IACJE,EAAe,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EAAE,EAAG,MAAO,CAAC,EACpDmB,EAAW,EAAGsQ,GAAwC,EAAG,EAAG,MAAO,CAAC,EACpEzR,EAAe,EAAG,MAAO,CAAC,EAC1Ba,EAAW,QAAS,UAAyD,CAC9E,OAAOd,EAAI,OAAO,CACpB,CAAC,EACEoB,EAAW,EAAGuQ,GAAwC,EAAG,EAAG,oBAAqB,CAAC,EAAE,EAAGC,GAAwC,EAAG,EAAG,MAAO,CAAC,EAC7IxR,EAAa,EACbgB,EAAW,EAAGyQ,GAAwC,EAAG,EAAG,MAAO,CAAC,EACpEzR,EAAa,EAAE,EACfH,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAG2Q,GAAwC,EAAG,EAAG,YAAa,EAAE,EAAE,GAAIC,GAAyC,EAAG,EAAG,iCAAkC,EAAE,EAAE,GAAIC,GAAyC,EAAG,EAAG,wBAAwB,EAAE,GAAIC,GAAyC,EAAG,EAAG,8BAA+B,EAAE,EAAE,GAAIC,GAAyC,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIE,GAAyC,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIC,GAAyC,EAAG,EAAG,MAAO,EAAE,EAAE,GAAIE,GAAyC,EAAG,EAAG,MAAO,EAAE,EAC/jBpS,EAAa,EAAE,GAEhBL,EAAK,IACJQ,EAAU,CAAC,EACXgB,EAAcvB,EAAI,iBAAiB,EAAI,EAAI,EAAE,EAC7CO,EAAU,CAAC,EACXgB,EAAgBvB,EAAI,gBAAkB,MAAcA,EAAI,eAAe,WAAkB,GAAJ,CAAM,EAC3FO,EAAU,EACVgB,EAAcvB,EAAI,YAAcA,EAAI,cAAc,wBAA0B,EAAI,EAAE,EAClFO,EAAU,EACVgB,EAAcvB,EAAI,YAAcA,EAAI,cAAc,yBAA2B,EAAI,EAAE,EACnFO,EAAU,CAAC,EACXgB,EAAc,EAAEvB,EAAI,gBAAkB,MAAcA,EAAI,eAAe,kBAAoBA,EAAI,cAAc,wBAA0B,EAAI,EAAE,EAC7IO,EAAU,EACVgB,EAAcvB,EAAI,cAAc,wBAA0B,GAAK,EAAE,EACjEO,EAAU,EACVgB,EAAe,EAAAvB,EAAI,oBAAoB,gBAAkB,MAAcA,EAAI,oBAAoB,eAAe,YAAc,OAAcA,EAAI,oBAAoB,eAAe,WAAW,KAAQ,EAAAA,EAAI,oBAAoB,gBAAkB,MAAcA,EAAI,oBAAoB,eAAe,YAAc,OAAcA,EAAI,oBAAoB,eAAe,WAAW,aAAeA,EAAI,8BAAgC,MAAcA,EAAI,6BAA6B,UAAU,GAAK,GAAK,EAAE,EACzeO,EAAU,EACVgB,EAAc,EAAEvB,EAAI,gBAAkB,MAAcA,EAAI,eAAe,8BAAgCA,EAAI,cAAc,wBAA0B,GAAK,EAAE,EAC1JO,EAAU,EACVgB,EAAcvB,EAAI,aAAa,YAAY,GAAK,EAAEA,EAAI,gBAAkB,MAAcA,EAAI,eAAe,mBAAqBA,EAAI,cAAc,wBAA0B,GAAK,EAAE,EACjLO,EAAU,EACVgB,EAAc,EAAEvB,EAAI,gBAAkB,MAAcA,EAAI,eAAe,8BAAgC,EAAAA,EAAI,oBAAoB,gBAAkB,MAAcA,EAAI,oBAAoB,eAAe,WAAa,OAAcA,EAAI,oBAAoB,eAAe,UAAU,iBAAmB,EAAAA,EAAI,oBAAoB,gBAAkB,MAAcA,EAAI,oBAAoB,eAAe,WAAa,OAAcA,EAAI,oBAAoB,eAAe,UAAU,iBAAmBA,EAAI,cAAc,wBAA0B,GAAK,EAAE,EACthBO,EAAU,EACVgB,EAAcvB,EAAI,OAAS,GAAK,EAAE,EAClCO,EAAU,EACVgB,EAAgBvB,EAAI,gBAAkB,MAAcA,EAAI,eAAe,yBAAiC,GAAL,EAAO,EAEjH,EACA,aAAc,CAACmgB,GAASE,GAAY/B,EAAwBC,GAAaC,GAAkCC,GAA6B2Z,GAAuB5f,GAAoCc,GAA2BI,GAAmBD,GAAiBtE,GAAiCyF,EAA0B,EAC7T,OAAQ,CAAC;AAAA,CAAizF,EAC1zF,cAAe,EACf,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOC,CACT,GAAG,EAICC,IAAmC,IAAM,CAC3C,MAAMA,CAAmB,CACvB,aAAc,CACZ,KAAK,OAAS8O,GAAW,QACzB,KAAK,UAAY,GACjB,KAAK,iBAAmB,GACxB,KAAK,kBAAoB,GACzB,KAAK,KAAO,IAAIiW,GAChB,KAAK,eAAiBlhB,EAAO,EAAK,EAClC,KAAK,iBAAmBA,EAAO,EAAK,EACpC,KAAK,iBAAmBpB,EAAOsF,EAAgB,EAC/C,KAAK,oBAAsBtF,EAAOuiB,EAA0B,EAC5D,KAAK,kBAAoBviB,EAAO6W,EAAiB,EACjD,KAAK,eAAiB7W,EAAOwiB,EAAc,EAC3C,KAAK,kBAAoBxiB,EAAO2B,EAAiB,EACjD,KAAK,oBAAsB3B,EAAOiZ,EAAmB,EACrD,KAAK,iBAAmBjZ,EAAOiP,EAAgB,EAC/C,KAAK,WAAajP,EAAO+I,EAAU,EACnC,KAAK,YAAc/I,EAAO2E,EAAW,EACrC,KAAK,0BAA4B3E,EAAOjI,EAAyB,EACjE,KAAK,6BAA+B,KAAK,iBAAiB,UAAU,oBAAqB8N,GAAW,CAC9FA,GAAW,KAAK,qBAAqBA,EAAQ,MAAM,IACrD,KAAK,UAAYA,EAAQ,MACzB,SAAS,MAAQ,KAAK,UAAUA,EAAQ,KAAK,EAE7C,KAAK,aAAe,OACpB,KAAK,KAAO,IAAIyc,GAAK,EAAK,EAC1B,KAAK,iBAAmB,GACxB,KAAK,kBAAoB,GACzB,KAAK,kBAAkB,cAAc,EAEzC,CAAC,EACD,KAAK,iCAAmC,KAAK,iBAAiB,UAAU,iBAAkBjZ,GAAQ,CAC5F,KAAK,qBAAqBA,EAAK,MAAM,IACvC,KAAK,KAAOA,EAEhB,CAAC,EAED,KAAK,4BAA8B,KAAK,iBAAiB,UAAU,aAAcoZ,GAAmB,CAClG,GAAIA,EAAiB,CACnB,IAAMC,EAA2B,CAC/B,MAAOD,EAAgB,MACvB,OAAQA,EAAgB,OACxB,UAAWA,EAAgB,UAC3B,WAAYA,EAAgB,YAAcA,EAAgB,gBAC5D,EACA,KAAK,iBAAiB,qBAAqBC,CAAwB,CACrE,CACF,CAAC,EACD,KAAK,iBAAiB,iBAAiB,KAAK1W,EAAOyW,GAAmB,EAAQA,GAAoB,KAAK,qBAAqBA,EAAgB,MAAM,CAAC,EAAGrZ,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUqZ,GAAmB,CACtN,KAAK,SAASA,CAAe,CAC/B,CAAC,EACD,KAAK,iBAAiB,UAAU,iBAAkB7c,GAAQ,CACpDA,GACF,KAAK,eAAe,IAAI,EAAI,CAEhC,CAAC,EACD,KAAK,iBAAiB,UAAU,kBAAmB,IAAM,CACvD,KAAK,eAAe,IAAI,EAAK,EAC7B,KAAK,iBAAiB,IAAI,EAAK,CACjC,CAAC,EACD,KAAK,iBAAiB,UAAU,sBAAuB,IAAM,CAC3D,KAAK,iBAAiB,IAAI,EAAI,CAChC,CAAC,CACH,CACM,UAAW,QAAA1F,EAAA,sBACf,KAAK,oBAAoB,WAAW,EAAE,KAAKkJ,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUuZ,GAAU,CAC9F,KAAK,qBAAqBA,EAAO,MAAM,GACzC,KAAK,sBAAsBA,CAAM,CAErC,CAAC,EACD,KAAK,KAAK,SAAW,GACrB,KAAK,YAAc,MAAM,KAAK,eAAe,CAC/C,GACA,aAAc,CACR,KAAK,8BACP,KAAK,4BAA4B,EACjC,KAAK,4BAA8B,MAEjC,KAAK,+BACP,KAAK,6BAA6B,EAClC,KAAK,6BAA+B,MAElC,KAAK,mCACP,KAAK,iCAAiC,EACtC,KAAK,iCAAmC,KAE5C,CACA,kBAAmB,CACQ,SAAS,cAAc,gCAAgC,EAE9E,KAAK,iBAAiB,KAAKnqB,EAAwB,EAEnD,KAAK,iBAAiB,KAAKJ,EAAsB,CAErD,CAMA,qBAAqBuY,EAAStE,GAAW,QAAS,CAChD,OAAOsE,IAAWtE,GAAW,OAC/B,CACA,SAASuW,EAAmB,CAC1B,KAAK,UAAYA,GAAmB,OAAS,GAC7C,SAAS,MAAQ,KAAK,UAAU,KAAK,SAAS,EAC9C,KAAK,iBAAmBA,GAAmB,YAAc,GAEzD,KAAK,kBAAoBA,GAAmB,aAAe,IAAQ,CAACA,GAAmB,UACvF,KAAK,aAAe,MACtB,CACM,sBAAsBD,EAAQ,QAAAziB,EAAA,sBAClC,KAAK,aAAe,MAAMyiB,EAAO,+BAA+B,EAGhE,KAAK,eAAe,KAAK,CAC3B,GACM,gBAAiB,QAAAziB,EAAA,sBAErB,IAAM2K,EAAe,MAAMzH,GAAe,KAAK,0BAA0B,gBAAgB,CAAC,EAC1F,OAAO,KAAK,kBAAkB,WAAW,EAAE,aAAeyH,EAAa,cAAc,WAAa,KAAK,oBAAoB,WAC7H,GACA,UAAUoF,EAAO,CACf,IAAM4S,EAAS,CAAC,EAOhB,OANI5S,GACF4S,EAAO,KAAK,KAAK,YAAY,IAAI5S,CAAK,CAAC,EAErC,KAAK,aACP4S,EAAO,KAAK,KAAK,YAAY,IAAI,KAAK,WAAW,CAAC,EAEhDA,EAAO,OAAS,EACXA,EAAO,KAAK,KAAK,EAEjB,EAEX,CACA,MAAO,CACL,KAAK,UAAO,SAAoC1iB,EAAmB,CACjE,OAAO,IAAKA,GAAqB5C,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBsD,EAAkB,CAC9C,KAAMtD,EACN,UAAW,CAAC,CAAC,eAAe,CAAC,EAC7B,OAAQ,CACN,aAAc,eACd,OAAQ,QACV,EACA,WAAY,GACZ,SAAU,CAAIuD,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,aAAc,EAAG,SAAS,EAAG,CAAC,4BAA6B,GAAI,EAAG,2BAA4B,EAAG,iCAAkC,2CAA4C,QAAQ,EAAG,CAAC,cAAe,0BAA2B,EAAG,kBAAkB,EAAG,CAAC,EAAG,mBAAoB,EAAG,SAAS,EAAG,CAAC,KAAM,sBAAuB,EAAG,0BAA2B,EAAG,QAAQ,EAAG,CAAC,EAAG,iBAAiB,EAAG,CAAC,EAAG,sBAAuB,SAAS,EAAG,CAAC,EAAG,sBAAuB,UAAU,EAAG,CAAC,EAAG,6BAA6B,EAAG,CAAC,EAAG,mBAAoB,EAAG,QAAS,SAAS,EAAG,CAAC,EAAG,aAAa,EAAG,CAAC,UAAW,mDAAoD,EAAG,aAAa,EAAG,CAAC,EAAG,qBAAqB,EAAG,CAAC,EAAG,cAAc,EAAG,CAAC,EAAG,gCAAiC,EAAG,YAAY,CAAC,EACnwB,SAAU,SAAqCte,EAAIC,EAAK,CAClDD,EAAK,GACJqB,EAAW,EAAG0R,GAA2C,GAAI,GAAI,MAAO,CAAC,EAE1E/S,EAAK,GACJwB,GAAevB,EAAI,WAAa,KAAO,KAAOA,EAAI,UAAU,QAAU,EAAI,EAAI,EAAE,CAEvF,EACA,aAAc,CAACmgB,GAASkgB,GAAyBzP,GAAuBvQ,GAAY/B,EAAwBgiB,GAAqB/hB,GAAa+V,GAAuBiM,EAA+B,EACpM,OAAQ,CAAC;AAAA,CAA0rF,EACnsF,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOzlB,CACT,GAAG,EAICC,IAAoC,IAAM,CAC5C,MAAMA,CAAoB,CACxB,aAAc,CACZ,KAAK,gBAAkB4D,EAAO,EAAI,EAClC,KAAK,WAAa,GAClB,KAAK,kBAAoB,GAEzB,KAAK,iBAAmB,GACxB,KAAK,mBAAqB,GAC1B,KAAK,MAAQA,EAAO,EAAK,EACzB,KAAK,kBAAoBpB,EAAOqZ,EAAiB,EACjD,KAAK,aAAe,CAAC,EACrB,KAAK,eAAiBrZ,EAAOtG,EAAsB,EACnD,KAAK,kBAAoBsG,EAAO2B,EAAiB,EACjD,KAAK,0BAA4B3B,EAAOjI,EAAyB,EACjE,KAAK,aAAeiI,EAAO/H,EAAY,EACvC,KAAK,iBAAmB+H,EAAOsF,EAAgB,EAC/C,KAAK,eAAiBtF,EAAOuY,EAAc,EAC3C,KAAK,cAAgBvY,EAAOwB,EAAa,EACzC,KAAK,0BAA4BxB,EAAO4a,EAAyB,EACjE,KAAK,gBAAkB5a,EAAOC,EAAe,EAC7C,KAAK,WAAaD,EAAOshB,EAAU,EACnC,KAAK,gBAAkBthB,EAAOgV,EAAe,EAC7C,KAAK,kBAAoBhV,EAAOkX,EAAiB,EACjD,KAAK,YAAclX,EAAO2E,EAAW,EACrC,KAAK,cAAgB3E,EAAO+L,EAAa,EACzC,KAAK,eAAiB/L,EAAOqI,EAAc,EAC3C,KAAK,WAAarI,EAAO+I,EAAU,EACnC,KAAK,oBAAsB/I,EAAOiZ,EAAmB,EACrD,KAAK,OAASjZ,EAAOijB,EAAM,EAC3B,KAAK,sBAAwBjjB,EAAOkjB,EAAqB,EACzD,KAAK,YAAcljB,EAAO8L,EAAW,EACrC,KAAK,wBAA0B9L,EAAOiJ,EAAuB,EAC7D,KAAK,oBAAsBjJ,EAAOkJ,EAAmB,EACrD,KAAK,aAAelJ,EAAOkZ,EAAY,EACvC,KAAK,4BAA8BlZ,EAAOmjB,EAA2B,EACrE,KAAK,uBAAuB,CAC9B,CACA,UAAW,CACT,KAAK,eAAe,CACtB,CACA,sBAAuB,CACrB,KAAK,mBAAqB,CAAC,KAAK,mBAC3B,KAAK,cAAc,yBACtB,KAAK,iBAAiB,KAAK5qB,EAA4B,CAE3D,CACA,UAAW,CACT,KAAK,WAAW,EAChB,KAAK,iBAAiB,UAAU,oBAAqB0M,GAAQ,KAAK,kBAAoBA,CAAI,EAC1F,KAAK,iBAAiB,UAAU,uBAAwB,IAAM,KAAK,qBAAqB,CAAC,EACzF,KAAK,iBAAiB,UAAUvM,GAA2B,IAAM,KAAK,aAAa,CAAC,EACpF,KAAK,iBAAiB,UAAU,iBAAkBuM,GAAQ,KAAK,6BAA6BA,CAAI,CAAC,EACjG,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,UAAU,qBAAsB,IAAM,KAAK,eAAe,mBAAmB,CAAC,EACpG,KAAK,kBAAkB,aAAa,KAAKmE,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAU,IAAM,CAC5F,KAAK,YAAY,CACnB,CAAC,CACH,CACA,uBAAwB,CACtB,KAAK,WAAa,OAAK,SAAS,eAAe,cAAc,kBAAkB,EAC3E,KAAK,WACP,KAAK,cAAgB,KAAK,SAAS,eAAe,cAAc,kBAAkB,GAAG,aAErF,KAAK,cAAgB,CAEzB,CAEA,oBAAqB,CACnB,GAAI,KAAK,uBAAyB,WAAgD,CAAC,KAAK,cAAc,wBAAyB,CAC7H,KAAK,aAAa,EAClB,IAAMiZ,EAAa,KAAK,2BAA2B,EACnD,KAAK,eAAe,IAAIA,EAAY,KAAK,UAAU,KAAK,kBAAkB,CAAC,EAC3E,KAAK,qBAAuB,WAC9B,CACF,CACM,kCAAmC,QAAAniB,EAAA,sBACvC,GAAI,CAKF,GAHA,MAAM,KAAK,kBAAkB,sBAAsB,EAEnD,MAAM,KAAK,gBAAgB,EACvB,KAAK,kBAAkB,yBACzB,OAGF,MAAM,KAAK,YAAY,WAAW,EAElC,MAAM,KAAK,wBAAwB,WAAW,EAE9C,MAAM,KAAK,4BAA4B,WAAW,CACpD,MAAQ,CACN,KAAK,qBAAqB,CAC5B,CACF,GAIM,iBAAkB,QAAAA,EAAA,sBACtB,IAAMkjB,EAAc,MAAM,KAAK,gBAAgB,cAAc,EACzDpJ,EACAoJ,EACFpJ,EAAQ,KAAK,kBAAkB,WAAW,EAAE,SAG5CA,GADgB,MAAM,KAAK,oBAAoB,sBAAsB,UAAU,IAC9D,MAEnB,MAAM,KAAK,aAAa,SAASA,CAAK,CACxC,GACA,sBAAuB,CACrB,KAAK,kBAAkB,gBAAgB,KAAK5Q,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUrF,GAAU,CAC/F,KAAK,kBAAkB,wBACzB,KAAK,kBAAkB,iBAAiB,KAAK,CAC3C,aAAc,KAAK,kBAAkB,wBACrC,cAAe,IAAM,KAAK,8BAA8BA,CAAM,CAChE,CAAC,EAED,KAAK,8BAA8BA,CAAM,CAE7C,CAAC,CACH,CACA,uBAAwB,CACtB,KAAK,kBAAkB,iBAAiB,KAAKiI,EAAS,CAAC,CACrD,aAAAwV,CACF,KACOA,IACHA,EAAe,KAAK,kBAAkB,yBAEjC,EAAQA,EAChB,EAAGpY,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUia,GAAiB,KAAK,+BAA+BA,CAAa,CAAC,CACxH,CACM,wBAAyB,QAAAnjB,EAAA,sBAC7B,MAAM,KAAK,YAAY,KAAK,EAC5B,KAAK,0BAA0B,gBAAgB,EAAE,UAAgB2K,GAAgB3K,EAAA,sBAC/E,KAAK,cAAgB2K,EACrB,MAAM,KAAK,eAAe,CAC5B,EAAC,CACH,GACM,gBAAiB,QAAA3K,EAAA,sBACrB,MAAM,KAAK,iCAAiC,GACxB,MAAM,KAAK,gBAAgB,cAAc,IAC1C,KAAK,qBAAqB,eAC3C,KAAK,0BAA0B,mBAAmB,EAAE,KAAW+E,GAAQ/E,EAAA,sBACjE+E,GACF,KAAK,iBAAiB,EACtB,KAAK,uBAAuB,GAE5B,MAAM,KAAK,KAAK,CAEpB,EAAC,EAAE,MAAM,IAAM,CACb,KAAK,qBAAqB,CAC5B,CAAC,EAED,MAAM,KAAK,KAAK,CAEpB,GACA,kBAAmB,CACb,KAAK,WAAW,SAAS,uBAAuB,aAAa,GAAG,OAAS,IAC3E,SAAS,KAAK,UAAU,OAAO,qBAAqB,EACpD,KAAK,WAAW,SAAS,uBAAuB,aAAa,EAAE,CAAC,EAAE,OAAO,EAE7E,CACA,UAAW,CACT,KAAK,iBAAiB,EACtB,KAAK,MAAM,IAAI,EAAI,CACrB,CACM,2BAA4B,QAAA/E,EAAA,uBACZ,MAAM,KAAK,gBAAgB,cAAc,IAE3D,KAAK,WAAW,qCAAqCpH,EAAmB,CAE5E,GACA,wBAAyB,CACvB,IAAMwqB,EAAsB,KAAK,WAAW,qCAAqClnB,EAAmB,EACpGknB,EAAoB,SAAS,iBAAiB,KAAK5iB,GAAO,CAAC,CAAC,EAAE,UAAU,IAAM,CAC5E,KAAK,WAAW,wBAAwB4iB,CAAmB,EAC3D,KAAK,KAAK,CACZ,CAAC,CACH,CACA,6BAA6B,CAC3B,QAAAC,EACA,YAAAhb,CACF,EAAG,CACD,KAAK,aAAa,KAAKA,CAAW,EAClC,IAAMib,EAAwB,CAC5B,aAAc,KAAK,aACnB,QAAAD,CACF,EACME,EAAuB,KAAK,WAAW,qCAAqC1qB,GAAyByqB,CAAqB,EAC1H,CACJ,MAAAE,EACA,WAAAC,EACA,cAAAC,CACF,EAAIrb,EACE,CACJ,SAAAtF,CACF,EAAIwgB,EACJE,EAAW,KAAKjjB,GAAOgjB,CAAK,CAAC,EAAE,UAAUpb,GAAOrF,EAAS,iBAAiBqF,CAAG,CAAC,EAC9Esb,EAAc,KAAKljB,GAAO,CAAC,CAAC,EAAE,UAAU4H,GAAO,CAC7CrF,EAAS,oBAAoBqF,CAAG,EAChC,KAAK,aAAe,CAAC,EACrB,WAAW,IAAM,KAAK,WAAW,wBAAwBmb,CAAoB,EAAG,GAAG,CACrF,CAAC,CACH,CACA,8BAA8B1f,EAAQ,CACpC,IAAM8f,EAA0B,CAC9B,OAAQ9T,GAAAC,EAAA,GACHjM,GADG,CAEN,oBAAqBA,EAAO,qBAAuB,EACrD,EACF,EACM+f,EAAyB,KAAK,WAAW,qCAAqCrnB,GAAqBonB,EAAyB,KAAK,WAAW,wBAAwB,gBAAgB,EAAE,CAAC,CAAC,EAC9L,KAAK,kBAAkB,wBAA0BC,EACjD,GAAM,CACJ,SAAA7gB,CACF,EAAI6gB,EACJ7gB,EAAS,KAAK,CAChB,CACA,+BAA+BogB,EAAe,CACxC,KAAK,kBAAkB,yBAAyB,UAAU,cAAc,IAC1E,KAAK,kBAAkB,wBAAwB,SAAS,cAAc,IAAI,EAAK,EAE/E,WAAW,IAAM,CACf,KAAK,kBAAkB,WAAW,KAAK,EACvC,KAAK,kBAAkB,yBAAyB,QAAQ,EACxD,KAAK,kBAAkB,wBAA0B,KACjDA,GAAe,gBAAgB,CACjC,EANiC,GAMN,EAE/B,CACM,MAAO,QAAAnjB,EAAA,sBACX,GAAI,CAAC,KAAK,cAAe,CACvB,KAAK,qBAAqB,EAC1B,MACF,CACA,MAAM,KAAK,0BAA0B,EACrC,MAAM,KAAK,uBAAuB,EAClC,KAAK,eAAe,EAEpB,MAAM,KAAK,sBAAsB,WAAW,EACxC,KAAK,oBAAoB,gBAAgB,SAAS,UAAU,QAC9D,KAAK,aAAa,KAAK,KAAK,oBAAoB,eAAe,QAAQ,QAAQ,EAEjF,KAAK,SAAS,CAChB,GACM,wBAAyB,QAAAA,EAAA,sBAC7B,GAAM,CACJ,QAAA6jB,EACA,cAAAC,CACF,EAAI,KAAK,cAAc,QACvB,KAAK,iBAAmBD,EACxB,KAAK,qBAAuBC,EAC5B,KAAK,mBAAqBA,GAAiB,WAC7C,GACA,YAAa,CACX,IAAMpL,EAAqB,CAAC,CAE1B,OAAQ,CAAC,GAA2B,GAA0B,EAAsB,EACpF,OAAQ,IAAM,KAAK,qBAAqB,CAC1C,CAAC,EACD,KAAK,eAAe,WAAWA,CAAkB,CACnD,CACA,gBAAiB,CACf,IAAMqL,EAAmC,KAAK,+BAA+B,EAEzE,KAAK,cAAc,wBACrB,KAAK,mBAAqBA,EAGlB,KAAK,cAAc,iBAC3B,KAAK,aAAa,CAEtB,CAIA,cAAe,CACb,KAAK,mBAAqB,GAC1B,KAAK,kBAAkB,iBAAiB,UAAU,EAClD,KAAK,kBAAkB,iBAAiB,sBAAsB,KAAK,CACrE,CAOA,gCAAiC,CAC/B,IAAIC,EAAwB,KAAK,eAAe,QAAQ,gBAAkB,YACpE7B,EAAa,KAAK,2BAA2B,EAC/C8B,EACJ,GAAI,CACFA,EAA8B,KAAK,MAAM,KAAK,eAAe,IAAI9B,CAAU,CAAC,CAC9E,MAAY,CACV8B,EAA8B,IAChC,CACA,OAAiDA,GAAgC,KAC/ED,EAAwBC,GAGnB,KAAK,cAAc,0BACtBD,EAAwB,IAE1B,KAAK,eAAe,IAAI7B,EAAY,KAAK,UAAU6B,CAAqB,CAAC,GAEpEA,CACT,CAMA,4BAA6B,CAC3B,IAAI7B,EAAa,uBACjB,OAAAA,GAAc,KAAK,gBAAgB,QAAQ,GAAG,GAAK,GAAG,KAAK,gBAAgB,QAAQ,GAAG,EAAE,IAAM,GAC9FA,GAAc,mBACPA,CACT,CAIA,aAAc,CAEZ,KAAK,MAAM,IAAI,EAAK,EACpB,KAAK,gBAAgB,IAAI,EAAK,EAE9B,KAAK,OAAO,iBAAiB,KAAK3hB,GAAO,CAAC,CAAC,EAAE,UAAU,IAAM,CAC3D,KAAK,MAAM,IAAI,EAAI,EAGnB,WAAW,IAAM,CACf,KAAK,gBAAgB,IAAI,EAAI,CAC/B,EAAG,GAAG,CACR,CAAC,CACH,CAIA,sBAAuB,CACrB,KAAK,eAAiB,GACtB,KAAK,SAAS,EACd,KAAK,cAAc,iBAAiB,CAClC,QAAS,KAAK,YAAY,IAAI,8CAA8C,EAC5E,cAAe,GACf,sBAAuB,GACvB,yBAA0B,EAC5B,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAO,SAAqCP,EAAmB,CAClE,OAAO,IAAKA,GAAqB3C,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBqD,EAAkB,CAC9C,KAAMrD,EACN,UAAW,CAAC,CAAC,gBAAgB,CAAC,EAC9B,UAAW,SAAmChb,EAAIC,EAAK,CAKrD,GAJID,EAAK,IACJ8f,EAAYjL,GAAM,CAAC,EACnBiL,EAAYrF,GAAkB,CAAC,GAEhCza,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,QAAUggB,EAAG,OAC3DC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,iBAAmBggB,EAAG,MACzE,CACF,EACA,aAAc,SAA0CjgB,EAAIC,EAAK,CAC3DD,EAAK,GACJe,EAAW,SAAU,UAAyD,CAC/E,OAAOd,EAAI,SAAS,CACtB,EAAG,GAAU63B,EAAe,CAEhC,EACA,WAAY,GACZ,SAAU,CAAIxZ,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,UAAW,EAAE,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,EAAG,qBAAsB,mBAAoB,oBAAoB,EAAG,CAAC,EAAG,gBAAgB,EAAG,CAAC,EAAG,oBAAoB,EAAG,CAAC,EAAG,iBAAkB,EAAG,SAAS,EAAG,CAAC,EAAG,iBAAkB,EAAG,SAAS,EAAG,CAAC,EAAG,mBAAoB,oBAAoB,EAAG,CAAC,EAAG,eAAgB,EAAG,SAAS,CAAC,EAClU,SAAU,SAAsCte,EAAIC,EAAK,CACnDD,EAAK,GACJqB,EAAW,EAAG+R,GAA4C,GAAI,GAAI,MAAO,CAAC,EAAE,EAAGG,GAA4C,EAAG,EAAG,MAAO,CAAC,EAE1IvT,EAAK,IACJwB,EAAcvB,EAAI,MAAM,GAAK,CAACA,EAAI,eAAiB,EAAI,EAAE,EACzDO,EAAU,EACVgB,EAAcvB,EAAI,eAAiB,EAAI,EAAE,EAEhD,EACA,aAAc,CAAC+Z,GAAa6Y,GAAiBzS,GAASmU,GAAkBhW,EAAqBsa,GAAiB+I,GAAcnnB,GAAkBM,GAAoBD,GAAiBpF,EAAiB,EACpM,OAAQ,CAAC;AAAA,CAA03E,EACn4E,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOsF,CACT,GAAG,EAQCC,IAAsC,IAAM,CAC9C,MAAMA,CAAsB,CAC1B,aAAc,CAEZ,KAAK,MAAQ,GAEb,KAAK,gBAAkB,GAEvB,KAAK,gBAAkB,EAEvB,KAAK,UAAY,EAEjB,KAAK,WAAa,IAAIiE,GACtB,KAAK,WAAa,GAClB,KAAK,eAAiByc,GACtB,KAAK,WAAane,EAAOshB,EAAU,EACnC,KAAK,mBAAqBthB,EAAOoI,EAAkB,EACnD,KAAK,eAAiBpI,EAAOmI,EAAc,CAC7C,CAEA,IAAI,WAAY,CACd,OAAQ,KAAK,UAAW,CACtB,IAAK,GACH,MAAO,mBACT,IAAK,GACH,MAAO,oBACT,IAAK,GACH,MAAO,mBACT,IAAK,GACH,MAAO,wBACT,IAAK,GACH,MAAO,8BACX,CACF,CACA,iBAAkB,CAChB,KAAK,iCAAmC,KAAK,mBAAmB,4BAA4B,KAAK,cAAc,EAAE,UAAUgP,GAAS,CAClI,KAAK,4BAA4BA,CAAK,CACxC,CAAC,CACH,CACA,uBAAwB,CACtB,KAAK,WAAa,OAAK,SAAS,eAAe,cAAc,kBAAkB,EAC3E,KAAK,WACP,KAAK,cAAgB,KAAK,SAAS,eAAe,cAAc,kBAAkB,GAAG,aAErF,KAAK,cAAgB,CAEzB,CACA,aAAc,CACR,KAAK,kCACP,KAAK,iCAAiC,YAAY,EAEpD,KAAK,uBAAuB,CAC9B,CAEA,OAAQ,CACN,KAAK,WAAW,KAAK,CACvB,CAMA,4BAA4BA,EAAO,CAC7BA,GACF,KAAK,yBAA2BvW,GAAS,CACnCA,EAAM,UAAY,GACpB,WAAW,IAAM,CACf,KAAK,6BAA6B,CACpC,CAAC,CAEL,EACA,SAAS,iBAAiB,UAAW,KAAK,wBAAwB,EAClE,KAAK,uBAAyB,IAAM,CAClC,WAAW,IAAM,CACf,KAAK,6BAA6B,CACpC,CAAC,CACH,EACA,OAAO,iBAAiB,QAAS,KAAK,sBAAsB,IAE5D,SAAS,oBAAoB,UAAW,KAAK,wBAAwB,EACrE,OAAO,oBAAoB,QAAS,KAAK,sBAAsB,EAEnE,CAIA,8BAA+B,CAC7B,IAAMqe,EAAiB,SAAS,cAC5BA,IACG,KAAK,qBAAqBA,CAAc,GAC3C,KAAK,iBAAiBA,CAAc,EAG1C,CAOA,qBAAqB3S,EAAS,CAC5B,MAAO,OAAK,WAAW,6BAA6BA,EAAS,kBAAkB,CACjF,CAMA,iBAAiBA,EAAS,CACxBA,EAAQ,MAAM,EACd,WAAW,IAAM,CACfA,EAAQ,KAAK,CACf,CAAC,CACH,CAIA,wBAAyB,CACvB,SAAS,oBAAoB,UAAW,KAAK,wBAAwB,EACrE,OAAO,oBAAoB,QAAS,KAAK,sBAAsB,CACjE,CACA,MAAO,CACL,KAAK,UAAO,SAAuCnM,EAAmB,CACpE,OAAO,IAAKA,GAAqB1C,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBoD,EAAkB,CAC9C,KAAMpD,EACN,UAAW,CAAC,CAAC,kBAAkB,CAAC,EAChC,UAAW,SAAqCjb,EAAIC,EAAK,CAIvD,GAHID,EAAK,GACJ8f,EAAYjL,GAAM,CAAC,EAEpB7U,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,QAAUggB,EAAG,MAChE,CACF,EACA,OAAQ,CACN,MAAO,QACP,gBAAiB,kBACjB,gBAAiB,kBACjB,UAAW,WACb,EACA,QAAS,CACP,WAAY,YACd,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,mBAAoBxJ,GACpB,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,UAAW,EAAE,EAAG,CAAC,EAAG,wBAAyB,EAAG,SAAS,EAAG,CAAC,EAAG,wBAAwB,EAAG,CAAC,EAAG,2BAA4B,iBAAkB,EAAG,SAAS,EAAG,CAAC,EAAG,eAAgB,EAAG,SAAS,EAAG,CAAC,EAAG,eAAgB,EAAG,SAAU,SAAS,CAAC,EACpP,SAAU,SAAwC9U,EAAIC,EAAK,CACrDD,EAAK,IACJ6hC,GAAgB,EAChB3hC,EAAe,EAAG,MAAO,CAAC,EAC1BmB,EAAW,EAAGqS,GAA8C,EAAG,EAAG,MAAO,CAAC,EAC1ExT,EAAe,EAAG,MAAO,EAAG,CAAC,EAC7B4hC,GAAa,CAAC,EACdzhC,EAAa,EAAE,GAEhBL,EAAK,IACJ8B,EAAW,UAAW7B,EAAI,SAAS,EACnCO,EAAU,EACVgB,EAAcvB,EAAI,OAASA,EAAI,gBAAkB,EAAI,EAAE,EACvDO,EAAU,EACVqE,GAAY,gBAAiB5E,EAAI,cAAe,IAAI,EACpD6B,EAAW,UAAcK,EAAgB,EAAGmR,GAAMrT,EAAI,UAAU,CAAC,EAExE,EACA,aAAc,CAAC4yB,GAAiBzS,GAAS7B,EAAwBC,GAAaujB,EAAoB,EAClG,OAAQ,CAAC;AAAA,CAAs6D,EAC/6D,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO9mB,CACT,GAAG,EAQCC,IAA6C,IAAM,CACrD,MAAMA,CAA6B,CACjC,aAAc,CAEZ,KAAK,qBAAuB,EAE5B,KAAK,UAAY,GAEjB,KAAK,UAAY,EAEjB,KAAK,gBAAkB,GACvB,KAAK,eAAiBsC,EAAOmI,EAAc,EAC3C,KAAK,iBAAmBnI,EAAOsF,EAAgB,EAC/C,KAAK,oBAAsBtF,EAAOoI,EAAkB,EACpD,KAAK,iBAAmBpI,EAAOiP,EAAgB,EAC/C,KAAK,OAASjP,EAAOijB,EAAM,EAC3B,KAAK,WAAajjB,EAAO+I,EAAU,EACnC,KAAK,iBAAiB,UAAU,oBAAqBlD,GAAW,CAC1DA,EAAQ,QAAUA,EAAQ,SAAWwG,GAAW,OAClD,KAAK,OAAO,iBAAiB,KAAK3L,GAAK,CAAC,CAAC,EAAE,UAAU,IAAM,CACzD,KAAK,UAAYmF,EAAQ,KAC3B,CAAC,CAEL,CAAC,EACD,KAAK,iBAAiB,iBAAiB,KAAKmG,EAAOwY,GAAcA,EAAW,SAAWnY,GAAW,KAAK,EAAGjD,EAAmB,KAAK,UAAU,CAAC,EAAE,UAAUob,GAAc,CACrK,KAAK,OAAO,iBAAiB,KAAK9jB,GAAK,CAAC,CAAC,EAAE,UAAU,IAAM,CACzD,KAAK,UAAY8jB,EAAW,KAC9B,CAAC,CACH,CAAC,EACD,KAAK,uBAAyB,KAAK,oBAAoB,mBAAmB,EAAE,UAAU,IAAM,CACtF,KAAK,SACP,KAAK,OAAO,EAEd,KAAK,QAAU,KAAK,eAAe,SAAS,YAAY,OAC1D,CAAC,CACH,CACA,aAAc,CACR,KAAK,wBACP,KAAK,uBAAuB,YAAY,CAE5C,CACA,UAAW,CACT,KAAK,OAAO,CACd,CACA,QAAS,CAGP,IAAMC,EAA2B,KAAK,oBAAoB,iBAAiB,KAAK,cAAc,EACxFC,EAAiBD,EAAyB,UAChD,KAAK,gBAAkB,EAAAA,EAAyB,gBAC5CA,EAAyB,QAC3B,KAAK,UAAYA,EAAyB,OAExCC,GAAgB,SAAS,EAAE,SAC7B,KAAK,UAAYA,EAErB,CAEA,OAAQ,CACN,KAAK,oBAAoB,YAAYrY,GAAW,KAAK,CACvD,CACA,MAAO,CACL,KAAK,UAAO,SAA8ClM,EAAmB,CAC3E,OAAO,IAAKA,GAAqBzC,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBmD,EAAkB,CAC9C,KAAMnD,EACN,UAAW,CAAC,CAAC,0BAA0B,CAAC,EACxC,WAAY,GACZ,SAAU,CAAIoD,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,EAAG,aAAc,kBAAmB,QAAS,YAAa,iBAAiB,EAAG,CAAC,EAAG,2BAA2B,CAAC,EACxH,SAAU,SAA+Cte,EAAIC,EAAK,CAC5DD,EAAK,IACJE,EAAe,EAAG,mBAAoB,CAAC,EACvCa,EAAW,aAAc,UAAwF,CAClH,OAAOd,EAAI,MAAM,CACnB,CAAC,EACEC,EAAe,EAAG,MAAO,CAAC,EAC1BkB,EAAU,EAAG,eAAe,EAC5Bf,EAAa,EAAE,GAEhBL,EAAK,GACJ8B,EAAW,kBAAmB7B,EAAI,oBAAoB,EAAE,QAASA,EAAI,SAAS,EAAE,YAAaA,EAAI,SAAS,EAAE,kBAAmBA,EAAI,eAAe,CAEzJ,EACA,aAAc,CAACgb,GAAuB2mB,EAAY,EAClD,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAO1mB,CACT,GAAG,EAQCC,IAA6C,IAAM,CACrD,MAAMA,CAA6B,CACjC,aAAc,CACZ,KAAK,WAAa,GAClB,KAAK,SAAW,IAAIgO,GACpB,KAAK,cAAgB,GACrB,KAAK,eAAiB3L,EAAOmI,EAAc,EAC3C,KAAK,iBAAmBnI,EAAOsF,EAAgB,EAC/C,KAAK,mBAAqBtF,EAAOoI,EAAkB,EACnD,KAAK,kBAAoBpI,EAAOkX,EAAiB,EACjD,KAAK,iBAAmBlX,EAAOiP,EAAgB,CACjD,CACA,UAAW,CAET,IAAM0V,EAAe,KAAK,mBAAmB,mBAAmB,KAAK,cAAc,EACnF,KAAK,oBAAsBA,EAAa,UACpC,KAAK,sBACP,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,uBAAuB,EAC5B,KAAK,eAAe,GAItB,KAAK,mBAAmB,cAActY,GAAW,KAAK,EAAE,KAAKsD,GAAU,KAAK,QAAQ,CAAC,EAAE,UAAU,IAAM,CAKrG,KAAK,cAAgB,GAErB,KAAK,mBAAmB,kBAAkB,KAAK,CAC7C,aAAc,IAChB,CAAC,CACH,CAAC,CACH,CACA,uBAAwB,CACtB,IAAMiV,EAAiB,KAAK,WAAW,eAAe,cAAc,kBAAkB,EAClFA,GACF,KAAK,WAAa,GAClB,KAAK,cAAgBA,EAAe,eAEpC,KAAK,WAAa,GAClB,KAAK,cAAgB,EAEzB,CACA,aAAc,CACZ,KAAK,SAAS,KAAK,EACnB,KAAK,SAAS,YAAY,EACtB,KAAK,gCACP,KAAK,8BAA8B,EACnC,KAAK,8BAAgC,OAEzC,CACA,gBAAiB,CACf,KAAK,kBAAkB,gBAAgB,KAAK,CAC1C,KAAM,KAAK,KACX,OAAQ,eACR,oBAAqB,EACvB,CAAC,CACH,CAIA,uBAAwB,CACtB,KAAK,kBAAkB,iBAAiB,KAAK5Y,EAAO,CAAC,CACnD,aAAAwV,CACF,IACM,KAAK,eACP,KAAK,cAAgB,GACd,KAEJA,IACHA,EAAe,KAAK,kBAAkB,yBAEjCA,GAAc,UAAU,QAAQ,SAAW,eACnD,EAAG7R,GAAU,KAAK,QAAQ,CAAC,EAAE,UAAU,CAAC,CACvC,KAAA1K,CACF,IAAM,CACA,KAAK,mBAAmB,eAAe,KAAK,eAAgBoH,GAAW,KAAK,GAC9E,KAAK,mBAAmB,YAAYA,GAAW,MAAO,GAAOpH,CAAI,CAErE,CAAC,CACH,CAIA,yBAA0B,CACxB,KAAK,8BAAgC,KAAK,iBAAiB,UAAU,oBAAqBY,GAAW,CAC/FA,GAAS,SAAWwG,GAAW,OACjC,KAAK,kBAAkB,OAAO,KAAKxG,EAAQ,KAAK,CAEpD,CAAC,CACH,CAIA,wBAAyB,CACvB,KAAK,iBAAiB,iBAAiB,KAAKmG,EAAO,CAAC,CAClD,OAAA2E,CACF,IAAMA,IAAWtE,GAAW,KAAK,EAAGsD,GAAU,KAAK,QAAQ,CAAC,EAAE,UAAU,CAAC,CACvE,MAAAM,CACF,IAAM,CACJ,KAAK,kBAAkB,OAAO,KAAKA,CAAK,CAC1C,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAO,SAA8C9P,EAAmB,CAC3E,OAAO,IAAKA,GAAqBxC,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBkD,EAAkB,CAC9C,KAAMlD,EACN,UAAW,CAAC,CAAC,0BAA0B,CAAC,EACxC,UAAW,SAA4Cnb,EAAIC,EAAK,CAK9D,GAJID,EAAK,IACJ8f,EAAY5L,GAAM,EAAGyqB,EAAW,EAChC7e,EAAY/K,GAAM,CAAC,GAEpB/U,EAAK,EAAG,CACV,IAAIigB,EACDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,KAAOggB,EAAG,OACxDC,EAAeD,EAAQE,EAAY,CAAC,IAAMlgB,EAAI,UAAYggB,EAAG,MAClE,CACF,EACA,OAAQ,CACN,oBAAqB,qBACvB,EACA,WAAY,GACZ,SAAU,CAAI3B,CAAmB,EACjC,MAAO,EACP,KAAM,EACN,OAAQ,CAAC,CAAC,OAAQ,EAAE,EAAG,CAAC,YAAa,EAAE,EAAG,CAAC,EAAG,uBAAwB,iBAAkB,EAAG,SAAS,CAAC,EACrG,SAAU,SAA+Cte,EAAIC,EAAK,CAC5DD,EAAK,GACJqB,EAAW,EAAGsS,GAAqD,EAAG,EAAG,cAAe,KAAM,EAAM1R,EAAsB,CAEjI,EACA,aAAc,CAAC2/B,GAAcxhB,EAAO,EACpC,OAAQ,CAAC;AAAA,CAAid,EAC1d,cAAe,CACjB,CAAC,CACH,CACF,CACA,OAAOjF,CACT,GAAG,EAIGC,GAAN,KAAoB,CAClB,YAAYwO,EAAe,CACrBA,GACF,OAAO,OAAO,KAAMA,CAAa,CAErC,CACF,EACMvO,GAAN,cAAqCD,EAAc,CACjD,YAAYwO,EAAe,CACzB,MAAM,EACN,KAAK,mBAAqB,CAAC,EACvBA,GACF,OAAO,OAAO,KAAMA,CAAa,CAErC,CACF,EACMtO,GAAN,cAAsCvE,EAAe,CACnD,YAAYmS,EAAgB,CAC1B,MAAM,EAEN,KAAK,UAAY,CAAC,EACdA,GACF,OAAO,OAAO,KAAMA,CAAc,CAEtC,CACF,EACM3N,GAAN,KAAe,CACb,YAAYye,EAAU,CACpB,KAAK,UAAY,CAAC,EACdA,GACF,OAAO,OAAO,KAAMA,CAAQ,EAE9B,KAAK,KAAOlb,GAAY,UAAU,CACpC,CACF,EACMtD,GAAN,cAAgCD,EAAS,CACvC,YAAYye,EAAU,CACpB,MAAM,EACN,KAAK,UAAY,CAAC,EAClB,KAAK,aAAe,GACpB,KAAK,UAAY,GACjB,KAAK,aAAe,GACpB,KAAK,mBAAqB,CAAC,EACvBA,GACF,OAAO,OAAO,KAAMA,CAAQ,CAEhC,CACF,EACIve,IAAwC,IAAM,CAChD,MAAMA,UAAgCxE,EAAe,CACnD,aAAc,CACZ,MAAM,GAAG,SAAS,EAClB,KAAK,kBAAoBuG,EAAO2B,EAAiB,CACnD,CACA,IAAI,aAAc,CAChB,GAAI,KAAK,kBAAkB,WAAW,GAAG,qBAAsB,CAC7D,IAAMgV,EAAO,IAAI,KAAK,KAAK,kBAAkB,WAAW,EAAE,oBAAoB,EAC9E,OAAIA,EAAK,SAAS,IAAM,eACfA,EAAK,QAAQ,EAAE,SAAS,EAExB,KAAK,kBAAkB,WAAW,GAAG,oBAEhD,KACE,OAEJ,CAMM,YAAYhW,EAAK,QAAAT,EAAA,sBACrB,IAAMwL,EAAiB,MAAMmZ,GAAA5mB,EAAA,eAAM,oBAAN,KAAkB0C,CAAG,EAElD,OADuB,IAAI7C,GAAwB,KAAK,uBAAuB4N,CAAc,CAAC,CAEhG,GACA,uBAAuBA,EAAgB,CACrC,IAAM3J,EAAqB,KAAK,kBAAkB,sBAAsB,EACxE,OAAA2J,EAAe,eAAiB,CAAC,GAAG,KAAK,qCAAqCA,EAAe,eAAgB3J,CAAkB,CAAC,EAChI2J,EAAe,UAAY,CAAC,GAAG,KAAK,gCAAgCA,EAAe,UAAW3J,CAAkB,CAAC,EAC1G2J,CACT,CACA,qCAAqCgU,EAAgB3d,EAAoB,CACvE,IAAM+iB,EAAwBpF,GAAgB,OAAO5R,GAC/CA,EAAE,oBAAoB,OAAS,EACZA,EAAE,mBAAmB,KAAK1L,GAASL,EAAmB,SAASK,CAAK,CAAC,EAGrF,EACR,EACD,OAAI0iB,GAAuB,OAAS,EAC3BA,EAEF,CAAC,CACV,CACA,gCAAgCvI,EAAWxa,EAAoB,CAC7D,IAAMgjB,EAAmBxI,GAAW,OAAOzO,GACrCA,EAAE,oBAAoB,OAAS,EACRA,EAAE,mBAAmB,KAAKkX,GAAe,CAEhE,GAAIjjB,EAAmB,SAASijB,CAAW,EACzC,MAAO,GAGT,IAAMC,EAAcD,EAAY,MAAM,GAAG,EAEzC,OAAIC,EAAY,OAAS,EAChBA,EAAY,MAAM7iB,IAASL,EAAmB,SAASK,EAAK,CAAC,EAE/D,EACT,CAAC,EAGI,EACR,EACK8iB,EAA0B,CAAC,EACjC,OAAAH,EAAiB,QAAQtW,GAAiB,CACxC,GAAIA,GAAe,WAAW,OAAS,EAAG,CACxC,IAAM0W,EAAiB,KAAK,gCAAgC1W,EAAc,UAAW1M,CAAkB,EACnGojB,EAAe,SAAW,EAC5BD,EAAwB,KAAKzW,CAAa,EAE1CA,EAAc,UAAY0W,CAE9B,CACF,CAAC,EACcJ,EAAiB,OAAOK,GAAmB,CAACF,EAAwB,KAAKG,GAAgBA,IAAiBD,CAAe,CAAC,CAE3I,CACA,MAAO,CACL,KAAK,WAAuB,IAAM,CAChC,IAAIE,EACJ,OAAO,SAAyCnlB,EAAmB,CACjE,OAAQmlB,IAAyCA,EAA0C3H,GAAsB1f,CAAuB,IAAIkC,GAAqBlC,CAAuB,CAC1L,CACF,GAAG,CACL,CACA,MAAO,CACL,KAAK,WAA0BmC,EAAmB,CAChD,MAAOnC,EACP,QAASA,EAAwB,SACnC,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAMCC,IAAyD,IAAM,CACjE,MAAMA,UAAiDrE,EAAe,CACpE,aAAc,CACZ,MAAM,EAKN,KAAK,qBAAuB,CAAC,EAC7B,KAAK,gBAAkBmG,EAAOtG,EAAsB,EACpD,KAAK,eAAiBsG,EAAOlG,EAAa,EAC1C,KAAK,MAAQkG,EAAO2E,EAAW,EAC/B,KAAK,YAAc3E,EAAOsK,EAAU,EACpC,KAAK,iBAAmBtK,EAAOQ,EAAe,EAC9C,KAAK,KAAO,OACZ,KAAK,eAAe,iBAAiB,IAAI,CAC3C,CAQM,aAAagK,EAAKmD,EAAW,QAAAzN,EAAA,sBACjC,IAAIwL,EAAiB,MAAM,KAAK,gBAAgB,mBAAmBlB,CAAG,EACtE,GAAI,CAACkB,EAAe,UAClB,OAAO,KAAK,qBAEViC,IACFjC,EAAiB,MAAM,KAAK,0BAA0BiC,EAAWjC,CAAc,GAEjF,KAAK,qBAAuBA,EAAe,WAAa,CAAC,EACzD,IAAM6Q,EAAY,KAAK,uBAAuB,KAAK,oBAAoB,EACvE,aAAM,KAAK,gBAAgBA,CAAS,EAC7BA,CACT,GAOA,OAAO3P,EAAY,CACjB,OAAO,IAAI,QAAQ5I,GAAW,CAC5B,IAAI4J,EAAe,CAAC,EAEdC,EAAiB,KAAK,SAASjB,EAAY,KAAK,qBAAsB,EAAE,EAC1EiB,GAAgB,OAAS,EAC3BD,EAAe,CAAC,GAAGA,EAAc,GAAGC,CAAc,EAIlD,KAAK,qBAAqB,QAAQC,GAAK,CACrC,IAAMD,EAAiB,KAAK,SAASjB,EAAYkB,EAAE,UAAWA,EAAE,OAAO,EACnED,GAAgB,OAAS,IAC3BD,EAAe,CAAC,GAAGA,EAAc,GAAGC,CAAc,EAEtD,CAAC,EAEH7J,EAAQ4J,CAAY,CACtB,CAAC,CACH,CAOA,0BAA0BjN,EAAK+K,EAAgB,CAC7C,OAAO,IAAI,QAAQ1H,GAAW,CAC5B,KAAK,YAAY,IAAIrD,CAAG,EAAE,KAAKD,GAAK,CAAC,CAAC,EAAE,UAAU,CAChD,KAAMqN,GAAmB,CACvBA,EAAgB,QAAQC,GAAkB,CAExC,IAAMC,EAAcvC,EAAe,UAAU,UAAUwC,GAAkBA,EAAe,KAAOF,EAAe,EAAE,EAEhH,GAAIC,IAAgB,GAClBvC,EAAe,UAAUuC,CAAW,EAAE,UAAU,KAAK,GAAGD,EAAe,SAAS,MAIhF,SAAWG,KAAgBzC,EAAe,UACxC,GAAI,KAAK,mBAAmBsC,EAAgBG,CAAY,EACtD,KAIR,CAAC,EACDnK,EAAQ0H,CAAc,CACxB,EACA,MAAO0C,GAAQpK,EAAQ0H,CAAc,CACvC,CAAC,CACH,CAAC,CACH,CAMA,uBAAuB6Q,EAAY,CAAC,EAAG,CACrC,OAAOgJ,GAAUhJ,CAAS,EAAE,OAAO/T,GAC7BA,EAAK,WACHA,EAAK,YACPA,EAAK,UAAY,KAAK,uBAAuBA,EAAK,SAAS,GAEtD,IAEF,EACR,CACH,CAMM,iBAAgC,QAAAtI,EAAA,yBAAhBqc,EAAY,CAAC,EAAG,CACpCA,EAAU,IAAU/T,GAAQtI,EAAA,sBAEtBsI,EAAK,eACPA,EAAK,IAAM,MAAMpF,GAAe,KAAK,iBAAiB,gBAAgBoF,EAAK,GAAG,CAAC,GAE7EA,EAAK,YACP,MAAM,KAAK,gBAAgBA,EAAK,SAAS,EAE7C,EAAC,CACH,GAQA,mBAAmB6F,EAAYC,EAAU,CACvC,IAAMC,EAAeD,EAAS,UAAU,UAAUE,GAASA,EAAM,KAAOH,EAAW,EAAE,EAErF,GAAIE,IAAiB,GACnB,OAAAD,EAAS,UAAUC,CAAY,EAAE,UAAU,KAAK,GAAGF,EAAW,SAAS,EAChE,GAGT,QAAWI,KAAiBH,EAAS,UACnC,KAAK,mBAAmBD,EAAYI,CAAa,EAEnD,MAAO,EACT,CACA,SAAS7B,EAAYnD,EAAOiF,EAAY,CACtC9B,EAAaA,EAAW,YAAY,EAEpC,IAAItB,EADU7B,GAAO,OAAOkF,GAAMA,EAAG,KAAO,MAAQA,EAAG,SAAW,MAAQA,EAAG,cAAgB,KAAK,MAAM,IAAIA,EAAG,OAAO,EAAE,YAAY,EAAE,UAAU,KAAK,EAAE,QAAQ,mBAAoB,EAAE,EAAE,SAAS/B,CAAU,CAAC,GAC1L,IAAIzI,GAAK,CACxB,IAAMyK,EAAU,cAAc,KAAK,MAAM,IAAIF,CAAU,CAAC,gBASxD,MARU,CACR,GAAIvK,EAAE,IACN,IAAKA,EAAE,IACP,cAAe,QACf,eAAgB,QAChB,MAAO,KAAK,MAAM,IAAIA,EAAE,OAAO,EAC/B,QAAAyK,CACF,CAEF,CAAC,EACKC,EAAWpF,GAAO,OAAOkF,GAAMA,EAAG,WAAa,IAAI,EACzD,OAAIE,GAAU,OAAS,GACrBA,EAAS,QAAQf,GAAK,CACpB,GAAIA,EAAE,WAAW,OAAS,EAAG,CAE3B,IAAMgB,EAAc,CAAC,KAAK,MAAM,IAAIJ,CAAU,EAAG,KAAK,MAAM,IAAIZ,EAAE,OAAO,CAAC,EAAE,OAAO9G,IAASA,EAAK,EAC3F+H,EAAkB,KAAK,SAASnC,EAAYkB,EAAE,UAAWgB,EAAY,KAAK,GAAG,CAAC,EAChFC,IACFzD,EAAM,CAAC,GAAGA,EAAK,GAAGyD,CAAe,EAErC,CACF,CAAC,EAEIzD,CACT,CACA,MAAO,CACL,KAAK,UAAO,SAA0DnL,EAAmB,CACvF,OAAO,IAAKA,GAAqBjC,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BkC,EAAmB,CAChD,MAAOlC,EACP,QAASA,EAAyC,SACpD,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGC,GAA+B,CAAC,CACpC,QAASzE,GACT,SAAUuE,EACZ,EAAG,CACD,QAAS7D,GACT,SAAU8D,EACZ,EAAG,CACD,QAASgL,GACT,SAAUsc,EACZ,CAAC,EACKpnB,GAAN,KAAkB,CAChB,YAAYqnB,EAAa,CACnBA,GACF,OAAO,OAAO,KAAMA,CAAW,CAEnC,CACF","names":["MatIconModule","init_icon","__esmMin","init_core","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","MatCommonModule","HttpError","TimeoutError","AbortError","UnsupportedTransportError","DisabledTransportError","FailedToStartTransportError","FailedToNegotiateWithServerError","AggregateErrors","init_Errors","__esmMin","errorMessage","statusCode","trueProto","message","transport","innerErrors","HttpResponse","HttpClient","init_HttpClient","__esmMin","statusCode","statusText","content","url","options","__spreadProps","__spreadValues","LogLevel","init_ILogger","__esmMin","NullLogger","init_Loggers","__esmMin","_logLevel","_message","getDataDetail","data","includeContent","detail","isArrayBuffer","formatArrayBuffer","view","str","num","pad","val","sendMessage","logger","transportName","httpClient","url","content","options","__async","headers","name","value","getUserAgentHeader","LogLevel","responseType","response","__spreadValues","createLogger","ConsoleLogger","NullLogger","userAgentHeaderName","Platform","constructUserAgent","VERSION","getOsName","getRuntime","getRuntimeVersion","version","os","runtime","runtimeVersion","userAgent","majorAndMinor","getErrorString","e","getGlobalThis","Arg","SubjectSubscription","init_Utils","__esmMin","init_ILogger","init_Loggers","values","subject","observer","index","_","minimumLogLevel","logLevel","message","msg","deserializeContent","response","responseType","content","FetchHttpClient","init_FetchHttpClient","__esmMin","init_Errors","init_HttpClient","init_ILogger","init_Utils","HttpClient","logger","requireFunc","__require","getGlobalThis","request","__async","AbortError","abortController","error","timeoutId","msTimeout","LogLevel","TimeoutError","isArrayBuffer","__spreadValues","e","errorMessage","HttpError","payload","HttpResponse","url","cookies","Platform","c","XhrHttpClient","init_XhrHttpClient","__esmMin","init_Errors","init_HttpClient","init_ILogger","init_Utils","HttpClient","logger","request","AbortError","resolve","reject","xhr","isArrayBuffer","headers","header","HttpResponse","HttpError","LogLevel","TimeoutError","DefaultHttpClient","init_DefaultHttpClient","__esmMin","init_Errors","init_FetchHttpClient","init_HttpClient","init_Utils","init_XhrHttpClient","HttpClient","logger","Platform","FetchHttpClient","XhrHttpClient","request","AbortError","url","TextMessageFormat","init_TextMessageFormat","__esmMin","_TextMessageFormat","output","input","messages","HandshakeProtocol","init_HandshakeProtocol","__esmMin","init_TextMessageFormat","init_Utils","handshakeRequest","TextMessageFormat","data","messageData","remainingData","isArrayBuffer","binaryData","separatorIndex","responseLength","textData","messages","response","MessageType","init_IHubProtocol","__esmMin","Subject","init_Subject","__esmMin","init_Utils","item","observer","err","SubjectSubscription","DEFAULT_TIMEOUT_IN_MS","DEFAULT_PING_INTERVAL_IN_MS","HubConnectionState","HubConnection","init_HubConnection","__esmMin","init_HandshakeProtocol","init_Errors","init_IHubProtocol","init_ILogger","init_Subject","init_Utils","_HubConnection","connection","logger","protocol","reconnectPolicy","LogLevel","Arg","HandshakeProtocol","data","error","MessageType","url","__async","Platform","e","handshakePromise","resolve","reject","handshakeRequest","startPromise","AbortError","methodName","args","streams","streamIds","invocationDescriptor","promiseQueue","subject","Subject","cancelInvocation","invocationEvent","message","sendPromise","newMethod","method","handlers","removeIdx","callback","messages","getErrorString","responseMessage","remainingData","nextPing","invocationMessage","methods","methodsCopy","expectsResponse","res","exception","completionMessage","m","prevRes","c","reconnectStartTime","previousReconnectAttempts","retryError","nextRetryDelay","previousRetryCount","elapsedMilliseconds","retryReason","callbacks","key","nonblocking","invocationId","streamId","err","item","argument","arg","id","result","DEFAULT_RETRY_DELAYS_IN_MILLISECONDS","DefaultReconnectPolicy","init_DefaultReconnectPolicy","__esmMin","retryDelays","retryContext","HeaderNames","init_HeaderNames","__esmMin","AccessTokenHttpClient","init_AccessTokenHttpClient","__esmMin","init_HeaderNames","init_HttpClient","HttpClient","innerClient","accessTokenFactory","request","__async","allowRetry","response","HeaderNames","url","HttpTransportType","TransferFormat","init_ITransport","__esmMin","AbortController","init_AbortController","__esmMin","LongPollingTransport","init_LongPollingTransport","__esmMin","init_AbortController","init_Errors","init_ILogger","init_ITransport","init_Utils","httpClient","logger","options","AbortController","url","transferFormat","__async","Arg","TransferFormat","LogLevel","name","value","getUserAgentHeader","headers","__spreadValues","pollOptions","pollUrl","response","HttpError","getDataDetail","e","TimeoutError","data","sendMessage","deleteOptions","logMessage","ServerSentEventsTransport","init_ServerSentEventsTransport","__esmMin","init_ILogger","init_ITransport","init_Utils","httpClient","accessToken","logger","options","url","transferFormat","__async","Arg","TransferFormat","LogLevel","resolve","reject","opened","eventSource","Platform","cookies","headers","name","value","getUserAgentHeader","__spreadValues","e","getDataDetail","error","data","sendMessage","WebSocketTransport","init_WebSocketTransport","__esmMin","init_HeaderNames","init_ILogger","init_ITransport","init_Utils","httpClient","accessTokenFactory","logger","logMessageContent","webSocketConstructor","headers","url","transferFormat","__async","Arg","TransferFormat","LogLevel","token","resolve","reject","webSocket","cookies","opened","Platform","name","value","getUserAgentHeader","HeaderNames","__spreadValues","_event","event","error","message","getDataDetail","data","transportMatches","requestedTransport","actualTransport","MAX_REDIRECTS","HttpConnection","TransportSendQueue","PromiseSource","init_HttpConnection","__esmMin","init_AccessTokenHttpClient","init_DefaultHttpClient","init_Errors","init_ILogger","init_ITransport","init_LongPollingTransport","init_ServerSentEventsTransport","init_Utils","init_WebSocketTransport","url","options","Arg","createLogger","webSocketModule","eventSourceModule","Platform","__require","requireFunc","AccessTokenHttpClient","DefaultHttpClient","transferFormat","__async","TransferFormat","LogLevel","message","AbortError","data","error","resolve","HttpTransportType","negotiateResponse","redirects","accessToken","LongPollingTransport","e","headers","name","value","getUserAgentHeader","negotiateUrl","response","__spreadValues","errorMessage","HttpError","FailedToNegotiateWithServerError","connectionToken","requestedTransferFormat","connectUrl","transportExceptions","transports","negotiate","endpoint","transportOrError","ex","FailedToStartTransportError","AggregateErrors","transport","WebSocketTransport","ServerSentEventsTransport","UnsupportedTransportError","DisabledTransportError","aTag","index","_TransportSendQueue","_transport","transportResult","arrayBuffers","totalLength","b","a","result","offset","item","reject","reason","JSON_HUB_PROTOCOL_NAME","JsonHubProtocol","init_JsonHubProtocol","__esmMin","init_IHubProtocol","init_ILogger","init_ITransport","init_Loggers","init_TextMessageFormat","TransferFormat","input","logger","NullLogger","messages","TextMessageFormat","hubMessages","message","parsedMessage","MessageType","LogLevel","value","errorMessage","parseLogLevel","name","mapping","LogLevelNameMapping","isLogger","logger","HubConnectionBuilder","init_HubConnectionBuilder","__esmMin","init_DefaultReconnectPolicy","init_HttpConnection","init_HubConnection","init_ILogger","init_JsonHubProtocol","init_Loggers","init_Utils","LogLevel","logging","Arg","logLevel","ConsoleLogger","url","transportTypeOrOptions","__spreadValues","__spreadProps","protocol","retryDelaysOrReconnectPolicy","DefaultReconnectPolicy","httpConnectionOptions","connection","HttpConnection","HubConnection","NullLogger","JsonHubProtocol","init_esm","__esmMin","init_HubConnection","init_HubConnectionBuilder","init_ILogger","ApplicationsMenuContentComponent_For_2_Conditional_4_Template","rf","ctx","ɵɵelementStart","ɵɵtext","ɵɵpipe","ɵɵelementEnd","application_r2","ɵɵnextContext","ɵɵadvance","ɵɵtextInterpolate","ɵɵpipeBind1","ApplicationsMenuContentComponent_For_2_Conditional_5_Template","ApplicationsMenuContentComponent_For_2_Template","_r1","ɵɵgetCurrentView","ɵɵlistener","ɵɵrestoreView","ctx_r2","ɵɵresetView","$event","ɵɵelement","ɵɵtemplate","tmp_10_0","ɵɵclassMap","ɵɵconditional","ApplicationsMenuComponent_Conditional_0_ng_template_4_Template","_r3","ctx_r1","dropDownMenuAnchor_r4","ɵɵreference","ɵɵproperty","ApplicationsMenuComponent_Conditional_0_Template","ɵɵelementContainer","ɵɵtemplateRefExtractor","dropDownMenu_r5","ɵɵpureFunction1","_c1","ApplicationsMenuTopbarComponent_ng_template_1_Template","ctx_r0","ɵɵclassProp","ApplicationsMenuUserAreaComponent_ng_template_1_Template","AlertBarComponent_Conditional_0_Conditional_1_Template","ɵɵtextInterpolate1","ɵɵpropertyInterpolate","ɵɵsanitizeUrl","AlertBarComponent_Conditional_0_Conditional_2_Template","ɵɵsanitizeHtml","AlertBarComponent_Conditional_0_Conditional_3_Template","tmp_2_0","ɵɵpureFunction3","_c2","AlertBarComponent_Conditional_0_Template","ContextPageComponent_For_1_Template","component_r1","ContextBarComponent_For_9_Template","page_r1","ɵ$index_16_r2","ɵɵpureFunction2","_c5","ContextBarComponent_Conditional_10_For_5_Template","_r5","ɵ$index_30_r6","_c6","ContextBarComponent_Conditional_10_Template","_r4","ɵɵrepeaterCreate","ɵɵrepeaterTrackByIdentity","ɵɵrepeater","DownloadsPanelComponent_For_2_Template","progressBar_r1","EnvironmentSelectorContentComponent_For_5_For_8_Template","tabItem_r5","tab_r3","tooltip_r6","ɵ$index_22_r7","ctx_r7","ɵ$index_7_r9","ɵɵstyleProp","ɵɵattributeInterpolate2","ɵɵpropertyInterpolate2","EnvironmentSelectorContentComponent_For_5_ForEmpty_9_Template","EnvironmentSelectorContentComponent_For_5_Template","ɵɵtwoWayListener","ɵɵtwoWayBindingSet","_forTrack0","_c8","ɵɵattributeInterpolate1","ɵɵtwoWayProperty","ɵɵpipeBind3","EnvironmentSelectorComponent_Conditional_0_Conditional_0_Template","_c9","EnvironmentSelectorComponent_Conditional_0_Conditional_1_ng_template_4_Template","EnvironmentSelectorComponent_Conditional_0_Conditional_1_Template","_r2","dropDownMenuDirective_r5","dropDownMenu_r6","_c10","EnvironmentSelectorComponent_Conditional_0_Template","EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_5_Template","openSelectorContextEvent_r2","openSelectorContextTooltip_r3","ctx_r3","EnvironmentSelectorTopbarComponent_ng_template_1_Conditional_6_Template","dropDownMenuOpen_r5","EnvironmentSelectorTopbarComponent_ng_template_1_Template","caption_r6","_c11","EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_0_Template","openSelectorContextEvent_r3","caption_r5","EnvironmentSelectorUserAreaComponent_ng_template_1_Conditional_1_Template","EnvironmentSelectorUserAreaComponent_ng_template_1_Template","AboutComponent_Conditional_7_Conditional_1_Template","AboutComponent_Conditional_7_Conditional_2_Template","AboutComponent_Conditional_7_Conditional_3_Template","AboutComponent_Conditional_7_Conditional_4_Template","AboutComponent_Conditional_7_Conditional_5_Template","AboutComponent_Conditional_7_Conditional_6_Template","AboutComponent_Conditional_7_Conditional_7_Template","AboutComponent_Conditional_7_Conditional_8_Template","AboutComponent_Conditional_7_Template","AboutComponent_Conditional_9_Template","SupportRequestComponent_Conditional_10_Template","_c13","ɵɵpureFunction0","_c14","SupportRequestComponent_Conditional_11_Template","SupportRequestComponent_Conditional_13_Template","SupportRequestComponent_Conditional_16_Template","_c15","BellComponent_Conditional_3_Template","_c16","CardComponent_Conditional_3_Template","CardComponent_Conditional_6_Template","CardComponent_Conditional_7_Template","CardComponent_Conditional_8_Template","PanelComponent_For_4_For_9_Template","card_r5","group_r3","cardTemplate_r6","_c19","PanelComponent_For_4_Template","ɵɵelementContainerStart","ɵɵelementContainerEnd","PanelComponent_ng_template_5_Template","_r7","card_r9","group_r10","PriNotificationsComponent_ng_template_2_Conditional_0_Template","PriNotificationsComponent_ng_template_2_Template","SearchComponent_Conditional_8_Template","SearchComponent_ng_template_9_For_5_Template","item_r5","ɵ$index_25_r6","ɵɵpropertyInterpolate1","SearchComponent_ng_template_9_ForEmpty_6_Template","ɵɵtextInterpolate2","SearchComponent_ng_template_9_Template","dropDownAnchor_r7","ɵɵpipeBind2","UserAreaComponent_Conditional_0_Conditional_0_Template","profileImageTemplate_r3","userAreaDropdownTemplate_r4","UserAreaComponent_Conditional_0_Conditional_1_Template","UserAreaComponent_Conditional_0_Template","UserAreaComponent_ng_template_2_Template","ɵɵstyleMap","UserAreaComponent_ng_template_4_Conditional_1_Template","_r6","_c12","UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_For_6_Template","_r8","item_r9","_c26","UserAreaComponent_ng_template_4_Conditional_2_Conditional_1_Template","_c25","UserAreaComponent_ng_template_4_Conditional_2_Conditional_2_Template","UserAreaComponent_ng_template_4_Conditional_2_Template","UserAreaComponent_ng_template_4_Conditional_3_Conditional_1_Template","_r10","UserAreaComponent_ng_template_4_Conditional_3_Conditional_2_Template","_r11","UserAreaComponent_ng_template_4_Conditional_3_Template","UserAreaComponent_ng_template_4_Conditional_4_Template","_r12","tmp_7_0","UserAreaComponent_ng_template_4_Conditional_5_Template","_r13","UserAreaComponent_ng_template_4_Conditional_6_For_8_Template","_r15","language_r16","UserAreaComponent_ng_template_4_Conditional_6_Template","_r14","UserAreaComponent_ng_template_4_Conditional_8_Template","_r17","UserAreaComponent_ng_template_4_Conditional_9_Template","_r18","UserAreaComponent_ng_template_4_Conditional_10_Template","_r19","UserAreaComponent_ng_template_4_For_12_Conditional_0_Template","_r20","item_r21","_c27","UserAreaComponent_ng_template_4_For_12_Template","UserAreaComponent_ng_template_4_Conditional_13_Template","_r22","UserAreaComponent_ng_template_4_Conditional_14_Template","_r23","UserAreaComponent_ng_template_4_Conditional_15_Template","_r24","UserAreaComponent_ng_template_4_Template","PriUpgradeComponent_Conditional_0_Case_3_Template","PriUpgradeComponent_Conditional_0_Case_4_Template","PriUpgradeComponent_Conditional_0_Case_5_Template","PriUpgradeComponent_Conditional_0_Template","tmp_1_0","RightPanelComponent_Conditional_7_Template","RightPanelComponent_Conditional_9_Template","MenuComponent_For_1_ng_container_0_Template","MenuComponent_For_1_Template","menuItem_r1","menuItemTmpl_r2","_c28","MenuComponent_ng_template_2_Conditional_0_ng_container_2_Template","MenuComponent_ng_template_2_Conditional_0_Template","menuItem_r4","noIcons_r5","ctx_r5","menuItemContentTemplate_r7","ɵɵattribute","_c29","MenuComponent_ng_template_2_Conditional_2_ng_container_2_Template","MenuComponent_ng_template_2_Conditional_2_Template","MenuComponent_ng_template_2_Conditional_3_ng_container_3_Template","MenuComponent_ng_template_2_Conditional_3_Template","MenuComponent_ng_template_2_Template","MenuComponent_ng_template_4_Conditional_5_Template","menuItem_r9","MenuComponent_ng_template_4_Conditional_9_Template","MenuComponent_ng_template_4_Conditional_10_For_2_ng_container_0_Template","MenuComponent_ng_template_4_Conditional_10_For_2_Template","child_r11","_c30","MenuComponent_ng_template_4_Conditional_10_Template","MenuComponent_ng_template_4_Template","menuItemContainer_r10","noIcons_r12","SidebarItemComponent_Conditional_0_Template","sidebarItemContainerTemplate_r2","SidebarItemComponent_Conditional_1_Template","SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_9_Template","child_r6","SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_10_Template","SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Conditional_11_Template","SidebarItemComponent_ng_template_2_Conditional_8_ng_template_0_Template","routerLinkElement_r7","selected_r9","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_For_5_Template","child_r10","childTemplate_r11","_c34","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_For_1_Template","groupedChildren_r12","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_3_Template","_forTrack1","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_For_1_Template","child_r13","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_4_Template","SidebarItemComponent_ng_template_2_Conditional_8_Conditional_5_Template","ɵɵpureFunction4","_c35","SidebarItemComponent_ng_template_2_Conditional_8_Template","SidebarItemComponent_ng_template_2_Template","sidebarItemContainer_r4","active_r15","selected_r16","SidebarComponent_Conditional_6_Template","SidebarComponent_Conditional_7_Template","SidebarComponent_Conditional_8_Template","SidebarComponent_Conditional_11_Template","SidebarComponent_Conditional_12_Template","CfsChatbotIframeComponent_ng_template_0_Conditional_0_Template","CfsChatbotIframeComponent_ng_template_0_Template","TopbarComponent_Conditional_3_Template","TopbarComponent_Conditional_5_Template","TopbarComponent_Conditional_6_Template","TopbarComponent_Conditional_7_Template","_c39","TopbarComponent_Conditional_9_Template","TopbarComponent_Conditional_10_Template","TopbarComponent_Conditional_11_Template","TopbarComponent_Conditional_12_Template","TopbarComponent_Conditional_13_Template","_c40","TopbarComponent_Conditional_14_Template","TopbarComponent_Conditional_15_Template","pnsComponent_r5","TopbarComponent_Conditional_16_Template","ViewTitleComponent_Conditional_0_Conditional_5_Template","_c42","ViewTitleComponent_Conditional_0_Conditional_8_Template","ViewTitleComponent_Conditional_0_Conditional_9_Template","ViewTitleComponent_Conditional_0_Conditional_10_Template","ViewTitleComponent_Conditional_0_Template","_c41","LayoutRootComponent_Conditional_0_Conditional_4_Template","LayoutRootComponent_Conditional_0_Conditional_10_Template","_c46","LayoutRootComponent_Conditional_0_Template","_c44","_c45","LayoutRootComponent_Conditional_1_Template","ModalWrapperComponent_Conditional_1_Conditional_4_Template","_c48","ModalWrapperComponent_Conditional_1_Template","PanelRouterInjectorComponent_ng_template_0_Template","_c0","_c3","_c4","_c7","_c17","_c18","_c20","_c21","_c22","_c23","_c24","_c31","_c32","_c33","_c36","_c37","_c38","_c43","_c47","_c49","DefaultApplicationsProviderService","APPLICATIONS_PROVIDER_TOKEN","ApplicationsMenuContentComponent","ApplicationsMenuComponent","ApplicationsMenuTopbarComponent","UserAreaDropdownButtonComponent","ApplicationsMenuUserAreaComponent","ShellConfigurationService","ZendeskConfig","ZopimService","AlertBarComponent","SHELL_CONTEXT_BAR_SHOW_COMPONENT","SHELL_CONTEXT_BAR_OPEN","SHELL_CONTEXT_BAR_CLOSE","SHELL_CONTEXT_BAR_HIGHLIGHT","SHELL_CONTEXT_BAR_ONLY_CLOSE","SHELL_CONTEXT_BAR_TOGGLE","SHELL_CONTEXT_PROPERTY_CHANGED","SHELL_CLOSE_SIDEBAR_STATE","SHELL_THEME_CHANGED","ContextComponentContainerComponent","ContextPageComponent","ContextBarComponent","DownloadsPanelComponent","CompaniesTabSelectorService","SubscriptionsProviderService","SUBSCRIPTIONS_PROVIDER_TOKEN","SubscriptionsTabSelectorService","DefaultSelectorProviderService","SELECTOR_PROVIDER_TOKEN","SidebarItemType","MenuDefinition","RouteAccessOrigin","SidebarService","SIDEBAR_PROVIDER_TOKEN","SidebarDefaultActionsProviderService","SIDEBAR_DEFAULT_ACTIONS_PROVIDER_TOKEN","SearchProvider","SearchService","SidebarDraftsProviderService","SIDEBAR_DRAFTS_PROVIDER_TOKEN","SidebarFavoritesProviderService","SIDEBAR_FAVORITES_PROVIDER_TOKEN","SidebarMenuItemsProviderService","SIDEBAR_MENU_ITEMS_PROVIDER_TOKEN","NavigationHistory","SidebarNavigationHistoryProviderService","SIDEBAR_NAVIGATION_HISTORY_PROVIDER_TOKEN","SidebarQuickActionsProviderService","SIDEBAR_QUICK_ACTIONS_PROVIDER_TOKEN","FilterPipe","IsExternalUriPipe","SortByPropertyPipe","TreatUriPipe","UriParamsPipe","EnvironmentSelectorContentComponent","EnvironmentSelectorComponent","EnvironmentSelectorTopbarComponent","EnvironmentSelectorUserAreaComponent","AboutComponent","SupportRequestService","SupportRequestComponent","CardFiltersEnum","SignalRStateEnum","NotificationTypeEnum","TabsGroupsModel","BellComponent","CardComponent","SignalRHelper","SignalRService","PanelComponent","PriNotificationsComponent","SidebarNavigationDirection","SanitizeHtmlPipe","SearchComponent","UserAreaComponent","PriUpgradeComponent","primaveraI18nModule","primaveraServicesModule","componentsModule","ShellModule","RightPanelComponent","MenuKeyboardNavigationDirective","MenuComponent","SidebarItemComponent","DefaultActionsDirective","DraftsDirective","NavigationHistoryDirective","QuickActionsDirective","SidebarComponent","ChatbotIframeEventType","CfsChatbotIframeComponent","CfsChatbotIntegrationService","CfsChatbotWrapperComponent","TopbarComponent","ViewTitleComponent","LayoutRootComponent","ModalWrapperComponent","ModalRouterInjectorComponent","PanelRouterInjectorComponent","DefaultAction","DefaultActionElevation","MenuDefinitionElevation","MenuItem","MenuItemElevation","SidebarElevationService","SidebarMenuItemsProviderElevationService","addElevationFwShellProviders","QuickAction","init_polygon_shell","__esmMin","init_common","init_core","init_tooltip","init_polygon_components","init_polygon_localization","init_polygon_services","init_esm","init_rxjs_interop","init_router","init_operators","init_a11y","init_scrolling","init_forms","init_icon","init_tabs","init_ngx_bootstrap_popover","init_animations","init_http","init_platform_browser","$index","$item","a0","a1","a2","a3","inject","SettingsService","__async","__ngFactoryType__","ɵɵdefineInjectable","InjectionToken","input","output","WildcardService","application","take","url","event","ɵɵdefineComponent","ɵɵStandaloneFeature","PrimaveraI18nModule","PriI18nPipe","KeyboardNavigationGroupDirective","KeyboardNavigationDirective","DropDownMenuTriggers","signal","computed","GuidService","viewChild","DeviceService","OrientationEnum","EventEmitter","AppContextService","serverApplications","applications","apps","subscriptionClaims","listAllowedApps","app","count","tmpListAllowedApps","claim","ɵɵviewQuerySignal","ɵɵviewQuery","DropDownMenuDirective","ɵɵqueryAdvance","_t","ɵɵqueryRefresh","ɵɵloadQuery","NgClass","NgTemplateOutlet","MatTooltip","anchorTemplate_r2","TooltipHoverDirective","instance","ReplaySubject","settings","firstValueFrom","zE","appContextService","i18nService","zendeskConfig","windowService","amsService","accountUrl","showingAlerts","vOffset","flag","config","resolve","timeout","n","o","d","a","r","args","s","el","ɵɵinject","I18nService","WindowService","AmsService","appContext","componentFactoryResolver","broadcastService","data","component","factory","ɵɵdirectiveInject","ComponentFactoryResolver$1","BroadcastService","ViewContainerRef","activatedRoute","routeHelperService","storageService","components","info","changes","activator","index","totalPages","i","page","rightPageIndex","leftPageIndex","componentId","componentBinding","propertyInfo","entityProperty","componentsList","newComponentsList","typedComponent","cc","changedProperties","property","map","value","_obj","props","newProps","mappingProperty","propsData","propertiesList","map1","propertyValue","propertyName","map2","prop","activatorPageIndex","returnValue","affectedBindings","bindingId","binding","isBindingReady","dataCacheElement","ActivatedRoute","RouteHelperService","StorageService","uid","progressBar","item","PriDownloadProgressBarComponent","trigger","transition","style","animate","BehaviorSubject","DestroyRef","MessagesService","CompanyDependentService","UserSettingsService","companiesSourceUri","takeUntilDestroyed","lock","Observable","obs","companies","items","company","MessageInfo","MessageType","companyChangedMessage","selectedCompany","pinnedCompanies","userCompanies","pinDate","c","userSettings","envItem","settingDefinition","HttpClient","subscriptionsSourceUri","uri","result","subscriptions","subscriptionInfo","subscription","shellOptions","of","pinnedSubscriptions","subscriptionRequest","forkJoin","allSubscriptions","subscriptionItem","numberOfCompanies","segments","res","toObservable","injector","Injector","menuDefinition","Subject","Router","CacheHelperService","RoleService","ErrorsService","filter","loading","cacheKey","menu","defaultAction","OutletEnum","element","switchMap","error","provider","existing","p","searchTerm","subject","providersCount","DraftModelService","ExceptionHandlerService","sidebar","draftItemsUri","handledUri","response","id","documentId","startingFrom","minDate","until","maxDate","customUri","searchResult","deepFindResult","m","customMenuItems","customMenuItem","indexOnRoot","globalMenuItem","rootMenuItem","_err","customMenu","searchOn","foundOnIndex","child","childMenuItem","parentName","it","snippet","subMenus","breadcrumbs","deepFindResults","initialValue","ViewTitleService","NavigationEnd","urlAfterRedirects","navigationMetadata","distinctUntilKeyChanged","history","b","pathname","record","firstLoadedPageUrl","takeUntil","_0","recordToUpdate","updatedHistory","__spreadProps","__spreadValues","title","isFirstLoadedPage","addedRecord","currentHistory","recordedDate","fullUrl","newHistory","sortedNewHistory","historyMetadata","lastStoredViewTitleMetadata","outlet","newRecord","recordWithSameTitle","indexOfRecordWithSameTitle","settingKey","quickActions","actions","reject","err","searchText","searchProperties","propValue","ɵɵdefinePipe","URL_REGEXP","order","aValue","bValue","comparison","tab","activeElement","dropdownOptionElements","tabContentElements","goToIndex","tabHeaderElements","assignedPins","sub","pinClass","FormsModule","DefaultValueAccessor","NgControlStatus","NgModel","FromComputedStylePipe","ToFixedPipe","TabGroupComponent","TabComponent","tabs","oldTabsData","tabsData","tabId","primaryText","secondaryText","anchorTemplate_r7","MatTooltipModule","anchorTemplate_r6","settingsService","exceptionHandlerService","ButtonTypeEnum","ButtonColorEnum","LoadingSpinnerComponent","ButtonComponent","AsyncPipe","httpClient","message","sendObj","supportRequestService","messagesService","FormGroup","FormControl","Validators","ɵNgNoValidate","NgControlStatusGroup","RequiredValidator","MaxLengthValidator","FormGroupDirective","FormControlName","CircleCountComponent","WysiwygComponent","HubConnectionState","card","IdentityService","opacity","DatesUtil","minutes","DateFieldViewPipe","CommonModule","NgStyle","InnerHTMLDirective","sequence","values","identityService","contextData","signalRUrl","groups","disposed","ex","HubConnectionBuilder","LogLevel","connectionId","notification","deviceService","changeDetectorRef","selectedTab","cardGroup","cardGroups","interval","cards","date","level","ChangeDetectorRef","SlicePipe","ComponentsModule","TabsComponent","model","RightPanelService","state","time","bodyID","productName","accountKey","subscriptionKey","roleKey","userId","signalRGroups","disposedItems","body","messages","key","messagesByKey","ElementRef","ɵɵProvidersFeature","PrimaveraServicesModule","MatTabsModule","sanitizer","DomSanitizer","HotkeysService","searchValue","elemFocus","elem","inputElem","hotkeysDefinitions","queryParams","searchTemplate_r8","ThemesEnum","ImageStyle","EnvironmentSettings","ThemeService","ModalService","HelpPageService","ShellStateService","UserPilotService","KeyboardNavigationService","userSubscriptionRoles","cultures","userIdsCulture","userIdsLanguage","culture","languages","_blank","focusOrigin","theme","language","_","menuOption","claimsToCheck","helpPageItems","ɵɵresolveWindow","ImageComponent","upgradeApplicationService","UpgradeStatusEnum","LoadingSpinnerTypeEnum","upgrade","UpgradeApplicationService","CegidLogoSvgComponent","ErrorSvgComponent","SuccessSvgComponent","ɵɵdefineNgModule","ɵɵdefineInjector","ScrollDispatcher","ReactiveFormsModule","PopoverModule","RouterModule","MatIconModule","ScrollingModule","A11yModule","rightPanelService","elementRef","ɵɵresolveDocument","activeElementAnchor","activeMenuItem","nextElement","previousElement","isActive","hasChildMenuItems","isActivatable","hasActivatableParent","focusableCollapsableElement","parentAnchorMetadata","navigationDirection","menuItems","menuItem","selectedMenu","elementReference","menuItemId","direction","path","parentElementId","previousMenuItem","ɵɵdefineDirective","currentUrl","currentValue","includeSelf","searchingIn","menuItemPath","toActivate","entryMenu","parents","found","ɵMenuComponent_BaseFactory","ɵɵgetInheritedFactory","providePrimaveraLocalization","ɵɵInheritDefinitionFeature","RouterLink","IncludesPipe","viewChildren","group","LoadingSpinnerSizeEnum","FieldsSizeEnum","hasNoChildToFocus","viewAllButtonFocused","selectableItemFocused","activatableItemFocused","focusableChild","lastChild","selectableItems","selectableItem","lastChildElement","currentElement","elementToFocus","indexOnChildren","childToFocus","focusedElement","isFocusedOnChild","UpperCasePipe","ProductInitialization","shellOptions$","defaultUri","target","source","from","defaultActions","skip","children","draftItems","caption","minimized","options","isFocusedByKeyboard","navigationEvent","indexOnSidebarItems","sidebarItem","currentItem","currentItemIndex","nextSibling","currentFocusedElement","hasTopChildren","isDefaultActionsVisible","isQuickActionsVisible","isDraftsVisible","hasTopItems","pairwise","old","current","topbar","ResizeObserverDirective","TemplateRef","metadata","messageInfo","DomService","loaded","componentRef","templateRef","errorMessage","chatbotSettings","sessionID","token","interceptorsOptions","FrameworkInterceptors","HttpContext","FrameworkInterceptorsOptions","ɵɵnamespaceSVG","pnsExternalUri","productBrand","storageKey","Lock","EditionHistoryEventService","ApplicationRef","titleDefinition","formattedTitleDefinition","events","viewTitleMetadata","titles","RecordSelectorComponent","PriI18nDirective","DropDownEditionHistoryDirective","NgZone","UserEngagementService","AppInitializerCustomService","isElevation","callBackValue","upgradeComponentRef","overlay","downloadComponentData","downloadComponentRef","total","onComplete","onAllComplete","rightPanelComponentData","rightPanelComponentRef","visible","startBehavior","isSidebarCollapsedUserPreference","menuSettingsCollapsed","sidebarCollapsedUserSetting","RouterOutlet","ɵɵprojectionDef","ɵɵprojection","CloseButtonComponent","definition","outletActivatedRouteData","routeModalSize","currentRoute","actionsWrapper","__superGet","allowedDefaultActions","allowedMenuItems","claimString","splitClaims","parentMenuItemsToRemove","childMenuItems","allowedMenuItem","menuToRemove","ɵSidebarElevationService_BaseFactory","deepClone","UserSettingsElevationService","quickAction"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26]}