{"version":3,"sources":["node_modules/@ng-idle/core/fesm2022/ng-idle-core.mjs","src/app/notification/notification.component.ts","src/app/notification/notification.component.html","src/app/user/switchAccount/switch-account.component.ts","src/app/user/switchAccount/switch-account.component.html","node_modules/@ng-idle/keepalive/fesm2022/ng-idle-keepalive.mjs","src/app/navigation/navigation.component.ts","src/app/navigation/navigation-header.component.html","src/app/navigation/navigation-idle.component.html","src/app/navigation/navigation-footer.component.html","src/app/navigation/navigation-idle-warning.component.html","src/app/navigation/navigation-error.component.html"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { Injectable, EventEmitter, PLATFORM_ID, Optional, Inject, NgModule } from '@angular/core';\nimport { isPlatformServer } from '@angular/common';\nimport { Subscription, fromEvent, merge } from 'rxjs';\nimport { filter, throttleTime } from 'rxjs/operators';\n\n/*\n * A class for managing an interrupt from an interrupt source.\n */\nclass Interrupt {\n constructor(source, options) {\n this.source = source;\n if (source.initialize) {\n source.initialize(options);\n }\n }\n /*\n * Subscribes to the interrupt using the specified function.\n * @param fn - The subscription function.\n */\n subscribe(fn) {\n this.sub = this.source.onInterrupt.subscribe(fn);\n }\n /*\n * Unsubscribes the interrupt.\n */\n unsubscribe() {\n this.sub.unsubscribe();\n this.sub = null;\n }\n /*\n * Keeps the subscription but resumes interrupt events.\n */\n resume() {\n this.source.attach();\n }\n /*\n * Keeps the subscription but pauses interrupt events.\n */\n pause() {\n this.source.detach();\n }\n}\n\n/*\n * Represents a base class for types that provide expiry detection for the Idle service.\n */\nclass IdleExpiry {\n constructor() {\n this.idValue = new Date();\n this.idlingValue = false;\n }\n /*\n * Gets or sets a unique ID for the window\n * @param id - The id.\n * @return The current id.\n */\n id(value) {\n if (value !== void 0) {\n if (!value) {\n throw new Error('A value must be specified for the ID.');\n }\n this.idValue = value;\n }\n return this.idValue;\n }\n /*\n * Gets or sets the idling value.\n * @param value - The value to set.\n * @return The idling value.\n */\n idling(value) {\n if (value !== void 0) {\n this.idlingValue = value;\n }\n return this.idlingValue;\n }\n /*\n * Returns the current Date.\n * @return The current Date.\n */\n now() {\n /* istanbul ignore next */\n return new Date();\n }\n /*\n * Returns whether or not it is expired.\n * @return True if expired; otherwise, false.\n */\n isExpired() {\n const expiry = this.last();\n return expiry != null && expiry <= this.now();\n }\n}\n\n/*\n * Represents an alternative storage for browser that doesn't support localstorage. (i.e. Safari in\n * private mode)\n * @implements Storage\n */\nclass AlternativeStorage {\n constructor() {\n this.storageMap = {};\n }\n /*\n * Returns an integer representing the number of data items stored in the storageMap object.\n */\n get length() {\n return Object.keys(this.storageMap).length;\n }\n /*\n * Remove all keys out of the storage.\n */\n clear() {\n this.storageMap = {};\n }\n /*\n * Return the key's value\n *\n * @param key - name of the key to retrieve the value of.\n * @return The key's value\n */\n getItem(key) {\n if (typeof this.storageMap[key] !== 'undefined') {\n return this.storageMap[key];\n }\n return null;\n }\n /*\n * Return the nth key in the storage\n *\n * @param index - the number of the key you want to get the name of.\n * @return The name of the key.\n */\n key(index) {\n return Object.keys(this.storageMap)[index] || null;\n }\n /*\n * Remove a key from the storage.\n *\n * @param key - the name of the key you want to remove.\n */\n removeItem(key) {\n this.storageMap[key] = undefined;\n }\n /*\n * Add a key to the storage, or update a key's value if it already exists.\n *\n * @param key - the name of the key.\n * @param value - the value you want to give to the key.\n */\n setItem(key, value) {\n this.storageMap[key] = value;\n }\n}\n\n/*\n * Represents a localStorage store.\n */\nlet LocalStorage = /*#__PURE__*/(() => {\n class LocalStorage {\n constructor() {\n this.storage = this.getStorage();\n }\n /*\n * Safari, in Private Browsing Mode, looks like it supports localStorage but all calls to setItem\n * throw QuotaExceededError. We're going to detect this and just silently drop any calls to\n * setItem\n * to avoid the entire page breaking, without having to do a check at each usage of Storage.\n */\n getStorage() {\n try {\n const storage = localStorage;\n storage.setItem('ng2IdleStorage', '');\n storage.removeItem('ng2IdleStorage');\n return storage;\n } catch (err) {\n return new AlternativeStorage();\n }\n }\n /*\n * Gets an item in the storage.\n *\n * @param value - The value to get.\n * @return The current value.\n */\n getItem(key) {\n return this.storage.getItem('ng2Idle.' + key);\n }\n /*\n * Removes an item in the storage.\n *\n * @param value - The value to remove.\n */\n removeItem(key) {\n this.storage.removeItem('ng2Idle.' + key);\n }\n /*\n * Sets an item in the storage.\n *\n * @param key - The key to set the value.\n * @param value - The value to set to the key.\n */\n setItem(key, data) {\n this.storage.setItem('ng2Idle.' + key, data);\n }\n /*\n * Represents the storage, commonly use for testing purposes.\n *\n * @param key - The key to set the value.\n * @param value - The value to set to the key.\n */\n _wrapped() {\n return this.storage;\n }\n static {\n this.ɵfac = function LocalStorage_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LocalStorage)();\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: LocalStorage,\n factory: LocalStorage.ɵfac\n });\n }\n }\n return LocalStorage;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\n * Represents a localStorage store of expiry values.\n * @extends IdleExpiry\n */\nlet LocalStorageExpiry = /*#__PURE__*/(() => {\n class LocalStorageExpiry extends IdleExpiry {\n constructor(localStorage) {\n super();\n this.localStorage = localStorage;\n this.idleName = 'main';\n }\n /*\n * Gets or sets the last expiry date in localStorage.\n * If localStorage doesn't work correctly (i.e. Safari in private mode), we store the expiry value in memory.\n * @param value - The expiry value to set; omit to only return the value.\n * @return The current expiry value.\n */\n last(value) {\n if (value !== void 0) {\n this.setExpiry(value);\n }\n return this.getExpiry();\n }\n idling(value) {\n if (value !== void 0) {\n this.setIdling(value);\n }\n return this.getIdling();\n }\n /*\n * Gets the idle name.\n * @return The name of the idle.\n */\n getIdleName() {\n return this.idleName;\n }\n /*\n * Sets the idle name.\n * @param The name of the idle.\n */\n setIdleName(key) {\n if (key) {\n this.idleName = key;\n }\n }\n getExpiry() {\n const expiry = this.localStorage.getItem(this.idleName + '.expiry');\n if (expiry) {\n return new Date(parseInt(expiry, 10));\n } else {\n return null;\n }\n }\n setExpiry(value) {\n if (value) {\n this.localStorage.setItem(this.idleName + '.expiry', value.getTime().toString());\n } else {\n this.localStorage.removeItem(this.idleName + '.expiry');\n }\n }\n getIdling() {\n const idling = this.localStorage.getItem(this.idleName + '.idling');\n if (idling) {\n return idling === 'true';\n } else {\n return false;\n }\n }\n setIdling(value) {\n if (value) {\n this.localStorage.setItem(this.idleName + '.idling', value.toString());\n } else {\n this.localStorage.setItem(this.idleName + '.idling', 'false');\n }\n }\n static {\n this.ɵfac = function LocalStorageExpiry_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || LocalStorageExpiry)(i0.ɵɵinject(LocalStorage));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: LocalStorageExpiry,\n factory: LocalStorageExpiry.ɵfac\n });\n }\n }\n return LocalStorageExpiry;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nclass KeepaliveSvc {}\n\n/*\n * Indicates the desired auto resume behavior.\n */\nvar AutoResume = /*#__PURE__*/function (AutoResume) {\n /*\n * Auto resume functionality will be disabled.\n */\n AutoResume[AutoResume[\"disabled\"] = 0] = \"disabled\";\n /*\n * Can resume automatically even if they are idle.\n */\n AutoResume[AutoResume[\"idle\"] = 1] = \"idle\";\n /*\n * Can only resume automatically if they are not yet idle.\n */\n AutoResume[AutoResume[\"notIdle\"] = 2] = \"notIdle\";\n return AutoResume;\n}(AutoResume || {});\n/**\n * A service for detecting and responding to user idleness.\n */\nlet Idle = /*#__PURE__*/(() => {\n class Idle {\n constructor(expiry, zone, keepaliveSvc, platformId) {\n this.expiry = expiry;\n this.zone = zone;\n this.platformId = platformId;\n this.idle = 20 * 60; // in seconds\n this.timeoutVal = 30; // in seconds\n this.autoResume = AutoResume.idle;\n this.interrupts = new Array();\n this.running = false;\n this.keepaliveEnabled = false;\n this.onIdleStart = new EventEmitter();\n this.onIdleEnd = new EventEmitter();\n this.onTimeoutWarning = new EventEmitter();\n this.onTimeout = new EventEmitter();\n this.onInterrupt = new EventEmitter();\n if (keepaliveSvc) {\n this.keepaliveSvc = keepaliveSvc;\n this.keepaliveEnabled = true;\n }\n this.setIdling(false);\n }\n /*\n * Sets the idle name for localStorage.\n * Important to set if multiple instances of Idle with LocalStorageExpiry\n * @param The name of the idle.\n */\n setIdleName(key) {\n if (this.expiry instanceof LocalStorageExpiry) {\n this.expiry.setIdleName(key);\n } else {\n throw new Error('Cannot set expiry key name because no LocalStorageExpiry has been provided.');\n }\n }\n /*\n * Returns whether or not keepalive integration is enabled.\n * @return True if integration is enabled; otherwise, false.\n */\n getKeepaliveEnabled() {\n return this.keepaliveEnabled;\n }\n /*\n * Sets and returns whether or not keepalive integration is enabled.\n * @param True if the integration is enabled; otherwise, false.\n * @return The current value.\n */\n setKeepaliveEnabled(value) {\n if (!this.keepaliveSvc) {\n throw new Error('Cannot enable keepalive integration because no KeepaliveSvc has been provided.');\n }\n return this.keepaliveEnabled = value;\n }\n /*\n * Returns the current timeout value.\n * @return The timeout value in seconds.\n */\n getTimeout() {\n return this.timeoutVal;\n }\n /*\n * Sets the timeout value.\n * @param seconds - The timeout value in seconds. 0 or false to disable timeout feature.\n * @return The current value. If disabled, the value will be 0.\n */\n setTimeout(seconds) {\n if (seconds === false) {\n this.timeoutVal = 0;\n } else if (typeof seconds === 'number' && seconds >= 0) {\n this.timeoutVal = seconds;\n } else {\n throw new Error(\"'seconds' can only be 'false' or a positive number.\");\n }\n return this.timeoutVal;\n }\n /*\n * Returns the current idle value.\n * @return The idle value in seconds.\n */\n getIdle() {\n return this.idle;\n }\n /*\n * Sets the idle value.\n * @param seconds - The idle value in seconds.\n * @return The idle value in seconds.\n */\n setIdle(seconds) {\n if (seconds <= 0) {\n throw new Error(\"'seconds' must be greater zero\");\n }\n return this.idle = seconds;\n }\n /*\n * Returns the current autoresume value.\n * @return The current value.\n */\n getAutoResume() {\n return this.autoResume;\n }\n setAutoResume(value) {\n return this.autoResume = value;\n }\n /*\n * Sets interrupts from the specified sources.\n * @param sources - Interrupt sources.\n * @return The resulting interrupts.\n */\n setInterrupts(sources) {\n this.clearInterrupts();\n const self = this;\n for (const source of sources) {\n const options = {\n platformId: this.platformId\n };\n const sub = new Interrupt(source, options);\n sub.subscribe(args => {\n self.interrupt(args.force, args.innerArgs);\n });\n this.interrupts.push(sub);\n }\n return this.interrupts;\n }\n /*\n * Returns the current interrupts.\n * @return The current interrupts.\n */\n getInterrupts() {\n return this.interrupts;\n }\n /*\n * Pauses, unsubscribes, and clears the current interrupt subscriptions.\n */\n clearInterrupts() {\n for (const sub of this.interrupts) {\n sub.pause();\n sub.unsubscribe();\n }\n this.interrupts.length = 0;\n }\n /*\n * Returns whether or not the service is running i.e. watching for idleness.\n * @return True if service is watching; otherwise, false.\n */\n isRunning() {\n return this.running;\n }\n /*\n * Returns whether or not the user is considered idle.\n * @return True if the user is in the idle state; otherwise, false.\n */\n isIdling() {\n return this.idling;\n }\n /*\n * Starts watching for inactivity.\n */\n watch(skipExpiry) {\n this.safeClearInterval('idleHandle');\n this.safeClearInterval('timeoutHandle');\n const timeout = !this.timeoutVal ? 0 : this.timeoutVal;\n if (!skipExpiry) {\n const value = new Date(this.expiry.now().getTime() + (this.idle + timeout) * 1000);\n this.expiry.last(value);\n }\n if (this.idling) {\n this.toggleState();\n }\n if (!this.running) {\n this.startKeepalive();\n this.toggleInterrupts(true);\n }\n this.running = true;\n const watchFn = () => {\n this.zone.run(() => {\n const diff = this.getExpiryDiff(timeout);\n if (diff > 0) {\n this.safeClearInterval('idleHandle');\n this.setIdleIntervalOutsideOfZone(watchFn, 1000);\n } else {\n this.toggleState();\n }\n });\n };\n this.setIdleIntervalOutsideOfZone(watchFn, 1000);\n }\n /*\n * Allows protractor tests to call waitForAngular without hanging\n */\n setIdleIntervalOutsideOfZone(watchFn, frequency) {\n this.zone.runOutsideAngular(() => {\n this.idleHandle = setInterval(watchFn, frequency);\n });\n }\n /*\n * Stops watching for inactivity.\n */\n stop() {\n this.stopKeepalive();\n this.toggleInterrupts(false);\n this.safeClearInterval('idleHandle');\n this.safeClearInterval('timeoutHandle');\n this.setIdling(false);\n this.running = false;\n this.expiry.last(null);\n }\n /*\n * Forces a timeout event and state.\n */\n timeout() {\n this.stopKeepalive();\n this.toggleInterrupts(false);\n this.safeClearInterval('idleHandle');\n this.safeClearInterval('timeoutHandle');\n this.setIdling(true);\n this.running = false;\n this.countdown = 0;\n this.onTimeout.emit(null);\n }\n /*\n * Signals that user activity has occurred.\n * @param force - Forces watch to be called, unless they are timed out.\n * @param eventArgs - Optional source event arguments.\n */\n interrupt(force, eventArgs) {\n if (!this.running) {\n return;\n }\n if (this.timeoutVal && this.expiry.isExpired()) {\n this.timeout();\n return;\n }\n this.onInterrupt.emit(eventArgs);\n if (force === true || this.autoResume === AutoResume.idle || this.autoResume === AutoResume.notIdle && !this.expiry.idling()) {\n this.watch(force);\n }\n }\n setIdling(value) {\n this.idling = value;\n this.expiry.idling(value);\n }\n toggleState() {\n this.setIdling(!this.idling);\n if (this.idling) {\n this.onIdleStart.emit(null);\n this.stopKeepalive();\n if (this.timeoutVal > 0) {\n this.countdown = this.timeoutVal;\n this.doCountdown();\n this.setTimeoutIntervalOutsideZone(() => {\n this.doCountdownInZone();\n }, 1000);\n }\n } else {\n this.toggleInterrupts(true);\n this.onIdleEnd.emit(null);\n this.startKeepalive();\n }\n this.safeClearInterval('idleHandle');\n }\n setTimeoutIntervalOutsideZone(intervalFn, frequency) {\n this.zone.runOutsideAngular(() => {\n this.timeoutHandle = setInterval(() => {\n intervalFn();\n }, frequency);\n });\n }\n toggleInterrupts(resume) {\n for (const interrupt of this.interrupts) {\n if (resume) {\n interrupt.resume();\n } else {\n interrupt.pause();\n }\n }\n }\n getExpiryDiff(timeout) {\n const now = this.expiry.now();\n const last = this.expiry.last() || now;\n return last.getTime() - now.getTime() - timeout * 1000;\n }\n doCountdownInZone() {\n this.zone.run(() => {\n this.doCountdown();\n });\n }\n doCountdown() {\n const diff = this.getExpiryDiff(this.timeoutVal);\n if (diff > 0) {\n this.safeClearInterval('timeoutHandle');\n this.interrupt(true);\n return;\n }\n if (!this.idling) {\n return;\n }\n if (this.countdown <= 0) {\n this.timeout();\n return;\n }\n this.onTimeoutWarning.emit(this.countdown);\n const countdownMs = (this.timeoutVal - 1) * 1000 + diff;\n this.countdown = Math.round(countdownMs / 1000);\n }\n safeClearInterval(handleName) {\n const handle = this[handleName];\n if (handle !== null && typeof handle !== 'undefined') {\n clearInterval(this[handleName]);\n this[handleName] = null;\n }\n }\n startKeepalive() {\n if (!this.keepaliveSvc || !this.keepaliveEnabled) {\n return;\n }\n if (this.running) {\n this.keepaliveSvc.ping();\n }\n this.keepaliveSvc.start();\n }\n stopKeepalive() {\n if (!this.keepaliveSvc || !this.keepaliveEnabled) {\n return;\n }\n this.keepaliveSvc.stop();\n }\n /*\n * Called by Angular when destroying the instance.\n */\n ngOnDestroy() {\n this.stop();\n this.clearInterrupts();\n }\n static {\n this.ɵfac = function Idle_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Idle)(i0.ɵɵinject(IdleExpiry), i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeepaliveSvc, 8), i0.ɵɵinject(PLATFORM_ID, 8));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Idle,\n factory: Idle.ɵfac\n });\n }\n }\n return Idle;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\n * A class for expressing arguments to interrupt events.\n */\nclass InterruptArgs {\n constructor(source, innerArgs, force = false) {\n this.source = source;\n this.innerArgs = innerArgs;\n this.force = force;\n }\n}\n\n/*\n * A base for classes that act as a source for interrupts.\n */\nclass InterruptSource {\n constructor(attachFn, detachFn) {\n this.attachFn = attachFn;\n this.detachFn = detachFn;\n this.isAttached = false;\n this.onInterrupt = new EventEmitter();\n }\n /*\n * Attaches to the specified events on the specified source.\n */\n attach() {\n // If the current zone is the 'angular' zone (a.k.a. NgZone) then re-enter this method in its parent zone\n // The parent zone is usually the '' zone but it can also be 'long-stack-trace-zone' in debug mode\n // In tests, the current zone is typically a 'ProxyZone' created by async/fakeAsync (from @angular/core/testing)\n if (Zone.current.get('isAngularZone') === true) {\n Zone.current.parent.run(() => this.attach());\n return;\n }\n if (!this.isAttached && this.attachFn) {\n this.attachFn(this);\n }\n this.isAttached = true;\n }\n /*\n * Detaches from the specified events on the specified source.\n */\n detach() {\n if (this.isAttached && this.detachFn) {\n this.detachFn(this);\n }\n this.isAttached = false;\n }\n}\nconst defaultThrottleDelay = 500;\n/*\n * An interrupt source on an EventTarget object, such as a Window or HTMLElement.\n */\nclass EventTargetInterruptSource extends InterruptSource {\n constructor(target, events, opts) {\n super(null, null);\n this.target = target;\n this.events = events;\n this.opts = opts;\n this.eventSubscription = new Subscription();\n if (typeof this.opts === 'number') {\n this.opts = {\n throttleDelay: this.opts,\n passive: false\n };\n }\n this.opts = this.opts || {\n passive: false,\n throttleDelay: defaultThrottleDelay\n };\n if (this.opts.throttleDelay === undefined || this.opts.throttleDelay === null) {\n this.opts.throttleDelay = defaultThrottleDelay;\n }\n this.throttleDelay = this.opts.throttleDelay;\n this.passive = !!this.opts.passive;\n }\n initialize(options) {\n if (options?.platformId && isPlatformServer(options.platformId)) {\n return;\n }\n const eventTarget = typeof this.target === 'function' ? this.target() : this.target;\n const opts = this.passive ? {\n passive: true\n } : null;\n const fromEvents = this.events.split(' ').map(eventName => fromEvent(eventTarget, eventName, opts));\n this.eventSrc = merge(...fromEvents);\n this.eventSrc = this.eventSrc.pipe(filter(innerArgs => !this.filterEvent(innerArgs)));\n if (this.throttleDelay > 0) {\n this.eventSrc = this.eventSrc.pipe(throttleTime(this.throttleDelay));\n }\n const handler = innerArgs => this.onInterrupt.emit(new InterruptArgs(this, innerArgs));\n this.attachFn = () => this.eventSubscription = this.eventSrc.subscribe(handler);\n this.detachFn = () => this.eventSubscription.unsubscribe();\n }\n /*\n * Checks to see if the event should be filtered. Always returns false unless overriden.\n * @param event - The original event object.\n * @return True if the event should be filtered (don't cause an interrupt); otherwise, false.\n */\n filterEvent(event) {\n return false;\n }\n /**\n * Returns the current options being used.\n * @return The current option values.\n */\n get options() {\n return {\n passive: this.passive,\n throttleDelay: this.throttleDelay\n };\n }\n}\n\n/*\n * An interrupt source that uses events on the document element (html tag).\n */\nclass DocumentInterruptSource extends EventTargetInterruptSource {\n constructor(events, options) {\n super(() => document.documentElement, events, options);\n }\n /*\n * Checks to see if the event should be filtered.\n * @param event - The original event object.\n * @return True if the event should be filtered (don't cause an interrupt); otherwise, false.\n */\n filterEvent(event) {\n // some browser bad input hacks\n if (event.type === 'mousemove' && (\n // fix for Chrome destop notifications\n event.originalEvent && event.originalEvent.movementX === 0 && event.originalEvent.movementY === 0 ||\n // fix for webkit fake mousemove\n event.movementX !== void 0 && !event.movementX || !event.movementY)) {\n return true;\n }\n return false;\n }\n}\n\n/*\n * An interrupt source on the Window object.\n */\nclass WindowInterruptSource extends EventTargetInterruptSource {\n constructor(events, options) {\n super(() => window, events, options);\n }\n}\n\n/*\n * An interrupt source on the storage event of Window.\n */\nclass StorageInterruptSource extends WindowInterruptSource {\n constructor(options = 500) {\n super('storage', options);\n }\n /*\n * Checks to see if the event should be filtered.\n * @param event - The original event object.\n * @return True if the event should be filtered (don't cause an interrupt); otherwise, false.\n */\n filterEvent(event) {\n if (event.key && event.key.indexOf('ng2Idle.') >= 0 && event.key.indexOf('.expiry') >= 0) {\n return false;\n }\n return true;\n }\n}\n\n/*\n * Represents a simple in-memory store of expiry values.\n * @extends IdleExpiry\n */\nclass SimpleExpiry extends IdleExpiry {\n constructor() {\n super();\n this.lastValue = null;\n }\n /*\n * Gets or sets the last expiry date.\n * @param value - The expiry value to set; omit to only return the value.\n * @return The current expiry value.\n */\n last(value) {\n if (value !== void 0) {\n this.lastValue = value;\n }\n return this.lastValue;\n }\n}\nlet NgIdleModule = /*#__PURE__*/(() => {\n class NgIdleModule {\n static forRoot() {\n return {\n ngModule: NgIdleModule,\n providers: [LocalStorageExpiry, {\n provide: IdleExpiry,\n useExisting: LocalStorageExpiry\n }, Idle]\n };\n }\n static {\n this.ɵfac = function NgIdleModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgIdleModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NgIdleModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: [LocalStorage]\n });\n }\n }\n return NgIdleModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction createDefaultInterruptSources(options) {\n return [new DocumentInterruptSource('mousemove keydown DOMMouseScroll mousewheel mousedown touchstart touchmove scroll', options), new StorageInterruptSource(options)];\n}\nconst DEFAULT_INTERRUPTSOURCES = createDefaultInterruptSources();\n\n/*\n * Public API Surface of core\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { AutoResume, DEFAULT_INTERRUPTSOURCES, DocumentInterruptSource, EventTargetInterruptSource, Idle, IdleExpiry, InterruptArgs, InterruptSource, KeepaliveSvc, LocalStorage, LocalStorageExpiry, NgIdleModule, SimpleExpiry, StorageInterruptSource, WindowInterruptSource, createDefaultInterruptSources };\n","import { Component } from '@angular/core';\r\nimport * as Rx from 'rxjs';\r\nimport { AppService, AppSettingService } from \"../app.service\";\r\nimport { NotificationService } from './notification.service';\r\nimport { NotificationAPIService, INotification } from './notification-api.service';\r\nimport { UserInfoService } from '../user/user-info.service';\r\nimport { CommentAPIService } from '../comment/comment.service';\r\n\r\n@Component({\r\n\tselector: 'app-notification',\r\n\ttemplateUrl: './notification.component.html',\r\n\tstandalone: false\r\n})\r\nexport class NotificationComponent {\r\n\tprivate notificationWatcher: Rx.Subscription = null;\r\n\tprivate isAnonymous: boolean = true;\r\n\tnotificationReady: boolean = false;\r\n\r\n\tpublic get notifications(): INotification[] {\r\n\t\treturn this.notificationSrv.notifications;\r\n\t}\r\n\r\n\tprivate downloadNotifications(): void {\r\n\t\tif (!this.isAnonymous) {\r\n\t\t\tthis.notificationReady = false;\r\n\t\t\tthis.notificationSrv.downloadNotifications().subscribe({\r\n\t\t\t\tnext: (response) => {\r\n\t\t\t\t\tthis.notificationReady = response;\r\n\t\t\t\t},\r\n\t\t\t\terror: (err) => {\r\n\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n\t\r\n\tprivate handleAfterNotificationDelete(note: INotification): void {\r\n\t\tthis.downloadNotifications();\r\n\t\tif (note.NotificationId === '6') {\r\n\t\t\t//handle sending user to comment URLs for notification they clicked on\r\n\t\t\tif (note.ActionUrl.split('?').length > 1) {\r\n\t\t\t\tlet urlRoute = note.ActionUrl.split('?')[0];\r\n\t\t\t\tthis.appSrv.redirectReload(urlRoute, { queryParams: { \"commentPostId\": note.CommentPostId } });\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.appSrv.goTo(note.ActionUrl);\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\t//handle sending user to all other URLs for notification they clicked on\r\n\t\t\tif (note.ActionUrl !== \"\") {\r\n\t\t\t\tthis.appSrv.goTo(note.ActionUrl);\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\thandleNotification(note: INotification): void {\r\n\t\tif (note.NotificationId === \"6\") {\r\n\t\t\tlet notificationPersonIDs = []; //used to delete notifications\r\n\t\t\tlet commentPostIDsToHighlight = []; //used for comment highlighting on comments page\r\n\r\n\t\t\t//delete all comment type notifications for current comment career map object:\r\n\t\t\t//to do this, build a comma delimited string of all 'NotificationPersonId's to delete...\t\t\r\n\t\t\t//for comment handling, this url should be filled in with a career map object id path param\r\n\t\t\t//url must follow format: \"/Comment/{object id}?...\"\r\n\t\t\tlet currentUrlPathParamCareerId = note.ActionUrl.split('/')[2].split('?')[0]; //object id path param\r\n\t\t\tfor (var i = 0; i < this.notifications.length; i++) {\r\n\t\t\t\tif (this.notifications[i].NotificationId === '6' && this.notifications[i].CareerId === currentUrlPathParamCareerId) {\r\n\t\t\t\t\tconsole.log(this.notifications[i].NotificationPersonId);\r\n\t\t\t\t\tnotificationPersonIDs.push(this.notifications[i].NotificationPersonId);\r\n\t\t\t\t\tcommentPostIDsToHighlight.push(this.notifications[i].CommentPostId);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tif (notificationPersonIDs.length > 0) {\r\n\t\t\t\t//this only happens for type-6 (comment notifications)\r\n\t\t\t\tthis.commentAPI.commentPostIDsToHighlight = commentPostIDsToHighlight; //needed by comments page for highlighting unread comments: this is populated same place notificationPersonIDs so will have items here.\r\n\t\t\t\tthis.notificationtAPI.deleteMultipleNotifications(notificationPersonIDs).subscribe({\r\n\t\t\t\t\tnext: () => {\r\n\t\t\t\t\t\tthis.handleAfterNotificationDelete(note);\r\n\t\t\t\t\t},\r\n\t\t\t\t\terror: (err) => {\r\n\t\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t}\r\n\t\telse if (note.NotificationId == \"7\") {\r\n\t\t\t// for job post, do not delete the nofification\r\n\t\t\tthis.handleAfterNotificationDelete(note);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.notificationtAPI.deleteNotification(note.NotificationPersonId).subscribe({\r\n\t\t\t\tnext: () => {\r\n\t\t\t\t\tthis.handleAfterNotificationDelete(note);\r\n\t\t\t\t},\r\n\t\t\t\terror: (err) => {\r\n\t\t\t\t\tconsole.log(err);\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t}\r\n\r\n\tprivate watchNotification(): void {\r\n\t\tthis.notificationWatcher = this.notificationSrv.notificationChanged.subscribe({\r\n\t\t\tnext: (value: any) => {\r\n\t\t\t\tif (value != null) {\r\n\t\t\t\t\tthis.downloadNotifications();\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tngOnDestroy(): void {\r\n\t\tif (this.notificationWatcher) {\r\n\t\t\tthis.notificationWatcher.unsubscribe()\r\n\t\t}\r\n\t}\r\n\r\n\tconstructor(\r\n\t\tpublic appSetting: AppSettingService,\r\n\t\tprivate appSrv: AppService,\r\n\t\tprivate commentAPI: CommentAPIService,\r\n\t\tprivate notificationSrv: NotificationService,\r\n\t\tprivate notificationtAPI: NotificationAPIService,\r\n\t\tpublic userInfo: UserInfoService\r\n\t) {\r\n\t\tthis.isAnonymous = this.userInfo.isAnonymous();\r\n\t\tthis.watchNotification();\r\n\t}\r\n}\r\n\r\n\r\n","\r\n\t\r\n\t\t\r\n\t\r\n\r\n\t
\r\n\t\t\r\n\t\t\t 0\" style=\"border-radius:100%; color:#fff; background-color:#FAD59A; padding:5px; font-size:10px; position:absolute; top:0; width: 20px; height:20px; line-height:1;\">{{notifications.length}}\r\n\t\t\r\n\t\t
\r\n\t\t\t
\r\n\t\t\t
    \r\n\t\t\t\t
  • No New Notification
  • \r\n\t\t\t\t
  • \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
     
    \r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t{{n.Type}}
    \r\n\t\t\t\t
  • \r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n
\r\n\r\n\t
0\" style=\"display:inline-block; margin-right:15px; position:unset;\">\r\n\t\t\r\n\t\t\t{{notifications.length}}\r\n\t\t\r\n\t\t
\r\n\t\t\t
    \r\n\t\t\t\t
  • \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
     
    \r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t{{n.Type}}
    \r\n\t\t\t\t
  • \r\n\t\t\t
\r\n\t\t
\r\n\t
\r\n
\r\n","import { Inject, Component, HostListener, Input } from '@angular/core';\r\nimport { Router } from '@angular/router';\r\nimport { Subscription } from 'rxjs';\r\nimport { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';\r\nimport Swal from 'sweetalert2';\r\nimport { AccountAPIService } from '../account-api.service';\r\nimport { AppSettingService, AppUtilityService } from '../../app.service';\r\nimport { UserInfoService, IUserProfile, IUserOtherAccount } from '../user-info.service';\r\nimport { SessionAPIService } from '../user-api.service';\r\nimport { SignupLoginService } from '../signupLogin/signup-login.component';\r\n\r\n\r\n@Component({\r\n\tselector: \"app-switch-account\",\r\n\ttemplateUrl: \"./switch-account.component.html\",\r\n\tstyleUrls: ['../../navigation/navigation.component.scss'],\r\n\tstandalone: false\r\n})\r\nexport class SwitchAccountComponent {\r\n\t@Input() currentZone: string = \"true|false\";\r\n\tprivate accountMonitor: Subscription;\r\n\tcanSwitch: boolean = false;\r\n\tuser: IUserProfile = null;\r\n\tpreviousUserId: string = \"\";\r\n\tmobileView: boolean = AppSettingService.widgetMobile();\r\n\toAccounts: {\r\n\t\tZone: string,\r\n\t\tAccounts: IUserOtherAccount[]\r\n\t}[] = [];\r\n\r\n\tconstructor(\r\n\t\tprivate dialog: MatDialog,\r\n\t\tprivate signupLoginSrv: SignupLoginService,\r\n\t\tprivate userInfo: UserInfoService\r\n\t) { }\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(e: any) {\r\n\t\tthis.mobileView = AppSettingService.widgetMobile();\r\n\t}\r\n\r\n\tprivate myPopup: any = null;\r\n\tchangeAccount(personId: string) {\r\n\t\tthis.myPopup = this.dialog.open(\r\n\t\t\tSwitchAccountDialog,\r\n\t\t\t{\r\n\t\t\t\tdisableClose: true,\r\n\t\t\t\tpanelClass: 'jmDialogNoScroll',\r\n\t\t\t\twidth: \"400px\",\r\n\t\t\t\theight: \"400px\",\r\n\t\t\t\tdata: {\r\n\t\t\t\t\tpersonId: personId\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t);\r\n\t\tthis.myPopup.afterClosed().subscribe({\r\n\t\t\tnext: (result: any) => {\r\n\t\t\t\tif (result !== \"\") {\r\n\t\t\t\t\tSwal.fire({ title: \"\", text: result, icon: \"error\" });\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tngOnDestroy() {\r\n\t\tif (this.accountMonitor) {\r\n\t\t\tthis.accountMonitor.unsubscribe();\r\n\t\t}\r\n\t\tif (this.myPopup != null) {\r\n\t\t\tthis.myPopup.close();\r\n\t\t}\r\n\t}\r\n\r\n\tngAfterViewInit(): void {\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\tthis.accountMonitor = this.userInfo.UserInfoTimestamp.subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\tthis.user = this.userInfo.getProfile();\r\n\t\t\t\tthis.canSwitch = false;\r\n\t\t\t\tif (!this.userInfo.isAnonymous()) {\r\n\t\t\t\t\tif (this.user.OtherAccounts != null && this.user.OtherAccounts.length > 0) {\r\n\t\t\t\t\t\tthis.canSwitch = true;\r\n\t\t\t\t\t\tthis.oAccounts = [];\r\n\t\t\t\t\t\tthis.user.OtherAccounts.forEach(\r\n\t\t\t\t\t\t\t(a) => {\r\n\t\t\t\t\t\t\t\tlet o = this.oAccounts.find((x: any) => x.Zone === a.Zone);\r\n\t\t\t\t\t\t\t\tif (o) {\r\n\t\t\t\t\t\t\t\t\to.Accounts.push(a);\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\telse {\r\n\t\t\t\t\t\t\t\t\tlet n: any = { Zone: a.Zone, Accounts: [] };\r\n\t\t\t\t\t\t\t\t\tn.Accounts.push(a);\r\n\t\t\t\t\t\t\t\t\tthis.oAccounts.push(n);\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t);\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\tthis.oAccounts = [];\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.oAccounts = [];\r\n\t\t\t\tthis.user = null;\r\n\r\n\t\t\t\tthis.canSwitch = false;\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\ttemplate: `\r\n
\r\n\tSwitching Accunt\r\n\t\r\n
`,\r\n\tstandalone: false\r\n})\r\nexport class SwitchAccountDialog {\r\n\tprivate personId: string;\r\n\r\n\tconstructor(\r\n\t\tprivate accountAPI: AccountAPIService,\r\n\t\tprivate dialogRef: MatDialogRef,\r\n\t\t@Inject(MAT_DIALOG_DATA) private data: any,\r\n\t\tprivate router: Router,\r\n\t\tprivate sessionAPI: SessionAPIService,\r\n\t\tprivate userInfo: UserInfoService\r\n\t) {\r\n\t\tthis.personId = data.personId\r\n\t}\r\n\r\n\tclose(): void {\r\n\t\t\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t// do not clean up the session data for the existing account unless we are able to switch\r\n\t\tthis.sessionAPI.signOnAsOther(this.personId).subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\tthis.userInfo.clearStorage();\r\n\t\t\t\t// delay to get cookie populated\r\n\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\tif (!this.userInfo.isJAZone() && this.userInfo.getProfile().HighestRole.toLowerCase() === 'student' || this.userInfo.getProfile().HighestRole.toLowerCase() === 'other') {\r\n\t\t\t\t\t\twindow.location.href = AppSettingService.baseUrl + \"/User/CheckMyProgress?tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\twindow.location.href = this.userInfo.getHomePage() + ((this.userInfo.getHomePage().indexOf(\"?\") > 0) ? \"&\" : \"?\") + \"tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t}\r\n\t\t\t\t\tthis.dialogRef.close(\"\");\r\n\t\t\t\t}, 500);\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.dialogRef.close(\"Unable to switch account. Please retry later.\");\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n}\r\n","\r\n\t\r\n\t\t
({{user.ZoneDisplayName}})
\r\n\t
\r\n\r\n\t\r\n\t\t
{{user.ZoneDisplayName}}
\r\n\t
\r\n
\r\n\r\n\r\n\t
\r\n\t
\r\n\t\t
Switch Accounts
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t\t
{{zone.Zone}}
\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t
  • \r\n\t\t\t\t\t\t\t{{acc.Role}}\r\n\t\t\t\t\t\t
  • \r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t
\r\n\t
\r\n
\r\n","import * as i0 from '@angular/core';\nimport { EventEmitter, Injectable, NgModule } from '@angular/core';\nimport * as i1 from '@angular/common/http';\nimport { HttpRequest } from '@angular/common/http';\nimport * as i1$1 from '@ng-idle/core';\nimport { KeepaliveSvc, NgIdleModule } from '@ng-idle/core';\n\n/**\n * An example of an injectable service.\n */\nlet Keepalive = /*#__PURE__*/(() => {\n class Keepalive extends KeepaliveSvc {\n /*\n * Initializes a new instance of Keepalive\n * @param http - The HTTP service.\n */\n constructor(http, zone) {\n super();\n this.http = http;\n this.zone = zone;\n this.pingInterval = 10 * 60;\n /*\n * An event emitted when the service is pinging.\n */\n this.onPing = new EventEmitter();\n /*\n * An event emitted when the service has pinged an HTTP endpoint and received a response.\n */\n this.onPingResponse = new EventEmitter();\n }\n /*\n * Sets the string or Request that should be used when pinging.\n * @param url - The URL or Request object to use when pinging.\n * @return The current Request used when pinging.\n */\n request(url) {\n if (typeof url === 'string') {\n this.pingRequest = new HttpRequest('GET', url);\n } else if (url instanceof HttpRequest) {\n this.pingRequest = url;\n } else if (url === null) {\n this.pingRequest = null;\n }\n return this.pingRequest;\n }\n /*\n * Sets the interval (in seconds) at which the ping operation will occur when start() is called.\n * @param seconds - The ping interval in seconds.\n * @return The current interval value.\n */\n interval(seconds) {\n if (!isNaN(seconds) && seconds > 0) {\n this.pingInterval = seconds;\n } else if (!isNaN(seconds) && seconds <= 0) {\n throw new Error('Interval value must be greater than zero.');\n }\n return this.pingInterval;\n }\n /*\n * Immediately performs the ping operation. If a request has been set, an HTTP\n * request will be made and the response will be emitted via the\n * onPingResponse event.\n */\n ping() {\n this.onPing.emit(null);\n if (this.pingRequest) {\n this.http.request(this.pingRequest).subscribe(response => {\n this.onPingResponse.emit(response);\n }, error => {\n this.onPingResponse.emit(error);\n });\n }\n }\n /*\n * Starts pinging on an interval.\n */\n start() {\n this.stop();\n this.zone.runOutsideAngular(() => {\n this.pingHandle = setInterval(() => {\n this.zone.run(() => {\n this.ping();\n });\n }, this.pingInterval * 1000);\n });\n }\n /*\n * Stops pinging on an interval.\n */\n stop() {\n if (this.hasPingHandle()) {\n clearInterval(this.pingHandle);\n this.pingHandle = null;\n }\n }\n /*\n * Performs any cleanup tasks when Angular destroys the instance.\n */\n ngOnDestroy() {\n this.stop();\n }\n /*\n * Returns whether or not the service will ping automatically at the specified interval.\n * @return True if the service will ping at the specified interval; otherwise, false.\n */\n isRunning() {\n return this.hasPingHandle();\n }\n hasPingHandle() {\n return this.pingHandle !== null && typeof this.pingHandle !== 'undefined';\n }\n static {\n this.ɵfac = function Keepalive_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || Keepalive)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(i0.NgZone));\n };\n }\n static {\n this.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: Keepalive,\n factory: Keepalive.ɵfac\n });\n }\n }\n return Keepalive;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet NgIdleKeepaliveModule = /*#__PURE__*/(() => {\n class NgIdleKeepaliveModule {\n static forRoot() {\n return {\n ngModule: NgIdleKeepaliveModule,\n providers: [Keepalive, {\n provide: KeepaliveSvc,\n useExisting: Keepalive\n }]\n };\n }\n static {\n this.ɵfac = function NgIdleKeepaliveModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgIdleKeepaliveModule)();\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NgIdleKeepaliveModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [NgIdleModule.forRoot()]\n });\n }\n }\n return NgIdleKeepaliveModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\n * Public API Surface of keepalive\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { Keepalive, NgIdleKeepaliveModule };\n","import { Component, OnInit, OnDestroy, HostListener } from '@angular/core';\r\nimport { Router, ActivatedRoute } from '@angular/router';\r\nimport { Subscription } from 'rxjs';\r\nimport { Location } from '@angular/common';\r\nimport { MatDialog, MatDialogRef } from '@angular/material/dialog';\r\nimport { Idle, DEFAULT_INTERRUPTSOURCES } from '@ng-idle/core';\r\nimport { Keepalive } from '@ng-idle/keepalive';\r\nimport { AppService, AppSettingService, AppUtilityService } from '../app.service';\r\nimport { UserInfoService, IUserProfile, IUserHomeLink } from '../user/user-info.service';\r\nimport { WebAPIService } from '../user/user-api.service';\r\nimport { AccountAPIService } from '../user/account-api.service';\r\nimport { AnonymousUserService } from '../user/anonymousUser/anonymous-user.service';\r\nimport { ZoneAPIService } from '../zone/zone-api.service';\r\n\r\n@Component({\r\n\tselector: 'app-navigation-header',\r\n\ttemplateUrl: './navigation-header.component.html',\r\n\tstyleUrls: ['./navigation.component.scss'],\r\n\tstandalone: false\r\n})\r\nexport class NavigationHeaderComponent implements OnInit {\r\n\tconstructor(\r\n\t\tprivate accountAPI: AccountAPIService,\r\n\t\tprivate anonymousSrv: AnonymousUserService,\r\n\t\tpublic appSetting: AppSettingService,\r\n\t\tprivate appSrv: AppService,\r\n\t\tprivate webAPI: WebAPIService,\r\n\t\tprivate location: Location,\r\n\t\tprivate router: Router,\r\n\t\tpublic userInfo: UserInfoService,\r\n\t\tprivate zoneAPI: ZoneAPIService\r\n\t) { }\r\n\r\n\tdefaultLogo: string = 'assets/images/JourneysLogo.png';\r\n\tdefaultLogoMobile: string = 'assets/images/JourneysLogoMobile.png';\r\n\tlogo: any = null;\r\n\tuser: IUserProfile = null;\r\n\tpersonInfo: any = null;\r\n\tloggedIn: boolean = false;\r\n\tisAnonymous: boolean = true;\r\n\tallowSignup: boolean = false;\r\n\thomeLink: IUserHomeLink = null;\r\n\tisSystemAdmin: boolean = false;\r\n\tisZoneAdmin: boolean = false;\r\n\tzoneName: string = '';\r\n\tpathName: string = '';\r\n\tprofileImage: string = \"assets/images/userImage.png\";\r\n\tprofileReady: boolean = false;\r\n\tisJAStudent: boolean = false;\r\n\tdefaultLogoMobileThresh: number = 430;\r\n\r\n\t@HostListener('window:resize', ['$event']) onResize(event: any) {\r\n\t\tthis.setDefaultLogo();\r\n\t}\r\n\r\n\tprivate accountMonitor: Subscription;\r\n\r\n\tsetDefaultLogo() {\r\n\t\tif (window.innerWidth < this.defaultLogoMobileThresh) {\r\n\t\t\tthis.logo = this.defaultLogoMobile;\r\n\t\t} else {\r\n\t\t\tthis.logo = this.defaultLogo;\r\n\t\t}\r\n\t}\r\n\r\n\tgoto(url: string): void {\r\n\t\tif (url === 'openSignup') {\r\n\t\t\tthis.anonymousSrv.openSignupLogin(\"signup\", \"\", false, \"\", null);\r\n\t\t}\r\n\t\telse if (url === 'openLogin') {\r\n\t\t\tthis.anonymousSrv.openSignupLogin(\"login\", \"\", false, \"\", null);\r\n\t\t}\r\n\t\telse if (url === \"help\") {\r\n\t\t\twindow.open(\"https://intercom.help/journeys-acc277045d6d\", \"_blank\");\r\n\t\t}\r\n\t\telse if (this.userInfo.isAnonymous() && url != \"/Map\") {\r\n\t\t\tthis.anonymousSrv.openSignupLogin(\"login\", url, true, \"\", null);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tif (url === \"/Map\" && this.router.url === \"/Map\") {\r\n\t\t\t\t//const currentUrl = this.router.url;\r\n\t\t\t\tthis.router.navigateByUrl('/', { skipLocationChange: true }).then(() => {\r\n\t\t\t\t\tthis.router.navigateByUrl(url);\r\n\t\t\t\t});\r\n\t\t\t} else {\r\n\t\t\t\tthis.router.navigateByUrl(url);\r\n\t\t\t}\r\n\t\t}\r\n\t};\r\n\r\n\tloadingWeb: boolean = false;\r\n\tgotoWeb(): void {\r\n\t\tif (!this.userInfo.isSystemAdmin()) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tthis.loadingWeb = true;\r\n\t\tthis.webAPI.signOn(this.user.UserName, this.user.Password, this.user.ZoneClient).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\twindow.location.href = \"/Users/PersonEdit.aspx\";\r\n\t\t\t\tthis.loadingWeb = false;\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tthis.loadingWeb = false;\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\r\n\tlogout(): void {\r\n\t\tthis.userInfo.clearProfile(true);\r\n\t}\r\n\r\n\tgetProfilePhoto(): void {\r\n\t\tthis.accountAPI.getMyProfile().subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tthis.profileImage = response.Photo;\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t}\r\n\t\t});\r\n\t};\r\n\r\n\tgoHomehLink(): void {\r\n\t\tif (this.homeLink.link != '') {\r\n\t\t\tthis.appSrv.goTo(this.homeLink.link);\r\n\t\t}\r\n\t}\r\n\r\n\tstoredLocation = this.location.path();\r\n\r\n\tprivate loadUserInfo(): void {\r\n\t\tthis.personInfo = null;\r\n\t\tthis.user = this.userInfo.getProfile();\r\n\t\tthis.loggedIn = this.userInfo.isLogin();\r\n\t\tthis.isAnonymous = this.userInfo.isAnonymous();\r\n\t\tthis.allowSignup = this.userInfo.allowSignup();\r\n\t\tthis.homeLink = this.userInfo.getHomeLink();\r\n\t\tthis.zoneName = this.userInfo.getZoneName();\r\n\r\n\t\tif (!this.isAnonymous) {\r\n\t\t\tthis.isSystemAdmin = this.userInfo.isSystemAdmin();\r\n\t\t\tthis.isZoneAdmin = this.userInfo.isZoneAdmin();\r\n\t\t\tthis.isJAStudent = this.userInfo.isJAZone() && this.userInfo.isStudent();\r\n\t\t\tthis.personInfo = this.user;\r\n\t\t\tthis.getProfilePhoto();\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.isSystemAdmin = false;\r\n\t\t\tthis.isZoneAdmin = false;\r\n\t\t}\r\n\t\tthis.profileReady = true;\r\n\t}\r\n\r\n\tprivate loadLogo(): void {\r\n\t\tthis.zoneAPI.getZone(this.zoneName).subscribe({\r\n\t\t\tnext: (response: any) => {\r\n\t\t\t\tif (response.Logo.toLowerCase().indexOf('journeyslogo.png') > 0) {\r\n\t\t\t\t\tthis.setDefaultLogo();\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.logo = response.Logo;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (error: any) => {\r\n\t\t\t\tconsole.log(error);\r\n\t\t\t\tthis.setDefaultLogo();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tngOnDestroy() {\r\n\t\tif (this.accountMonitor) {\r\n\t\t\tthis.accountMonitor.unsubscribe();\r\n\t\t}\r\n\t}\r\n\r\n\tngOnInit(): void {\r\n\t\t//watch session change\r\n\t\tthis.accountMonitor = this.userInfo.UserInfoTimestamp.subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\tthis.loadUserInfo();\r\n\t\t\t\tthis.loadLogo();\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t\tthis.loadUserInfo();\r\n\t\t\t\tthis.loadLogo();\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-footer',\r\n\ttemplateUrl: './navigation-footer.component.html',\r\n\tstyleUrls: ['./navigation.component.scss'],\r\n\tstandalone: false\r\n})\r\nexport class NavigationFooterComponent {\r\n\tcurrentYear: number = (new Date()).getFullYear();\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-idle',\r\n\ttemplateUrl: './navigation-idle.component.html',\r\n\tstandalone: false\r\n})\r\nexport class NavigationIdleComponent implements OnInit, OnDestroy {\r\n\tidleState = 'Not started.';\r\n\ttimedOut = false;\r\n\tlastPing?: Date = null;\r\n\tidleCtrlId = '';\r\n\tidleWaring: any = null;\r\n\tcloseWarning = false;\r\n\tprivate accountMonitor: Subscription;\r\n\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate idle: Idle,\r\n\t\tprivate keepalive: Keepalive,\r\n\t\tpublic dialog: MatDialog,\r\n\t\tprivate router: Router,\r\n\t) {\r\n\t\tthis.idle.setIdle(AppSettingService.idle.timeoutAfter); //600 seconds\r\n\t\tthis.idle.setTimeout(AppSettingService.idle.warningDuration); //60\r\n\t\tthis.keepalive.interval(AppSettingService.idle.keepAlive); //30\r\n\t\t// sets the default interrupts, in this case, things like clicks, scrolls, touches to the document\r\n\t\tthis.idle.setInterrupts(DEFAULT_INTERRUPTSOURCES);\r\n\t\tthis.idleCtrlId = AppUtilityService.newId();\r\n\r\n\t\tthis.idle.onIdleStart.subscribe(() => {\r\n\t\t\tthis.idleState = 'You\\'ve gone idle!'\r\n\r\n\t\t\tif (this.userInfo.isAnonymous() === true) {\r\n\t\t\t\tthis.stopWatch();\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\t// already popup?, do nothing and get out now\r\n\t\t\tif (this.idleWaring != null) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tthis.closeWarning = false;\r\n\r\n\t\t\t// popup the idle timeout warning and not allow any other activities\r\n\t\t\tthis.idleWaring = this.dialog.open(\r\n\t\t\t\tNavigationIdleWarningComponent,\r\n\t\t\t\t{ maxWidth: '500px', disableClose: true, autoFocus: true }\r\n\t\t\t);\r\n\t\t\tthis.idleWaring.afterClosed().subscribe((choice: any) => {\r\n\t\t\t\tthis.idleWaring = null;\r\n\t\t\t\tif (choice === \"logout\") {\r\n\t\t\t\t\tthis.logout();\r\n\t\t\t\t}\r\n\t\t\t\telse if (choice === \"stay\") {\r\n\t\t\t\t\t//announce users want to stay\r\n\t\t\t\t\tthis.lastPing = new Date();\r\n\t\t\t\t\tlocalStorage.setItem(\"idleTime\", JSON.stringify({ \"ctrlId\": this.idleCtrlId, \"time\": this.lastPing.toUTCString() }));\r\n\t\t\t\t\ttry { clearInterval(checkAlive); }\r\n\t\t\t\t\tcatch (ex) { ; }\r\n\t\t\t\t\tthis.idle.watch();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\r\n\t\t\t// check if any other tab still active\r\n\t\t\tvar idleStart = new Date().toUTCString();\r\n\t\t\tvar checkAlive = setInterval(() => {\r\n\t\t\t\ttry {\r\n\t\t\t\t\tvar idleTime = JSON.parse(localStorage.getItem(\"idleTime\"));\r\n\t\t\t\t\t// close warning if the new time is found and not issued from self\r\n\t\t\t\t\tif (idleTime.ctrlId !== this.idleCtrlId && new Date(idleTime.time) > new Date(idleStart)) {\r\n\t\t\t\t\t\tclearInterval(checkAlive);\r\n\t\t\t\t\t\tthis.closeWarning = true;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tcatch (ex) { ; }\r\n\t\t\t}, 1000);\r\n\t\t});\r\n\r\n\t\tthis.idle.onIdleEnd.subscribe(() => {\r\n\t\t\tthis.idleState = 'No longer idle.'\r\n\t\t\t//do nothing\r\n\t\t});\r\n\r\n\t\tthis.idle.onTimeout.subscribe(() => {\r\n\t\t\tthis.idleState = 'Idle Timed out!';\r\n\t\t\tthis.timedOut = true;\r\n\t\t\t// timeout redirect user to login page if user does login\r\n\t\t\tif (this.userInfo.isAnonymous() === true) {\r\n\t\t\t\tthis.stopWatch();\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.logout();\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\tthis.idle.onTimeoutWarning.subscribe((countdown) => {\r\n\t\t\tthis.idleState = 'You will time out in ' + countdown + ' seconds!'\r\n\t\t});\r\n\r\n\t\t// function will be called when idle watch() is started. \r\n\t\t// function will be stopped when IdleStart is called\r\n\t\t// the interval is set by KeepaliveProvider.interval\r\n\t\tthis.keepalive.onPing.subscribe(() => {\r\n\t\t\tthis.lastPing = new Date();\r\n\r\n\t\t\tif (this.userInfo.isAnonymous() === true) {\r\n\t\t\t\tthis.stopWatch();\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\t// if idleWarning popup not display, then update time\r\n\t\t\tif (this.idleWaring == null) {\r\n\t\t\t\tlocalStorage.setItem(\"idleTime\", JSON.stringify({ \"ctrlId\": this.idleCtrlId, \"time\": this.lastPing.toUTCString() }));\r\n\t\t\t\t//console.log('keep alive: ' + JSON.parse(localStorage.getItem(\"idleTime\")).time);\r\n\t\t\t}\r\n\t\t});\r\n\t}\r\n\r\n\tlogout(): void {\r\n\t\tthis.closeWarning = true;\r\n\t\tif (this.router.url.toLocaleLowerCase().indexOf(\"/landing/\") >= 0) {\r\n\t\t\tthis.userInfo.clearProfile(false);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthis.userInfo.clearProfile(true);\r\n\t\t}\r\n\t}\r\n\r\n\tstopWatch(): void {\r\n\t\t//console.log(\"stop idle timeout monitor\");\r\n\t\tif (this.idleWaring != null) {\r\n\t\t\tthis.closeWarning = true;\r\n\t\t}\r\n\t\tif (this.idle.isRunning()) {\r\n\t\t\tthis.idle.stop();\r\n\t\t}\r\n\t}\r\n\r\n\tstartWatch(): void {\r\n\t\tif (!this.idle.isRunning()) {\r\n\t\t\t//console.log(\"start idle timeout monitor\");\r\n\t\t\tthis.idle.watch();\r\n\t\t\tthis.idleState = 'Started.';\r\n\t\t\tthis.closeWarning = true;\r\n\t\t\tthis.timedOut = false;\r\n\t\t}\r\n\t}\r\n\r\n\tngOnDestroy(): void {\r\n\t\tthis.accountMonitor.unsubscribe();\r\n\t\tthis.stopWatch();\r\n\t};\r\n\r\n\tngOnInit(): void {\r\n\t\tif (!this.userInfo.isAnonymous()) {\r\n\t\t\tthis.startWatch();\r\n\t\t}\r\n\r\n\t\tthis.accountMonitor = this.userInfo.UserInfoTimestamp.subscribe({\r\n\t\t\tnext: () => {\r\n\t\t\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\t\t\tthis.stopWatch();\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\tthis.startWatch();\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\terror: (err: any) => {\r\n\t\t\t\tconsole.log(err);\r\n\t\t\t}\r\n\t\t});\r\n\t};\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-idle-warning',\r\n\ttemplateUrl: './navigation-idle-warning.component.html',\r\n\tstandalone: false\r\n})\r\nexport class NavigationIdleWarningComponent {\r\n\tconstructor(\r\n\t\tpublic dialogRef: MatDialogRef\r\n\t) { }\r\n\r\n\twarningDuration: number = AppSettingService.idle.warningDuration;\r\n\ttimeleft: number = this.warningDuration;\r\n\twarningProgress: number = 0;\r\n\tpercent: string = '0';\r\n\r\n\tonNoClick(): void {\r\n\t\tthis.dialogRef.close();\r\n\t}\r\n\r\n\tstayActive() {\r\n\t\tthis.dialogRef.close(\"stay\");\r\n\t};\r\n\r\n\tlogout() {\r\n\t\tthis.dialogRef.close(\"logout\");\r\n\t}\r\n\r\n\tprogressBar = setInterval(() => {\r\n\t\tthis.timeleft = this.timeleft - 1;\r\n\t\tthis.warningProgress = this.warningDuration - this.timeleft;\r\n\t\tthis.warningProgress = this.warningProgress > this.warningDuration ? this.warningDuration : this.warningProgress;\r\n\t\tthis.percent = (this.warningProgress / this.warningDuration * 100).toFixed(0);\r\n\t\tif (this.warningProgress === this.warningDuration) {\r\n\t\t\tclearInterval(this.progressBar);\r\n\t\t\tthis.dialogRef.close(\"logout\");\r\n\t\t}\r\n\t}, 1000);\r\n\r\n\tngOnInit(): void {\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-error',\r\n\ttemplateUrl: './navigation-error.component.html',\r\n\tstandalone: false\r\n})\r\nexport class NavigationErrorComponent implements OnInit {\r\n\tconstructor(\r\n\t\tprivate userInfo: UserInfoService,\r\n\t\tprivate router: Router\r\n\t) { }\r\n\r\n\terrorMessage: string = \"\";\r\n\r\n\tngOnInit(): void {\r\n\t\tif (this.router.url.toLowerCase().indexOf(\"sso\") > 0) {\r\n\t\t\tthis.errorMessage = \"We love your enthusiasm, but your Journeys Map account is still being created. Please check with your teacher to know when it will be ready!\";\r\n\t\t}\r\n\t\telse {\r\n\t\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\t\tthis.router.navigateByUrl(\"/User/Login\");\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tthis.errorMessage = \"The requested content is not found. Please ensure you have rights to access this page.\";\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-home',\r\n\ttemplateUrl: './navigation-home.component.html',\r\n\tstandalone: false\r\n})\r\nexport class NavigationHomeComponent implements OnInit {\r\n\tconstructor(\r\n\t\tpublic userInfo: UserInfoService,\r\n\t\tprivate appSrv: AppService\r\n\t) { }\r\n\r\n\tngOnInit(): void {\r\n\t\tif (this.userInfo.isAnonymous()) {\r\n\t\t\twindow.location.href = AppSettingService.baseUrl + \"/User/Login\";\r\n\t\t}\r\n\t\telse {\r\n\t\t\tlet homeLink: IUserHomeLink = this.userInfo.getHomeLink();\r\n\t\t\tif (homeLink.link != '') {\r\n\t\t\t\tthis.appSrv.goTo(homeLink.link);\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\ttemplate: `
`,\r\n\tstandalone: false\r\n})\r\nexport class ExternalLinkComponent implements OnInit {\r\n\txLink: string = \"\";\r\n\tconstructor(private route: ActivatedRoute) { }\r\n\tngOnInit(): void {\r\n\t\tthis.xLink = (this.route.snapshot.data[\"xLink\"] ?? \"\").trim();\r\n\t\tif (this.xLink === \"\") {\r\n\t\t\tthis.xLink = AppSettingService.baseUrl + \"/User/Login\";\r\n\t\t}\r\n\t\twindow.location.href = this.xLink;\r\n\t}\r\n}\r\n\r\n\r\n@Component({\r\n\tselector: 'app-navigation-splash',\r\n\ttemplate: `
`,\r\n\tstandalone: false\r\n})\r\nexport class NavigationSplashComponent {\r\n\tconstructor(private activeRoute: ActivatedRoute) { }\r\n\tprivate routeTo: string = \"\";\r\n\r\n\tngOnInit(): void {\r\n\t\tthis.activeRoute\r\n\t\t\t.queryParams\r\n\t\t\t.subscribe(\r\n\t\t\t\tparams => {\r\n\t\t\t\t\tthis.routeTo = (params[\"routeTo\"] || \"\").trim();\r\n\t\t\t\t\tconsole.log(this.routeTo);\r\n\t\t\t\t\tif (this.routeTo !== \"\") {\r\n\t\t\t\t\t\tthis.routeTo = this.routeTo + ((this.routeTo.indexOf(\"?\") > 0) ? \"&\" : \"?\") + \"tm=\" + AppUtilityService.newId();\r\n\t\t\t\t\t\twindow.location.href = this.routeTo;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t);\r\n\t}\r\n}\r\n","
\r\n\t\r\n\r\n\t\r\n
\r\n\r\n
\r\n\t\r\n\r\n\t\r\n
\r\n","
\r\n\t

{{idleState}}

\r\n\t

Last keepalive ping {{lastPing}}

\r\n\t\r\n
\r\n","\r\n","
\r\n\t
\r\n\t\tLooks like you have stopped exploring. You will be logged out momentarily, or choose to continue your session\r\n\t
\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t
{{warningProgress}}/{{warningDuration}} seconds
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n
\r\n","
\r\n\t
\r\n\t\t

\r\n\t
\r\n
\r\n"],"mappings":"msBASA,IAAMA,GAAN,KAAgB,CACd,YAAYC,EAAQC,EAAS,CAC3B,KAAK,OAASD,EACVA,EAAO,YACTA,EAAO,WAAWC,CAAO,CAE7B,CAKA,UAAUC,EAAI,CACZ,KAAK,IAAM,KAAK,OAAO,YAAY,UAAUA,CAAE,CACjD,CAIA,aAAc,CACZ,KAAK,IAAI,YAAY,EACrB,KAAK,IAAM,IACb,CAIA,QAAS,CACP,KAAK,OAAO,OAAO,CACrB,CAIA,OAAQ,CACN,KAAK,OAAO,OAAO,CACrB,CACF,EAKMC,EAAN,KAAiB,CACf,aAAc,CACZ,KAAK,QAAU,IAAI,KACnB,KAAK,YAAc,EACrB,CAMA,GAAGC,EAAO,CACR,GAAIA,IAAU,OAAQ,CACpB,GAAI,CAACA,EACH,MAAM,IAAI,MAAM,uCAAuC,EAEzD,KAAK,QAAUA,CACjB,CACA,OAAO,KAAK,OACd,CAMA,OAAOA,EAAO,CACZ,OAAIA,IAAU,SACZ,KAAK,YAAcA,GAEd,KAAK,WACd,CAKA,KAAM,CAEJ,OAAO,IAAI,IACb,CAKA,WAAY,CACV,IAAMC,EAAS,KAAK,KAAK,EACzB,OAAOA,GAAU,MAAQA,GAAU,KAAK,IAAI,CAC9C,CACF,EAOMC,GAAN,KAAyB,CACvB,aAAc,CACZ,KAAK,WAAa,CAAC,CACrB,CAIA,IAAI,QAAS,CACX,OAAO,OAAO,KAAK,KAAK,UAAU,EAAE,MACtC,CAIA,OAAQ,CACN,KAAK,WAAa,CAAC,CACrB,CAOA,QAAQC,EAAK,CACX,OAAI,OAAO,KAAK,WAAWA,CAAG,EAAM,IAC3B,KAAK,WAAWA,CAAG,EAErB,IACT,CAOA,IAAIC,EAAO,CACT,OAAO,OAAO,KAAK,KAAK,UAAU,EAAEA,CAAK,GAAK,IAChD,CAMA,WAAWD,EAAK,CACd,KAAK,WAAWA,CAAG,EAAI,MACzB,CAOA,QAAQA,EAAKH,EAAO,CAClB,KAAK,WAAWG,CAAG,EAAIH,CACzB,CACF,EAKIK,IAA6B,IAAM,CACrC,MAAMA,CAAa,CACjB,aAAc,CACZ,KAAK,QAAU,KAAK,WAAW,CACjC,CAOA,YAAa,CACX,GAAI,CACF,IAAMC,EAAU,aAChB,OAAAA,EAAQ,QAAQ,iBAAkB,EAAE,EACpCA,EAAQ,WAAW,gBAAgB,EAC5BA,CACT,MAAc,CACZ,OAAO,IAAIJ,EACb,CACF,CAOA,QAAQC,EAAK,CACX,OAAO,KAAK,QAAQ,QAAQ,WAAaA,CAAG,CAC9C,CAMA,WAAWA,EAAK,CACd,KAAK,QAAQ,WAAW,WAAaA,CAAG,CAC1C,CAOA,QAAQA,EAAKI,EAAM,CACjB,KAAK,QAAQ,QAAQ,WAAaJ,EAAKI,CAAI,CAC7C,CAOA,UAAW,CACT,OAAO,KAAK,OACd,CACA,MAAO,CACL,KAAK,UAAO,SAA8BC,EAAmB,CAC3D,OAAO,IAAKA,GAAqBH,EACnC,CACF,CACA,MAAO,CACL,KAAK,WAA0BI,EAAmB,CAChD,MAAOJ,EACP,QAASA,EAAa,SACxB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EASCK,IAAmC,IAAM,CAC3C,MAAMA,UAA2BX,CAAW,CAC1C,YAAYY,EAAc,CACxB,MAAM,EACN,KAAK,aAAeA,EACpB,KAAK,SAAW,MAClB,CAOA,KAAKX,EAAO,CACV,OAAIA,IAAU,QACZ,KAAK,UAAUA,CAAK,EAEf,KAAK,UAAU,CACxB,CACA,OAAOA,EAAO,CACZ,OAAIA,IAAU,QACZ,KAAK,UAAUA,CAAK,EAEf,KAAK,UAAU,CACxB,CAKA,aAAc,CACZ,OAAO,KAAK,QACd,CAKA,YAAYG,EAAK,CACXA,IACF,KAAK,SAAWA,EAEpB,CACA,WAAY,CACV,IAAMF,EAAS,KAAK,aAAa,QAAQ,KAAK,SAAW,SAAS,EAClE,OAAIA,EACK,IAAI,KAAK,SAASA,EAAQ,EAAE,CAAC,EAE7B,IAEX,CACA,UAAUD,EAAO,CACXA,EACF,KAAK,aAAa,QAAQ,KAAK,SAAW,UAAWA,EAAM,QAAQ,EAAE,SAAS,CAAC,EAE/E,KAAK,aAAa,WAAW,KAAK,SAAW,SAAS,CAE1D,CACA,WAAY,CACV,IAAMY,EAAS,KAAK,aAAa,QAAQ,KAAK,SAAW,SAAS,EAClE,OAAIA,EACKA,IAAW,OAEX,EAEX,CACA,UAAUZ,EAAO,CACXA,EACF,KAAK,aAAa,QAAQ,KAAK,SAAW,UAAWA,EAAM,SAAS,CAAC,EAErE,KAAK,aAAa,QAAQ,KAAK,SAAW,UAAW,OAAO,CAEhE,CACA,MAAO,CACL,KAAK,UAAO,SAAoCQ,EAAmB,CACjE,OAAO,IAAKA,GAAqBE,GAAuBG,EAASR,EAAY,CAAC,CAChF,CACF,CACA,MAAO,CACL,KAAK,WAA0BI,EAAmB,CAChD,MAAOC,EACP,QAASA,EAAmB,SAC9B,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAIGI,EAAN,KAAmB,CAAC,EAKhBC,GAA0B,SAAUA,EAAY,CAIlD,OAAAA,EAAWA,EAAW,SAAc,CAAC,EAAI,WAIzCA,EAAWA,EAAW,KAAU,CAAC,EAAI,OAIrCA,EAAWA,EAAW,QAAa,CAAC,EAAI,UACjCA,CACT,EAAEA,IAAc,CAAC,CAAC,EAIdC,IAAqB,IAAM,CAC7B,MAAMA,CAAK,CACT,YAAYf,EAAQgB,EAAMC,EAAcC,EAAY,CAClD,KAAK,OAASlB,EACd,KAAK,KAAOgB,EACZ,KAAK,WAAaE,EAClB,KAAK,KAAO,GAAK,GACjB,KAAK,WAAa,GAClB,KAAK,WAAaJ,GAAW,KAC7B,KAAK,WAAa,IAAI,MACtB,KAAK,QAAU,GACf,KAAK,iBAAmB,GACxB,KAAK,YAAc,IAAIK,EACvB,KAAK,UAAY,IAAIA,EACrB,KAAK,iBAAmB,IAAIA,EAC5B,KAAK,UAAY,IAAIA,EACrB,KAAK,YAAc,IAAIA,EACnBF,IACF,KAAK,aAAeA,EACpB,KAAK,iBAAmB,IAE1B,KAAK,UAAU,EAAK,CACtB,CAMA,YAAYf,EAAK,CACf,GAAI,KAAK,kBAAkBO,GACzB,KAAK,OAAO,YAAYP,CAAG,MAE3B,OAAM,IAAI,MAAM,6EAA6E,CAEjG,CAKA,qBAAsB,CACpB,OAAO,KAAK,gBACd,CAMA,oBAAoBH,EAAO,CACzB,GAAI,CAAC,KAAK,aACR,MAAM,IAAI,MAAM,gFAAgF,EAElG,OAAO,KAAK,iBAAmBA,CACjC,CAKA,YAAa,CACX,OAAO,KAAK,UACd,CAMA,WAAWqB,EAAS,CAClB,GAAIA,IAAY,GACd,KAAK,WAAa,UACT,OAAOA,GAAY,UAAYA,GAAW,EACnD,KAAK,WAAaA,MAElB,OAAM,IAAI,MAAM,qDAAqD,EAEvE,OAAO,KAAK,UACd,CAKA,SAAU,CACR,OAAO,KAAK,IACd,CAMA,QAAQA,EAAS,CACf,GAAIA,GAAW,EACb,MAAM,IAAI,MAAM,gCAAgC,EAElD,OAAO,KAAK,KAAOA,CACrB,CAKA,eAAgB,CACd,OAAO,KAAK,UACd,CACA,cAAcrB,EAAO,CACnB,OAAO,KAAK,WAAaA,CAC3B,CAMA,cAAcsB,EAAS,CACrB,KAAK,gBAAgB,EACrB,IAAMC,EAAO,KACb,QAAW3B,KAAU0B,EAAS,CAC5B,IAAMzB,EAAU,CACd,WAAY,KAAK,UACnB,EACM2B,EAAM,IAAI7B,GAAUC,EAAQC,CAAO,EACzC2B,EAAI,UAAUC,GAAQ,CACpBF,EAAK,UAAUE,EAAK,MAAOA,EAAK,SAAS,CAC3C,CAAC,EACD,KAAK,WAAW,KAAKD,CAAG,CAC1B,CACA,OAAO,KAAK,UACd,CAKA,eAAgB,CACd,OAAO,KAAK,UACd,CAIA,iBAAkB,CAChB,QAAWA,KAAO,KAAK,WACrBA,EAAI,MAAM,EACVA,EAAI,YAAY,EAElB,KAAK,WAAW,OAAS,CAC3B,CAKA,WAAY,CACV,OAAO,KAAK,OACd,CAKA,UAAW,CACT,OAAO,KAAK,MACd,CAIA,MAAME,EAAY,CAChB,KAAK,kBAAkB,YAAY,EACnC,KAAK,kBAAkB,eAAe,EACtC,IAAMC,EAAW,KAAK,WAAiB,KAAK,WAAT,EACnC,GAAI,CAACD,EAAY,CACf,IAAM1B,EAAQ,IAAI,KAAK,KAAK,OAAO,IAAI,EAAE,QAAQ,GAAK,KAAK,KAAO2B,GAAW,GAAI,EACjF,KAAK,OAAO,KAAK3B,CAAK,CACxB,CACI,KAAK,QACP,KAAK,YAAY,EAEd,KAAK,UACR,KAAK,eAAe,EACpB,KAAK,iBAAiB,EAAI,GAE5B,KAAK,QAAU,GACf,IAAM4B,EAAU,IAAM,CACpB,KAAK,KAAK,IAAI,IAAM,CACL,KAAK,cAAcD,CAAO,EAC5B,GACT,KAAK,kBAAkB,YAAY,EACnC,KAAK,6BAA6BC,EAAS,GAAI,GAE/C,KAAK,YAAY,CAErB,CAAC,CACH,EACA,KAAK,6BAA6BA,EAAS,GAAI,CACjD,CAIA,6BAA6BA,EAASC,EAAW,CAC/C,KAAK,KAAK,kBAAkB,IAAM,CAChC,KAAK,WAAa,YAAYD,EAASC,CAAS,CAClD,CAAC,CACH,CAIA,MAAO,CACL,KAAK,cAAc,EACnB,KAAK,iBAAiB,EAAK,EAC3B,KAAK,kBAAkB,YAAY,EACnC,KAAK,kBAAkB,eAAe,EACtC,KAAK,UAAU,EAAK,EACpB,KAAK,QAAU,GACf,KAAK,OAAO,KAAK,IAAI,CACvB,CAIA,SAAU,CACR,KAAK,cAAc,EACnB,KAAK,iBAAiB,EAAK,EAC3B,KAAK,kBAAkB,YAAY,EACnC,KAAK,kBAAkB,eAAe,EACtC,KAAK,UAAU,EAAI,EACnB,KAAK,QAAU,GACf,KAAK,UAAY,EACjB,KAAK,UAAU,KAAK,IAAI,CAC1B,CAMA,UAAUC,EAAOC,EAAW,CAC1B,GAAK,KAAK,QAGV,IAAI,KAAK,YAAc,KAAK,OAAO,UAAU,EAAG,CAC9C,KAAK,QAAQ,EACb,MACF,CACA,KAAK,YAAY,KAAKA,CAAS,GAC3BD,IAAU,IAAQ,KAAK,aAAef,GAAW,MAAQ,KAAK,aAAeA,GAAW,SAAW,CAAC,KAAK,OAAO,OAAO,IACzH,KAAK,MAAMe,CAAK,EAEpB,CACA,UAAU9B,EAAO,CACf,KAAK,OAASA,EACd,KAAK,OAAO,OAAOA,CAAK,CAC1B,CACA,aAAc,CACZ,KAAK,UAAU,CAAC,KAAK,MAAM,EACvB,KAAK,QACP,KAAK,YAAY,KAAK,IAAI,EAC1B,KAAK,cAAc,EACf,KAAK,WAAa,IACpB,KAAK,UAAY,KAAK,WACtB,KAAK,YAAY,EACjB,KAAK,8BAA8B,IAAM,CACvC,KAAK,kBAAkB,CACzB,EAAG,GAAI,KAGT,KAAK,iBAAiB,EAAI,EAC1B,KAAK,UAAU,KAAK,IAAI,EACxB,KAAK,eAAe,GAEtB,KAAK,kBAAkB,YAAY,CACrC,CACA,8BAA8BgC,EAAYH,EAAW,CACnD,KAAK,KAAK,kBAAkB,IAAM,CAChC,KAAK,cAAgB,YAAY,IAAM,CACrCG,EAAW,CACb,EAAGH,CAAS,CACd,CAAC,CACH,CACA,iBAAiBI,EAAQ,CACvB,QAAWC,KAAa,KAAK,WACvBD,EACFC,EAAU,OAAO,EAEjBA,EAAU,MAAM,CAGtB,CACA,cAAcP,EAAS,CACrB,IAAMQ,EAAM,KAAK,OAAO,IAAI,EAE5B,OADa,KAAK,OAAO,KAAK,GAAKA,GACvB,QAAQ,EAAIA,EAAI,QAAQ,EAAIR,EAAU,GACpD,CACA,mBAAoB,CAClB,KAAK,KAAK,IAAI,IAAM,CAClB,KAAK,YAAY,CACnB,CAAC,CACH,CACA,aAAc,CACZ,IAAMS,EAAO,KAAK,cAAc,KAAK,UAAU,EAC/C,GAAIA,EAAO,EAAG,CACZ,KAAK,kBAAkB,eAAe,EACtC,KAAK,UAAU,EAAI,EACnB,MACF,CACA,GAAI,CAAC,KAAK,OACR,OAEF,GAAI,KAAK,WAAa,EAAG,CACvB,KAAK,QAAQ,EACb,MACF,CACA,KAAK,iBAAiB,KAAK,KAAK,SAAS,EACzC,IAAMC,GAAe,KAAK,WAAa,GAAK,IAAOD,EACnD,KAAK,UAAY,KAAK,MAAMC,EAAc,GAAI,CAChD,CACA,kBAAkBC,EAAY,CAC5B,IAAMC,EAAS,KAAKD,CAAU,EAC1BC,IAAW,MAAQ,OAAOA,EAAW,MACvC,cAAc,KAAKD,CAAU,CAAC,EAC9B,KAAKA,CAAU,EAAI,KAEvB,CACA,gBAAiB,CACX,CAAC,KAAK,cAAgB,CAAC,KAAK,mBAG5B,KAAK,SACP,KAAK,aAAa,KAAK,EAEzB,KAAK,aAAa,MAAM,EAC1B,CACA,eAAgB,CACV,CAAC,KAAK,cAAgB,CAAC,KAAK,kBAGhC,KAAK,aAAa,KAAK,CACzB,CAIA,aAAc,CACZ,KAAK,KAAK,EACV,KAAK,gBAAgB,CACvB,CACA,MAAO,CACL,KAAK,UAAO,SAAsB9B,EAAmB,CACnD,OAAO,IAAKA,GAAqBQ,GAASH,EAASd,CAAU,EAAMc,EAAY2B,CAAM,EAAM3B,EAASC,EAAc,CAAC,EAAMD,EAAS4B,GAAa,CAAC,CAAC,CACnJ,CACF,CACA,MAAO,CACL,KAAK,WAA0BhC,EAAmB,CAChD,MAAOO,EACP,QAASA,EAAK,SAChB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAQG0B,GAAN,KAAoB,CAClB,YAAY9C,EAAQ+C,EAAWb,EAAQ,GAAO,CAC5C,KAAK,OAASlC,EACd,KAAK,UAAY+C,EACjB,KAAK,MAAQb,CACf,CACF,EAKMc,GAAN,KAAsB,CACpB,YAAYC,EAAUC,EAAU,CAC9B,KAAK,SAAWD,EAChB,KAAK,SAAWC,EAChB,KAAK,WAAa,GAClB,KAAK,YAAc,IAAI1B,CACzB,CAIA,QAAS,CAIP,GAAI,KAAK,QAAQ,IAAI,eAAe,IAAM,GAAM,CAC9C,KAAK,QAAQ,OAAO,IAAI,IAAM,KAAK,OAAO,CAAC,EAC3C,MACF,CACI,CAAC,KAAK,YAAc,KAAK,UAC3B,KAAK,SAAS,IAAI,EAEpB,KAAK,WAAa,EACpB,CAIA,QAAS,CACH,KAAK,YAAc,KAAK,UAC1B,KAAK,SAAS,IAAI,EAEpB,KAAK,WAAa,EACpB,CACF,EACM2B,GAAuB,IAIvBC,GAAN,cAAyCJ,EAAgB,CACvD,YAAYK,EAAQC,EAAQC,EAAM,CAChC,MAAM,KAAM,IAAI,EAChB,KAAK,OAASF,EACd,KAAK,OAASC,EACd,KAAK,KAAOC,EACZ,KAAK,kBAAoB,IAAIC,GACzB,OAAO,KAAK,MAAS,WACvB,KAAK,KAAO,CACV,cAAe,KAAK,KACpB,QAAS,EACX,GAEF,KAAK,KAAO,KAAK,MAAQ,CACvB,QAAS,GACT,cAAeL,EACjB,GACI,KAAK,KAAK,gBAAkB,QAAa,KAAK,KAAK,gBAAkB,QACvE,KAAK,KAAK,cAAgBA,IAE5B,KAAK,cAAgB,KAAK,KAAK,cAC/B,KAAK,QAAU,CAAC,CAAC,KAAK,KAAK,OAC7B,CACA,WAAWlD,EAAS,CAClB,GAAIA,GAAS,YAAcwD,GAAiBxD,EAAQ,UAAU,EAC5D,OAEF,IAAMyD,EAAc,OAAO,KAAK,QAAW,WAAa,KAAK,OAAO,EAAI,KAAK,OACvEH,EAAO,KAAK,QAAU,CAC1B,QAAS,EACX,EAAI,KACEI,EAAa,KAAK,OAAO,MAAM,GAAG,EAAE,IAAIC,GAAaC,GAAUH,EAAaE,EAAWL,CAAI,CAAC,EAClG,KAAK,SAAWO,GAAM,GAAGH,CAAU,EACnC,KAAK,SAAW,KAAK,SAAS,KAAKI,GAAOhB,GAAa,CAAC,KAAK,YAAYA,CAAS,CAAC,CAAC,EAChF,KAAK,cAAgB,IACvB,KAAK,SAAW,KAAK,SAAS,KAAKiB,GAAa,KAAK,aAAa,CAAC,GAErE,IAAMC,EAAUlB,GAAa,KAAK,YAAY,KAAK,IAAID,GAAc,KAAMC,CAAS,CAAC,EACrF,KAAK,SAAW,IAAM,KAAK,kBAAoB,KAAK,SAAS,UAAUkB,CAAO,EAC9E,KAAK,SAAW,IAAM,KAAK,kBAAkB,YAAY,CAC3D,CAMA,YAAYC,EAAO,CACjB,MAAO,EACT,CAKA,IAAI,SAAU,CACZ,MAAO,CACL,QAAS,KAAK,QACd,cAAe,KAAK,aACtB,CACF,CACF,EAKMC,GAAN,cAAsCf,EAA2B,CAC/D,YAAYE,EAAQrD,EAAS,CAC3B,MAAM,IAAM,SAAS,gBAAiBqD,EAAQrD,CAAO,CACvD,CAMA,YAAYiE,EAAO,CAEjB,MAAI,GAAAA,EAAM,OAAS,cAEnBA,EAAM,eAAiBA,EAAM,cAAc,YAAc,GAAKA,EAAM,cAAc,YAAc,GAEhGA,EAAM,YAAc,QAAU,CAACA,EAAM,WAAa,CAACA,EAAM,WAI3D,CACF,EAKME,GAAN,cAAoChB,EAA2B,CAC7D,YAAYE,EAAQrD,EAAS,CAC3B,MAAM,IAAM,OAAQqD,EAAQrD,CAAO,CACrC,CACF,EAKMoE,GAAN,cAAqCD,EAAsB,CACzD,YAAYnE,EAAU,IAAK,CACzB,MAAM,UAAWA,CAAO,CAC1B,CAMA,YAAYiE,EAAO,CACjB,MAAI,EAAAA,EAAM,KAAOA,EAAM,IAAI,QAAQ,UAAU,GAAK,GAAKA,EAAM,IAAI,QAAQ,SAAS,GAAK,EAIzF,CACF,EAuBA,IAAII,IAA6B,IAAM,CACrC,MAAMA,CAAa,CACjB,OAAO,SAAU,CACf,MAAO,CACL,SAAUA,EACV,UAAW,CAACC,GAAoB,CAC9B,QAASC,EACT,YAAaD,EACf,EAAGE,EAAI,CACT,CACF,CACA,MAAO,CACL,KAAK,UAAO,SAA8BC,EAAmB,CAC3D,OAAO,IAAKA,GAAqBJ,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBK,EAAiB,CAC7C,KAAML,CACR,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAyBM,EAAiB,CAC7C,UAAW,CAACC,EAAY,CAC1B,CAAC,CACH,CACF,CACA,OAAOP,CACT,GAAG,EAIH,SAASQ,GAA8BC,EAAS,CAC9C,MAAO,CAAC,IAAIC,GAAwB,oFAAqFD,CAAO,EAAG,IAAIE,GAAuBF,CAAO,CAAC,CACxK,CACA,IAAMG,GAA2BJ,GAA8B,yBEx5B9DK,EAAA,CAAA,EACCC,EAAA,EAAA,IAAA,CAAA,iCAKCC,EAAA,EAAA,OAAA,EAAA,EAAyMC,EAAA,CAAA,EAAwBC,EAAA,mBAAxBC,EAAA,EAAAC,EAAAC,EAAAC,cAAAC,MAAA,0BAKxMP,EAAA,EAAA,KAAA,EAAA,EAA4GC,EAAA,EAAA,qBAAA,EAAmBC,EAAA,4BAQ3HH,EAAA,EAAA,OAAA,EAAA,2BAA4FS,EAAA,YAAAC,EAAAC,IAAAC,CAAA,sCAPhGX,EAAA,EAAA,KAAA,EAAA,EAAqI,EAAA,QAAA,EAAA,EAC1G,EAAA,UAAA,EACfD,EAAA,EAAA,MAAA,EAAA,EAA0B,EAAA,KAAA,EAAO,EAAA,MAAA,EAAA,EAA0BG,EAAA,EACrEF,EAAA,EAAA,IAAA,EAAI,EAAA,KAAA,EAAA,EACsB,EAAA,MAAA,EAAA,EAAyGC,EAAA,EAAA,MAAA,EAAMC,EAAA,EAAM,EAC9IF,EAAA,GAAA,KAAA,EAAA,EACCD,EAAA,GAAA,OAAA,EAAA,EACAa,EAAA,GAAAC,GAAA,EAAA,EAAA,OAAA,EAAA,EACDX,EAAA,EACAF,EAAA,GAAA,KAAA,EAAA,EAAyB,GAAA,IAAA,EAAA,EAAgDc,EAAA,QAAA,UAAA,CAAA,IAAAL,EAAAM,EAAAC,CAAA,EAAAC,UAAAZ,EAAAa,EAAA,CAAA,EAAA,OAAAC,EAASd,EAAAe,mBAAAX,CAAA,CAAqB,CAAA,CAAA,EAAqCR,EAAA,EAAA,EAAUC,EAAA,EAAI,EAAK,EAC3J,EACE,4BALCC,EAAA,EAAA,EAAAK,EAAA,YAAAC,EAAAY,aAAAV,CAAA,EACCR,EAAA,EAAAK,EAAA,OAAAC,EAAAa,gBAAA,KAAAb,EAAAa,gBAAA,KAAAb,EAAAa,gBAAA,GAAA,EAEoInB,EAAA,CAAA,EAAAC,EAAAK,EAAAc,IAAA,6BAjBlJvB,EAAA,EAAA,UAAA,CAAA,EAAuE,EAAA,IAAA,CAAA,EAErEY,EAAA,EAAAY,GAAA,EAAA,EAAA,OAAA,CAAA,EACDtB,EAAA,EACAF,EAAA,EAAA,MAAA,CAAA,EACCD,EAAA,EAAA,MAAA,CAAA,EACAC,EAAA,EAAA,KAAA,CAAA,EACCY,EAAA,EAAAa,GAAA,EAAA,EAAA,KAAA,CAAA,EAA4G,EAAAC,GAAA,GAAA,EAAA,KAAA,EAAA,EAc7GxB,EAAA,EAAK,EACA,mBAtBwCM,EAAA,YAAA,SAAA,EAEtCL,EAAA,CAAA,EAAAK,EAAA,OAAAH,EAAAC,cAAAC,OAAA,CAAA,EAKeJ,EAAA,CAAA,EAAAK,EAAA,OAAAH,EAAAC,cAAAC,SAAA,CAAA,EACaJ,EAAA,EAAAK,EAAA,UAAAH,EAAAC,aAAA,6BAbtCR,EAAA,CAAA,EACCc,EAAA,EAAAe,GAAA,EAAA,EAAA,eAAA,CAAA,EAAyC,EAAAC,GAAA,EAAA,EAAA,UAAA,CAAA,sBAA1BzB,EAAA,EAAAK,EAAA,OAAA,CAAAH,EAAAwB,iBAAA,EAIL1B,EAAA,EAAAK,EAAA,OAAAH,EAAAwB,iBAAA,6BA2BT7B,EAAA,EAAA,IAAA,EAAA,EAAmM,EAAA,OAAA,EAAA,EACxBC,EAAA,CAAA,EAAwBC,EAAA,EAAO,mBAA/BC,EAAA,CAAA,EAAAC,EAAAC,EAAAC,cAAAC,MAAA,4BAWrKR,EAAA,EAAA,OAAA,EAAA,2BAA4FS,EAAA,YAAAsB,EAAApB,IAAAC,CAAA,sCAPhGX,EAAA,EAAA,KAAA,EAAA,EAAiH,EAAA,QAAA,EAAA,EACjE,EAAA,UAAA,EACpCD,EAAA,EAAA,MAAA,EAAA,EAA0B,EAAA,KAAA,EAAO,EAAA,MAAA,EAAA,EAA0BG,EAAA,EACrEF,EAAA,EAAA,IAAA,EAAI,EAAA,KAAA,EAAA,EACsB,EAAA,MAAA,EAAA,EAAyGC,EAAA,EAAA,MAAA,EAAMC,EAAA,EAAM,EAC9IF,EAAA,GAAA,KAAA,EAAA,EACCD,EAAA,GAAA,OAAA,EAAA,EACAa,EAAA,GAAAmB,GAAA,EAAA,EAAA,OAAA,EAAA,EACD7B,EAAA,EACAF,EAAA,GAAA,KAAA,EAAA,EAAyB,GAAA,IAAA,EAAA,EAAgDc,EAAA,QAAA,UAAA,CAAA,IAAAgB,EAAAf,EAAAiB,CAAA,EAAAf,UAAAZ,EAAAa,EAAA,CAAA,EAAA,OAAAC,EAASd,EAAAe,mBAAAU,CAAA,CAAqB,CAAA,CAAA,EAAqC7B,EAAA,EAAA,EAAUC,EAAA,EAAI,EAAK,EAC3J,EACE,4BALCC,EAAA,EAAA,EAAAK,EAAA,YAAAsB,EAAAT,aAAAV,CAAA,EACCR,EAAA,EAAAK,EAAA,OAAAsB,EAAAR,gBAAA,KAAAQ,EAAAR,gBAAA,KAAAQ,EAAAR,gBAAA,GAAA,EAEoInB,EAAA,CAAA,EAAAC,EAAA0B,EAAAP,IAAA,6BAflJvB,EAAA,EAAA,UAAA,EAAA,EACCY,EAAA,EAAAqB,GAAA,EAAA,EAAA,IAAA,EAAA,EAGAjC,EAAA,EAAA,MAAA,EAAA,EAAkE,EAAA,KAAA,CAAA,EAEhEY,EAAA,EAAAsB,GAAA,GAAA,EAAA,KAAA,EAAA,EAaDhC,EAAA,EAAK,EACA,mBApBcM,EAAA,YAAA,SAAA,EACEL,EAAA,EAAAK,EAAA,OAAAH,EAAAwB,iBAAA,EAKc1B,EAAA,CAAA,EAAAK,EAAA,UAAAH,EAAAC,aAAA,6BAPtCR,EAAA,CAAA,EACCc,EAAA,EAAAuB,GAAA,EAAA,EAAA,UAAA,EAAA,sBAA8ChC,EAAA,EAAAK,EAAA,OAAAH,EAAAC,cAAAC,OAAA,CAAA,GDlB/C,IAAa6B,IAAqB,IAAA,CAA5B,MAAOA,CAAqB,CAKjC,IAAW9B,eAAa,CACvB,OAAO,KAAK+B,gBAAgB/B,aAC7B,CAEQgC,uBAAqB,CACvB,KAAKC,cACT,KAAKV,kBAAoB,GACzB,KAAKQ,gBAAgBC,sBAAqB,EAAGE,UAAU,CACtDC,KAAOC,GAAY,CAClB,KAAKb,kBAAoBa,CAC1B,EACAC,MAAQC,GAAO,CACdC,QAAQC,IAAIF,CAAG,CAChB,EACA,EAEH,CAEQG,8BAA8BC,EAAmB,CAExD,GADA,KAAKV,sBAAqB,EACtBU,EAAK1B,iBAAmB,IAE3B,GAAI0B,EAAKC,UAAUC,MAAM,GAAG,EAAE3C,OAAS,EAAG,CACzC,IAAI4C,EAAWH,EAAKC,UAAUC,MAAM,GAAG,EAAE,CAAC,EAC1C,KAAKE,OAAOC,eAAeF,EAAU,CAAEG,YAAa,CAAE,cAAiBN,EAAKO,aAAa,CAAE,CAAE,CAC9F,MAEC,KAAKH,OAAOI,KAAKR,EAAKC,SAAS,OAK5BD,EAAKC,YAAc,IACtB,KAAKG,OAAOI,KAAKR,EAAKC,SAAS,CAGlC,CAEA7B,mBAAmB4B,EAAmB,CACrC,GAAIA,EAAK1B,iBAAmB,IAAK,CAChC,IAAImC,EAAwB,CAAA,EACxBC,EAA4B,CAAA,EAM5BC,EAA8BX,EAAKC,UAAUC,MAAM,GAAG,EAAE,CAAC,EAAEA,MAAM,GAAG,EAAE,CAAC,EAC3E,QAASU,EAAI,EAAGA,EAAI,KAAKtD,cAAcC,OAAQqD,IAC1C,KAAKtD,cAAcsD,CAAC,EAAEtC,iBAAmB,KAAO,KAAKhB,cAAcsD,CAAC,EAAEC,WAAaF,IACtFd,QAAQC,IAAI,KAAKxC,cAAcsD,CAAC,EAAEE,oBAAoB,EACtDL,EAAsBM,KAAK,KAAKzD,cAAcsD,CAAC,EAAEE,oBAAoB,EACrEJ,EAA0BK,KAAK,KAAKzD,cAAcsD,CAAC,EAAEL,aAAa,GAGhEE,EAAsBlD,OAAS,IAElC,KAAKyD,WAAWN,0BAA4BA,EAC5C,KAAKO,iBAAiBC,4BAA4BT,CAAqB,EAAEjB,UAAU,CAClFC,KAAMA,IAAK,CACV,KAAKM,8BAA8BC,CAAI,CACxC,EACAL,MAAQC,GAAO,CACdC,QAAQC,IAAIF,CAAG,CAChB,EACA,EAEH,MACSI,EAAK1B,gBAAkB,IAE/B,KAAKyB,8BAA8BC,CAAI,EAGvC,KAAKiB,iBAAiBE,mBAAmBnB,EAAKc,oBAAoB,EAAEtB,UAAU,CAC7EC,KAAMA,IAAK,CACV,KAAKM,8BAA8BC,CAAI,CACxC,EACAL,MAAQC,GAAO,CACdC,QAAQC,IAAIF,CAAG,CAChB,EACA,CAEH,CAEQwB,mBAAiB,CACxB,KAAKC,oBAAsB,KAAKhC,gBAAgBiC,oBAAoB9B,UAAU,CAC7EC,KAAO8B,GAAc,CAChBA,GAAS,MACZ,KAAKjC,sBAAqB,CAE5B,EACAK,MAAQC,GAAY,CACnBC,QAAQC,IAAIF,CAAG,CAChB,EACA,CACF,CAEA4B,aAAW,CACN,KAAKH,qBACR,KAAKA,oBAAoBI,YAAW,CAEtC,CAEAC,YACQC,EACCvB,EACAY,EACA3B,EACA4B,EACDW,EAAyB,CALzB,KAAAD,WAAAA,EACC,KAAAvB,OAAAA,EACA,KAAAY,WAAAA,EACA,KAAA3B,gBAAAA,EACA,KAAA4B,iBAAAA,EACD,KAAAW,SAAAA,EAjHA,KAAAP,oBAAuC,KACvC,KAAA9B,YAAuB,GAC/B,KAAAV,kBAA6B,GAiH5B,KAAKU,YAAc,KAAKqC,SAASrC,YAAW,EAC5C,KAAK6B,kBAAiB,CACvB,iDAtHYhC,GAAqByC,EAAAC,CAAA,EAAAD,EAAAE,CAAA,EAAAF,EAAAG,EAAA,EAAAH,EAAAI,EAAA,EAAAJ,EAAAK,EAAA,EAAAL,EAAAM,CAAA,CAAA,CAAA,CAAA,+BAArB/C,EAAqBgD,UAAA,CAAA,CAAA,kBAAA,CAAA,EAAAC,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,MAAA,EAAA,CAAA,cAAA,GAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,EAAA,WAAA,0BAAA,EAAA,QAAA,UAAA,mBAAA,UAAA,eAAA,MAAA,EAAA,CAAA,cAAA,GAAA,EAAA,WAAA,EAAA,CAAA,oBAAA,GAAA,OAAA,SAAA,EAAA,WAAA,UAAA,0BAAA,EAAA,QAAA,UAAA,mBAAA,UAAA,eAAA,OAAA,UAAA,cAAA,EAAA,CAAA,QAAA,4JAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,GAAA,EAAA,QAAA,QAAA,OAAA,QAAA,EAAA,CAAA,EAAA,WAAA,EAAA,CAAA,EAAA,QAAA,EAAA,UAAA,OAAA,aAAA,QAAA,aAAA,SAAA,aAAA,MAAA,EAAA,CAAA,kBAAA,GAAA,QAAA,+CAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,GAAA,QAAA,2EAAA,EAAA,QAAA,SAAA,EAAA,CAAA,EAAA,gBAAA,OAAA,QAAA,OAAA,mBAAA,UAAA,UAAA,MAAA,YAAA,OAAA,WAAA,WAAA,MAAA,IAAA,QAAA,OAAA,SAAA,OAAA,cAAA,GAAA,EAAA,CAAA,kBAAA,GAAA,EAAA,aAAA,SAAA,SAAA,OAAA,SAAA,MAAA,EAAA,CAAA,kBAAA,GAAA,EAAA,mBAAA,OAAA,UAAA,MAAA,aAAA,OAAA,cAAA,QAAA,EAAA,CAAA,EAAA,QAAA,MAAA,EAAA,CAAA,EAAA,QAAA,MAAA,EAAA,CAAA,EAAA,QAAA,MAAA,EAAA,CAAA,EAAA,UAAA,KAAA,EAAA,CAAA,EAAA,UAAA,eAAA,gBAAA,OAAA,mBAAA,UAAA,QAAA,OAAA,SAAA,MAAA,EAAA,CAAA,EAAA,WAAA,EAAA,CAAA,QAAA,mBAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,OAAA,sBAAA,EAAA,YAAA,EAAA,iBAAA,YAAA,EAAA,OAAA,EAAA,CAAA,EAAA,cAAA,MAAA,EAAA,WAAA,EAAA,CAAA,cAAA,GAAA,QAAA,2DAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,cAAA,GAAA,EAAA,UAAA,eAAA,eAAA,OAAA,WAAA,QAAA,EAAA,WAAA,EAAA,CAAA,oBAAA,GAAA,QAAA,kCAAA,OAAA,SAAA,QAAA,wFAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,GAAA,EAAA,SAAA,MAAA,QAAA,OAAA,UAAA,KAAA,EAAA,CAAA,kBAAA,GAAA,QAAA,uDAAA,EAAA,QAAA,SAAA,EAAA,CAAA,oBAAA,GAAA,OAAA,SAAA,EAAA,UAAA,0BAAA,EAAA,QAAA,UAAA,mBAAA,UAAA,WAAA,WAAA,UAAA,cAAA,EAAA,CAAA,EAAA,gBAAA,OAAA,QAAA,OAAA,mBAAA,UAAA,UAAA,MAAA,YAAA,OAAA,WAAA,WAAA,MAAA,MAAA,QAAA,OAAA,SAAA,OAAA,cAAA,GAAA,EAAA,CAAA,kBAAA,GAAA,EAAA,mBAAA,OAAA,UAAA,MAAA,aAAA,MAAA,EAAA,CAAA,EAAA,QAAA,OAAA,cAAA,QAAA,CAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GCblC9E,EAAA,EAAAgF,GAAA,EAAA,EAAA,eAAA,CAAA,EAA2C,EAAAC,GAAA,EAAA,EAAA,eAAA,CAAA,QAA5BrF,EAAA,OAAA,CAAAmF,EAAAhB,WAAAmB,QAAA,EA8BA3F,EAAA,EAAAK,EAAA,OAAAmF,EAAAhB,WAAAmB,QAAA,yDDjBF1D,CAAqB,GAAA,EETlC,IAAA2D,GAAiB,mFCHhBC,EAAA,CAAA,EACCC,EAAA,EAAA,MAAA,CAAA,EAAoGC,EAAA,CAAA,EAA0BC,EAAA,uBAA1BC,EAAA,CAAA,EAAAC,EAAA,IAAAC,EAAAC,KAAAC,gBAAA,GAAA,6BAGrGR,EAAA,CAAA,EACCC,EAAA,EAAA,MAAA,CAAA,EAA6IC,EAAA,CAAA,EAAwBC,EAAA,uBAAxBC,EAAA,CAAA,EAAAK,EAAAH,EAAAC,KAAAC,eAAA,6BAN/IR,EAAA,CAAA,EACCU,EAAA,EAAAC,GAAA,EAAA,EAAA,eAAA,CAAA,EAAiC,EAAAC,GAAA,EAAA,EAAA,eAAA,CAAA,sBAAlBR,EAAA,EAAAS,EAAA,OAAAP,EAAAQ,UAAA,EAIAV,EAAA,EAAAS,EAAA,OAAA,CAAAP,EAAAQ,UAAA,sCAeVb,EAAA,EAAA,KAAA,EAAA,EAAuCc,EAAA,QAAA,UAAA,CAAA,IAAAC,EAAAC,EAAAC,CAAA,EAAAC,UAAAb,EAAAc,EAAA,CAAA,EAAA,OAAAC,EAASf,EAAAgB,cAAAN,EAAAO,QAAA,CAA2B,CAAA,CAAA,EAC1ErB,EAAA,CAAA,EACDC,EAAA,mCAF4FU,EAAA,UAAAW,EAAA,EAAAC,GAAA,CAAAnB,EAAAQ,UAAA,CAAA,EAC3FV,EAAA,EAAAC,EAAA,IAAAW,EAAAU,KAAA,GAAA,6BALJzB,EAAA,EAAA,IAAA,EAAoC,EAAA,IAAA,EAC/B,EAAA,MAAA,CAAA,EACsDC,EAAA,CAAA,EAAaC,EAAA,EACtEF,EAAA,EAAA,KAAA,CAAA,EACCS,EAAA,EAAAiB,GAAA,EAAA,EAAA,KAAA,EAAA,EAGDxB,EAAA,EAAK,EACD,iCANCC,EAAA,CAAA,EAAAS,EAAA,UAAAW,EAAA,EAAAI,GAAAtB,EAAAQ,WAAA,OAAA,SAAA,CAAA,EAAoDV,EAAA,EAAAK,EAAAoB,EAAAC,IAAA,EAEpC1B,EAAA,CAAA,EAAAS,EAAA,UAAAgB,EAAAE,QAAA,6BAV1B/B,EAAA,CAAA,EACCgC,EAAA,EAAA,IAAA,EACA/B,EAAA,EAAA,MAAA,CAAA,EAA8B,EAAA,MAAA,CAAA,EACqDC,EAAA,EAAA,iBAAA,EAAeC,EAAA,EACjGF,EAAA,EAAA,QAAA,CAAA,EAAsC,EAAA,UAAA,EAC3B+B,EAAA,EAAA,MAAA,CAAA,EAA2B,EAAA,KAAA,EAAO7B,EAAA,EAC5CO,EAAA,EAAAuB,GAAA,EAAA,EAAA,KAAA,CAAA,EAUD9B,EAAA,EAAQ,EAET6B,EAAA,GAAA,IAAA,sBAfM5B,EAAA,CAAA,EAAAS,EAAA,UAAAW,EAAA,EAAAI,GAAAtB,EAAAQ,WAAA,OAAA,SAAA,CAAA,EAGiBV,EAAA,CAAA,EAAAS,EAAA,UAAAP,EAAA4B,SAAA,GDExB,IAAaC,IAAsB,IAAA,CAA7B,MAAOA,CAAsB,CAYlCC,YACSC,EACAC,EACAC,EAAyB,CAFzB,KAAAF,OAAAA,EACA,KAAAC,eAAAA,EACA,KAAAC,SAAAA,EAdA,KAAAC,YAAsB,aAE/B,KAAAC,UAAqB,GACrB,KAAAlC,KAAqB,KACrB,KAAAmC,eAAyB,GACzB,KAAA5B,WAAsB6B,EAAkBC,aAAY,EACpD,KAAAV,UAGM,CAAA,EAYE,KAAAW,QAAe,IANnB,CAEuCC,SAASC,EAAM,CACzD,KAAKjC,WAAa6B,EAAkBC,aAAY,CACjD,CAGAtB,cAAc0B,EAAgB,CAC7B,KAAKH,QAAU,KAAKR,OAAOY,KAC1BC,GACA,CACCC,aAAc,GACdC,WAAY,mBACZC,MAAO,QACPC,OAAQ,QACRC,KAAM,CACLP,SAAUA,GAEX,EAEF,KAAKH,QAAQW,YAAW,EAAGC,UAAU,CACpCC,KAAOC,GAAe,CACjBA,IAAW,IACdC,GAAAA,QAAKC,KAAK,CAAEC,MAAO,GAAIC,KAAMJ,EAAQK,KAAM,OAAO,CAAE,CAEtD,EACA,CACF,CAEAC,aAAW,CACN,KAAKC,gBACR,KAAKA,eAAeC,YAAW,EAE5B,KAAKtB,SAAW,MACnB,KAAKA,QAAQuB,MAAK,CAEpB,CAEAC,iBAAe,CACf,CAEAC,UAAQ,CACP,KAAKJ,eAAiB,KAAK3B,SAASgC,kBAAkBd,UAAU,CAC/DC,KAAMA,IAAK,CACV,KAAKnD,KAAO,KAAKgC,SAASiC,WAAU,EACpC,KAAK/B,UAAY,GACZ,KAAKF,SAASkC,YAAW,IACzB,KAAKlE,KAAKmE,eAAiB,MAAQ,KAAKnE,KAAKmE,cAAcC,OAAS,GACvE,KAAKlC,UAAY,GACjB,KAAKP,UAAY,CAAA,EACjB,KAAK3B,KAAKmE,cAAcE,QACtBC,GAAK,CACL,IAAIC,EAAI,KAAK5C,UAAU6C,KAAMC,GAAWA,EAAElD,OAAS+C,EAAE/C,IAAI,EACzD,GAAIgD,EACHA,EAAE/C,SAASkD,KAAKJ,CAAC,MAEb,CACJ,IAAIK,EAAS,CAAEpD,KAAM+C,EAAE/C,KAAMC,SAAU,CAAA,CAAE,EACzCmD,EAAEnD,SAASkD,KAAKJ,CAAC,EACjB,KAAK3C,UAAU+C,KAAKC,CAAC,CACtB,CACD,CAAC,GAIF,KAAKhD,UAAY,CAAA,EAIpB,EACAiD,MAAQA,GAAc,CACrBC,QAAQC,IAAIF,CAAK,EACjB,KAAKjD,UAAY,CAAA,EACjB,KAAK3B,KAAO,KAEZ,KAAKkC,UAAY,EAClB,EACA,CACF,iDA9FYN,GAAsBmD,EAAAC,CAAA,EAAAD,EAAAE,EAAA,EAAAF,EAAAG,CAAA,CAAA,CAAA,CAAA,+BAAtBtD,EAAsBuD,UAAA,CAAA,CAAA,oBAAA,CAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAtB7E,EAAA,SAAA,SAAA+E,EAAA,CAAA,OAAAD,EAAA/C,SAAAgD,CAAA,CAAgB,EAAA,GAAAC,CAAA,8mBClB7BrF,EAAA,EAAAsF,GAAA,EAAA,EAAA,eAAA,CAAA,EAA2C,EAAAC,GAAA,GAAA,EAAA,eAAA,CAAA,QAA5BpF,EAAA,OAAAgF,EAAArD,cAAA,MAAA,EAUApC,EAAA,EAAAS,EAAA,OAAAgF,EAAApD,WAAAoD,EAAArD,cAAA,OAAA;0EDQFL,CAAsB,GAAA,EA0GtBe,IAAmB,IAAA,CAA1B,MAAOA,CAAmB,CAG/Bd,YACS8D,EACAC,EACyB5C,EACzB6C,EACAC,EACA9D,EAAyB,CALzB,KAAA2D,WAAAA,EACA,KAAAC,UAAAA,EACyB,KAAA5C,KAAAA,EACzB,KAAA6C,OAAAA,EACA,KAAAC,WAAAA,EACA,KAAA9D,SAAAA,EAER,KAAKS,SAAWO,EAAKP,QACtB,CAEAoB,OAAK,CAEL,CAEAE,UAAQ,CAEP,KAAK+B,WAAWC,cAAc,KAAKtD,QAAQ,EAAES,UAAU,CACtDC,KAAMA,IAAK,CACV,KAAKnB,SAASgE,aAAY,EAE1BC,WAAW,IAAK,CACX,CAAC,KAAKjE,SAASkE,SAAQ,GAAM,KAAKlE,SAASiC,WAAU,EAAGkC,YAAYC,YAAW,IAAO,WAAa,KAAKpE,SAASiC,WAAU,EAAGkC,YAAYC,YAAW,IAAO,QAC/JC,OAAOC,SAASC,KAAOnE,EAAkBoE,QAAU,4BAA8BC,EAAkBC,MAAK,EAGxGL,OAAOC,SAASC,KAAO,KAAKvE,SAAS2E,YAAW,GAAO,KAAK3E,SAAS2E,YAAW,EAAGC,QAAQ,GAAG,EAAI,EAAK,IAAM,KAAO,MAAQH,EAAkBC,MAAK,EAEpJ,KAAKd,UAAU/B,MAAM,EAAE,CACxB,EAAG,GAAG,CACP,EACAe,MAAQiC,GAAY,CACnBhC,QAAQC,IAAI+B,CAAG,EACf,KAAKjB,UAAU/B,MAAM,+CAA+C,CACrE,EACA,CACF,iDAvCYlB,GAAmBoC,EAAA+B,EAAA,EAAA/B,EAAAgC,CAAA,EAAAhC,EAMtBiC,EAAe,EAAAjC,EAAAkC,CAAA,EAAAlC,EAAAmC,EAAA,EAAAnC,EAAAG,CAAA,CAAA,CAAA,CAAA,+BANZvC,EAAmBwC,UAAA,CAAA,CAAA,cAAA,CAAA,EAAAgC,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,QAAA,QAAA,SAAA,yBAAA,oBAAA,EAAA,CAAA,EAAA,YAAA,OAAA,eAAA,MAAA,EAAA,CAAA,EAAA,uBAAA,CAAA,EAAAC,SAAA,SAAAlC,EAAAC,EAAA,CAAAD,EAAA,IANhC3F,EAAA,EAAA,MAAA,CAAA,EAA0E,EAAA,OAAA,CAAA,EACvBC,EAAA,EAAA,kBAAA,EAAgBC,EAAA,EAClE6B,EAAA,EAAA,OAAA,CAAA,EACD7B,EAAA,8BAGa+C,CAAmB,GAAA,EElHhC,IAAI6E,IAA0B,IAAM,CAClC,MAAMA,UAAkBC,CAAa,CAKnC,YAAYC,EAAMC,EAAM,CACtB,MAAM,EACN,KAAK,KAAOD,EACZ,KAAK,KAAOC,EACZ,KAAK,aAAe,GAAK,GAIzB,KAAK,OAAS,IAAIC,EAIlB,KAAK,eAAiB,IAAIA,CAC5B,CAMA,QAAQC,EAAK,CACX,OAAI,OAAOA,GAAQ,SACjB,KAAK,YAAc,IAAIC,GAAY,MAAOD,CAAG,EACpCA,aAAeC,GACxB,KAAK,YAAcD,EACVA,IAAQ,OACjB,KAAK,YAAc,MAEd,KAAK,WACd,CAMA,SAASE,EAAS,CAChB,GAAI,CAAC,MAAMA,CAAO,GAAKA,EAAU,EAC/B,KAAK,aAAeA,UACX,CAAC,MAAMA,CAAO,GAAKA,GAAW,EACvC,MAAM,IAAI,MAAM,2CAA2C,EAE7D,OAAO,KAAK,YACd,CAMA,MAAO,CACL,KAAK,OAAO,KAAK,IAAI,EACjB,KAAK,aACP,KAAK,KAAK,QAAQ,KAAK,WAAW,EAAE,UAAUC,GAAY,CACxD,KAAK,eAAe,KAAKA,CAAQ,CACnC,EAAGC,GAAS,CACV,KAAK,eAAe,KAAKA,CAAK,CAChC,CAAC,CAEL,CAIA,OAAQ,CACN,KAAK,KAAK,EACV,KAAK,KAAK,kBAAkB,IAAM,CAChC,KAAK,WAAa,YAAY,IAAM,CAClC,KAAK,KAAK,IAAI,IAAM,CAClB,KAAK,KAAK,CACZ,CAAC,CACH,EAAG,KAAK,aAAe,GAAI,CAC7B,CAAC,CACH,CAIA,MAAO,CACD,KAAK,cAAc,IACrB,cAAc,KAAK,UAAU,EAC7B,KAAK,WAAa,KAEtB,CAIA,aAAc,CACZ,KAAK,KAAK,CACZ,CAKA,WAAY,CACV,OAAO,KAAK,cAAc,CAC5B,CACA,eAAgB,CACd,OAAO,KAAK,aAAe,MAAQ,OAAO,KAAK,WAAe,GAChE,CACA,MAAO,CACL,KAAK,UAAO,SAA2BC,EAAmB,CACxD,OAAO,IAAKA,GAAqBV,GAAcW,EAAYC,EAAU,EAAMD,EAAYE,CAAM,CAAC,CAChG,CACF,CACA,MAAO,CACL,KAAK,WAA0BC,EAAmB,CAChD,MAAOd,EACP,QAASA,EAAU,SACrB,CAAC,CACH,CACF,CACA,OAAOA,CACT,GAAG,EAICe,IAAsC,IAAM,CAC9C,MAAMA,CAAsB,CAC1B,OAAO,SAAU,CACf,MAAO,CACL,SAAUA,EACV,UAAW,CAACf,GAAW,CACrB,QAASC,EACT,YAAaD,EACf,CAAC,CACH,CACF,CACA,MAAO,CACL,KAAK,UAAO,SAAuCU,EAAmB,CACpE,OAAO,IAAKA,GAAqBK,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyBC,EAAiB,CAC7C,KAAMD,CACR,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAyBE,EAAiB,CAC7C,QAAS,CAACC,GAAa,QAAQ,CAAC,CAClC,CAAC,CACH,CACF,CACA,OAAOH,CACT,GAAG,6FEtJEI,EAAA,EAAA,SAAA,CAAA,EAA4BC,EAAA,QAAA,UAAA,CAAAC,EAAAC,CAAA,EAAA,IAAAC,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,YAAY,CAAC,CAAA,CAAA,EAA4GC,EAAA,EAAA,SAAA,EAAOC,EAAA,sCAD3KT,EAAA,EAAA,KAAA,EACCU,EAAA,EAAAC,GAAA,EAAA,EAAA,SAAA,CAAA,EACAX,EAAA,EAAA,SAAA,CAAA,EAAQC,EAAA,QAAA,UAAA,CAAAC,EAAAU,CAAA,EAAA,IAAAR,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,WAAW,CAAC,CAAA,CAAA,EAAiCC,EAAA,EAAA,OAAA,EAAKC,EAAA,EAAS,qBADxEI,EAAA,EAAAC,EAAA,OAAAV,EAAAW,WAAA,yBA0DHC,EAAA,EAAA,OAAA,EAAA,qCAHFhB,EAAA,EAAA,IAAA,EAA0B,EAAA,IAAA,EACrB,EAAA,OAAA,EAAA,EACsDC,EAAA,QAAA,UAAA,CAAAC,EAAAe,CAAA,EAAA,IAAAb,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAc,QAAA,CAAS,CAAA,CAAA,EAAEF,EAAA,EAAA,IAAA,EAAA,EAAwER,EAAA,EAAA,eAAA,EAAYC,EAAA,EACjKC,EAAA,EAAAS,GAAA,EAAA,EAAA,OAAA,EAAA,EACDV,EAAA,EAAK,qBADGI,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAAgB,UAAA,sCAKPpB,EAAA,EAAA,IAAA,EAAA,EAAkFC,EAAA,QAAA,UAAA,CAAAC,EAAAmB,CAAA,EAAA,IAAAjB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,aAAa,CAAC,CAAA,CAAA,EAAES,EAAA,EAAA,IAAA,EAAA,EAAwER,EAAA,EAAA,aAAA,EAAUC,EAAA,sCAClMT,EAAA,EAAA,IAAA,EAAA,EAAmFC,EAAA,QAAA,UAAA,CAAAC,EAAAoB,CAAA,EAAA,IAAAlB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAES,EAAA,EAAA,IAAA,EAAA,EAAwER,EAAA,EAAA,sBAAA,EAAmBC,EAAA,6BAHlNT,EAAA,EAAA,IAAA,EAAwB,EAAA,IAAA,EAEtBU,EAAA,EAAAa,GAAA,EAAA,EAAA,IAAA,EAAA,EAAgH,EAAAC,GAAA,EAAA,EAAA,IAAA,EAAA,EAEjHf,EAAA,EAAK,mBAFAI,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAAqB,SAAAC,SAAA,CAAA,EACAb,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAAqB,SAAAC,SAAA,CAAA,sCA5DX1B,EAAA,EAAA,KAAA,EACCgB,EAAA,EAAA,kBAAA,EAEAhB,EAAA,EAAA,MAAA,EAAA,EAAoE,EAAA,OAAA,EAAA,EAElEgB,EAAA,EAAA,MAAA,EAAA,EACDP,EAAA,EACAT,EAAA,EAAA,MAAA,EAAA,EAA2J,EAAA,QAAA,EAAA,EAC7F,EAAA,OAAA,EACrD,EAAA,IAAA,EACF,EAAA,IAAA,EACC,GAAA,MAAA,EAAA,EAC+B,GAAA,MAAA,EAAA,EACmDQ,EAAA,EAAA,EAA4BC,EAAA,EAChHO,EAAA,GAAA,qBAAA,EAAA,EACDP,EAAA,EACAT,EAAA,GAAA,OAAA,EAAA,EAAwDgB,EAAA,GAAA,IAAA,EAAA,EAA+DP,EAAA,EAAO,EAC1H,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,OAAA,EAAA,EACsDC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,wBAAwB,CAAC,CAAA,CAAA,EAAEC,EAAA,GAAA,WAAA,EAASC,EAAA,EAAO,EAC9G,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,OAAA,EAAA,EACsDC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,MAAM,CAAC,CAAA,CAAA,EAAEC,EAAA,GAAA,KAAA,EAAGC,EAAA,EAAO,EACtF,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,OAAA,EAAA,EACsDC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAEC,EAAA,GAAA,aAAA,EAAWC,EAAA,EAAO,EACzG,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,OAAA,EAAA,EACiCC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,eAAe,CAAC,CAAA,CAAA,EACjES,EAAA,GAAA,MAAA,EAAA,EAAwGR,EAAA,GAAA,UAAA,EACzGC,EAAA,EAAO,EACH,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,OAAA,EAAA,EACsDC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAES,EAAA,GAAA,IAAA,EAAA,EAA2ER,EAAA,GAAA,YAAA,EAASC,EAAA,EAAO,EAClL,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,IAAA,EAAA,EACwGgB,EAAA,GAAA,IAAA,EAAA,EAAiFR,EAAA,GAAA,OAAA,EAAIC,EAAA,EAAI,EAChM,EAENC,EAAA,GAAAkB,GAAA,EAAA,EAAA,KAAA,CAAA,EAA0B,GAAAC,GAAA,EAAA,EAAA,KAAA,CAAA,EAY1B7B,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EAEFgB,EAAA,GAAA,qBAAA,EAAA,EACDP,EAAA,EAAK,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,SAAA,EAAA,EACmCC,EAAA,QAAA,UAAA,CAAAC,EAAAyB,CAAA,EAAA,IAAAvB,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAA0B,OAAA,CAAQ,CAAA,CAAA,EAA2BtB,EAAA,GAAA,SAAA,EAAOQ,EAAA,GAAA,IAAA,EAAA,EAAiCP,EAAA,EAAS,EAC/H,EACD,EACE,EACD,EACH,EACD,qBAvECI,EAAA,CAAA,EAAAC,EAAA,MAAAV,EAAA2B,aAAAC,CAAA,EAQoFnB,EAAA,CAAA,EAAAoB,EAAA,OAAA7B,EAAA8B,WAAAC,UAAA,EAAA,EAwB/EtB,EAAA,EAAA,EAAAC,EAAA,MAAAV,EAAA2B,aAAAC,CAAA,EAcHnB,EAAA,EAAA,EAAAC,EAAA,OAAAV,EAAAgC,aAAA,EAMAvB,EAAA,EAAAC,EAAA,OAAAV,EAAAiC,WAAA,sCAlEbrC,EAAA,EAAA,MAAA,CAAA,EAA6G,EAAA,MAAA,CAAA,EAC7C,EAAA,IAAA,CAAA,EACXC,EAAA,QAAA,UAAA,CAAAC,EAAAoC,CAAA,EAAA,IAAAlC,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAmC,YAAA,CAAa,CAAA,CAAA,EAA0FvB,EAAA,EAAA,MAAA,CAAA,EAAkBP,EAAA,EACrLT,EAAA,EAAA,MAAA,CAAA,EACCU,EAAA,EAAA8B,GAAA,EAAA,EAAA,MAAA,CAAA,EAAyB,EAAAC,GAAA,GAAA,EAAA,MAAA,CAAA,EAmF1BhC,EAAA,EAAM,EACD,qBAtFsEI,EAAA,CAAA,EAAAC,EAAA,UAAA4B,EAAA,EAAAC,GAAAvC,EAAAwC,SAAA,UAAA,SAAA,CAAA,EAA6F/B,EAAA,EAAAC,EAAA,MAAAV,EAAAyC,KAAAb,CAAA,EAEjKnB,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAA0C,WAAA,EAKAjC,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAA0C,WAAA,0BA6GL9C,EAAA,EAAA,IAAA,EACCgB,EAAA,EAAA,IAAA,EAAA,EACDP,EAAA,yBASoJO,EAAA,EAAA,OAAA,EAAA,qCAAlJhB,EAAA,EAAA,KAAA,EAAA,EAAgDC,EAAA,QAAA,UAAA,CAAAC,EAAA6C,CAAA,EAAA,IAAA3C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAc,QAAA,CAAS,CAAA,CAAA,EAAgBF,EAAA,EAAA,IAAA,EAAA,EAAmDR,EAAA,EAAA,eAAA,EAAaE,EAAA,EAAAsC,GAAA,EAAA,EAAA,OAAA,EAAA,EAA8DvC,EAAA,qBAAvDI,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAAgB,UAAA,sCACzJpB,EAAA,EAAA,KAAA,EAAA,EAAqFC,EAAA,QAAA,UAAA,CAAAC,EAAA+C,CAAA,EAAA,IAAA7C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,aAAa,CAAC,CAAA,CAAA,EAAgBS,EAAA,EAAA,IAAA,EAAA,EAAmDR,EAAA,EAAA,YAAA,EAAUC,EAAA,sCAC9LT,EAAA,EAAA,KAAA,EAAA,EAAsFC,EAAA,QAAA,UAAA,CAAAC,EAAAgD,CAAA,EAAA,IAAA9C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAgBS,EAAA,EAAA,IAAA,EAAA,EAAmDR,EAAA,EAAA,qBAAA,EAAmBC,EAAA,sCAT9MT,EAAA,EAAA,KAAA,EAAA,EAAsD,EAAA,OAAA,EAAA,EACfgB,EAAA,EAAA,MAAA,EAAA,EAAqDP,EAAA,EAC3FT,EAAA,EAAA,KAAA,EAAA,EACCgB,EAAA,EAAA,KAAA,EAAA,EACAhB,EAAA,EAAA,KAAA,EAAA,EAA0CC,EAAA,QAAA,UAAA,CAAAC,EAAAiD,CAAA,EAAA,IAAA/C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,eAAe,CAAC,CAAA,CAAA,EAAgBS,EAAA,EAAA,IAAA,EAAA,EAA4DR,EAAA,EAAA,SAAA,EAAOC,EAAA,EAC3JT,EAAA,EAAA,KAAA,EAAA,EAA0CC,EAAA,QAAA,UAAA,CAAAC,EAAAiD,CAAA,EAAA,IAAA/C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAgBS,EAAA,EAAA,IAAA,EAAA,EAAqDR,EAAA,GAAA,WAAA,EAASC,EAAA,EACxJT,EAAA,GAAA,KAAA,EAAA,EAA0CC,EAAA,QAAA,UAAA,CAAAC,EAAAiD,CAAA,EAAA,IAAA/C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,MAAM,CAAC,CAAA,CAAA,EAAgBS,EAAA,GAAA,IAAA,EAAA,EAA0DR,EAAA,GAAA,MAAA,EAAIC,EAAA,EAC7IC,EAAA,GAAA0C,GAAA,EAAA,EAAA,KAAA,EAAA,EAAkF,GAAAC,GAAA,EAAA,EAAA,KAAA,EAAA,EAC+C,GAAAC,GAAA,EAAA,EAAA,KAAA,EAAA,EAEjItD,EAAA,GAAA,KAAA,EAAA,EAAmDgB,EAAA,GAAA,qBAAA,EAAA,EAA6DP,EAAA,EAChHT,EAAA,GAAA,KAAA,EAAA,EAAoE,GAAA,SAAA,EAAA,EAAgCC,EAAA,QAAA,UAAA,CAAAC,EAAAiD,CAAA,EAAA,IAAA/C,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAA0B,OAAA,CAAQ,CAAA,CAAA,EAAyCtB,EAAA,GAAA,SAAA,EAAOQ,EAAA,GAAA,IAAA,EAAA,EAAiCP,EAAA,EAAS,EAAK,EAChN,qBAXsCI,EAAA,CAAA,EAAAC,EAAA,MAAAV,EAAA2B,aAAAC,CAAA,EAMrCnB,EAAA,EAAA,EAAAC,EAAA,OAAAV,EAAAgC,aAAA,EACgBvB,EAAA,EAAAC,EAAA,OAAAV,EAAAiC,aAAAjC,EAAAqB,SAAAC,SAAA,CAAA,EACAb,EAAA,EAAAC,EAAA,OAAAV,EAAAiC,aAAA,CAAAjC,EAAAqB,SAAAC,SAAA,CAAA,6BAtBxB1B,EAAA,EAAA,KAAA,EAAA,EAA4C,EAAA,KAAA,EAAA,EACoD,EAAA,MAAA,EAAA,EACtBQ,EAAA,CAAA,EAA4BC,EAAA,EACpGO,EAAA,EAAA,qBAAA,EAAA,EACDP,EAAA,EACAT,EAAA,EAAA,KAAA,EAAA,EACCgB,EAAA,EAAA,kBAAA,EACDP,EAAA,EAEAC,EAAA,EAAA6C,GAAA,EAAA,EAAA,KAAA,CAAA,EAA0B,EAAAC,GAAA,GAAA,EAAA,KAAA,EAAA,EAkB3B/C,EAAA,mBAzB0EI,EAAA,CAAA,EAAAoB,EAAA,OAAA7B,EAAA8B,WAAAC,UAAA,EAAA,EAOpEtB,EAAA,CAAA,EAAAC,EAAA,OAAA,CAAAV,EAAAqD,YAAA,EAIA5C,EAAA,EAAAC,EAAA,OAAAV,EAAAqD,YAAA,sCAkBJzD,EAAA,EAAA,SAAA,EAAA,EAA4BC,EAAA,QAAA,UAAA,CAAAC,EAAAwD,CAAA,EAAA,IAAAtD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,YAAY,CAAC,CAAA,CAAA,EAA6GC,EAAA,EAAA,SAAA,EAAOC,EAAA,sCAF7KT,EAAA,EAAA,KAAA,EAAA,EAAgD,EAAA,KAAA,EAAA,EAE9CU,EAAA,EAAAiD,GAAA,EAAA,EAAA,SAAA,EAAA,EACA3D,EAAA,EAAA,SAAA,CAAA,EAAQC,EAAA,QAAA,UAAA,CAAAC,EAAA0D,CAAA,EAAA,IAAAxD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,WAAW,CAAC,CAAA,CAAA,EAAiCC,EAAA,EAAA,OAAA,EAAKC,EAAA,EAAS,EAC7E,qBAFKI,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAAW,WAAA,sCAjDdf,EAAA,EAAA,MAAA,CAAA,EAA8G,EAAA,MAAA,CAAA,EAE9C,EAAA,IAAA,CAAA,EACXC,EAAA,QAAA,UAAA,CAAAC,EAAA2D,CAAA,EAAA,IAAAzD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAmC,YAAA,CAAa,CAAA,CAAA,EAA0FvB,EAAA,EAAA,MAAA,CAAA,EAAkBP,EAAA,EAErLT,EAAA,EAAA,MAAA,EAAA,EAAmE,EAAA,KAAA,EAAA,EACW,EAAA,KAAA,EAAA,EACQ,EAAA,IAAA,EAAA,EAC1BC,EAAA,QAAA,UAAA,CAAAC,EAAA2D,CAAA,EAAA,IAAAzD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,wBAAwB,CAAC,CAAA,CAAA,EAAEC,EAAA,EAAA,WAAA,EAASC,EAAA,EAAI,EAEhHT,EAAA,EAAA,KAAA,EAAA,EAAqF,GAAA,IAAA,EAAA,EAC3BC,EAAA,QAAA,UAAA,CAAAC,EAAA2D,CAAA,EAAA,IAAAzD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,MAAM,CAAC,CAAA,CAAA,EAAEC,EAAA,GAAA,KAAA,EAAGC,EAAA,EAAI,EAExFT,EAAA,GAAA,KAAA,EAAA,EAAmF,GAAA,IAAA,EAAA,EACzBC,EAAA,QAAA,UAAA,CAAAC,EAAA2D,CAAA,EAAA,IAAAzD,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,iBAAiB,CAAC,CAAA,CAAA,EAAEC,EAAA,GAAA,aAAA,EAAWC,EAAA,EAAI,EACtG,EAGNC,EAAA,GAAAoD,GAAA,EAAA,EAAA,KAAA,EAAA,EAA4C,GAAAC,GAAA,EAAA,EAAA,KAAA,EAAA,EAmC7CtD,EAAA,EAAM,EACD,qBAnDsEI,EAAA,CAAA,EAAAC,EAAA,UAAA4B,EAAA,EAAAC,GAAAvC,EAAAwC,SAAA,UAAA,SAAA,CAAA,EAA6F/B,EAAA,EAAAC,EAAA,MAAAV,EAAAyC,KAAAb,CAAA,EAelKnB,EAAA,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAA0C,WAAA,EA6BAjC,EAAA,EAAAC,EAAA,OAAAV,EAAA0C,WAAA,6BA3IT9C,EAAA,EAAA,QAAA,EACCU,EAAA,EAAAsD,GAAA,EAAA,EAAA,MAAA,CAAA,EAA6G,EAAAC,GAAA,GAAA,EAAA,MAAA,CAAA,EAmJ9GxD,EAAA,kBAnJOI,EAAA,EAAAC,EAAA,OAAAV,EAAA8D,WAAAC,QAAA,EA2FAtD,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAA8D,WAAAC,QAAA,sCA2DNnE,EAAA,EAAA,MAAA,CAAA,EAA6G,EAAA,MAAA,CAAA,EAC7C,EAAA,IAAA,CAAA,EACXC,EAAA,QAAA,UAAA,CAAAC,EAAAkE,CAAA,EAAA,IAAAhE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAmC,YAAA,CAAa,CAAA,CAAA,EAA0FvB,EAAA,EAAA,MAAA,CAAA,EAAkBP,EAAA,EACrLT,EAAA,EAAA,MAAA,CAAA,EAAwD,EAAA,MAAA,EAAA,EACc,EAAA,OAAA,EAAA,EAElEgB,EAAA,EAAA,MAAA,EAAA,EACDP,EAAA,EACAT,EAAA,EAAA,MAAA,EAAA,EAA2J,EAAA,QAAA,EAAA,EAC7F,GAAA,OAAA,EACrD,GAAA,IAAA,EACF,GAAA,IAAA,EACC,GAAA,MAAA,EAAA,EAC+B,GAAA,MAAA,EAAA,EACmDQ,EAAA,EAAA,EAA4BC,EAAA,EAAM,EAEvHT,EAAA,GAAA,OAAA,EAAA,EAAwDgB,EAAA,GAAA,IAAA,EAAA,EAA+DP,EAAA,EAAO,EAC1H,EAENT,EAAA,GAAA,IAAA,EAAI,GAAA,IAAA,EACC,GAAA,SAAA,EAAA,EACmCC,EAAA,QAAA,UAAA,CAAAC,EAAAkE,CAAA,EAAA,IAAAhE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAA0B,OAAA,CAAQ,CAAA,CAAA,EAA2BtB,EAAA,GAAA,QAAA,EAAMC,EAAA,EAAS,EAC7F,EACD,EACE,EACD,EACH,EACD,EACF,EACD,qBA3BsEI,EAAA,CAAA,EAAAC,EAAA,UAAA4B,EAAA,EAAAC,GAAAvC,EAAAwC,SAAA,UAAA,SAAA,CAAA,EAA6F/B,EAAA,EAAAC,EAAA,MAAAV,EAAAyC,KAAAb,CAAA,EAI/JnB,EAAA,CAAA,EAAAC,EAAA,MAAAV,EAAA2B,aAAAC,CAAA,EAQoFnB,EAAA,CAAA,EAAAoB,EAAA,OAAA7B,EAAA8B,WAAAC,UAAA,EAAA,0BA+B3FnC,EAAA,EAAA,IAAA,EACCgB,EAAA,EAAA,IAAA,EAAA,EACDP,EAAA,sCAEAT,EAAA,EAAA,KAAA,EAAA,EAAsD,EAAA,OAAA,EAAA,EACfgB,EAAA,EAAA,MAAA,EAAA,EAAqDP,EAAA,EAC3FT,EAAA,EAAA,KAAA,EAAA,EACCgB,EAAA,EAAA,KAAA,EAAA,EACAhB,EAAA,EAAA,KAAA,EAAA,EAAoE,EAAA,SAAA,EAAA,EAAgCC,EAAA,QAAA,UAAA,CAAAC,EAAAmE,CAAA,EAAA,IAAAjE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAA0B,OAAA,CAAQ,CAAA,CAAA,EAAyCtB,EAAA,EAAA,QAAA,EAAMC,EAAA,EAAS,EAAK,EAC9K,qBAJsCI,EAAA,CAAA,EAAAC,EAAA,MAAAV,EAAA2B,aAAAC,CAAA,6BAT7ChC,EAAA,EAAA,KAAA,EAAA,EAA4C,EAAA,KAAA,EAAA,EACoD,EAAA,MAAA,EAAA,EACtBQ,EAAA,CAAA,EAA4BC,EAAA,EAAM,EAE3GC,EAAA,EAAA4D,GAAA,EAAA,EAAA,KAAA,CAAA,EAA0B,EAAAC,GAAA,EAAA,EAAA,KAAA,EAAA,EAW3B9D,EAAA,mBAb0EI,EAAA,CAAA,EAAAoB,EAAA,OAAA7B,EAAA8B,WAAAC,UAAA,EAAA,EAEpEtB,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAAqD,YAAA,EAIA5C,EAAA,EAAAC,EAAA,OAAAV,EAAAqD,YAAA,sCAWJzD,EAAA,EAAA,SAAA,EAAA,EAA4BC,EAAA,QAAA,UAAA,CAAAC,EAAAsE,CAAA,EAAA,IAAApE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,YAAY,CAAC,CAAA,CAAA,EAA6GC,EAAA,EAAA,SAAA,EAAOC,EAAA,sCAF7KT,EAAA,EAAA,KAAA,EAAA,EAAgD,EAAA,KAAA,EAAA,EAE9CU,EAAA,EAAA+D,GAAA,EAAA,EAAA,SAAA,EAAA,EACAzE,EAAA,EAAA,SAAA,CAAA,EAAQC,EAAA,QAAA,UAAA,CAAAC,EAAAwE,CAAA,EAAA,IAAAtE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAG,KAAK,WAAW,CAAC,CAAA,CAAA,EAAiCC,EAAA,EAAA,OAAA,EAAKC,EAAA,EAAS,EAC7E,qBAFKI,EAAA,CAAA,EAAAC,EAAA,OAAAV,EAAAW,WAAA,sCA5Bdf,EAAA,EAAA,MAAA,CAAA,EAA8G,EAAA,MAAA,CAAA,EAE9C,EAAA,IAAA,CAAA,EACXC,EAAA,QAAA,UAAA,CAAAC,EAAAyE,CAAA,EAAA,IAAAvE,EAAAC,EAAA,CAAA,EAAA,OAAAC,EAASF,EAAAmC,YAAA,CAAa,CAAA,CAAA,EAA0FvB,EAAA,EAAA,MAAA,CAAA,EAAkBP,EAAA,EAErLT,EAAA,EAAA,MAAA,EAAA,EACCgB,EAAA,EAAA,KAAA,EAAA,EAGAN,EAAA,EAAAkE,GAAA,EAAA,EAAA,KAAA,EAAA,EAA4C,EAAAC,GAAA,EAAA,EAAA,KAAA,EAAA,EAuB7CpE,EAAA,EAAM,EACD,qBA9BsEI,EAAA,CAAA,EAAAC,EAAA,UAAA4B,EAAA,EAAAC,GAAAvC,EAAAwC,SAAA,UAAA,SAAA,CAAA,EAA6F/B,EAAA,EAAAC,EAAA,MAAAV,EAAAyC,KAAAb,CAAA,EAMlKnB,EAAA,CAAA,EAAAC,EAAA,OAAA,CAAAV,EAAA0C,WAAA,EAiBAjC,EAAA,EAAAC,EAAA,OAAAV,EAAA0C,WAAA,6BA3DT9C,EAAA,EAAA,QAAA,EACCU,EAAA,EAAAoE,GAAA,GAAA,EAAA,MAAA,CAAA,EAA6G,EAAAC,GAAA,EAAA,EAAA,MAAA,CAAA,EAmE9GtE,EAAA,kBAnEOI,EAAA,EAAAC,EAAA,OAAAV,EAAA8D,WAAAC,QAAA,EAgCAtD,EAAA,EAAAC,EAAA,OAAA,CAAAV,EAAA8D,WAAAC,QAAA;yFCrLNnE,EAAA,EAAA,GAAA,EAAoB,EAAA,OAAA,EAAOQ,EAAA,EAAA,sBAAA,EAAoBR,EAAA,EAAA,QAAA,EAAQQ,EAAA,CAAA,EAAYC,EAAA,EAAS,EAAQ,kBAA7BI,EAAA,CAAA,EAAAmE,EAAAC,EAAAC,QAAA,sCACvDlF,EAAA,EAAA,SAAA,CAAA,EAAQC,EAAA,QAAA,UAAA,CAAAC,EAAAiF,CAAA,EAAA,IAAAF,EAAA5E,EAAA,EAAA,OAAAC,EAAS2E,EAAAG,WAAA,CAAY,CAAA,CAAA,EAAmB5E,EAAA,EAAA,SAAA,EAAOC,EAAA,yBFiB3C4E,IAAyB,IAAA,CAAhC,MAAOA,CAAyB,CACrCC,YACSC,EACAC,EACDtB,EACCuB,EACAC,EACAC,EACAC,EACDnE,EACCoE,GAAuB,CARvB,KAAAN,WAAAA,EACA,KAAAC,aAAAA,EACD,KAAAtB,WAAAA,EACC,KAAAuB,OAAAA,EACA,KAAAC,OAAAA,EACA,KAAAC,SAAAA,EACA,KAAAC,OAAAA,EACD,KAAAnE,SAAAA,EACC,KAAAoE,QAAAA,GAGT,KAAAC,YAAsB,iCACtB,KAAAC,kBAA4B,uCAC5B,KAAAlD,KAAY,KACZ,KAAAmD,KAAqB,KACrB,KAAA9D,WAAkB,KAClB,KAAAU,SAAoB,GACpB,KAAAE,YAAuB,GACvB,KAAA/B,YAAuB,GACvB,KAAAkF,SAA0B,KAC1B,KAAA7D,cAAyB,GACzB,KAAAC,YAAuB,GACvB,KAAA6D,SAAmB,GACnB,KAAAC,SAAmB,GACnB,KAAApE,aAAuB,8BACvB,KAAA0B,aAAwB,GACxB,KAAA2C,YAAuB,GACvB,KAAAC,wBAAkC,IAyClC,KAAAjF,WAAsB,GAwCtB,KAAAkF,eAAiB,KAAKX,SAASY,KAAI,CAnG/B,CAoBuCC,SAASC,EAAU,CAC7D,KAAKC,eAAc,CACpB,CAIAA,gBAAc,CACTC,OAAOC,WAAa,KAAKP,wBAC5B,KAAKxD,KAAO,KAAKkD,kBAEjB,KAAKlD,KAAO,KAAKiD,WAEnB,CAEAvF,KAAKsG,EAAW,CACXA,IAAQ,aACX,KAAKrB,aAAasB,gBAAgB,SAAU,GAAI,GAAO,GAAI,IAAI,EAEvDD,IAAQ,YAChB,KAAKrB,aAAasB,gBAAgB,QAAS,GAAI,GAAO,GAAI,IAAI,EAEtDD,IAAQ,OAChBF,OAAOI,KAAK,8CAA+C,QAAQ,EAE3D,KAAKtF,SAASqB,YAAW,GAAM+D,GAAO,OAC9C,KAAKrB,aAAasB,gBAAgB,QAASD,EAAK,GAAM,GAAI,IAAI,EAG1DA,IAAQ,QAAU,KAAKjB,OAAOiB,MAAQ,OAEzC,KAAKjB,OAAOoB,cAAc,IAAK,CAAEC,mBAAoB,EAAI,CAAE,EAAEC,KAAK,IAAK,CACtE,KAAKtB,OAAOoB,cAAcH,CAAG,CAC9B,CAAC,EAED,KAAKjB,OAAOoB,cAAcH,CAAG,CAGhC,CAGA3F,SAAO,CACD,KAAKO,SAASW,cAAa,IAGhC,KAAKhB,WAAa,GAClB,KAAKsE,OAAOyB,OAAO,KAAKnB,KAAKoB,SAAU,KAAKpB,KAAKqB,SAAU,KAAKrB,KAAKsB,UAAU,EAAEC,UAAU,CAC1FC,KAAOC,GAAiB,CACvBd,OAAOhB,SAAS+B,KAAO,yBACvB,KAAKtG,WAAa,EACnB,EACAuG,MAAQC,GAAY,CACnB,KAAKxG,WAAa,GAClByG,QAAQC,IAAIF,CAAG,CAChB,EACA,EACF,CAGA9F,QAAM,CACL,KAAKL,SAASsG,aAAa,EAAI,CAChC,CAEAC,iBAAe,CACd,KAAKzC,WAAW0C,aAAY,EAAGV,UAAU,CACxCC,KAAOC,GAAiB,CACvB,KAAK1F,aAAe0F,EAASS,KAC9B,EACAP,MAAQA,GAAc,CACrBE,QAAQC,IAAIH,CAAK,CAClB,EACA,CACF,CAEApF,aAAW,CACN,KAAK0D,SAASkC,MAAQ,IACzB,KAAK1C,OAAO2C,KAAK,KAAKnC,SAASkC,IAAI,CAErC,CAIQE,cAAY,CACnB,KAAKnG,WAAa,KAClB,KAAK8D,KAAO,KAAKvE,SAAS6G,WAAU,EACpC,KAAK1F,SAAW,KAAKnB,SAAS8G,QAAO,EACrC,KAAKzF,YAAc,KAAKrB,SAASqB,YAAW,EAC5C,KAAK/B,YAAc,KAAKU,SAASV,YAAW,EAC5C,KAAKkF,SAAW,KAAKxE,SAAS+G,YAAW,EACzC,KAAKtC,SAAW,KAAKzE,SAASgH,YAAW,EAEpC,KAAK3F,aAQT,KAAKV,cAAgB,GACrB,KAAKC,YAAc,KARnB,KAAKD,cAAgB,KAAKX,SAASW,cAAa,EAChD,KAAKC,YAAc,KAAKZ,SAASY,YAAW,EAC5C,KAAK+D,YAAc,KAAK3E,SAASC,SAAQ,GAAM,KAAKD,SAASiH,UAAS,EACtE,KAAKxG,WAAa,KAAK8D,KACvB,KAAKgC,gBAAe,GAMrB,KAAKvE,aAAe,EACrB,CAEQkF,UAAQ,CACf,KAAK9C,QAAQ+C,QAAQ,KAAK1C,QAAQ,EAAEqB,UAAU,CAC7CC,KAAOC,GAAiB,CACnBA,EAASoB,KAAKC,YAAW,EAAGC,QAAQ,kBAAkB,EAAI,EAC7D,KAAKrC,eAAc,EAGnB,KAAK7D,KAAO4E,EAASoB,IAEvB,EACAlB,MAAQA,GAAc,CACrBE,QAAQC,IAAIH,CAAK,EACjB,KAAKjB,eAAc,CACpB,EACA,CACF,CAEAsC,aAAW,CACN,KAAKC,gBACR,KAAKA,eAAeC,YAAW,CAEjC,CAEAC,UAAQ,CAEP,KAAKF,eAAiB,KAAKxH,SAAS2H,kBAAkB7B,UAAU,CAC/DC,KAAMA,IAAK,CACV,KAAKa,aAAY,EACjB,KAAKM,SAAQ,CACd,EACAhB,MAAQC,GAAY,CACnBC,QAAQC,IAAIF,CAAG,EACf,KAAKS,aAAY,EACjB,KAAKM,SAAQ,CACd,EACA,CACF,iDA3KYtD,GAAyBgE,EAAAC,EAAA,EAAAD,EAAAE,EAAA,EAAAF,EAAAG,CAAA,EAAAH,EAAAI,CAAA,EAAAJ,EAAAK,EAAA,EAAAL,EAAAM,EAAA,EAAAN,EAAAO,CAAA,EAAAP,EAAAQ,CAAA,EAAAR,EAAAS,EAAA,CAAA,CAAA,CAAA,+BAAzBzE,EAAyB0E,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAAC,aAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,GAAzBhK,EAAA,SAAA,SAAAkK,EAAA,CAAA,OAAAD,EAAA1D,SAAA2D,CAAA,CAAgB,EAAA,GAAAC,CAAA,09HCpB7B1J,EAAA,EAAA2J,GAAA,EAAA,EAAA,SAAA,CAAA,EAA6B,EAAAC,GAAA,EAAA,EAAA,SAAA,CAAA,QAApBxJ,EAAA,OAAA,CAAAoJ,EAAA9D,WAAA,EAsJAvF,EAAA,EAAAC,EAAA,OAAAoJ,EAAA9D,WAAA,2DDlIIf,CAAyB,GAAA,EAqLzBkF,IAAyB,IAAA,CAAhC,MAAOA,CAAyB,CANtCjF,aAAA,CAOC,KAAAkF,YAAuB,IAAIC,KAAI,EAAIC,YAAW,kDADlCH,EAAyB,CAAA,+BAAzBA,EAAyBR,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAAY,WAAA,GAAAC,MAAA,GAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,kBAAA,EAAA,CAAA,KAAA,SAAA,EAAA,cAAA,oBAAA,EAAA,iBAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,iBAAA,KAAA,EAAA,CAAA,EAAA,WAAA,WAAA,WAAA,QAAA,cAAA,EAAA,cAAA,QAAA,EAAA,CAAA,EAAA,iBAAA,MAAA,EAAA,CAAA,EAAA,WAAA,WAAA,WAAA,QAAA,cAAA,EAAA,cAAA,QAAA,EAAA,CAAA,OAAA,kCAAA,SAAA,SAAA,EAAA,aAAA,EAAA,CAAA,EAAA,YAAA,EAAA,CAAA,OAAA,2DAAA,SAAA,SAAA,EAAA,aAAA,EAAA,CAAA,EAAA,YAAA,EAAA,CAAA,OAAA,uCAAA,SAAA,SAAA,EAAA,aAAA,EAAA,CAAA,EAAA,cAAA,EAAA,CAAA,OAAA,wCAAA,SAAA,SAAA,EAAA,aAAA,EAAA,CAAA,EAAA,eAAA,EAAA,CAAA,OAAA,kDAAA,SAAA,SAAA,EAAA,cAAA,EAAA,gBAAA,KAAA,EAAA,CAAA,EAAA,eAAA,EAAA,CAAA,EAAA,WAAA,WAAA,WAAA,QAAA,EAAA,cAAA,QAAA,EAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,eAAA,MAAA,EAAA,YAAA,CAAA,EAAAC,SAAA,SAAAd,EAAAC,EAAA,CAAAD,EAAA,IGzMtCjK,EAAA,EAAA,SAAA,CAAA,EAAiC,EAAA,MAAA,CAAA,EACqD,EAAA,MAAA,CAAA,EACtC,EAAA,MAAA,CAAA,EAE0C,EAAA,IAAA,CAAA,EACrDQ,EAAA,CAAA,EAA2CC,EAAA,EAAI,EAGjFT,EAAA,EAAA,MAAA,CAAA,EAAuF,EAAA,IAAA,CAAA,EAErFgB,EAAA,EAAA,IAAA,CAAA,EACDP,EAAA,EACAT,EAAA,EAAA,IAAA,CAAA,EACCgB,EAAA,GAAA,IAAA,CAAA,EACDP,EAAA,EACAT,EAAA,GAAA,IAAA,EAAA,EACCgB,EAAA,GAAA,IAAA,EAAA,EACDP,EAAA,EACAT,EAAA,GAAA,IAAA,EAAA,EACCgB,EAAA,GAAA,IAAA,EAAA,EACDP,EAAA,EACAT,EAAA,GAAA,IAAA,EAAA,EACCgB,EAAA,GAAA,IAAA,EAAA,EACDP,EAAA,EAAI,EAGLT,EAAA,GAAA,MAAA,EAAA,EAA2E,GAAA,IAAA,EAAA,EACpCQ,EAAA,GAAA,oBAAA,EAAkBC,EAAA,EACxDT,EAAA,GAAA,IAAA,EAAA,EAAgEQ,EAAA,GAAA,iBAAA,EAAcC,EAAA,EAAI,EAC7E,EACD,EACD,SA1B8BI,EAAA,CAAA,EAAAoB,EAAA,OAAAiI,EAAAM,YAAA,wBAAA,EAsB9B3J,EAAA,EAAA,EAAAC,EAAA,aAAAkK,GAAA,EAAAC,EAAA,CAAA,EACApK,EAAA,CAAA,EAAAC,EAAA,aAAAkK,GAAA,EAAAE,EAAA,CAAA,4CH6KMX,CAAyB,GAAA,EAUzBY,IAAuB,IAAA,CAA9B,MAAOA,CAAuB,CASnC7F,YACS7D,EACA2J,EACAC,EACDC,EACC1F,EAAc,CAJd,KAAAnE,SAAAA,EACA,KAAA2J,KAAAA,EACA,KAAAC,UAAAA,EACD,KAAAC,OAAAA,EACC,KAAA1F,OAAAA,EAbT,KAAA2F,UAAY,eACZ,KAAAC,SAAW,GACX,KAAAtG,SAAkB,KAClB,KAAAuG,WAAa,GACb,KAAAC,WAAkB,KAClB,KAAAC,aAAe,GAUd,KAAKP,KAAKQ,QAAQpC,EAAkB4B,KAAKS,YAAY,EACrD,KAAKT,KAAKU,WAAWtC,EAAkB4B,KAAKW,eAAe,EAC3D,KAAKV,UAAUW,SAASxC,EAAkB4B,KAAKa,SAAS,EAExD,KAAKb,KAAKc,cAAcC,EAAwB,EAChD,KAAKV,WAAaW,EAAkBC,MAAK,EAEzC,KAAKjB,KAAKkB,YAAY/E,UAAU,IAAK,CAGpC,GAFA,KAAKgE,UAAY,oBAEb,KAAK9J,SAASqB,YAAW,IAAO,GAAM,CACzC,KAAKyJ,UAAS,EACd,MACD,CAEA,GAAI,KAAKb,YAAc,KAGvB,MAAKC,aAAe,GAGpB,KAAKD,WAAa,KAAKJ,OAAOvE,KAC7ByF,GACA,CAAEC,SAAU,QAASC,aAAc,GAAMC,UAAW,EAAI,CAAE,EAE3D,KAAKjB,WAAWkB,YAAW,EAAGrF,UAAWsF,GAAe,CAEvD,GADA,KAAKnB,WAAa,KACdmB,IAAW,SACd,KAAK/K,OAAM,UAEH+K,IAAW,OAAQ,CAE3B,KAAK3H,SAAW,IAAIuF,KACpBqC,aAAaC,QAAQ,WAAYC,KAAKC,UAAU,CAAE,OAAU,KAAKxB,WAAY,KAAQ,KAAKvG,SAASgI,YAAW,CAAE,CAAE,CAAC,EACnH,GAAI,CAAEC,cAAcC,CAAU,CAAG,MACtB,CAAI,CACf,KAAKhC,KAAKiC,MAAK,CAChB,CACD,CAAC,EAGD,IAAIC,EAAY,IAAI7C,KAAI,EAAGyC,YAAW,EAClCE,EAAaG,YAAY,IAAK,CACjC,GAAI,CACH,IAAIC,EAAWR,KAAKS,MAAMX,aAAaY,QAAQ,UAAU,CAAC,EAEtDF,EAASG,SAAW,KAAKlC,YAAc,IAAIhB,KAAK+C,EAASI,IAAI,EAAI,IAAInD,KAAK6C,CAAS,IACtFH,cAAcC,CAAU,EACxB,KAAKzB,aAAe,GAEtB,MACW,CAAI,CAChB,EAAG,GAAI,EACR,CAAC,EAED,KAAKP,KAAKyC,UAAUtG,UAAU,IAAK,CAClC,KAAKgE,UAAY,iBAElB,CAAC,EAED,KAAKH,KAAK0C,UAAUvG,UAAU,IAAK,CAClC,KAAKgE,UAAY,kBACjB,KAAKC,SAAW,GAEZ,KAAK/J,SAASqB,YAAW,IAAO,GACnC,KAAKyJ,UAAS,EAGd,KAAKzK,OAAM,CAEb,CAAC,EAED,KAAKsJ,KAAK2C,iBAAiBxG,UAAWyG,GAAa,CAClD,KAAKzC,UAAY,wBAA0ByC,EAAY,WACxD,CAAC,EAKD,KAAK3C,UAAU4C,OAAO1G,UAAU,IAAK,CAGpC,GAFA,KAAKrC,SAAW,IAAIuF,KAEhB,KAAKhJ,SAASqB,YAAW,IAAO,GAAM,CACzC,KAAKyJ,UAAS,EACd,MACD,CAEI,KAAKb,YAAc,MACtBoB,aAAaC,QAAQ,WAAYC,KAAKC,UAAU,CAAE,OAAU,KAAKxB,WAAY,KAAQ,KAAKvG,SAASgI,YAAW,CAAE,CAAE,CAAC,CAGrH,CAAC,CACF,CAEApL,QAAM,CACL,KAAK6J,aAAe,GAChB,KAAK/F,OAAOiB,IAAIqH,kBAAiB,EAAGnF,QAAQ,WAAW,GAAK,EAC/D,KAAKtH,SAASsG,aAAa,EAAK,EAGhC,KAAKtG,SAASsG,aAAa,EAAI,CAEjC,CAEAwE,WAAS,CAEJ,KAAKb,YAAc,OACtB,KAAKC,aAAe,IAEjB,KAAKP,KAAK+C,UAAS,GACtB,KAAK/C,KAAKgD,KAAI,CAEhB,CAEAhJ,YAAU,CACJ,KAAKgG,KAAK+C,UAAS,IAEvB,KAAK/C,KAAKiC,MAAK,EACf,KAAK9B,UAAY,WACjB,KAAKI,aAAe,GACpB,KAAKH,SAAW,GAElB,CAEAxC,aAAW,CACV,KAAKC,eAAeC,YAAW,EAC/B,KAAKqD,UAAS,CACf,CAEApD,UAAQ,CACF,KAAK1H,SAASqB,YAAW,GAC7B,KAAKsC,WAAU,EAGhB,KAAK6D,eAAiB,KAAKxH,SAAS2H,kBAAkB7B,UAAU,CAC/DC,KAAMA,IAAK,CACN,KAAK/F,SAASqB,YAAW,EAC5B,KAAKyJ,UAAS,EAGd,KAAKnH,WAAU,CAEjB,EACAuC,MAAQC,GAAY,CACnBC,QAAQC,IAAIF,CAAG,CAChB,EACA,CACF,iDAnKYuD,GAAuB9B,EAAAQ,CAAA,EAAAR,EAAAgF,EAAA,EAAAhF,EAAAiF,EAAA,EAAAjF,EAAAkF,CAAA,EAAAlF,EAAAO,CAAA,CAAA,CAAA,CAAA,+BAAvBuB,EAAuBpB,UAAA,CAAA,CAAA,qBAAA,CAAA,EAAAY,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,UAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,CAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,EAAA,OAAA,CAAA,EAAAC,SAAA,SAAAd,EAAAC,EAAA,CAAAD,EAAA,IEnNpCjK,EAAA,EAAA,MAAA,CAAA,EAA2B,EAAA,GAAA,EACvB,EAAA,QAAA,EAAQQ,EAAA,CAAA,EAAaC,EAAA,EAAS,EACjCC,EAAA,EAAA8N,GAAA,EAAA,EAAA,IAAA,CAAA,EAAoB,EAAAC,GAAA,EAAA,EAAA,SAAA,CAAA,EAErBhO,EAAA,SAHYI,EAAA,CAAA,EAAAmE,EAAAkF,EAAAqB,SAAA,EACP1K,EAAA,EAAAC,EAAA,OAAAoJ,EAAAhF,QAAA,EAC4BrE,EAAA,EAAAC,EAAA,OAAAoJ,EAAAsB,QAAA,+CFgNpBL,CAAuB,GAAA,EA4KvBqB,IAA8B,IAAA,CAArC,MAAOA,CAA8B,CAC1ClH,YACQoJ,EAAuD,CAAvD,KAAAA,UAAAA,EAGR,KAAA3C,gBAA0BvC,EAAkB4B,KAAKW,gBACjD,KAAA4C,SAAmB,KAAK5C,gBACxB,KAAA6C,gBAA0B,EAC1B,KAAAC,QAAkB,IAclB,KAAAC,YAAcvB,YAAY,IAAK,CAC9B,KAAKoB,SAAW,KAAKA,SAAW,EAChC,KAAKC,gBAAkB,KAAK7C,gBAAkB,KAAK4C,SACnD,KAAKC,gBAAkB,KAAKA,gBAAkB,KAAK7C,gBAAkB,KAAKA,gBAAkB,KAAK6C,gBACjG,KAAKC,SAAW,KAAKD,gBAAkB,KAAK7C,gBAAkB,KAAKgD,QAAQ,CAAC,EACxE,KAAKH,kBAAoB,KAAK7C,kBACjCoB,cAAc,KAAK2B,WAAW,EAC9B,KAAKJ,UAAUM,MAAM,QAAQ,EAE/B,EAAG,GAAI,CA5BH,CAOJC,WAAS,CACR,KAAKP,UAAUM,MAAK,CACrB,CAEAE,YAAU,CACT,KAAKR,UAAUM,MAAM,MAAM,CAC5B,CAEAlN,QAAM,CACL,KAAK4M,UAAUM,MAAM,QAAQ,CAC9B,CAaA7F,UAAQ,CACR,iDAlCYqD,GAA8BnD,EAAA8F,CAAA,CAAA,CAAA,CAAA,+BAA9B3C,EAA8BzC,UAAA,CAAA,CAAA,6BAAA,CAAA,EAAAY,WAAA,GAAAC,MAAA,GAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,UAAA,MAAA,EAAA,CAAA,EAAA,cAAA,SAAA,aAAA,SAAA,YAAA,SAAA,gBAAA,MAAA,EAAA,CAAA,EAAA,QAAA,OAAA,eAAA,OAAA,EAAA,CAAA,EAAA,QAAA,KAAA,EAAA,CAAA,EAAA,WAAA,EAAA,SAAA,OAAA,mBAAA,SAAA,aAAA,QAAA,EAAA,CAAA,OAAA,cAAA,gBAAA,IAAA,gBAAA,IAAA,EAAA,eAAA,EAAA,SAAA,EAAA,CAAA,EAAA,MAAA,EAAA,SAAA,oBAAA,aAAA,QAAA,EAAA,CAAA,EAAA,OAAA,EAAA,CAAA,EAAA,MAAA,sBAAA,EAAA,QAAA,QAAA,EAAA,OAAA,EAAA,CAAA,EAAA,MAAA,cAAA,EAAA,QAAA,QAAA,EAAA,OAAA,CAAA,EAAAC,SAAA,SAAAd,EAAAC,EAAA,CAAAD,EAAA,II/X3CjK,EAAA,EAAA,MAAA,CAAA,EAA2B,EAAA,MAAA,CAAA,EAEzBQ,EAAA,EAAA,iHAAA,EACDC,EAAA,EACAT,EAAA,EAAA,QAAA,CAAA,EAA+C,EAAA,IAAA,EAE7CgB,EAAA,EAAA,KAAA,CAAA,EACAhB,EAAA,EAAA,IAAA,EAAI,EAAA,MAAA,CAAA,EACqF,EAAA,MAAA,CAAA,EACsEQ,EAAA,CAAA,EAA+CC,EAAA,EAAM,EAEnNT,EAAA,GAAA,MAAA,CAAA,EAAsE,GAAA,MAAA,CAAA,EAClD,GAAA,SAAA,CAAA,EACVC,EAAA,QAAA,UAAA,CAAA,OAASiK,EAAApI,OAAA,CAAQ,CAAA,EAAwDtB,EAAA,GAAA,QAAA,EAAMC,EAAA,EAAS,EAEjGT,EAAA,GAAA,MAAA,CAAA,EAAmB,GAAA,SAAA,CAAA,EACVC,EAAA,QAAA,UAAA,CAAA,OAASiK,EAAAgF,WAAA,CAAY,CAAA,EAAgD1O,EAAA,GAAA,aAAA,EAAWC,EAAA,EAAS,EAC5F,EACD,EAEPO,EAAA,GAAA,KAAA,CAAA,EACDP,EAAA,EAAK,EACE,SAbsHI,EAAA,CAAA,EAAAC,EAAA,UAAA4B,EAAA,EAAA0M,GAAAlF,EAAA2E,QAAA,GAAA,CAAA,wCAAmChO,EAAA,EAAAwO,GAAA,GAAAnF,EAAA0E,gBAAA,IAAA1E,EAAA6B,gBAAA,UAAA,+CJsXrJS,CAA8B,GAAA,EA2C9B8C,IAAwB,IAAA,CAA/B,MAAOA,CAAwB,CACpChK,YACS7D,EACAmE,EAAc,CADd,KAAAnE,SAAAA,EACA,KAAAmE,OAAAA,EAGT,KAAA2J,aAAuB,EAFnB,CAIJpG,UAAQ,CACH,KAAKvD,OAAOiB,IAAIiC,YAAW,EAAGC,QAAQ,KAAK,EAAI,EAClD,KAAKwG,aAAe,+IAGhB,KAAK9N,SAASqB,YAAW,EAC5B,KAAK8C,OAAOoB,cAAc,aAAa,EAGvC,KAAKuI,aAAe,wFAGvB,iDApBYD,GAAwBjG,EAAAQ,CAAA,EAAAR,EAAAO,CAAA,CAAA,CAAA,CAAA,+BAAxB0F,EAAwBvF,UAAA,CAAA,CAAA,sBAAA,CAAA,EAAAY,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,MAAA,QAAA,QAAA,EAAA,WAAA,UAAA,EAAA,CAAA,EAAA,WAAA,SAAA,cAAA,WAAA,qBAAA,cAAA,EAAA,UAAA,MAAA,EAAA,CAAA,EAAA,WAAA,CAAA,EAAAC,SAAA,SAAAd,EAAAC,EAAA,CAAAD,EAAA,IK1arCjK,EAAA,EAAA,MAAA,CAAA,EAAwD,EAAA,MAAA,CAAA,EACiD,EAAA,KAAA,EAClGgB,EAAA,EAAA,KAAA,CAAA,EAAoCP,EAAA,EAAM,EAC1C,SADII,EAAA,CAAA,EAAAC,EAAA,YAAAoJ,EAAAqF,aAAAC,CAAA,8BLwaEF,CAAwB,GAAA,EA6BxBG,IAAuB,IAAA,CAA9B,MAAOA,CAAuB,CACnCnK,YACQ7D,EACCgE,EAAkB,CADnB,KAAAhE,SAAAA,EACC,KAAAgE,OAAAA,CACL,CAEJ0D,UAAQ,CACP,GAAI,KAAK1H,SAASqB,YAAW,EAC5B6D,OAAOhB,SAAS+B,KAAO8B,EAAkBkG,QAAU,kBAE/C,CACJ,IAAIzJ,EAA0B,KAAKxE,SAAS+G,YAAW,EACnDvC,EAASkC,MAAQ,IACpB,KAAK1C,OAAO2C,KAAKnC,EAASkC,IAAI,CAEhC,CACD,iDAhBYsH,GAAuBpG,EAAAQ,CAAA,EAAAR,EAAAI,CAAA,CAAA,CAAA,CAAA,+BAAvBgG,EAAuB1F,UAAA,CAAA,CAAA,qBAAA,CAAA,EAAAY,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAE,SAAA,SAAAd,EAAAC,EAAA,CAAA,EAAAyF,cAAA,CAAA,CAAA,CAAA,SAAvBF,CAAuB,GAAA,EA0CpC,IAAaG,IAAyB,IAAA,CAAhC,MAAOA,CAAyB,CACrCC,YAAoBC,EAA2B,CAA3B,KAAAA,YAAAA,EACZ,KAAAC,QAAkB,EADyB,CAGnDC,UAAQ,CACP,KAAKF,YACHG,YACAC,UACAC,GAAS,CACR,KAAKJ,SAAWI,EAAO,SAAc,IAAIC,KAAI,EAC7CC,QAAQC,IAAI,KAAKP,OAAO,EACpB,KAAKA,UAAY,KACpB,KAAKA,QAAU,KAAKA,SAAY,KAAKA,QAAQQ,QAAQ,GAAG,EAAI,EAAK,IAAM,KAAO,MAAQC,EAAkBC,MAAK,EAC7GC,OAAOC,SAASC,KAAO,KAAKb,QAE9B,CAAC,CAEJ,iDAjBYH,GAAyBiB,EAAAC,EAAA,CAAA,CAAA,CAAA,+BAAzBlB,EAAyBmB,UAAA,CAAA,CAAA,uBAAA,CAAA,EAAAC,WAAA,GAAAC,MAAA,EAAAC,KAAA,EAAAC,OAAA,CAAA,CAAA,EAAA,SAAA,yBAAA,qBAAA,QAAA,EAAA,CAAA,EAAA,uBAAA,CAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAAD,EAAA,IAH1BE,EAAA,EAAA,MAAA,CAAA,EAAqEC,EAAA,EAAA,OAAA,CAAA,EAA2CC,EAAA,8BAG/G7B,CAAyB,GAAA","names":["Interrupt","source","options","fn","IdleExpiry","value","expiry","AlternativeStorage","key","index","LocalStorage","storage","data","__ngFactoryType__","ɵɵdefineInjectable","LocalStorageExpiry","localStorage","idling","ɵɵinject","KeepaliveSvc","AutoResume","Idle","zone","keepaliveSvc","platformId","EventEmitter","seconds","sources","self","sub","args","skipExpiry","timeout","watchFn","frequency","force","eventArgs","intervalFn","resume","interrupt","now","diff","countdownMs","handleName","handle","NgZone","PLATFORM_ID","InterruptArgs","innerArgs","InterruptSource","attachFn","detachFn","defaultThrottleDelay","EventTargetInterruptSource","target","events","opts","Subscription","isPlatformServer","eventTarget","fromEvents","eventName","fromEvent","merge","filter","throttleTime","handler","event","DocumentInterruptSource","WindowInterruptSource","StorageInterruptSource","NgIdleModule","LocalStorageExpiry","IdleExpiry","Idle","__ngFactoryType__","ɵɵdefineNgModule","ɵɵdefineInjector","LocalStorage","createDefaultInterruptSources","options","DocumentInterruptSource","StorageInterruptSource","DEFAULT_INTERRUPTSOURCES","ɵɵelementContainerStart","ɵɵelement","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate","ctx_r0","notifications","length","ɵɵproperty","n_r3","Age","ɵɵsanitizeHtml","ɵɵtemplate","NotificationComponent_ng_container_0_section_2_li_7_span_12_Template","ɵɵlistener","ɵɵrestoreView","_r2","$implicit","ɵɵnextContext","ɵɵresetView","handleNotification","Notification","NotificationId","Type","NotificationComponent_ng_container_0_section_2_span_2_Template","NotificationComponent_ng_container_0_section_2_li_6_Template","NotificationComponent_ng_container_0_section_2_li_7_Template","NotificationComponent_ng_container_0_ng_container_1_Template","NotificationComponent_ng_container_0_section_2_Template","notificationReady","n_r5","NotificationComponent_ng_container_1_section_1_li_4_span_12_Template","_r4","NotificationComponent_ng_container_1_section_1_i_1_Template","NotificationComponent_ng_container_1_section_1_li_4_Template","NotificationComponent_ng_container_1_section_1_Template","NotificationComponent","notificationSrv","downloadNotifications","isAnonymous","subscribe","next","response","error","err","console","log","handleAfterNotificationDelete","note","ActionUrl","split","urlRoute","appSrv","redirectReload","queryParams","CommentPostId","goTo","notificationPersonIDs","commentPostIDsToHighlight","currentUrlPathParamCareerId","i","CareerId","NotificationPersonId","push","commentAPI","notificationtAPI","deleteMultipleNotifications","deleteNotification","watchNotification","notificationWatcher","notificationChanged","value","ngOnDestroy","unsubscribe","constructor","appSetting","userInfo","ɵɵdirectiveInject","AppSettingService","AppService","CommentAPIService","NotificationService","NotificationAPIService","UserInfoService","selectors","standalone","decls","vars","consts","template","rf","ctx","NotificationComponent_ng_container_0_Template","NotificationComponent_ng_container_1_Template","isMobile","import_sweetalert2","ɵɵelementContainerStart","ɵɵelementStart","ɵɵtext","ɵɵelementEnd","ɵɵadvance","ɵɵtextInterpolate1","ctx_r0","user","ZoneDisplayName","ɵɵtextInterpolate","ɵɵtemplate","SwitchAccountComponent_ng_container_0_ng_container_1_Template","SwitchAccountComponent_ng_container_0_ng_container_2_Template","ɵɵproperty","mobileView","ɵɵlistener","acc_r3","ɵɵrestoreView","_r2","$implicit","ɵɵnextContext","ɵɵresetView","changeAccount","PersonId","ɵɵpureFunction1","_c1","Role","SwitchAccountComponent_ng_container_1_tr_9_li_5_Template","_c0","zone_r4","Zone","Accounts","ɵɵelement","SwitchAccountComponent_ng_container_1_tr_9_Template","oAccounts","SwitchAccountComponent","constructor","dialog","signupLoginSrv","userInfo","currentZone","canSwitch","previousUserId","AppSettingService","widgetMobile","myPopup","onResize","e","personId","open","SwitchAccountDialog","disableClose","panelClass","width","height","data","afterClosed","subscribe","next","result","Swal","fire","title","text","icon","ngOnDestroy","accountMonitor","unsubscribe","close","ngAfterViewInit","ngOnInit","UserInfoTimestamp","getProfile","isAnonymous","OtherAccounts","length","forEach","a","o","find","x","push","n","error","console","log","ɵɵdirectiveInject","MatDialog","SignupLoginService","UserInfoService","selectors","hostBindings","rf","ctx","$event","ɵɵresolveWindow","SwitchAccountComponent_ng_container_0_Template","SwitchAccountComponent_ng_container_1_Template","accountAPI","dialogRef","router","sessionAPI","signOnAsOther","clearStorage","setTimeout","isJAZone","HighestRole","toLowerCase","window","location","href","baseUrl","AppUtilityService","newId","getHomePage","indexOf","err","AccountAPIService","MatDialogRef","MAT_DIALOG_DATA","Router","SessionAPIService","standalone","decls","vars","consts","template","Keepalive","KeepaliveSvc","http","zone","EventEmitter","url","HttpRequest","seconds","response","error","__ngFactoryType__","ɵɵinject","HttpClient","NgZone","ɵɵdefineInjectable","NgIdleKeepaliveModule","ɵɵdefineNgModule","ɵɵdefineInjector","NgIdleModule","ɵɵelementStart","ɵɵlistener","ɵɵrestoreView","_r4","ctx_r1","ɵɵnextContext","ɵɵresetView","goto","ɵɵtext","ɵɵelementEnd","ɵɵtemplate","NavigationHeaderComponent_header_0_nav_1_div_5_button_1_Template","_r3","ɵɵadvance","ɵɵproperty","allowSignup","ɵɵelement","_r6","gotoWeb","NavigationHeaderComponent_header_0_nav_1_div_6_tr_43_span_5_Template","loadingWeb","_r7","_r8","NavigationHeaderComponent_header_0_nav_1_div_6_tr_44_a_2_Template","NavigationHeaderComponent_header_0_nav_1_div_6_tr_44_a_3_Template","userInfo","isJAZone","_r5","NavigationHeaderComponent_header_0_nav_1_div_6_tr_43_Template","NavigationHeaderComponent_header_0_nav_1_div_6_tr_44_Template","logout","profileImage","ɵɵsanitizeUrl","ɵɵtextInterpolate1","personInfo","FirstName","isSystemAdmin","isZoneAdmin","_r1","goHomehLink","NavigationHeaderComponent_header_0_nav_1_div_5_Template","NavigationHeaderComponent_header_0_nav_1_div_6_Template","ɵɵpureFunction1","_c0","loggedIn","logo","isAnonymous","_r11","NavigationHeaderComponent_header_0_nav_2_ul_15_li_8_li_14_span_3_Template","_r12","_r13","_r10","NavigationHeaderComponent_header_0_nav_2_ul_15_li_8_li_14_Template","NavigationHeaderComponent_header_0_nav_2_ul_15_li_8_li_15_Template","NavigationHeaderComponent_header_0_nav_2_ul_15_li_8_li_16_Template","NavigationHeaderComponent_header_0_nav_2_ul_15_li_7_Template","NavigationHeaderComponent_header_0_nav_2_ul_15_li_8_Template","profileReady","_r15","NavigationHeaderComponent_header_0_nav_2_ul_16_button_2_Template","_r14","_r9","NavigationHeaderComponent_header_0_nav_2_ul_15_Template","NavigationHeaderComponent_header_0_nav_2_ul_16_Template","NavigationHeaderComponent_header_0_nav_1_Template","NavigationHeaderComponent_header_0_nav_2_Template","appSetting","isMobile","_r16","_r18","NavigationHeaderComponent_header_1_nav_2_ul_6_li_4_Template","NavigationHeaderComponent_header_1_nav_2_ul_6_li_5_Template","_r20","NavigationHeaderComponent_header_1_nav_2_ul_7_button_2_Template","_r19","_r17","NavigationHeaderComponent_header_1_nav_2_ul_6_Template","NavigationHeaderComponent_header_1_nav_2_ul_7_Template","NavigationHeaderComponent_header_1_nav_1_Template","NavigationHeaderComponent_header_1_nav_2_Template","ɵɵtextInterpolate","ctx_r0","lastPing","_r2","startWatch","NavigationHeaderComponent","constructor","accountAPI","anonymousSrv","appSrv","webAPI","location","router","zoneAPI","defaultLogo","defaultLogoMobile","user","homeLink","zoneName","pathName","isJAStudent","defaultLogoMobileThresh","storedLocation","path","onResize","event","setDefaultLogo","window","innerWidth","url","openSignupLogin","open","navigateByUrl","skipLocationChange","then","signOn","UserName","Password","ZoneClient","subscribe","next","response","href","error","err","console","log","clearProfile","getProfilePhoto","getMyProfile","Photo","link","goTo","loadUserInfo","getProfile","isLogin","getHomeLink","getZoneName","isStudent","loadLogo","getZone","Logo","toLowerCase","indexOf","ngOnDestroy","accountMonitor","unsubscribe","ngOnInit","UserInfoTimestamp","ɵɵdirectiveInject","AccountAPIService","AnonymousUserService","AppSettingService","AppService","WebAPIService","Location","Router","UserInfoService","ZoneAPIService","selectors","hostBindings","rf","ctx","$event","ɵɵresolveWindow","NavigationHeaderComponent_header_0_Template","NavigationHeaderComponent_header_1_Template","NavigationFooterComponent","currentYear","Date","getFullYear","standalone","decls","vars","consts","template","ɵɵpureFunction0","_c1","_c2","NavigationIdleComponent","idle","keepalive","dialog","idleState","timedOut","idleCtrlId","idleWaring","closeWarning","setIdle","timeoutAfter","setTimeout","warningDuration","interval","keepAlive","setInterrupts","DEFAULT_INTERRUPTSOURCES","AppUtilityService","newId","onIdleStart","stopWatch","NavigationIdleWarningComponent","maxWidth","disableClose","autoFocus","afterClosed","choice","localStorage","setItem","JSON","stringify","toUTCString","clearInterval","checkAlive","watch","idleStart","setInterval","idleTime","parse","getItem","ctrlId","time","onIdleEnd","onTimeout","onTimeoutWarning","countdown","onPing","toLocaleLowerCase","isRunning","stop","Idle","Keepalive","MatDialog","NavigationIdleComponent_p_4_Template","NavigationIdleComponent_button_5_Template","dialogRef","timeleft","warningProgress","percent","progressBar","toFixed","close","onNoClick","stayActive","MatDialogRef","_c4","ɵɵtextInterpolate2","NavigationErrorComponent","errorMessage","ɵɵsanitizeHtml","NavigationHomeComponent","baseUrl","encapsulation","NavigationSplashComponent","constructor","activeRoute","routeTo","ngOnInit","queryParams","subscribe","params","trim","console","log","indexOf","AppUtilityService","newId","window","location","href","ɵɵdirectiveInject","ActivatedRoute","selectors","standalone","decls","vars","consts","template","rf","ctx","ɵɵelementStart","ɵɵelement","ɵɵelementEnd"],"x_google_ignoreList":[0,5]}