{"version":3,"file":"bootstrap-BUyp9sKP.js","sources":["../../src/app/dom.ts","../../node_modules/bootstrap/js/dist/dom/data.js","../../node_modules/bootstrap/js/dist/util/index.js","../../node_modules/bootstrap/js/dist/dom/event-handler.js","../../node_modules/bootstrap/js/dist/dom/manipulator.js","../../node_modules/bootstrap/js/dist/util/config.js","../../node_modules/bootstrap/js/dist/base-component.js","../../node_modules/bootstrap/js/dist/dom/selector-engine.js","../../node_modules/bootstrap/js/dist/util/component-functions.js","../../node_modules/bootstrap/js/dist/alert.js","../../src/app/alert.ts","../../src/app/requests.ts","../../src/assets/favicons/favicon-16x16-light.png","../../src/assets/favicons/favicon-16x16.png","../../src/assets/favicons/favicon-32x32-light.png","../../src/assets/favicons/favicon-32x32.png","../../src/assets/favicons/favicon-64x64-light.png","../../src/assets/favicons/favicon-64x64.png","../../src/assets/favicons/favicon-96x96-light.png","../../src/assets/favicons/favicon-96x96.png","../../src/app/utility.ts"],"sourcesContent":["export function getElementById(id: string): HTMLElement {\n\tconst element = document.getElementById(id);\n\tif (element == null) {\n\t\tthrow new Error('Could not find element with id \"' + id + '\"');\n\t}\n\treturn element as HTMLElement;\n}\n\nexport function emptyElement(element: HTMLElement): HTMLElement {\n\telement.textContent = \"\";\n\treturn element;\n}\n\nexport function setChild(element: HTMLElement, child: Node): HTMLElement {\n\temptyElement(element);\n\telement.appendChild(child);\n\treturn element;\n}\n","/*!\n * Bootstrap data.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Data = factory());\n})(this, (function () { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n /**\n * Constants\n */\n\n const elementMap = new Map();\n const data = {\n set(element, key, instance) {\n if (!elementMap.has(element)) {\n elementMap.set(element, new Map());\n }\n const instanceMap = elementMap.get(element);\n\n // make it clear we only want one instance per element\n // can be removed later when multiple key/instances are fine to be used\n if (!instanceMap.has(key) && instanceMap.size !== 0) {\n // eslint-disable-next-line no-console\n console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(instanceMap.keys())[0]}.`);\n return;\n }\n instanceMap.set(key, instance);\n },\n get(element, key) {\n if (elementMap.has(element)) {\n return elementMap.get(element).get(key) || null;\n }\n return null;\n },\n remove(element, key) {\n if (!elementMap.has(element)) {\n return;\n }\n const instanceMap = elementMap.get(element);\n instanceMap.delete(key);\n\n // free up element references if there are no instances left for an element\n if (instanceMap.size === 0) {\n elementMap.delete(element);\n }\n }\n };\n\n return data;\n\n}));\n//# sourceMappingURL=data.js.map\n","/*!\n * Bootstrap index.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :\n typeof define === 'function' && define.amd ? define(['exports'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.Index = {}));\n})(this, (function (exports) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n const MAX_UID = 1000000;\n const MILLISECONDS_MULTIPLIER = 1000;\n const TRANSITION_END = 'transitionend';\n\n /**\n * Properly escape IDs selectors to handle weird IDs\n * @param {string} selector\n * @returns {string}\n */\n const parseSelector = selector => {\n if (selector && window.CSS && window.CSS.escape) {\n // document.querySelector needs escaping to handle IDs (html5+) containing for instance /\n selector = selector.replace(/#([^\\s\"#']+)/g, (match, id) => `#${CSS.escape(id)}`);\n }\n return selector;\n };\n\n // Shout-out Angus Croll (https://goo.gl/pxwQGp)\n const toType = object => {\n if (object === null || object === undefined) {\n return `${object}`;\n }\n return Object.prototype.toString.call(object).match(/\\s([a-z]+)/i)[1].toLowerCase();\n };\n\n /**\n * Public Util API\n */\n\n const getUID = prefix => {\n do {\n prefix += Math.floor(Math.random() * MAX_UID);\n } while (document.getElementById(prefix));\n return prefix;\n };\n const getTransitionDurationFromElement = element => {\n if (!element) {\n return 0;\n }\n\n // Get transition-duration of the element\n let {\n transitionDuration,\n transitionDelay\n } = window.getComputedStyle(element);\n const floatTransitionDuration = Number.parseFloat(transitionDuration);\n const floatTransitionDelay = Number.parseFloat(transitionDelay);\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0;\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0];\n transitionDelay = transitionDelay.split(',')[0];\n return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;\n };\n const triggerTransitionEnd = element => {\n element.dispatchEvent(new Event(TRANSITION_END));\n };\n const isElement = object => {\n if (!object || typeof object !== 'object') {\n return false;\n }\n if (typeof object.jquery !== 'undefined') {\n object = object[0];\n }\n return typeof object.nodeType !== 'undefined';\n };\n const getElement = object => {\n // it's a jQuery object or a node element\n if (isElement(object)) {\n return object.jquery ? object[0] : object;\n }\n if (typeof object === 'string' && object.length > 0) {\n return document.querySelector(parseSelector(object));\n }\n return null;\n };\n const isVisible = element => {\n if (!isElement(element) || element.getClientRects().length === 0) {\n return false;\n }\n const elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible';\n // Handle `details` element as its content may falsie appear visible when it is closed\n const closedDetails = element.closest('details:not([open])');\n if (!closedDetails) {\n return elementIsVisible;\n }\n if (closedDetails !== element) {\n const summary = element.closest('summary');\n if (summary && summary.parentNode !== closedDetails) {\n return false;\n }\n if (summary === null) {\n return false;\n }\n }\n return elementIsVisible;\n };\n const isDisabled = element => {\n if (!element || element.nodeType !== Node.ELEMENT_NODE) {\n return true;\n }\n if (element.classList.contains('disabled')) {\n return true;\n }\n if (typeof element.disabled !== 'undefined') {\n return element.disabled;\n }\n return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false';\n };\n const findShadowRoot = element => {\n if (!document.documentElement.attachShadow) {\n return null;\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode();\n return root instanceof ShadowRoot ? root : null;\n }\n if (element instanceof ShadowRoot) {\n return element;\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null;\n }\n return findShadowRoot(element.parentNode);\n };\n const noop = () => {};\n\n /**\n * Trick to restart an element's animation\n *\n * @param {HTMLElement} element\n * @return void\n *\n * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation\n */\n const reflow = element => {\n element.offsetHeight; // eslint-disable-line no-unused-expressions\n };\n const getjQuery = () => {\n if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {\n return window.jQuery;\n }\n return null;\n };\n const DOMContentLoadedCallbacks = [];\n const onDOMContentLoaded = callback => {\n if (document.readyState === 'loading') {\n // add listener on the first call when the document is in loading state\n if (!DOMContentLoadedCallbacks.length) {\n document.addEventListener('DOMContentLoaded', () => {\n for (const callback of DOMContentLoadedCallbacks) {\n callback();\n }\n });\n }\n DOMContentLoadedCallbacks.push(callback);\n } else {\n callback();\n }\n };\n const isRTL = () => document.documentElement.dir === 'rtl';\n const defineJQueryPlugin = plugin => {\n onDOMContentLoaded(() => {\n const $ = getjQuery();\n /* istanbul ignore if */\n if ($) {\n const name = plugin.NAME;\n const JQUERY_NO_CONFLICT = $.fn[name];\n $.fn[name] = plugin.jQueryInterface;\n $.fn[name].Constructor = plugin;\n $.fn[name].noConflict = () => {\n $.fn[name] = JQUERY_NO_CONFLICT;\n return plugin.jQueryInterface;\n };\n }\n });\n };\n const execute = (possibleCallback, args = [], defaultValue = possibleCallback) => {\n return typeof possibleCallback === 'function' ? possibleCallback(...args) : defaultValue;\n };\n const executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {\n if (!waitForTransition) {\n execute(callback);\n return;\n }\n const durationPadding = 5;\n const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding;\n let called = false;\n const handler = ({\n target\n }) => {\n if (target !== transitionElement) {\n return;\n }\n called = true;\n transitionElement.removeEventListener(TRANSITION_END, handler);\n execute(callback);\n };\n transitionElement.addEventListener(TRANSITION_END, handler);\n setTimeout(() => {\n if (!called) {\n triggerTransitionEnd(transitionElement);\n }\n }, emulatedDuration);\n };\n\n /**\n * Return the previous/next element of a list.\n *\n * @param {array} list The list of elements\n * @param activeElement The active element\n * @param shouldGetNext Choose to get next or previous element\n * @param isCycleAllowed\n * @return {Element|elem} The proper element\n */\n const getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => {\n const listLength = list.length;\n let index = list.indexOf(activeElement);\n\n // if the element does not exist in the list return an element\n // depending on the direction and if cycle is allowed\n if (index === -1) {\n return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0];\n }\n index += shouldGetNext ? 1 : -1;\n if (isCycleAllowed) {\n index = (index + listLength) % listLength;\n }\n return list[Math.max(0, Math.min(index, listLength - 1))];\n };\n\n exports.defineJQueryPlugin = defineJQueryPlugin;\n exports.execute = execute;\n exports.executeAfterTransition = executeAfterTransition;\n exports.findShadowRoot = findShadowRoot;\n exports.getElement = getElement;\n exports.getNextActiveElement = getNextActiveElement;\n exports.getTransitionDurationFromElement = getTransitionDurationFromElement;\n exports.getUID = getUID;\n exports.getjQuery = getjQuery;\n exports.isDisabled = isDisabled;\n exports.isElement = isElement;\n exports.isRTL = isRTL;\n exports.isVisible = isVisible;\n exports.noop = noop;\n exports.onDOMContentLoaded = onDOMContentLoaded;\n exports.parseSelector = parseSelector;\n exports.reflow = reflow;\n exports.toType = toType;\n exports.triggerTransitionEnd = triggerTransitionEnd;\n\n Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\n}));\n//# sourceMappingURL=index.js.map\n","/*!\n * Bootstrap event-handler.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('../util/index.js')) :\n typeof define === 'function' && define.amd ? define(['../util/index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.EventHandler = factory(global.Index));\n})(this, (function (index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n /**\n * Constants\n */\n\n const namespaceRegex = /[^.]*(?=\\..*)\\.|.*/;\n const stripNameRegex = /\\..*/;\n const stripUidRegex = /::\\d+$/;\n const eventRegistry = {}; // Events storage\n let uidEvent = 1;\n const customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout'\n };\n const nativeEvents = new Set(['click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu', 'mousewheel', 'DOMMouseScroll', 'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend', 'keydown', 'keypress', 'keyup', 'orientationchange', 'touchstart', 'touchmove', 'touchend', 'touchcancel', 'pointerdown', 'pointermove', 'pointerup', 'pointerleave', 'pointercancel', 'gesturestart', 'gesturechange', 'gestureend', 'focus', 'blur', 'change', 'reset', 'select', 'submit', 'focusin', 'focusout', 'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange', 'error', 'abort', 'scroll']);\n\n /**\n * Private methods\n */\n\n function makeEventUid(element, uid) {\n return uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++;\n }\n function getElementEvents(element) {\n const uid = makeEventUid(element);\n element.uidEvent = uid;\n eventRegistry[uid] = eventRegistry[uid] || {};\n return eventRegistry[uid];\n }\n function bootstrapHandler(element, fn) {\n return function handler(event) {\n hydrateObj(event, {\n delegateTarget: element\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n return fn.apply(element, [event]);\n };\n }\n function bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n const domElements = element.querySelectorAll(selector);\n for (let {\n target\n } = event; target && target !== this; target = target.parentNode) {\n for (const domElement of domElements) {\n if (domElement !== target) {\n continue;\n }\n hydrateObj(event, {\n delegateTarget: target\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, selector, fn);\n }\n return fn.apply(target, [event]);\n }\n }\n };\n }\n function findHandler(events, callable, delegationSelector = null) {\n return Object.values(events).find(event => event.callable === callable && event.delegationSelector === delegationSelector);\n }\n function normalizeParameters(originalTypeEvent, handler, delegationFunction) {\n const isDelegated = typeof handler === 'string';\n // TODO: tooltip passes `false` instead of selector, so we need to check\n const callable = isDelegated ? delegationFunction : handler || delegationFunction;\n let typeEvent = getTypeEvent(originalTypeEvent);\n if (!nativeEvents.has(typeEvent)) {\n typeEvent = originalTypeEvent;\n }\n return [isDelegated, callable, typeEvent];\n }\n function addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n let [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);\n\n // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position\n // this prevents the handler from being dispatched the same way as mouseover or mouseout does\n if (originalTypeEvent in customEvents) {\n const wrapFunction = fn => {\n return function (event) {\n if (!event.relatedTarget || event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget)) {\n return fn.call(this, event);\n }\n };\n };\n callable = wrapFunction(callable);\n }\n const events = getElementEvents(element);\n const handlers = events[typeEvent] || (events[typeEvent] = {});\n const previousFunction = findHandler(handlers, callable, isDelegated ? handler : null);\n if (previousFunction) {\n previousFunction.oneOff = previousFunction.oneOff && oneOff;\n return;\n }\n const uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, ''));\n const fn = isDelegated ? bootstrapDelegationHandler(element, handler, callable) : bootstrapHandler(element, callable);\n fn.delegationSelector = isDelegated ? handler : null;\n fn.callable = callable;\n fn.oneOff = oneOff;\n fn.uidEvent = uid;\n handlers[uid] = fn;\n element.addEventListener(typeEvent, fn, isDelegated);\n }\n function removeHandler(element, events, typeEvent, handler, delegationSelector) {\n const fn = findHandler(events[typeEvent], handler, delegationSelector);\n if (!fn) {\n return;\n }\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));\n delete events[typeEvent][fn.uidEvent];\n }\n function removeNamespacedHandlers(element, events, typeEvent, namespace) {\n const storeElementEvent = events[typeEvent] || {};\n for (const [handlerKey, event] of Object.entries(storeElementEvent)) {\n if (handlerKey.includes(namespace)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n }\n function getTypeEvent(event) {\n // allow to get the native events from namespaced events ('click.bs.button' --> 'click')\n event = event.replace(stripNameRegex, '');\n return customEvents[event] || event;\n }\n const EventHandler = {\n on(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, false);\n },\n one(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, true);\n },\n off(element, originalTypeEvent, handler, delegationFunction) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n const [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);\n const inNamespace = typeEvent !== originalTypeEvent;\n const events = getElementEvents(element);\n const storeElementEvent = events[typeEvent] || {};\n const isNamespace = originalTypeEvent.startsWith('.');\n if (typeof callable !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!Object.keys(storeElementEvent).length) {\n return;\n }\n removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null);\n return;\n }\n if (isNamespace) {\n for (const elementEvent of Object.keys(events)) {\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));\n }\n }\n for (const [keyHandlers, event] of Object.entries(storeElementEvent)) {\n const handlerKey = keyHandlers.replace(stripUidRegex, '');\n if (!inNamespace || originalTypeEvent.includes(handlerKey)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n },\n trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null;\n }\n const $ = index_js.getjQuery();\n const typeEvent = getTypeEvent(event);\n const inNamespace = event !== typeEvent;\n let jQueryEvent = null;\n let bubbles = true;\n let nativeDispatch = true;\n let defaultPrevented = false;\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args);\n $(element).trigger(jQueryEvent);\n bubbles = !jQueryEvent.isPropagationStopped();\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();\n defaultPrevented = jQueryEvent.isDefaultPrevented();\n }\n const evt = hydrateObj(new Event(event, {\n bubbles,\n cancelable: true\n }), args);\n if (defaultPrevented) {\n evt.preventDefault();\n }\n if (nativeDispatch) {\n element.dispatchEvent(evt);\n }\n if (evt.defaultPrevented && jQueryEvent) {\n jQueryEvent.preventDefault();\n }\n return evt;\n }\n };\n function hydrateObj(obj, meta = {}) {\n for (const [key, value] of Object.entries(meta)) {\n try {\n obj[key] = value;\n } catch (_unused) {\n Object.defineProperty(obj, key, {\n configurable: true,\n get() {\n return value;\n }\n });\n }\n }\n return obj;\n }\n\n return EventHandler;\n\n}));\n//# sourceMappingURL=event-handler.js.map\n","/*!\n * Bootstrap manipulator.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Manipulator = factory());\n})(this, (function () { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n function normalizeData(value) {\n if (value === 'true') {\n return true;\n }\n if (value === 'false') {\n return false;\n }\n if (value === Number(value).toString()) {\n return Number(value);\n }\n if (value === '' || value === 'null') {\n return null;\n }\n if (typeof value !== 'string') {\n return value;\n }\n try {\n return JSON.parse(decodeURIComponent(value));\n } catch (_unused) {\n return value;\n }\n }\n function normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, chr => `-${chr.toLowerCase()}`);\n }\n const Manipulator = {\n setDataAttribute(element, key, value) {\n element.setAttribute(`data-bs-${normalizeDataKey(key)}`, value);\n },\n removeDataAttribute(element, key) {\n element.removeAttribute(`data-bs-${normalizeDataKey(key)}`);\n },\n getDataAttributes(element) {\n if (!element) {\n return {};\n }\n const attributes = {};\n const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig'));\n for (const key of bsKeys) {\n let pureKey = key.replace(/^bs/, '');\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);\n attributes[pureKey] = normalizeData(element.dataset[key]);\n }\n return attributes;\n },\n getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(`data-bs-${normalizeDataKey(key)}`));\n }\n };\n\n return Manipulator;\n\n}));\n//# sourceMappingURL=manipulator.js.map\n","/*!\n * Bootstrap config.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('../dom/manipulator.js'), require('./index.js')) :\n typeof define === 'function' && define.amd ? define(['../dom/manipulator', './index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Config = factory(global.Manipulator, global.Index));\n})(this, (function (Manipulator, index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap util/config.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n /**\n * Class definition\n */\n\n class Config {\n // Getters\n static get Default() {\n return {};\n }\n static get DefaultType() {\n return {};\n }\n static get NAME() {\n throw new Error('You have to implement the static method \"NAME\", for each component!');\n }\n _getConfig(config) {\n config = this._mergeConfigObj(config);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n _configAfterMerge(config) {\n return config;\n }\n _mergeConfigObj(config, element) {\n const jsonConfig = index_js.isElement(element) ? Manipulator.getDataAttribute(element, 'config') : {}; // try to parse\n\n return {\n ...this.constructor.Default,\n ...(typeof jsonConfig === 'object' ? jsonConfig : {}),\n ...(index_js.isElement(element) ? Manipulator.getDataAttributes(element) : {}),\n ...(typeof config === 'object' ? config : {})\n };\n }\n _typeCheckConfig(config, configTypes = this.constructor.DefaultType) {\n for (const [property, expectedTypes] of Object.entries(configTypes)) {\n const value = config[property];\n const valueType = index_js.isElement(value) ? 'element' : index_js.toType(value);\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option \"${property}\" provided type \"${valueType}\" but expected type \"${expectedTypes}\".`);\n }\n }\n }\n }\n\n return Config;\n\n}));\n//# sourceMappingURL=config.js.map\n","/*!\n * Bootstrap base-component.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/data.js'), require('./dom/event-handler.js'), require('./util/config.js'), require('./util/index.js')) :\n typeof define === 'function' && define.amd ? define(['./dom/data', './dom/event-handler', './util/config', './util/index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.BaseComponent = factory(global.Data, global.EventHandler, global.Config, global.Index));\n})(this, (function (Data, EventHandler, Config, index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n /**\n * Constants\n */\n\n const VERSION = '5.3.3';\n\n /**\n * Class definition\n */\n\n class BaseComponent extends Config {\n constructor(element, config) {\n super();\n element = index_js.getElement(element);\n if (!element) {\n return;\n }\n this._element = element;\n this._config = this._getConfig(config);\n Data.set(this._element, this.constructor.DATA_KEY, this);\n }\n\n // Public\n dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY);\n EventHandler.off(this._element, this.constructor.EVENT_KEY);\n for (const propertyName of Object.getOwnPropertyNames(this)) {\n this[propertyName] = null;\n }\n }\n _queueCallback(callback, element, isAnimated = true) {\n index_js.executeAfterTransition(callback, element, isAnimated);\n }\n _getConfig(config) {\n config = this._mergeConfigObj(config, this._element);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n\n // Static\n static getInstance(element) {\n return Data.get(index_js.getElement(element), this.DATA_KEY);\n }\n static getOrCreateInstance(element, config = {}) {\n return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null);\n }\n static get VERSION() {\n return VERSION;\n }\n static get DATA_KEY() {\n return `bs.${this.NAME}`;\n }\n static get EVENT_KEY() {\n return `.${this.DATA_KEY}`;\n }\n static eventName(name) {\n return `${name}${this.EVENT_KEY}`;\n }\n }\n\n return BaseComponent;\n\n}));\n//# sourceMappingURL=base-component.js.map\n","/*!\n * Bootstrap selector-engine.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('../util/index.js')) :\n typeof define === 'function' && define.amd ? define(['../util/index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.SelectorEngine = factory(global.Index));\n})(this, (function (index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n const getSelector = element => {\n let selector = element.getAttribute('data-bs-target');\n if (!selector || selector === '#') {\n let hrefAttribute = element.getAttribute('href');\n\n // The only valid content that could double as a selector are IDs or classes,\n // so everything starting with `#` or `.`. If a \"real\" URL is used as the selector,\n // `document.querySelector` will rightfully complain it is invalid.\n // See https://github.com/twbs/bootstrap/issues/32273\n if (!hrefAttribute || !hrefAttribute.includes('#') && !hrefAttribute.startsWith('.')) {\n return null;\n }\n\n // Just in case some CMS puts out a full URL with the anchor appended\n if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {\n hrefAttribute = `#${hrefAttribute.split('#')[1]}`;\n }\n selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;\n }\n return selector ? selector.split(',').map(sel => index_js.parseSelector(sel)).join(',') : null;\n };\n const SelectorEngine = {\n find(selector, element = document.documentElement) {\n return [].concat(...Element.prototype.querySelectorAll.call(element, selector));\n },\n findOne(selector, element = document.documentElement) {\n return Element.prototype.querySelector.call(element, selector);\n },\n children(element, selector) {\n return [].concat(...element.children).filter(child => child.matches(selector));\n },\n parents(element, selector) {\n const parents = [];\n let ancestor = element.parentNode.closest(selector);\n while (ancestor) {\n parents.push(ancestor);\n ancestor = ancestor.parentNode.closest(selector);\n }\n return parents;\n },\n prev(element, selector) {\n let previous = element.previousElementSibling;\n while (previous) {\n if (previous.matches(selector)) {\n return [previous];\n }\n previous = previous.previousElementSibling;\n }\n return [];\n },\n // TODO: this is now unused; remove later along with prev()\n next(element, selector) {\n let next = element.nextElementSibling;\n while (next) {\n if (next.matches(selector)) {\n return [next];\n }\n next = next.nextElementSibling;\n }\n return [];\n },\n focusableChildren(element) {\n const focusables = ['a', 'button', 'input', 'textarea', 'select', 'details', '[tabindex]', '[contenteditable=\"true\"]'].map(selector => `${selector}:not([tabindex^=\"-\"])`).join(',');\n return this.find(focusables, element).filter(el => !index_js.isDisabled(el) && index_js.isVisible(el));\n },\n getSelectorFromElement(element) {\n const selector = getSelector(element);\n if (selector) {\n return SelectorEngine.findOne(selector) ? selector : null;\n }\n return null;\n },\n getElementFromSelector(element) {\n const selector = getSelector(element);\n return selector ? SelectorEngine.findOne(selector) : null;\n },\n getMultipleElementsFromSelector(element) {\n const selector = getSelector(element);\n return selector ? SelectorEngine.find(selector) : [];\n }\n };\n\n return SelectorEngine;\n\n}));\n//# sourceMappingURL=selector-engine.js.map\n","/*!\n * Bootstrap component-functions.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('../dom/event-handler.js'), require('../dom/selector-engine.js'), require('./index.js')) :\n typeof define === 'function' && define.amd ? define(['exports', '../dom/event-handler', '../dom/selector-engine', './index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.ComponentFunctions = {}, global.EventHandler, global.SelectorEngine, global.Index));\n})(this, (function (exports, EventHandler, SelectorEngine, index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap util/component-functions.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n const enableDismissTrigger = (component, method = 'hide') => {\n const clickEvent = `click.dismiss${component.EVENT_KEY}`;\n const name = component.NAME;\n EventHandler.on(document, clickEvent, `[data-bs-dismiss=\"${name}\"]`, function (event) {\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n if (index_js.isDisabled(this)) {\n return;\n }\n const target = SelectorEngine.getElementFromSelector(this) || this.closest(`.${name}`);\n const instance = component.getOrCreateInstance(target);\n\n // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method\n instance[method]();\n });\n };\n\n exports.enableDismissTrigger = enableDismissTrigger;\n\n Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\n}));\n//# sourceMappingURL=component-functions.js.map\n","/*!\n * Bootstrap alert.js v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./base-component.js'), require('./dom/event-handler.js'), require('./util/component-functions.js'), require('./util/index.js')) :\n typeof define === 'function' && define.amd ? define(['./base-component', './dom/event-handler', './util/component-functions', './util/index'], factory) :\n (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Alert = factory(global.BaseComponent, global.EventHandler, global.ComponentFunctions, global.Index));\n})(this, (function (BaseComponent, EventHandler, componentFunctions_js, index_js) { 'use strict';\n\n /**\n * --------------------------------------------------------------------------\n * Bootstrap alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n /**\n * Constants\n */\n\n const NAME = 'alert';\n const DATA_KEY = 'bs.alert';\n const EVENT_KEY = `.${DATA_KEY}`;\n const EVENT_CLOSE = `close${EVENT_KEY}`;\n const EVENT_CLOSED = `closed${EVENT_KEY}`;\n const CLASS_NAME_FADE = 'fade';\n const CLASS_NAME_SHOW = 'show';\n\n /**\n * Class definition\n */\n\n class Alert extends BaseComponent {\n // Getters\n static get NAME() {\n return NAME;\n }\n\n // Public\n close() {\n const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE);\n if (closeEvent.defaultPrevented) {\n return;\n }\n this._element.classList.remove(CLASS_NAME_SHOW);\n const isAnimated = this._element.classList.contains(CLASS_NAME_FADE);\n this._queueCallback(() => this._destroyElement(), this._element, isAnimated);\n }\n\n // Private\n _destroyElement() {\n this._element.remove();\n EventHandler.trigger(this._element, EVENT_CLOSED);\n this.dispose();\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Alert.getOrCreateInstance(this);\n if (typeof config !== 'string') {\n return;\n }\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config](this);\n });\n }\n }\n\n /**\n * Data API implementation\n */\n\n componentFunctions_js.enableDismissTrigger(Alert, 'close');\n\n /**\n * jQuery\n */\n\n index_js.defineJQueryPlugin(Alert);\n\n return Alert;\n\n}));\n//# sourceMappingURL=alert.js.map\n","import Alert from \"bootstrap/js/dist/alert\";\n\nexport type AlertType = \"primary\" | \"success\" | \"danger\" | \"warning\";\n\nconst alertTypeToClass = {\n\tprimary: \"alert-primary\",\n\tsuccess: \"alert-success\",\n\tdanger: \"alert-danger\",\n\twarning: \"alert-warning\",\n};\n\nexport class AlertBuilder {\n\tprivate readonly element: HTMLDivElement;\n\n\tconstructor(type: AlertType) {\n\t\tthis.element = document.createElement(\"div\");\n\t\tthis.element.classList.add(\"alert\", alertTypeToClass[type], \"show\");\n\t\tthis.element.setAttribute(\"role\", \"alert\");\n\t}\n\n\tspinner(): AlertBuilder {\n\t\tconst spinner = document.createElement(\"div\");\n\t\tspinner.classList.add(\"spinner-border\", \"spinner-border-sm\", \"me-2\");\n\t\tspinner.setAttribute(\"role\", \"status\");\n\t\tthis.element.appendChild(spinner);\n\t\treturn this;\n\t}\n\n\ttext(text: string): AlertBuilder {\n\t\tthis.element.appendChild(document.createTextNode(text));\n\t\treturn this;\n\t}\n\n\tadd(element: Node): AlertBuilder {\n\t\tthis.element.appendChild(element);\n\t\treturn this;\n\t}\n\n\tbuild(): HTMLDivElement {\n\t\treturn this.element;\n\t}\n\n\tdismissible(): DismissibleAlertBuilder {\n\t\treturn new DismissibleAlertBuilder(this.element);\n\t}\n}\n\nexport class DismissibleAlertBuilder {\n\tprivate readonly element: HTMLDivElement;\n\tprivate readonly dismiss: HTMLButtonElement;\n\tprivate readonly alert: Alert;\n\n\tconstructor(element: HTMLDivElement) {\n\t\tthis.element = element;\n\n\t\tthis.dismiss = document.createElement(\"button\");\n\t\tthis.dismiss.classList.add(\"btn-close\", \"no-focus-shadow\");\n\t\tthis.dismiss.setAttribute(\"type\", \"button\");\n\t\tthis.dismiss.setAttribute(\"data-bs-dismiss\", \"alert\");\n\t\tthis.dismiss.setAttribute(\"aria-label\", \"Close\");\n\n\t\tthis.element.appendChild(this.dismiss);\n\t\tthis.element.classList.add(\"alert-dismissible\", \"fade\");\n\n\t\tthis.alert = new Alert(this.element);\n\t}\n\n\thideAfter(duration: number): DismissibleAlertBuilder {\n\t\tconst { alert, dismiss, element } = this;\n\t\tconst timeout = setTimeout(() => alert.close(), duration);\n\t\tdismiss.addEventListener(\"click\", e => {\n\t\t\te.stopPropagation();\n\t\t\tclearTimeout(timeout);\n\t\t});\n\t\telement.addEventListener(\"click\", e => {\n\t\t\tif (e.target === dismiss) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telement.classList.remove(\"fade\");\n\t\t\talert.close();\n\t\t\tclearTimeout(timeout);\n\t\t});\n\t\treturn this;\n\t}\n\n\tbuild(): HTMLDivElement {\n\t\treturn this.element;\n\t}\n\n\tgetAlert(): Alert {\n\t\treturn this.alert;\n\t}\n}\n","import { Rgb } from \"@app/rgb\";\n\nexport type AutofillState = \"disabled\" | \"enabledAll\" | { enabledWith: string[] };\n\nexport type IdMapUpdate = { update: V } | { remove: K };\n\nexport interface ResolvedListResource extends UnregisteredResource {\n\tresourceId: string;\n\tcropping: CropInformation | undefined;\n}\n\nexport interface CropInformation {\n\tcolor: Rgb;\n\tthreshold: number;\n}\n\nexport interface ListShort {\n\tid: string;\n\tname: string;\n\tkind: ListKind;\n}\n\nexport interface FfmpegResourceBase {\n\tstartTimestamp: number | null;\n\tendTimestamp: number | null;\n}\n\nexport interface YoutubeFfmpegResource extends FfmpegResourceBase {\n\tyoutube: string;\n}\n\nexport interface UrlFfmpegResource extends FfmpegResourceBase {\n\turl: string;\n}\n\nexport type FfmpegResource = YoutubeFfmpegResource | UrlFfmpegResource;\n\nexport interface SpotifyResource {\n\ttrackId: string;\n}\n\nexport interface VibrancyColor {\n\tcolor: Rgb;\n\tpopulation: number;\n}\n\nexport interface Vibrancy {\n\tdark: VibrancyColor | null;\n\tdarkMuted: VibrancyColor | null;\n\tlight: VibrancyColor | null;\n\tlightMuted: VibrancyColor | null;\n\tmuted: VibrancyColor | null;\n\tprimary: VibrancyColor | null;\n}\n\nexport interface Thumbnail {\n\turl: string;\n\timage: string;\n\tvibrancy: Vibrancy | null;\n}\n\nexport type QueueType = \"autofill\" | \"enqueue\" | \"front\";\nexport type SubResource = \"spotify\" | \"ffmpeg\";\n\nexport interface ResolvedResource {\n\tresourceId: string;\n\tname: string;\n\tspotify: SpotifyResource | null;\n\tffmpeg: FfmpegResource | null;\n}\n\nexport interface UnregisteredResource {\n\tname: string;\n\tspotify: SpotifyResource | null;\n\tffmpeg: FfmpegResource | null;\n\tpriority: SubResource | null;\n\tresourceId: string | null;\n}\n\nexport interface ResolvedSearchResource extends ResolvedListResource {\n\tplaylists: string[];\n}\n\nexport interface ResolvedSampleResource extends ResolvedSearchResource {\n\tplaylist: string;\n}\n\nexport interface QueueItem {\n\tid: string;\n\tissuerId: string | null;\n\tplaylistId: string | null;\n\tcontainingPlaylists: string[] | null;\n\tselectedPlaylist?: string;\n\tresource: ResolvedResource | null;\n\tqueueType: QueueType;\n\tsubResource: SubResource | null;\n}\n\nexport interface PlayerItem {\n\tid: string;\n\tissuerId: string | null;\n\tplaylistId: string | null;\n\tresource: ResolvedResource;\n\tcontainingPlaylists: string[] | null;\n\tqueueType: QueueType;\n\tsubResource: SubResource;\n\tthumbnail: Thumbnail | null;\n\tstartTimestamp: number;\n\tendTimestamp: number | null;\n\tstartTime: string;\n}\n\nexport interface User {\n\tid: string;\n\tname: string;\n}\n\nexport interface UserVoteProgress {\n\tvoters: number;\n\tneeded: number;\n\tselfVoted: boolean;\n}\n\nexport interface VoteData {\n\tid: string;\n\tvote: VoteType;\n\tprogress: UserVoteProgress;\n}\n\nexport interface PlayingData {\n\titem: PlayerItem;\n\ttimestamp: number;\n}\n\nexport type LoadError =\n\t| \"noSubResource\"\n\t| \"ffmpeg\"\n\t| \"spotifyPlayer\"\n\t| \"youtubeDl\"\n\t| \"spotify\"\n\t| { noMatchingSubResource: SubResource };\n\nexport namespace Initials {\n\texport interface Autofill {\n\t\tstate: AutofillState;\n\t\tuser: string | null;\n\t}\n\n\texport interface Listeners {\n\t\tlisteners: string[];\n\t}\n\n\texport type Lists = ListShort[];\n\n\texport interface Player {\n\t\titem: PlayingData | null;\n\t\tpaused: boolean;\n\t}\n\n\texport interface Queue {\n\t\titems: QueueItem[];\n\t}\n\n\texport interface RecentlyPlayed {\n\t\titems: QueueItem[];\n\t}\n\n\texport type Users = User[];\n\n\texport type Vote = VoteData | null;\n}\n\nexport namespace Updates {\n\texport interface Autofill {\n\t\tchange: AutofillState;\n\t\tuser: string;\n\t}\n\n\texport type Lists = IdMapUpdate;\n\n\texport type Player = \"pause\" | \"resume\" | \"endOfResource\" | { play: PlayingData };\n\n\texport type Queue =\n\t\t| \"pop\"\n\t\t| { front: { item: QueueItem } }\n\t\t| { enqueue: { item: QueueItem } }\n\t\t| { removeAt: { offset: number } };\n\n\texport interface RecentlyPlayed {\n\t\titems: QueueItem[];\n\t}\n\n\texport type Users = User[];\n\n\texport type Vote = \"finish\" | \"remove\" | { start: VoteData } | { progress: UserVoteProgress };\n}\n\nexport interface Request {\n\turl: string;\n\tmethod: string;\n\tdata?: unknown;\n\taccept?: string;\n}\n\nconst APPLICATION_JSON = \"application/json\";\n\nexport function request(url: string, method: string, data?: string, accept?: string): Promise {\n\tconst headers: HeadersInit = { \"content-type\": APPLICATION_JSON };\n\tif (accept !== undefined) {\n\t\theaders[\"Accept\"] = accept;\n\t}\n\n\tconst request = new Request(url, {\n\t\tmethod,\n\t\theaders,\n\t\tbody: data,\n\t});\n\treturn window.fetch(request).then(\n\t\tx => {\n\t\t\tif (x.ok) {\n\t\t\t\treturn Promise.resolve(x);\n\t\t\t}\n\t\t\treturn Promise.reject(x);\n\t\t},\n\t\tr => {\n\t\t\tconsole.log(r);\n\t\t\treturn Response.json({});\n\t\t},\n\t);\n}\n\nexport function apiRequest({ data, method, url, accept }: Request): Promise {\n\treturn request(`api/${url}`, method, data === undefined ? data : JSON.stringify(data), accept);\n}\n\nfunction json(p: Promise): Promise {\n\treturn p.then(r => r.json() as T);\n}\n\nfunction empty(p: Promise): Promise {\n\treturn p.then(() => {\n\t\treturn;\n\t});\n}\n\nexport interface GetRequest {\n\turl: string;\n\tdata?: Record;\n\taccept?: string;\n}\n\nexport function apiRequestGet({ url, data, accept }: GetRequest): Promise {\n\treturn apiRequest({\n\t\tmethod: \"GET\",\n\t\turl: data === undefined ? url : url + \"?\" + new URLSearchParams(data),\n\t\taccept,\n\t});\n}\n\nexport const resourceTranslateError = {\n\t\"resource-not-found\": \"Resource not found\",\n\t\"duplicate-resource\": \"Duplicate resource\",\n\t\"duplicate-url\": \"This url subresource is already associated with another resource\",\n\t\"duplicate-spotify\": \"This spotify subresource is already associated with another resource\",\n\t\"empty-resource\": \"Resource would be empty after this action\",\n\t\"invalid-merge\": \"Invalid merge, the resources do not complement each other\",\n\t\"invalid-replace\": \"Can't merge a resource with itself\",\n};\n\nexport const listTranslateError = {\n\t\"playlist-bad-id\": \"Playlist not found\",\n\t\"duplicate-playlist-id\": \"Duplicate playlist id\",\n\t\"playlist-duplicate-resource\": \"Duplicate resource in playlist\",\n\t\"out-of-bounds\": \"Index out of bounds\",\n\t\"internal-error\": \"Internal error\",\n\t\"resource-did-not-match\": \"Resource did not match\",\n\t\"no-permission\": \"Permission denied\",\n};\n\nexport const userTranslateError = {\n\t\"user-not-found\": \"User not found\",\n\t\"duplicate-user\": \"Duplicate user\",\n\t\"internal-error\": \"Internal error\",\n\t\"invalid-password\": \"Invalid password\",\n\t\"insecure-password\": \"Insecure password\",\n\t\"unknown-login-name\": \"Unknown login name\",\n\t\"duplicate-login-name\": \"Duplicate login name\",\n};\n\nexport const queueTranslateError = {\n\t\"loader-youtube-dl-failed\": \"Youtube-Dl failed to load the track\",\n\t\"loader-ffmpeg-error\": \"A ffmpeg error occured\",\n\t\"loader-spotify-error\": \"Failed to access spotify API\",\n};\n\nexport class SpotifyResourceSource {\n\tprivate spotifyTrackId: string;\n\n\tconstructor(spotifyTrackId: string) {\n\t\tthis.spotifyTrackId = spotifyTrackId;\n\t}\n}\n\nexport class ResourceIdResourceSource {\n\tprivate resourceId: string;\n\n\tconstructor(resourceId: string) {\n\t\tthis.resourceId = resourceId;\n\t}\n}\n\nexport class YoutubeResourceSource {\n\tprivate query: {\n\t\tyoutubeId: string;\n\t\tstartTimestamp?: number;\n\t\tendTimestamp?: number;\n\t};\n\n\tconstructor(youtubeId: string, startTimestamp?: number, endTimestamp?: number) {\n\t\tthis.query = { youtubeId, startTimestamp, endTimestamp };\n\t}\n}\n\nexport class UrlResourceSource {\n\tprivate query: {\n\t\turl: string;\n\t\tstartTimestamp?: number;\n\t\tendTimestamp?: number;\n\t};\n\n\tconstructor(url: string, startTimestamp?: number, endTimestamp?: number) {\n\t\tthis.query = { url, startTimestamp, endTimestamp };\n\t}\n}\n\nexport type ResourceSource =\n\t| SpotifyResourceSource\n\t| ResourceIdResourceSource\n\t| YoutubeResourceSource\n\t| UrlResourceSource;\n\nexport class ResourcePlayResource {\n\tprivate resource: {\n\t\tresourceId: string;\n\t\tlistId: string;\n\t\tsubResource?: SubResource;\n\t};\n\n\tconstructor(resourceId: string, listId: string, subResource?: SubResource) {\n\t\tthis.resource = { resourceId, listId, subResource };\n\t}\n}\n\nexport type PlayResourceSource =\n\t| SpotifyResourceSource\n\t| ResourcePlayResource\n\t| YoutubeResourceSource\n\t| UrlResourceSource;\n\nexport type ListKind = \"normal\" | \"genre\";\n\nexport interface ListProtectedEditors {\n\tprotected: string[];\n}\n\nexport type ListEditors = \"public\" | ListProtectedEditors;\nexport type VoteType = \"pause\" | \"resume\" | \"skip\";\n\nexport interface Permissions {\n\tadmin: boolean;\n\tfront: boolean;\n\tplaylist: boolean;\n}\n\nexport type ResourcePriority = \"spotify\" | \"ffmpeg\" | null;\n\nexport interface FullUser {\n\tid: string;\n\tname: string;\n\tloginName: string;\n\tpermissions?: Permissions;\n}\n\nexport interface ListGet {\n\tname: string;\n\towner: string;\n\tkind: ListKind;\n\teditors: ListEditors;\n\tcount: number;\n}\n\nexport interface ListGetItems {\n\titems: ResolvedListResource[];\n\trange: { start: number; end: number };\n}\n\nexport interface SearchResult {\n\tname: string;\n}\n\nexport interface UrlSearchResult extends SearchResult {\n\tid: string;\n\turl: string;\n}\n\nexport interface SearchData {\n\tresources: SearchResult[];\n}\n\nexport type MergeSource = \"a\" | \"b\";\n\nexport type MetadataKind = \"youtube\" | \"spotify\" | \"soundcloud\";\n\nexport interface Metadata {\n\tname: string;\n\tthumbnail_url: string;\n\tkind: MetadataKind;\n}\n\nexport const requests = {\n\tauth: (loginData: { password: string; loginName: string }) =>\n\t\tapiRequest({\n\t\t\turl: \"auth\",\n\t\t\tmethod: \"POST\",\n\t\t\tdata: loginData,\n\t\t}),\n\n\tregister: (registerData: { loginName: string; name: string; password: string }) =>\n\t\tapiRequest({\n\t\t\turl: \"register\",\n\t\t\tmethod: \"POST\",\n\t\t\tdata: registerData,\n\t\t}),\n\n\tlists: () =>\n\t\tapiRequestGet({\n\t\t\turl: \"lists\",\n\t\t\taccept: \"json\",\n\t\t}),\n\n\tresources: (): Promise<{ resources: string[] }> =>\n\t\tapiRequestGet({\n\t\t\turl: \"resources\",\n\t\t}).then(r => r.json()),\n\n\tupdates: () =>\n\t\tapiRequestGet({\n\t\t\turl: \"updates\",\n\t\t}).then(r => r.json()),\n\n\tautofill: {\n\t\tenable: (lists: string[]) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"autofill/enable\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: {\n\t\t\t\t\tlists: lists,\n\t\t\t\t},\n\t\t\t}),\n\n\t\tenableAll: () =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"autofill/enable\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: \"all\",\n\t\t\t}),\n\n\t\tdisable: () =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"autofill/disable\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t}),\n\t},\n\n\tlist: {\n\t\tchangeInfo: (id: string, name: string, kind: ListKind, editors: ListEditors) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"list/change-info\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: {\n\t\t\t\t\tlistId: id,\n\t\t\t\t\tname: name,\n\t\t\t\t\tkind: kind,\n\t\t\t\t\teditors: editors,\n\t\t\t\t},\n\t\t\t}),\n\t\tchangeOwner: (id: string, newOwner: string) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"list/change-owner\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: {\n\t\t\t\t\tlistId: id,\n\t\t\t\t\towner: newOwner,\n\t\t\t\t},\n\t\t\t}),\n\t\tcreate: (name: string, kind: ListKind, editors: ListEditors) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"list/create\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: {\n\t\t\t\t\tname: name,\n\t\t\t\t\tkind: kind,\n\t\t\t\t\teditors: editors,\n\t\t\t\t},\n\t\t\t}),\n\t\tget: (id: string): Promise =>\n\t\t\tjson(\n\t\t\t\tapiRequestGet({\n\t\t\t\t\turl: \"list/get\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t},\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t\tremove: (id: string) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"list/remove\",\n\t\t\t\tmethod: \"DELETE\",\n\t\t\t\tdata: {\n\t\t\t\t\tlistId: id,\n\t\t\t\t},\n\t\t\t}),\n\t\titems: {\n\t\t\tadd: (id: string, source: ResourceSource) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"list/items/add\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\t...source,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\tget: (id: string, start: number, end?: number): Promise =>\n\t\t\t\tjson(\n\t\t\t\t\tapiRequestGet({\n\t\t\t\t\t\turl: \"list/items/get\",\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\t\tstart: String(start),\n\t\t\t\t\t\t\tend: String(end),\n\t\t\t\t\t\t},\n\t\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t\tremove: (id: string, resourceId: string, index?: number) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"list/items/remove\",\n\t\t\t\t\tmethod: \"DELETE\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\tresourceId: resourceId,\n\t\t\t\t\t\tindex: index,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\tremoveAll: (id: string, resourceIds: string[]) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"list/items/remove-all\",\n\t\t\t\t\tmethod: \"DELETE\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\tresourceIds: resourceIds,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t},\n\t},\n\n\tplayer: {\n\t\taudio: () =>\n\t\t\tapiRequestGet({\n\t\t\t\turl: \"player/audio\",\n\t\t\t}),\n\t\tenqueue: (source: PlayResourceSource) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/enqueue\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: source,\n\t\t\t\t}),\n\t\t\t),\n\t\tfront: (source: PlayResourceSource) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/front\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: source,\n\t\t\t\t}),\n\t\t\t),\n\t\tremove: (id: string, index: number) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/remove\",\n\t\t\t\t\tmethod: \"DELETE\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\titemId: id,\n\t\t\t\t\t\tindex: index,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\tnext: (id: string) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/next\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\titemId: id,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\taddVote: (id: string) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/vote\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taddVote: id,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\tstartVote: (vote: VoteType) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/vote\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tstart: vote,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\tremoveVote: (id: string) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"player/vote\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tremoveVote: id,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t},\n\n\tresource: {\n\t\tget: (source: ResourceSource[]): Promise =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"resource/get\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: source,\n\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t}).then(r => r.json()),\n\t\tchange: (\n\t\t\tid: string,\n\t\t\tname: string,\n\t\t\tpriority: ResourcePriority | null,\n\t\t\tffmpeg: { url: string; startTimestamp?: number; endTimestamp?: number } | null,\n\t\t\tspotify: string | null,\n\t\t\tcropping: CropInformation | undefined,\n\t\t) =>\n\t\t\tapiRequest({\n\t\t\t\turl: \"resource/change\",\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tdata: {\n\t\t\t\t\tid,\n\t\t\t\t\tname,\n\t\t\t\t\tffmpeg,\n\t\t\t\t\tspotify,\n\t\t\t\t\tpriority,\n\t\t\t\t\tcropping,\n\t\t\t\t},\n\t\t\t}),\n\t\tmerge: (\n\t\t\ta: string,\n\t\t\tb: string,\n\t\t\tname: MergeSource,\n\t\t\tffmpeg: MergeSource,\n\t\t\tspotify: MergeSource,\n\t\t\tpriority: MergeSource,\n\t\t\tcropping: MergeSource,\n\t\t) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\turl: \"resource/merge\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\ta,\n\t\t\t\t\t\tb,\n\t\t\t\t\t\tname,\n\t\t\t\t\t\tffmpeg,\n\t\t\t\t\t\tspotify,\n\t\t\t\t\t\tpriority,\n\t\t\t\t\t\tcropping,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\tsample: (\n\t\t\tlists: string[],\n\t\t\tsampleCount: number,\n\t\t): Promise<{\n\t\t\tresources: ResolvedSampleResource[];\n\t\t}> =>\n\t\t\tjson(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"resource/sample\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tlists: lists,\n\t\t\t\t\t\tsamples: sampleCount,\n\t\t\t\t\t},\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t\tmetadata: (urls: string[]): Promise<(Metadata | null)[]> =>\n\t\t\tjson(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"resource/metadata\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: urls,\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t},\n\n\tsearch: {\n\t\tresource: (query: string, limit: number): Promise =>\n\t\t\tjson(\n\t\t\t\tapiRequestGet({\n\t\t\t\t\turl: \"search/resource\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tquery: query,\n\t\t\t\t\t\tlimit: String(limit),\n\t\t\t\t\t},\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t\tspotify: (query: string, limit: number): Promise =>\n\t\t\tjson(\n\t\t\t\tapiRequestGet({\n\t\t\t\t\turl: \"search/spotify\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tquery: query,\n\t\t\t\t\t\tlimit: String(limit),\n\t\t\t\t\t},\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t\tyoutube: (query: string, limit: number): Promise =>\n\t\t\tjson(\n\t\t\t\tapiRequestGet({\n\t\t\t\t\turl: \"search/youtube\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tquery: query,\n\t\t\t\t\t\tlimit: String(limit),\n\t\t\t\t\t},\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t},\n\n\tme: {\n\t\tget: (): Promise =>\n\t\t\tjson(\n\t\t\t\tapiRequestGet({\n\t\t\t\t\turl: \"me/get\",\n\t\t\t\t\taccept: APPLICATION_JSON,\n\t\t\t\t}),\n\t\t\t),\n\t\tsetName: (name: string) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"me/set-name\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tname: name,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t\tinvalidateSessions: () =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"me/invalidate-sessions\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t}),\n\t\t\t),\n\t\tchangePassword: (oldPassword: string, newPassword: string) =>\n\t\t\tempty(\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"me/change-password\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: {\n\t\t\t\t\t\toldPassword,\n\t\t\t\t\t\tnewPassword,\n\t\t\t\t\t},\n\t\t\t\t}),\n\t\t\t),\n\t},\n\n\tadmin: {\n\t\tresource: {\n\t\t\treanalyze: (id: string) =>\n\t\t\t\tempty(\n\t\t\t\t\tapiRequest({\n\t\t\t\t\t\turl: \"admin/resource/reanalyze\",\n\t\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\t\tdata: id,\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t},\n\t\tlist: {\n\t\t\tchangeInfo: (id: string, name: string, kind: ListKind, editors: ListEditors) =>\n\t\t\t\tempty(\n\t\t\t\t\tapiRequest({\n\t\t\t\t\t\turl: \"admin/list/change-info\",\n\t\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\t\tname: name,\n\t\t\t\t\t\t\tkind: kind,\n\t\t\t\t\t\t\teditors: editors,\n\t\t\t\t\t\t},\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t\tchangeOwner: (id: string, newOwner: string) =>\n\t\t\t\tempty(\n\t\t\t\t\tapiRequest({\n\t\t\t\t\t\turl: \"admin/list/change-owner\",\n\t\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\t\towner: newOwner,\n\t\t\t\t\t\t},\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t\tremove: (id: string) =>\n\t\t\t\tempty(\n\t\t\t\t\tapiRequest({\n\t\t\t\t\t\turl: \"admin/list/remove\",\n\t\t\t\t\t\tmethod: \"DELETE\",\n\t\t\t\t\t\tdata: {\n\t\t\t\t\t\t\tlistId: id,\n\t\t\t\t\t\t},\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t},\n\t\tuser: {\n\t\t\tlistInactive: (): Promise =>\n\t\t\t\tjson(\n\t\t\t\t\tapiRequestGet({\n\t\t\t\t\t\turl: \"admin/user/list-inactive\",\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t\tremoveInactive: (loginName: string) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/remove-inactive\",\n\t\t\t\t\tmethod: \"DELETE\",\n\t\t\t\t\tdata: { loginName },\n\t\t\t\t}),\n\t\t\tactivate: (loginName: string) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/activate\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { loginName },\n\t\t\t\t}),\n\t\t\tchangePermissions: (id: string, permissions: Permissions) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/change-permissions\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { id, permissions },\n\t\t\t\t}),\n\t\t\tinvalidateSessions: (id: string) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/invalidate-sessions\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { id },\n\t\t\t\t}),\n\t\t\tsetName: (id: string, name: string) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/set-name\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { id, name },\n\t\t\t\t}),\n\t\t\tchangePassword: (id: string, newPassword: string) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/user/change-password\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { id, newPassword },\n\t\t\t\t}),\n\t\t\tget: (id: string): Promise =>\n\t\t\t\tjson(\n\t\t\t\t\tapiRequestGet({\n\t\t\t\t\t\turl: \"admin/user/get\",\n\t\t\t\t\t\tdata: { id },\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t},\n\t\tplayer: {\n\t\t\tpause: (pause: boolean) =>\n\t\t\t\tapiRequest({\n\t\t\t\t\turl: \"admin/player/pause\",\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tdata: { pause },\n\t\t\t\t}),\n\t\t\tnext: (itemId: string) =>\n\t\t\t\tempty(\n\t\t\t\t\tapiRequest({\n\t\t\t\t\t\turl: \"admin/player/next\",\n\t\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\t\tdata: { itemId },\n\t\t\t\t\t}),\n\t\t\t\t),\n\t\t},\n\t},\n};\n\nexport function tranlateError(\n\treason: string,\n\ttranslation: {\n\t\t[key: string]: string;\n\t},\n): string {\n\treturn reason in translation ? translation[reason] : `Unknown reason ${reason}.`;\n}\n\nexport function defaultResponseError(xhr: Response): string {\n\tif (xhr.status >= 500) {\n\t\treturn `Leierkasten is currently fucked. Please try again later. (status code ${xhr.status})`;\n\t} else {\n\t\treturn `${xhr.statusText} (status code ${xhr.status})`;\n\t}\n}\n\nexport function makeErrorText(\n\txhr: Response,\n\ttranslation: {\n\t\t[key: string]: string;\n\t},\n): Promise {\n\treturn xhr.json().then(\n\t\tvalue => tranlateError(value.reason as string, translation),\n\t\t() => defaultResponseError(xhr),\n\t);\n}\n","export default \"__VITE_ASSET__uPCqL7r6__\"","export default \"__VITE_ASSET__Bb4th3c6__\"","export default \"__VITE_ASSET__CFRZGwY___\"","export default \"__VITE_ASSET__DAjevLm___\"","export default \"__VITE_ASSET__ClYEUtGu__\"","export default \"__VITE_ASSET__DBuycRz3__\"","export default \"__VITE_ASSET__kalCWYWB__\"","export default \"__VITE_ASSET__B9vgaqCZ__\"","import favicon16x16Light from \"@assets/favicons/favicon-16x16-light.png\";\nimport favicon16x16 from \"@assets/favicons/favicon-16x16.png\";\nimport favicon32x32Light from \"@assets/favicons/favicon-32x32-light.png\";\nimport favicon32x32 from \"@assets/favicons/favicon-32x32.png\";\nimport favicon64x64Light from \"@assets/favicons/favicon-64x64-light.png\";\nimport favicon64x64 from \"@assets/favicons/favicon-64x64.png\";\nimport favicon96x96Light from \"@assets/favicons/favicon-96x96-light.png\";\nimport favicon96x96 from \"@assets/favicons/favicon-96x96.png\";\n\nexport function handlePromiseError(e: any): void {\n\tif (e !== undefined) {\n\t\tconsole.error(e);\n\t}\n}\n\ndeclare let COMMITHASH: string;\ndeclare let LASTCOMMITDATETIME: string;\n\nfunction convertRemToPixels(rem: number): number {\n\treturn rem * parseFloat(getComputedStyle(document.documentElement).fontSize);\n}\n\nexport function getCSSProperty(propName: string, element: Element | null = null): string {\n\tif (element == null) {\n\t\treturn getComputedStyle(document.documentElement).getPropertyValue(propName).trim();\n\t} else {\n\t\treturn getComputedStyle(element).getPropertyValue(propName).trim();\n\t}\n}\n\nfunction getCSSPropertyAsPixels(propName: string, element: Element | null = null): number {\n\tconst property = getCSSProperty(propName, element);\n\tif (property.includes(\"rem\")) {\n\t\treturn convertRemToPixels(parseFloat(property.replace(\"rem\", \"\")));\n\t} else if (property.includes(\"px\")) {\n\t\treturn parseFloat(property.replace(\"px\", \"\"));\n\t} else if (property.includes(\"vw\")) {\n\t\treturn getViewportWidth() * (parseFloat(property.replace(\"vw\", \"\")) / 100);\n\t} else if (property.includes(\"vh\")) {\n\t\treturn getViewportHeight() * (parseFloat(property.replace(\"vh\", \"\")) / 100);\n\t} else {\n\t\tthrow \"Invalid property unit!\";\n\t}\n}\n\nexport function getCornerRadius(): number {\n\treturn getCSSPropertyAsPixels(\"--thumbnail-border-radius\");\n}\n\nexport function getMaxShadowWidth(): number {\n\treturn getCSSPropertyAsPixels(\"--thumbnail-max-shadow-width\");\n}\n\nexport function getViewportWidth(): number {\n\t// Ignores the scrollbar if one is visible.\n\treturn document.documentElement.clientWidth;\n}\n\nexport function getViewportHeight(): number {\n\t// Ignores the scrollbar if one is visible.\n\treturn document.documentElement.clientHeight;\n}\n\nexport function secondsFromMicroSeconds(us: number): number {\n\treturn Math.trunc(us / 1e6);\n}\n\nexport function microSecondsFromSeconds(s: number): number {\n\treturn s * 1e6;\n}\n\nexport function secondsToDuration(secs: number): string {\n\tconst hours = Math.floor(secs / 3600);\n\tconst minutes = Math.floor((secs % 3600) / 60);\n\tconst seconds = secs % 60;\n\n\tlet result = \"\";\n\tif (hours > 0) {\n\t\tresult += hours + \":\";\n\t}\n\n\tif (minutes < 10 && hours > 0) {\n\t\tresult += \"0\";\n\t}\n\tresult += minutes + \":\";\n\n\tif (seconds < 10) {\n\t\tresult += \"0\";\n\t}\n\tresult += seconds;\n\treturn result;\n}\n\nexport interface Named {\n\tname: string;\n}\n\nexport function sortByName(list: Named[]): void {\n\tlist.sort((a, b) => {\n\t\treturn a.name.localeCompare(b.name);\n\t});\n}\n\nexport function createHeader(header: T, back: () => void): HTMLDivElement {\n\tconst outer = document.createElement(\"div\");\n\touter.setAttribute(\"class\", \"sub-page-header\");\n\n\tconst button = document.createElement(\"button\");\n\tbutton.setAttribute(\"class\", \"btn btn-primary me-2 fas fa-arrow-left back-button\");\n\tbutton.addEventListener(\"click\", back);\n\n\touter.appendChild(button);\n\touter.appendChild(header);\n\treturn outer;\n}\n\nconst URL_REGEX = new RegExp(\n\t/(((https?:(?:\\/\\/)?)(?:[-;:&=+$,\\w]+@)?[A-Za-z0-9.-]+|(?:www\\.|[-;:&=+$,\\w]+@)[A-Za-z0-9.-]+)((?:\\/[+~%/.\\w\\-_]*)?\\??[-+=&;%@.\\w_]*#?[.!/\\\\\\w]*)?)/,\n);\nexport function splitQuery(query: string): string[] | string {\n\tconst sub = query.split(\" \");\n\tif (sub.every(value => value.match(URL_REGEX))) {\n\t\treturn sub;\n\t} else {\n\t\treturn query;\n\t}\n}\n\nexport function always(p: Promise, f: () => void): Promise {\n\treturn p.then(\n\t\tv => {\n\t\t\tf();\n\t\t\treturn v;\n\t\t},\n\t\tv => {\n\t\t\tf();\n\t\t\treturn Promise.reject(v);\n\t\t},\n\t);\n}\n\nexport function disablingPromise(button: HTMLElement, promise: Promise): Promise {\n\tbutton.setAttribute(\"disabled\", \"\");\n\treturn always(promise, () => button.removeAttribute(\"disabled\"));\n}\n\nexport function spinningPromise(spinner: HTMLElement, promise: Promise): Promise {\n\tspinner.classList.remove(\"d-none\");\n\treturn always(promise, () => spinner.classList.add(\"d-none\"));\n}\n\nexport function filterMap(input: T[], f: (value: T) => U | undefined): U[] {\n\tconst result = new Array(input.length) as U[];\n\tlet offset = 0;\n\tinput.forEach(value => {\n\t\tconst v = f(value);\n\t\tif (v !== undefined) {\n\t\t\tresult[offset] = v;\n\t\t\toffset += 1;\n\t\t}\n\t});\n\tresult.length = offset;\n\treturn result;\n}\n\nexport class RacingTask {\n\tprivate current = -1;\n\n\trun(promise: Promise): Promise {\n\t\tconst id = Math.random();\n\t\tthis.current = id;\n\t\treturn promise.then(v => (this.current == id ? Promise.resolve(v) : Promise.reject()));\n\t}\n\n\tcancel(): void {\n\t\tthis.current = -1;\n\t}\n}\n\nconst themeUris = {\n\tdark: [favicon96x96, favicon64x64, favicon32x32, favicon16x16],\n\tlight: [favicon96x96Light, favicon64x64Light, favicon32x32Light, favicon16x16Light],\n};\n\nfunction update(darkTheme: boolean) {\n\tconst uris = darkTheme ? themeUris.light : themeUris.dark;\n\t// Remove potentially existing old favicons.\n\tdocument.querySelectorAll(\"[data-favicon]\").forEach(e => e.remove());\n\n\turis.forEach(uri => {\n\t\tconst target = document.querySelector(\"head\") as Element;\n\t\tconst link = document.createElement(\"link\");\n\t\tlink.setAttribute(\"rel\", \"icon\");\n\t\tlink.setAttribute(\"type\", \"image/png\");\n\t\tconst sizes = uri.match(/favicon-(\\d+x\\d+)/);\n\t\tif (sizes != null) {\n\t\t\tlink.setAttribute(\"sizes\", sizes[1]);\n\t\t}\n\t\tlink.setAttribute(\"href\", uri);\n\t\tlink.setAttribute(\"data-favicon\", \"\");\n\t\ttarget.appendChild(link);\n\t});\n}\n\nexport function setUpFavicons(): void {\n\tconst query = window.matchMedia(\"(prefers-color-scheme: dark)\");\n\tquery.addEventListener(\"change\", event => update(event.matches));\n\tupdate(query.matches);\n}\n\nexport function getReadableCommitTime(): string {\n\treturn new Date(Date.parse(LASTCOMMITDATETIME)).toLocaleString(undefined, {\n\t\tyear: \"numeric\",\n\t\tmonth: \"short\",\n\t\tday: \"2-digit\",\n\t\thour: \"2-digit\",\n\t\tminute: \"2-digit\",\n\t});\n}\n\nexport function getReadableCommitHash(): string {\n\treturn COMMITHASH.substring(0, 10);\n}\n\nexport function printWelcomeMessage(): void {\n\tconst leierkastenBanner: string = `\n\t\t __ ____________________ __ __ ___ __________________ __\n\t\t / / / ____/ _/ ____/ __ \\\\/ //_// | / ___/_ __/ ____/ | / /\n\t\t / / / __/ / // __/ / /_/ / ,< / /| | \\\\__ \\\\ / / / __/ / |/ /\n\t\t / /___/ /____/ // /___/ _, _/ /| |/ ___ |___/ // / / /___/ /| /\n\t\t/_____/_____/___/_____/_/ |_/_/ |_/_/ |_/____//_/ /_____/_/ |_/\n\n\t`;\n\tconsole.log(leierkastenBanner.replace(\"\\n\", \"\").replace(/\\t/g, \"\"));\n\tconsole.log(\"Welcome to Leierkasten!\");\n\tconsole.log(`You are running commit ${getReadableCommitHash()} built at ${getReadableCommitTime()}`);\n}\n"],"names":["getElementById","id","element","emptyElement","setChild","child","global","factory","module","this","elementMap","key","instance","instanceMap","exports","TRANSITION_END","parseSelector","selector","match","toType","object","getUID","prefix","getTransitionDurationFromElement","transitionDuration","transitionDelay","floatTransitionDuration","floatTransitionDelay","triggerTransitionEnd","isElement","getElement","isVisible","elementIsVisible","closedDetails","summary","isDisabled","findShadowRoot","root","noop","reflow","getjQuery","DOMContentLoadedCallbacks","onDOMContentLoaded","callback","isRTL","defineJQueryPlugin","plugin","$","name","JQUERY_NO_CONFLICT","execute","possibleCallback","args","defaultValue","executeAfterTransition","transitionElement","waitForTransition","emulatedDuration","called","handler","target","getNextActiveElement","list","activeElement","shouldGetNext","isCycleAllowed","listLength","index","require$$0","index_js","namespaceRegex","stripNameRegex","stripUidRegex","eventRegistry","uidEvent","customEvents","nativeEvents","makeEventUid","uid","getElementEvents","bootstrapHandler","fn","event","hydrateObj","EventHandler","bootstrapDelegationHandler","domElements","domElement","findHandler","events","callable","delegationSelector","normalizeParameters","originalTypeEvent","delegationFunction","isDelegated","typeEvent","getTypeEvent","addHandler","oneOff","handlers","previousFunction","removeHandler","removeNamespacedHandlers","namespace","storeElementEvent","handlerKey","inNamespace","isNamespace","elementEvent","keyHandlers","jQueryEvent","bubbles","nativeDispatch","defaultPrevented","evt","obj","meta","value","normalizeData","normalizeDataKey","chr","attributes","bsKeys","pureKey","require$$1","Manipulator","Config","config","jsonConfig","configTypes","property","expectedTypes","valueType","require$$2","require$$3","Data","VERSION","BaseComponent","propertyName","isAnimated","getSelector","hrefAttribute","sel","SelectorEngine","parents","ancestor","previous","next","focusables","el","enableDismissTrigger","component","method","clickEvent","componentFunctions_js","NAME","EVENT_KEY","EVENT_CLOSE","EVENT_CLOSED","CLASS_NAME_FADE","CLASS_NAME_SHOW","Alert","data","alertTypeToClass","AlertBuilder","type","spinner","text","DismissibleAlertBuilder","duration","alert","dismiss","timeout","e","APPLICATION_JSON","request","url","accept","headers","x","r","apiRequest","json","p","empty","apiRequestGet","resourceTranslateError","listTranslateError","userTranslateError","queueTranslateError","SpotifyResourceSource","spotifyTrackId","ResourceIdResourceSource","resourceId","YoutubeResourceSource","youtubeId","startTimestamp","endTimestamp","UrlResourceSource","ResourcePlayResource","listId","subResource","requests","loginData","registerData","lists","kind","editors","newOwner","source","start","end","resourceIds","vote","priority","ffmpeg","spotify","cropping","a","b","sampleCount","urls","query","limit","oldPassword","newPassword","loginName","permissions","pause","itemId","tranlateError","reason","translation","defaultResponseError","xhr","makeErrorText","favicon16x16Light","favicon16x16","favicon32x32Light","favicon32x32","favicon64x64Light","favicon64x64","favicon96x96Light","favicon96x96","handlePromiseError","convertRemToPixels","rem","getCSSProperty","propName","getCSSPropertyAsPixels","getViewportWidth","getViewportHeight","getCornerRadius","getMaxShadowWidth","secondsFromMicroSeconds","us","microSecondsFromSeconds","s","secondsToDuration","secs","hours","minutes","seconds","result","sortByName","createHeader","header","back","outer","button","URL_REGEX","splitQuery","sub","always","f","v","disablingPromise","promise","spinningPromise","filterMap","input","offset","RacingTask","themeUris","update","darkTheme","uris","uri","link","sizes","setUpFavicons","getReadableCommitTime","getReadableCommitHash","printWelcomeMessage"],"mappings":"ssBAAO,SAASA,GAAeC,EAAyB,CACjD,MAAAC,EAAU,SAAS,eAAeD,CAAE,EAC1C,GAAIC,GAAW,KACd,MAAM,IAAI,MAAM,mCAAqCD,EAAK,GAAG,EAEvD,OAAAC,CACR,CAEO,SAASC,GAAaD,EAAmC,CAC/D,OAAAA,EAAQ,YAAc,GACfA,CACR,CAEgB,SAAAE,GAASF,EAAsBG,EAA0B,CACxE,OAAAF,GAAaD,CAAO,EACpBA,EAAQ,YAAYG,CAAK,EAClBH,CACR;;;;mECZC,SAAUI,EAAQC,EAAS,CACqCC,EAAiB,QAAAD,GAGjF,GAAEE,GAAO,UAAY,CAapB,MAAMC,EAAa,IAAI,IAqCvB,MApCa,CACX,IAAIR,EAASS,EAAKC,EAAU,CACrBF,EAAW,IAAIR,CAAO,GACzBQ,EAAW,IAAIR,EAAS,IAAI,GAAK,EAEnC,MAAMW,EAAcH,EAAW,IAAIR,CAAO,EAI1C,GAAI,CAACW,EAAY,IAAIF,CAAG,GAAKE,EAAY,OAAS,EAAG,CAEnD,QAAQ,MAAM,+EAA+E,MAAM,KAAKA,EAAY,MAAM,EAAE,CAAC,CAAC,GAAG,EACjI,MACR,CACMA,EAAY,IAAIF,EAAKC,CAAQ,CAC9B,EACD,IAAIV,EAASS,EAAK,CAChB,OAAID,EAAW,IAAIR,CAAO,GACjBQ,EAAW,IAAIR,CAAO,EAAE,IAAIS,CAAG,GAAK,IAG9C,EACD,OAAOT,EAASS,EAAK,CACnB,GAAI,CAACD,EAAW,IAAIR,CAAO,EACzB,OAEF,MAAMW,EAAcH,EAAW,IAAIR,CAAO,EAC1CW,EAAY,OAAOF,CAAG,EAGlBE,EAAY,OAAS,GACvBH,EAAW,OAAOR,CAAO,CAEjC,CACG,CAIH,CAAG;;;;qECxDF,SAAUI,EAAQC,EAAS,CACqCA,EAAQO,CAAO,CAGhF,GAAGL,GAAO,SAAUK,EAAS,CAW3B,MAAMC,EAAiB,gBAOjBC,EAAgBC,IAChBA,GAAY,OAAO,KAAO,OAAO,IAAI,SAEvCA,EAAWA,EAAS,QAAQ,gBAAiB,CAACC,EAAOjB,IAAO,IAAI,IAAI,OAAOA,CAAE,CAAC,EAAE,GAE3EgB,GAIHE,EAASC,GACTA,GAAW,KACN,GAAGA,CAAM,GAEX,OAAO,UAAU,SAAS,KAAKA,CAAM,EAAE,MAAM,aAAa,EAAE,CAAC,EAAE,YAAa,EAO/EC,EAASC,GAAU,CACvB,GACEA,GAAU,KAAK,MAAM,KAAK,OAAM,EAAK,GAAO,QACrC,SAAS,eAAeA,CAAM,GACvC,OAAOA,CACR,EACKC,EAAmCrB,GAAW,CAClD,GAAI,CAACA,EACH,MAAO,GAIT,GAAI,CACF,mBAAAsB,EACA,gBAAAC,CACN,EAAQ,OAAO,iBAAiBvB,CAAO,EACnC,MAAMwB,EAA0B,OAAO,WAAWF,CAAkB,EAC9DG,EAAuB,OAAO,WAAWF,CAAe,EAG9D,MAAI,CAACC,GAA2B,CAACC,EACxB,GAITH,EAAqBA,EAAmB,MAAM,GAAG,EAAE,CAAC,EACpDC,EAAkBA,EAAgB,MAAM,GAAG,EAAE,CAAC,GACtC,OAAO,WAAWD,CAAkB,EAAI,OAAO,WAAWC,CAAe,GAAK,IACvF,EACKG,EAAuB1B,GAAW,CACtCA,EAAQ,cAAc,IAAI,MAAMa,CAAc,CAAC,CAChD,EACKc,EAAYT,GACZ,CAACA,GAAU,OAAOA,GAAW,SACxB,IAEL,OAAOA,EAAO,OAAW,MAC3BA,EAASA,EAAO,CAAC,GAEZ,OAAOA,EAAO,SAAa,KAE9BU,EAAaV,GAEbS,EAAUT,CAAM,EACXA,EAAO,OAASA,EAAO,CAAC,EAAIA,EAEjC,OAAOA,GAAW,UAAYA,EAAO,OAAS,EACzC,SAAS,cAAcJ,EAAcI,CAAM,CAAC,EAE9C,KAEHW,EAAY7B,GAAW,CAC3B,GAAI,CAAC2B,EAAU3B,CAAO,GAAKA,EAAQ,eAAgB,EAAC,SAAW,EAC7D,MAAO,GAET,MAAM8B,EAAmB,iBAAiB9B,CAAO,EAAE,iBAAiB,YAAY,IAAM,UAEhF+B,EAAgB/B,EAAQ,QAAQ,qBAAqB,EAC3D,GAAI,CAAC+B,EACH,OAAOD,EAET,GAAIC,IAAkB/B,EAAS,CAC7B,MAAMgC,EAAUhC,EAAQ,QAAQ,SAAS,EAIzC,GAHIgC,GAAWA,EAAQ,aAAeD,GAGlCC,IAAY,KACd,MAAO,EAEf,CACI,OAAOF,CACR,EACKG,EAAajC,GACb,CAACA,GAAWA,EAAQ,WAAa,KAAK,cAGtCA,EAAQ,UAAU,SAAS,UAAU,EAChC,GAEL,OAAOA,EAAQ,SAAa,IACvBA,EAAQ,SAEVA,EAAQ,aAAa,UAAU,GAAKA,EAAQ,aAAa,UAAU,IAAM,QAE5EkC,EAAiBlC,GAAW,CAChC,GAAI,CAAC,SAAS,gBAAgB,aAC5B,OAAO,KAIT,GAAI,OAAOA,EAAQ,aAAgB,WAAY,CAC7C,MAAMmC,EAAOnC,EAAQ,YAAa,EAClC,OAAOmC,aAAgB,WAAaA,EAAO,IACjD,CACI,OAAInC,aAAmB,WACdA,EAIJA,EAAQ,WAGNkC,EAAelC,EAAQ,UAAU,EAF/B,IAGV,EACKoC,EAAO,IAAM,CAAE,EAUfC,EAASrC,GAAW,CACxBA,EAAQ,YACT,EACKsC,EAAY,IACZ,OAAO,QAAU,CAAC,SAAS,KAAK,aAAa,mBAAmB,EAC3D,OAAO,OAET,KAEHC,EAA4B,CAAE,EAC9BC,EAAqBC,GAAY,CACjC,SAAS,aAAe,WAErBF,EAA0B,QAC7B,SAAS,iBAAiB,mBAAoB,IAAM,CAClD,UAAWE,KAAYF,EACrBE,EAAU,CAEtB,CAAS,EAEHF,EAA0B,KAAKE,CAAQ,GAEvCA,EAAU,CAEb,EACKC,EAAQ,IAAM,SAAS,gBAAgB,MAAQ,MAC/CC,EAAqBC,GAAU,CACnCJ,EAAmB,IAAM,CACvB,MAAMK,EAAIP,EAAW,EAErB,GAAIO,EAAG,CACL,MAAMC,EAAOF,EAAO,KACdG,EAAqBF,EAAE,GAAGC,CAAI,EACpCD,EAAE,GAAGC,CAAI,EAAIF,EAAO,gBACpBC,EAAE,GAAGC,CAAI,EAAE,YAAcF,EACzBC,EAAE,GAAGC,CAAI,EAAE,WAAa,KACtBD,EAAE,GAAGC,CAAI,EAAIC,EACNH,EAAO,gBAExB,CACA,CAAK,CACF,EACKI,EAAU,CAACC,EAAkBC,EAAO,CAAE,EAAEC,EAAeF,IACpD,OAAOA,GAAqB,WAAaA,EAAiB,GAAGC,CAAI,EAAIC,EAExEC,EAAyB,CAACX,EAAUY,EAAmBC,EAAoB,KAAS,CACxF,GAAI,CAACA,EAAmB,CACtBN,EAAQP,CAAQ,EAChB,MACN,CAEI,MAAMc,EAAmBlC,EAAiCgC,CAAiB,EADnD,EAExB,IAAIG,EAAS,GACb,MAAMC,EAAU,CAAC,CACf,OAAAC,CACN,IAAU,CACAA,IAAWL,IAGfG,EAAS,GACTH,EAAkB,oBAAoBxC,EAAgB4C,CAAO,EAC7DT,EAAQP,CAAQ,EACjB,EACDY,EAAkB,iBAAiBxC,EAAgB4C,CAAO,EAC1D,WAAW,IAAM,CACVD,GACH9B,EAAqB2B,CAAiB,CAEzC,EAAEE,CAAgB,CACpB,EAWKI,EAAuB,CAACC,EAAMC,EAAeC,EAAeC,IAAmB,CACnF,MAAMC,EAAaJ,EAAK,OACxB,IAAIK,EAAQL,EAAK,QAAQC,CAAa,EAItC,OAAII,IAAU,GACL,CAACH,GAAiBC,EAAiBH,EAAKI,EAAa,CAAC,EAAIJ,EAAK,CAAC,GAEzEK,GAASH,EAAgB,EAAI,GACzBC,IACFE,GAASA,EAAQD,GAAcA,GAE1BJ,EAAK,KAAK,IAAI,EAAG,KAAK,IAAIK,EAAOD,EAAa,CAAC,CAAC,CAAC,EACzD,EAEDpD,EAAQ,mBAAqB+B,EAC7B/B,EAAQ,QAAUoC,EAClBpC,EAAQ,uBAAyBwC,EACjCxC,EAAQ,eAAiBsB,EACzBtB,EAAQ,WAAagB,EACrBhB,EAAQ,qBAAuB+C,EAC/B/C,EAAQ,iCAAmCS,EAC3CT,EAAQ,OAASO,EACjBP,EAAQ,UAAY0B,EACpB1B,EAAQ,WAAaqB,EACrBrB,EAAQ,UAAYe,EACpBf,EAAQ,MAAQ8B,EAChB9B,EAAQ,UAAYiB,EACpBjB,EAAQ,KAAOwB,EACfxB,EAAQ,mBAAqB4B,EAC7B5B,EAAQ,cAAgBE,EACxBF,EAAQ,OAASyB,EACjBzB,EAAQ,OAASK,EACjBL,EAAQ,qBAAuBc,EAE/B,OAAO,eAAed,EAAS,OAAO,YAAa,CAAE,MAAO,SAAU,CAExE,CAAG;;;;qEClRF,SAAUR,EAAQC,EAAS,CACqCC,EAAiB,QAAAD,EAAQ6D,EAA2B,CAAA,CAGrH,GAAG3D,GAAO,SAAU4D,EAAU,CAc5B,MAAMC,EAAiB,qBACjBC,EAAiB,OACjBC,EAAgB,SAChBC,EAAgB,CAAA,EACtB,IAAIC,EAAW,EACf,MAAMC,EAAe,CACnB,WAAY,YACZ,WAAY,UACb,EACKC,EAAe,IAAI,IAAI,CAAC,QAAS,WAAY,UAAW,YAAa,cAAe,aAAc,iBAAkB,YAAa,WAAY,YAAa,cAAe,YAAa,UAAW,WAAY,QAAS,oBAAqB,aAAc,YAAa,WAAY,cAAe,cAAe,cAAe,YAAa,eAAgB,gBAAiB,eAAgB,gBAAiB,aAAc,QAAS,OAAQ,SAAU,QAAS,SAAU,SAAU,UAAW,WAAY,OAAQ,SAAU,eAAgB,SAAU,OAAQ,mBAAoB,mBAAoB,QAAS,QAAS,QAAQ,CAAC,EAMxmB,SAASC,EAAa3E,EAAS4E,EAAK,CAClC,OAAOA,GAAO,GAAGA,CAAG,KAAKJ,GAAU,IAAMxE,EAAQ,UAAYwE,GACjE,CACE,SAASK,EAAiB7E,EAAS,CACjC,MAAM4E,EAAMD,EAAa3E,CAAO,EAChC,OAAAA,EAAQ,SAAW4E,EACnBL,EAAcK,CAAG,EAAIL,EAAcK,CAAG,GAAK,CAAE,EACtCL,EAAcK,CAAG,CAC5B,CACE,SAASE,EAAiB9E,EAAS+E,EAAI,CACrC,OAAO,SAAStB,EAAQuB,EAAO,CAC7B,OAAAC,EAAWD,EAAO,CAChB,eAAgBhF,CACxB,CAAO,EACGyD,EAAQ,QACVyB,EAAa,IAAIlF,EAASgF,EAAM,KAAMD,CAAE,EAEnCA,EAAG,MAAM/E,EAAS,CAACgF,CAAK,CAAC,CACjC,CACL,CACE,SAASG,EAA2BnF,EAASe,EAAUgE,EAAI,CACzD,OAAO,SAAStB,EAAQuB,EAAO,CAC7B,MAAMI,EAAcpF,EAAQ,iBAAiBe,CAAQ,EACrD,OAAS,CACP,OAAA2C,CACR,EAAUsB,EAAOtB,GAAUA,IAAW,KAAMA,EAASA,EAAO,WACpD,UAAW2B,KAAcD,EACvB,GAAIC,IAAe3B,EAGnB,OAAAuB,EAAWD,EAAO,CAChB,eAAgBtB,CAC5B,CAAW,EACGD,EAAQ,QACVyB,EAAa,IAAIlF,EAASgF,EAAM,KAAMjE,EAAUgE,CAAE,EAE7CA,EAAG,MAAMrB,EAAQ,CAACsB,CAAK,CAAC,CAGpC,CACL,CACE,SAASM,EAAYC,EAAQC,EAAUC,EAAqB,KAAM,CAChE,OAAO,OAAO,OAAOF,CAAM,EAAE,KAAKP,GAASA,EAAM,WAAaQ,GAAYR,EAAM,qBAAuBS,CAAkB,CAC7H,CACE,SAASC,EAAoBC,EAAmBlC,EAASmC,EAAoB,CAC3E,MAAMC,EAAc,OAAOpC,GAAY,SAEjC+B,EAAWK,EAAcD,EAAqBnC,GAAWmC,EAC/D,IAAIE,EAAYC,EAAaJ,CAAiB,EAC9C,OAAKjB,EAAa,IAAIoB,CAAS,IAC7BA,EAAYH,GAEP,CAACE,EAAaL,EAAUM,CAAS,CAC5C,CACE,SAASE,EAAWhG,EAAS2F,EAAmBlC,EAASmC,EAAoBK,EAAQ,CACnF,GAAI,OAAON,GAAsB,UAAY,CAAC3F,EAC5C,OAEF,GAAI,CAAC6F,EAAaL,EAAUM,CAAS,EAAIJ,EAAoBC,EAAmBlC,EAASmC,CAAkB,EAIvGD,KAAqBlB,IAQvBe,GAPqBT,IACZ,SAAUC,EAAO,CACtB,GAAI,CAACA,EAAM,eAAiBA,EAAM,gBAAkBA,EAAM,gBAAkB,CAACA,EAAM,eAAe,SAASA,EAAM,aAAa,EAC5H,OAAOD,GAAG,KAAK,KAAMC,CAAK,CAE7B,GAEqBQ,CAAQ,GAElC,MAAMD,EAASV,EAAiB7E,CAAO,EACjCkG,EAAWX,EAAOO,CAAS,IAAMP,EAAOO,CAAS,EAAI,IACrDK,EAAmBb,EAAYY,EAAUV,EAAUK,EAAcpC,EAAU,IAAI,EACrF,GAAI0C,EAAkB,CACpBA,EAAiB,OAASA,EAAiB,QAAUF,EACrD,MACN,CACI,MAAMrB,EAAMD,EAAaa,EAAUG,EAAkB,QAAQvB,EAAgB,EAAE,CAAC,EAC1EW,EAAKc,EAAcV,EAA2BnF,EAASyD,EAAS+B,CAAQ,EAAIV,EAAiB9E,EAASwF,CAAQ,EACpHT,EAAG,mBAAqBc,EAAcpC,EAAU,KAChDsB,EAAG,SAAWS,EACdT,EAAG,OAASkB,EACZlB,EAAG,SAAWH,EACdsB,EAAStB,CAAG,EAAIG,EAChB/E,EAAQ,iBAAiB8F,EAAWf,EAAIc,CAAW,CACvD,CACE,SAASO,EAAcpG,EAASuF,EAAQO,EAAWrC,EAASgC,EAAoB,CAC9E,MAAMV,EAAKO,EAAYC,EAAOO,CAAS,EAAGrC,EAASgC,CAAkB,EAChEV,IAGL/E,EAAQ,oBAAoB8F,EAAWf,EAAI,EAAQU,CAAmB,EACtE,OAAOF,EAAOO,CAAS,EAAEf,EAAG,QAAQ,EACxC,CACE,SAASsB,EAAyBrG,EAASuF,EAAQO,EAAWQ,EAAW,CACvE,MAAMC,EAAoBhB,EAAOO,CAAS,GAAK,CAAE,EACjD,SAAW,CAACU,EAAYxB,CAAK,IAAK,OAAO,QAAQuB,CAAiB,EAC5DC,EAAW,SAASF,CAAS,GAC/BF,EAAcpG,EAASuF,EAAQO,EAAWd,EAAM,SAAUA,EAAM,kBAAkB,CAG1F,CACE,SAASe,EAAaf,EAAO,CAE3B,OAAAA,EAAQA,EAAM,QAAQX,EAAgB,EAAE,EACjCI,EAAaO,CAAK,GAAKA,CAClC,CACE,MAAME,EAAe,CACnB,GAAGlF,EAASgF,EAAOvB,EAASmC,EAAoB,CAC9CI,EAAWhG,EAASgF,EAAOvB,EAASmC,EAAoB,EAAK,CAC9D,EACD,IAAI5F,EAASgF,EAAOvB,EAASmC,EAAoB,CAC/CI,EAAWhG,EAASgF,EAAOvB,EAASmC,EAAoB,EAAI,CAC7D,EACD,IAAI5F,EAAS2F,EAAmBlC,EAASmC,EAAoB,CAC3D,GAAI,OAAOD,GAAsB,UAAY,CAAC3F,EAC5C,OAEF,KAAM,CAAC6F,EAAaL,EAAUM,CAAS,EAAIJ,EAAoBC,EAAmBlC,EAASmC,CAAkB,EACvGa,EAAcX,IAAcH,EAC5BJ,EAASV,EAAiB7E,CAAO,EACjCuG,EAAoBhB,EAAOO,CAAS,GAAK,CAAE,EAC3CY,EAAcf,EAAkB,WAAW,GAAG,EACpD,GAAI,OAAOH,EAAa,IAAa,CAEnC,GAAI,CAAC,OAAO,KAAKe,CAAiB,EAAE,OAClC,OAEFH,EAAcpG,EAASuF,EAAQO,EAAWN,EAAUK,EAAcpC,EAAU,IAAI,EAChF,MACR,CACM,GAAIiD,EACF,UAAWC,KAAgB,OAAO,KAAKpB,CAAM,EAC3Cc,EAAyBrG,EAASuF,EAAQoB,EAAchB,EAAkB,MAAM,CAAC,CAAC,EAGtF,SAAW,CAACiB,EAAa5B,CAAK,IAAK,OAAO,QAAQuB,CAAiB,EAAG,CACpE,MAAMC,EAAaI,EAAY,QAAQtC,EAAe,EAAE,GACpD,CAACmC,GAAed,EAAkB,SAASa,CAAU,IACvDJ,EAAcpG,EAASuF,EAAQO,EAAWd,EAAM,SAAUA,EAAM,kBAAkB,CAE5F,CACK,EACD,QAAQhF,EAASgF,EAAO9B,EAAM,CAC5B,GAAI,OAAO8B,GAAU,UAAY,CAAChF,EAChC,OAAO,KAET,MAAM6C,EAAIsB,EAAS,UAAW,EACxB2B,EAAYC,EAAaf,CAAK,EAC9ByB,EAAczB,IAAUc,EAC9B,IAAIe,EAAc,KACdC,EAAU,GACVC,EAAiB,GACjBC,EAAmB,GACnBP,GAAe5D,IACjBgE,EAAchE,EAAE,MAAMmC,EAAO9B,CAAI,EACjCL,EAAE7C,CAAO,EAAE,QAAQ6G,CAAW,EAC9BC,EAAU,CAACD,EAAY,qBAAsB,EAC7CE,EAAiB,CAACF,EAAY,8BAA+B,EAC7DG,EAAmBH,EAAY,mBAAoB,GAErD,MAAMI,EAAMhC,EAAW,IAAI,MAAMD,EAAO,CACtC,QAAA8B,EACA,WAAY,EACb,CAAA,EAAG5D,CAAI,EACR,OAAI8D,GACFC,EAAI,eAAgB,EAElBF,GACF/G,EAAQ,cAAciH,CAAG,EAEvBA,EAAI,kBAAoBJ,GAC1BA,EAAY,eAAgB,EAEvBI,CACb,CACG,EACD,SAAShC,EAAWiC,EAAKC,EAAO,GAAI,CAClC,SAAW,CAAC1G,EAAK2G,CAAK,IAAK,OAAO,QAAQD,CAAI,EAC5C,GAAI,CACFD,EAAIzG,CAAG,EAAI2G,CACZ,MAAiB,CAChB,OAAO,eAAeF,EAAKzG,EAAK,CAC9B,aAAc,GACd,KAAM,CACJ,OAAO2G,CACnB,CACA,CAAS,CACT,CAEI,OAAOF,CACX,CAEE,OAAOhC,CAET,CAAG;;;;sECtOF,SAAU9E,EAAQC,EAAS,CACqCC,EAAiB,QAAAD,GAGjF,GAAEE,GAAO,UAAY,CASpB,SAAS8G,EAAcD,EAAO,CAC5B,GAAIA,IAAU,OACZ,MAAO,GAET,GAAIA,IAAU,QACZ,MAAO,GAET,GAAIA,IAAU,OAAOA,CAAK,EAAE,SAAQ,EAClC,OAAO,OAAOA,CAAK,EAErB,GAAIA,IAAU,IAAMA,IAAU,OAC5B,OAAO,KAET,GAAI,OAAOA,GAAU,SACnB,OAAOA,EAET,GAAI,CACF,OAAO,KAAK,MAAM,mBAAmBA,CAAK,CAAC,CAC5C,MAAiB,CAChB,OAAOA,CACb,CACA,CACE,SAASE,EAAiB7G,EAAK,CAC7B,OAAOA,EAAI,QAAQ,SAAU8G,GAAO,IAAIA,EAAI,YAAa,CAAA,EAAE,CAC/D,CA0BE,MAzBoB,CAClB,iBAAiBvH,EAASS,EAAK2G,EAAO,CACpCpH,EAAQ,aAAa,WAAWsH,EAAiB7G,CAAG,CAAC,GAAI2G,CAAK,CAC/D,EACD,oBAAoBpH,EAASS,EAAK,CAChCT,EAAQ,gBAAgB,WAAWsH,EAAiB7G,CAAG,CAAC,EAAE,CAC3D,EACD,kBAAkBT,EAAS,CACzB,GAAI,CAACA,EACH,MAAO,CAAE,EAEX,MAAMwH,EAAa,CAAE,EACfC,EAAS,OAAO,KAAKzH,EAAQ,OAAO,EAAE,OAAOS,GAAOA,EAAI,WAAW,IAAI,GAAK,CAACA,EAAI,WAAW,UAAU,CAAC,EAC7G,UAAWA,KAAOgH,EAAQ,CACxB,IAAIC,EAAUjH,EAAI,QAAQ,MAAO,EAAE,EACnCiH,EAAUA,EAAQ,OAAO,CAAC,EAAE,cAAgBA,EAAQ,MAAM,EAAGA,EAAQ,MAAM,EAC3EF,EAAWE,CAAO,EAAIL,EAAcrH,EAAQ,QAAQS,CAAG,CAAC,CAChE,CACM,OAAO+G,CACR,EACD,iBAAiBxH,EAASS,EAAK,CAC7B,OAAO4G,EAAcrH,EAAQ,aAAa,WAAWsH,EAAiB7G,CAAG,CAAC,EAAE,CAAC,CACnF,CACG,CAIH,CAAG;;;;sECjEF,SAAUL,EAAQC,EAAS,CACqCC,EAAA,QAAiBD,EAAQ6D,GAAgC,EAAEyD,EAAqB,CAAA,IAG9IpH,GAAO,SAAUqH,EAAazD,EAAU,CAczC,MAAM0D,CAAO,CAEX,WAAW,SAAU,CACnB,MAAO,CAAE,CACf,CACI,WAAW,aAAc,CACvB,MAAO,CAAE,CACf,CACI,WAAW,MAAO,CAChB,MAAM,IAAI,MAAM,qEAAqE,CAC3F,CACI,WAAWC,EAAQ,CACjB,OAAAA,EAAS,KAAK,gBAAgBA,CAAM,EACpCA,EAAS,KAAK,kBAAkBA,CAAM,EACtC,KAAK,iBAAiBA,CAAM,EACrBA,CACb,CACI,kBAAkBA,EAAQ,CACxB,OAAOA,CACb,CACI,gBAAgBA,EAAQ9H,EAAS,CAC/B,MAAM+H,EAAa5D,EAAS,UAAUnE,CAAO,EAAI4H,EAAY,iBAAiB5H,EAAS,QAAQ,EAAI,GAEnG,MAAO,CACL,GAAG,KAAK,YAAY,QACpB,GAAI,OAAO+H,GAAe,SAAWA,EAAa,CAAA,EAClD,GAAI5D,EAAS,UAAUnE,CAAO,EAAI4H,EAAY,kBAAkB5H,CAAO,EAAI,GAC3E,GAAI,OAAO8H,GAAW,SAAWA,EAAS,CAAE,CAC7C,CACP,CACI,iBAAiBA,EAAQE,EAAc,KAAK,YAAY,YAAa,CACnE,SAAW,CAACC,EAAUC,CAAa,IAAK,OAAO,QAAQF,CAAW,EAAG,CACnE,MAAMZ,EAAQU,EAAOG,CAAQ,EACvBE,EAAYhE,EAAS,UAAUiD,CAAK,EAAI,UAAYjD,EAAS,OAAOiD,CAAK,EAC/E,GAAI,CAAC,IAAI,OAAOc,CAAa,EAAE,KAAKC,CAAS,EAC3C,MAAM,IAAI,UAAU,GAAG,KAAK,YAAY,KAAK,YAAW,CAAE,aAAaF,CAAQ,oBAAoBE,CAAS,wBAAwBD,CAAa,IAAI,CAE/J,CACA,CACA,CAEE,OAAOL,CAET,CAAG;;;;sEC7DF,SAAUzH,EAAQC,EAAS,CACqCC,EAAA,QAAiBD,EAAQ6D,GAAwB,EAAEyD,EAAA,EAAmCS,GAA2B,EAAEC,GAA0B,CAG7M,GAAE9H,GAAO,SAAU+H,EAAMpD,EAAc2C,EAAQ1D,EAAU,CAcxD,MAAMoE,EAAU,QAMhB,MAAMC,UAAsBX,CAAO,CACjC,YAAY7H,EAAS8H,EAAQ,CAC3B,MAAO,EACP9H,EAAUmE,EAAS,WAAWnE,CAAO,EAChCA,IAGL,KAAK,SAAWA,EAChB,KAAK,QAAU,KAAK,WAAW8H,CAAM,EACrCQ,EAAK,IAAI,KAAK,SAAU,KAAK,YAAY,SAAU,IAAI,EAC7D,CAGI,SAAU,CACRA,EAAK,OAAO,KAAK,SAAU,KAAK,YAAY,QAAQ,EACpDpD,EAAa,IAAI,KAAK,SAAU,KAAK,YAAY,SAAS,EAC1D,UAAWuD,KAAgB,OAAO,oBAAoB,IAAI,EACxD,KAAKA,CAAY,EAAI,IAE7B,CACI,eAAehG,EAAUzC,EAAS0I,EAAa,GAAM,CACnDvE,EAAS,uBAAuB1B,EAAUzC,EAAS0I,CAAU,CACnE,CACI,WAAWZ,EAAQ,CACjB,OAAAA,EAAS,KAAK,gBAAgBA,EAAQ,KAAK,QAAQ,EACnDA,EAAS,KAAK,kBAAkBA,CAAM,EACtC,KAAK,iBAAiBA,CAAM,EACrBA,CACb,CAGI,OAAO,YAAY9H,EAAS,CAC1B,OAAOsI,EAAK,IAAInE,EAAS,WAAWnE,CAAO,EAAG,KAAK,QAAQ,CACjE,CACI,OAAO,oBAAoBA,EAAS8H,EAAS,GAAI,CAC/C,OAAO,KAAK,YAAY9H,CAAO,GAAK,IAAI,KAAKA,EAAS,OAAO8H,GAAW,SAAWA,EAAS,IAAI,CACtG,CACI,WAAW,SAAU,CACnB,OAAOS,CACb,CACI,WAAW,UAAW,CACpB,MAAO,MAAM,KAAK,IAAI,EAC5B,CACI,WAAW,WAAY,CACrB,MAAO,IAAI,KAAK,QAAQ,EAC9B,CACI,OAAO,UAAUzF,EAAM,CACrB,MAAO,GAAGA,CAAI,GAAG,KAAK,SAAS,EACrC,CACA,CAEE,OAAO0F,CAET,CAAG;;;;sEC7EF,SAAUpI,EAAQC,EAAS,CACqCC,EAAiB,QAAAD,EAAQ6D,EAA2B,CAAA,CAGrH,GAAG3D,GAAO,SAAU4D,EAAU,CAS5B,MAAMwE,EAAc3I,GAAW,CAC7B,IAAIe,EAAWf,EAAQ,aAAa,gBAAgB,EACpD,GAAI,CAACe,GAAYA,IAAa,IAAK,CACjC,IAAI6H,EAAgB5I,EAAQ,aAAa,MAAM,EAM/C,GAAI,CAAC4I,GAAiB,CAACA,EAAc,SAAS,GAAG,GAAK,CAACA,EAAc,WAAW,GAAG,EACjF,OAAO,KAILA,EAAc,SAAS,GAAG,GAAK,CAACA,EAAc,WAAW,GAAG,IAC9DA,EAAgB,IAAIA,EAAc,MAAM,GAAG,EAAE,CAAC,CAAC,IAEjD7H,EAAW6H,GAAiBA,IAAkB,IAAMA,EAAc,KAAI,EAAK,IACjF,CACI,OAAO7H,EAAWA,EAAS,MAAM,GAAG,EAAE,IAAI8H,GAAO1E,EAAS,cAAc0E,CAAG,CAAC,EAAE,KAAK,GAAG,EAAI,IAC3F,EACKC,EAAiB,CACrB,KAAK/H,EAAUf,EAAU,SAAS,gBAAiB,CACjD,MAAO,CAAE,EAAC,OAAO,GAAG,QAAQ,UAAU,iBAAiB,KAAKA,EAASe,CAAQ,CAAC,CAC/E,EACD,QAAQA,EAAUf,EAAU,SAAS,gBAAiB,CACpD,OAAO,QAAQ,UAAU,cAAc,KAAKA,EAASe,CAAQ,CAC9D,EACD,SAASf,EAASe,EAAU,CAC1B,MAAO,GAAG,OAAO,GAAGf,EAAQ,QAAQ,EAAE,OAAOG,GAASA,EAAM,QAAQY,CAAQ,CAAC,CAC9E,EACD,QAAQf,EAASe,EAAU,CACzB,MAAMgI,EAAU,CAAE,EAClB,IAAIC,EAAWhJ,EAAQ,WAAW,QAAQe,CAAQ,EAClD,KAAOiI,GACLD,EAAQ,KAAKC,CAAQ,EACrBA,EAAWA,EAAS,WAAW,QAAQjI,CAAQ,EAEjD,OAAOgI,CACR,EACD,KAAK/I,EAASe,EAAU,CACtB,IAAIkI,EAAWjJ,EAAQ,uBACvB,KAAOiJ,GAAU,CACf,GAAIA,EAAS,QAAQlI,CAAQ,EAC3B,MAAO,CAACkI,CAAQ,EAElBA,EAAWA,EAAS,sBAC5B,CACM,MAAO,CAAE,CACV,EAED,KAAKjJ,EAASe,EAAU,CACtB,IAAImI,EAAOlJ,EAAQ,mBACnB,KAAOkJ,GAAM,CACX,GAAIA,EAAK,QAAQnI,CAAQ,EACvB,MAAO,CAACmI,CAAI,EAEdA,EAAOA,EAAK,kBACpB,CACM,MAAO,CAAE,CACV,EACD,kBAAkBlJ,EAAS,CACzB,MAAMmJ,EAAa,CAAC,IAAK,SAAU,QAAS,WAAY,SAAU,UAAW,aAAc,0BAA0B,EAAE,IAAIpI,GAAY,GAAGA,CAAQ,uBAAuB,EAAE,KAAK,GAAG,EACnL,OAAO,KAAK,KAAKoI,EAAYnJ,CAAO,EAAE,OAAOoJ,GAAM,CAACjF,EAAS,WAAWiF,CAAE,GAAKjF,EAAS,UAAUiF,CAAE,CAAC,CACtG,EACD,uBAAuBpJ,EAAS,CAC9B,MAAMe,EAAW4H,EAAY3I,CAAO,EACpC,OAAIe,GACK+H,EAAe,QAAQ/H,CAAQ,EAAIA,EAErC,IACR,EACD,uBAAuBf,EAAS,CAC9B,MAAMe,EAAW4H,EAAY3I,CAAO,EACpC,OAAOe,EAAW+H,EAAe,QAAQ/H,CAAQ,EAAI,IACtD,EACD,gCAAgCf,EAAS,CACvC,MAAMe,EAAW4H,EAAY3I,CAAO,EACpC,OAAOe,EAAW+H,EAAe,KAAK/H,CAAQ,EAAI,CAAE,CAC1D,CACG,EAED,OAAO+H,CAET,CAAG;;;;sECjGF,SAAU1I,EAAQC,EAAS,CACqCA,EAAQO,EAASsD,EAAA,EAAoCyD,GAAoC,EAAES,GAAqB,CAGhL,GAAE7H,GAAO,SAAUK,EAASsE,EAAc4D,EAAgB3E,EAAU,CASnE,MAAMkF,EAAuB,CAACC,EAAWC,EAAS,SAAW,CAC3D,MAAMC,EAAa,gBAAgBF,EAAU,SAAS,GAChDxG,EAAOwG,EAAU,KACvBpE,EAAa,GAAG,SAAUsE,EAAY,qBAAqB1G,CAAI,KAAM,SAAUkC,EAAO,CAIpF,GAHI,CAAC,IAAK,MAAM,EAAE,SAAS,KAAK,OAAO,GACrCA,EAAM,eAAgB,EAEpBb,EAAS,WAAW,IAAI,EAC1B,OAEF,MAAMT,EAASoF,EAAe,uBAAuB,IAAI,GAAK,KAAK,QAAQ,IAAIhG,CAAI,EAAE,EACpEwG,EAAU,oBAAoB5F,CAAM,EAG5C6F,CAAM,EAAG,CACxB,CAAK,CACF,EAED3I,EAAQ,qBAAuByI,EAE/B,OAAO,eAAezI,EAAS,OAAO,YAAa,CAAE,MAAO,SAAU,CAExE,CAAG;;;;sECnCF,SAAUR,EAAQC,EAAS,CACqCC,EAAA,QAAiBD,EAAQ6D,GAA8B,EAAEyD,EAAA,EAAmCS,GAAwC,EAAEC,GAA0B,CAGhO,GAAE9H,GAAO,SAAUiI,EAAetD,EAAcuE,EAAuBtF,EAAU,CAchF,MAAMuF,EAAO,QAEPC,EAAY,YACZC,EAAc,QAAQD,CAAS,GAC/BE,EAAe,SAASF,CAAS,GACjCG,EAAkB,OAClBC,EAAkB,OAMxB,MAAMC,UAAcxB,CAAc,CAEhC,WAAW,MAAO,CAChB,OAAOkB,CACb,CAGI,OAAQ,CAEN,GADmBxE,EAAa,QAAQ,KAAK,SAAU0E,CAAW,EACnD,iBACb,OAEF,KAAK,SAAS,UAAU,OAAOG,CAAe,EAC9C,MAAMrB,EAAa,KAAK,SAAS,UAAU,SAASoB,CAAe,EACnE,KAAK,eAAe,IAAM,KAAK,gBAAe,EAAI,KAAK,SAAUpB,CAAU,CACjF,CAGI,iBAAkB,CAChB,KAAK,SAAS,OAAQ,EACtBxD,EAAa,QAAQ,KAAK,SAAU2E,CAAY,EAChD,KAAK,QAAS,CACpB,CAGI,OAAO,gBAAgB/B,EAAQ,CAC7B,OAAO,KAAK,KAAK,UAAY,CAC3B,MAAMmC,EAAOD,EAAM,oBAAoB,IAAI,EAC3C,GAAI,OAAOlC,GAAW,SAGtB,IAAImC,EAAKnC,CAAM,IAAM,QAAaA,EAAO,WAAW,GAAG,GAAKA,IAAW,cACrE,MAAM,IAAI,UAAU,oBAAoBA,CAAM,GAAG,EAEnDmC,EAAKnC,CAAM,EAAE,IAAI,EACzB,CAAO,CACP,CACA,CAME,OAAA2B,EAAsB,qBAAqBO,EAAO,OAAO,EAMzD7F,EAAS,mBAAmB6F,CAAK,EAE1BA,CAET,CAAG,6CCpFGE,GAAmB,CACxB,QAAS,gBACT,QAAS,gBACT,OAAQ,eACR,QAAS,eACV,EAEO,MAAMC,EAAa,CAGzB,YAAYC,EAAiB,CACvB,KAAA,QAAU,SAAS,cAAc,KAAK,EAC3C,KAAK,QAAQ,UAAU,IAAI,QAASF,GAAiBE,CAAI,EAAG,MAAM,EAC7D,KAAA,QAAQ,aAAa,OAAQ,OAAO,CAAA,CAG1C,SAAwB,CACjB,MAAAC,EAAU,SAAS,cAAc,KAAK,EAC5C,OAAAA,EAAQ,UAAU,IAAI,iBAAkB,oBAAqB,MAAM,EAC3DA,EAAA,aAAa,OAAQ,QAAQ,EAChC,KAAA,QAAQ,YAAYA,CAAO,EACzB,IAAA,CAGR,KAAKC,EAA4B,CAChC,YAAK,QAAQ,YAAY,SAAS,eAAeA,CAAI,CAAC,EAC/C,IAAA,CAGR,IAAItK,EAA6B,CAC3B,YAAA,QAAQ,YAAYA,CAAO,EACzB,IAAA,CAGR,OAAwB,CACvB,OAAO,KAAK,OAAA,CAGb,aAAuC,CAC/B,OAAA,IAAIuK,GAAwB,KAAK,OAAO,CAAA,CAEjD,CAEO,MAAMA,EAAwB,CAKpC,YAAYvK,EAAyB,CACpC,KAAK,QAAUA,EAEV,KAAA,QAAU,SAAS,cAAc,QAAQ,EAC9C,KAAK,QAAQ,UAAU,IAAI,YAAa,iBAAiB,EACpD,KAAA,QAAQ,aAAa,OAAQ,QAAQ,EACrC,KAAA,QAAQ,aAAa,kBAAmB,OAAO,EAC/C,KAAA,QAAQ,aAAa,aAAc,OAAO,EAE1C,KAAA,QAAQ,YAAY,KAAK,OAAO,EACrC,KAAK,QAAQ,UAAU,IAAI,oBAAqB,MAAM,EAEtD,KAAK,MAAQ,IAAIgK,GAAM,KAAK,OAAO,CAAA,CAGpC,UAAUQ,EAA2C,CACpD,KAAM,CAAE,MAAAC,EAAO,QAAAC,EAAS,QAAA1K,CAAY,EAAA,KAC9B2K,EAAU,WAAW,IAAMF,EAAM,MAAA,EAASD,CAAQ,EAChD,OAAAE,EAAA,iBAAiB,QAAcE,GAAA,CACtCA,EAAE,gBAAgB,EAClB,aAAaD,CAAO,CAAA,CACpB,EACO3K,EAAA,iBAAiB,QAAc4K,GAAA,CAClCA,EAAE,SAAWF,IAGT1K,EAAA,UAAU,OAAO,MAAM,EAC/ByK,EAAM,MAAM,EACZ,aAAaE,CAAO,EAAA,CACpB,EACM,IAAA,CAGR,OAAwB,CACvB,OAAO,KAAK,OAAA,CAGb,UAAkB,CACjB,OAAO,KAAK,KAAA,CAEd,CCgHA,MAAME,EAAmB,mBAElB,SAASC,GAAQC,EAAaxB,EAAgBU,EAAee,EAAoC,CACjG,MAAAC,EAAuB,CAAE,eAAgBJ,CAAiB,EAC5DG,IAAW,SACdC,EAAQ,OAAYD,GAGfF,MAAAA,EAAU,IAAI,QAAQC,EAAK,CAChC,OAAAxB,EACA,QAAA0B,EACA,KAAMhB,CAAA,CACN,EACM,OAAA,OAAO,MAAMa,CAAO,EAAE,KACvBI,GACAA,EAAE,GACE,QAAQ,QAAQA,CAAC,EAElB,QAAQ,OAAOA,CAAC,EAEnBC,IACJ,QAAQ,IAAIA,CAAC,EACN,SAAS,KAAK,EAAE,EAEzB,CACD,CAEO,SAASC,EAAW,CAAE,KAAAnB,EAAM,OAAAV,EAAQ,IAAAwB,EAAK,OAAAC,GAAsC,CACrF,OAAOF,GAAQ,OAAOC,CAAG,GAAIxB,EAAQU,IAAS,OAAYA,EAAO,KAAK,UAAUA,CAAI,EAAGe,CAAM,CAC9F,CAEA,SAASK,EAAQC,EAAkC,CAClD,OAAOA,EAAE,KAAUH,GAAAA,EAAE,MAAW,CACjC,CAEA,SAASI,EAAMD,EAAqC,CAC5C,OAAAA,EAAE,KAAK,IAAM,CACnB,CACA,CACF,CAQO,SAASE,EAAc,CAAE,IAAAT,EAAK,KAAAd,EAAM,OAAAe,GAAyC,CACnF,OAAOI,EAAW,CACjB,OAAQ,MACR,IAAKnB,IAAS,OAAYc,EAAMA,EAAM,IAAM,IAAI,gBAAgBd,CAAI,EACpE,OAAAe,CAAA,CACA,CACF,CAEO,MAAMS,GAAyB,CACrC,qBAAsB,qBACtB,qBAAsB,qBACtB,gBAAiB,mEACjB,oBAAqB,uEACrB,iBAAkB,4CAClB,gBAAiB,4DACjB,kBAAmB,oCACpB,EAEaC,GAAqB,CACjC,kBAAmB,qBACnB,wBAAyB,wBACzB,8BAA+B,iCAC/B,gBAAiB,sBACjB,iBAAkB,iBAClB,yBAA0B,yBAC1B,gBAAiB,mBAClB,EAEaC,GAAqB,CACjC,iBAAkB,iBAClB,iBAAkB,iBAClB,iBAAkB,iBAClB,mBAAoB,mBACpB,oBAAqB,oBACrB,qBAAsB,qBACtB,uBAAwB,sBACzB,EAEaC,GAAsB,CAClC,2BAA4B,sCAC5B,sBAAuB,yBACvB,uBAAwB,8BACzB,EAEO,MAAMC,EAAsB,CAGlC,YAAYC,EAAwB,CACnC,KAAK,eAAiBA,CAAA,CAExB,CAEO,MAAMC,EAAyB,CAGrC,YAAYC,EAAoB,CAC/B,KAAK,WAAaA,CAAA,CAEpB,CAEO,MAAMC,EAAsB,CAOlC,YAAYC,EAAmBC,EAAyBC,EAAuB,CAC9E,KAAK,MAAQ,CAAE,UAAAF,EAAW,eAAAC,EAAgB,aAAAC,CAAa,CAAA,CAEzD,CAEO,MAAMC,EAAkB,CAO9B,YAAYtB,EAAaoB,EAAyBC,EAAuB,CACxE,KAAK,MAAQ,CAAE,IAAArB,EAAK,eAAAoB,EAAgB,aAAAC,CAAa,CAAA,CAEnD,CAQO,MAAME,EAAqB,CAOjC,YAAYN,EAAoBO,EAAgBC,EAA2B,CAC1E,KAAK,SAAW,CAAE,WAAAR,EAAY,OAAAO,EAAQ,YAAAC,CAAY,CAAA,CAEpD,CAoEO,MAAMC,GAAW,CACvB,KAAOC,GACNtB,EAAW,CACV,IAAK,OACL,OAAQ,OACR,KAAMsB,CAAA,CACN,EAEF,SAAWC,GACVvB,EAAW,CACV,IAAK,WACL,OAAQ,OACR,KAAMuB,CAAA,CACN,EAEF,MAAO,IACNnB,EAAc,CACb,IAAK,QACL,OAAQ,MAAA,CACR,EAEF,UAAW,IACVA,EAAc,CACb,IAAK,WACL,CAAA,EAAE,KAAUL,GAAAA,EAAE,MAAM,EAEtB,QAAS,IACRK,EAAc,CACb,IAAK,SACL,CAAA,EAAE,KAAUL,GAAAA,EAAE,MAAM,EAEtB,SAAU,CACT,OAASyB,GACRxB,EAAW,CACV,IAAK,kBACL,OAAQ,OACR,KAAM,CACL,MAAAwB,CAAA,CACD,CACA,EAEF,UAAW,IACVxB,EAAW,CACV,IAAK,kBACL,OAAQ,OACR,KAAM,KAAA,CACN,EAEF,QAAS,IACRA,EAAW,CACV,IAAK,mBACL,OAAQ,MACR,CAAA,CACH,EAEA,KAAM,CACL,WAAY,CAACrL,EAAY+C,EAAc+J,EAAgBC,IACtD1B,EAAW,CACV,IAAK,mBACL,OAAQ,OACR,KAAM,CACL,OAAQrL,EACR,KAAA+C,EACA,KAAA+J,EACA,QAAAC,CAAA,CACD,CACA,EACF,YAAa,CAAC/M,EAAYgN,IACzB3B,EAAW,CACV,IAAK,oBACL,OAAQ,OACR,KAAM,CACL,OAAQrL,EACR,MAAOgN,CAAA,CACR,CACA,EACF,OAAQ,CAACjK,EAAc+J,EAAgBC,IACtC1B,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,KAAAtI,EACA,KAAA+J,EACA,QAAAC,CAAA,CACD,CACA,EACF,IAAM/M,GACLsL,EACCG,EAAc,CACb,IAAK,WACL,KAAM,CACL,OAAQzL,CACT,EACA,OAAQ8K,CACR,CAAA,CACF,EACD,OAAS9K,GACRqL,EAAW,CACV,IAAK,cACL,OAAQ,SACR,KAAM,CACL,OAAQrL,CAAA,CACT,CACA,EACF,MAAO,CACN,IAAK,CAACA,EAAYiN,IACjB5B,EAAW,CACV,IAAK,iBACL,OAAQ,OACR,KAAM,CACL,OAAQrL,EACR,GAAGiN,CAAA,CACJ,CACA,EACF,IAAK,CAACjN,EAAYkN,EAAeC,IAChC7B,EACCG,EAAc,CACb,IAAK,iBACL,KAAM,CACL,OAAQzL,EACR,MAAO,OAAOkN,CAAK,EACnB,IAAK,OAAOC,CAAG,CAChB,EACA,OAAQrC,CACR,CAAA,CACF,EACD,OAAQ,CAAC9K,EAAYiM,EAAoB/H,IACxCmH,EAAW,CACV,IAAK,oBACL,OAAQ,SACR,KAAM,CACL,OAAQrL,EACR,WAAAiM,EACA,MAAA/H,CAAA,CACD,CACA,EACF,UAAW,CAAClE,EAAYoN,IACvB/B,EAAW,CACV,IAAK,wBACL,OAAQ,SACR,KAAM,CACL,OAAQrL,EACR,YAAAoN,CAAA,CAED,CAAA,CAAA,CAEJ,EAEA,OAAQ,CACP,MAAO,IACN3B,EAAc,CACb,IAAK,cAAA,CACL,EACF,QAAUwB,GACTzB,EACCH,EAAW,CACV,IAAK,iBACL,OAAQ,OACR,KAAM4B,CACN,CAAA,CACF,EACD,MAAQA,GACPzB,EACCH,EAAW,CACV,IAAK,eACL,OAAQ,OACR,KAAM4B,CACN,CAAA,CACF,EACD,OAAQ,CAACjN,EAAYkE,IACpBsH,EACCH,EAAW,CACV,IAAK,gBACL,OAAQ,SACR,KAAM,CACL,OAAQrL,EACR,MAAAkE,CAAA,CAED,CAAA,CACF,EACD,KAAOlE,GACNwL,EACCH,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,OAAQrL,CAAA,CAET,CAAA,CACF,EACD,QAAUA,GACTwL,EACCH,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,QAASrL,CAAA,CAEV,CAAA,CACF,EACD,UAAYqN,GACX7B,EACCH,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,MAAOgC,CAAA,CAER,CAAA,CACF,EACD,WAAarN,GACZwL,EACCH,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,WAAYrL,CAAA,CAEb,CAAA,CAAA,CAEJ,EAEA,SAAU,CACT,IAAMiN,GACL5B,EAAW,CACV,IAAK,eACL,OAAQ,OACR,KAAM4B,EACN,OAAQnC,CACR,CAAA,EAAE,KAAUM,GAAAA,EAAE,MAAM,EACtB,OAAQ,CACPpL,EACA+C,EACAuK,EACAC,EACAC,EACAC,IAEApC,EAAW,CACV,IAAK,kBACL,OAAQ,OACR,KAAM,CACL,GAAArL,EACA,KAAA+C,EACA,OAAAwK,EACA,QAAAC,EACA,SAAAF,EACA,SAAAG,CAAA,CACD,CACA,EACF,MAAO,CACNC,EACAC,EACA5K,EACAwK,EACAC,EACAF,EACAG,IAEAjC,EACCH,EAAW,CACV,OAAQ,OACR,IAAK,iBACL,KAAM,CACL,EAAAqC,EACA,EAAAC,EACA,KAAA5K,EACA,OAAAwK,EACA,QAAAC,EACA,SAAAF,EACA,SAAAG,CAAA,CAED,CAAA,CACF,EACD,OAAQ,CACPZ,EACAe,IAIAtC,EACCD,EAAW,CACV,IAAK,kBACL,OAAQ,OACR,KAAM,CACL,MAAAwB,EACA,QAASe,CACV,EACA,OAAQ9C,CACR,CAAA,CACF,EACD,SAAW+C,GACVvC,EACCD,EAAW,CACV,IAAK,oBACL,OAAQ,OACR,KAAMwC,EACN,OAAQ/C,CACR,CAAA,CAAA,CAEJ,EAEA,OAAQ,CACP,SAAU,CAACgD,EAAeC,IACzBzC,EACCG,EAAc,CACb,IAAK,kBACL,KAAM,CACL,MAAAqC,EACA,MAAO,OAAOC,CAAK,CACpB,EACA,OAAQjD,CACR,CAAA,CACF,EACD,QAAS,CAACgD,EAAeC,IACxBzC,EACCG,EAAc,CACb,IAAK,iBACL,KAAM,CACL,MAAAqC,EACA,MAAO,OAAOC,CAAK,CACpB,EACA,OAAQjD,CACR,CAAA,CACF,EACD,QAAS,CAACgD,EAAeC,IACxBzC,EACCG,EAAc,CACb,IAAK,iBACL,KAAM,CACL,MAAAqC,EACA,MAAO,OAAOC,CAAK,CACpB,EACA,OAAQjD,CACR,CAAA,CAAA,CAEJ,EAEA,GAAI,CACH,IAAK,IACJQ,EACCG,EAAc,CACb,IAAK,SACL,OAAQX,CACR,CAAA,CACF,EACD,QAAU/H,GACTyI,EACCH,EAAW,CACV,IAAK,cACL,OAAQ,OACR,KAAM,CACL,KAAAtI,CAAA,CAED,CAAA,CACF,EACD,mBAAoB,IACnByI,EACCH,EAAW,CACV,IAAK,yBACL,OAAQ,MACR,CAAA,CACF,EACD,eAAgB,CAAC2C,EAAqBC,IACrCzC,EACCH,EAAW,CACV,IAAK,qBACL,OAAQ,OACR,KAAM,CACL,YAAA2C,EACA,YAAAC,CAAA,CAED,CAAA,CAAA,CAEJ,EAEA,MAAO,CACN,SAAU,CACT,UAAYjO,GACXwL,EACCH,EAAW,CACV,IAAK,2BACL,OAAQ,OACR,KAAMrL,CACN,CAAA,CAAA,CAEJ,EACA,KAAM,CACL,WAAY,CAACA,EAAY+C,EAAc+J,EAAgBC,IACtDvB,EACCH,EAAW,CACV,IAAK,yBACL,OAAQ,OACR,KAAM,CACL,OAAQrL,EACR,KAAA+C,EACA,KAAA+J,EACA,QAAAC,CAAA,CAED,CAAA,CACF,EACD,YAAa,CAAC/M,EAAYgN,IACzBxB,EACCH,EAAW,CACV,IAAK,0BACL,OAAQ,OACR,KAAM,CACL,OAAQrL,EACR,MAAOgN,CAAA,CAER,CAAA,CACF,EACD,OAAShN,GACRwL,EACCH,EAAW,CACV,IAAK,oBACL,OAAQ,SACR,KAAM,CACL,OAAQrL,CAAA,CAET,CAAA,CAAA,CAEJ,EACA,KAAM,CACL,aAAc,IACbsL,EACCG,EAAc,CACb,IAAK,0BACL,CAAA,CACF,EACD,eAAiByC,GAChB7C,EAAW,CACV,IAAK,6BACL,OAAQ,SACR,KAAM,CAAE,UAAA6C,CAAU,CAAA,CAClB,EACF,SAAWA,GACV7C,EAAW,CACV,IAAK,sBACL,OAAQ,OACR,KAAM,CAAE,UAAA6C,CAAU,CAAA,CAClB,EACF,kBAAmB,CAAClO,EAAYmO,IAC/B9C,EAAW,CACV,IAAK,gCACL,OAAQ,OACR,KAAM,CAAE,GAAArL,EAAI,YAAAmO,CAAY,CAAA,CACxB,EACF,mBAAqBnO,GACpBqL,EAAW,CACV,IAAK,iCACL,OAAQ,OACR,KAAM,CAAE,GAAArL,CAAG,CAAA,CACX,EACF,QAAS,CAACA,EAAY+C,IACrBsI,EAAW,CACV,IAAK,sBACL,OAAQ,OACR,KAAM,CAAE,GAAArL,EAAI,KAAA+C,CAAK,CAAA,CACjB,EACF,eAAgB,CAAC/C,EAAYiO,IAC5B5C,EAAW,CACV,IAAK,6BACL,OAAQ,OACR,KAAM,CAAE,GAAArL,EAAI,YAAAiO,CAAY,CAAA,CACxB,EACF,IAAMjO,GACLsL,EACCG,EAAc,CACb,IAAK,iBACL,KAAM,CAAE,GAAAzL,CAAG,CACX,CAAA,CAAA,CAEJ,EACA,OAAQ,CACP,MAAQoO,GACP/C,EAAW,CACV,IAAK,qBACL,OAAQ,OACR,KAAM,CAAE,MAAA+C,CAAM,CAAA,CACd,EACF,KAAOC,GACN7C,EACCH,EAAW,CACV,IAAK,oBACL,OAAQ,OACR,KAAM,CAAE,OAAAgD,CAAO,CACf,CAAA,CAAA,CACF,CACF,CAEF,EAEgB,SAAAC,GACfC,EACAC,EAGS,CACT,OAAOD,KAAUC,EAAcA,EAAYD,CAAM,EAAI,kBAAkBA,CAAM,GAC9E,CAEO,SAASE,GAAqBC,EAAuB,CACvD,OAAAA,EAAI,QAAU,IACV,yEAAyEA,EAAI,MAAM,IAEnF,GAAGA,EAAI,UAAU,iBAAiBA,EAAI,MAAM,GAErD,CAEgB,SAAAC,GACfD,EACAF,EAGkB,CACX,OAAAE,EAAI,OAAO,KACRrH,GAAAiH,GAAcjH,EAAM,OAAkBmH,CAAW,EAC1D,IAAMC,GAAqBC,CAAG,CAC/B,CACD,CC36BA,MAAeE,GAAA,2CCAAC,GAAA,qCCAAC,GAAA,2CCAAC,GAAA,qCCAAC,GAAA,2CCAAC,GAAA,qCCAAC,GAAA,2CCAAC,GAAA,qCCSR,SAASC,GAAmB,EAAc,CAC5C,IAAM,QACT,QAAQ,MAAM,CAAC,CAEjB,CAKA,SAASC,GAAmBC,EAAqB,CAChD,OAAOA,EAAM,WAAW,iBAAiB,SAAS,eAAe,EAAE,QAAQ,CAC5E,CAEgB,SAAAC,GAAeC,EAAkBvP,EAA0B,KAAc,CACxF,OAAIA,GAAW,KACP,iBAAiB,SAAS,eAAe,EAAE,iBAAiBuP,CAAQ,EAAE,KAAK,EAE3E,iBAAiBvP,CAAO,EAAE,iBAAiBuP,CAAQ,EAAE,KAAK,CAEnE,CAEA,SAASC,GAAuBD,EAAkBvP,EAA0B,KAAc,CACnF,MAAAiI,EAAWqH,GAAeC,EAAUvP,CAAO,EAC7C,GAAAiI,EAAS,SAAS,KAAK,EAC1B,OAAOmH,GAAmB,WAAWnH,EAAS,QAAQ,MAAO,EAAE,CAAC,CAAC,EACvD,GAAAA,EAAS,SAAS,IAAI,EAChC,OAAO,WAAWA,EAAS,QAAQ,KAAM,EAAE,CAAC,EAClC,GAAAA,EAAS,SAAS,IAAI,EACzB,OAAAwH,GAAA,GAAsB,WAAWxH,EAAS,QAAQ,KAAM,EAAE,CAAC,EAAI,KAC5D,GAAAA,EAAS,SAAS,IAAI,EACzB,OAAAyH,GAAA,GAAuB,WAAWzH,EAAS,QAAQ,KAAM,EAAE,CAAC,EAAI,KAEjE,KAAA,wBAER,CAEO,SAAS0H,IAA0B,CACzC,OAAOH,GAAuB,2BAA2B,CAC1D,CAEO,SAASI,IAA4B,CAC3C,OAAOJ,GAAuB,8BAA8B,CAC7D,CAEO,SAASC,IAA2B,CAE1C,OAAO,SAAS,gBAAgB,WACjC,CAEO,SAASC,IAA4B,CAE3C,OAAO,SAAS,gBAAgB,YACjC,CAEO,SAASG,GAAwBC,EAAoB,CACpD,OAAA,KAAK,MAAMA,EAAK,GAAG,CAC3B,CAEO,SAASC,GAAwBC,EAAmB,CAC1D,OAAOA,EAAI,GACZ,CAEO,SAASC,GAAkBC,EAAsB,CACvD,MAAMC,EAAQ,KAAK,MAAMD,EAAO,IAAI,EAC9BE,EAAU,KAAK,MAAOF,EAAO,KAAQ,EAAE,EACvCG,EAAUH,EAAO,GAEvB,IAAII,EAAS,GACb,OAAIH,EAAQ,IACXG,GAAUH,EAAQ,KAGfC,EAAU,IAAMD,EAAQ,IACjBG,GAAA,KAEXA,GAAUF,EAAU,IAEhBC,EAAU,KACHC,GAAA,KAEDA,GAAAD,EACHC,CACR,CAMO,SAASC,GAAW3M,EAAqB,CAC1CA,EAAA,KAAK,CAAC6J,EAAGC,IACND,EAAE,KAAK,cAAcC,EAAE,IAAI,CAClC,CACF,CAEgB,SAAA8C,GAA6BC,EAAWC,EAAkC,CACnF,MAAAC,EAAQ,SAAS,cAAc,KAAK,EACpCA,EAAA,aAAa,QAAS,iBAAiB,EAEvC,MAAAC,EAAS,SAAS,cAAc,QAAQ,EACvC,OAAAA,EAAA,aAAa,QAAS,oDAAoD,EAC1EA,EAAA,iBAAiB,QAASF,CAAI,EAErCC,EAAM,YAAYC,CAAM,EACxBD,EAAM,YAAYF,CAAM,EACjBE,CACR,CAEA,MAAME,GAAY,IAAI,OACrB,oJACD,EACO,SAASC,GAAWjD,EAAkC,CACtD,MAAAkD,EAAMlD,EAAM,MAAM,GAAG,EACvB,OAAAkD,EAAI,MAAM3J,GAASA,EAAM,MAAMyJ,EAAS,CAAC,EACrCE,EAEAlD,CAET,CAEgB,SAAAmD,GAAU1F,EAAe2F,EAA2B,CACnE,OAAO3F,EAAE,KACH4F,IACFD,EAAA,EACKC,GAEHA,IACFD,EAAA,EACK,QAAQ,OAAOC,CAAC,EAEzB,CACD,CAEgB,SAAAC,GAAoBP,EAAqBQ,EAAiC,CAClF,OAAAR,EAAA,aAAa,WAAY,EAAE,EAC3BI,GAAOI,EAAS,IAAMR,EAAO,gBAAgB,UAAU,CAAC,CAChE,CAEgB,SAAAS,GAAmBhH,EAAsB+G,EAAiC,CACjF,OAAA/G,EAAA,UAAU,OAAO,QAAQ,EAC1B2G,GAAOI,EAAS,IAAM/G,EAAQ,UAAU,IAAI,QAAQ,CAAC,CAC7D,CAEgB,SAAAiH,GAAgBC,EAAYN,EAAqC,CAChF,MAAMX,EAAS,IAAI,MAAMiB,EAAM,MAAM,EACrC,IAAIC,EAAS,EACP,OAAAD,EAAA,QAAiBnK,GAAA,CAChB,MAAA8J,EAAID,EAAE7J,CAAK,EACb8J,IAAM,SACTZ,EAAOkB,CAAM,EAAIN,EACPM,GAAA,EACX,CACA,EACDlB,EAAO,OAASkB,EACTlB,CACR,CAEO,MAAMmB,EAAW,CAAjB,aAAA,CACN,KAAQ,QAAU,EAAA,CAElB,IAAOL,EAAiC,CACjC,MAAArR,EAAK,KAAK,OAAO,EACvB,YAAK,QAAUA,EACRqR,EAAQ,KAAWF,GAAA,KAAK,SAAWnR,EAAK,QAAQ,QAAQmR,CAAC,EAAI,QAAQ,QAAS,CAAA,CAGtF,QAAe,CACd,KAAK,QAAU,EAAA,CAEjB,CAEA,MAAMQ,GAAY,CACjB,KAAM,CAACxC,GAAcF,GAAcF,GAAcF,EAAY,EAC7D,MAAO,CAACK,GAAmBF,GAAmBF,GAAmBF,EAAiB,CACnF,EAEA,SAASgD,GAAOC,EAAoB,CACnC,MAAMC,EAAOD,EAAYF,GAAU,MAAQA,GAAU,KAE5C,SAAA,iBAAiB,gBAAgB,EAAE,QAAa9G,GAAAA,EAAE,QAAQ,EAE9DiH,EAAA,QAAeC,GAAA,CACb,MAAApO,EAAS,SAAS,cAAc,MAAM,EACtCqO,EAAO,SAAS,cAAc,MAAM,EACrCA,EAAA,aAAa,MAAO,MAAM,EAC1BA,EAAA,aAAa,OAAQ,WAAW,EAC/B,MAAAC,EAAQF,EAAI,MAAM,mBAAmB,EACvCE,GAAS,MACZD,EAAK,aAAa,QAASC,EAAM,CAAC,CAAC,EAE/BD,EAAA,aAAa,OAAQD,CAAG,EACxBC,EAAA,aAAa,eAAgB,EAAE,EACpCrO,EAAO,YAAYqO,CAAI,CAAA,CACvB,CACF,CAEO,SAASE,IAAsB,CAC/B,MAAApE,EAAQ,OAAO,WAAW,8BAA8B,EAC9DA,EAAM,iBAAiB,SAAU7I,GAAS2M,GAAO3M,EAAM,OAAO,CAAC,EAC/D2M,GAAO9D,EAAM,OAAO,CACrB,CAEO,SAASqE,IAAgC,CACxC,OAAA,IAAI,KAAK,KAAK,MAAM,2BAAkB,CAAC,EAAE,eAAe,OAAW,CACzE,KAAM,UACN,MAAO,QACP,IAAK,UACL,KAAM,UACN,OAAQ,SAAA,CACR,CACF,CAEO,SAASC,IAAgC,CACxC,MAAA;AAAA,EAAW,UAAU,EAAG,EAAE,CAClC,CAEO,SAASC,IAA4B,CASnC,QAAA,IAR0B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAQJ,QAAQ;AAAA,EAAM,EAAE,EAAE,QAAQ,MAAO,EAAE,CAAC,EAClE,QAAQ,IAAI,yBAAyB,EACrC,QAAQ,IAAI,0BAA0BD,GAAuB,CAAA,aAAaD,GAAuB,CAAA,EAAE,CACpG","x_google_ignoreList":[1,2,3,4,5,6,7,8,9]}