{
  "version": 3,
  "sources": ["../../../../node_modules/preact/src/constants.js", "../../../../node_modules/preact/src/util.js", "../../../../node_modules/preact/src/options.js", "../../../../node_modules/preact/src/create-element.js", "../../../../node_modules/preact/src/component.js", "../../../../node_modules/preact/src/diff/props.js", "../../../../node_modules/preact/src/create-context.js", "../../../../node_modules/preact/src/diff/children.js", "../../../../node_modules/preact/src/diff/index.js", "../../../../node_modules/preact/src/render.js", "../../../../node_modules/preact/src/clone-element.js", "../../../../node_modules/preact/src/diff/catch-error.js", "../../../../node_modules/preact/hooks/src/index.js", "../../../../node_modules/preact/compat/src/util.js", "../../../../node_modules/preact/compat/src/hooks.js", "../../../../node_modules/preact/compat/src/PureComponent.js", "../../../../node_modules/preact/compat/src/memo.js", "../../../../node_modules/preact/compat/src/forwardRef.js", "../../../../node_modules/preact/compat/src/Children.js", "../../../../node_modules/preact/compat/src/suspense.js", "../../../../node_modules/preact/compat/src/suspense-list.js", "../../../../node_modules/preact/src/constants.js", "../../../../node_modules/preact/compat/src/portals.js", "../../../../node_modules/preact/compat/src/render.js", "../../../../node_modules/preact/compat/src/index.js"],
  "sourcesContent": ["/** Normal hydration that attaches to a DOM tree but does not diff it. */\nexport const MODE_HYDRATE = 1 << 5;\n/** Signifies this VNode suspended on the previous render */\nexport const MODE_SUSPENDED = 1 << 7;\n/** Indicates that this node needs to be inserted while patching children */\nexport const INSERT_VNODE = 1 << 2;\n/** Indicates a VNode has been matched with another VNode in the diff */\nexport const MATCHED = 1 << 1;\n\n/** Reset all mode flags */\nexport const RESET_MODE = ~(MODE_HYDRATE | MODE_SUSPENDED);\n\nexport const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nexport const XHTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nexport const MATH_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\n\nexport const NULL = null;\nexport const UNDEFINED = undefined;\nexport const EMPTY_OBJ = /** @type {any} */ ({});\nexport const EMPTY_ARR = [];\nexport const IS_NON_DIMENSIONAL =\n\t/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;\n", "import { EMPTY_ARR } from './constants';\n\nexport const isArray = Array.isArray;\n\n/**\n * Assign properties from `props` to `obj`\n * @template O, P The obj and props types\n * @param {O} obj The object to copy properties to\n * @param {P} props The object to copy properties from\n * @returns {O & P}\n */\nexport function assign(obj, props) {\n\t// @ts-expect-error We change the type of `obj` to be `O & P`\n\tfor (let i in props) obj[i] = props[i];\n\treturn /** @type {O & P} */ (obj);\n}\n\n/**\n * Remove a child node from its parent if attached. This is a workaround for\n * IE11 which doesn't support `Element.prototype.remove()`. Using this function\n * is smaller than including a dedicated polyfill.\n * @param {import('./index').ContainerNode} node The node to remove\n */\nexport function removeNode(node) {\n\tif (node && node.parentNode) node.parentNode.removeChild(node);\n}\n\nexport const slice = EMPTY_ARR.slice;\n", "import { _catchError } from './diff/catch-error';\n\n/**\n * The `option` object can potentially contain callback functions\n * that are called during various stages of our renderer. This is the\n * foundation on which all our addons like `preact/debug`, `preact/compat`,\n * and `preact/hooks` are based on. See the `Options` type in `internal.d.ts`\n * for a full list of available option hooks (most editors/IDEs allow you to\n * ctrl+click or cmd+click on mac the type definition below).\n * @type {import('./internal').Options}\n */\nconst options = {\n\t_catchError\n};\n\nexport default options;\n", "import { slice } from './util';\nimport options from './options';\nimport { NULL, UNDEFINED } from './constants';\n\nlet vnodeId = 0;\n\n/**\n * Create an virtual node (used for JSX)\n * @param {import('./internal').VNode[\"type\"]} type The node name or Component constructor for this\n * virtual node\n * @param {object | null | undefined} [props] The properties of the virtual node\n * @param {Array<import('.').ComponentChildren>} [children] The children of the\n * virtual node\n * @returns {import('./internal').VNode}\n */\nexport function createElement(type, props, children) {\n\tlet normalizedProps = {},\n\t\tkey,\n\t\tref,\n\t\ti;\n\tfor (i in props) {\n\t\tif (i == 'key') key = props[i];\n\t\telse if (i == 'ref') ref = props[i];\n\t\telse normalizedProps[i] = props[i];\n\t}\n\n\tif (arguments.length > 2) {\n\t\tnormalizedProps.children =\n\t\t\targuments.length > 3 ? slice.call(arguments, 2) : children;\n\t}\n\n\t// If a Component VNode, check for and apply defaultProps\n\t// Note: type may be undefined in development, must never error here.\n\tif (typeof type == 'function' && type.defaultProps != NULL) {\n\t\tfor (i in type.defaultProps) {\n\t\t\tif (normalizedProps[i] === UNDEFINED) {\n\t\t\t\tnormalizedProps[i] = type.defaultProps[i];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn createVNode(type, normalizedProps, key, ref, NULL);\n}\n\n/**\n * Create a VNode (used internally by Preact)\n * @param {import('./internal').VNode[\"type\"]} type The node name or Component\n * Constructor for this virtual node\n * @param {object | string | number | null} props The properties of this virtual node.\n * If this virtual node represents a text node, this is the text of the node (string or number).\n * @param {string | number | null} key The key for this virtual node, used when\n * diffing it against its children\n * @param {import('./internal').VNode[\"ref\"]} ref The ref property that will\n * receive a reference to its created child\n * @returns {import('./internal').VNode}\n */\nexport function createVNode(type, props, key, ref, original) {\n\t// V8 seems to be better at detecting type shapes if the object is allocated from the same call site\n\t// Do not inline into createElement and coerceToVNode!\n\t/** @type {import('./internal').VNode} */\n\tconst vnode = {\n\t\ttype,\n\t\tprops,\n\t\tkey,\n\t\tref,\n\t\t_children: NULL,\n\t\t_parent: NULL,\n\t\t_depth: 0,\n\t\t_dom: NULL,\n\t\t_component: NULL,\n\t\tconstructor: UNDEFINED,\n\t\t_original: original == NULL ? ++vnodeId : original,\n\t\t_index: -1,\n\t\t_flags: 0\n\t};\n\n\t// Only invoke the vnode hook if this was *not* a direct copy:\n\tif (original == NULL && options.vnode != NULL) options.vnode(vnode);\n\n\treturn vnode;\n}\n\nexport function createRef() {\n\treturn { current: NULL };\n}\n\nexport function Fragment(props) {\n\treturn props.children;\n}\n\n/**\n * Check if a the argument is a valid Preact VNode.\n * @param {*} vnode\n * @returns {vnode is VNode}\n */\nexport const isValidElement = vnode =>\n\tvnode != NULL && vnode.constructor == UNDEFINED;\n", "import { assign } from './util';\nimport { diff, commitRoot } from './diff/index';\nimport options from './options';\nimport { Fragment } from './create-element';\nimport { MODE_HYDRATE, NULL } from './constants';\n\n/**\n * Base Component class. Provides `setState()` and `forceUpdate()`, which\n * trigger rendering\n * @param {object} props The initial component props\n * @param {object} context The initial context from parent components'\n * getChildContext\n */\nexport function BaseComponent(props, context) {\n\tthis.props = props;\n\tthis.context = context;\n}\n\n/**\n * Update component state and schedule a re-render.\n * @this {import('./internal').Component}\n * @param {object | ((s: object, p: object) => object)} update A hash of state\n * properties to update with new values or a function that given the current\n * state and props returns a new partial state\n * @param {() => void} [callback] A function to be called once component state is\n * updated\n */\nBaseComponent.prototype.setState = function (update, callback) {\n\t// only clone state when copying to nextState the first time.\n\tlet s;\n\tif (this._nextState != NULL && this._nextState !== this.state) {\n\t\ts = this._nextState;\n\t} else {\n\t\ts = this._nextState = assign({}, this.state);\n\t}\n\n\tif (typeof update == 'function') {\n\t\t// Some libraries like `immer` mark the current state as readonly,\n\t\t// preventing us from mutating it, so we need to clone it. See #2716\n\t\tupdate = update(assign({}, s), this.props);\n\t}\n\n\tif (update) {\n\t\tassign(s, update);\n\t}\n\n\t// Skip update if updater function returned null\n\tif (update == NULL) return;\n\n\tif (this._vnode) {\n\t\tif (callback) {\n\t\t\tthis._stateCallbacks.push(callback);\n\t\t}\n\t\tenqueueRender(this);\n\t}\n};\n\n/**\n * Immediately perform a synchronous re-render of the component\n * @this {import('./internal').Component}\n * @param {() => void} [callback] A function to be called after component is\n * re-rendered\n */\nBaseComponent.prototype.forceUpdate = function (callback) {\n\tif (this._vnode) {\n\t\t// Set render mode so that we can differentiate where the render request\n\t\t// is coming from. We need this because forceUpdate should never call\n\t\t// shouldComponentUpdate\n\t\tthis._force = true;\n\t\tif (callback) this._renderCallbacks.push(callback);\n\t\tenqueueRender(this);\n\t}\n};\n\n/**\n * Accepts `props` and `state`, and returns a new Virtual DOM tree to build.\n * Virtual DOM is generally constructed via [JSX](https://jasonformat.com/wtf-is-jsx).\n * @param {object} props Props (eg: JSX attributes) received from parent\n * element/component\n * @param {object} state The component's current state\n * @param {object} context Context object, as returned by the nearest\n * ancestor's `getChildContext()`\n * @returns {ComponentChildren | void}\n */\nBaseComponent.prototype.render = Fragment;\n\n/**\n * @param {import('./internal').VNode} vnode\n * @param {number | null} [childIndex]\n */\nexport function getDomSibling(vnode, childIndex) {\n\tif (childIndex == NULL) {\n\t\t// Use childIndex==null as a signal to resume the search from the vnode's sibling\n\t\treturn vnode._parent\n\t\t\t? getDomSibling(vnode._parent, vnode._index + 1)\n\t\t\t: NULL;\n\t}\n\n\tlet sibling;\n\tfor (; childIndex < vnode._children.length; childIndex++) {\n\t\tsibling = vnode._children[childIndex];\n\n\t\tif (sibling != NULL && sibling._dom != NULL) {\n\t\t\t// Since updateParentDomPointers keeps _dom pointer correct,\n\t\t\t// we can rely on _dom to tell us if this subtree contains a\n\t\t\t// rendered DOM node, and what the first rendered DOM node is\n\t\t\treturn sibling._dom;\n\t\t}\n\t}\n\n\t// If we get here, we have not found a DOM node in this vnode's children.\n\t// We must resume from this vnode's sibling (in it's parent _children array)\n\t// Only climb up and search the parent if we aren't searching through a DOM\n\t// VNode (meaning we reached the DOM parent of the original vnode that began\n\t// the search)\n\treturn typeof vnode.type == 'function' ? getDomSibling(vnode) : NULL;\n}\n\n/**\n * Trigger in-place re-rendering of a component.\n * @param {import('./internal').Component} component The component to rerender\n */\nfunction renderComponent(component) {\n\tlet oldVNode = component._vnode,\n\t\toldDom = oldVNode._dom,\n\t\tcommitQueue = [],\n\t\trefQueue = [];\n\n\tif (component._parentDom) {\n\t\tconst newVNode = assign({}, oldVNode);\n\t\tnewVNode._original = oldVNode._original + 1;\n\t\tif (options.vnode) options.vnode(newVNode);\n\n\t\tdiff(\n\t\t\tcomponent._parentDom,\n\t\t\tnewVNode,\n\t\t\toldVNode,\n\t\t\tcomponent._globalContext,\n\t\t\tcomponent._parentDom.namespaceURI,\n\t\t\toldVNode._flags & MODE_HYDRATE ? [oldDom] : NULL,\n\t\t\tcommitQueue,\n\t\t\toldDom == NULL ? getDomSibling(oldVNode) : oldDom,\n\t\t\t!!(oldVNode._flags & MODE_HYDRATE),\n\t\t\trefQueue\n\t\t);\n\n\t\tnewVNode._original = oldVNode._original;\n\t\tnewVNode._parent._children[newVNode._index] = newVNode;\n\t\tcommitRoot(commitQueue, newVNode, refQueue);\n\n\t\tif (newVNode._dom != oldDom) {\n\t\t\tupdateParentDomPointers(newVNode);\n\t\t}\n\t}\n}\n\n/**\n * @param {import('./internal').VNode} vnode\n */\nfunction updateParentDomPointers(vnode) {\n\tif ((vnode = vnode._parent) != NULL && vnode._component != NULL) {\n\t\tvnode._dom = vnode._component.base = NULL;\n\t\tfor (let i = 0; i < vnode._children.length; i++) {\n\t\t\tlet child = vnode._children[i];\n\t\t\tif (child != NULL && child._dom != NULL) {\n\t\t\t\tvnode._dom = vnode._component.base = child._dom;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn updateParentDomPointers(vnode);\n\t}\n}\n\n/**\n * The render queue\n * @type {Array<import('./internal').Component>}\n */\nlet rerenderQueue = [];\n\n/*\n * The value of `Component.debounce` must asynchronously invoke the passed in callback. It is\n * important that contributors to Preact can consistently reason about what calls to `setState`, etc.\n * do, and when their effects will be applied. See the links below for some further reading on designing\n * asynchronous APIs.\n * * [Designing APIs for Asynchrony](https://blog.izs.me/2013/08/designing-apis-for-asynchrony)\n * * [Callbacks synchronous and asynchronous](https://blog.ometer.com/2011/07/24/callbacks-synchronous-and-asynchronous/)\n */\n\nlet prevDebounce;\n\nconst defer =\n\ttypeof Promise == 'function'\n\t\t? Promise.prototype.then.bind(Promise.resolve())\n\t\t: setTimeout;\n\n/**\n * Enqueue a rerender of a component\n * @param {import('./internal').Component} c The component to rerender\n */\nexport function enqueueRender(c) {\n\tif (\n\t\t(!c._dirty &&\n\t\t\t(c._dirty = true) &&\n\t\t\trerenderQueue.push(c) &&\n\t\t\t!process._rerenderCount++) ||\n\t\tprevDebounce !== options.debounceRendering\n\t) {\n\t\tprevDebounce = options.debounceRendering;\n\t\t(prevDebounce || defer)(process);\n\t}\n}\n\n/**\n * @param {import('./internal').Component} a\n * @param {import('./internal').Component} b\n */\nconst depthSort = (a, b) => a._vnode._depth - b._vnode._depth;\n\n/** Flush the render queue by rerendering all queued components */\nfunction process() {\n\tlet c,\n\t\tl = 1;\n\n\t// Don't update `renderCount` yet. Keep its value non-zero to prevent unnecessary\n\t// process() calls from getting scheduled while `queue` is still being consumed.\n\twhile (rerenderQueue.length) {\n\t\t// Keep the rerender queue sorted by (depth, insertion order). The queue\n\t\t// will initially be sorted on the first iteration only if it has more than 1 item.\n\t\t//\n\t\t// New items can be added to the queue e.g. when rerendering a provider, so we want to\n\t\t// keep the order from top to bottom with those new items so we can handle them in a\n\t\t// single pass\n\t\tif (rerenderQueue.length > l) {\n\t\t\trerenderQueue.sort(depthSort);\n\t\t}\n\n\t\tc = rerenderQueue.shift();\n\t\tl = rerenderQueue.length;\n\n\t\tif (c._dirty) {\n\t\t\trenderComponent(c);\n\t\t}\n\t}\n\tprocess._rerenderCount = 0;\n}\n\nprocess._rerenderCount = 0;\n", "import { IS_NON_DIMENSIONAL, NULL, SVG_NAMESPACE } from '../constants';\nimport options from '../options';\n\nfunction setStyle(style, key, value) {\n\tif (key[0] == '-') {\n\t\tstyle.setProperty(key, value == NULL ? '' : value);\n\t} else if (value == NULL) {\n\t\tstyle[key] = '';\n\t} else if (typeof value != 'number' || IS_NON_DIMENSIONAL.test(key)) {\n\t\tstyle[key] = value;\n\t} else {\n\t\tstyle[key] = value + 'px';\n\t}\n}\n\nconst CAPTURE_REGEX = /(PointerCapture)$|Capture$/i;\n\n// A logical clock to solve issues like https://github.com/preactjs/preact/issues/3927.\n// When the DOM performs an event it leaves micro-ticks in between bubbling up which means that\n// an event can trigger on a newly reated DOM-node while the event bubbles up.\n//\n// Originally inspired by Vue\n// (https://github.com/vuejs/core/blob/caeb8a68811a1b0f79/packages/runtime-dom/src/modules/events.ts#L90-L101),\n// but modified to use a logical clock instead of Date.now() in case event handlers get attached\n// and events get dispatched during the same millisecond.\n//\n// The clock is incremented after each new event dispatch. This allows 1 000 000 new events\n// per second for over 280 years before the value reaches Number.MAX_SAFE_INTEGER (2**53 - 1).\nlet eventClock = 0;\n\n/**\n * Set a property value on a DOM node\n * @param {import('../internal').PreactElement} dom The DOM node to modify\n * @param {string} name The name of the property to set\n * @param {*} value The value to set the property to\n * @param {*} oldValue The old value the property had\n * @param {string} namespace Whether or not this DOM node is an SVG node or not\n */\nexport function setProperty(dom, name, value, oldValue, namespace) {\n\tlet useCapture;\n\n\to: if (name == 'style') {\n\t\tif (typeof value == 'string') {\n\t\t\tdom.style.cssText = value;\n\t\t} else {\n\t\t\tif (typeof oldValue == 'string') {\n\t\t\t\tdom.style.cssText = oldValue = '';\n\t\t\t}\n\n\t\t\tif (oldValue) {\n\t\t\t\tfor (name in oldValue) {\n\t\t\t\t\tif (!(value && name in value)) {\n\t\t\t\t\t\tsetStyle(dom.style, name, '');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (value) {\n\t\t\t\tfor (name in value) {\n\t\t\t\t\tif (!oldValue || value[name] !== oldValue[name]) {\n\t\t\t\t\t\tsetStyle(dom.style, name, value[name]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t// Benchmark for comparison: https://esbench.com/bench/574c954bdb965b9a00965ac6\n\telse if (name[0] == 'o' && name[1] == 'n') {\n\t\tuseCapture = name != (name = name.replace(CAPTURE_REGEX, '$1'));\n\n\t\t// Infer correct casing for DOM built-in events:\n\t\tif (\n\t\t\tname.toLowerCase() in dom ||\n\t\t\tname == 'onFocusOut' ||\n\t\t\tname == 'onFocusIn'\n\t\t)\n\t\t\tname = name.toLowerCase().slice(2);\n\t\telse name = name.slice(2);\n\n\t\tif (!dom._listeners) dom._listeners = {};\n\t\tdom._listeners[name + useCapture] = value;\n\n\t\tif (value) {\n\t\t\tif (!oldValue) {\n\t\t\t\tvalue._attached = eventClock;\n\t\t\t\tdom.addEventListener(\n\t\t\t\t\tname,\n\t\t\t\t\tuseCapture ? eventProxyCapture : eventProxy,\n\t\t\t\t\tuseCapture\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tvalue._attached = oldValue._attached;\n\t\t\t}\n\t\t} else {\n\t\t\tdom.removeEventListener(\n\t\t\t\tname,\n\t\t\t\tuseCapture ? eventProxyCapture : eventProxy,\n\t\t\t\tuseCapture\n\t\t\t);\n\t\t}\n\t} else {\n\t\tif (namespace == SVG_NAMESPACE) {\n\t\t\t// Normalize incorrect prop usage for SVG:\n\t\t\t// - xlink:href / xlinkHref --> href (xlink:href was removed from SVG and isn't needed)\n\t\t\t// - className --> class\n\t\t\tname = name.replace(/xlink(H|:h)/, 'h').replace(/sName$/, 's');\n\t\t} else if (\n\t\t\tname != 'width' &&\n\t\t\tname != 'height' &&\n\t\t\tname != 'href' &&\n\t\t\tname != 'list' &&\n\t\t\tname != 'form' &&\n\t\t\t// Default value in browsers is `-1` and an empty string is\n\t\t\t// cast to `0` instead\n\t\t\tname != 'tabIndex' &&\n\t\t\tname != 'download' &&\n\t\t\tname != 'rowSpan' &&\n\t\t\tname != 'colSpan' &&\n\t\t\tname != 'role' &&\n\t\t\tname != 'popover' &&\n\t\t\tname in dom\n\t\t) {\n\t\t\ttry {\n\t\t\t\tdom[name] = value == NULL ? '' : value;\n\t\t\t\t// labelled break is 1b smaller here than a return statement (sorry)\n\t\t\t\tbreak o;\n\t\t\t} catch (e) {}\n\t\t}\n\n\t\t// aria- and data- attributes have no boolean representation.\n\t\t// A `false` value is different from the attribute not being\n\t\t// present, so we can't remove it. For non-boolean aria\n\t\t// attributes we could treat false as a removal, but the\n\t\t// amount of exceptions would cost too many bytes. On top of\n\t\t// that other frameworks generally stringify `false`.\n\n\t\tif (typeof value == 'function') {\n\t\t\t// never serialize functions as attribute values\n\t\t} else if (value != NULL && (value !== false || name[4] == '-')) {\n\t\t\tdom.setAttribute(name, name == 'popover' && value == true ? '' : value);\n\t\t} else {\n\t\t\tdom.removeAttribute(name);\n\t\t}\n\t}\n}\n\n/**\n * Create an event proxy function.\n * @param {boolean} useCapture Is the event handler for the capture phase.\n * @private\n */\nfunction createEventProxy(useCapture) {\n\t/**\n\t * Proxy an event to hooked event handlers\n\t * @param {import('../internal').PreactEvent} e The event object from the browser\n\t * @private\n\t */\n\treturn function (e) {\n\t\tif (this._listeners) {\n\t\t\tconst eventHandler = this._listeners[e.type + useCapture];\n\t\t\tif (e._dispatched == NULL) {\n\t\t\t\te._dispatched = eventClock++;\n\n\t\t\t\t// When `e._dispatched` is smaller than the time when the targeted event\n\t\t\t\t// handler was attached we know we have bubbled up to an element that was added\n\t\t\t\t// during patching the DOM.\n\t\t\t} else if (e._dispatched < eventHandler._attached) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\treturn eventHandler(options.event ? options.event(e) : e);\n\t\t}\n\t};\n}\n\nconst eventProxy = createEventProxy(false);\nconst eventProxyCapture = createEventProxy(true);\n", "import { enqueueRender } from './component';\nimport { NULL } from './constants';\n\nexport let i = 0;\n\nexport function createContext(defaultValue) {\n\tfunction Context(props) {\n\t\tif (!this.getChildContext) {\n\t\t\t/** @type {Set<import('./internal').Component> | null} */\n\t\t\tlet subs = new Set();\n\t\t\tlet ctx = {};\n\t\t\tctx[Context._id] = this;\n\n\t\t\tthis.getChildContext = () => ctx;\n\n\t\t\tthis.componentWillUnmount = () => {\n\t\t\t\tsubs = NULL;\n\t\t\t};\n\n\t\t\tthis.shouldComponentUpdate = function (_props) {\n\t\t\t\t// @ts-expect-error even\n\t\t\t\tif (this.props.value !== _props.value) {\n\t\t\t\t\tsubs.forEach(c => {\n\t\t\t\t\t\tc._force = true;\n\t\t\t\t\t\tenqueueRender(c);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tthis.sub = c => {\n\t\t\t\tsubs.add(c);\n\t\t\t\tlet old = c.componentWillUnmount;\n\t\t\t\tc.componentWillUnmount = () => {\n\t\t\t\t\tif (subs) {\n\t\t\t\t\t\tsubs.delete(c);\n\t\t\t\t\t}\n\t\t\t\t\tif (old) old.call(c);\n\t\t\t\t};\n\t\t\t};\n\t\t}\n\n\t\treturn props.children;\n\t}\n\n\tContext._id = '__cC' + i++;\n\tContext._defaultValue = defaultValue;\n\n\t/** @type {import('./internal').FunctionComponent} */\n\tContext.Consumer = (props, contextValue) => {\n\t\treturn props.children(contextValue);\n\t};\n\n\t// we could also get rid of _contextRef entirely\n\tContext.Provider =\n\t\tContext._contextRef =\n\t\tContext.Consumer.contextType =\n\t\t\tContext;\n\n\treturn Context;\n}\n", "import { diff, unmount, applyRef } from './index';\nimport { createVNode, Fragment } from '../create-element';\nimport {\n\tEMPTY_OBJ,\n\tEMPTY_ARR,\n\tINSERT_VNODE,\n\tMATCHED,\n\tUNDEFINED,\n\tNULL\n} from '../constants';\nimport { isArray } from '../util';\nimport { getDomSibling } from '../component';\n\n/**\n * @typedef {import('../internal').ComponentChildren} ComponentChildren\n * @typedef {import('../internal').Component} Component\n * @typedef {import('../internal').PreactElement} PreactElement\n * @typedef {import('../internal').VNode} VNode\n */\n\n/**\n * Diff the children of a virtual node\n * @param {PreactElement} parentDom The DOM element whose children are being\n * diffed\n * @param {ComponentChildren[]} renderResult\n * @param {VNode} newParentVNode The new virtual node whose children should be\n * diff'ed against oldParentVNode\n * @param {VNode} oldParentVNode The old virtual node whose children should be\n * diff'ed against newParentVNode\n * @param {object} globalContext The current context object - modified by\n * getChildContext\n * @param {string} namespace Current namespace of the DOM node (HTML, SVG, or MathML)\n * @param {Array<PreactElement>} excessDomChildren\n * @param {Array<Component>} commitQueue List of components which have callbacks\n * to invoke in commitRoot\n * @param {PreactElement} oldDom The current attached DOM element any new dom\n * elements should be placed around. Likely `null` on first render (except when\n * hydrating). Can be a sibling DOM element when diffing Fragments that have\n * siblings. In most cases, it starts out as `oldChildren[0]._dom`.\n * @param {boolean} isHydrating Whether or not we are in hydration\n * @param {any[]} refQueue an array of elements needed to invoke refs\n */\nexport function diffChildren(\n\tparentDom,\n\trenderResult,\n\tnewParentVNode,\n\toldParentVNode,\n\tglobalContext,\n\tnamespace,\n\texcessDomChildren,\n\tcommitQueue,\n\toldDom,\n\tisHydrating,\n\trefQueue\n) {\n\tlet i,\n\t\t/** @type {VNode} */\n\t\toldVNode,\n\t\t/** @type {VNode} */\n\t\tchildVNode,\n\t\t/** @type {PreactElement} */\n\t\tnewDom,\n\t\t/** @type {PreactElement} */\n\t\tfirstChildDom;\n\n\t// This is a compression of oldParentVNode!=null && oldParentVNode != EMPTY_OBJ && oldParentVNode._children || EMPTY_ARR\n\t// as EMPTY_OBJ._children should be `undefined`.\n\t/** @type {VNode[]} */\n\tlet oldChildren = (oldParentVNode && oldParentVNode._children) || EMPTY_ARR;\n\n\tlet newChildrenLength = renderResult.length;\n\n\toldDom = constructNewChildrenArray(\n\t\tnewParentVNode,\n\t\trenderResult,\n\t\toldChildren,\n\t\toldDom,\n\t\tnewChildrenLength\n\t);\n\n\tfor (i = 0; i < newChildrenLength; i++) {\n\t\tchildVNode = newParentVNode._children[i];\n\t\tif (childVNode == NULL) continue;\n\n\t\t// At this point, constructNewChildrenArray has assigned _index to be the\n\t\t// matchingIndex for this VNode's oldVNode (or -1 if there is no oldVNode).\n\t\tif (childVNode._index === -1) {\n\t\t\toldVNode = EMPTY_OBJ;\n\t\t} else {\n\t\t\toldVNode = oldChildren[childVNode._index] || EMPTY_OBJ;\n\t\t}\n\n\t\t// Update childVNode._index to its final index\n\t\tchildVNode._index = i;\n\n\t\t// Morph the old element into the new one, but don't append it to the dom yet\n\t\tlet result = diff(\n\t\t\tparentDom,\n\t\t\tchildVNode,\n\t\t\toldVNode,\n\t\t\tglobalContext,\n\t\t\tnamespace,\n\t\t\texcessDomChildren,\n\t\t\tcommitQueue,\n\t\t\toldDom,\n\t\t\tisHydrating,\n\t\t\trefQueue\n\t\t);\n\n\t\t// Adjust DOM nodes\n\t\tnewDom = childVNode._dom;\n\t\tif (childVNode.ref && oldVNode.ref != childVNode.ref) {\n\t\t\tif (oldVNode.ref) {\n\t\t\t\tapplyRef(oldVNode.ref, NULL, childVNode);\n\t\t\t}\n\t\t\trefQueue.push(\n\t\t\t\tchildVNode.ref,\n\t\t\t\tchildVNode._component || newDom,\n\t\t\t\tchildVNode\n\t\t\t);\n\t\t}\n\n\t\tif (firstChildDom == NULL && newDom != NULL) {\n\t\t\tfirstChildDom = newDom;\n\t\t}\n\n\t\tif (\n\t\t\tchildVNode._flags & INSERT_VNODE ||\n\t\t\toldVNode._children === childVNode._children\n\t\t) {\n\t\t\toldDom = insert(childVNode, oldDom, parentDom);\n\t\t} else if (typeof childVNode.type == 'function' && result !== UNDEFINED) {\n\t\t\toldDom = result;\n\t\t} else if (newDom) {\n\t\t\toldDom = newDom.nextSibling;\n\t\t}\n\n\t\t// Unset diffing flags\n\t\tchildVNode._flags &= ~(INSERT_VNODE | MATCHED);\n\t}\n\n\tnewParentVNode._dom = firstChildDom;\n\n\treturn oldDom;\n}\n\n/**\n * @param {VNode} newParentVNode\n * @param {ComponentChildren[]} renderResult\n * @param {VNode[]} oldChildren\n */\nfunction constructNewChildrenArray(\n\tnewParentVNode,\n\trenderResult,\n\toldChildren,\n\toldDom,\n\tnewChildrenLength\n) {\n\t/** @type {number} */\n\tlet i;\n\t/** @type {VNode} */\n\tlet childVNode;\n\t/** @type {VNode} */\n\tlet oldVNode;\n\n\tlet oldChildrenLength = oldChildren.length,\n\t\tremainingOldChildren = oldChildrenLength;\n\n\tlet skew = 0;\n\n\tnewParentVNode._children = new Array(newChildrenLength);\n\tfor (i = 0; i < newChildrenLength; i++) {\n\t\t// @ts-expect-error We are reusing the childVNode variable to hold both the\n\t\t// pre and post normalized childVNode\n\t\tchildVNode = renderResult[i];\n\n\t\tif (\n\t\t\tchildVNode == NULL ||\n\t\t\ttypeof childVNode == 'boolean' ||\n\t\t\ttypeof childVNode == 'function'\n\t\t) {\n\t\t\tnewParentVNode._children[i] = NULL;\n\t\t\tcontinue;\n\t\t}\n\t\t// If this newVNode is being reused (e.g. <div>{reuse}{reuse}</div>) in the same diff,\n\t\t// or we are rendering a component (e.g. setState) copy the oldVNodes so it can have\n\t\t// it's own DOM & etc. pointers\n\t\telse if (\n\t\t\ttypeof childVNode == 'string' ||\n\t\t\ttypeof childVNode == 'number' ||\n\t\t\t// eslint-disable-next-line valid-typeof\n\t\t\ttypeof childVNode == 'bigint' ||\n\t\t\tchildVNode.constructor == String\n\t\t) {\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tNULL,\n\t\t\t\tchildVNode,\n\t\t\t\tNULL,\n\t\t\t\tNULL,\n\t\t\t\tNULL\n\t\t\t);\n\t\t} else if (isArray(childVNode)) {\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tFragment,\n\t\t\t\t{ children: childVNode },\n\t\t\t\tNULL,\n\t\t\t\tNULL,\n\t\t\t\tNULL\n\t\t\t);\n\t\t} else if (childVNode.constructor === UNDEFINED && childVNode._depth > 0) {\n\t\t\t// VNode is already in use, clone it. This can happen in the following\n\t\t\t// scenario:\n\t\t\t//   const reuse = <div />\n\t\t\t//   <div>{reuse}<span />{reuse}</div>\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tchildVNode.type,\n\t\t\t\tchildVNode.props,\n\t\t\t\tchildVNode.key,\n\t\t\t\tchildVNode.ref ? childVNode.ref : NULL,\n\t\t\t\tchildVNode._original\n\t\t\t);\n\t\t} else {\n\t\t\tchildVNode = newParentVNode._children[i] = childVNode;\n\t\t}\n\n\t\tconst skewedIndex = i + skew;\n\t\tchildVNode._parent = newParentVNode;\n\t\tchildVNode._depth = newParentVNode._depth + 1;\n\n\t\t// Temporarily store the matchingIndex on the _index property so we can pull\n\t\t// out the oldVNode in diffChildren. We'll override this to the VNode's\n\t\t// final index after using this property to get the oldVNode\n\t\tconst matchingIndex = (childVNode._index = findMatchingIndex(\n\t\t\tchildVNode,\n\t\t\toldChildren,\n\t\t\tskewedIndex,\n\t\t\tremainingOldChildren\n\t\t));\n\n\t\toldVNode = NULL;\n\t\tif (matchingIndex !== -1) {\n\t\t\toldVNode = oldChildren[matchingIndex];\n\t\t\tremainingOldChildren--;\n\t\t\tif (oldVNode) {\n\t\t\t\toldVNode._flags |= MATCHED;\n\t\t\t}\n\t\t}\n\n\t\t// Here, we define isMounting for the purposes of the skew diffing\n\t\t// algorithm. Nodes that are unsuspending are considered mounting and we detect\n\t\t// this by checking if oldVNode._original === null\n\t\tconst isMounting = oldVNode == NULL || oldVNode._original === NULL;\n\n\t\tif (isMounting) {\n\t\t\tif (matchingIndex == -1) {\n\t\t\t\tskew--;\n\t\t\t}\n\n\t\t\t// If we are mounting a DOM VNode, mark it for insertion\n\t\t\tif (typeof childVNode.type != 'function') {\n\t\t\t\tchildVNode._flags |= INSERT_VNODE;\n\t\t\t}\n\t\t} else if (matchingIndex != skewedIndex) {\n\t\t\t// When we move elements around i.e. [0, 1, 2] --> [1, 0, 2]\n\t\t\t// --> we diff 1, we find it at position 1 while our skewed index is 0 and our skew is 0\n\t\t\t//     we set the skew to 1 as we found an offset.\n\t\t\t// --> we diff 0, we find it at position 0 while our skewed index is at 2 and our skew is 1\n\t\t\t//     this makes us increase the skew again.\n\t\t\t// --> we diff 2, we find it at position 2 while our skewed index is at 4 and our skew is 2\n\t\t\t//\n\t\t\t// this becomes an optimization question where currently we see a 1 element offset as an insertion\n\t\t\t// or deletion i.e. we optimize for [0, 1, 2] --> [9, 0, 1, 2]\n\t\t\t// while a more than 1 offset we see as a swap.\n\t\t\t// We could probably build heuristics for having an optimized course of action here as well, but\n\t\t\t// might go at the cost of some bytes.\n\t\t\t//\n\t\t\t// If we wanted to optimize for i.e. only swaps we'd just do the last two code-branches and have\n\t\t\t// only the first item be a re-scouting and all the others fall in their skewed counter-part.\n\t\t\t// We could also further optimize for swaps\n\t\t\tif (matchingIndex == skewedIndex - 1) {\n\t\t\t\tskew--;\n\t\t\t} else if (matchingIndex == skewedIndex + 1) {\n\t\t\t\tskew++;\n\t\t\t} else {\n\t\t\t\tif (matchingIndex > skewedIndex) {\n\t\t\t\t\tskew--;\n\t\t\t\t} else {\n\t\t\t\t\tskew++;\n\t\t\t\t}\n\n\t\t\t\t// Move this VNode's DOM if the original index (matchingIndex) doesn't\n\t\t\t\t// match the new skew index (i + new skew)\n\t\t\t\t// In the former two branches we know that it matches after skewing\n\t\t\t\tchildVNode._flags |= INSERT_VNODE;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove remaining oldChildren if there are any. Loop forwards so that as we\n\t// unmount DOM from the beginning of the oldChildren, we can adjust oldDom to\n\t// point to the next child, which needs to be the first DOM node that won't be\n\t// unmounted.\n\tif (remainingOldChildren) {\n\t\tfor (i = 0; i < oldChildrenLength; i++) {\n\t\t\toldVNode = oldChildren[i];\n\t\t\tif (oldVNode != NULL && (oldVNode._flags & MATCHED) == 0) {\n\t\t\t\tif (oldVNode._dom == oldDom) {\n\t\t\t\t\toldDom = getDomSibling(oldVNode);\n\t\t\t\t}\n\n\t\t\t\tunmount(oldVNode, oldVNode);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn oldDom;\n}\n\n/**\n * @param {VNode} parentVNode\n * @param {PreactElement} oldDom\n * @param {PreactElement} parentDom\n * @returns {PreactElement}\n */\nfunction insert(parentVNode, oldDom, parentDom) {\n\t// Note: VNodes in nested suspended trees may be missing _children.\n\n\tif (typeof parentVNode.type == 'function') {\n\t\tlet children = parentVNode._children;\n\t\tfor (let i = 0; children && i < children.length; i++) {\n\t\t\tif (children[i]) {\n\t\t\t\t// If we enter this code path on sCU bailout, where we copy\n\t\t\t\t// oldVNode._children to newVNode._children, we need to update the old\n\t\t\t\t// children's _parent pointer to point to the newVNode (parentVNode\n\t\t\t\t// here).\n\t\t\t\tchildren[i]._parent = parentVNode;\n\t\t\t\toldDom = insert(children[i], oldDom, parentDom);\n\t\t\t}\n\t\t}\n\n\t\treturn oldDom;\n\t} else if (parentVNode._dom != oldDom) {\n\t\tif (oldDom && parentVNode.type && !parentDom.contains(oldDom)) {\n\t\t\toldDom = getDomSibling(parentVNode);\n\t\t}\n\t\tparentDom.insertBefore(parentVNode._dom, oldDom || NULL);\n\t\toldDom = parentVNode._dom;\n\t}\n\n\tdo {\n\t\toldDom = oldDom && oldDom.nextSibling;\n\t} while (oldDom != NULL && oldDom.nodeType == 8);\n\n\treturn oldDom;\n}\n\n/**\n * Flatten and loop through the children of a virtual node\n * @param {ComponentChildren} children The unflattened children of a virtual\n * node\n * @returns {VNode[]}\n */\nexport function toChildArray(children, out) {\n\tout = out || [];\n\tif (children == NULL || typeof children == 'boolean') {\n\t} else if (isArray(children)) {\n\t\tchildren.some(child => {\n\t\t\ttoChildArray(child, out);\n\t\t});\n\t} else {\n\t\tout.push(children);\n\t}\n\treturn out;\n}\n\n/**\n * @param {VNode} childVNode\n * @param {VNode[]} oldChildren\n * @param {number} skewedIndex\n * @param {number} remainingOldChildren\n * @returns {number}\n */\nfunction findMatchingIndex(\n\tchildVNode,\n\toldChildren,\n\tskewedIndex,\n\tremainingOldChildren\n) {\n\tconst key = childVNode.key;\n\tconst type = childVNode.type;\n\tlet oldVNode = oldChildren[skewedIndex];\n\n\t// We only need to perform a search if there are more children\n\t// (remainingOldChildren) to search. However, if the oldVNode we just looked\n\t// at skewedIndex was not already used in this diff, then there must be at\n\t// least 1 other (so greater than 1) remainingOldChildren to attempt to match\n\t// against. So the following condition checks that ensuring\n\t// remainingOldChildren > 1 if the oldVNode is not already used/matched. Else\n\t// if the oldVNode was null or matched, then there could needs to be at least\n\t// 1 (aka `remainingOldChildren > 0`) children to find and compare against.\n\t//\n\t// If there is an unkeyed functional VNode, that isn't a built-in like our Fragment,\n\t// we should not search as we risk re-using state of an unrelated VNode. (reverted for now)\n\tlet shouldSearch =\n\t\t// (typeof type != 'function' || type === Fragment || key) &&\n\t\tremainingOldChildren >\n\t\t(oldVNode != NULL && (oldVNode._flags & MATCHED) == 0 ? 1 : 0);\n\n\tif (\n\t\toldVNode === NULL ||\n\t\t(oldVNode &&\n\t\t\tkey == oldVNode.key &&\n\t\t\ttype === oldVNode.type &&\n\t\t\t(oldVNode._flags & MATCHED) == 0)\n\t) {\n\t\treturn skewedIndex;\n\t} else if (shouldSearch) {\n\t\tlet x = skewedIndex - 1;\n\t\tlet y = skewedIndex + 1;\n\t\twhile (x >= 0 || y < oldChildren.length) {\n\t\t\tif (x >= 0) {\n\t\t\t\toldVNode = oldChildren[x];\n\t\t\t\tif (\n\t\t\t\t\toldVNode &&\n\t\t\t\t\t(oldVNode._flags & MATCHED) == 0 &&\n\t\t\t\t\tkey == oldVNode.key &&\n\t\t\t\t\ttype === oldVNode.type\n\t\t\t\t) {\n\t\t\t\t\treturn x;\n\t\t\t\t}\n\t\t\t\tx--;\n\t\t\t}\n\n\t\t\tif (y < oldChildren.length) {\n\t\t\t\toldVNode = oldChildren[y];\n\t\t\t\tif (\n\t\t\t\t\toldVNode &&\n\t\t\t\t\t(oldVNode._flags & MATCHED) == 0 &&\n\t\t\t\t\tkey == oldVNode.key &&\n\t\t\t\t\ttype === oldVNode.type\n\t\t\t\t) {\n\t\t\t\t\treturn y;\n\t\t\t\t}\n\t\t\t\ty++;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn -1;\n}\n", "import {\n\tEMPTY_OBJ,\n\tMATH_NAMESPACE,\n\tMODE_HYDRATE,\n\tMODE_SUSPENDED,\n\tNULL,\n\tRESET_MODE,\n\tSVG_NAMESPACE,\n\tUNDEFINED,\n\tXHTML_NAMESPACE\n} from '../constants';\nimport { BaseComponent, getDomSibling } from '../component';\nimport { Fragment } from '../create-element';\nimport { diffChildren } from './children';\nimport { setProperty } from './props';\nimport { assign, isArray, removeNode, slice } from '../util';\nimport options from '../options';\n\n/**\n * @typedef {import('../internal').ComponentChildren} ComponentChildren\n * @typedef {import('../internal').Component} Component\n * @typedef {import('../internal').PreactElement} PreactElement\n * @typedef {import('../internal').VNode} VNode\n */\n\n/**\n * @template {any} T\n * @typedef {import('../internal').Ref<T>} Ref<T>\n */\n\n/**\n * Diff two virtual nodes and apply proper changes to the DOM\n * @param {PreactElement} parentDom The parent of the DOM element\n * @param {VNode} newVNode The new virtual node\n * @param {VNode} oldVNode The old virtual node\n * @param {object} globalContext The current context object. Modified by\n * getChildContext\n * @param {string} namespace Current namespace of the DOM node (HTML, SVG, or MathML)\n * @param {Array<PreactElement>} excessDomChildren\n * @param {Array<Component>} commitQueue List of components which have callbacks\n * to invoke in commitRoot\n * @param {PreactElement} oldDom The current attached DOM element any new dom\n * elements should be placed around. Likely `null` on first render (except when\n * hydrating). Can be a sibling DOM element when diffing Fragments that have\n * siblings. In most cases, it starts out as `oldChildren[0]._dom`.\n * @param {boolean} isHydrating Whether or not we are in hydration\n * @param {any[]} refQueue an array of elements needed to invoke refs\n */\nexport function diff(\n\tparentDom,\n\tnewVNode,\n\toldVNode,\n\tglobalContext,\n\tnamespace,\n\texcessDomChildren,\n\tcommitQueue,\n\toldDom,\n\tisHydrating,\n\trefQueue\n) {\n\t/** @type {any} */\n\tlet tmp,\n\t\tnewType = newVNode.type;\n\n\t// When passing through createElement it assigns the object\n\t// constructor as undefined. This to prevent JSON-injection.\n\tif (newVNode.constructor !== UNDEFINED) return NULL;\n\n\t// If the previous diff bailed out, resume creating/hydrating.\n\tif (oldVNode._flags & MODE_SUSPENDED) {\n\t\tisHydrating = !!(oldVNode._flags & MODE_HYDRATE);\n\t\toldDom = newVNode._dom = oldVNode._dom;\n\t\texcessDomChildren = [oldDom];\n\t}\n\n\tif ((tmp = options._diff)) tmp(newVNode);\n\n\touter: if (typeof newType == 'function') {\n\t\ttry {\n\t\t\tlet c, isNew, oldProps, oldState, snapshot, clearProcessingException;\n\t\t\tlet newProps = newVNode.props;\n\t\t\tconst isClassComponent =\n\t\t\t\t'prototype' in newType && newType.prototype.render;\n\n\t\t\t// Necessary for createContext api. Setting this property will pass\n\t\t\t// the context value as `this.context` just for this component.\n\t\t\ttmp = newType.contextType;\n\t\t\tlet provider = tmp && globalContext[tmp._id];\n\t\t\tlet componentContext = tmp\n\t\t\t\t? provider\n\t\t\t\t\t? provider.props.value\n\t\t\t\t\t: tmp._defaultValue\n\t\t\t\t: globalContext;\n\n\t\t\t// Get component and set it to `c`\n\t\t\tif (oldVNode._component) {\n\t\t\t\tc = newVNode._component = oldVNode._component;\n\t\t\t\tclearProcessingException = c._processingException = c._pendingError;\n\t\t\t} else {\n\t\t\t\t// Instantiate the new component\n\t\t\t\tif (isClassComponent) {\n\t\t\t\t\t// @ts-expect-error The check above verifies that newType is suppose to be constructed\n\t\t\t\t\tnewVNode._component = c = new newType(newProps, componentContext); // eslint-disable-line new-cap\n\t\t\t\t} else {\n\t\t\t\t\t// @ts-expect-error Trust me, Component implements the interface we want\n\t\t\t\t\tnewVNode._component = c = new BaseComponent(\n\t\t\t\t\t\tnewProps,\n\t\t\t\t\t\tcomponentContext\n\t\t\t\t\t);\n\t\t\t\t\tc.constructor = newType;\n\t\t\t\t\tc.render = doRender;\n\t\t\t\t}\n\t\t\t\tif (provider) provider.sub(c);\n\n\t\t\t\tc.props = newProps;\n\t\t\t\tif (!c.state) c.state = {};\n\t\t\t\tc.context = componentContext;\n\t\t\t\tc._globalContext = globalContext;\n\t\t\t\tisNew = c._dirty = true;\n\t\t\t\tc._renderCallbacks = [];\n\t\t\t\tc._stateCallbacks = [];\n\t\t\t}\n\n\t\t\t// Invoke getDerivedStateFromProps\n\t\t\tif (isClassComponent && c._nextState == NULL) {\n\t\t\t\tc._nextState = c.state;\n\t\t\t}\n\n\t\t\tif (isClassComponent && newType.getDerivedStateFromProps != NULL) {\n\t\t\t\tif (c._nextState == c.state) {\n\t\t\t\t\tc._nextState = assign({}, c._nextState);\n\t\t\t\t}\n\n\t\t\t\tassign(\n\t\t\t\t\tc._nextState,\n\t\t\t\t\tnewType.getDerivedStateFromProps(newProps, c._nextState)\n\t\t\t\t);\n\t\t\t}\n\n\t\t\toldProps = c.props;\n\t\t\toldState = c.state;\n\t\t\tc._vnode = newVNode;\n\n\t\t\t// Invoke pre-render lifecycle methods\n\t\t\tif (isNew) {\n\t\t\t\tif (\n\t\t\t\t\tisClassComponent &&\n\t\t\t\t\tnewType.getDerivedStateFromProps == NULL &&\n\t\t\t\t\tc.componentWillMount != NULL\n\t\t\t\t) {\n\t\t\t\t\tc.componentWillMount();\n\t\t\t\t}\n\n\t\t\t\tif (isClassComponent && c.componentDidMount != NULL) {\n\t\t\t\t\tc._renderCallbacks.push(c.componentDidMount);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (\n\t\t\t\t\tisClassComponent &&\n\t\t\t\t\tnewType.getDerivedStateFromProps == NULL &&\n\t\t\t\t\tnewProps !== oldProps &&\n\t\t\t\t\tc.componentWillReceiveProps != NULL\n\t\t\t\t) {\n\t\t\t\t\tc.componentWillReceiveProps(newProps, componentContext);\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t!c._force &&\n\t\t\t\t\t((c.shouldComponentUpdate != NULL &&\n\t\t\t\t\t\tc.shouldComponentUpdate(\n\t\t\t\t\t\t\tnewProps,\n\t\t\t\t\t\t\tc._nextState,\n\t\t\t\t\t\t\tcomponentContext\n\t\t\t\t\t\t) === false) ||\n\t\t\t\t\t\tnewVNode._original == oldVNode._original)\n\t\t\t\t) {\n\t\t\t\t\t// More info about this here: https://gist.github.com/JoviDeCroock/bec5f2ce93544d2e6070ef8e0036e4e8\n\t\t\t\t\tif (newVNode._original != oldVNode._original) {\n\t\t\t\t\t\t// When we are dealing with a bail because of sCU we have to update\n\t\t\t\t\t\t// the props, state and dirty-state.\n\t\t\t\t\t\t// when we are dealing with strict-equality we don't as the child could still\n\t\t\t\t\t\t// be dirtied see #3883\n\t\t\t\t\t\tc.props = newProps;\n\t\t\t\t\t\tc.state = c._nextState;\n\t\t\t\t\t\tc._dirty = false;\n\t\t\t\t\t}\n\n\t\t\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t\t\t\tnewVNode._children = oldVNode._children;\n\t\t\t\t\tnewVNode._children.some(vnode => {\n\t\t\t\t\t\tif (vnode) vnode._parent = newVNode;\n\t\t\t\t\t});\n\n\t\t\t\t\tfor (let i = 0; i < c._stateCallbacks.length; i++) {\n\t\t\t\t\t\tc._renderCallbacks.push(c._stateCallbacks[i]);\n\t\t\t\t\t}\n\t\t\t\t\tc._stateCallbacks = [];\n\n\t\t\t\t\tif (c._renderCallbacks.length) {\n\t\t\t\t\t\tcommitQueue.push(c);\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak outer;\n\t\t\t\t}\n\n\t\t\t\tif (c.componentWillUpdate != NULL) {\n\t\t\t\t\tc.componentWillUpdate(newProps, c._nextState, componentContext);\n\t\t\t\t}\n\n\t\t\t\tif (isClassComponent && c.componentDidUpdate != NULL) {\n\t\t\t\t\tc._renderCallbacks.push(() => {\n\t\t\t\t\t\tc.componentDidUpdate(oldProps, oldState, snapshot);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tc.context = componentContext;\n\t\t\tc.props = newProps;\n\t\t\tc._parentDom = parentDom;\n\t\t\tc._force = false;\n\n\t\t\tlet renderHook = options._render,\n\t\t\t\tcount = 0;\n\t\t\tif (isClassComponent) {\n\t\t\t\tc.state = c._nextState;\n\t\t\t\tc._dirty = false;\n\n\t\t\t\tif (renderHook) renderHook(newVNode);\n\n\t\t\t\ttmp = c.render(c.props, c.state, c.context);\n\n\t\t\t\tfor (let i = 0; i < c._stateCallbacks.length; i++) {\n\t\t\t\t\tc._renderCallbacks.push(c._stateCallbacks[i]);\n\t\t\t\t}\n\t\t\t\tc._stateCallbacks = [];\n\t\t\t} else {\n\t\t\t\tdo {\n\t\t\t\t\tc._dirty = false;\n\t\t\t\t\tif (renderHook) renderHook(newVNode);\n\n\t\t\t\t\ttmp = c.render(c.props, c.state, c.context);\n\n\t\t\t\t\t// Handle setState called in render, see #2553\n\t\t\t\t\tc.state = c._nextState;\n\t\t\t\t} while (c._dirty && ++count < 25);\n\t\t\t}\n\n\t\t\t// Handle setState called in render, see #2553\n\t\t\tc.state = c._nextState;\n\n\t\t\tif (c.getChildContext != NULL) {\n\t\t\t\tglobalContext = assign(assign({}, globalContext), c.getChildContext());\n\t\t\t}\n\n\t\t\tif (isClassComponent && !isNew && c.getSnapshotBeforeUpdate != NULL) {\n\t\t\t\tsnapshot = c.getSnapshotBeforeUpdate(oldProps, oldState);\n\t\t\t}\n\n\t\t\tlet isTopLevelFragment =\n\t\t\t\ttmp != NULL && tmp.type === Fragment && tmp.key == NULL;\n\t\t\tlet renderResult = isTopLevelFragment ? tmp.props.children : tmp;\n\n\t\t\tif (isTopLevelFragment) {\n\t\t\t\ttmp.props.children = NULL;\n\t\t\t}\n\n\t\t\toldDom = diffChildren(\n\t\t\t\tparentDom,\n\t\t\t\tisArray(renderResult) ? renderResult : [renderResult],\n\t\t\t\tnewVNode,\n\t\t\t\toldVNode,\n\t\t\t\tglobalContext,\n\t\t\t\tnamespace,\n\t\t\t\texcessDomChildren,\n\t\t\t\tcommitQueue,\n\t\t\t\toldDom,\n\t\t\t\tisHydrating,\n\t\t\t\trefQueue\n\t\t\t);\n\n\t\t\tc.base = newVNode._dom;\n\n\t\t\t// We successfully rendered this VNode, unset any stored hydration/bailout state:\n\t\t\tnewVNode._flags &= RESET_MODE;\n\n\t\t\tif (c._renderCallbacks.length) {\n\t\t\t\tcommitQueue.push(c);\n\t\t\t}\n\n\t\t\tif (clearProcessingException) {\n\t\t\t\tc._pendingError = c._processingException = NULL;\n\t\t\t}\n\t\t} catch (e) {\n\t\t\tnewVNode._original = NULL;\n\t\t\t// if hydrating or creating initial tree, bailout preserves DOM:\n\t\t\tif (isHydrating || excessDomChildren != NULL) {\n\t\t\t\tif (e.then) {\n\t\t\t\t\tnewVNode._flags |= isHydrating\n\t\t\t\t\t\t? MODE_HYDRATE | MODE_SUSPENDED\n\t\t\t\t\t\t: MODE_SUSPENDED;\n\n\t\t\t\t\twhile (oldDom && oldDom.nodeType == 8 && oldDom.nextSibling) {\n\t\t\t\t\t\toldDom = oldDom.nextSibling;\n\t\t\t\t\t}\n\n\t\t\t\t\texcessDomChildren[excessDomChildren.indexOf(oldDom)] = NULL;\n\t\t\t\t\tnewVNode._dom = oldDom;\n\t\t\t\t} else {\n\t\t\t\t\tfor (let i = excessDomChildren.length; i--; ) {\n\t\t\t\t\t\tremoveNode(excessDomChildren[i]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t\t\tnewVNode._children = oldVNode._children;\n\t\t\t}\n\t\t\toptions._catchError(e, newVNode, oldVNode);\n\t\t}\n\t} else if (\n\t\texcessDomChildren == NULL &&\n\t\tnewVNode._original == oldVNode._original\n\t) {\n\t\tnewVNode._children = oldVNode._children;\n\t\tnewVNode._dom = oldVNode._dom;\n\t} else {\n\t\toldDom = newVNode._dom = diffElementNodes(\n\t\t\toldVNode._dom,\n\t\t\tnewVNode,\n\t\t\toldVNode,\n\t\t\tglobalContext,\n\t\t\tnamespace,\n\t\t\texcessDomChildren,\n\t\t\tcommitQueue,\n\t\t\tisHydrating,\n\t\t\trefQueue\n\t\t);\n\t}\n\n\tif ((tmp = options.diffed)) tmp(newVNode);\n\n\treturn newVNode._flags & MODE_SUSPENDED ? undefined : oldDom;\n}\n\n/**\n * @param {Array<Component>} commitQueue List of components\n * which have callbacks to invoke in commitRoot\n * @param {VNode} root\n */\nexport function commitRoot(commitQueue, root, refQueue) {\n\tfor (let i = 0; i < refQueue.length; i++) {\n\t\tapplyRef(refQueue[i], refQueue[++i], refQueue[++i]);\n\t}\n\n\tif (options._commit) options._commit(root, commitQueue);\n\n\tcommitQueue.some(c => {\n\t\ttry {\n\t\t\t// @ts-expect-error Reuse the commitQueue variable here so the type changes\n\t\t\tcommitQueue = c._renderCallbacks;\n\t\t\tc._renderCallbacks = [];\n\t\t\tcommitQueue.some(cb => {\n\t\t\t\t// @ts-expect-error See above comment on commitQueue\n\t\t\t\tcb.call(c);\n\t\t\t});\n\t\t} catch (e) {\n\t\t\toptions._catchError(e, c._vnode);\n\t\t}\n\t});\n}\n\n/**\n * Diff two virtual nodes representing DOM element\n * @param {PreactElement} dom The DOM element representing the virtual nodes\n * being diffed\n * @param {VNode} newVNode The new virtual node\n * @param {VNode} oldVNode The old virtual node\n * @param {object} globalContext The current context object\n * @param {string} namespace Current namespace of the DOM node (HTML, SVG, or MathML)\n * @param {Array<PreactElement>} excessDomChildren\n * @param {Array<Component>} commitQueue List of components which have callbacks\n * to invoke in commitRoot\n * @param {boolean} isHydrating Whether or not we are in hydration\n * @param {any[]} refQueue an array of elements needed to invoke refs\n * @returns {PreactElement}\n */\nfunction diffElementNodes(\n\tdom,\n\tnewVNode,\n\toldVNode,\n\tglobalContext,\n\tnamespace,\n\texcessDomChildren,\n\tcommitQueue,\n\tisHydrating,\n\trefQueue\n) {\n\tlet oldProps = oldVNode.props;\n\tlet newProps = newVNode.props;\n\tlet nodeType = /** @type {string} */ (newVNode.type);\n\t/** @type {any} */\n\tlet i;\n\t/** @type {{ __html?: string }} */\n\tlet newHtml;\n\t/** @type {{ __html?: string }} */\n\tlet oldHtml;\n\t/** @type {ComponentChildren} */\n\tlet newChildren;\n\tlet value;\n\tlet inputValue;\n\tlet checked;\n\n\t// Tracks entering and exiting namespaces when descending through the tree.\n\tif (nodeType == 'svg') namespace = SVG_NAMESPACE;\n\telse if (nodeType == 'math') namespace = MATH_NAMESPACE;\n\telse if (!namespace) namespace = XHTML_NAMESPACE;\n\n\tif (excessDomChildren != NULL) {\n\t\tfor (i = 0; i < excessDomChildren.length; i++) {\n\t\t\tvalue = excessDomChildren[i];\n\n\t\t\t// if newVNode matches an element in excessDomChildren or the `dom`\n\t\t\t// argument matches an element in excessDomChildren, remove it from\n\t\t\t// excessDomChildren so it isn't later removed in diffChildren\n\t\t\tif (\n\t\t\t\tvalue &&\n\t\t\t\t'setAttribute' in value == !!nodeType &&\n\t\t\t\t(nodeType ? value.localName == nodeType : value.nodeType == 3)\n\t\t\t) {\n\t\t\t\tdom = value;\n\t\t\t\texcessDomChildren[i] = NULL;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\tif (dom == NULL) {\n\t\tif (nodeType == NULL) {\n\t\t\treturn document.createTextNode(newProps);\n\t\t}\n\n\t\tdom = document.createElementNS(\n\t\t\tnamespace,\n\t\t\tnodeType,\n\t\t\tnewProps.is && newProps\n\t\t);\n\n\t\t// we are creating a new node, so we can assume this is a new subtree (in\n\t\t// case we are hydrating), this deopts the hydrate\n\t\tif (isHydrating) {\n\t\t\tif (options._hydrationMismatch)\n\t\t\t\toptions._hydrationMismatch(newVNode, excessDomChildren);\n\t\t\tisHydrating = false;\n\t\t}\n\t\t// we created a new parent, so none of the previously attached children can be reused:\n\t\texcessDomChildren = NULL;\n\t}\n\n\tif (nodeType === NULL) {\n\t\t// During hydration, we still have to split merged text from SSR'd HTML.\n\t\tif (oldProps !== newProps && (!isHydrating || dom.data !== newProps)) {\n\t\t\tdom.data = newProps;\n\t\t}\n\t} else {\n\t\t// If excessDomChildren was not null, repopulate it with the current element's children:\n\t\texcessDomChildren = excessDomChildren && slice.call(dom.childNodes);\n\n\t\toldProps = oldVNode.props || EMPTY_OBJ;\n\n\t\t// If we are in a situation where we are not hydrating but are using\n\t\t// existing DOM (e.g. replaceNode) we should read the existing DOM\n\t\t// attributes to diff them\n\t\tif (!isHydrating && excessDomChildren != NULL) {\n\t\t\toldProps = {};\n\t\t\tfor (i = 0; i < dom.attributes.length; i++) {\n\t\t\t\tvalue = dom.attributes[i];\n\t\t\t\toldProps[value.name] = value.value;\n\t\t\t}\n\t\t}\n\n\t\tfor (i in oldProps) {\n\t\t\tvalue = oldProps[i];\n\t\t\tif (i == 'children') {\n\t\t\t} else if (i == 'dangerouslySetInnerHTML') {\n\t\t\t\toldHtml = value;\n\t\t\t} else if (!(i in newProps)) {\n\t\t\t\tif (\n\t\t\t\t\t(i == 'value' && 'defaultValue' in newProps) ||\n\t\t\t\t\t(i == 'checked' && 'defaultChecked' in newProps)\n\t\t\t\t) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tsetProperty(dom, i, NULL, value, namespace);\n\t\t\t}\n\t\t}\n\n\t\t// During hydration, props are not diffed at all (including dangerouslySetInnerHTML)\n\t\t// @TODO we should warn in debug mode when props don't match here.\n\t\tfor (i in newProps) {\n\t\t\tvalue = newProps[i];\n\t\t\tif (i == 'children') {\n\t\t\t\tnewChildren = value;\n\t\t\t} else if (i == 'dangerouslySetInnerHTML') {\n\t\t\t\tnewHtml = value;\n\t\t\t} else if (i == 'value') {\n\t\t\t\tinputValue = value;\n\t\t\t} else if (i == 'checked') {\n\t\t\t\tchecked = value;\n\t\t\t} else if (\n\t\t\t\t(!isHydrating || typeof value == 'function') &&\n\t\t\t\toldProps[i] !== value\n\t\t\t) {\n\t\t\t\tsetProperty(dom, i, value, oldProps[i], namespace);\n\t\t\t}\n\t\t}\n\n\t\t// If the new vnode didn't have dangerouslySetInnerHTML, diff its children\n\t\tif (newHtml) {\n\t\t\t// Avoid re-applying the same '__html' if it did not changed between re-render\n\t\t\tif (\n\t\t\t\t!isHydrating &&\n\t\t\t\t(!oldHtml ||\n\t\t\t\t\t(newHtml.__html !== oldHtml.__html &&\n\t\t\t\t\t\tnewHtml.__html !== dom.innerHTML))\n\t\t\t) {\n\t\t\t\tdom.innerHTML = newHtml.__html;\n\t\t\t}\n\n\t\t\tnewVNode._children = [];\n\t\t} else {\n\t\t\tif (oldHtml) dom.innerHTML = '';\n\n\t\t\tdiffChildren(\n\t\t\t\t// @ts-expect-error\n\t\t\t\tnewVNode.type === 'template' ? dom.content : dom,\n\t\t\t\tisArray(newChildren) ? newChildren : [newChildren],\n\t\t\t\tnewVNode,\n\t\t\t\toldVNode,\n\t\t\t\tglobalContext,\n\t\t\t\tnodeType == 'foreignObject' ? XHTML_NAMESPACE : namespace,\n\t\t\t\texcessDomChildren,\n\t\t\t\tcommitQueue,\n\t\t\t\texcessDomChildren\n\t\t\t\t\t? excessDomChildren[0]\n\t\t\t\t\t: oldVNode._children && getDomSibling(oldVNode, 0),\n\t\t\t\tisHydrating,\n\t\t\t\trefQueue\n\t\t\t);\n\n\t\t\t// Remove children that are not part of any vnode.\n\t\t\tif (excessDomChildren != NULL) {\n\t\t\t\tfor (i = excessDomChildren.length; i--; ) {\n\t\t\t\t\tremoveNode(excessDomChildren[i]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// As above, don't diff props during hydration\n\t\tif (!isHydrating) {\n\t\t\ti = 'value';\n\t\t\tif (nodeType == 'progress' && inputValue == NULL) {\n\t\t\t\tdom.removeAttribute('value');\n\t\t\t} else if (\n\t\t\t\tinputValue !== UNDEFINED &&\n\t\t\t\t// #2756 For the <progress>-element the initial value is 0,\n\t\t\t\t// despite the attribute not being present. When the attribute\n\t\t\t\t// is missing the progress bar is treated as indeterminate.\n\t\t\t\t// To fix that we'll always update it when it is 0 for progress elements\n\t\t\t\t(inputValue !== dom[i] ||\n\t\t\t\t\t(nodeType == 'progress' && !inputValue) ||\n\t\t\t\t\t// This is only for IE 11 to fix <select> value not being updated.\n\t\t\t\t\t// To avoid a stale select value we need to set the option.value\n\t\t\t\t\t// again, which triggers IE11 to re-evaluate the select value\n\t\t\t\t\t(nodeType == 'option' && inputValue !== oldProps[i]))\n\t\t\t) {\n\t\t\t\tsetProperty(dom, i, inputValue, oldProps[i], namespace);\n\t\t\t}\n\n\t\t\ti = 'checked';\n\t\t\tif (checked !== UNDEFINED && checked !== dom[i]) {\n\t\t\t\tsetProperty(dom, i, checked, oldProps[i], namespace);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn dom;\n}\n\n/**\n * Invoke or update a ref, depending on whether it is a function or object ref.\n * @param {Ref<any> & { _unmount?: unknown }} ref\n * @param {any} value\n * @param {VNode} vnode\n */\nexport function applyRef(ref, value, vnode) {\n\ttry {\n\t\tif (typeof ref == 'function') {\n\t\t\tlet hasRefUnmount = typeof ref._unmount == 'function';\n\t\t\tif (hasRefUnmount) {\n\t\t\t\t// @ts-ignore TS doesn't like moving narrowing checks into variables\n\t\t\t\tref._unmount();\n\t\t\t}\n\n\t\t\tif (!hasRefUnmount || value != NULL) {\n\t\t\t\t// Store the cleanup function on the function\n\t\t\t\t// instance object itself to avoid shape\n\t\t\t\t// transitioning vnode\n\t\t\t\tref._unmount = ref(value);\n\t\t\t}\n\t\t} else ref.current = value;\n\t} catch (e) {\n\t\toptions._catchError(e, vnode);\n\t}\n}\n\n/**\n * Unmount a virtual node from the tree and apply DOM changes\n * @param {VNode} vnode The virtual node to unmount\n * @param {VNode} parentVNode The parent of the VNode that initiated the unmount\n * @param {boolean} [skipRemove] Flag that indicates that a parent node of the\n * current element is already detached from the DOM.\n */\nexport function unmount(vnode, parentVNode, skipRemove) {\n\tlet r;\n\tif (options.unmount) options.unmount(vnode);\n\n\tif ((r = vnode.ref)) {\n\t\tif (!r.current || r.current === vnode._dom) {\n\t\t\tapplyRef(r, NULL, parentVNode);\n\t\t}\n\t}\n\n\tif ((r = vnode._component) != NULL) {\n\t\tif (r.componentWillUnmount) {\n\t\t\ttry {\n\t\t\t\tr.componentWillUnmount();\n\t\t\t} catch (e) {\n\t\t\t\toptions._catchError(e, parentVNode);\n\t\t\t}\n\t\t}\n\n\t\tr.base = r._parentDom = NULL;\n\t}\n\n\tif ((r = vnode._children)) {\n\t\tfor (let i = 0; i < r.length; i++) {\n\t\t\tif (r[i]) {\n\t\t\t\tunmount(\n\t\t\t\t\tr[i],\n\t\t\t\t\tparentVNode,\n\t\t\t\t\tskipRemove || typeof vnode.type != 'function'\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif (!skipRemove) {\n\t\tremoveNode(vnode._dom);\n\t}\n\n\tvnode._component = vnode._parent = vnode._dom = UNDEFINED;\n}\n\n/** The `.render()` method for a PFC backing instance. */\nfunction doRender(props, state, context) {\n\treturn this.constructor(props, context);\n}\n", "import { EMPTY_OBJ, NULL } from './constants';\nimport { commitRoot, diff } from './diff/index';\nimport { createElement, Fragment } from './create-element';\nimport options from './options';\nimport { slice } from './util';\n\n/**\n * Render a Preact virtual node into a DOM element\n * @param {import('./internal').ComponentChild} vnode The virtual node to render\n * @param {import('./internal').PreactElement} parentDom The DOM element to render into\n * @param {import('./internal').PreactElement | object} [replaceNode] Optional: Attempt to re-use an\n * existing DOM tree rooted at `replaceNode`\n */\nexport function render(vnode, parentDom, replaceNode) {\n\t// https://github.com/preactjs/preact/issues/3794\n\tif (parentDom == document) {\n\t\tparentDom = document.documentElement;\n\t}\n\n\tif (options._root) options._root(vnode, parentDom);\n\n\t// We abuse the `replaceNode` parameter in `hydrate()` to signal if we are in\n\t// hydration mode or not by passing the `hydrate` function instead of a DOM\n\t// element..\n\tlet isHydrating = typeof replaceNode == 'function';\n\n\t// To be able to support calling `render()` multiple times on the same\n\t// DOM node, we need to obtain a reference to the previous tree. We do\n\t// this by assigning a new `_children` property to DOM nodes which points\n\t// to the last rendered tree. By default this property is not present, which\n\t// means that we are mounting a new tree for the first time.\n\tlet oldVNode = isHydrating\n\t\t? NULL\n\t\t: (replaceNode && replaceNode._children) || parentDom._children;\n\n\tvnode = ((!isHydrating && replaceNode) || parentDom)._children =\n\t\tcreateElement(Fragment, NULL, [vnode]);\n\n\t// List of effects that need to be called after diffing.\n\tlet commitQueue = [],\n\t\trefQueue = [];\n\tdiff(\n\t\tparentDom,\n\t\t// Determine the new vnode tree and store it on the DOM element on\n\t\t// our custom `_children` property.\n\t\tvnode,\n\t\toldVNode || EMPTY_OBJ,\n\t\tEMPTY_OBJ,\n\t\tparentDom.namespaceURI,\n\t\t!isHydrating && replaceNode\n\t\t\t? [replaceNode]\n\t\t\t: oldVNode\n\t\t\t\t? NULL\n\t\t\t\t: parentDom.firstChild\n\t\t\t\t\t? slice.call(parentDom.childNodes)\n\t\t\t\t\t: NULL,\n\t\tcommitQueue,\n\t\t!isHydrating && replaceNode\n\t\t\t? replaceNode\n\t\t\t: oldVNode\n\t\t\t\t? oldVNode._dom\n\t\t\t\t: parentDom.firstChild,\n\t\tisHydrating,\n\t\trefQueue\n\t);\n\n\t// Flush all queued effects\n\tcommitRoot(commitQueue, vnode, refQueue);\n}\n\n/**\n * Update an existing DOM element with data from a Preact virtual node\n * @param {import('./internal').ComponentChild} vnode The virtual node to render\n * @param {import('./internal').PreactElement} parentDom The DOM element to update\n */\nexport function hydrate(vnode, parentDom) {\n\trender(vnode, parentDom, hydrate);\n}\n", "import { assign, slice } from './util';\nimport { createVNode } from './create-element';\nimport { NULL, UNDEFINED } from './constants';\n\n/**\n * Clones the given VNode, optionally adding attributes/props and replacing its\n * children.\n * @param {import('./internal').VNode} vnode The virtual DOM element to clone\n * @param {object} props Attributes/props to add when cloning\n * @param {Array<import('./internal').ComponentChildren>} rest Any additional arguments will be used\n * as replacement children.\n * @returns {import('./internal').VNode}\n */\nexport function cloneElement(vnode, props, children) {\n\tlet normalizedProps = assign({}, vnode.props),\n\t\tkey,\n\t\tref,\n\t\ti;\n\n\tlet defaultProps;\n\n\tif (vnode.type && vnode.type.defaultProps) {\n\t\tdefaultProps = vnode.type.defaultProps;\n\t}\n\n\tfor (i in props) {\n\t\tif (i == 'key') key = props[i];\n\t\telse if (i == 'ref') ref = props[i];\n\t\telse if (props[i] === UNDEFINED && defaultProps !== UNDEFINED) {\n\t\t\tnormalizedProps[i] = defaultProps[i];\n\t\t} else {\n\t\t\tnormalizedProps[i] = props[i];\n\t\t}\n\t}\n\n\tif (arguments.length > 2) {\n\t\tnormalizedProps.children =\n\t\t\targuments.length > 3 ? slice.call(arguments, 2) : children;\n\t}\n\n\treturn createVNode(\n\t\tvnode.type,\n\t\tnormalizedProps,\n\t\tkey || vnode.key,\n\t\tref || vnode.ref,\n\t\tNULL\n\t);\n}\n", "import { NULL } from '../constants';\n\n/**\n * Find the closest error boundary to a thrown error and call it\n * @param {object} error The thrown value\n * @param {import('../internal').VNode} vnode The vnode that threw the error that was caught (except\n * for unmounting when this parameter is the highest parent that was being\n * unmounted)\n * @param {import('../internal').VNode} [oldVNode]\n * @param {import('../internal').ErrorInfo} [errorInfo]\n */\nexport function _catchError(error, vnode, oldVNode, errorInfo) {\n\t/** @type {import('../internal').Component} */\n\tlet component,\n\t\t/** @type {import('../internal').ComponentType} */\n\t\tctor,\n\t\t/** @type {boolean} */\n\t\thandled;\n\n\tfor (; (vnode = vnode._parent); ) {\n\t\tif ((component = vnode._component) && !component._processingException) {\n\t\t\ttry {\n\t\t\t\tctor = component.constructor;\n\n\t\t\t\tif (ctor && ctor.getDerivedStateFromError != NULL) {\n\t\t\t\t\tcomponent.setState(ctor.getDerivedStateFromError(error));\n\t\t\t\t\thandled = component._dirty;\n\t\t\t\t}\n\n\t\t\t\tif (component.componentDidCatch != NULL) {\n\t\t\t\t\tcomponent.componentDidCatch(error, errorInfo || {});\n\t\t\t\t\thandled = component._dirty;\n\t\t\t\t}\n\n\t\t\t\t// This is an error boundary. Mark it as having bailed out, and whether it was mid-hydration.\n\t\t\t\tif (handled) {\n\t\t\t\t\treturn (component._pendingError = component);\n\t\t\t\t}\n\t\t\t} catch (e) {\n\t\t\t\terror = e;\n\t\t\t}\n\t\t}\n\t}\n\n\tthrow error;\n}\n", "import { options as _options } from 'preact';\n\n/** @type {number} */\nlet currentIndex;\n\n/** @type {import('./internal').Component} */\nlet currentComponent;\n\n/** @type {import('./internal').Component} */\nlet previousComponent;\n\n/** @type {number} */\nlet currentHook = 0;\n\n/** @type {Array<import('./internal').Component>} */\nlet afterPaintEffects = [];\n\n// Cast to use internal Options type\nconst options = /** @type {import('./internal').Options} */ (_options);\n\nlet oldBeforeDiff = options._diff;\nlet oldBeforeRender = options._render;\nlet oldAfterDiff = options.diffed;\nlet oldCommit = options._commit;\nlet oldBeforeUnmount = options.unmount;\nlet oldRoot = options._root;\n\nconst RAF_TIMEOUT = 100;\nlet prevRaf;\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions._diff = vnode => {\n\tcurrentComponent = null;\n\tif (oldBeforeDiff) oldBeforeDiff(vnode);\n};\n\noptions._root = (vnode, parentDom) => {\n\tif (vnode && parentDom._children && parentDom._children._mask) {\n\t\tvnode._mask = parentDom._children._mask;\n\t}\n\n\tif (oldRoot) oldRoot(vnode, parentDom);\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions._render = vnode => {\n\tif (oldBeforeRender) oldBeforeRender(vnode);\n\n\tcurrentComponent = vnode._component;\n\tcurrentIndex = 0;\n\n\tconst hooks = currentComponent.__hooks;\n\tif (hooks) {\n\t\tif (previousComponent === currentComponent) {\n\t\t\thooks._pendingEffects = [];\n\t\t\tcurrentComponent._renderCallbacks = [];\n\t\t\thooks._list.forEach(hookItem => {\n\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t}\n\t\t\t\thookItem._pendingArgs = hookItem._nextValue = undefined;\n\t\t\t});\n\t\t} else {\n\t\t\thooks._pendingEffects.forEach(invokeCleanup);\n\t\t\thooks._pendingEffects.forEach(invokeEffect);\n\t\t\thooks._pendingEffects = [];\n\t\t\tcurrentIndex = 0;\n\t\t}\n\t}\n\tpreviousComponent = currentComponent;\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions.diffed = vnode => {\n\tif (oldAfterDiff) oldAfterDiff(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tif (c.__hooks._pendingEffects.length) afterPaint(afterPaintEffects.push(c));\n\t\tc.__hooks._list.forEach(hookItem => {\n\t\t\tif (hookItem._pendingArgs) {\n\t\t\t\thookItem._args = hookItem._pendingArgs;\n\t\t\t}\n\t\t\thookItem._pendingArgs = undefined;\n\t\t});\n\t}\n\tpreviousComponent = currentComponent = null;\n};\n\n// TODO: Improve typing of commitQueue parameter\n/** @type {(vnode: import('./internal').VNode, commitQueue: any) => void} */\noptions._commit = (vnode, commitQueue) => {\n\tcommitQueue.some(component => {\n\t\ttry {\n\t\t\tcomponent._renderCallbacks.forEach(invokeCleanup);\n\t\t\tcomponent._renderCallbacks = component._renderCallbacks.filter(cb =>\n\t\t\t\tcb._value ? invokeEffect(cb) : true\n\t\t\t);\n\t\t} catch (e) {\n\t\t\tcommitQueue.some(c => {\n\t\t\t\tif (c._renderCallbacks) c._renderCallbacks = [];\n\t\t\t});\n\t\t\tcommitQueue = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t});\n\n\tif (oldCommit) oldCommit(vnode, commitQueue);\n};\n\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions.unmount = vnode => {\n\tif (oldBeforeUnmount) oldBeforeUnmount(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tlet hasErrored;\n\t\tc.__hooks._list.forEach(s => {\n\t\t\ttry {\n\t\t\t\tinvokeCleanup(s);\n\t\t\t} catch (e) {\n\t\t\t\thasErrored = e;\n\t\t\t}\n\t\t});\n\t\tc.__hooks = undefined;\n\t\tif (hasErrored) options._catchError(hasErrored, c._vnode);\n\t}\n};\n\n/**\n * Get a hook's state from the currentComponent\n * @param {number} index The index of the hook to get\n * @param {number} type The index of the hook to get\n * @returns {any}\n */\nfunction getHookState(index, type) {\n\tif (options._hook) {\n\t\toptions._hook(currentComponent, index, currentHook || type);\n\t}\n\tcurrentHook = 0;\n\n\t// Largely inspired by:\n\t// * https://github.com/michael-klein/funcy.js/blob/f6be73468e6ec46b0ff5aa3cc4c9baf72a29025a/src/hooks/core_hooks.mjs\n\t// * https://github.com/michael-klein/funcy.js/blob/650beaa58c43c33a74820a3c98b3c7079cf2e333/src/renderer.mjs\n\t// Other implementations to look at:\n\t// * https://codesandbox.io/s/mnox05qp8\n\tconst hooks =\n\t\tcurrentComponent.__hooks ||\n\t\t(currentComponent.__hooks = {\n\t\t\t_list: [],\n\t\t\t_pendingEffects: []\n\t\t});\n\n\tif (index >= hooks._list.length) {\n\t\thooks._list.push({});\n\t}\n\n\treturn hooks._list[index];\n}\n\n/**\n * @template {unknown} S\n * @param {import('./index').Dispatch<import('./index').StateUpdater<S>>} [initialState]\n * @returns {[S, (state: S) => void]}\n */\nexport function useState(initialState) {\n\tcurrentHook = 1;\n\treturn useReducer(invokeOrReturn, initialState);\n}\n\n/**\n * @template {unknown} S\n * @template {unknown} A\n * @param {import('./index').Reducer<S, A>} reducer\n * @param {import('./index').Dispatch<import('./index').StateUpdater<S>>} initialState\n * @param {(initialState: any) => void} [init]\n * @returns {[ S, (state: S) => void ]}\n */\nexport function useReducer(reducer, initialState, init) {\n\t/** @type {import('./internal').ReducerHookState} */\n\tconst hookState = getHookState(currentIndex++, 2);\n\thookState._reducer = reducer;\n\tif (!hookState._component) {\n\t\thookState._value = [\n\t\t\t!init ? invokeOrReturn(undefined, initialState) : init(initialState),\n\n\t\t\taction => {\n\t\t\t\tconst currentValue = hookState._nextValue\n\t\t\t\t\t? hookState._nextValue[0]\n\t\t\t\t\t: hookState._value[0];\n\t\t\t\tconst nextValue = hookState._reducer(currentValue, action);\n\n\t\t\t\tif (currentValue !== nextValue) {\n\t\t\t\t\thookState._nextValue = [nextValue, hookState._value[1]];\n\t\t\t\t\thookState._component.setState({});\n\t\t\t\t}\n\t\t\t}\n\t\t];\n\n\t\thookState._component = currentComponent;\n\n\t\tif (!currentComponent._hasScuFromHooks) {\n\t\t\tcurrentComponent._hasScuFromHooks = true;\n\t\t\tlet prevScu = currentComponent.shouldComponentUpdate;\n\t\t\tconst prevCWU = currentComponent.componentWillUpdate;\n\n\t\t\t// If we're dealing with a forced update `shouldComponentUpdate` will\n\t\t\t// not be called. But we use that to update the hook values, so we\n\t\t\t// need to call it.\n\t\t\tcurrentComponent.componentWillUpdate = function (p, s, c) {\n\t\t\t\tif (this._force) {\n\t\t\t\t\tlet tmp = prevScu;\n\t\t\t\t\t// Clear to avoid other sCU hooks from being called\n\t\t\t\t\tprevScu = undefined;\n\t\t\t\t\tupdateHookState(p, s, c);\n\t\t\t\t\tprevScu = tmp;\n\t\t\t\t}\n\n\t\t\t\tif (prevCWU) prevCWU.call(this, p, s, c);\n\t\t\t};\n\n\t\t\t// This SCU has the purpose of bailing out after repeated updates\n\t\t\t// to stateful hooks.\n\t\t\t// we store the next value in _nextValue[0] and keep doing that for all\n\t\t\t// state setters, if we have next states and\n\t\t\t// all next states within a component end up being equal to their original state\n\t\t\t// we are safe to bail out for this specific component.\n\t\t\t/**\n\t\t\t *\n\t\t\t * @type {import('./internal').Component[\"shouldComponentUpdate\"]}\n\t\t\t */\n\t\t\t// @ts-ignore - We don't use TS to downtranspile\n\t\t\t// eslint-disable-next-line no-inner-declarations\n\t\t\tfunction updateHookState(p, s, c) {\n\t\t\t\tif (!hookState._component.__hooks) return true;\n\n\t\t\t\t/** @type {(x: import('./internal').HookState) => x is import('./internal').ReducerHookState} */\n\t\t\t\tconst isStateHook = x => !!x._component;\n\t\t\t\tconst stateHooks =\n\t\t\t\t\thookState._component.__hooks._list.filter(isStateHook);\n\n\t\t\t\tconst allHooksEmpty = stateHooks.every(x => !x._nextValue);\n\t\t\t\t// When we have no updated hooks in the component we invoke the previous SCU or\n\t\t\t\t// traverse the VDOM tree further.\n\t\t\t\tif (allHooksEmpty) {\n\t\t\t\t\treturn prevScu ? prevScu.call(this, p, s, c) : true;\n\t\t\t\t}\n\n\t\t\t\t// We check whether we have components with a nextValue set that\n\t\t\t\t// have values that aren't equal to one another this pushes\n\t\t\t\t// us to update further down the tree\n\t\t\t\tlet shouldUpdate = hookState._component.props !== p;\n\t\t\t\tstateHooks.forEach(hookItem => {\n\t\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\t\tconst currentValue = hookItem._value[0];\n\t\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t\t\thookItem._nextValue = undefined;\n\t\t\t\t\t\tif (currentValue !== hookItem._value[0]) shouldUpdate = true;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\treturn prevScu\n\t\t\t\t\t? prevScu.call(this, p, s, c) || shouldUpdate\n\t\t\t\t\t: shouldUpdate;\n\t\t\t}\n\n\t\t\tcurrentComponent.shouldComponentUpdate = updateHookState;\n\t\t}\n\t}\n\n\treturn hookState._nextValue || hookState._value;\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 3);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent.__hooks._pendingEffects.push(state);\n\t}\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useLayoutEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 4);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent._renderCallbacks.push(state);\n\t}\n}\n\n/** @type {(initialValue: unknown) => unknown} */\nexport function useRef(initialValue) {\n\tcurrentHook = 5;\n\treturn useMemo(() => ({ current: initialValue }), []);\n}\n\n/**\n * @param {object} ref\n * @param {() => object} createHandle\n * @param {unknown[]} args\n * @returns {void}\n */\nexport function useImperativeHandle(ref, createHandle, args) {\n\tcurrentHook = 6;\n\tuseLayoutEffect(\n\t\t() => {\n\t\t\tif (typeof ref == 'function') {\n\t\t\t\tconst result = ref(createHandle());\n\t\t\t\treturn () => {\n\t\t\t\t\tref(null);\n\t\t\t\t\tif (result && typeof result == 'function') result();\n\t\t\t\t};\n\t\t\t} else if (ref) {\n\t\t\t\tref.current = createHandle();\n\t\t\t\treturn () => (ref.current = null);\n\t\t\t}\n\t\t},\n\t\targs == null ? args : args.concat(ref)\n\t);\n}\n\n/**\n * @template {unknown} T\n * @param {() => T} factory\n * @param {unknown[]} args\n * @returns {T}\n */\nexport function useMemo(factory, args) {\n\t/** @type {import('./internal').MemoHookState<T>} */\n\tconst state = getHookState(currentIndex++, 7);\n\tif (argsChanged(state._args, args)) {\n\t\tstate._value = factory();\n\t\tstate._args = args;\n\t\tstate._factory = factory;\n\t}\n\n\treturn state._value;\n}\n\n/**\n * @param {() => void} callback\n * @param {unknown[]} args\n * @returns {() => void}\n */\nexport function useCallback(callback, args) {\n\tcurrentHook = 8;\n\treturn useMemo(() => callback, args);\n}\n\n/**\n * @param {import('./internal').PreactContext} context\n */\nexport function useContext(context) {\n\tconst provider = currentComponent.context[context._id];\n\t// We could skip this call here, but than we'd not call\n\t// `options._hook`. We need to do that in order to make\n\t// the devtools aware of this hook.\n\t/** @type {import('./internal').ContextHookState} */\n\tconst state = getHookState(currentIndex++, 9);\n\t// The devtools needs access to the context object to\n\t// be able to pull of the default value when no provider\n\t// is present in the tree.\n\tstate._context = context;\n\tif (!provider) return context._defaultValue;\n\t// This is probably not safe to convert to \"!\"\n\tif (state._value == null) {\n\t\tstate._value = true;\n\t\tprovider.sub(currentComponent);\n\t}\n\treturn provider.props.value;\n}\n\n/**\n * Display a custom label for a custom hook for the devtools panel\n * @type {<T>(value: T, cb?: (value: T) => string | number) => void}\n */\nexport function useDebugValue(value, formatter) {\n\tif (options.useDebugValue) {\n\t\toptions.useDebugValue(\n\t\t\tformatter ? formatter(value) : /** @type {any}*/ (value)\n\t\t);\n\t}\n}\n\n/**\n * @param {(error: unknown, errorInfo: import('preact').ErrorInfo) => void} cb\n * @returns {[unknown, () => void]}\n */\nexport function useErrorBoundary(cb) {\n\t/** @type {import('./internal').ErrorBoundaryHookState} */\n\tconst state = getHookState(currentIndex++, 10);\n\tconst errState = useState();\n\tstate._value = cb;\n\tif (!currentComponent.componentDidCatch) {\n\t\tcurrentComponent.componentDidCatch = (err, errorInfo) => {\n\t\t\tif (state._value) state._value(err, errorInfo);\n\t\t\terrState[1](err);\n\t\t};\n\t}\n\treturn [\n\t\terrState[0],\n\t\t() => {\n\t\t\terrState[1](undefined);\n\t\t}\n\t];\n}\n\n/** @type {() => string} */\nexport function useId() {\n\t/** @type {import('./internal').IdHookState} */\n\tconst state = getHookState(currentIndex++, 11);\n\tif (!state._value) {\n\t\t// Grab either the root node or the nearest async boundary node.\n\t\t/** @type {import('./internal').VNode} */\n\t\tlet root = currentComponent._vnode;\n\t\twhile (root !== null && !root._mask && root._parent !== null) {\n\t\t\troot = root._parent;\n\t\t}\n\n\t\tlet mask = root._mask || (root._mask = [0, 0]);\n\t\tstate._value = 'P' + mask[0] + '-' + mask[1]++;\n\t}\n\n\treturn state._value;\n}\n\n/**\n * After paint effects consumer.\n */\nfunction flushAfterPaintEffects() {\n\tlet component;\n\twhile ((component = afterPaintEffects.shift())) {\n\t\tif (!component._parentDom || !component.__hooks) continue;\n\t\ttry {\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeCleanup);\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeEffect);\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t} catch (e) {\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t}\n}\n\nlet HAS_RAF = typeof requestAnimationFrame == 'function';\n\n/**\n * Schedule a callback to be invoked after the browser has a chance to paint a new frame.\n * Do this by combining requestAnimationFrame (rAF) + setTimeout to invoke a callback after\n * the next browser frame.\n *\n * Also, schedule a timeout in parallel to the the rAF to ensure the callback is invoked\n * even if RAF doesn't fire (for example if the browser tab is not visible)\n *\n * @param {() => void} callback\n */\nfunction afterNextFrame(callback) {\n\tconst done = () => {\n\t\tclearTimeout(timeout);\n\t\tif (HAS_RAF) cancelAnimationFrame(raf);\n\t\tsetTimeout(callback);\n\t};\n\tconst timeout = setTimeout(done, RAF_TIMEOUT);\n\n\tlet raf;\n\tif (HAS_RAF) {\n\t\traf = requestAnimationFrame(done);\n\t}\n}\n\n// Note: if someone used options.debounceRendering = requestAnimationFrame,\n// then effects will ALWAYS run on the NEXT frame instead of the current one, incurring a ~16ms delay.\n// Perhaps this is not such a big deal.\n/**\n * Schedule afterPaintEffects flush after the browser paints\n * @param {number} newQueueLength\n * @returns {void}\n */\nfunction afterPaint(newQueueLength) {\n\tif (newQueueLength === 1 || prevRaf !== options.requestAnimationFrame) {\n\t\tprevRaf = options.requestAnimationFrame;\n\t\t(prevRaf || afterNextFrame)(flushAfterPaintEffects);\n\t}\n}\n\n/**\n * @param {import('./internal').HookState} hook\n * @returns {void}\n */\nfunction invokeCleanup(hook) {\n\t// A hook cleanup can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\tlet cleanup = hook._cleanup;\n\tif (typeof cleanup == 'function') {\n\t\thook._cleanup = undefined;\n\t\tcleanup();\n\t}\n\n\tcurrentComponent = comp;\n}\n\n/**\n * Invoke a Hook's effect\n * @param {import('./internal').EffectHookState} hook\n * @returns {void}\n */\nfunction invokeEffect(hook) {\n\t// A hook call can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\thook._cleanup = hook._value();\n\tcurrentComponent = comp;\n}\n\n/**\n * @param {unknown[]} oldArgs\n * @param {unknown[]} newArgs\n * @returns {boolean}\n */\nfunction argsChanged(oldArgs, newArgs) {\n\treturn (\n\t\t!oldArgs ||\n\t\toldArgs.length !== newArgs.length ||\n\t\tnewArgs.some((arg, index) => arg !== oldArgs[index])\n\t);\n}\n\n/**\n * @template Arg\n * @param {Arg} arg\n * @param {(arg: Arg) => any} f\n * @returns {any}\n */\nfunction invokeOrReturn(arg, f) {\n\treturn typeof f == 'function' ? f(arg) : f;\n}\n", "/**\n * Assign properties from `props` to `obj`\n * @template O, P The obj and props types\n * @param {O} obj The object to copy properties to\n * @param {P} props The object to copy properties from\n * @returns {O & P}\n */\nexport function assign(obj, props) {\n\tfor (let i in props) obj[i] = props[i];\n\treturn /** @type {O & P} */ (obj);\n}\n\n/**\n * Check if two objects have a different shape\n * @param {object} a\n * @param {object} b\n * @returns {boolean}\n */\nexport function shallowDiffers(a, b) {\n\tfor (let i in a) if (i !== '__source' && !(i in b)) return true;\n\tfor (let i in b) if (i !== '__source' && a[i] !== b[i]) return true;\n\treturn false;\n}\n\n/**\n * Check if two values are the same value\n * @param {*} x\n * @param {*} y\n * @returns {boolean}\n */\nexport function is(x, y) {\n\treturn (x === y && (x !== 0 || 1 / x === 1 / y)) || (x !== x && y !== y);\n}\n", "import { useState, useLayoutEffect, useEffect } from 'preact/hooks';\nimport { is } from './util';\n\n/**\n * This is taken from https://github.com/facebook/react/blob/main/packages/use-sync-external-store/src/useSyncExternalStoreShimClient.js#L84\n * on a high level this cuts out the warnings, ... and attempts a smaller implementation\n * @typedef {{ _value: any; _getSnapshot: () => any }} Store\n */\nexport function useSyncExternalStore(subscribe, getSnapshot) {\n\tconst value = getSnapshot();\n\n\t/**\n\t * @typedef {{ _instance: Store }} StoreRef\n\t * @type {[StoreRef, (store: StoreRef) => void]}\n\t */\n\tconst [{ _instance }, forceUpdate] = useState({\n\t\t_instance: { _value: value, _getSnapshot: getSnapshot }\n\t});\n\n\tuseLayoutEffect(() => {\n\t\t_instance._value = value;\n\t\t_instance._getSnapshot = getSnapshot;\n\n\t\tif (didSnapshotChange(_instance)) {\n\t\t\tforceUpdate({ _instance });\n\t\t}\n\t}, [subscribe, value, getSnapshot]);\n\n\tuseEffect(() => {\n\t\tif (didSnapshotChange(_instance)) {\n\t\t\tforceUpdate({ _instance });\n\t\t}\n\n\t\treturn subscribe(() => {\n\t\t\tif (didSnapshotChange(_instance)) {\n\t\t\t\tforceUpdate({ _instance });\n\t\t\t}\n\t\t});\n\t}, [subscribe]);\n\n\treturn value;\n}\n\n/** @type {(inst: Store) => boolean} */\nfunction didSnapshotChange(inst) {\n\tconst latestGetSnapshot = inst._getSnapshot;\n\tconst prevValue = inst._value;\n\ttry {\n\t\tconst nextValue = latestGetSnapshot();\n\t\treturn !is(prevValue, nextValue);\n\t} catch (error) {\n\t\treturn true;\n\t}\n}\n\nexport function startTransition(cb) {\n\tcb();\n}\n\nexport function useDeferredValue(val) {\n\treturn val;\n}\n\nexport function useTransition() {\n\treturn [false, startTransition];\n}\n\n// TODO: in theory this should be done after a VNode is diffed as we want to insert\n// styles/... before it attaches\nexport const useInsertionEffect = useLayoutEffect;\n", "import { Component } from 'preact';\nimport { shallowDiffers } from './util';\n\n/**\n * Component class with a predefined `shouldComponentUpdate` implementation\n */\nexport function PureComponent(p, c) {\n\tthis.props = p;\n\tthis.context = c;\n}\nPureComponent.prototype = new Component();\n// Some third-party libraries check if this property is present\nPureComponent.prototype.isPureReactComponent = true;\nPureComponent.prototype.shouldComponentUpdate = function (props, state) {\n\treturn shallowDiffers(this.props, props) || shallowDiffers(this.state, state);\n};\n", "import { createElement } from 'preact';\nimport { shallowDiffers } from './util';\n\n/**\n * Memoize a component, so that it only updates when the props actually have\n * changed. This was previously known as `React.pure`.\n * @param {import('./internal').FunctionComponent} c functional component\n * @param {(prev: object, next: object) => boolean} [comparer] Custom equality function\n * @returns {import('./internal').FunctionComponent}\n */\nexport function memo(c, comparer) {\n\tfunction shouldUpdate(nextProps) {\n\t\tlet ref = this.props.ref;\n\t\tlet updateRef = ref == nextProps.ref;\n\t\tif (!updateRef && ref) {\n\t\t\tref.call ? ref(null) : (ref.current = null);\n\t\t}\n\n\t\tif (!comparer) {\n\t\t\treturn shallowDiffers(this.props, nextProps);\n\t\t}\n\n\t\treturn !comparer(this.props, nextProps) || !updateRef;\n\t}\n\n\tfunction Memoed(props) {\n\t\tthis.shouldComponentUpdate = shouldUpdate;\n\t\treturn createElement(c, props);\n\t}\n\tMemoed.displayName = 'Memo(' + (c.displayName || c.name) + ')';\n\tMemoed.prototype.isReactComponent = true;\n\tMemoed._forwarded = true;\n\treturn Memoed;\n}\n", "import { options } from 'preact';\nimport { assign } from './util';\n\nlet oldDiffHook = options._diff;\noptions._diff = vnode => {\n\tif (vnode.type && vnode.type._forwarded && vnode.ref) {\n\t\tvnode.props.ref = vnode.ref;\n\t\tvnode.ref = null;\n\t}\n\tif (oldDiffHook) oldDiffHook(vnode);\n};\n\nexport const REACT_FORWARD_SYMBOL =\n\t(typeof Symbol != 'undefined' &&\n\t\tSymbol.for &&\n\t\tSymbol.for('react.forward_ref')) ||\n\t0xf47;\n\n/**\n * Pass ref down to a child. This is mainly used in libraries with HOCs that\n * wrap components. Using `forwardRef` there is an easy way to get a reference\n * of the wrapped component instead of one of the wrapper itself.\n * @param {import('./index').ForwardFn} fn\n * @returns {import('./internal').FunctionComponent}\n */\nexport function forwardRef(fn) {\n\tfunction Forwarded(props) {\n\t\tlet clone = assign({}, props);\n\t\tdelete clone.ref;\n\t\treturn fn(clone, props.ref || null);\n\t}\n\n\t// mobx-react checks for this being present\n\tForwarded.$$typeof = REACT_FORWARD_SYMBOL;\n\t// mobx-react heavily relies on implementation details.\n\t// It expects an object here with a `render` property,\n\t// and prototype.render will fail. Without this\n\t// mobx-react throws.\n\tForwarded.render = Forwarded;\n\n\tForwarded.prototype.isReactComponent = Forwarded._forwarded = true;\n\tForwarded.displayName = 'ForwardRef(' + (fn.displayName || fn.name) + ')';\n\treturn Forwarded;\n}\n", "import { toChildArray } from 'preact';\n\nconst mapFn = (children, fn) => {\n\tif (children == null) return null;\n\treturn toChildArray(toChildArray(children).map(fn));\n};\n\n// This API is completely unnecessary for Preact, so it's basically passthrough.\nexport const Children = {\n\tmap: mapFn,\n\tforEach: mapFn,\n\tcount(children) {\n\t\treturn children ? toChildArray(children).length : 0;\n\t},\n\tonly(children) {\n\t\tconst normalized = toChildArray(children);\n\t\tif (normalized.length !== 1) throw 'Children.only';\n\t\treturn normalized[0];\n\t},\n\ttoArray: toChildArray\n};\n", "import { Component, createElement, options, Fragment } from 'preact';\nimport { MODE_HYDRATE } from '../../src/constants';\nimport { assign } from './util';\n\nconst oldCatchError = options._catchError;\noptions._catchError = function (error, newVNode, oldVNode, errorInfo) {\n\tif (error.then) {\n\t\t/** @type {import('./internal').Component} */\n\t\tlet component;\n\t\tlet vnode = newVNode;\n\n\t\tfor (; (vnode = vnode._parent); ) {\n\t\t\tif ((component = vnode._component) && component._childDidSuspend) {\n\t\t\t\tif (newVNode._dom == null) {\n\t\t\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t\t\t\tnewVNode._children = oldVNode._children;\n\t\t\t\t}\n\t\t\t\t// Don't call oldCatchError if we found a Suspense\n\t\t\t\treturn component._childDidSuspend(error, newVNode);\n\t\t\t}\n\t\t}\n\t}\n\toldCatchError(error, newVNode, oldVNode, errorInfo);\n};\n\nconst oldUnmount = options.unmount;\noptions.unmount = function (vnode) {\n\t/** @type {import('./internal').Component} */\n\tconst component = vnode._component;\n\tif (component && component._onResolve) {\n\t\tcomponent._onResolve();\n\t}\n\n\t// if the component is still hydrating\n\t// most likely it is because the component is suspended\n\t// we set the vnode.type as `null` so that it is not a typeof function\n\t// so the unmount will remove the vnode._dom\n\tif (component && vnode._flags & MODE_HYDRATE) {\n\t\tvnode.type = null;\n\t}\n\n\tif (oldUnmount) oldUnmount(vnode);\n};\n\nfunction detachedClone(vnode, detachedParent, parentDom) {\n\tif (vnode) {\n\t\tif (vnode._component && vnode._component.__hooks) {\n\t\t\tvnode._component.__hooks._list.forEach(effect => {\n\t\t\t\tif (typeof effect._cleanup == 'function') effect._cleanup();\n\t\t\t});\n\n\t\t\tvnode._component.__hooks = null;\n\t\t}\n\n\t\tvnode = assign({}, vnode);\n\t\tif (vnode._component != null) {\n\t\t\tif (vnode._component._parentDom === parentDom) {\n\t\t\t\tvnode._component._parentDom = detachedParent;\n\t\t\t}\n\t\t\tvnode._component = null;\n\t\t}\n\n\t\tvnode._children =\n\t\t\tvnode._children &&\n\t\t\tvnode._children.map(child =>\n\t\t\t\tdetachedClone(child, detachedParent, parentDom)\n\t\t\t);\n\t}\n\n\treturn vnode;\n}\n\nfunction removeOriginal(vnode, detachedParent, originalParent) {\n\tif (vnode && originalParent) {\n\t\tvnode._original = null;\n\t\tvnode._children =\n\t\t\tvnode._children &&\n\t\t\tvnode._children.map(child =>\n\t\t\t\tremoveOriginal(child, detachedParent, originalParent)\n\t\t\t);\n\n\t\tif (vnode._component) {\n\t\t\tif (vnode._component._parentDom === detachedParent) {\n\t\t\t\tif (vnode._dom) {\n\t\t\t\t\toriginalParent.appendChild(vnode._dom);\n\t\t\t\t}\n\t\t\t\tvnode._component._force = true;\n\t\t\t\tvnode._component._parentDom = originalParent;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn vnode;\n}\n\n// having custom inheritance instead of a class here saves a lot of bytes\nexport function Suspense() {\n\t// we do not call super here to golf some bytes...\n\tthis._pendingSuspensionCount = 0;\n\tthis._suspenders = null;\n\tthis._detachOnNextRender = null;\n}\n\n// Things we do here to save some bytes but are not proper JS inheritance:\n// - call `new Component()` as the prototype\n// - do not set `Suspense.prototype.constructor` to `Suspense`\nSuspense.prototype = new Component();\n\n/**\n * @this {import('./internal').SuspenseComponent}\n * @param {Promise} promise The thrown promise\n * @param {import('./internal').VNode<any, any>} suspendingVNode The suspending component\n */\nSuspense.prototype._childDidSuspend = function (promise, suspendingVNode) {\n\tconst suspendingComponent = suspendingVNode._component;\n\n\t/** @type {import('./internal').SuspenseComponent} */\n\tconst c = this;\n\n\tif (c._suspenders == null) {\n\t\tc._suspenders = [];\n\t}\n\tc._suspenders.push(suspendingComponent);\n\n\tconst resolve = suspended(c._vnode);\n\n\tlet resolved = false;\n\tconst onResolved = () => {\n\t\tif (resolved) return;\n\n\t\tresolved = true;\n\t\tsuspendingComponent._onResolve = null;\n\n\t\tif (resolve) {\n\t\t\tresolve(onSuspensionComplete);\n\t\t} else {\n\t\t\tonSuspensionComplete();\n\t\t}\n\t};\n\n\tsuspendingComponent._onResolve = onResolved;\n\n\tconst onSuspensionComplete = () => {\n\t\tif (!--c._pendingSuspensionCount) {\n\t\t\t// If the suspension was during hydration we don't need to restore the\n\t\t\t// suspended children into the _children array\n\t\t\tif (c.state._suspended) {\n\t\t\t\tconst suspendedVNode = c.state._suspended;\n\t\t\t\tc._vnode._children[0] = removeOriginal(\n\t\t\t\t\tsuspendedVNode,\n\t\t\t\t\tsuspendedVNode._component._parentDom,\n\t\t\t\t\tsuspendedVNode._component._originalParentDom\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tc.setState({ _suspended: (c._detachOnNextRender = null) });\n\n\t\t\tlet suspended;\n\t\t\twhile ((suspended = c._suspenders.pop())) {\n\t\t\t\tsuspended.forceUpdate();\n\t\t\t}\n\t\t}\n\t};\n\n\t/**\n\t * We do not set `suspended: true` during hydration because we want the actual markup\n\t * to remain on screen and hydrate it when the suspense actually gets resolved.\n\t * While in non-hydration cases the usual fallback -> component flow would occour.\n\t */\n\tif (\n\t\t!c._pendingSuspensionCount++ &&\n\t\t!(suspendingVNode._flags & MODE_HYDRATE)\n\t) {\n\t\tc.setState({ _suspended: (c._detachOnNextRender = c._vnode._children[0]) });\n\t}\n\tpromise.then(onResolved, onResolved);\n};\n\nSuspense.prototype.componentWillUnmount = function () {\n\tthis._suspenders = [];\n};\n\n/**\n * @this {import('./internal').SuspenseComponent}\n * @param {import('./internal').SuspenseComponent[\"props\"]} props\n * @param {import('./internal').SuspenseState} state\n */\nSuspense.prototype.render = function (props, state) {\n\tif (this._detachOnNextRender) {\n\t\t// When the Suspense's _vnode was created by a call to createVNode\n\t\t// (i.e. due to a setState further up in the tree)\n\t\t// it's _children prop is null, in this case we \"forget\" about the parked vnodes to detach\n\t\tif (this._vnode._children) {\n\t\t\tconst detachedParent = document.createElement('div');\n\t\t\tconst detachedComponent = this._vnode._children[0]._component;\n\t\t\tthis._vnode._children[0] = detachedClone(\n\t\t\t\tthis._detachOnNextRender,\n\t\t\t\tdetachedParent,\n\t\t\t\t(detachedComponent._originalParentDom = detachedComponent._parentDom)\n\t\t\t);\n\t\t}\n\n\t\tthis._detachOnNextRender = null;\n\t}\n\n\t// Wrap fallback tree in a VNode that prevents itself from being marked as aborting mid-hydration:\n\t/** @type {import('./internal').VNode} */\n\tconst fallback =\n\t\tstate._suspended && createElement(Fragment, null, props.fallback);\n\tif (fallback) fallback._flags &= ~MODE_HYDRATE;\n\n\treturn [\n\t\tcreateElement(Fragment, null, state._suspended ? null : props.children),\n\t\tfallback\n\t];\n};\n\n/**\n * Checks and calls the parent component's _suspended method, passing in the\n * suspended vnode. This is a way for a parent (e.g. SuspenseList) to get notified\n * that one of its children/descendants suspended.\n *\n * The parent MAY return a callback. The callback will get called when the\n * suspension resolves, notifying the parent of the fact.\n * Moreover, the callback gets function `unsuspend` as a parameter. The resolved\n * child descendant will not actually get unsuspended until `unsuspend` gets called.\n * This is a way for the parent to delay unsuspending.\n *\n * If the parent does not return a callback then the resolved vnode\n * gets unsuspended immediately when it resolves.\n *\n * @param {import('./internal').VNode} vnode\n * @returns {((unsuspend: () => void) => void)?}\n */\nexport function suspended(vnode) {\n\t/** @type {import('./internal').Component} */\n\tlet component = vnode._parent._component;\n\treturn component && component._suspended && component._suspended(vnode);\n}\n\nexport function lazy(loader) {\n\tlet prom;\n\tlet component;\n\tlet error;\n\n\tfunction Lazy(props) {\n\t\tif (!prom) {\n\t\t\tprom = loader();\n\t\t\tprom.then(\n\t\t\t\texports => {\n\t\t\t\t\tcomponent = exports.default || exports;\n\t\t\t\t},\n\t\t\t\te => {\n\t\t\t\t\terror = e;\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\n\t\tif (error) {\n\t\t\tthrow error;\n\t\t}\n\n\t\tif (!component) {\n\t\t\tthrow prom;\n\t\t}\n\n\t\treturn createElement(component, props);\n\t}\n\n\tLazy.displayName = 'Lazy';\n\tLazy._forwarded = true;\n\treturn Lazy;\n}\n", "import { Component, toChildArray } from 'preact';\nimport { suspended } from './suspense.js';\n\n// Indexes to linked list nodes (nodes are stored as arrays to save bytes).\nconst SUSPENDED_COUNT = 0;\nconst RESOLVED_COUNT = 1;\nconst NEXT_NODE = 2;\n\n// Having custom inheritance instead of a class here saves a lot of bytes.\nexport function SuspenseList() {\n\tthis._next = null;\n\tthis._map = null;\n}\n\n// Mark one of child's earlier suspensions as resolved.\n// Some pending callbacks may become callable due to this\n// (e.g. the last suspended descendant gets resolved when\n// revealOrder === 'together'). Process those callbacks as well.\nconst resolve = (list, child, node) => {\n\tif (++node[RESOLVED_COUNT] === node[SUSPENDED_COUNT]) {\n\t\t// The number a child (or any of its descendants) has been suspended\n\t\t// matches the number of times it's been resolved. Therefore we\n\t\t// mark the child as completely resolved by deleting it from ._map.\n\t\t// This is used to figure out when *all* children have been completely\n\t\t// resolved when revealOrder is 'together'.\n\t\tlist._map.delete(child);\n\t}\n\n\t// If revealOrder is falsy then we can do an early exit, as the\n\t// callbacks won't get queued in the node anyway.\n\t// If revealOrder is 'together' then also do an early exit\n\t// if all suspended descendants have not yet been resolved.\n\tif (\n\t\t!list.props.revealOrder ||\n\t\t(list.props.revealOrder[0] === 't' && list._map.size)\n\t) {\n\t\treturn;\n\t}\n\n\t// Walk the currently suspended children in order, calling their\n\t// stored callbacks on the way. Stop if we encounter a child that\n\t// has not been completely resolved yet.\n\tnode = list._next;\n\twhile (node) {\n\t\twhile (node.length > 3) {\n\t\t\tnode.pop()();\n\t\t}\n\t\tif (node[RESOLVED_COUNT] < node[SUSPENDED_COUNT]) {\n\t\t\tbreak;\n\t\t}\n\t\tlist._next = node = node[NEXT_NODE];\n\t}\n};\n\n// Things we do here to save some bytes but are not proper JS inheritance:\n// - call `new Component()` as the prototype\n// - do not set `Suspense.prototype.constructor` to `Suspense`\nSuspenseList.prototype = new Component();\n\nSuspenseList.prototype._suspended = function (child) {\n\tconst list = this;\n\tconst delegated = suspended(list._vnode);\n\n\tlet node = list._map.get(child);\n\tnode[SUSPENDED_COUNT]++;\n\n\treturn unsuspend => {\n\t\tconst wrappedUnsuspend = () => {\n\t\t\tif (!list.props.revealOrder) {\n\t\t\t\t// Special case the undefined (falsy) revealOrder, as there\n\t\t\t\t// is no need to coordinate a specific order or unsuspends.\n\t\t\t\tunsuspend();\n\t\t\t} else {\n\t\t\t\tnode.push(unsuspend);\n\t\t\t\tresolve(list, child, node);\n\t\t\t}\n\t\t};\n\t\tif (delegated) {\n\t\t\tdelegated(wrappedUnsuspend);\n\t\t} else {\n\t\t\twrappedUnsuspend();\n\t\t}\n\t};\n};\n\nSuspenseList.prototype.render = function (props) {\n\tthis._next = null;\n\tthis._map = new Map();\n\n\tconst children = toChildArray(props.children);\n\tif (props.revealOrder && props.revealOrder[0] === 'b') {\n\t\t// If order === 'backwards' (or, well, anything starting with a 'b')\n\t\t// then flip the child list around so that the last child will be\n\t\t// the first in the linked list.\n\t\tchildren.reverse();\n\t}\n\t// Build the linked list. Iterate through the children in reverse order\n\t// so that `_next` points to the first linked list node to be resolved.\n\tfor (let i = children.length; i--; ) {\n\t\t// Create a new linked list node as an array of form:\n\t\t// \t[suspended_count, resolved_count, next_node]\n\t\t// where suspended_count and resolved_count are numeric counters for\n\t\t// keeping track how many times a node has been suspended and resolved.\n\t\t//\n\t\t// Note that suspended_count starts from 1 instead of 0, so we can block\n\t\t// processing callbacks until componentDidMount has been called. In a sense\n\t\t// node is suspended at least until componentDidMount gets called!\n\t\t//\n\t\t// Pending callbacks are added to the end of the node:\n\t\t// \t[suspended_count, resolved_count, next_node, callback_0, callback_1, ...]\n\t\tthis._map.set(children[i], (this._next = [1, 0, this._next]));\n\t}\n\treturn props.children;\n};\n\nSuspenseList.prototype.componentDidUpdate =\n\tSuspenseList.prototype.componentDidMount = function () {\n\t\t// Iterate through all children after mounting for two reasons:\n\t\t// 1. As each node[SUSPENDED_COUNT] starts from 1, this iteration increases\n\t\t//    each node[RELEASED_COUNT] by 1, therefore balancing the counters.\n\t\t//    The nodes can now be completely consumed from the linked list.\n\t\t// 2. Handle nodes that might have gotten resolved between render and\n\t\t//    componentDidMount.\n\t\tthis._map.forEach((node, child) => {\n\t\t\tresolve(this, child, node);\n\t\t});\n\t};\n", "/** Normal hydration that attaches to a DOM tree but does not diff it. */\nexport const MODE_HYDRATE = 1 << 5;\n/** Signifies this VNode suspended on the previous render */\nexport const MODE_SUSPENDED = 1 << 7;\n/** Indicates that this node needs to be inserted while patching children */\nexport const INSERT_VNODE = 1 << 2;\n/** Indicates a VNode has been matched with another VNode in the diff */\nexport const MATCHED = 1 << 1;\n\n/** Reset all mode flags */\nexport const RESET_MODE = ~(MODE_HYDRATE | MODE_SUSPENDED);\n\nexport const SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\nexport const XHTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\nexport const MATH_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\n\nexport const NULL = null;\nexport const UNDEFINED = undefined;\nexport const EMPTY_OBJ = /** @type {any} */ ({});\nexport const EMPTY_ARR = [];\nexport const IS_NON_DIMENSIONAL =\n\t/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;\n", "import { createElement, render } from 'preact';\n\n/**\n * @param {import('../../src/index').RenderableProps<{ context: any }>} props\n */\nfunction ContextProvider(props) {\n\tthis.getChildContext = () => props.context;\n\treturn props.children;\n}\n\n/**\n * Portal component\n * @this {import('./internal').Component}\n * @param {object | null | undefined} props\n *\n * TODO: use createRoot() instead of fake root\n */\nfunction Portal(props) {\n\tconst _this = this;\n\tlet container = props._container;\n\n\t_this.componentWillUnmount = function () {\n\t\trender(null, _this._temp);\n\t\t_this._temp = null;\n\t\t_this._container = null;\n\t};\n\n\t// When we change container we should clear our old container and\n\t// indicate a new mount.\n\tif (_this._container && _this._container !== container) {\n\t\t_this.componentWillUnmount();\n\t}\n\n\tif (!_this._temp) {\n\t\t_this._container = container;\n\n\t\t// Create a fake DOM parent node that manages a subset of `container`'s children:\n\t\t_this._temp = {\n\t\t\tnodeType: 1,\n\t\t\tparentNode: container,\n\t\t\tchildNodes: [],\n\t\t\tcontains: () => true,\n\t\t\t// Technically this isn't needed\n\t\t\tappendChild(child) {\n\t\t\t\tthis.childNodes.push(child);\n\t\t\t\t_this._container.appendChild(child);\n\t\t\t},\n\t\t\tinsertBefore(child, before) {\n\t\t\t\tthis.childNodes.push(child);\n\t\t\t\t_this._container.insertBefore(child, before);\n\t\t\t},\n\t\t\tremoveChild(child) {\n\t\t\t\tthis.childNodes.splice(this.childNodes.indexOf(child) >>> 1, 1);\n\t\t\t\t_this._container.removeChild(child);\n\t\t\t}\n\t\t};\n\t}\n\n\t// Render our wrapping element into temp.\n\trender(\n\t\tcreateElement(ContextProvider, { context: _this.context }, props._vnode),\n\t\t_this._temp\n\t);\n}\n\n/**\n * Create a `Portal` to continue rendering the vnode tree at a different DOM node\n * @param {import('./internal').VNode} vnode The vnode to render\n * @param {import('./internal').PreactElement} container The DOM node to continue rendering in to.\n */\nexport function createPortal(vnode, container) {\n\tconst el = createElement(Portal, { _vnode: vnode, _container: container });\n\tel.containerInfo = container;\n\treturn el;\n}\n", "import {\n\trender as preactRender,\n\thydrate as preactHydrate,\n\toptions,\n\ttoChildArray,\n\tComponent\n} from 'preact';\nimport {\n\tuseCallback,\n\tuseContext,\n\tuseDebugValue,\n\tuseEffect,\n\tuseId,\n\tuseImperativeHandle,\n\tuseLayoutEffect,\n\tuseMemo,\n\tuseReducer,\n\tuseRef,\n\tuseState\n} from 'preact/hooks';\nimport {\n\tuseDeferredValue,\n\tuseInsertionEffect,\n\tuseSyncExternalStore,\n\tuseTransition\n} from './index';\n\nexport const REACT_ELEMENT_TYPE =\n\t(typeof Symbol != 'undefined' && Symbol.for && Symbol.for('react.element')) ||\n\t0xeac7;\n\nconst CAMEL_PROPS =\n\t/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/;\nconst ON_ANI = /^on(Ani|Tra|Tou|BeforeInp|Compo)/;\nconst CAMEL_REPLACE = /[A-Z0-9]/g;\nconst IS_DOM = typeof document !== 'undefined';\n\n// Input types for which onchange should not be converted to oninput.\n// type=\"file|checkbox|radio\", plus \"range\" in IE11.\n// (IE11 doesn't support Symbol, which we use here to turn `rad` into `ra` which matches \"range\")\nconst onChangeInputType = type =>\n\t(typeof Symbol != 'undefined' && typeof Symbol() == 'symbol'\n\t\t? /fil|che|rad/\n\t\t: /fil|che|ra/\n\t).test(type);\n\n// Some libraries like `react-virtualized` explicitly check for this.\nComponent.prototype.isReactComponent = {};\n\n// `UNSAFE_*` lifecycle hooks\n// Preact only ever invokes the unprefixed methods.\n// Here we provide a base \"fallback\" implementation that calls any defined UNSAFE_ prefixed method.\n// - If a component defines its own `componentDidMount()` (including via defineProperty), use that.\n// - If a component defines `UNSAFE_componentDidMount()`, `componentDidMount` is the alias getter/setter.\n// - If anything assigns to an `UNSAFE_*` property, the assignment is forwarded to the unprefixed property.\n// See https://github.com/preactjs/preact/issues/1941\n[\n\t'componentWillMount',\n\t'componentWillReceiveProps',\n\t'componentWillUpdate'\n].forEach(key => {\n\tObject.defineProperty(Component.prototype, key, {\n\t\tconfigurable: true,\n\t\tget() {\n\t\t\treturn this['UNSAFE_' + key];\n\t\t},\n\t\tset(v) {\n\t\t\tObject.defineProperty(this, key, {\n\t\t\t\tconfigurable: true,\n\t\t\t\twritable: true,\n\t\t\t\tvalue: v\n\t\t\t});\n\t\t}\n\t});\n});\n\n/**\n * Proxy render() since React returns a Component reference.\n * @param {import('./internal').VNode} vnode VNode tree to render\n * @param {import('./internal').PreactElement} parent DOM node to render vnode tree into\n * @param {() => void} [callback] Optional callback that will be called after rendering\n * @returns {import('./internal').Component | null} The root component reference or null\n */\nexport function render(vnode, parent, callback) {\n\t// React destroys any existing DOM nodes, see #1727\n\t// ...but only on the first render, see #1828\n\tif (parent._children == null) {\n\t\tparent.textContent = '';\n\t}\n\n\tpreactRender(vnode, parent);\n\tif (typeof callback == 'function') callback();\n\n\treturn vnode ? vnode._component : null;\n}\n\nexport function hydrate(vnode, parent, callback) {\n\tpreactHydrate(vnode, parent);\n\tif (typeof callback == 'function') callback();\n\n\treturn vnode ? vnode._component : null;\n}\n\nlet oldEventHook = options.event;\noptions.event = e => {\n\tif (oldEventHook) e = oldEventHook(e);\n\n\te.persist = empty;\n\te.isPropagationStopped = isPropagationStopped;\n\te.isDefaultPrevented = isDefaultPrevented;\n\treturn (e.nativeEvent = e);\n};\n\nfunction empty() {}\n\nfunction isPropagationStopped() {\n\treturn this.cancelBubble;\n}\n\nfunction isDefaultPrevented() {\n\treturn this.defaultPrevented;\n}\n\nconst classNameDescriptorNonEnumberable = {\n\tenumerable: false,\n\tconfigurable: true,\n\tget() {\n\t\treturn this.class;\n\t}\n};\n\nfunction handleDomVNode(vnode) {\n\tlet props = vnode.props,\n\t\ttype = vnode.type,\n\t\tnormalizedProps = {};\n\n\tlet isNonDashedType = type.indexOf('-') === -1;\n\tfor (let i in props) {\n\t\tlet value = props[i];\n\n\t\tif (\n\t\t\t(i === 'value' && 'defaultValue' in props && value == null) ||\n\t\t\t// Emulate React's behavior of not rendering the contents of noscript tags on the client.\n\t\t\t(IS_DOM && i === 'children' && type === 'noscript') ||\n\t\t\ti === 'class' ||\n\t\t\ti === 'className'\n\t\t) {\n\t\t\t// Skip applying value if it is null/undefined and we already set\n\t\t\t// a default value\n\t\t\tcontinue;\n\t\t}\n\n\t\tlet lowerCased = i.toLowerCase();\n\t\tif (i === 'defaultValue' && 'value' in props && props.value == null) {\n\t\t\t// `defaultValue` is treated as a fallback `value` when a value prop is present but null/undefined.\n\t\t\t// `defaultValue` for Elements with no value prop is the same as the DOM defaultValue property.\n\t\t\ti = 'value';\n\t\t} else if (i === 'download' && value === true) {\n\t\t\t// Calling `setAttribute` with a truthy value will lead to it being\n\t\t\t// passed as a stringified value, e.g. `download=\"true\"`. React\n\t\t\t// converts it to an empty string instead, otherwise the attribute\n\t\t\t// value will be used as the file name and the file will be called\n\t\t\t// \"true\" upon downloading it.\n\t\t\tvalue = '';\n\t\t} else if (lowerCased === 'translate' && value === 'no') {\n\t\t\tvalue = false;\n\t\t} else if (lowerCased[0] === 'o' && lowerCased[1] === 'n') {\n\t\t\tif (lowerCased === 'ondoubleclick') {\n\t\t\t\ti = 'ondblclick';\n\t\t\t} else if (\n\t\t\t\tlowerCased === 'onchange' &&\n\t\t\t\t(type === 'input' || type === 'textarea') &&\n\t\t\t\t!onChangeInputType(props.type)\n\t\t\t) {\n\t\t\t\tlowerCased = i = 'oninput';\n\t\t\t} else if (lowerCased === 'onfocus') {\n\t\t\t\ti = 'onfocusin';\n\t\t\t} else if (lowerCased === 'onblur') {\n\t\t\t\ti = 'onfocusout';\n\t\t\t} else if (ON_ANI.test(i)) {\n\t\t\t\ti = lowerCased;\n\t\t\t}\n\t\t} else if (isNonDashedType && CAMEL_PROPS.test(i)) {\n\t\t\ti = i.replace(CAMEL_REPLACE, '-$&').toLowerCase();\n\t\t} else if (value === null) {\n\t\t\tvalue = undefined;\n\t\t}\n\n\t\t// Add support for onInput and onChange, see #3561\n\t\t// if we have an oninput prop already change it to oninputCapture\n\t\tif (lowerCased === 'oninput') {\n\t\t\ti = lowerCased;\n\t\t\tif (normalizedProps[i]) {\n\t\t\t\ti = 'oninputCapture';\n\t\t\t}\n\t\t}\n\n\t\tnormalizedProps[i] = value;\n\t}\n\n\t// Add support for array select values: <select multiple value={[]} />\n\tif (\n\t\ttype == 'select' &&\n\t\tnormalizedProps.multiple &&\n\t\tArray.isArray(normalizedProps.value)\n\t) {\n\t\t// forEach() always returns undefined, which we abuse here to unset the value prop.\n\t\tnormalizedProps.value = toChildArray(props.children).forEach(child => {\n\t\t\tchild.props.selected =\n\t\t\t\tnormalizedProps.value.indexOf(child.props.value) != -1;\n\t\t});\n\t}\n\n\t// Adding support for defaultValue in select tag\n\tif (type == 'select' && normalizedProps.defaultValue != null) {\n\t\tnormalizedProps.value = toChildArray(props.children).forEach(child => {\n\t\t\tif (normalizedProps.multiple) {\n\t\t\t\tchild.props.selected =\n\t\t\t\t\tnormalizedProps.defaultValue.indexOf(child.props.value) != -1;\n\t\t\t} else {\n\t\t\t\tchild.props.selected =\n\t\t\t\t\tnormalizedProps.defaultValue == child.props.value;\n\t\t\t}\n\t\t});\n\t}\n\n\tif (props.class && !props.className) {\n\t\tnormalizedProps.class = props.class;\n\t\tObject.defineProperty(\n\t\t\tnormalizedProps,\n\t\t\t'className',\n\t\t\tclassNameDescriptorNonEnumberable\n\t\t);\n\t} else if (props.className && !props.class) {\n\t\tnormalizedProps.class = normalizedProps.className = props.className;\n\t} else if (props.class && props.className) {\n\t\tnormalizedProps.class = normalizedProps.className = props.className;\n\t}\n\n\tvnode.props = normalizedProps;\n}\n\nlet oldVNodeHook = options.vnode;\noptions.vnode = vnode => {\n\t// only normalize props on Element nodes\n\tif (typeof vnode.type === 'string') {\n\t\thandleDomVNode(vnode);\n\t}\n\n\tvnode.$$typeof = REACT_ELEMENT_TYPE;\n\n\tif (oldVNodeHook) oldVNodeHook(vnode);\n};\n\n// Only needed for react-relay\nlet currentComponent;\nconst oldBeforeRender = options._render;\noptions._render = function (vnode) {\n\tif (oldBeforeRender) {\n\t\toldBeforeRender(vnode);\n\t}\n\tcurrentComponent = vnode._component;\n};\n\nconst oldDiffed = options.diffed;\n/** @type {(vnode: import('./internal').VNode) => void} */\noptions.diffed = function (vnode) {\n\tif (oldDiffed) {\n\t\toldDiffed(vnode);\n\t}\n\n\tconst props = vnode.props;\n\tconst dom = vnode._dom;\n\n\tif (\n\t\tdom != null &&\n\t\tvnode.type === 'textarea' &&\n\t\t'value' in props &&\n\t\tprops.value !== dom.value\n\t) {\n\t\tdom.value = props.value == null ? '' : props.value;\n\t}\n\n\tcurrentComponent = null;\n};\n\n// This is a very very private internal function for React it\n// is used to sort-of do runtime dependency injection.\nexport const __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {\n\tReactCurrentDispatcher: {\n\t\tcurrent: {\n\t\t\treadContext(context) {\n\t\t\t\treturn currentComponent._globalContext[context._id].props.value;\n\t\t\t},\n\t\t\tuseCallback,\n\t\t\tuseContext,\n\t\t\tuseDebugValue,\n\t\t\tuseDeferredValue,\n\t\t\tuseEffect,\n\t\t\tuseId,\n\t\t\tuseImperativeHandle,\n\t\t\tuseInsertionEffect,\n\t\t\tuseLayoutEffect,\n\t\t\tuseMemo,\n\t\t\t// useMutableSource, // experimental-only and replaced by uSES, likely not worth supporting\n\t\t\tuseReducer,\n\t\t\tuseRef,\n\t\t\tuseState,\n\t\t\tuseSyncExternalStore,\n\t\t\tuseTransition\n\t\t}\n\t}\n};\n", "import {\n\tcreateElement,\n\trender as preactRender,\n\tcloneElement as preactCloneElement,\n\tcreateRef,\n\tComponent,\n\tcreateContext,\n\tFragment\n} from 'preact';\nimport {\n\tuseState,\n\tuseId,\n\tuseReducer,\n\tuseEffect,\n\tuseLayoutEffect,\n\tuseRef,\n\tuseImperativeHandle,\n\tuseMemo,\n\tuseCallback,\n\tuseContext,\n\tuseDebugValue\n} from 'preact/hooks';\nimport {\n\tuseInsertionEffect,\n\tstartTransition,\n\tuseDeferredValue,\n\tuseSyncExternalStore,\n\tuseTransition\n} from './hooks';\nimport { PureComponent } from './PureComponent';\nimport { memo } from './memo';\nimport { forwardRef } from './forwardRef';\nimport { Children } from './Children';\nimport { Suspense, lazy } from './suspense';\nimport { SuspenseList } from './suspense-list';\nimport { createPortal } from './portals';\nimport {\n\thydrate,\n\trender,\n\tREACT_ELEMENT_TYPE,\n\t__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\n} from './render';\n\nconst version = '18.3.1'; // trick libraries to think we are react\n\n/**\n * Legacy version of createElement.\n * @param {import('./internal').VNode[\"type\"]} type The node name or Component constructor\n */\nfunction createFactory(type) {\n\treturn createElement.bind(null, type);\n}\n\n/**\n * Check if the passed element is a valid (p)react node.\n * @param {*} element The element to check\n * @returns {boolean}\n */\nfunction isValidElement(element) {\n\treturn !!element && element.$$typeof === REACT_ELEMENT_TYPE;\n}\n\n/**\n * Check if the passed element is a Fragment node.\n * @param {*} element The element to check\n * @returns {boolean}\n */\nfunction isFragment(element) {\n\treturn isValidElement(element) && element.type === Fragment;\n}\n\n/**\n * Check if the passed element is a Memo node.\n * @param {*} element The element to check\n * @returns {boolean}\n */\nfunction isMemo(element) {\n\treturn (\n\t\t!!element &&\n\t\t!!element.displayName &&\n\t\t(typeof element.displayName === 'string' ||\n\t\t\telement.displayName instanceof String) &&\n\t\telement.displayName.startsWith('Memo(')\n\t);\n}\n\n/**\n * Wrap `cloneElement` to abort if the passed element is not a valid element and apply\n * all vnode normalizations.\n * @param {import('./internal').VNode} element The vnode to clone\n * @param {object} props Props to add when cloning\n * @param {Array<import('./internal').ComponentChildren>} rest Optional component children\n */\nfunction cloneElement(element) {\n\tif (!isValidElement(element)) return element;\n\treturn preactCloneElement.apply(null, arguments);\n}\n\n/**\n * Remove a component tree from the DOM, including state and event handlers.\n * @param {import('./internal').PreactElement} container\n * @returns {boolean}\n */\nfunction unmountComponentAtNode(container) {\n\tif (container._children) {\n\t\tpreactRender(null, container);\n\t\treturn true;\n\t}\n\treturn false;\n}\n\n/**\n * Get the matching DOM node for a component\n * @param {import('./internal').Component} component\n * @returns {import('./internal').PreactElement | null}\n */\nfunction findDOMNode(component) {\n\treturn (\n\t\t(component &&\n\t\t\t(component.base || (component.nodeType === 1 && component))) ||\n\t\tnull\n\t);\n}\n\n/**\n * Deprecated way to control batched rendering inside the reconciler, but we\n * already schedule in batches inside our rendering code\n * @template Arg\n * @param {(arg: Arg) => void} callback function that triggers the updated\n * @param {Arg} [arg] Optional argument that can be passed to the callback\n */\n// eslint-disable-next-line camelcase\nconst unstable_batchedUpdates = (callback, arg) => callback(arg);\n\n/**\n * In React, `flushSync` flushes the entire tree and forces a rerender. It's\n * implmented here as a no-op.\n * @template Arg\n * @template Result\n * @param {(arg: Arg) => Result} callback function that runs before the flush\n * @param {Arg} [arg] Optional argument that can be passed to the callback\n * @returns\n */\nconst flushSync = (callback, arg) => callback(arg);\n\n/**\n * Strict Mode is not implemented in Preact, so we provide a stand-in for it\n * that just renders its children without imposing any restrictions.\n */\nconst StrictMode = Fragment;\n\n// compat to react-is\nexport const isElement = isValidElement;\n\nexport * from 'preact/hooks';\nexport {\n\tversion,\n\tChildren,\n\trender,\n\thydrate,\n\tunmountComponentAtNode,\n\tcreatePortal,\n\tcreateElement,\n\tcreateContext,\n\tcreateFactory,\n\tcloneElement,\n\tcreateRef,\n\tFragment,\n\tisValidElement,\n\tisFragment,\n\tisMemo,\n\tfindDOMNode,\n\tComponent,\n\tPureComponent,\n\tmemo,\n\tforwardRef,\n\tflushSync,\n\tuseInsertionEffect,\n\tstartTransition,\n\tuseDeferredValue,\n\tuseSyncExternalStore,\n\tuseTransition,\n\t// eslint-disable-next-line camelcase\n\tunstable_batchedUpdates,\n\tStrictMode,\n\tSuspense,\n\tSuspenseList,\n\tlazy,\n\t__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\n};\n\n// React copies the named exports to the default one.\nexport default {\n\tuseState,\n\tuseId,\n\tuseReducer,\n\tuseEffect,\n\tuseLayoutEffect,\n\tuseInsertionEffect,\n\tuseTransition,\n\tuseDeferredValue,\n\tuseSyncExternalStore,\n\tstartTransition,\n\tuseRef,\n\tuseImperativeHandle,\n\tuseMemo,\n\tuseCallback,\n\tuseContext,\n\tuseDebugValue,\n\tversion,\n\tChildren,\n\trender,\n\thydrate,\n\tunmountComponentAtNode,\n\tcreatePortal,\n\tcreateElement,\n\tcreateContext,\n\tcreateFactory,\n\tcloneElement,\n\tcreateRef,\n\tFragment,\n\tisValidElement,\n\tisElement,\n\tisFragment,\n\tisMemo,\n\tfindDOMNode,\n\tComponent,\n\tPureComponent,\n\tmemo,\n\tforwardRef,\n\tflushSync,\n\tunstable_batchedUpdates,\n\tStrictMode,\n\tSuspense,\n\tSuspenseList,\n\tlazy,\n\t__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\n};\n"],
  "mappings": "wDCWO,SAASA,EAAOC,EAAKC,EAAAA,CAE3B,QAASC,KAAKD,EAAOD,EAAIE,CAAAA,EAAKD,EAAMC,CAAAA,EACpC,OAA6BF,CAC9B,CAQgB,SAAAG,GAAWC,EAAAA,CACtBA,GAAQA,EAAKC,YAAYD,EAAKC,WAAWC,YAAYF,CAAAA,CAC1D,CEVgB,SAAAG,EAAcC,EAAMP,EAAOQ,EAAAA,CAC1C,IACCC,EACAC,EACAT,EAHGU,EAAkB,CAAA,EAItB,IAAKV,KAAKD,EACLC,GAAK,MAAOQ,EAAMT,EAAMC,CAAAA,EACnBA,GAAK,MAAOS,EAAMV,EAAMC,CAAAA,EAC5BU,EAAgBV,CAAAA,EAAKD,EAAMC,CAAAA,EAUjC,GAPIW,UAAUC,OAAS,IACtBF,EAAgBH,SACfI,UAAUC,OAAS,EAAIC,EAAMC,KAAKH,UAAW,CAAA,EAAKJ,GAKjC,OAARD,GAAQ,YAAcA,EAAKS,cHjBnB,KGkBlB,IAAKf,KAAKM,EAAKS,aACVL,EAAgBV,CAAAA,IADNe,SAEbL,EAAgBV,CAAAA,EAAKM,EAAKS,aAAaf,CAAAA,GAK1C,OAAOgB,EAAYV,EAAMI,EAAiBF,EAAKC,EHzB5B,IAAA,CG0BpB,CAcgB,SAAAO,EAAYV,EAAMP,EAAOS,EAAKC,EAAKQ,EAAAA,CAIlD,IAAMC,EAAQ,CACbZ,KAAAA,EACAP,MAAAA,EACAS,IAAAA,EACAC,IAAAA,EACAU,IHjDkB,KGkDlBC,GHlDkB,KGmDlBC,IAAQ,EACRC,IHpDkB,KGqDlBC,IHrDkB,KGsDlBC,YAAAA,OACAC,IAAWR,GAAAA,EAAqBS,GAChCC,IAAAA,GACAC,IAAQ,CAAA,EAMT,OAFIX,GH7De,MG6DKY,EAAQX,OH7Db,MG6D4BW,EAAQX,MAAMA,CAAAA,EAEtDA,CACR,CAAA,SAEgBY,IAAAA,CACf,MAAO,CAAEC,QHnEU,IAAA,CGoEpB,CAEgB,SAAAC,EAASjC,EAAAA,CACxB,OAAOA,EAAMQ,QACd,CC3EO,SAAS0B,EAAclC,EAAOmC,EAAAA,CACpCC,KAAKpC,MAAQA,EACboC,KAAKD,QAAUA,CAChB,CAAA,SA0EgBE,EAAclB,EAAOmB,EAAAA,CACpC,GAAIA,GJ3Ee,KI6ElB,OAAOnB,EAAKE,GACTgB,EAAclB,EAAKE,GAAUF,EAAKS,IAAU,CAAA,EJ9E7B,KImFnB,QADIW,EACGD,EAAanB,EAAKC,IAAWP,OAAQyB,IAG3C,IAFAC,EAAUpB,EAAKC,IAAWkB,CAAAA,IJpFR,MIsFKC,EAAOhB,KJtFZ,KI0FjB,OAAOgB,EAAOhB,IAShB,OAA4B,OAAdJ,EAAMZ,MAAQ,WAAa8B,EAAclB,CAAAA,EJnGpC,IIoGpB,CA2CA,SAASqB,GAAwBrB,EAAAA,CAAjC,IAGWlB,EACJwC,EAHN,IAAKtB,EAAQA,EAAKE,KJhJC,MIgJoBF,EAAKK,KJhJzB,KIgJ8C,CAEhE,IADAL,EAAKI,IAAQJ,EAAKK,IAAYkB,KJjJZ,KIkJTzC,EAAI,EAAGA,EAAIkB,EAAKC,IAAWP,OAAQZ,IAE3C,IADIwC,EAAQtB,EAAKC,IAAWnB,CAAAA,IJnJX,MIoJIwC,EAAKlB,KJpJT,KIoJwB,CACxCJ,EAAKI,IAAQJ,EAAKK,IAAYkB,KAAOD,EAAKlB,IAC1C,KACD,CAGD,OAAOiB,GAAwBrB,CAAAA,CAChC,CACD,CA4BgB,SAAAwB,GAAcC,EAAAA,EAAAA,CAE1BA,EAACC,MACDD,EAACC,IAAAA,KACFC,EAAcC,KAAKH,CAAAA,GAAAA,CAClBI,GAAOC,OACTC,KAAiBpB,EAAQqB,sBAEzBD,GAAepB,EAAQqB,oBACNC,IAAOJ,EAAAA,CAE1B,CASA,SAASA,IAAAA,CAMR,QALIJ,EAnGoBS,EAOjBC,EANHC,EACHC,EACAC,EACAC,EAgGAC,EAAI,EAIEb,EAAcjC,QAOhBiC,EAAcjC,OAAS8C,GAC1Bb,EAAcc,KAAKC,EAAAA,EAGpBjB,EAAIE,EAAcgB,MAAAA,EAClBH,EAAIb,EAAcjC,OAEd+B,EAACC,MA/GCS,EAAAA,OALNE,GADGD,GADoBF,EAuHNT,GAtHMlB,KACNH,IACjBkC,EAAc,CAAA,EACdC,EAAW,CAAA,EAERL,EAASU,OACNT,EAAWxD,EAAO,CAAA,EAAIyD,CAAAA,GACpB7B,IAAa6B,EAAQ7B,IAAa,EACtCI,EAAQX,OAAOW,EAAQX,MAAMmC,CAAAA,EAEjCU,GACCX,EAASU,IACTT,EACAC,EACAF,EAASY,IACTZ,EAASU,IAAYG,aJzII,GI0IzBX,EAAQ1B,IAAyB,CAAC2B,CAAAA,EJ3HjB,KI4HjBC,EACAD,GAAiBnB,EAAckB,CAAAA,EAAYC,CAAAA,EJ5IlB,GI6ItBD,EAAQ1B,KACX6B,CAAAA,EAGDJ,EAAQ5B,IAAa6B,EAAQ7B,IAC7B4B,EAAQjC,GAAAD,IAAmBkC,EAAQ1B,GAAAA,EAAW0B,EAC9Ca,GAAWV,EAAaH,EAAUI,CAAAA,EAE9BJ,EAAQ/B,KAASiC,GACpBhB,GAAwBc,CAAAA,IA6F1BN,GAAOC,IAAkB,CAC1B,CG3MgB,SAAAmB,GACfC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAlB,EACAD,EACAoB,EACAlB,EAAAA,CAXe,IAaXzD,EAEHsD,EAEAsB,EAEAC,EAEAC,EAiCIC,EA5BDC,EAAeT,GAAkBA,EAAcpD,KAAe8D,GAE9DC,EAAoBb,EAAazD,OAUrC,IARA2C,EAAS4B,GACRb,EACAD,EACAW,EACAzB,EACA2B,CAAAA,EAGIlF,EAAI,EAAGA,EAAIkF,EAAmBlF,KAClC4E,EAAaN,EAAcnD,IAAWnB,CAAAA,IPjEpB,OOuEjBsD,EADGsB,EAAUjD,MACb2B,GAAW8B,EAEAJ,EAAYJ,EAAUjD,GAAAA,GAAYyD,EAI9CR,EAAUjD,IAAU3B,EAGhB+E,EAAShB,GACZK,EACAQ,EACAtB,EACAkB,EACAC,EACAC,EACAlB,EACAD,EACAoB,EACAlB,CAAAA,EAIDoB,EAASD,EAAUtD,IACfsD,EAAWnE,KAAO6C,EAAS7C,KAAOmE,EAAWnE,MAC5C6C,EAAS7C,KACZ4E,GAAS/B,EAAS7C,IPjGF,KOiGamE,CAAAA,EAE9BnB,EAASX,KACR8B,EAAWnE,IACXmE,EAAUrD,KAAesD,EACzBD,CAAAA,GAIEE,GP1Gc,MO0GWD,GP1GX,OO2GjBC,EAAgBD,GPtHS,EO0HzBD,EAAUhD,KACV0B,EAAQnC,MAAeyD,EAAUzD,IAEjCoC,EAAS+B,GAAOV,EAAYrB,EAAQa,CAAAA,EACA,OAAnBQ,EAAWtE,MAAQ,YAAcyE,IAAtBzE,OAC5BiD,EAASwB,EACCF,IACVtB,EAASsB,EAAOU,aAIjBX,EAAUhD,KAAAA,IAKX,OAFA0C,EAAchD,IAAQwD,EAEfvB,CACR,CAOA,SAAS4B,GACRb,EACAD,EACAW,EACAzB,EACA2B,EAAAA,CALD,IAQKlF,EAEA4E,EAEAtB,EA8DGkC,EAOAC,EAnEHC,EAAoBV,EAAYpE,OACnC+E,EAAuBD,EAEpBE,EAAO,EAGX,IADAtB,EAAcnD,IAAa,IAAI0E,MAAMX,CAAAA,EAChClF,EAAI,EAAGA,EAAIkF,EAAmBlF,KAGlC4E,EAAaP,EAAarE,CAAAA,IP9JR,MOkKI,OAAd4E,GAAc,WACA,OAAdA,GAAc,YA8ChBY,EAAcxF,EAAI4F,GA/BvBhB,EAAaN,EAAcnD,IAAWnB,CAAAA,EANjB,OAAd4E,GAAc,UACA,OAAdA,GAAc,UAEA,OAAdA,GAAc,UACrBA,EAAWpD,aAAesE,OAEiB9E,EPlL1B,KOoLhB4D,EPpLgB,KAAA,KAAA,IAAA,EOyLPmB,GAAQnB,CAAAA,EACyB5D,EAC1CgB,EACA,CAAEzB,SAAUqE,CAAAA,EP5LI,KAAA,KAAA,IAAA,EOiMPA,EAAWpD,cPjMJ,QOiMiCoD,EAAUvD,IAAU,EAK3BL,EAC1C4D,EAAWtE,KACXsE,EAAW7E,MACX6E,EAAWpE,IACXoE,EAAWnE,IAAMmE,EAAWnE,IP1MZ,KO2MhBmE,EAAUnD,GAAAA,EAGgCmD,GAIlCxD,GAAWkD,EACrBM,EAAUvD,IAAUiD,EAAcjD,IAAU,EAY5CiC,EP/NkB,MOwNZmC,EAAiBb,EAAUjD,IAAUqE,GAC1CpB,EACAI,EACAQ,EACAG,CAAAA,KP5NiB,KOkOjBA,KADArC,EAAW0B,EAAYS,CAAAA,KAGtBnC,EAAQ1B,KP7OW,IOoPF0B,GP3OD,MO2OqBA,EAAQ7B,MP3O7B,MO8ObgE,GAH0ChE,IAI7CmE,IAI6B,OAAnBhB,EAAWtE,MAAQ,aAC7BsE,EAAUhD,KP/Pc,IOiQf6D,GAAiBD,IAiBvBC,GAAiBD,EAAc,EAClCI,IACUH,GAAiBD,EAAc,EACzCI,KAEIH,EAAgBD,EACnBI,IAEAA,IAMDhB,EAAUhD,KPhSc,KOgLzB0C,EAAcnD,IAAWnB,CAAAA,EPrKR,KO8RnB,GAAI2F,EACH,IAAK3F,EAAI,EAAGA,EAAI0F,EAAmB1F,KAClCsD,EAAW0B,EAAYhF,CAAAA,IPhSN,OATG,EO0SKsD,EAAQ1B,MAAsB,IAClD0B,EAAQhC,KAASiC,IACpBA,EAASnB,EAAckB,CAAAA,GAGxB2C,GAAQ3C,EAAUA,CAAAA,GAKrB,OAAOC,CACR,CAQA,SAAS+B,GAAOY,EAAa3C,EAAQa,EAAAA,CAArC,IAIM7D,EACKP,EAFV,GAA+B,OAApBkG,EAAY5F,MAAQ,WAAY,CAE1C,IADIC,EAAW2F,EAAW/E,IACjBnB,EAAI,EAAGO,GAAYP,EAAIO,EAASK,OAAQZ,IAC5CO,EAASP,CAAAA,IAKZO,EAASP,CAAAA,EAAEoB,GAAW8E,EACtB3C,EAAS+B,GAAO/E,EAASP,CAAAA,EAAIuD,EAAQa,CAAAA,GAIvC,OAAOb,CACR,CAAW2C,EAAW5E,KAASiC,IAC1BA,GAAU2C,EAAY5F,MAAAA,CAAS8D,EAAU+B,SAAS5C,CAAAA,IACrDA,EAASnB,EAAc8D,CAAAA,GAExB9B,EAAUgC,aAAaF,EAAW5E,IAAOiC,GPzUvB,IAAA,EO0UlBA,EAAS2C,EAAW5E,KAGrB,GACCiC,EAASA,GAAUA,EAAOgC,kBAClBhC,GP/UU,MO+UQA,EAAO8C,UAAY,GAE9C,OAAO9C,CACR,CAAA,SAQgB+C,EAAa/F,EAAUgG,EAAAA,CAUtC,OATAA,EAAMA,GAAO,CAAA,EACThG,GP5Ve,MO4VwB,OAAZA,GAAY,YAChCwF,GAAQxF,CAAAA,EAClBA,EAASiG,KAAK,SAAAhE,EAAAA,CACb8D,EAAa9D,EAAO+D,CAAAA,CACrB,CAAA,EAEAA,EAAIzD,KAAKvC,CAAAA,GAEHgG,CACR,CASA,SAASP,GACRpB,EACAI,EACAQ,EACAG,EAAAA,CAJD,IAmCMc,EACAC,EA9BClG,EAAMoE,EAAWpE,IACjBF,EAAOsE,EAAWtE,KACpBgD,EAAW0B,EAAYQ,CAAAA,EAkB3B,GACClC,IPzYkB,MO0YjBA,GACA9C,GAAO8C,EAAS9C,KAChBF,IAASgD,EAAShD,OPrZE,EOsZnBgD,EAAQ1B,MAAsB,EAEhC,OAAO4D,EAAAA,GAVPG,GACCrC,GPtYiB,OATG,EO+YCA,EAAQ1B,MAAsB,EAAI,EAAI,GAa5D,IAFI6E,EAAIjB,EAAc,EAClBkB,EAAIlB,EAAc,EACfiB,GAAK,GAAKC,EAAI1B,EAAYpE,QAAQ,CACxC,GAAI6F,GAAK,EAAG,CAEX,IADAnD,EAAW0B,EAAYyB,CAAAA,KP9ZJ,EOiajBnD,EAAQ1B,MAAsB,GAC/BpB,GAAO8C,EAAS9C,KAChBF,IAASgD,EAAShD,KAElB,OAAOmG,EAERA,GACD,CAEA,GAAIC,EAAI1B,EAAYpE,OAAQ,CAE3B,IADA0C,EAAW0B,EAAY0B,CAAAA,KP3aJ,EO8ajBpD,EAAQ1B,MAAsB,GAC/BpB,GAAO8C,EAAS9C,KAChBF,IAASgD,EAAShD,KAElB,OAAOoG,EAERA,GACD,CACD,CAGD,MAAA,EACD,CF9bA,SAASC,GAASC,EAAOpG,EAAKqG,EAAAA,CACzBrG,EAAI,CAAA,GAAM,IACboG,EAAME,YAAYtG,EAAKqG,GAAgB,EAAKA,EAE5CD,EAAMpG,CAAAA,EADIqG,GLUQ,KKTL,GACa,OAATA,GAAS,UAAYE,GAAmBC,KAAKxG,CAAAA,EACjDqG,EAEAA,EAAQ,IAEvB,CAyBgB,SAAAC,EAAYG,EAAKC,EAAML,EAAOM,EAAU1C,EAAAA,CACvD,IAAI2C,EAEJC,EAAG,GAAIH,GAAQ,QACd,GAAoB,OAATL,GAAS,SACnBI,EAAIL,MAAMU,QAAUT,MACd,CAKN,GAJuB,OAAZM,GAAY,WACtBF,EAAIL,MAAMU,QAAUH,EAAW,IAG5BA,EACH,IAAKD,KAAQC,EACNN,GAASK,KAAQL,GACtBF,GAASM,EAAIL,MAAOM,EAAM,EAAA,EAK7B,GAAIL,EACH,IAAKK,KAAQL,EACPM,GAAYN,EAAMK,CAAAA,IAAUC,EAASD,CAAAA,GACzCP,GAASM,EAAIL,MAAOM,EAAML,EAAMK,CAAAA,CAAAA,CAIpC,SAGQA,EAAK,CAAA,GAAM,KAAOA,EAAK,CAAA,GAAM,IACrCE,EAAaF,IAASA,EAAOA,EAAKK,QAAQC,GAAe,IAAA,GAQxDN,EAJAA,EAAKO,YAAAA,IAAiBR,GACtBC,GAAQ,cACRA,GAAQ,YAEDA,EAAKO,YAAAA,EAAc5G,MAAM,CAAA,EACrBqG,EAAKrG,MAAM,CAAA,EAElBoG,EAAGvD,IAAauD,EAAGvD,EAAc,CAAA,GACtCuD,EAAGvD,EAAYwD,EAAOE,CAAAA,EAAcP,EAEhCA,EACEM,EAQJN,EAAMa,EAAYP,EAASO,GAP3Bb,EAAMa,EAAYC,GAClBV,EAAIW,iBACHV,EACAE,EAAaS,GAAoBC,GACjCV,CAAAA,GAMFH,EAAIc,oBACHb,EACAE,EAAaS,GAAoBC,GACjCV,CAAAA,MAGI,CACN,GAAI3C,GLzFuB,6BK6F1ByC,EAAOA,EAAKK,QAAQ,cAAe,GAAA,EAAKA,QAAQ,SAAU,GAAA,UAE1DL,GAAQ,SACRA,GAAQ,UACRA,GAAQ,QACRA,GAAQ,QACRA,GAAQ,QAGRA,GAAQ,YACRA,GAAQ,YACRA,GAAQ,WACRA,GAAQ,WACRA,GAAQ,QACRA,GAAQ,WACRA,KAAQD,EAER,GAAA,CACCA,EAAIC,CAAAA,EAAQL,GAAgB,GAE5B,MAAMQ,CAAAA,MACEW,CAAAA,CAUU,OAATnB,GAAS,aAETA,GL1HO,MK0HWA,IAAlBA,IAAqCK,EAAK,CAAA,GAAM,IAG1DD,EAAIgB,gBAAgBf,CAAAA,EAFpBD,EAAIiB,aAAahB,EAAMA,GAAQ,WAAaL,GAAS,EAAO,GAAKA,CAAAA,EAInE,CACD,CAOA,SAASsB,GAAiBf,EAAAA,CAMzB,OAAA,SAAiBY,EAAAA,CAChB,GAAI7F,KAAIuB,EAAa,CACpB,IAAM0E,EAAejG,KAAIuB,EAAYsE,EAAE1H,KAAO8G,CAAAA,EAC9C,GAAIY,EAAEK,GLhJW,KKiJhBL,EAAEK,EAAcV,aAKNK,EAAEK,EAAcD,EAAaV,EACvC,OAED,OAAOU,EAAavG,EAAQyG,MAAQzG,EAAQyG,MAAMN,CAAAA,EAAKA,CAAAA,CACxD,CACD,CACD,CG5HgB,SAAAjE,GACfK,EACAf,EACAC,EACAkB,EACAC,EACAC,EACAlB,EACAD,EACAoB,EACAlB,EAAAA,CAVe,IAaX8E,EAkBE5F,EAAG6F,EAAOC,EAAUC,EAAUC,EAAUC,EACxCC,EACEC,EAMFC,EACAC,EAyGOhJ,EA4BPiJ,EACHC,GASSlJ,EA2BNmJ,GAEA9E,EAgDOrE,GAtPZoJ,EAAU/F,EAAS/C,KAIpB,GAAI+C,EAAS7B,cAAb,OAAwC,ORlDrB,KAbU,IQkEzB8B,EAAQ1B,MACX+C,EAAAA,CAAAA,ERrE0B,GQqETrB,EAAQ1B,KAEzB8C,EAAoB,CADpBnB,EAASF,EAAQ/B,IAAQgC,EAAQhC,GAAAA,IAI7BiH,EAAM1G,EAAOR,MAASkH,EAAIlF,CAAAA,EAE/BgG,EAAO,GAAsB,OAAXD,GAAW,WAC5B,GAAA,CAkEC,GAhEIP,EAAWxF,EAAStD,MAClB+I,EACL,cAAeM,GAAWA,EAAQE,UAAUC,OAKzCR,GADJR,EAAMa,EAAQI,cACQhF,EAAc+D,EAAGhH,GAAAA,EACnCyH,EAAmBT,EACpBQ,EACCA,EAAShJ,MAAM8G,MACf0B,EAAGnH,GACJoD,EAGClB,EAAQ/B,IAEXqH,GADAjG,EAAIU,EAAQ9B,IAAc+B,EAAQ/B,KACNH,GAAwBuB,EAAC8G,KAGjDX,EAEHzF,EAAQ9B,IAAcoB,EAAI,IAAIyG,EAAQP,EAAUG,CAAAA,GAGhD3F,EAAQ9B,IAAcoB,EAAI,IAAIV,EAC7B4G,EACAG,CAAAA,EAEDrG,EAAEnB,YAAc4H,EAChBzG,EAAE4G,OAASG,IAERX,GAAUA,EAASY,IAAIhH,CAAAA,EAE3BA,EAAE5C,MAAQ8I,EACLlG,EAAEiH,QAAOjH,EAAEiH,MAAQ,CAAA,GACxBjH,EAAET,QAAU8G,EACZrG,EAACqB,IAAkBQ,EACnBgE,EAAQ7F,EAACC,IAAAA,GACTD,EAACkH,IAAoB,CAAA,EACrBlH,EAACmH,IAAmB,CAAA,GAIjBhB,GAAoBnG,EAACoH,KR5GR,OQ6GhBpH,EAACoH,IAAcpH,EAAEiH,OAGdd,GAAoBM,EAAQY,0BRhHf,OQiHZrH,EAACoH,KAAepH,EAAEiH,QACrBjH,EAACoH,IAAclK,EAAO,CAAA,EAAI8C,EAACoH,GAAAA,GAG5BlK,EACC8C,EAACoH,IACDX,EAAQY,yBAAyBnB,EAAUlG,EAACoH,GAAAA,CAAAA,GAI9CtB,EAAW9F,EAAE5C,MACb2I,EAAW/F,EAAEiH,MACbjH,EAAClB,IAAU4B,EAGPmF,EAEFM,GACAM,EAAQY,0BRnIO,MQoIfrH,EAAEsH,oBRpIa,MQsIftH,EAAEsH,mBAAAA,EAGCnB,GAAoBnG,EAAEuH,mBRzIV,MQ0IfvH,EAACkH,IAAkB/G,KAAKH,EAAEuH,iBAAAA,MAErB,CAUN,GARCpB,GACAM,EAAQY,0BR/IO,MQgJfnB,IAAaJ,GACb9F,EAAEwH,2BRjJa,MQmJfxH,EAAEwH,0BAA0BtB,EAAUG,CAAAA,EAAAA,CAIrCrG,EAACrB,MACAqB,EAAEyH,uBRxJW,MQyJdzH,EAAEyH,sBACDvB,EACAlG,EAACoH,IACDf,CAAAA,IAJEoB,IAMH/G,EAAQ5B,KAAc6B,EAAQ7B,KAC9B,CAkBD,IAhBI4B,EAAQ5B,KAAc6B,EAAQ7B,MAKjCkB,EAAE5C,MAAQ8I,EACVlG,EAAEiH,MAAQjH,EAACoH,IACXpH,EAACC,IAAAA,IAGFS,EAAQ/B,IAAQgC,EAAQhC,IACxB+B,EAAQlC,IAAamC,EAAQnC,IAC7BkC,EAAQlC,IAAWqF,KAAK,SAAAtF,EAAAA,CACnBA,IAAOA,EAAKE,GAAWiC,EAC5B,CAAA,EAESrD,EAAI,EAAGA,EAAI2C,EAACmH,IAAiBlJ,OAAQZ,IAC7C2C,EAACkH,IAAkB/G,KAAKH,EAACmH,IAAiB9J,CAAAA,CAAAA,EAE3C2C,EAACmH,IAAmB,CAAA,EAEhBnH,EAACkH,IAAkBjJ,QACtB4C,EAAYV,KAAKH,CAAAA,EAGlB,MAAM0G,CACP,CAEI1G,EAAE0H,qBR7LU,MQ8Lf1H,EAAE0H,oBAAoBxB,EAAUlG,EAACoH,IAAaf,CAAAA,EAG3CF,GAAoBnG,EAAE2H,oBRjMV,MQkMf3H,EAACkH,IAAkB/G,KAAK,UAAA,CACvBH,EAAE2H,mBAAmB7B,EAAUC,EAAUC,CAAAA,CAC1C,CAAA,CAEF,CASA,GAPAhG,EAAET,QAAU8G,EACZrG,EAAE5C,MAAQ8I,EACVlG,EAACmB,IAAcM,EACfzB,EAACrB,IAAAA,GAEG2H,EAAapH,EAAOmB,IACvBkG,GAAQ,EACLJ,EAAkB,CAQrB,IAPAnG,EAAEiH,MAAQjH,EAACoH,IACXpH,EAACC,IAAAA,GAEGqG,GAAYA,EAAW5F,CAAAA,EAE3BkF,EAAM5F,EAAE4G,OAAO5G,EAAE5C,MAAO4C,EAAEiH,MAAOjH,EAAET,OAAAA,EAE1BlC,EAAI,EAAGA,EAAI2C,EAACmH,IAAiBlJ,OAAQZ,IAC7C2C,EAACkH,IAAkB/G,KAAKH,EAACmH,IAAiB9J,CAAAA,CAAAA,EAE3C2C,EAACmH,IAAmB,CAAA,CACrB,KACC,IACCnH,EAACC,IAAAA,GACGqG,GAAYA,EAAW5F,CAAAA,EAE3BkF,EAAM5F,EAAE4G,OAAO5G,EAAE5C,MAAO4C,EAAEiH,MAAOjH,EAAET,OAAAA,EAGnCS,EAAEiH,MAAQjH,EAACoH,UACHpH,EAACC,KAAAA,EAAasG,GAAQ,IAIhCvG,EAAEiH,MAAQjH,EAACoH,IAEPpH,EAAE4H,iBR1OW,OQ2OhB/F,EAAgB3E,EAAOA,EAAO,CAAE,EAAE2E,CAAAA,EAAgB7B,EAAE4H,gBAAAA,CAAAA,GAGjDzB,GAAAA,CAAqBN,GAAS7F,EAAE6H,yBR9OnB,OQ+OhB7B,EAAWhG,EAAE6H,wBAAwB/B,EAAUC,CAAAA,GAK5CrE,GAFA8E,GACHZ,GRnPgB,MQmPDA,EAAIjI,OAAS0B,GAAYuG,EAAI/H,KRnP5B,MQoPuB+H,EAAIxI,MAAMQ,SAAWgI,EAEzDY,KACHZ,EAAIxI,MAAMQ,SRvPM,MQ0PjBgD,EAASY,GACRC,EACA2B,GAAQ1B,CAAAA,EAAgBA,EAAe,CAACA,CAAAA,EACxChB,EACAC,EACAkB,EACAC,EACAC,EACAlB,EACAD,EACAoB,EACAlB,CAAAA,EAGDd,EAAEF,KAAOY,EAAQ/B,IAGjB+B,EAAQzB,KAAAA,KAEJe,EAACkH,IAAkBjJ,QACtB4C,EAAYV,KAAKH,CAAAA,EAGdiG,IACHjG,EAAC8G,IAAiB9G,EAACvB,GRlRH,KQ6SlB,OAzBS4G,EAAAA,CAGR,GAFA3E,EAAQ5B,IRrRS,KQuRbkD,GAAeD,GRvRF,KQwRhB,GAAIsD,EAAEyC,KAAM,CAKX,IAJApH,EAAQzB,KAAW+C,EAChB+F,IRvSsB,IQ0SlBnH,GAAUA,EAAO8C,UAAY,GAAK9C,EAAOgC,aAC/ChC,EAASA,EAAOgC,YAGjBb,EAAkBA,EAAkBiG,QAAQpH,CAAAA,CAAAA,ERjS7B,KQkSfF,EAAQ/B,IAAQiC,CACjB,KACC,KAASvD,GAAI0E,EAAkB9D,OAAQZ,MACtCC,GAAWyE,EAAkB1E,EAAAA,CAAAA,OAI/BqD,EAAQ/B,IAAQgC,EAAQhC,IACxB+B,EAAQlC,IAAamC,EAAQnC,IAE9BU,EAAOP,IAAa0G,EAAG3E,EAAUC,CAAAA,CAClC,MAEAoB,GR/SkB,MQgTlBrB,EAAQ5B,KAAc6B,EAAQ7B,KAE9B4B,EAAQlC,IAAamC,EAAQnC,IAC7BkC,EAAQ/B,IAAQgC,EAAQhC,KAExBiC,EAASF,EAAQ/B,IAAQsJ,GACxBtH,EAAQhC,IACR+B,EACAC,EACAkB,EACAC,EACAC,EACAlB,EACAmB,EACAlB,CAAAA,EAMF,OAFK8E,EAAM1G,EAAQgJ,SAAStC,EAAIlF,CAAAA,ER/UH,IQiVtBA,EAAQzB,IAAAA,OAAuC2B,CACvD,CAOO,SAASW,GAAWV,EAAasH,EAAMrH,EAAAA,CAC7C,QAASzD,EAAI,EAAGA,EAAIyD,EAAS7C,OAAQZ,IACpCqF,GAAS5B,EAASzD,CAAAA,EAAIyD,EAAAA,EAAWzD,CAAAA,EAAIyD,EAAAA,EAAWzD,CAAAA,CAAAA,EAG7C6B,EAAON,KAAUM,EAAON,IAASuJ,EAAMtH,CAAAA,EAE3CA,EAAYgD,KAAK,SAAA7D,EAAAA,CAChB,GAAA,CAECa,EAAcb,EAACkH,IACflH,EAACkH,IAAoB,CAAA,EACrBrG,EAAYgD,KAAK,SAAAuE,EAAAA,CAEhBA,EAAGjK,KAAK6B,CAAAA,CACT,CAAA,CAGD,OAFSqF,EAAAA,CACRnG,EAAOP,IAAa0G,EAAGrF,EAAClB,GAAAA,CACzB,CACD,CAAA,CACD,CAiBA,SAASmJ,GACR3D,EACA5D,EACAC,EACAkB,EACAC,EACAC,EACAlB,EACAmB,EACAlB,EAAAA,CATD,IAeKzD,EAEAgL,EAEAC,EAEAC,EACArE,EACAsE,EACAC,EAbA3C,EAAWnF,EAASvD,MACpB8I,EAAWxF,EAAStD,MACpBsG,EAAkChD,EAAS/C,KAkB/C,GAJI+F,GAAY,MAAO5B,ERhZK,6BQiZnB4B,GAAY,OAAQ5B,ER/YA,qCQgZnBA,IAAWA,ERjZS,gCQmZ1BC,GRhZe,MQiZlB,IAAK1E,EAAI,EAAGA,EAAI0E,EAAkB9D,OAAQZ,IAMzC,IALA6G,EAAQnC,EAAkB1E,CAAAA,IAOzB,iBAAkB6G,GAAAA,CAAAA,CAAWR,IAC5BA,EAAWQ,EAAMwE,WAAahF,EAAWQ,EAAMR,UAAY,GAC3D,CACDY,EAAMJ,EACNnC,EAAkB1E,CAAAA,ER7ZF,KQ8ZhB,KACD,EAIF,GAAIiH,GRnae,KQmaF,CAChB,GAAIZ,GRpac,KQqajB,OAAOiF,SAASC,eAAe1C,CAAAA,EAGhC5B,EAAMqE,SAASE,gBACd/G,EACA4B,EACAwC,EAAS4C,IAAM5C,CAAAA,EAKZlE,IACC9C,EAAO6J,KACV7J,EAAO6J,IAAoBrI,EAAUqB,CAAAA,EACtCC,EAAAA,IAGDD,ERtbkB,IQubnB,CAEA,GAAI2B,IRzbe,KQ2bdoC,IAAaI,GAAclE,GAAesC,EAAI0E,OAAS9C,IAC1D5B,EAAI0E,KAAO9C,OAEN,CASN,GAPAnE,EAAoBA,GAAqB7D,EAAMC,KAAKmG,EAAI2E,UAAAA,EAExDnD,EAAWnF,EAASvD,OAASqF,EAAAA,CAKxBT,GAAeD,GRvcF,KQycjB,IADA+D,EAAW,CAAA,EACNzI,EAAI,EAAGA,EAAIiH,EAAI4E,WAAWjL,OAAQZ,IAEtCyI,GADA5B,EAAQI,EAAI4E,WAAW7L,CAAAA,GACRkH,IAAAA,EAAQL,EAAMA,MAI/B,IAAK7G,KAAKyI,EAET,GADA5B,EAAQ4B,EAASzI,CAAAA,EACbA,GAAK,YACF,GAAIA,GAAK,0BACfiL,EAAUpE,UAAAA,EACE7G,KAAK6I,GAAW,CAC5B,GACE7I,GAAK,SAAW,iBAAkB6I,GAClC7I,GAAK,WAAa,mBAAoB6I,EAEvC,SAED/B,EAAYG,EAAKjH,ER3dD,KQ2dU6G,EAAOpC,CAAAA,CAClC,EAKD,IAAKzE,KAAK6I,EACThC,EAAQgC,EAAS7I,CAAAA,EACbA,GAAK,WACRkL,EAAcrE,EACJ7G,GAAK,0BACfgL,EAAUnE,EACA7G,GAAK,QACfmL,EAAatE,EACH7G,GAAK,UACfoL,EAAUvE,EAERlC,GAA+B,OAATkC,GAAS,YACjC4B,EAASzI,CAAAA,IAAO6G,GAEhBC,EAAYG,EAAKjH,EAAG6G,EAAO4B,EAASzI,CAAAA,EAAIyE,CAAAA,EAK1C,GAAIuG,EAGDrG,GACCsG,IACAD,EAAOc,SAAYb,EAAOa,QAC1Bd,EAAOc,SAAY7E,EAAI8E,aAEzB9E,EAAI8E,UAAYf,EAAOc,QAGxBzI,EAAQlC,IAAa,CAAA,UAEjB8J,IAAShE,EAAI8E,UAAY,IAE7B5H,GAECd,EAAS/C,OAAS,WAAa2G,EAAI+E,QAAU/E,EAC7ClB,GAAQmF,CAAAA,EAAeA,EAAc,CAACA,CAAAA,EACtC7H,EACAC,EACAkB,EACA6B,GAAY,gBR7gBe,+BQ6gBqB5B,EAChDC,EACAlB,EACAkB,EACGA,EAAkB,CAAA,EAClBpB,EAAQnC,KAAciB,EAAckB,EAAU,CAAA,EACjDqB,EACAlB,CAAAA,EAIGiB,GRrhBa,KQshBhB,IAAK1E,EAAI0E,EAAkB9D,OAAQZ,KAClCC,GAAWyE,EAAkB1E,CAAAA,CAAAA,EAM3B2E,IACJ3E,EAAI,QACAqG,GAAY,YAAc8E,GR/hBb,KQgiBhBlE,EAAIgB,gBAAgB,OAAA,EAEpBkD,IAFoB,SAOnBA,IAAelE,EAAIjH,CAAAA,GAClBqG,GAAY,YAAZA,CAA2B8E,GAI3B9E,GAAY,UAAY8E,IAAe1C,EAASzI,CAAAA,IAElD8G,EAAYG,EAAKjH,EAAGmL,EAAY1C,EAASzI,CAAAA,EAAIyE,CAAAA,EAG9CzE,EAAI,UACAoL,IADA,QACyBA,IAAYnE,EAAIjH,CAAAA,GAC5C8G,EAAYG,EAAKjH,EAAGoL,EAAS3C,EAASzI,CAAAA,EAAIyE,CAAAA,EAG7C,CAEA,OAAOwC,CACR,CAQgB,SAAA5B,GAAS5E,EAAKoG,EAAO3F,EAAAA,CACpC,GAAA,CACC,GAAkB,OAAPT,GAAO,WAAY,CAC7B,IAAIwL,EAAuC,OAAhBxL,EAAGmB,KAAa,WACvCqK,GAEHxL,EAAGmB,IAAAA,EAGCqK,GAAiBpF,GR1kBL,OQ8kBhBpG,EAAGmB,IAAYnB,EAAIoG,CAAAA,EAErB,MAAOpG,EAAIsB,QAAU8E,CAGtB,OAFSmB,EAAAA,CACRnG,EAAOP,IAAa0G,EAAG9G,CAAAA,CACxB,CACD,CASO,SAAS+E,GAAQ/E,EAAOgF,EAAagG,EAAAA,CAArC,IACFC,EAsBMnM,EAbV,GARI6B,EAAQoE,SAASpE,EAAQoE,QAAQ/E,CAAAA,GAEhCiL,EAAIjL,EAAMT,OACT0L,EAAEpK,SAAWoK,EAAEpK,UAAYb,EAAKI,KACpC+D,GAAS8G,ERnmBQ,KQmmBCjG,CAAAA,IAIfiG,EAAIjL,EAAKK,MRvmBK,KQumBiB,CACnC,GAAI4K,EAAEC,qBACL,GAAA,CACCD,EAAEC,qBAAAA,CAGH,OAFSpE,EAAAA,CACRnG,EAAOP,IAAa0G,EAAG9B,CAAAA,CACxB,CAGDiG,EAAE1J,KAAO0J,EAACrI,IRhnBQ,IQinBnB,CAEA,GAAKqI,EAAIjL,EAAKC,IACb,IAASnB,EAAI,EAAGA,EAAImM,EAAEvL,OAAQZ,IACzBmM,EAAEnM,CAAAA,GACLiG,GACCkG,EAAEnM,CAAAA,EACFkG,EACAgG,GAAmC,OAAdhL,EAAMZ,MAAQ,UAARA,EAM1B4L,GACJjM,GAAWiB,EAAKI,GAAAA,EAGjBJ,EAAKK,IAAcL,EAAKE,GAAWF,EAAKI,IAAAA,MACzC,CAGA,SAASoI,GAAS3J,EAAO6J,EAAO1H,EAAAA,CAC/B,OAAOC,KAAKX,YAAYzB,EAAOmC,CAAAA,CAChC,CC5oBO,SAASqH,EAAOrI,EAAOkD,EAAWiI,EAAAA,CAAlC,IAWF1H,EAOArB,EAQAE,EACHC,EAzBGW,GAAakH,WAChBlH,EAAYkH,SAASgB,iBAGlBzK,EAAOT,IAAQS,EAAOT,GAAOF,EAAOkD,CAAAA,EAYpCd,GAPAqB,EAAoC,OAAf0H,GAAe,YTRrB,KSiBfA,GAAeA,EAAWlL,KAAeiD,EAASjD,IAMlDqC,EAAc,CAAA,EACjBC,EAAW,CAAA,EACZM,GACCK,EAPDlD,GAAAA,CAAWyD,GAAe0H,GAAgBjI,GAASjD,IAClDd,EAAc2B,ETpBI,KSoBY,CAACd,CAAAA,CAAAA,EAU/BoC,GAAY8B,EACZA,EACAhB,EAAUH,aAAAA,CACTU,GAAe0H,EACb,CAACA,CAAAA,EACD/I,ETnCe,KSqCdc,EAAUmI,WACT1L,EAAMC,KAAKsD,EAAUwH,UAAAA,ETtCR,KSwClBpI,EAAAA,CACCmB,GAAe0H,EACbA,EACA/I,EACCA,EAAQhC,IACR8C,EAAUmI,WACd5H,EACAlB,CAAAA,EAIDS,GAAWV,EAAatC,EAAOuC,CAAAA,CAChC,CAOO,SAAS+I,GAAQtL,EAAOkD,EAAAA,CAC9BmF,EAAOrI,EAAOkD,EAAWoI,EAAAA,CAC1B,CAAA,SChEgBC,GAAavL,EAAOnB,EAAOQ,EAAAA,CAAAA,IAEzCC,EACAC,EACAT,EAEGe,EALAL,EAAkBb,EAAO,CAAE,EAAEqB,EAAMnB,KAAAA,EAWvC,IAAKC,KAJDkB,EAAMZ,MAAQY,EAAMZ,KAAKS,eAC5BA,EAAeG,EAAMZ,KAAKS,cAGjBhB,EACLC,GAAK,MAAOQ,EAAMT,EAAMC,CAAAA,EACnBA,GAAK,MAAOS,EAAMV,EAAMC,CAAAA,EAEhCU,EAAgBV,CAAAA,EADRD,EAAMC,CAAAA,IACEA,QADkBe,IAApBf,OACOe,EAAaf,CAAAA,EAEbD,EAAMC,CAAAA,EAS7B,OALIW,UAAUC,OAAS,IACtBF,EAAgBH,SACfI,UAAUC,OAAS,EAAIC,EAAMC,KAAKH,UAAW,CAAA,EAAKJ,GAG7CS,EACNE,EAAMZ,KACNI,EACAF,GAAOU,EAAMV,IACbC,GAAOS,EAAMT,IV5BK,IAAA,CU+BpB,CJ1CgB,SAAAiM,GAAcC,EAAAA,CAC7B,SAASC,EAAQ7M,EAAAA,CAAjB,IAGM8M,EACAC,EA+BL,OAlCK3K,KAAKoI,kBAELsC,EAAO,IAAIE,KACXD,EAAM,CAAE,GACRF,EAAOrL,GAAAA,EAAQY,KAEnBA,KAAKoI,gBAAkB,UAAA,CAAM,OAAAuC,CAAG,EAEhC3K,KAAKiK,qBAAuB,UAAA,CAC3BS,ENAgB,IMCjB,EAEA1K,KAAKiI,sBAAwB,SAAU4C,EAAAA,CAElC7K,KAAKpC,MAAM8G,QAAUmG,EAAOnG,OAC/BgG,EAAKI,QAAQ,SAAAtK,EAAAA,CACZA,EAACrB,IAAAA,GACDoB,GAAcC,CAAAA,CACf,CAAA,CAEF,EAEAR,KAAKwH,IAAM,SAAAhH,EAAAA,CACVkK,EAAKK,IAAIvK,CAAAA,EACT,IAAIwK,EAAMxK,EAAEyJ,qBACZzJ,EAAEyJ,qBAAuB,UAAA,CACpBS,GACHA,EAAKO,OAAOzK,CAAAA,EAETwK,GAAKA,EAAIrM,KAAK6B,CAAAA,CACnB,CACD,GAGM5C,EAAMQ,QACd,CApCSqM,OAAAA,EAAAA,EAAAA,KAsCTA,EAAOrL,IAAO,OAASvB,KACvB4M,EAAOxL,GAAiBuL,EAQxBC,EAAQS,SACPT,EAAOU,KANRV,EAAQW,SAAW,SAACxN,EAAOyN,EAAAA,CAC1B,OAAOzN,EAAMQ,SAASiN,CAAAA,CACvB,GAKkBhE,YAChBoD,EAEKA,CACR,CN1DO,IC0BM/L,EChBPgB,ECPFH,GA2FS+L,GCmFT5K,EAWAI,GAEEE,GA0BAS,GC1MA4D,GAaFG,GAkJEG,GACAD,GC5KK7H,GNeEoF,EACAH,GACA8B,GClBAhB,GDDN2H,GAAAC,GAAA,kBAiBMvI,EAAgC,CAAG,EACnCH,GAAY,CAAA,EACZ8B,GACZ,oECnBYhB,GAAUF,MAAME,QASblG,EAAAA,EAAAA,KAYAI,EAAAA,GAAAA,KERAI,EAAAA,EAAAA,KAyCAW,EAAAA,EAAAA,KA0BAc,EAAAA,GAAAA,KAIAE,EAAAA,EAAAA,KCzEAC,EAAAA,EAAAA,KA6EAG,EAAAA,EAAAA,KAqEPG,EAAAA,GAAAA,KAyCOG,EAAAA,GAAAA,KAoBPK,EAAAA,GAAAA,KGlLOoB,EAAAA,GAAAA,KA6GPgB,EAAAA,GAAAA,KA6KAG,EAAAA,GAAAA,KAsCOgB,EAAAA,EAAAA,KAoBPN,EAAAA,GAAAA,KF3XAW,EAAAA,GAAAA,KAmCOG,EAAAA,EAAAA,KAiHPqB,EAAAA,GAAAA,KGvGOpE,EAAAA,GAAAA,KA4SAG,EAAAA,GAAAA,KAqCP0G,EAAAA,GAAAA,KAgNOvF,EAAAA,GAAAA,KA4BAY,EAAAA,GAAAA,KA0CPyD,EAAAA,GAAAA,KC1oBOH,EAAAA,EAAAA,KA8DAiD,EAAAA,GAAAA,KC9DAC,EAAAA,GAAAA,KJRAC,EAAAA,GAAAA,KLsBH7L,EAAQoE,GAAUpE,MChBzBgB,EAAU,CACfP,ISDMsM,EAAA,SAAqBC,EAAO3M,EAAOoC,EAAUwK,EAAAA,CAQnD,QANI1K,EAEH2K,EAEAC,EAEO9M,EAAQA,EAAKE,IACpB,IAAKgC,EAAYlC,EAAKK,MAAAA,CAAiB6B,EAAShC,GAC/C,GAAA,CAcC,IAbA2M,EAAO3K,EAAU5B,cAELuM,EAAKE,0BXRD,OWSf7K,EAAU8K,SAASH,EAAKE,yBAAyBJ,CAAAA,CAAAA,EACjDG,EAAU5K,EAASR,KAGhBQ,EAAU+K,mBXbE,OWcf/K,EAAU+K,kBAAkBN,EAAOC,GAAa,CAAE,CAAA,EAClDE,EAAU5K,EAASR,KAIhBoL,EACH,OAAQ5K,EAASqG,IAAiBrG,CAIpC,OAFS4E,EAAAA,CACR6F,EAAQ7F,CACT,CAIF,MAAM6F,CACP,EAlCO,MAkCP,ERzCInM,GAAU,EA2FD+L,GAAiBG,EAAA,SAAA1M,EAAAA,CAAK,OAClCA,GHhFmB,MGgFFA,EAAMM,aH/EC4M,IG+EuB,EADlB,KCpE9BnM,EAAcqH,UAAU4E,SAAW,SAAUG,EAAQC,EAAAA,CAEpD,IAAIC,EAEHA,EADGpM,KAAI4H,KJdW,MIcY5H,KAAI4H,MAAgB5H,KAAKyH,MACnDzH,KAAI4H,IAEJ5H,KAAI4H,IAAclK,EAAO,CAAE,EAAEsC,KAAKyH,KAAAA,EAGlB,OAAVyE,GAAU,aAGpBA,EAASA,EAAOxO,EAAO,CAAA,EAAI0O,CAAAA,EAAIpM,KAAKpC,KAAAA,GAGjCsO,GACHxO,EAAO0O,EAAGF,CAAAA,EAIPA,GJ/Be,MIiCflM,KAAIV,MACH6M,GACHnM,KAAI2H,IAAiBhH,KAAKwL,CAAAA,EAE3B5L,GAAcP,IAAAA,EAEhB,EAQAF,EAAcqH,UAAUkF,YAAc,SAAUF,EAAAA,CAC3CnM,KAAIV,MAIPU,KAAIb,IAAAA,GACAgN,GAAUnM,KAAI0H,IAAkB/G,KAAKwL,CAAAA,EACzC5L,GAAcP,IAAAA,EAEhB,EAYAF,EAAcqH,UAAUC,OAASvH,EA8F7Ba,EAAgB,CAAA,EAadM,GACa,OAAXsL,SAAW,WACfA,QAAQnF,UAAUmB,KAAKiE,KAAKD,QAAQE,QAAAA,CAAAA,EACpCC,WAuBEhL,GAAYgK,EAAA,SAACiB,EAAGC,EAAAA,CAAAA,OAAMD,EAACpN,IAAAJ,IAAiByN,EAACrN,IAAAJ,GAAc,EAA3C,KA8BlB0B,GAAOC,IAAkB,ECxOnBwE,GAAgB,8BAalBG,GAAa,EAkJXG,GAAaK,GAAAA,EAAiB,EAC9BN,GAAoBM,GAAAA,EAAiB,EC5KhCnI,GAAI,IMoIf,SAAS+O,EAAaC,EAAOC,EAAAA,CACxBC,EAAOC,KACVD,EAAOC,IAAOC,EAAkBJ,EAAOK,GAAeJ,CAAAA,EAEvDI,EAAc,EAOd,IAAMC,EACLF,EAAgBG,MACfH,EAAgBG,IAAW,CAC3BC,GAAO,CAAA,EACPL,IAAiB,CAAA,CAAA,GAOnB,OAJIH,GAASM,EAAKE,GAAOC,QACxBH,EAAKE,GAAOE,KAAK,CAAE,CAAA,EAGbJ,EAAKE,GAAOR,CAAAA,CACpB,CAOO,SAASW,EAASC,EAAAA,CAExB,OADAP,EAAc,EACPQ,EAAWC,GAAgBF,CAAAA,CACnC,CAUgB,SAAAC,EAAWE,EAASH,EAAcI,EAAAA,CAEjD,IAAMC,EAAYlB,EAAamB,IAAgB,CAAA,EAE/C,GADAD,EAAUE,EAAWJ,EAAAA,CAChBE,EAASG,MACbH,EAAST,GAAU,CACjBQ,EAAiDA,EAAKJ,CAAAA,EAA/CE,GAAAA,OAA0BF,CAAAA,EAElC,SAAAS,EAAAA,CACC,IAAMC,EAAeL,EAASM,IAC3BN,EAASM,IAAY,CAAA,EACrBN,EAAST,GAAQ,CAAA,EACdgB,EAAYP,EAAUE,EAASG,EAAcD,CAAAA,EAE/CC,IAAiBE,IACpBP,EAASM,IAAc,CAACC,EAAWP,EAAST,GAAQ,CAAA,CAAA,EACpDS,EAASG,IAAYK,SAAS,CAAE,CAAA,EAElC,CAAA,EAGDR,EAASG,IAAchB,EAAAA,CAElBA,EAAgBsB,KAAmB,CAAA,IAgC9BC,EAATC,EAAA,SAAyBC,EAAGC,EAAGC,EAAAA,CAC9B,GAAA,CAAKd,EAASG,IAAAb,IAAqB,MAAA,GAGnC,IACMyB,EACLf,EAASG,IAAAb,IAAAC,GAA0ByB,OAFhB,SAAAC,EAAAA,CAAC,MAAA,CAAA,CAAMA,EAACd,GAAW,CAAA,EAOvC,GAHsBY,EAAWG,MAAM,SAAAD,EAAAA,CAAC,MAAA,CAAKA,EAACX,GAAW,CAAA,EAIxD,MAAA,CAAOa,GAAUA,EAAQC,KAAKC,KAAMT,EAAGC,EAAGC,CAAAA,EAM3C,IAAIQ,EAAetB,EAASG,IAAYoB,QAAUX,EAUlD,OATAG,EAAWS,QAAQ,SAAAC,EAAAA,CAClB,GAAIA,EAAQnB,IAAa,CACxB,IAAMD,EAAeoB,EAAQlC,GAAQ,CAAA,EACrCkC,EAAQlC,GAAUkC,EAAQnB,IAC1BmB,EAAQnB,IAAAA,OACJD,IAAiBoB,EAAQlC,GAAQ,CAAA,IAAI+B,EAAAA,GAC1C,CACD,CAAA,EAEOH,GACJA,EAAQC,KAAKC,KAAMT,EAAGC,EAAGC,CAAAA,GACzBQ,CACJ,EA/BA,KA/BAnC,EAAgBsB,IAAAA,GAChB,IAAIU,EAAUhC,EAAiBuC,sBACzBC,EAAUxC,EAAiByC,oBAKjCzC,EAAiByC,oBAAsB,SAAUhB,EAAGC,EAAGC,EAAAA,CACtD,GAAIO,KAAIQ,IAAS,CAChB,IAAIC,EAAMX,EAEVA,EAAAA,OACAT,EAAgBE,EAAGC,EAAGC,CAAAA,EACtBK,EAAUW,CACX,CAEIH,GAASA,EAAQP,KAAKC,KAAMT,EAAGC,EAAGC,CAAAA,CACvC,EA+CA3B,EAAiBuC,sBAAwBhB,CAC1C,CAGD,OAAOV,EAASM,KAAeN,EAAST,EACzC,CAOO,SAASwC,EAAUC,EAAUC,EAAAA,CAEnC,IAAMC,EAAQpD,EAAamB,IAAgB,CAAA,EAAA,CACtChB,EAAOkD,KAAiBC,GAAYF,EAAK5C,IAAQ2C,CAAAA,IACrDC,EAAK3C,GAAUyC,EACfE,EAAMG,EAAeJ,EAErB9C,EAAgBG,IAAAJ,IAAyBO,KAAKyC,CAAAA,EAEhD,CAOgB,SAAAI,EAAgBN,EAAUC,EAAAA,CAEzC,IAAMC,EAAQpD,EAAamB,IAAgB,CAAA,EAAA,CACtChB,EAAOkD,KAAiBC,GAAYF,EAAK5C,IAAQ2C,CAAAA,IACrDC,EAAK3C,GAAUyC,EACfE,EAAMG,EAAeJ,EAErB9C,EAAgBD,IAAkBO,KAAKyC,CAAAA,EAEzC,CAGO,SAASK,GAAOC,EAAAA,CAEtB,OADApD,EAAc,EACPqD,EAAQ,UAAA,CAAO,MAAA,CAAEC,QAASF,CAAAA,CAAc,EAAG,CAAA,CAAA,CACnD,CAQgB,SAAAG,GAAoBC,EAAKC,EAAcZ,EAAAA,CACtD7C,EAAc,EACdkD,EACC,UAAA,CACC,GAAkB,OAAPM,GAAO,WAAY,CAC7B,IAAME,EAASF,EAAIC,EAAAA,CAAAA,EACnB,OAAa,UAAA,CACZD,EAAI,IAAA,EACAE,GAA2B,OAAVA,GAAU,YAAYA,EAAAA,CAC5C,CACD,CAAWF,GAAAA,EAEV,OADAA,EAAIF,QAAUG,EAAAA,EACP,UAAA,CAAA,OAAOD,EAAIF,QAAU,IAAI,CAElC,EACAT,GAAQ,KAAOA,EAAOA,EAAKc,OAAOH,CAAAA,CAAAA,CAEpC,CAQgB,SAAAH,EAAQO,EAASf,EAAAA,CAEhC,IAAMC,EAAQpD,EAAamB,IAAgB,CAAA,EAO3C,OANImC,GAAYF,EAAK5C,IAAQ2C,CAAAA,IAC5BC,EAAK3C,GAAUyD,EAAAA,EACfd,EAAK5C,IAAS2C,EACdC,EAAKhD,IAAY8D,GAGXd,EAAK3C,EACb,CAOO,SAAS0D,GAAYjB,EAAUC,EAAAA,CAErC,OADA7C,EAAc,EACPqD,EAAQ,UAAA,CAAA,OAAMT,CAAQ,EAAEC,CAAAA,CAChC,CAKO,SAASiB,GAAWC,EAAAA,CAC1B,IAAMC,EAAWjE,EAAiBgE,QAAQA,EAAOhD,GAAAA,EAK3C+B,EAAQpD,EAAamB,IAAgB,CAAA,EAK3C,OADAiC,EAAKpB,EAAYqC,EACZC,GAEDlB,EAAK3C,IAAW,OACnB2C,EAAK3C,GAAAA,GACL6D,EAASC,IAAIlE,CAAAA,GAEPiE,EAAS7B,MAAM+B,OANAH,EAAO5D,EAO9B,CAMgB,SAAAgE,GAAcD,EAAOE,EAAAA,CAChCvE,EAAQsE,eACXtE,EAAQsE,cACPC,EAAYA,EAAUF,CAAAA,EAAMG,CAAA,CAG/B,CAMO,SAASC,GAAiBC,EAAAA,CAEhC,IAAMzB,EAAQpD,EAAamB,IAAgB,EAAA,EACrC2D,EAAWlE,EAAAA,EAQjB,OAPAwC,EAAK3C,GAAUoE,EACVxE,EAAiB0E,oBACrB1E,EAAiB0E,kBAAoB,SAACC,EAAKC,EAAAA,CACtC7B,EAAK3C,IAAS2C,EAAK3C,GAAQuE,EAAKC,CAAAA,EACpCH,EAAS,CAAA,EAAGE,CAAAA,CACb,GAEM,CACNF,EAAS,CAAA,EACT,UAAA,CACCA,EAAS,CAAA,EAAA,MAAGI,CACb,CAAA,CAEF,CAGO,SAASC,IAAAA,CAEf,IAAM/B,EAAQpD,EAAamB,IAAgB,EAAA,EAC3C,GAAA,CAAKiC,EAAK3C,GAAS,CAIlB,QADI2E,EAAO/E,EAAgBgF,IACpBD,IAAS,MAATA,CAAkBA,EAAIE,KAAUF,EAAI3E,KAAa,MACvD2E,EAAOA,EAAI3E,GAGZ,IAAI8E,EAAOH,EAAIE,MAAWF,EAAIE,IAAS,CAAC,EAAG,CAAA,GAC3ClC,EAAK3C,GAAU,IAAM8E,EAAK,CAAA,EAAK,IAAMA,EAAK,CAAA,GAC3C,CAEA,OAAOnC,EAAK3C,EACb,CAKA,SAAS+E,IAAAA,CAER,QADIC,EACIA,EAAYC,GAAkBC,MAAAA,GACrC,GAAKF,EAASG,KAAgBH,EAASjF,IACvC,GAAA,CACCiF,EAASjF,IAAAJ,IAAyBsC,QAAQmD,EAAAA,EAC1CJ,EAASjF,IAAAJ,IAAyBsC,QAAQoD,EAAAA,EAC1CL,EAASjF,IAAAJ,IAA2B,CAAA,CAIrC,OAHS2F,EAAAA,CACRN,EAASjF,IAAAJ,IAA2B,CAAA,EACpCD,EAAO4C,IAAagD,EAAGN,EAASJ,GAAAA,CACjC,CAEF,CAcA,SAASW,GAAe9C,EAAAA,CACvB,IAOI+C,EAPEC,EAAOrE,EAAA,UAAA,CACZsE,aAAaC,CAAAA,EACTC,IAASC,qBAAqBL,CAAAA,EAClCM,WAAWrD,CAAAA,CACZ,EAJa,KAKPkD,EAAUG,WAAWL,EAlcR,GAAA,EAqcfG,KACHJ,EAAMO,sBAAsBN,CAAAA,EAE9B,CAqBA,SAASL,GAAcY,EAAAA,CAGtB,IAAMC,EAAOrG,EACTsG,EAAUF,EAAIpF,IACI,OAAXsF,GAAW,aACrBF,EAAIpF,IAAAA,OACJsF,EAAAA,GAGDtG,EAAmBqG,CACpB,CAOA,SAASZ,GAAaW,EAAAA,CAGrB,IAAMC,EAAOrG,EACboG,EAAIpF,IAAYoF,EAAIhG,GAAAA,EACpBJ,EAAmBqG,CACpB,CAOA,SAASpD,GAAYsD,EAASC,EAAAA,CAC7B,MAAA,CACED,GACDA,EAAQlG,SAAWmG,EAAQnG,QAC3BmG,EAAQC,KAAK,SAACC,EAAK9G,EAAAA,CAAU,OAAA8G,IAAQH,EAAQ3G,CAAAA,CAAM,CAAA,CAErD,CAQA,SAASc,GAAegG,EAAKC,EAAAA,CAC5B,OAAmB,OAALA,GAAK,WAAaA,EAAED,CAAAA,EAAOC,CAC1C,KApiBI7F,EAGAd,EAGA4G,GAmBAC,GAhBA5G,EAGAoF,GAGEvF,EAEFgH,GACAC,GACAC,GACAC,GACAC,GACAC,GAkbAnB,gCA/bA/F,EAAc,EAGdoF,GAAoB,CAAA,EAGlBvF,EAAuDsH,EAEzDN,GAAgBhH,EAAOuH,IACvBN,GAAkBjH,EAAOwH,IACzBN,GAAelH,EAAQyH,OACvBN,GAAYnH,EAAOkB,IACnBkG,GAAmBpH,EAAQ0H,QAC3BL,GAAUrH,EAAOM,GA8GZT,EAAAA,EAAAA,KA8BOY,EAAAA,EAAAA,KAaAE,EAAAA,EAAAA,KAoGAmC,EAAAA,EAAAA,KAgBAO,EAAAA,EAAAA,KAYAC,EAAAA,GAAAA,KAWAI,EAAAA,GAAAA,KAyBAF,EAAAA,EAAAA,KAiBAQ,EAAAA,GAAAA,KAQAC,EAAAA,GAAAA,KAwBAK,EAAAA,GAAAA,KAYAG,EAAAA,GAAAA,KAoBAO,EAAAA,GAAAA,KAqBPK,EAAAA,GAAAA,KA7ZTrF,EAAOuH,IAAS,SAAAI,EAAAA,CACfzH,EAAmB,KACf8G,IAAeA,GAAcW,CAAAA,CAClC,EAEA3H,EAAOM,GAAS,SAACqH,EAAOC,EAAAA,CACnBD,GAASC,EAASC,KAAcD,EAASC,IAAA1C,MAC5CwC,EAAKxC,IAASyC,EAASC,IAAA1C,KAGpBkC,IAASA,GAAQM,EAAOC,CAAAA,CAC7B,EAGA5H,EAAOwH,IAAW,SAAAG,EAAAA,CACbV,IAAiBA,GAAgBU,CAAAA,EAGrC3G,EAAe,EAEf,IAAMZ,GAHNF,EAAmByH,EAAKzG,KAGMb,IAC1BD,IACC0G,KAAsB5G,GACzBE,EAAKH,IAAmB,CAAA,EACxBC,EAAgBD,IAAoB,CAAA,EACpCG,EAAKE,GAAOiC,QAAQ,SAAAC,EAAAA,CACfA,EAAQnB,MACXmB,EAAQlC,GAAUkC,EAAQnB,KAE3BmB,EAASY,EAAeZ,EAAQnB,IAAAA,MACjC,CAAA,IAEAjB,EAAKH,IAAiBsC,QAAQmD,EAAAA,EAC9BtF,EAAKH,IAAiBsC,QAAQoD,EAAAA,EAC9BvF,EAAKH,IAAmB,CAAA,EACxBe,EAAe,IAGjB8F,GAAoB5G,CACrB,EAGAF,EAAQyH,OAAS,SAAAE,EAAAA,CACZT,IAAcA,GAAaS,CAAAA,EAE/B,IAAM9F,EAAI8F,EAAKzG,IACXW,GAAKA,EAACxB,MACLwB,EAACxB,IAAAJ,IAAyBM,SAAmBgF,GAAkB/E,KAAKqB,CAAAA,IAgalD,GAAKkF,KAAY/G,EAAQqG,yBAC/CU,GAAU/G,EAAQqG,wBACNR,IAAgBR,EAAAA,GAja5BxD,EAACxB,IAAAC,GAAeiC,QAAQ,SAAAC,EAAAA,CACnBA,EAASY,IACZZ,EAAQnC,IAASmC,EAASY,GAE3BZ,EAASY,EAAAA,MACV,CAAA,GAED0D,GAAoB5G,EAAmB,IACxC,EAIAF,EAAOkB,IAAW,SAACyG,EAAOG,EAAAA,CACzBA,EAAYnB,KAAK,SAAArB,EAAAA,CAChB,GAAA,CACCA,EAASrF,IAAkBsC,QAAQmD,EAAAA,EACnCJ,EAASrF,IAAoBqF,EAASrF,IAAkB8B,OAAO,SAAA2C,EAAAA,CAAE,MAAA,CAChEA,EAAEpE,IAAUqF,GAAajB,CAAAA,CAAU,CAAA,CAQrC,OANSkB,EAAAA,CACRkC,EAAYnB,KAAK,SAAA9E,EAAAA,CACZA,EAAC5B,MAAmB4B,EAAC5B,IAAoB,CAAA,EAC9C,CAAA,EACA6H,EAAc,CAAA,EACd9H,EAAO4C,IAAagD,EAAGN,EAASJ,GAAAA,CACjC,CACD,CAAA,EAEIiC,IAAWA,GAAUQ,EAAOG,CAAAA,CACjC,EAGA9H,EAAQ0H,QAAU,SAAAC,EAAAA,CACbP,IAAkBA,GAAiBO,CAAAA,EAEvC,IAEKI,EAFClG,EAAI8F,EAAKzG,IACXW,GAAKA,EAACxB,MAETwB,EAACxB,IAAAC,GAAeiC,QAAQ,SAAAX,EAAAA,CACvB,GAAA,CACC8D,GAAc9D,CAAAA,CAGf,OAFSgE,EAAAA,CACRmC,EAAanC,CACd,CACD,CAAA,EACA/D,EAACxB,IAAAA,OACG0H,GAAY/H,EAAO4C,IAAamF,EAAYlG,EAACqD,GAAAA,EAEnD,EA4UIgB,GAA0C,OAAzBG,uBAAyB,WAYrCR,EAAAA,GAAAA,KAiCAH,EAAAA,GAAAA,KAkBAC,EAAAA,GAAAA,KAaAxC,EAAAA,GAAAA,KAcAvC,EAAAA,GAAAA,q6BC9hBO,SAAAoH,GAAOC,EAAKC,EAAAA,CAC3B,QAASC,KAAKD,EAAOD,EAAIE,CAAAA,EAAKD,EAAMC,CAAAA,EACpC,OAA6BF,CAC9B,CAQO,SAASG,GAAeC,EAAGC,EAAAA,CACjC,QAASH,KAAKE,EAAG,GAAIF,IAAM,YAANA,EAAsBA,KAAKG,GAAI,MAAA,GACpD,QAASH,KAAKG,EAAG,GAAIH,IAAM,YAAcE,EAAEF,CAAAA,IAAOG,EAAEH,CAAAA,EAAI,MAAA,GACxD,MAAA,EACD,CCdgB,SAAAI,GAAqBC,EAAWC,EAAAA,CAC/C,IAAMC,EAAQD,EAAAA,EAMdE,EAAqCC,EAAS,CAC7CC,EAAW,CAAEC,GAAQJ,EAAOK,EAAcN,CAAAA,CAAAA,CAAAA,EADlCI,EAASF,EAATE,CAAAA,EAAAA,EAAaG,EAAWL,EAIjCM,CAAAA,EAqBA,OArBAA,EAAgB,UAAA,CACfJ,EAASC,GAAUJ,EACnBG,EAAUE,EAAeN,EAErBS,GAAkBL,CAAAA,GACrBG,EAAY,CAAEH,EAAAA,CAAAA,CAAAA,CAEhB,EAAG,CAACL,EAAWE,EAAOD,CAAAA,CAAAA,EAEtBU,EAAU,UAAA,CAKT,OAJID,GAAkBL,CAAAA,GACrBG,EAAY,CAAEH,EAAAA,CAAAA,CAAAA,EAGRL,EAAU,UAAA,CACZU,GAAkBL,CAAAA,GACrBG,EAAY,CAAEH,EAAAA,CAAAA,CAAAA,CAEhB,CAAA,CACD,EAAG,CAACL,CAAAA,CAAAA,EAEGE,CACR,CAGA,SAASQ,GAAkBE,EAAAA,CAC1B,IDfkBC,EAAGC,ECefC,EAAoBH,EAAKL,EACzBS,EAAYJ,EAAIN,GACtB,GAAA,CACC,IAAMW,EAAYF,EAAAA,EAClB,MAAA,GDnBiBF,ECmBNG,MDnBSF,ECmBEG,KDlBHJ,IAAM,GAAK,EAAIA,GAAM,EAAIC,IAAQD,GAAMA,GAAKC,GAAMA,ECqBtE,MAFSI,CACR,MAAA,EACD,CACD,CAEgB,SAAAC,GAAgBC,EAAAA,CAC/BA,EAAAA,CACD,CAEgB,SAAAC,GAAiBC,EAAAA,CAChC,OAAOA,CACR,CAEgB,SAAAC,IAAAA,CACf,MAAO,CAAA,GAAQJ,EAAAA,CAChB,CAIkCV,SC/DlBe,GAAcC,EAAGC,EAAAA,CAChCC,KAAKjC,MAAQ+B,EACbE,KAAKC,QAAUF,CAChB,CCCgB,SAAAG,GAAKH,EAAGI,EAAAA,CACvB,SAASC,EAAaC,EAAAA,CACrB,IAAIC,EAAMN,KAAKjC,MAAMuC,IACjBC,EAAYD,GAAOD,EAAUC,IAKjC,MAAA,CAJKC,GAAaD,IACjBA,EAAIE,KAAOF,EAAI,IAAA,EAASA,EAAIG,QAAU,MAGlCN,EAAAA,CAIGA,EAASH,KAAKjC,MAAOsC,CAAAA,GAAAA,CAAeE,EAHpCtC,GAAe+B,KAAKjC,MAAOsC,CAAAA,CAIpC,CAZSD,EAAAA,EAAAA,KAcT,SAASM,EAAO3C,EAAAA,CAEf,OADAiC,KAAKW,sBAAwBP,EACtBQ,EAAcb,EAAGhC,CAAAA,CACzB,CAHS2C,OAAAA,EAAAA,EAAAA,KAITA,EAAOG,YAAc,SAAWd,EAAEc,aAAed,EAAEe,MAAQ,IAC3DJ,EAAOK,UAAUC,iBAAAA,GACjBN,EAAMO,IAAAA,GACCP,CACR,CCjBC,SASeQ,GAAWC,EAAAA,CAC1B,SAASC,EAAUrD,EAAAA,CAClB,IAAIsD,EAAQxD,GAAO,CAAE,EAAEE,CAAAA,EAEvB,OAAA,OADOsD,EAAMf,IACNa,EAAGE,EAAOtD,EAAMuC,KAAO,IAAA,CAC/B,CAJSc,OAAAA,EAAAA,OAOTA,EAAUE,SAAWC,GAKrBH,EAAUI,OAASJ,EAEnBA,EAAUL,UAAUC,iBAAmBI,EAASH,IAAAA,GAChDG,EAAUP,YAAc,eAAiBM,EAAGN,aAAeM,EAAGL,MAAQ,IAC/DM,CACR,CECA,SAASK,GAAcC,EAAOC,EAAgBC,EAAAA,CAyB7C,OAxBIF,IACCA,EAAKG,KAAeH,EAAKG,IAAAC,MAC5BJ,EAAKG,IAAAC,IAAAnD,GAA0BoD,QAAQ,SAAAC,EAAAA,CACR,OAAnBA,EAAMH,KAAa,YAAYG,EAAMH,IAAAA,CACjD,CAAA,EAEAH,EAAKG,IAAAC,IAAsB,OAG5BJ,EAAQ7D,GAAO,CAAA,EAAI6D,CAAAA,GACVG,KAAe,OACnBH,EAAKG,IAAAI,MAA2BL,IACnCF,EAAKG,IAAAI,IAAyBN,GAE/BD,EAAKG,IAAc,MAGpBH,EAAKQ,IACJR,EAAKQ,KACLR,EAAKQ,IAAWC,IAAI,SAAAC,EAAAA,CAAK,OACxBX,GAAcW,EAAOT,EAAgBC,CAAAA,CAAU,CAAA,GAI3CF,CACR,CAEA,SAASW,GAAeX,EAAOC,EAAgBW,EAAAA,CAoB9C,OAnBIZ,GAASY,IACZZ,EAAKa,IAAa,KAClBb,EAAKQ,IACJR,EAAKQ,KACLR,EAAKQ,IAAWC,IAAI,SAAAC,EAAAA,CAAK,OACxBC,GAAeD,EAAOT,EAAgBW,CAAAA,CAAe,CAAA,EAGnDZ,EAAKG,KACJH,EAAKG,IAAAI,MAA2BN,IAC/BD,EAAKc,KACRF,EAAeG,YAAYf,EAAKc,GAAAA,EAEjCd,EAAKG,IAAAW,IAAAA,GACLd,EAAKG,IAAAI,IAAyBK,IAK1BZ,CACR,CAGgB,SAAAgB,GAAAA,CAEf1C,KAAI2C,IAA2B,EAC/B3C,KAAK4C,EAAc,KACnB5C,KAAI6C,IAAuB,IAC5B,CAqIgB,SAAAC,GAAUpB,EAAAA,CAEzB,IAAIqB,EAAYrB,EAAK/C,GAAAkD,IACrB,OAAOkB,GAAaA,EAASC,KAAeD,EAASC,IAAYtB,CAAAA,CAClE,CAEO,SAASuB,GAAKC,EAAAA,CACpB,IAAIC,EACAJ,EACAxD,EAEJ,SAAS6D,EAAKrF,EAAAA,CAab,GAZKoF,IACJA,EAAOD,EAAAA,GACFG,KACJ,SAAAC,EAAAA,CACCP,EAAYO,EAAQC,SAAWD,CAChC,EACA,SAAAE,EAAAA,CACCjE,EAAQiE,CACT,CAAA,EAIEjE,EACH,MAAMA,EAGP,GAAA,CAAKwD,EACJ,MAAMI,EAGP,OAAOvC,EAAcmC,EAAWhF,CAAAA,CACjC,CAtBSqF,OAAAA,EAAAA,EAAAA,KAwBTA,EAAKvC,YAAc,OACnBuC,EAAInC,IAAAA,GACGmC,CACR,CAAA,SCvQgBK,GAAAA,CACfzD,KAAK0D,EAAQ,KACb1D,KAAK2D,EAAO,IACb,CEPA,SAASC,GAAgB7F,EAAAA,CAExB,OADAiC,KAAK6D,gBAAkB,UAAA,CAAA,OAAM9F,EAAMkC,OAAO,EACnClC,EAAM+F,QACd,CASA,SAASC,GAAOhG,EAAAA,CACf,IAAMiG,EAAQhE,KACViE,EAAYlG,EAAMmG,EAEtBF,EAAMG,qBAAuB,UAAA,CAC5B3C,EAAO,KAAMwC,EAAMI,CAAAA,EACnBJ,EAAMI,EAAQ,KACdJ,EAAME,EAAa,IACpB,EAIIF,EAAME,GAAcF,EAAME,IAAeD,GAC5CD,EAAMG,qBAAAA,EAGFH,EAAMI,IACVJ,EAAME,EAAaD,EAGnBD,EAAMI,EAAQ,CACbC,SAAU,EACVC,WAAYL,EACZM,WAAY,CAAA,EACZC,SAAUC,EAAA,UAAA,CAAF,MAAA,EAAY,EAAV,YAEVhC,YAAAgC,EAAA,SAAYrC,EAAAA,CACXpC,KAAKuE,WAAWG,KAAKtC,CAAAA,EACrB4B,EAAME,EAAWzB,YAAYL,CAAAA,CAC9B,EAHA,eAIAuC,aAAYF,EAAA,SAACrC,EAAOwC,EAAAA,CACnB5E,KAAKuE,WAAWG,KAAKtC,CAAAA,EACrB4B,EAAME,EAAWS,aAAavC,EAAOwC,CAAAA,CACtC,EAHY,gBAIZC,YAAAJ,EAAA,SAAYrC,EAAAA,CACXpC,KAAKuE,WAAWO,OAAO9E,KAAKuE,WAAWQ,QAAQ3C,CAAAA,IAAW,EAAG,CAAA,EAC7D4B,EAAME,EAAWW,YAAYzC,CAAAA,CAC9B,EAHA,cAGA,GAKFZ,EACCZ,EAAcgD,GAAiB,CAAE3D,QAAS+D,EAAM/D,OAAAA,EAAWlC,EAAKwE,GAAAA,EAChEyB,EAAMI,CAAAA,CAER,CAOgB,SAAAY,GAAatD,EAAOuC,EAAAA,CACnC,IAAMgB,EAAKrE,EAAcmD,GAAQ,CAAExB,IAAQb,EAAOwC,EAAYD,CAAAA,CAAAA,EAE9D,OADAgB,EAAGC,cAAgBjB,EACZgB,CACR,CCSgB,SAAAzD,GAAOE,EAAOyD,EAAQC,EAAAA,CAUrC,OAPID,EAAMjD,KAAc,OACvBiD,EAAOE,YAAc,IAGtBC,EAAa5D,EAAOyD,CAAAA,EACG,OAAZC,GAAY,YAAYA,EAAAA,EAE5B1D,EAAQA,EAAKG,IAAc,IACnC,CAEgB,SAAA0D,GAAQ7D,EAAOyD,EAAQC,EAAAA,CAItC,OAHAI,GAAc9D,EAAOyD,CAAAA,EACE,OAAZC,GAAY,YAAYA,EAAAA,EAE5B1D,EAAQA,EAAKG,IAAc,IACnC,CAYA,SAAS4D,IAAAA,CAAQ,CAEjB,SAASC,IAAAA,CACR,OAAW1F,KAAC2F,YACb,CAEA,SAASC,IAAAA,CACR,OAAO5F,KAAK6F,gBACb,CCxEA,SAASC,GAAcC,EAAAA,CACtB,OAAOnF,EAAcoF,KAAK,KAAMD,CAAAA,CACjC,CAOA,SAASE,EAAeC,EAAAA,CACvB,MAAA,CAAA,CAASA,GAAWA,EAAQ5E,WAAa6E,EAC1C,CAOA,SAASC,GAAWF,EAAAA,CACnB,OAAOD,EAAeC,CAAAA,GAAYA,EAAQH,OAASM,CACpD,CAOA,SAASC,GAAOJ,EAAAA,CACf,MAAA,CAAA,CACGA,GAAAA,CAAAA,CACAA,EAAQrF,cACsB,OAAxBqF,EAAQrF,aAAgB,UAC/BqF,EAAQrF,uBAAuB0F,SAChCL,EAAQrF,YAAY2F,WAAW,OAAA,CAEjC,CASA,SAASC,GAAaP,EAAAA,CACrB,OAAKD,EAAeC,CAAAA,EACbQ,GAAmBC,MAAM,KAAMC,SAAAA,EADDV,CAEtC,CAOA,SAASW,GAAuB5C,EAAAA,CAC/B,MAAA,CAAA,CAAIA,EAAS/B,MACZoD,EAAa,KAAMrB,CAAAA,EAAAA,GAIrB,CAOA,SAAS6C,GAAY/D,EAAAA,CACpB,OACEA,IACCA,EAAUgE,MAAShE,EAAUsB,WAAa,GAAKtB,IACjD,IAEF,KVrDaiE,GGlETC,GASS1F,GCVP2F,GAMOC,GCJPC,GAqBAC,GCPAC,GGSOnB,GAIPoB,GAEAC,GACAC,GACAC,GAKAC,GA+DFC,GAwJAC,GApIEC,GAuHFC,GAcEC,GAQAC,GAwBOC,GCrPPC,GAyFAC,GAWAC,GAMAC,GAGOC,GAwCbC,+CXzLgB3K,EAAAA,GAAAA,KAWAI,EAAAA,GAAAA,KCVAG,EAAAA,GAAAA,KAoCPW,EAAAA,GAAAA,KAWOS,EAAAA,GAAAA,KAIAE,EAAAA,GAAAA,KAIAE,EAAAA,GAAAA,KAMHoH,GAAqBlI,EC/DlBe,EAAAA,GAAAA,KCIAK,EAAAA,GAAAA,MDAhBL,GAAckB,UAAY,IAAI0H,GAENC,qBAAAA,GACxB7I,GAAckB,UAAUJ,sBAAwB,SAAU5C,EAAO4K,EAAAA,CAChE,OAAO1K,GAAe+B,KAAKjC,MAAOA,CAAAA,GAAUE,GAAe+B,KAAK2I,MAAOA,CAAAA,CACxE,EEZI1B,GAAc2B,EAAO/F,IACzB+F,EAAO/F,IAAS,SAAAnB,EAAAA,CACXA,EAAMqE,MAAQrE,EAAMqE,KAAI9E,KAAeS,EAAMpB,MAChDoB,EAAM3D,MAAMuC,IAAMoB,EAAMpB,IACxBoB,EAAMpB,IAAM,MAET2G,IAAaA,GAAYvF,CAAAA,CAC9B,EAEaH,GACM,OAAVsH,OAAU,KACjBA,OAAOC,KACPD,OAAOC,IAAI,mBAAA,GACZ,KASe5H,EAAAA,GAAAA,KCvBVgG,GAAQzC,EAAA,SAACX,EAAU3C,EAAAA,CACxB,OAAI2C,GAAY,KAAiB,KAC1BiF,EAAaA,EAAajF,CAAAA,EAAU3B,IAAIhB,CAAAA,CAAAA,CAChD,EAHc,KAMDgG,GAAW,CACvBhF,IAAK+E,GACLnF,QAASmF,GACT8B,MAAKvE,EAAA,SAACX,EAAAA,CACL,OAAOA,EAAWiF,EAAajF,CAAAA,EAAUmF,OAAS,CACnD,EAFK,SAGLC,KAAIzE,EAAA,SAACX,EAAAA,CACJ,IAAMqF,EAAaJ,EAAajF,CAAAA,EAChC,GAAIqF,EAAWF,SAAW,EAAG,KAAM,gBACnC,OAAOE,EAAW,CAAA,CACnB,EAJI,QAKJC,QAASL,CAAAA,ECfJ3B,GAAgBwB,EAAOpG,IAC7BoG,EAAOpG,IAAe,SAAUjD,EAAO8J,EAAUC,EAAUC,EAAAA,CAC1D,GAAIhK,EAAM8D,MAKT,QAHIN,EACArB,EAAQ2H,EAEJ3H,EAAQA,EAAK/C,IACpB,IAAKoE,EAAYrB,EAAKG,MAAgBkB,EAASlB,IAM9C,OALIwH,EAAQ7G,KAAS,OACpB6G,EAAQ7G,IAAQ8G,EAAQ9G,IACxB6G,EAAQnH,IAAaoH,EAAQpH,KAGvBa,EAASlB,IAAkBtC,EAAO8J,CAAAA,EAI5CjC,GAAc7H,EAAO8J,EAAUC,EAAUC,CAAAA,CAC1C,EAEMlC,GAAauB,EAAQY,QAmBlB/H,EAAAA,GAAAA,KA4BAY,EAAAA,GAAAA,KAwBOK,EAAAA,EAAAA,KA0IAI,EAAAA,GAAAA,KAMAG,EAAAA,GAAAA,KCvOAQ,EAAAA,EAAAA,KDiBhBmF,EAAQY,QAAU,SAAU9H,EAAAA,CAE3B,IAAMqB,EAAYrB,EAAKG,IACnBkB,GAAaA,EAAS0G,KACzB1G,EAAS0G,IAAAA,EAON1G,GEpCuB,GFoCVrB,EAAKiB,MACrBjB,EAAMqE,KAAO,MAGVsB,IAAYA,GAAW3F,CAAAA,CAC5B,GAgEAgB,EAAS3B,UAAY,IAAI0H,GAOP5G,IAAoB,SAAU6H,EAASC,EAAAA,CACxD,IAAMC,EAAsBD,EAAe9H,IAGrC9B,EAAIC,KAEND,EAAE6C,GAAe,OACpB7C,EAAE6C,EAAc,CAAA,GAEjB7C,EAAE6C,EAAY8B,KAAKkF,CAAAA,EAEnB,IAAMtC,EAAUxE,GAAU/C,EAACwC,GAAAA,EAEvBsH,EAAAA,GACEC,EAAarF,EAAA,UAAA,CACdoF,IAEJA,EAAAA,GACAD,EAAmBH,IAAc,KAE7BnC,EACHA,EAAQyC,CAAAA,EAERA,EAAAA,EAEF,EAXmB,KAanBH,EAAmBH,IAAcK,EAEjC,IAAMC,EAAuBtF,EAAA,UAAA,CAC5B,GAAA,CAAA,EAAO1E,EAAC4C,IAA0B,CAGjC,GAAI5C,EAAE4I,MAAK3F,IAAa,CACvB,IAAMgH,EAAiBjK,EAAE4I,MAAK3F,IAC9BjD,EAACwC,IAAAL,IAAkB,CAAA,EAAKG,GACvB2H,EACAA,EAAcnI,IAAAI,IACd+H,EAAcnI,IAAAoI,GAAAA,CAEhB,CAIA,IAAInH,EACJ,IAHA/C,EAAEmK,SAAS,CAAElH,IAAajD,EAAC8C,IAAuB,IAAA,CAAA,EAG1CC,EAAY/C,EAAE6C,EAAYuH,IAAAA,GACjCrH,EAAUjE,YAAAA,CAEZ,CACD,EApB6B,KA4B3BkB,EAAC4C,OEzKwB,GF0KxBgH,EAAehH,KAEjB5C,EAAEmK,SAAS,CAAElH,IAAajD,EAAC8C,IAAuB9C,EAACwC,IAAAL,IAAkB,CAAA,CAAA,CAAA,EAEtEwH,EAAQrG,KAAKyG,EAAYA,CAAAA,CAC1B,EAEApH,EAAS3B,UAAUoD,qBAAuB,UAAA,CACzCnE,KAAK4C,EAAc,CAAA,CACpB,EAOAF,EAAS3B,UAAUS,OAAS,SAAUzD,EAAO4K,EAAAA,CAC5C,GAAI3I,KAAI6C,IAAsB,CAI7B,GAAI7C,KAAIuC,IAAAL,IAAmB,CAC1B,IAAMP,EAAiByI,SAASxJ,cAAc,KAAA,EACxCyJ,EAAoBrK,KAAIuC,IAAAL,IAAkB,CAAA,EAAEL,IAClD7B,KAAIuC,IAAAL,IAAkB,CAAA,EAAKT,GAC1BzB,KAAI6C,IACJlB,EACC0I,EAAiBJ,IAAsBI,EAAiBpI,GAAAA,CAE3D,CAEAjC,KAAI6C,IAAuB,IAC5B,CAIA,IAAMyH,EACL3B,EAAK3F,KAAepC,EAAcyF,EAAU,KAAMtI,EAAMuM,QAAAA,EAGzD,OAFIA,IAAUA,EAAQ3H,KAAAA,KAEf,CACN/B,EAAcyF,EAAU,KAAMsC,EAAK3F,IAAc,KAAOjF,EAAM+F,QAAAA,EAC9DwG,CAAAA,CAEF,ECrMMhD,GAAU7C,EAAA,SAAC8F,EAAMnI,EAAOoI,EAAAA,CAc7B,GAAA,EAbMA,EAdgB,CAAA,IAcSA,EAfR,CAAA,GAqBtBD,EAAK5G,EAAK8G,OAAOrI,CAAAA,EAQhBmI,EAAKxM,MAAM2M,cACXH,EAAKxM,MAAM2M,YAAY,CAAA,IAAO,KAAP,CAAcH,EAAK5G,EAAKgH,MASjD,IADAH,EAAOD,EAAK7G,EACL8G,GAAM,CACZ,KAAOA,EAAKvB,OAAS,GACpBuB,EAAKL,IAAAA,EAALK,EAED,GAAIA,EA1CiB,CAAA,EA0CMA,EA3CL,CAAA,EA4CrB,MAEDD,EAAK7G,EAAQ8G,EAAOA,EA5CJ,CAAA,CA6CjB,CACD,EAlCgB,KEbP5G,EAAAA,GAAAA,KAYAG,EAAAA,GAAAA,KAqDOiB,EAAAA,GAAAA,MFbhBvB,EAAa1C,UAAY,IAAI0H,GAEPzF,IAAc,SAAUZ,EAAAA,CAC7C,IAAMmI,EAAOvK,KACP4K,EAAY9H,GAAUyH,EAAIhI,GAAAA,EAE5BiI,EAAOD,EAAK5G,EAAKkH,IAAIzI,CAAAA,EAGzB,OAFAoI,EA5DuB,CAAA,IA8DhB,SAAAM,EAAAA,CACN,IAAMC,EAAmBtG,EAAA,UAAA,CACnB8F,EAAKxM,MAAM2M,aAKfF,EAAK9F,KAAKoG,CAAAA,EACVxD,GAAQiD,EAAMnI,EAAOoI,CAAAA,GAHrBM,EAAAA,CAKF,EATyB,KAUrBF,EACHA,EAAUG,CAAAA,EAEVA,EAAAA,CAEF,CACD,EAEAtH,EAAa1C,UAAUS,OAAS,SAAUzD,EAAAA,CACzCiC,KAAK0D,EAAQ,KACb1D,KAAK2D,EAAO,IAAIqH,IAEhB,IAAMlH,EAAWiF,EAAahL,EAAM+F,QAAAA,EAChC/F,EAAM2M,aAAe3M,EAAM2M,YAAY,CAAA,IAAO,KAIjD5G,EAASmH,QAAAA,EAIV,QAASjN,EAAI8F,EAASmF,OAAQjL,KAY7BgC,KAAK2D,EAAKuH,IAAIpH,EAAS9F,CAAAA,EAAKgC,KAAK0D,EAAQ,CAAC,EAAG,EAAG1D,KAAK0D,CAAAA,CAAAA,EAEtD,OAAO3F,EAAM+F,QACd,EAEAL,EAAa1C,UAAUoK,mBACtB1H,EAAa1C,UAAUqK,kBAAoB,UAAA,CAAA,IAAYpH,EAAAhE,KAOtDA,KAAK2D,EAAK5B,QAAQ,SAACyI,EAAMpI,EAAAA,CACxBkF,GAAQtD,EAAM5B,EAAOoI,CAAAA,CACtB,CAAA,CACD,EGnGYrE,GACM,OAAV0C,OAAU,KAAeA,OAAOC,KAAOD,OAAOC,IAAI,eAAA,GAC1D,MAEKvB,GACL,8RACKC,GAAS,mCACTC,GAAgB,YAChBC,GAA6B,OAAb0C,SAAa,IAK7BzC,GAAoBlD,EAAA,SAAAsB,EAAAA,CACzB,OAAkB,OAAV8C,OAAU,KAAkC,OAAZA,OAAAA,GAAY,SACjD,cACA,cACDwC,KAAKtF,CAAAA,CAAK,EAJa,KA2CVvE,EAAAA,GAAAA,MAaA+D,EAAAA,GAAAA,MAjDhBkD,EAAU1H,UAAUC,iBAAmB,CAAA,EASvC,CACC,qBACA,4BACA,qBAAA,EACCe,QAAQ,SAAAuJ,EAAAA,CACTC,OAAOC,eAAe/C,EAAU1H,UAAWuK,EAAK,CAC/CG,aAAAA,GACAZ,IAAGpG,EAAA,UAAA,CACF,OAAOzE,KAAK,UAAYsL,CAAAA,CACzB,EAFG,OAGHJ,IAAGzG,EAAA,SAACiH,EAAAA,CACHH,OAAOC,eAAexL,KAAMsL,EAAK,CAChCG,aAAAA,GACAE,SAAAA,GACApN,MAAOmN,CAAAA,CAAAA,CAET,EANG,MAMH,CAAA,CAEF,CAAA,EA6BI9D,GAAegB,EAAQgD,MAUlBnG,EAAAA,SAEAC,EAAAA,GAAAA,MAIAE,EAAAA,GAAAA,MAfTgD,EAAQgD,MAAQ,SAAApI,EAAAA,CAMf,OALIoE,KAAcpE,EAAIoE,GAAapE,CAAAA,GAEnCA,EAAEqI,QAAUpG,GACZjC,EAAEkC,qBAAuBA,GACzBlC,EAAEoC,mBAAqBA,GACfpC,EAAEsI,YAActI,CACzB,EAYMsE,GAAoC,CACzCiE,WAAAA,GACAN,aAAAA,GACAZ,IAAAA,EAAAA,UAAAA,CACC,OAAW7K,KAACgM,KACb,EAFAnB,MAEA,EAkHG9C,GAAea,EAAQlH,MAC3BkH,EAAQlH,MAAQ,SAAAA,EAAAA,CAEW,OAAfA,EAAMqE,MAAS,UAlH3B,SAAwBrE,EAAAA,CACvB,IAAI3D,EAAQ2D,EAAM3D,MACjBgI,EAAOrE,EAAMqE,KACbkG,EAAkB,CAAE,EAEjBC,EAAkBnG,EAAKhB,QAAQ,GAAA,IAA/BmH,GACJ,QAASlO,KAAKD,EAAO,CACpB,IAAIQ,EAAQR,EAAMC,CAAAA,EAElB,GAAA,EACEA,IAAM,SAAW,iBAAkBD,GAASQ,GAAS,MAErDmJ,IAAU1J,IAAM,YAAc+H,IAAS,YACxC/H,IAAM,SACNA,IAAM,aALP,CAYA,IAAImO,EAAanO,EAAEoO,YAAAA,EACfpO,IAAM,gBAAkB,UAAWD,GAASA,EAAMQ,OAAS,KAG9DP,EAAI,QACMA,IAAM,YAAcO,IAApBP,GAMVO,EAAQ,GACE4N,IAAe,aAAe5N,IAAU,KAClDA,EAAAA,GACU4N,EAAW,CAAA,IAAO,KAAOA,EAAW,CAAA,IAAO,IACjDA,IAAe,gBAClBnO,EAAI,aAEJmO,IAAe,YACdpG,IAAS,SAAWA,IAAS,YAC7B4B,GAAkB5J,EAAMgI,IAAAA,EAGfoG,IAAe,UACzBnO,EAAI,YACMmO,IAAe,SACzBnO,EAAI,aACMwJ,GAAO6D,KAAKrN,CAAAA,IACtBA,EAAImO,GANJA,EAAanO,EAAI,UAQRkO,GAAmB3E,GAAY8D,KAAKrN,CAAAA,EAC9CA,EAAIA,EAAEqO,QAAQ5E,GAAe,KAAA,EAAO2E,YAAAA,EAC1B7N,IAAU,OACpBA,EAAAA,QAKG4N,IAAe,WAEdF,EADJjO,EAAImO,CAAAA,IAEHnO,EAAI,kBAINiO,EAAgBjO,CAAAA,EAAKO,CA/CrB,CAgDD,CAICwH,GAAQ,UACRkG,EAAgBK,UAChBC,MAAMC,QAAQP,EAAgB1N,KAAAA,IAG9B0N,EAAgB1N,MAAQwK,EAAahL,EAAM+F,QAAAA,EAAU/B,QAAQ,SAAAK,EAAAA,CAC5DA,EAAMrE,MAAM0O,SACXR,EAAgB1N,MAAMwG,QAAQ3C,EAAMrE,MAAMQ,KAAAA,GAD/BkO,EAEb,CAAA,GAIG1G,GAAQ,UAAYkG,EAAgBS,cAAgB,OACvDT,EAAgB1N,MAAQwK,EAAahL,EAAM+F,QAAAA,EAAU/B,QAAQ,SAAAK,EAAAA,CAE3DA,EAAMrE,MAAM0O,SADTR,EAAgBK,SAElBL,EAAgBS,aAAa3H,QAAQ3C,EAAMrE,MAAMQ,KAAAA,GAF/B+N,GAKlBL,EAAgBS,cAAgBtK,EAAMrE,MAAMQ,KAE/C,CAAA,GAGGR,EAAMiO,OAAAA,CAAUjO,EAAM4O,WACzBV,EAAgBD,MAAQjO,EAAMiO,MAC9BT,OAAOC,eACNS,EACA,YACAnE,EAAAA,IAES/J,EAAM4O,WAAAA,CAAc5O,EAAMiO,OAE1BjO,EAAMiO,OAASjO,EAAM4O,aAD/BV,EAAgBD,MAAQC,EAAgBU,UAAY5O,EAAM4O,WAK3DjL,EAAM3D,MAAQkO,CACf,EAMiBvK,CAAAA,EAGhBA,EAAMJ,SAAW6E,GAEb4B,IAAcA,GAAarG,CAAAA,CAChC,EAIMsG,GAAkBY,EAAOgE,IAC/BhE,EAAOgE,IAAW,SAAUlL,EAAAA,CACvBsG,IACHA,GAAgBtG,CAAAA,EAEjBmG,GAAmBnG,EAAKG,GACzB,EAEMoG,GAAYW,EAAQiE,OAE1BjE,EAAQiE,OAAS,SAAUnL,EAAAA,CACtBuG,IACHA,GAAUvG,CAAAA,EAGX,IAAM3D,EAAQ2D,EAAM3D,MACd+O,EAAMpL,EAAKc,IAGhBsK,GAAO,MACPpL,EAAMqE,OAAS,YACf,UAAWhI,GACXA,EAAMQ,QAAUuO,EAAIvO,QAEpBuO,EAAIvO,MAAQR,EAAMQ,OAAS,KAAO,GAAKR,EAAMQ,OAG9CsJ,GAAmB,IACpB,EAIaK,GAAqD,CACjE6E,uBAAwB,CACvBtM,QAAS,CACRuM,YAAAA,EAAAA,SAAY/M,EAAAA,CACX,OAAO4H,GAAgBoF,IAAgBhN,EAAO4B,GAAAA,EAAM9D,MAAMQ,KAC3D,EAFAyO,eAGAE,YAAAA,GACAC,WAAAA,GACAC,cAAAA,GACA1N,iBAAAA,GACAV,UAAAA,EACAqO,MAAAA,GACAC,oBAAAA,GACAtG,mBAAAA,GACAlI,gBAAAA,EACAyO,QAAAA,EAEAC,WAAAA,EACAC,OAAAA,GACAhP,SAAAA,EACAL,qBAAAA,GACAwB,cAAAA,EAAAA,CAAAA,CAAAA,EC1QGuI,GAAU,SAMPrC,EAAAA,GAAAA,MASAG,EAAAA,EAAAA,MASAG,EAAAA,GAAAA,MASAE,EAAAA,GAAAA,MAiBAG,EAAAA,GAAAA,MAUAI,EAAAA,GAAAA,MAaAC,EAAAA,GAAAA,MAgBHsB,GAA0B3D,EAAA,SAACW,EAAUsI,EAAAA,CAAQ,OAAAtI,EAASsI,CAAAA,CAAI,EAAhC,MAW1BrF,GAAY5D,EAAA,SAACW,EAAUsI,EAAAA,CAAAA,OAAQtI,EAASsI,CAAAA,CAAI,EAAhC,MAMZpF,GAAajC,EAGNkC,GAAYtC,EAwCzBuC,GAAe,CACd/J,SAAAA,EACA4O,MAAAA,GACAG,WAAAA,EACAxO,UAAAA,EACAF,gBAAAA,EACAkI,mBAAAA,GACApH,cAAAA,GACAF,iBAAAA,GACAtB,qBAAAA,GACAoB,gBAAAA,GACAiO,OAAAA,GACAH,oBAAAA,GACAC,QAAAA,EACAL,YAAAA,GACAC,WAAAA,GACAC,cAAAA,GACAjF,QAtKe,SAuKfhB,SAAAA,GACA3F,OAAAA,GACA+D,QAAAA,GACAsB,uBAAAA,GACA7B,aAAAA,GACApE,cAAAA,EACA+M,cAAAA,GACA7H,cAAAA,GACAW,aAAAA,GACAmH,UAAAA,GACAvH,SAAAA,EACAJ,eAAAA,EACAsC,UAAAA,GACAnC,WAAAA,GACAE,OAAAA,GACAQ,YAAAA,GACA2B,UAAAA,EACA5I,cAAAA,GACAK,KAAAA,GACAgB,WAAAA,GACAmH,UAAAA,GACAD,wBAAAA,GACAE,WAAAA,GACA5F,SAAAA,EACAe,aAAAA,EACAR,KAAAA,GACAiF,mDAAAA,EAAAA",
  "names": ["assign", "obj", "props", "i", "removeNode", "node", "parentNode", "removeChild", "createElement", "type", "children", "key", "ref", "normalizedProps", "arguments", "length", "slice", "call", "defaultProps", "createVNode", "original", "vnode", "__k", "__", "__b", "__e", "__c", "constructor", "__v", "vnodeId", "__i", "__u", "options", "createRef", "current", "Fragment", "BaseComponent", "context", "this", "getDomSibling", "childIndex", "sibling", "updateParentDomPointers", "child", "base", "enqueueRender", "c", "__d", "rerenderQueue", "push", "process", "__r", "prevDebounce", "debounceRendering", "defer", "component", "newVNode", "oldVNode", "oldDom", "commitQueue", "refQueue", "l", "sort", "depthSort", "shift", "__P", "diff", "__n", "namespaceURI", "commitRoot", "diffChildren", "parentDom", "renderResult", "newParentVNode", "oldParentVNode", "globalContext", "namespace", "excessDomChildren", "isHydrating", "childVNode", "newDom", "firstChildDom", "result", "oldChildren", "EMPTY_ARR", "newChildrenLength", "constructNewChildrenArray", "EMPTY_OBJ", "applyRef", "insert", "nextSibling", "skewedIndex", "matchingIndex", "oldChildrenLength", "remainingOldChildren", "skew", "Array", "String", "isArray", "findMatchingIndex", "unmount", "parentVNode", "contains", "insertBefore", "nodeType", "toChildArray", "out", "some", "x", "y", "setStyle", "style", "value", "setProperty", "IS_NON_DIMENSIONAL", "test", "dom", "name", "oldValue", "useCapture", "o", "cssText", "replace", "CAPTURE_REGEX", "toLowerCase", "_attached", "eventClock", "addEventListener", "eventProxyCapture", "eventProxy", "removeEventListener", "e", "removeAttribute", "setAttribute", "createEventProxy", "eventHandler", "_dispatched", "event", "tmp", "isNew", "oldProps", "oldState", "snapshot", "clearProcessingException", "newProps", "isClassComponent", "provider", "componentContext", "renderHook", "count", "isTopLevelFragment", "newType", "outer", "prototype", "render", "contextType", "__E", "doRender", "sub", "state", "__h", "_sb", "__s", "getDerivedStateFromProps", "componentWillMount", "componentDidMount", "componentWillReceiveProps", "shouldComponentUpdate", "componentWillUpdate", "componentDidUpdate", "getChildContext", "getSnapshotBeforeUpdate", "then", "MODE_HYDRATE", "indexOf", "diffElementNodes", "diffed", "root", "cb", "newHtml", "oldHtml", "newChildren", "inputValue", "checked", "localName", "document", "createTextNode", "createElementNS", "is", "__m", "data", "childNodes", "attributes", "__html", "innerHTML", "content", "hasRefUnmount", "skipRemove", "r", "componentWillUnmount", "replaceNode", "documentElement", "firstChild", "hydrate", "cloneElement", "createContext", "defaultValue", "Context", "subs", "ctx", "Set", "_props", "forEach", "add", "old", "delete", "Provider", "__l", "Consumer", "contextValue", "isValidElement", "init_preact_module", "__esmMin", "__name", "error", "errorInfo", "ctor", "handled", "getDerivedStateFromError", "setState", "componentDidCatch", "undefined", "update", "callback", "s", "forceUpdate", "Promise", "bind", "resolve", "setTimeout", "a", "b", "getHookState", "index", "type", "options", "__h", "currentComponent", "currentHook", "hooks", "__H", "__", "length", "push", "useState", "initialState", "useReducer", "invokeOrReturn", "reducer", "init", "hookState", "currentIndex", "_reducer", "__c", "action", "currentValue", "__N", "nextValue", "setState", "__f", "updateHookState", "__name", "p", "s", "c", "stateHooks", "filter", "x", "every", "prevScu", "call", "this", "shouldUpdate", "props", "forEach", "hookItem", "shouldComponentUpdate", "prevCWU", "componentWillUpdate", "__e", "tmp", "useEffect", "callback", "args", "state", "__s", "argsChanged", "_pendingArgs", "useLayoutEffect", "useRef", "initialValue", "useMemo", "current", "useImperativeHandle", "ref", "createHandle", "result", "concat", "factory", "useCallback", "useContext", "context", "provider", "sub", "value", "useDebugValue", "formatter", "n", "useErrorBoundary", "cb", "errState", "componentDidCatch", "err", "errorInfo", "undefined", "useId", "root", "__v", "__m", "mask", "flushAfterPaintEffects", "component", "afterPaintEffects", "shift", "__P", "invokeCleanup", "invokeEffect", "e", "afterNextFrame", "raf", "done", "clearTimeout", "timeout", "HAS_RAF", "cancelAnimationFrame", "setTimeout", "requestAnimationFrame", "hook", "comp", "cleanup", "oldArgs", "newArgs", "some", "arg", "f", "previousComponent", "prevRaf", "oldBeforeDiff", "oldBeforeRender", "oldAfterDiff", "oldCommit", "oldBeforeUnmount", "oldRoot", "_options", "__b", "__r", "diffed", "unmount", "vnode", "parentDom", "__k", "commitQueue", "hasErrored", "assign", "obj", "props", "i", "shallowDiffers", "a", "b", "useSyncExternalStore", "subscribe", "getSnapshot", "value", "_useState", "useState", "_instance", "__", "_getSnapshot", "forceUpdate", "useLayoutEffect", "didSnapshotChange", "useEffect", "inst", "x", "y", "latestGetSnapshot", "prevValue", "nextValue", "error", "startTransition", "cb", "useDeferredValue", "val", "useTransition", "PureComponent", "p", "c", "this", "context", "memo", "comparer", "shouldUpdate", "nextProps", "ref", "updateRef", "call", "current", "Memoed", "shouldComponentUpdate", "createElement", "displayName", "name", "prototype", "isReactComponent", "__f", "forwardRef", "fn", "Forwarded", "clone", "$$typeof", "REACT_FORWARD_SYMBOL", "render", "detachedClone", "vnode", "detachedParent", "parentDom", "__c", "__H", "forEach", "effect", "__P", "__k", "map", "child", "removeOriginal", "originalParent", "__v", "__e", "appendChild", "Suspense", "__u", "_suspenders", "__b", "suspended", "component", "__a", "lazy", "loader", "prom", "Lazy", "then", "exports", "default", "e", "SuspenseList", "_next", "_map", "ContextProvider", "getChildContext", "children", "Portal", "_this", "container", "_container", "componentWillUnmount", "_temp", "nodeType", "parentNode", "childNodes", "contains", "__name", "push", "insertBefore", "before", "removeChild", "splice", "indexOf", "createPortal", "el", "containerInfo", "parent", "callback", "textContent", "preactRender", "hydrate", "preactHydrate", "empty", "isPropagationStopped", "cancelBubble", "isDefaultPrevented", "defaultPrevented", "createFactory", "type", "bind", "isValidElement", "element", "REACT_ELEMENT_TYPE", "isFragment", "Fragment", "isMemo", "String", "startsWith", "cloneElement", "preactCloneElement", "apply", "arguments", "unmountComponentAtNode", "findDOMNode", "base", "useInsertionEffect", "oldDiffHook", "mapFn", "Children", "oldCatchError", "oldUnmount", "resolve", "CAMEL_PROPS", "ON_ANI", "CAMEL_REPLACE", "IS_DOM", "onChangeInputType", "oldEventHook", "currentComponent", "classNameDescriptorNonEnumberable", "oldVNodeHook", "oldBeforeRender", "oldDiffed", "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED", "version", "unstable_batchedUpdates", "flushSync", "StrictMode", "isElement", "index", "Component", "isPureReactComponent", "state", "options", "Symbol", "for", "toChildArray", "count", "length", "only", "normalized", "toArray", "newVNode", "oldVNode", "errorInfo", "unmount", "__R", "promise", "suspendingVNode", "suspendingComponent", "resolved", "onResolved", "onSuspensionComplete", "suspendedVNode", "__O", "setState", "pop", "document", "detachedComponent", "fallback", "list", "node", "delete", "revealOrder", "size", "delegated", "get", "unsuspend", "wrappedUnsuspend", "Map", "reverse", "set", "componentDidUpdate", "componentDidMount", "test", "key", "Object", "defineProperty", "configurable", "v", "writable", "event", "persist", "nativeEvent", "enumerable", "class", "normalizedProps", "isNonDashedType", "lowerCased", "toLowerCase", "replace", "multiple", "Array", "isArray", "selected", "defaultValue", "className", "__r", "diffed", "dom", "ReactCurrentDispatcher", "readContext", "__n", "useCallback", "useContext", "useDebugValue", "useId", "useImperativeHandle", "useMemo", "useReducer", "useRef", "arg", "createContext", "createRef"]
}