From 1a19e7c6e538d030fe2962d05861d9273105a542 Mon Sep 17 00:00:00 2001 From: Kaja Skraamo Date: Mon, 14 Apr 2025 10:32:12 +0200 Subject: [PATCH 1/4] Added a user page --- frontend/node_modules/.package-lock.json | 6 + .../.vite/deps/@astrojs_vue_client__js.js | 77 + .../.vite/deps/@astrojs_vue_client__js.js.map | 7 + .../node_modules/.vite/deps/_metadata.json | 52 + .../.vite/deps/astro___aria-query.js | 6776 +++++++++ .../.vite/deps/astro___aria-query.js.map | 7 + .../.vite/deps/astro___axobject-query.js | 3754 +++++ .../.vite/deps/astro___axobject-query.js.map | 7 + .../node_modules/.vite/deps/astro___cssesc.js | 99 + .../.vite/deps/astro___cssesc.js.map | 7 + .../node_modules/.vite/deps/chunk-BUSYA2B4.js | 8 + .../.vite/deps/chunk-BUSYA2B4.js.map | 7 + .../node_modules/.vite/deps/chunk-U3LI7FBV.js | 12542 ++++++++++++++++ .../.vite/deps/chunk-U3LI7FBV.js.map | 7 + frontend/node_modules/.vite/deps/leaflet.js | 9563 ++++++++++++ .../node_modules/.vite/deps/leaflet.js.map | 7 + frontend/node_modules/.vite/deps/package.json | 3 + frontend/node_modules/.vite/deps/vue.js | 343 + frontend/node_modules/.vite/deps/vue.js.map | 7 + frontend/sortify/app/component/header.tsx | 7 +- frontend/sortify/app/component/profile.tsx | 287 + 21 files changed, 33572 insertions(+), 1 deletion(-) create mode 100644 frontend/node_modules/.package-lock.json create mode 100644 frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js create mode 100644 frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js.map create mode 100644 frontend/node_modules/.vite/deps/_metadata.json create mode 100644 frontend/node_modules/.vite/deps/astro___aria-query.js create mode 100644 frontend/node_modules/.vite/deps/astro___aria-query.js.map create mode 100644 frontend/node_modules/.vite/deps/astro___axobject-query.js create mode 100644 frontend/node_modules/.vite/deps/astro___axobject-query.js.map create mode 100644 frontend/node_modules/.vite/deps/astro___cssesc.js create mode 100644 frontend/node_modules/.vite/deps/astro___cssesc.js.map create mode 100644 frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js create mode 100644 frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js.map create mode 100644 frontend/node_modules/.vite/deps/chunk-U3LI7FBV.js create mode 100644 frontend/node_modules/.vite/deps/chunk-U3LI7FBV.js.map create mode 100644 frontend/node_modules/.vite/deps/leaflet.js create mode 100644 frontend/node_modules/.vite/deps/leaflet.js.map create mode 100644 frontend/node_modules/.vite/deps/package.json create mode 100644 frontend/node_modules/.vite/deps/vue.js create mode 100644 frontend/node_modules/.vite/deps/vue.js.map create mode 100644 frontend/sortify/app/component/profile.tsx diff --git a/frontend/node_modules/.package-lock.json b/frontend/node_modules/.package-lock.json new file mode 100644 index 00000000..aba25f73 --- /dev/null +++ b/frontend/node_modules/.package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "frontend", + "lockfileVersion": 3, + "requires": true, + "packages": {} +} diff --git a/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js b/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js new file mode 100644 index 00000000..163b97a0 --- /dev/null +++ b/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js @@ -0,0 +1,77 @@ +import { + Suspense, + createApp, + createSSRApp, + defineComponent, + h +} from "./chunk-U3LI7FBV.js"; +import "./chunk-BUSYA2B4.js"; + +// node_modules/@astrojs/vue/client.js +import { setup } from "virtual:@astrojs/vue/app"; + +// node_modules/@astrojs/vue/static-html.js +var StaticHtml = defineComponent({ + props: { + value: String, + name: String, + hydrate: { + type: Boolean, + default: true + } + }, + setup({ name, value, hydrate }) { + if (!value) return () => null; + let tagName = hydrate ? "astro-slot" : "astro-static-slot"; + return () => h(tagName, { name, innerHTML: value }); + } +}); +var static_html_default = StaticHtml; + +// node_modules/@astrojs/vue/client.js +var appMap = /* @__PURE__ */ new WeakMap(); +var client_default = (element) => async (Component, props, slotted, { client }) => { + if (!element.hasAttribute("ssr")) return; + const name = Component.name ? `${Component.name} Host` : void 0; + const slots = {}; + for (const [key, value] of Object.entries(slotted)) { + slots[key] = () => h(static_html_default, { value, name: key === "default" ? void 0 : key }); + } + const isHydrate = client !== "only"; + const bootstrap = isHydrate ? createSSRApp : createApp; + let appInstance = appMap.get(element); + if (!appInstance) { + appInstance = { + props, + slots + }; + const app = bootstrap({ + name, + render() { + let content = h(Component, appInstance.props, appInstance.slots); + appInstance.component = this; + if (isAsync(Component.setup)) { + content = h(Suspense, null, content); + } + return content; + } + }); + app.config.idPrefix = element.getAttribute("prefix"); + await setup(app); + app.mount(element, isHydrate); + appMap.set(element, appInstance); + element.addEventListener("astro:unmount", () => app.unmount(), { once: true }); + } else { + appInstance.props = props; + appInstance.slots = slots; + appInstance.component.$forceUpdate(); + } +}; +function isAsync(fn) { + const constructor = fn == null ? void 0 : fn.constructor; + return constructor && constructor.name === "AsyncFunction"; +} +export { + client_default as default +}; +//# sourceMappingURL=@astrojs_vue_client__js.js.map diff --git a/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js.map b/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js.map new file mode 100644 index 00000000..de68e80e --- /dev/null +++ b/frontend/node_modules/.vite/deps/@astrojs_vue_client__js.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": ["../../@astrojs/vue/client.js", "../../@astrojs/vue/static-html.js"], + "sourcesContent": ["import { setup } from 'virtual:@astrojs/vue/app';\nimport { Suspense, createApp, createSSRApp, h } from 'vue';\nimport StaticHtml from './static-html.js';\n\n// keep track of already initialized apps, so we don't hydrate again for view transitions\nlet appMap = new WeakMap();\n\nexport default (element) =>\n\tasync (Component, props, slotted, { client }) => {\n\t\tif (!element.hasAttribute('ssr')) return;\n\n\t\t// Expose name on host component for Vue devtools\n\t\tconst name = Component.name ? `${Component.name} Host` : undefined;\n\t\tconst slots = {};\n\t\tfor (const [key, value] of Object.entries(slotted)) {\n\t\t\tslots[key] = () => h(StaticHtml, { value, name: key === 'default' ? undefined : key });\n\t\t}\n\n\t\tconst isHydrate = client !== 'only';\n\t\tconst bootstrap = isHydrate ? createSSRApp : createApp;\n\n\t\t// keep a reference to the app, props and slots so we can update a running instance later\n\t\tlet appInstance = appMap.get(element);\n\n\t\tif (!appInstance) {\n\t\t\tappInstance = {\n\t\t\t\tprops,\n\t\t\t\tslots,\n\t\t\t};\n\t\t\tconst app = bootstrap({\n\t\t\t\tname,\n\t\t\t\trender() {\n\t\t\t\t\tlet content = h(Component, appInstance.props, appInstance.slots);\n\t\t\t\t\tappInstance.component = this;\n\t\t\t\t\t// related to https://github.com/withastro/astro/issues/6549\n\t\t\t\t\t// if the component is async, wrap it in a Suspense component\n\t\t\t\t\tif (isAsync(Component.setup)) {\n\t\t\t\t\t\tcontent = h(Suspense, null, content);\n\t\t\t\t\t}\n\t\t\t\t\treturn content;\n\t\t\t\t},\n\t\t\t});\n\t\t\tapp.config.idPrefix = element.getAttribute('prefix');\n\t\t\tawait setup(app);\n\t\t\tapp.mount(element, isHydrate);\n\t\t\tappMap.set(element, appInstance);\n\t\t\telement.addEventListener('astro:unmount', () => app.unmount(), { once: true });\n\t\t} else {\n\t\t\tappInstance.props = props;\n\t\t\tappInstance.slots = slots;\n\t\t\tappInstance.component.$forceUpdate();\n\t\t}\n\t};\n\nfunction isAsync(fn) {\n\tconst constructor = fn?.constructor;\n\treturn constructor && constructor.name === 'AsyncFunction';\n}\n", "import { defineComponent, h } from 'vue';\n\n/**\n * Astro passes `children` as a string of HTML, so we need\n * a wrapper `div` to render that content as VNodes.\n *\n * This is the Vue + JSX equivalent of using `
`\n */\nconst StaticHtml = defineComponent({\n\tprops: {\n\t\tvalue: String,\n\t\tname: String,\n\t\thydrate: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: true,\n\t\t},\n\t},\n\tsetup({ name, value, hydrate }) {\n\t\tif (!value) return () => null;\n\t\tlet tagName = hydrate ? 'astro-slot' : 'astro-static-slot';\n\t\treturn () => h(tagName, { name, innerHTML: value });\n\t},\n});\n\n/**\n * Other frameworks have `shouldComponentUpdate` in order to signal\n * that this subtree is entirely static and will not be updated\n *\n * Fortunately, Vue is smart enough to figure that out without any\n * help from us, so this just works out of the box!\n */\n\nexport default StaticHtml;\n"], + "mappings": ";;;;;;;;;;AAAA,SAAS,aAAa;;;ACQtB,IAAM,aAAa,gBAAgB;AAAA,EAClC,OAAO;AAAA,IACN,OAAO;AAAA,IACP,MAAM;AAAA,IACN,SAAS;AAAA,MACR,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACD;AAAA,EACA,MAAM,EAAE,MAAM,OAAO,QAAQ,GAAG;AAC/B,QAAI,CAAC,MAAO,QAAO,MAAM;AACzB,QAAI,UAAU,UAAU,eAAe;AACvC,WAAO,MAAM,EAAE,SAAS,EAAE,MAAM,WAAW,MAAM,CAAC;AAAA,EACnD;AACD,CAAC;AAUD,IAAO,sBAAQ;;;AD3Bf,IAAI,SAAS,oBAAI,QAAQ;AAEzB,IAAO,iBAAQ,CAAC,YACf,OAAO,WAAW,OAAO,SAAS,EAAE,OAAO,MAAM;AAChD,MAAI,CAAC,QAAQ,aAAa,KAAK,EAAG;AAGlC,QAAM,OAAO,UAAU,OAAO,GAAG,UAAU,IAAI,UAAU;AACzD,QAAM,QAAQ,CAAC;AACf,aAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,OAAO,GAAG;AACnD,UAAM,GAAG,IAAI,MAAM,EAAE,qBAAY,EAAE,OAAO,MAAM,QAAQ,YAAY,SAAY,IAAI,CAAC;AAAA,EACtF;AAEA,QAAM,YAAY,WAAW;AAC7B,QAAM,YAAY,YAAY,eAAe;AAG7C,MAAI,cAAc,OAAO,IAAI,OAAO;AAEpC,MAAI,CAAC,aAAa;AACjB,kBAAc;AAAA,MACb;AAAA,MACA;AAAA,IACD;AACA,UAAM,MAAM,UAAU;AAAA,MACrB;AAAA,MACA,SAAS;AACR,YAAI,UAAU,EAAE,WAAW,YAAY,OAAO,YAAY,KAAK;AAC/D,oBAAY,YAAY;AAGxB,YAAI,QAAQ,UAAU,KAAK,GAAG;AAC7B,oBAAU,EAAE,UAAU,MAAM,OAAO;AAAA,QACpC;AACA,eAAO;AAAA,MACR;AAAA,IACD,CAAC;AACD,QAAI,OAAO,WAAW,QAAQ,aAAa,QAAQ;AACnD,UAAM,MAAM,GAAG;AACf,QAAI,MAAM,SAAS,SAAS;AAC5B,WAAO,IAAI,SAAS,WAAW;AAC/B,YAAQ,iBAAiB,iBAAiB,MAAM,IAAI,QAAQ,GAAG,EAAE,MAAM,KAAK,CAAC;AAAA,EAC9E,OAAO;AACN,gBAAY,QAAQ;AACpB,gBAAY,QAAQ;AACpB,gBAAY,UAAU,aAAa;AAAA,EACpC;AACD;AAED,SAAS,QAAQ,IAAI;AACpB,QAAM,cAAc,yBAAI;AACxB,SAAO,eAAe,YAAY,SAAS;AAC5C;", + "names": [] +} diff --git a/frontend/node_modules/.vite/deps/_metadata.json b/frontend/node_modules/.vite/deps/_metadata.json new file mode 100644 index 00000000..9635c262 --- /dev/null +++ b/frontend/node_modules/.vite/deps/_metadata.json @@ -0,0 +1,52 @@ +{ + "hash": "e7279fc1", + "configHash": "9fb5e90d", + "lockfileHash": "f8880772", + "browserHash": "d392ffae", + "optimized": { + "@astrojs/vue/client.js": { + "src": "../../@astrojs/vue/client.js", + "file": "@astrojs_vue_client__js.js", + "fileHash": "bc85b251", + "needsInterop": false + }, + "vue": { + "src": "../../vue/dist/vue.runtime.esm-bundler.js", + "file": "vue.js", + "fileHash": "578f344e", + "needsInterop": false + }, + "astro > cssesc": { + "src": "../../cssesc/cssesc.js", + "file": "astro___cssesc.js", + "fileHash": "6219be69", + "needsInterop": true + }, + "astro > aria-query": { + "src": "../../aria-query/lib/index.js", + "file": "astro___aria-query.js", + "fileHash": "89c194f9", + "needsInterop": true + }, + "astro > axobject-query": { + "src": "../../axobject-query/lib/index.js", + "file": "astro___axobject-query.js", + "fileHash": "e3e9a35a", + "needsInterop": true + }, + "leaflet": { + "src": "../../leaflet/dist/leaflet-src.js", + "file": "leaflet.js", + "fileHash": "89c7f0a9", + "needsInterop": true + } + }, + "chunks": { + "chunk-U3LI7FBV": { + "file": "chunk-U3LI7FBV.js" + }, + "chunk-BUSYA2B4": { + "file": "chunk-BUSYA2B4.js" + } + } +} \ No newline at end of file diff --git a/frontend/node_modules/.vite/deps/astro___aria-query.js b/frontend/node_modules/.vite/deps/astro___aria-query.js new file mode 100644 index 00000000..1314200e --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___aria-query.js @@ -0,0 +1,6776 @@ +import { + __commonJS +} from "./chunk-BUSYA2B4.js"; + +// node_modules/aria-query/lib/util/iteratorProxy.js +var require_iteratorProxy = __commonJS({ + "node_modules/aria-query/lib/util/iteratorProxy.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + function iteratorProxy() { + var values = this; + var index = 0; + var iter = { + "@@iterator": function iterator() { + return iter; + }, + next: function next() { + if (index < values.length) { + var value = values[index]; + index = index + 1; + return { + done: false, + value + }; + } else { + return { + done: true + }; + } + } + }; + return iter; + } + var _default = exports.default = iteratorProxy; + } +}); + +// node_modules/aria-query/lib/util/iterationDecorator.js +var require_iterationDecorator = __commonJS({ + "node_modules/aria-query/lib/util/iterationDecorator.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = iterationDecorator; + var _iteratorProxy = _interopRequireDefault(require_iteratorProxy()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _typeof(o) { + "@babel/helpers - typeof"; + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) { + return typeof o2; + } : function(o2) { + return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2; + }, _typeof(o); + } + function iterationDecorator(collection, entries) { + if (typeof Symbol === "function" && _typeof(Symbol.iterator) === "symbol") { + Object.defineProperty(collection, Symbol.iterator, { + value: _iteratorProxy.default.bind(entries) + }); + } + return collection; + } + } +}); + +// node_modules/aria-query/lib/ariaPropsMap.js +var require_ariaPropsMap = __commonJS({ + "node_modules/aria-query/lib/ariaPropsMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _slicedToArray(r, e) { + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(r, a) { + if (r) { + if ("string" == typeof r) return _arrayLikeToArray(r, a); + var t = {}.toString.call(r).slice(8, -1); + return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; + } + } + function _arrayLikeToArray(r, a) { + (null == a || a > r.length) && (a = r.length); + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; + return n; + } + function _iterableToArrayLimit(r, l) { + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (null != t) { + var e, n, i, u, a = [], f = true, o = false; + try { + if (i = (t = t.call(r)).next, 0 === l) { + if (Object(t) !== t) return; + f = false; + } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = true) ; + } catch (r2) { + o = true, n = r2; + } finally { + try { + if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; + } finally { + if (o) throw n; + } + } + return a; + } + } + function _arrayWithHoles(r) { + if (Array.isArray(r)) return r; + } + var properties = [["aria-activedescendant", { + "type": "id" + }], ["aria-atomic", { + "type": "boolean" + }], ["aria-autocomplete", { + "type": "token", + "values": ["inline", "list", "both", "none"] + }], ["aria-braillelabel", { + "type": "string" + }], ["aria-brailleroledescription", { + "type": "string" + }], ["aria-busy", { + "type": "boolean" + }], ["aria-checked", { + "type": "tristate" + }], ["aria-colcount", { + type: "integer" + }], ["aria-colindex", { + type: "integer" + }], ["aria-colspan", { + type: "integer" + }], ["aria-controls", { + "type": "idlist" + }], ["aria-current", { + type: "token", + values: ["page", "step", "location", "date", "time", true, false] + }], ["aria-describedby", { + "type": "idlist" + }], ["aria-description", { + "type": "string" + }], ["aria-details", { + "type": "id" + }], ["aria-disabled", { + "type": "boolean" + }], ["aria-dropeffect", { + "type": "tokenlist", + "values": ["copy", "execute", "link", "move", "none", "popup"] + }], ["aria-errormessage", { + "type": "id" + }], ["aria-expanded", { + "type": "boolean", + "allowundefined": true + }], ["aria-flowto", { + "type": "idlist" + }], ["aria-grabbed", { + "type": "boolean", + "allowundefined": true + }], ["aria-haspopup", { + "type": "token", + "values": [false, true, "menu", "listbox", "tree", "grid", "dialog"] + }], ["aria-hidden", { + "type": "boolean", + "allowundefined": true + }], ["aria-invalid", { + "type": "token", + "values": ["grammar", false, "spelling", true] + }], ["aria-keyshortcuts", { + type: "string" + }], ["aria-label", { + "type": "string" + }], ["aria-labelledby", { + "type": "idlist" + }], ["aria-level", { + "type": "integer" + }], ["aria-live", { + "type": "token", + "values": ["assertive", "off", "polite"] + }], ["aria-modal", { + type: "boolean" + }], ["aria-multiline", { + "type": "boolean" + }], ["aria-multiselectable", { + "type": "boolean" + }], ["aria-orientation", { + "type": "token", + "values": ["vertical", "undefined", "horizontal"] + }], ["aria-owns", { + "type": "idlist" + }], ["aria-placeholder", { + type: "string" + }], ["aria-posinset", { + "type": "integer" + }], ["aria-pressed", { + "type": "tristate" + }], ["aria-readonly", { + "type": "boolean" + }], ["aria-relevant", { + "type": "tokenlist", + "values": ["additions", "all", "removals", "text"] + }], ["aria-required", { + "type": "boolean" + }], ["aria-roledescription", { + type: "string" + }], ["aria-rowcount", { + type: "integer" + }], ["aria-rowindex", { + type: "integer" + }], ["aria-rowspan", { + type: "integer" + }], ["aria-selected", { + "type": "boolean", + "allowundefined": true + }], ["aria-setsize", { + "type": "integer" + }], ["aria-sort", { + "type": "token", + "values": ["ascending", "descending", "none", "other"] + }], ["aria-valuemax", { + "type": "number" + }], ["aria-valuemin", { + "type": "number" + }], ["aria-valuenow", { + "type": "number" + }], ["aria-valuetext", { + "type": "string" + }]]; + var ariaPropsMap = { + entries: function entries() { + return properties; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _properties = properties; _i < _properties.length; _i++) { + var _properties$_i = _slicedToArray(_properties[_i], 2), key = _properties$_i[0], values = _properties$_i[1]; + fn.call(thisArg, values, key, properties); + } + }, + get: function get(key) { + var item = properties.filter(function(tuple) { + return tuple[0] === key ? true : false; + })[0]; + return item && item[1]; + }, + has: function has(key) { + return !!ariaPropsMap.get(key); + }, + keys: function keys() { + return properties.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return properties.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = exports.default = (0, _iterationDecorator.default)(ariaPropsMap, ariaPropsMap.entries()); + } +}); + +// node_modules/aria-query/lib/domMap.js +var require_domMap = __commonJS({ + "node_modules/aria-query/lib/domMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _slicedToArray(r, e) { + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(r, a) { + if (r) { + if ("string" == typeof r) return _arrayLikeToArray(r, a); + var t = {}.toString.call(r).slice(8, -1); + return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; + } + } + function _arrayLikeToArray(r, a) { + (null == a || a > r.length) && (a = r.length); + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; + return n; + } + function _iterableToArrayLimit(r, l) { + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (null != t) { + var e, n, i, u, a = [], f = true, o = false; + try { + if (i = (t = t.call(r)).next, 0 === l) { + if (Object(t) !== t) return; + f = false; + } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = true) ; + } catch (r2) { + o = true, n = r2; + } finally { + try { + if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; + } finally { + if (o) throw n; + } + } + return a; + } + } + function _arrayWithHoles(r) { + if (Array.isArray(r)) return r; + } + var dom = [["a", { + reserved: false + }], ["abbr", { + reserved: false + }], ["acronym", { + reserved: false + }], ["address", { + reserved: false + }], ["applet", { + reserved: false + }], ["area", { + reserved: false + }], ["article", { + reserved: false + }], ["aside", { + reserved: false + }], ["audio", { + reserved: false + }], ["b", { + reserved: false + }], ["base", { + reserved: true + }], ["bdi", { + reserved: false + }], ["bdo", { + reserved: false + }], ["big", { + reserved: false + }], ["blink", { + reserved: false + }], ["blockquote", { + reserved: false + }], ["body", { + reserved: false + }], ["br", { + reserved: false + }], ["button", { + reserved: false + }], ["canvas", { + reserved: false + }], ["caption", { + reserved: false + }], ["center", { + reserved: false + }], ["cite", { + reserved: false + }], ["code", { + reserved: false + }], ["col", { + reserved: true + }], ["colgroup", { + reserved: true + }], ["content", { + reserved: false + }], ["data", { + reserved: false + }], ["datalist", { + reserved: false + }], ["dd", { + reserved: false + }], ["del", { + reserved: false + }], ["details", { + reserved: false + }], ["dfn", { + reserved: false + }], ["dialog", { + reserved: false + }], ["dir", { + reserved: false + }], ["div", { + reserved: false + }], ["dl", { + reserved: false + }], ["dt", { + reserved: false + }], ["em", { + reserved: false + }], ["embed", { + reserved: false + }], ["fieldset", { + reserved: false + }], ["figcaption", { + reserved: false + }], ["figure", { + reserved: false + }], ["font", { + reserved: false + }], ["footer", { + reserved: false + }], ["form", { + reserved: false + }], ["frame", { + reserved: false + }], ["frameset", { + reserved: false + }], ["h1", { + reserved: false + }], ["h2", { + reserved: false + }], ["h3", { + reserved: false + }], ["h4", { + reserved: false + }], ["h5", { + reserved: false + }], ["h6", { + reserved: false + }], ["head", { + reserved: true + }], ["header", { + reserved: false + }], ["hgroup", { + reserved: false + }], ["hr", { + reserved: false + }], ["html", { + reserved: true + }], ["i", { + reserved: false + }], ["iframe", { + reserved: false + }], ["img", { + reserved: false + }], ["input", { + reserved: false + }], ["ins", { + reserved: false + }], ["kbd", { + reserved: false + }], ["keygen", { + reserved: false + }], ["label", { + reserved: false + }], ["legend", { + reserved: false + }], ["li", { + reserved: false + }], ["link", { + reserved: true + }], ["main", { + reserved: false + }], ["map", { + reserved: false + }], ["mark", { + reserved: false + }], ["marquee", { + reserved: false + }], ["menu", { + reserved: false + }], ["menuitem", { + reserved: false + }], ["meta", { + reserved: true + }], ["meter", { + reserved: false + }], ["nav", { + reserved: false + }], ["noembed", { + reserved: true + }], ["noscript", { + reserved: true + }], ["object", { + reserved: false + }], ["ol", { + reserved: false + }], ["optgroup", { + reserved: false + }], ["option", { + reserved: false + }], ["output", { + reserved: false + }], ["p", { + reserved: false + }], ["param", { + reserved: true + }], ["picture", { + reserved: true + }], ["pre", { + reserved: false + }], ["progress", { + reserved: false + }], ["q", { + reserved: false + }], ["rp", { + reserved: false + }], ["rt", { + reserved: false + }], ["rtc", { + reserved: false + }], ["ruby", { + reserved: false + }], ["s", { + reserved: false + }], ["samp", { + reserved: false + }], ["script", { + reserved: true + }], ["section", { + reserved: false + }], ["select", { + reserved: false + }], ["small", { + reserved: false + }], ["source", { + reserved: true + }], ["spacer", { + reserved: false + }], ["span", { + reserved: false + }], ["strike", { + reserved: false + }], ["strong", { + reserved: false + }], ["style", { + reserved: true + }], ["sub", { + reserved: false + }], ["summary", { + reserved: false + }], ["sup", { + reserved: false + }], ["table", { + reserved: false + }], ["tbody", { + reserved: false + }], ["td", { + reserved: false + }], ["textarea", { + reserved: false + }], ["tfoot", { + reserved: false + }], ["th", { + reserved: false + }], ["thead", { + reserved: false + }], ["time", { + reserved: false + }], ["title", { + reserved: true + }], ["tr", { + reserved: false + }], ["track", { + reserved: true + }], ["tt", { + reserved: false + }], ["u", { + reserved: false + }], ["ul", { + reserved: false + }], ["var", { + reserved: false + }], ["video", { + reserved: false + }], ["wbr", { + reserved: false + }], ["xmp", { + reserved: false + }]]; + var domMap = { + entries: function entries() { + return dom; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _dom = dom; _i < _dom.length; _i++) { + var _dom$_i = _slicedToArray(_dom[_i], 2), key = _dom$_i[0], values = _dom$_i[1]; + fn.call(thisArg, values, key, dom); + } + }, + get: function get(key) { + var item = dom.filter(function(tuple) { + return tuple[0] === key ? true : false; + })[0]; + return item && item[1]; + }, + has: function has(key) { + return !!domMap.get(key); + }, + keys: function keys() { + return dom.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return dom.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = exports.default = (0, _iterationDecorator.default)(domMap, domMap.entries()); + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/commandRole.js +var require_commandRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/commandRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var commandRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget"]] + }; + var _default = exports.default = commandRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/compositeRole.js +var require_compositeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/compositeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var compositeRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-activedescendant": null, + "aria-disabled": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget"]] + }; + var _default = exports.default = compositeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/inputRole.js +var require_inputRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/inputRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var inputRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null + }, + relatedConcepts: [{ + concept: { + name: "input" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget"]] + }; + var _default = exports.default = inputRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/landmarkRole.js +var require_landmarkRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/landmarkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var landmarkRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = landmarkRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/rangeRole.js +var require_rangeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/rangeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var rangeRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-valuemax": null, + "aria-valuemin": null, + "aria-valuenow": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = rangeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/roletypeRole.js +var require_roletypeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/roletypeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var roletypeRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: [], + prohibitedProps: [], + props: { + "aria-atomic": null, + "aria-busy": null, + "aria-controls": null, + "aria-current": null, + "aria-describedby": null, + "aria-details": null, + "aria-dropeffect": null, + "aria-flowto": null, + "aria-grabbed": null, + "aria-hidden": null, + "aria-keyshortcuts": null, + "aria-label": null, + "aria-labelledby": null, + "aria-live": null, + "aria-owns": null, + "aria-relevant": null, + "aria-roledescription": null + }, + relatedConcepts: [{ + concept: { + name: "role" + }, + module: "XHTML" + }, { + concept: { + name: "type" + }, + module: "Dublin Core" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [] + }; + var _default = exports.default = roletypeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/sectionRole.js +var require_sectionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/sectionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var sectionRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: [], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "frontmatter" + }, + module: "DTB" + }, { + concept: { + name: "level" + }, + module: "DTB" + }, { + concept: { + name: "level" + }, + module: "SMIL" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = sectionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/sectionheadRole.js +var require_sectionheadRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/sectionheadRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var sectionheadRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = sectionheadRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/selectRole.js +var require_selectRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/selectRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var selectRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-orientation": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "composite"], ["roletype", "structure", "section", "group"]] + }; + var _default = exports.default = selectRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/structureRole.js +var require_structureRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/structureRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var structureRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: [], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype"]] + }; + var _default = exports.default = structureRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/widgetRole.js +var require_widgetRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/widgetRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var widgetRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: [], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype"]] + }; + var _default = exports.default = widgetRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/abstract/windowRole.js +var require_windowRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/abstract/windowRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var windowRole = { + abstract: true, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-modal": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype"]] + }; + var _default = exports.default = windowRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/ariaAbstractRoles.js +var require_ariaAbstractRoles = __commonJS({ + "node_modules/aria-query/lib/etc/roles/ariaAbstractRoles.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _commandRole = _interopRequireDefault(require_commandRole()); + var _compositeRole = _interopRequireDefault(require_compositeRole()); + var _inputRole = _interopRequireDefault(require_inputRole()); + var _landmarkRole = _interopRequireDefault(require_landmarkRole()); + var _rangeRole = _interopRequireDefault(require_rangeRole()); + var _roletypeRole = _interopRequireDefault(require_roletypeRole()); + var _sectionRole = _interopRequireDefault(require_sectionRole()); + var _sectionheadRole = _interopRequireDefault(require_sectionheadRole()); + var _selectRole = _interopRequireDefault(require_selectRole()); + var _structureRole = _interopRequireDefault(require_structureRole()); + var _widgetRole = _interopRequireDefault(require_widgetRole()); + var _windowRole = _interopRequireDefault(require_windowRole()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + var ariaAbstractRoles = [["command", _commandRole.default], ["composite", _compositeRole.default], ["input", _inputRole.default], ["landmark", _landmarkRole.default], ["range", _rangeRole.default], ["roletype", _roletypeRole.default], ["section", _sectionRole.default], ["sectionhead", _sectionheadRole.default], ["select", _selectRole.default], ["structure", _structureRole.default], ["widget", _widgetRole.default], ["window", _windowRole.default]]; + var _default = exports.default = ariaAbstractRoles; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/alertRole.js +var require_alertRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/alertRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var alertRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-atomic": "true", + "aria-live": "assertive" + }, + relatedConcepts: [{ + concept: { + name: "alert" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = alertRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/alertdialogRole.js +var require_alertdialogRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/alertdialogRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var alertdialogRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "alert" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "alert"], ["roletype", "window", "dialog"]] + }; + var _default = exports.default = alertdialogRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/applicationRole.js +var require_applicationRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/applicationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var applicationRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-activedescendant": null, + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "Device Independence Delivery Unit" + } + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = applicationRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/articleRole.js +var require_articleRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/articleRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var articleRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-posinset": null, + "aria-setsize": null + }, + relatedConcepts: [{ + concept: { + name: "article" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "document"]] + }; + var _default = exports.default = articleRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/bannerRole.js +var require_bannerRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/bannerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var bannerRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + constraints: ["scoped to the body element"], + name: "header" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = bannerRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/blockquoteRole.js +var require_blockquoteRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/blockquoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var blockquoteRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "blockquote" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = blockquoteRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/buttonRole.js +var require_buttonRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/buttonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var buttonRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-pressed": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "type", + value: "button" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "type", + value: "image" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "type", + value: "reset" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "type", + value: "submit" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + name: "button" + }, + module: "HTML" + }, { + concept: { + name: "trigger" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command"]] + }; + var _default = exports.default = buttonRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/captionRole.js +var require_captionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/captionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var captionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "caption" + }, + module: "HTML" + }], + requireContextRole: ["figure", "grid", "table"], + requiredContextRole: ["figure", "grid", "table"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = captionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/cellRole.js +var require_cellRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/cellRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var cellRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-colindex": null, + "aria-colspan": null, + "aria-rowindex": null, + "aria-rowspan": null + }, + relatedConcepts: [{ + concept: { + constraints: ["ancestor table element has table role"], + name: "td" + }, + module: "HTML" + }], + requireContextRole: ["row"], + requiredContextRole: ["row"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = cellRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/checkboxRole.js +var require_checkboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/checkboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var checkboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-checked": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-required": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "type", + value: "checkbox" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + name: "option" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-checked": null + }, + superClass: [["roletype", "widget", "input"]] + }; + var _default = exports.default = checkboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/codeRole.js +var require_codeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/codeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var codeRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "code" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = codeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/columnheaderRole.js +var require_columnheaderRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/columnheaderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var columnheaderRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-sort": null + }, + relatedConcepts: [{ + concept: { + name: "th" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "scope", + value: "col" + }], + name: "th" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "scope", + value: "colgroup" + }], + name: "th" + }, + module: "HTML" + }], + requireContextRole: ["row"], + requiredContextRole: ["row"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "cell"], ["roletype", "structure", "section", "cell", "gridcell"], ["roletype", "widget", "gridcell"], ["roletype", "structure", "sectionhead"]] + }; + var _default = exports.default = columnheaderRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/comboboxRole.js +var require_comboboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/comboboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var comboboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-activedescendant": null, + "aria-autocomplete": null, + "aria-errormessage": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-required": null, + "aria-expanded": "false", + "aria-haspopup": "listbox" + }, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "email" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "search" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "tel" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "text" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "url" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "list" + }, { + name: "type", + value: "url" + }], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "multiple" + }, { + constraints: ["undefined"], + name: "size" + }], + constraints: ["the multiple attribute is not set and the size attribute does not have a value greater than 1"], + name: "select" + }, + module: "HTML" + }, { + concept: { + name: "select" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-controls": null, + "aria-expanded": "false" + }, + superClass: [["roletype", "widget", "input"]] + }; + var _default = exports.default = comboboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/complementaryRole.js +var require_complementaryRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/complementaryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var complementaryRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + constraints: ["scoped to the body element", "scoped to the main element"], + name: "aside" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-label" + }], + constraints: ["scoped to a sectioning content element", "scoped to a sectioning root element other than body"], + name: "aside" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-labelledby" + }], + constraints: ["scoped to a sectioning content element", "scoped to a sectioning root element other than body"], + name: "aside" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = complementaryRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/contentinfoRole.js +var require_contentinfoRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/contentinfoRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var contentinfoRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + constraints: ["scoped to the body element"], + name: "footer" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = contentinfoRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/definitionRole.js +var require_definitionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/definitionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var definitionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "dd" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = definitionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/deletionRole.js +var require_deletionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/deletionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var deletionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "del" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = deletionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/dialogRole.js +var require_dialogRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/dialogRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var dialogRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "dialog" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "window"]] + }; + var _default = exports.default = dialogRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/directoryRole.js +var require_directoryRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/directoryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var directoryRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + module: "DAISY Guide" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "list"]] + }; + var _default = exports.default = directoryRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/documentRole.js +var require_documentRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/documentRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var documentRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "Device Independence Delivery Unit" + } + }, { + concept: { + name: "html" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = documentRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/emphasisRole.js +var require_emphasisRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/emphasisRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var emphasisRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "em" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = emphasisRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/feedRole.js +var require_feedRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/feedRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var feedRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["article"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "list"]] + }; + var _default = exports.default = feedRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/figureRole.js +var require_figureRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/figureRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var figureRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "figure" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = figureRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/formRole.js +var require_formRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/formRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var formRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-label" + }], + name: "form" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-labelledby" + }], + name: "form" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "name" + }], + name: "form" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = formRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/genericRole.js +var require_genericRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/genericRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var genericRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "a" + }, + module: "HTML" + }, { + concept: { + name: "area" + }, + module: "HTML" + }, { + concept: { + name: "aside" + }, + module: "HTML" + }, { + concept: { + name: "b" + }, + module: "HTML" + }, { + concept: { + name: "bdo" + }, + module: "HTML" + }, { + concept: { + name: "body" + }, + module: "HTML" + }, { + concept: { + name: "data" + }, + module: "HTML" + }, { + concept: { + name: "div" + }, + module: "HTML" + }, { + concept: { + constraints: ["scoped to the main element", "scoped to a sectioning content element", "scoped to a sectioning root element other than body"], + name: "footer" + }, + module: "HTML" + }, { + concept: { + constraints: ["scoped to the main element", "scoped to a sectioning content element", "scoped to a sectioning root element other than body"], + name: "header" + }, + module: "HTML" + }, { + concept: { + name: "hgroup" + }, + module: "HTML" + }, { + concept: { + name: "i" + }, + module: "HTML" + }, { + concept: { + name: "pre" + }, + module: "HTML" + }, { + concept: { + name: "q" + }, + module: "HTML" + }, { + concept: { + name: "samp" + }, + module: "HTML" + }, { + concept: { + name: "section" + }, + module: "HTML" + }, { + concept: { + name: "small" + }, + module: "HTML" + }, { + concept: { + name: "span" + }, + module: "HTML" + }, { + concept: { + name: "u" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = genericRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/gridRole.js +var require_gridRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/gridRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var gridRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-multiselectable": null, + "aria-readonly": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["row"], ["row", "rowgroup"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite"], ["roletype", "structure", "section", "table"]] + }; + var _default = exports.default = gridRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/gridcellRole.js +var require_gridcellRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/gridcellRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var gridcellRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-required": null, + "aria-selected": null + }, + relatedConcepts: [{ + concept: { + constraints: ["ancestor table element has grid role", "ancestor table element has treegrid role"], + name: "td" + }, + module: "HTML" + }], + requireContextRole: ["row"], + requiredContextRole: ["row"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "cell"], ["roletype", "widget"]] + }; + var _default = exports.default = gridcellRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/groupRole.js +var require_groupRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/groupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var groupRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-activedescendant": null, + "aria-disabled": null + }, + relatedConcepts: [{ + concept: { + name: "details" + }, + module: "HTML" + }, { + concept: { + name: "fieldset" + }, + module: "HTML" + }, { + concept: { + name: "optgroup" + }, + module: "HTML" + }, { + concept: { + name: "address" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = groupRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/headingRole.js +var require_headingRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/headingRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var headingRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-level": "2" + }, + relatedConcepts: [{ + concept: { + name: "h1" + }, + module: "HTML" + }, { + concept: { + name: "h2" + }, + module: "HTML" + }, { + concept: { + name: "h3" + }, + module: "HTML" + }, { + concept: { + name: "h4" + }, + module: "HTML" + }, { + concept: { + name: "h5" + }, + module: "HTML" + }, { + concept: { + name: "h6" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-level": "2" + }, + superClass: [["roletype", "structure", "sectionhead"]] + }; + var _default = exports.default = headingRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/imgRole.js +var require_imgRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/imgRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var imgRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["set"], + name: "alt" + }], + name: "img" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "alt" + }], + name: "img" + }, + module: "HTML" + }, { + concept: { + name: "imggroup" + }, + module: "DTB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = imgRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/insertionRole.js +var require_insertionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/insertionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var insertionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "ins" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = insertionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/linkRole.js +var require_linkRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/linkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var linkRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-expanded": null, + "aria-haspopup": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["set"], + name: "href" + }], + name: "a" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "href" + }], + name: "area" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command"]] + }; + var _default = exports.default = linkRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/listRole.js +var require_listRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/listRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var listRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "menu" + }, + module: "HTML" + }, { + concept: { + name: "ol" + }, + module: "HTML" + }, { + concept: { + name: "ul" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["listitem"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = listRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/listboxRole.js +var require_listboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/listboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var listboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-expanded": null, + "aria-invalid": null, + "aria-multiselectable": null, + "aria-readonly": null, + "aria-required": null, + "aria-orientation": "vertical" + }, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: [">1"], + name: "size" + }], + constraints: ["the size attribute value is greater than 1"], + name: "select" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "multiple" + }], + name: "select" + }, + module: "HTML" + }, { + concept: { + name: "datalist" + }, + module: "HTML" + }, { + concept: { + name: "list" + }, + module: "ARIA" + }, { + concept: { + name: "select" + }, + module: "XForms" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["option", "group"], ["option"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "select"], ["roletype", "structure", "section", "group", "select"]] + }; + var _default = exports.default = listboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/listitemRole.js +var require_listitemRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/listitemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var listitemRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-level": null, + "aria-posinset": null, + "aria-setsize": null + }, + relatedConcepts: [{ + concept: { + constraints: ["direct descendant of ol", "direct descendant of ul", "direct descendant of menu"], + name: "li" + }, + module: "HTML" + }, { + concept: { + name: "item" + }, + module: "XForms" + }], + requireContextRole: ["directory", "list"], + requiredContextRole: ["directory", "list"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = listitemRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/logRole.js +var require_logRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/logRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var logRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-live": "polite" + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = logRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/mainRole.js +var require_mainRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/mainRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var mainRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "main" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = mainRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/markRole.js +var require_markRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/markRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var markRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: [], + props: { + "aria-braillelabel": null, + "aria-brailleroledescription": null, + "aria-description": null + }, + relatedConcepts: [{ + concept: { + name: "mark" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = markRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/marqueeRole.js +var require_marqueeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/marqueeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var marqueeRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = marqueeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/mathRole.js +var require_mathRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/mathRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var mathRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "math" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = mathRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/menuRole.js +var require_menuRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/menuRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var menuRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-orientation": "vertical" + }, + relatedConcepts: [{ + concept: { + name: "MENU" + }, + module: "JAPI" + }, { + concept: { + name: "list" + }, + module: "ARIA" + }, { + concept: { + name: "select" + }, + module: "XForms" + }, { + concept: { + name: "sidebar" + }, + module: "DTB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["menuitem", "group"], ["menuitemradio", "group"], ["menuitemcheckbox", "group"], ["menuitem"], ["menuitemcheckbox"], ["menuitemradio"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "select"], ["roletype", "structure", "section", "group", "select"]] + }; + var _default = exports.default = menuRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/menubarRole.js +var require_menubarRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/menubarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var menubarRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-orientation": "horizontal" + }, + relatedConcepts: [{ + concept: { + name: "toolbar" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["menuitem", "group"], ["menuitemradio", "group"], ["menuitemcheckbox", "group"], ["menuitem"], ["menuitemcheckbox"], ["menuitemradio"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "select", "menu"], ["roletype", "structure", "section", "group", "select", "menu"]] + }; + var _default = exports.default = menubarRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/menuitemRole.js +var require_menuitemRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/menuitemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var menuitemRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-posinset": null, + "aria-setsize": null + }, + relatedConcepts: [{ + concept: { + name: "MENU_ITEM" + }, + module: "JAPI" + }, { + concept: { + name: "listitem" + }, + module: "ARIA" + }, { + concept: { + name: "option" + }, + module: "ARIA" + }], + requireContextRole: ["group", "menu", "menubar"], + requiredContextRole: ["group", "menu", "menubar"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command"]] + }; + var _default = exports.default = menuitemRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/menuitemcheckboxRole.js +var require_menuitemcheckboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/menuitemcheckboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var menuitemcheckboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "menuitem" + }, + module: "ARIA" + }], + requireContextRole: ["group", "menu", "menubar"], + requiredContextRole: ["group", "menu", "menubar"], + requiredOwnedElements: [], + requiredProps: { + "aria-checked": null + }, + superClass: [["roletype", "widget", "input", "checkbox"], ["roletype", "widget", "command", "menuitem"]] + }; + var _default = exports.default = menuitemcheckboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/menuitemradioRole.js +var require_menuitemradioRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/menuitemradioRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var menuitemradioRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "menuitem" + }, + module: "ARIA" + }], + requireContextRole: ["group", "menu", "menubar"], + requiredContextRole: ["group", "menu", "menubar"], + requiredOwnedElements: [], + requiredProps: { + "aria-checked": null + }, + superClass: [["roletype", "widget", "input", "checkbox", "menuitemcheckbox"], ["roletype", "widget", "command", "menuitem", "menuitemcheckbox"], ["roletype", "widget", "input", "radio"]] + }; + var _default = exports.default = menuitemradioRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/meterRole.js +var require_meterRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/meterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var meterRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-valuetext": null, + "aria-valuemax": "100", + "aria-valuemin": "0" + }, + relatedConcepts: [{ + concept: { + name: "meter" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-valuenow": null + }, + superClass: [["roletype", "structure", "range"]] + }; + var _default = exports.default = meterRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/navigationRole.js +var require_navigationRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/navigationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var navigationRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "nav" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = navigationRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/noneRole.js +var require_noneRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/noneRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var noneRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: [], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [] + }; + var _default = exports.default = noneRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/noteRole.js +var require_noteRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/noteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var noteRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = noteRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/optionRole.js +var require_optionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/optionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var optionRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-checked": null, + "aria-posinset": null, + "aria-setsize": null, + "aria-selected": "false" + }, + relatedConcepts: [{ + concept: { + name: "item" + }, + module: "XForms" + }, { + concept: { + name: "listitem" + }, + module: "ARIA" + }, { + concept: { + name: "option" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-selected": "false" + }, + superClass: [["roletype", "widget", "input"]] + }; + var _default = exports.default = optionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/paragraphRole.js +var require_paragraphRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/paragraphRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var paragraphRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "p" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = paragraphRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/presentationRole.js +var require_presentationRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/presentationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var presentationRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "alt", + value: "" + }], + name: "img" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = presentationRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/progressbarRole.js +var require_progressbarRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/progressbarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var progressbarRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-valuetext": null + }, + relatedConcepts: [{ + concept: { + name: "progress" + }, + module: "HTML" + }, { + concept: { + name: "status" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "range"], ["roletype", "widget"]] + }; + var _default = exports.default = progressbarRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/radioRole.js +var require_radioRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/radioRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var radioRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-checked": null, + "aria-posinset": null, + "aria-setsize": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "type", + value: "radio" + }], + name: "input" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-checked": null + }, + superClass: [["roletype", "widget", "input"]] + }; + var _default = exports.default = radioRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/radiogroupRole.js +var require_radiogroupRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/radiogroupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var radiogroupRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-required": null + }, + relatedConcepts: [{ + concept: { + name: "list" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["radio"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "select"], ["roletype", "structure", "section", "group", "select"]] + }; + var _default = exports.default = radiogroupRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/regionRole.js +var require_regionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/regionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var regionRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-label" + }], + name: "section" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["set"], + name: "aria-labelledby" + }], + name: "section" + }, + module: "HTML" + }, { + concept: { + name: "Device Independence Glossart perceivable unit" + } + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = regionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/rowRole.js +var require_rowRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/rowRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var rowRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-colindex": null, + "aria-expanded": null, + "aria-level": null, + "aria-posinset": null, + "aria-rowindex": null, + "aria-selected": null, + "aria-setsize": null + }, + relatedConcepts: [{ + concept: { + name: "tr" + }, + module: "HTML" + }], + requireContextRole: ["grid", "rowgroup", "table", "treegrid"], + requiredContextRole: ["grid", "rowgroup", "table", "treegrid"], + requiredOwnedElements: [["cell"], ["columnheader"], ["gridcell"], ["rowheader"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "group"], ["roletype", "widget"]] + }; + var _default = exports.default = rowRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/rowgroupRole.js +var require_rowgroupRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/rowgroupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var rowgroupRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "tbody" + }, + module: "HTML" + }, { + concept: { + name: "tfoot" + }, + module: "HTML" + }, { + concept: { + name: "thead" + }, + module: "HTML" + }], + requireContextRole: ["grid", "table", "treegrid"], + requiredContextRole: ["grid", "table", "treegrid"], + requiredOwnedElements: [["row"]], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = rowgroupRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/rowheaderRole.js +var require_rowheaderRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/rowheaderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var rowheaderRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-sort": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "scope", + value: "row" + }], + name: "th" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + name: "scope", + value: "rowgroup" + }], + name: "th" + }, + module: "HTML" + }], + requireContextRole: ["row", "rowgroup"], + requiredContextRole: ["row", "rowgroup"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "cell"], ["roletype", "structure", "section", "cell", "gridcell"], ["roletype", "widget", "gridcell"], ["roletype", "structure", "sectionhead"]] + }; + var _default = exports.default = rowheaderRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/scrollbarRole.js +var require_scrollbarRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/scrollbarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var scrollbarRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-valuetext": null, + "aria-orientation": "vertical", + "aria-valuemax": "100", + "aria-valuemin": "0" + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-controls": null, + "aria-valuenow": null + }, + superClass: [["roletype", "structure", "range"], ["roletype", "widget"]] + }; + var _default = exports.default = scrollbarRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/searchRole.js +var require_searchRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/searchRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var searchRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = searchRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/searchboxRole.js +var require_searchboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/searchboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var searchboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["undefined"], + name: "list" + }, { + name: "type", + value: "search" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "input", "textbox"]] + }; + var _default = exports.default = searchboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/separatorRole.js +var require_separatorRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/separatorRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var separatorRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-orientation": "horizontal", + "aria-valuemax": "100", + "aria-valuemin": "0", + "aria-valuenow": null, + "aria-valuetext": null + }, + relatedConcepts: [{ + concept: { + name: "hr" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure"]] + }; + var _default = exports.default = separatorRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/sliderRole.js +var require_sliderRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/sliderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var sliderRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-haspopup": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-valuetext": null, + "aria-orientation": "horizontal", + "aria-valuemax": "100", + "aria-valuemin": "0" + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "type", + value: "range" + }], + name: "input" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-valuenow": null + }, + superClass: [["roletype", "widget", "input"], ["roletype", "structure", "range"]] + }; + var _default = exports.default = sliderRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/spinbuttonRole.js +var require_spinbuttonRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/spinbuttonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var spinbuttonRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null, + "aria-readonly": null, + "aria-required": null, + "aria-valuetext": null, + "aria-valuenow": "0" + }, + relatedConcepts: [{ + concept: { + attributes: [{ + name: "type", + value: "number" + }], + name: "input" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "composite"], ["roletype", "widget", "input"], ["roletype", "structure", "range"]] + }; + var _default = exports.default = spinbuttonRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/statusRole.js +var require_statusRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/statusRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var statusRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-atomic": "true", + "aria-live": "polite" + }, + relatedConcepts: [{ + concept: { + name: "output" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = statusRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/strongRole.js +var require_strongRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/strongRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var strongRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "strong" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = strongRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/subscriptRole.js +var require_subscriptRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/subscriptRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var subscriptRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "sub" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = subscriptRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/superscriptRole.js +var require_superscriptRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/superscriptRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var superscriptRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: ["aria-label", "aria-labelledby"], + props: {}, + relatedConcepts: [{ + concept: { + name: "sup" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = superscriptRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/switchRole.js +var require_switchRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/switchRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var switchRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "button" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: { + "aria-checked": null + }, + superClass: [["roletype", "widget", "input", "checkbox"]] + }; + var _default = exports.default = switchRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/tabRole.js +var require_tabRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/tabRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var tabRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-posinset": null, + "aria-setsize": null, + "aria-selected": "false" + }, + relatedConcepts: [], + requireContextRole: ["tablist"], + requiredContextRole: ["tablist"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "sectionhead"], ["roletype", "widget"]] + }; + var _default = exports.default = tabRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/tableRole.js +var require_tableRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/tableRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var tableRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-colcount": null, + "aria-rowcount": null + }, + relatedConcepts: [{ + concept: { + name: "table" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["row"], ["row", "rowgroup"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = tableRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/tablistRole.js +var require_tablistRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/tablistRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var tablistRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-level": null, + "aria-multiselectable": null, + "aria-orientation": "horizontal" + }, + relatedConcepts: [{ + module: "DAISY", + concept: { + name: "guide" + } + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["tab"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite"]] + }; + var _default = exports.default = tablistRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/tabpanelRole.js +var require_tabpanelRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/tabpanelRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var tabpanelRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = tabpanelRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/termRole.js +var require_termRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/termRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var termRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "dfn" + }, + module: "HTML" + }, { + concept: { + name: "dt" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = termRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/textboxRole.js +var require_textboxRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/textboxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var textboxRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-activedescendant": null, + "aria-autocomplete": null, + "aria-errormessage": null, + "aria-haspopup": null, + "aria-invalid": null, + "aria-multiline": null, + "aria-placeholder": null, + "aria-readonly": null, + "aria-required": null + }, + relatedConcepts: [{ + concept: { + attributes: [{ + constraints: ["undefined"], + name: "type" + }, { + constraints: ["undefined"], + name: "list" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "list" + }, { + name: "type", + value: "email" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "list" + }, { + name: "type", + value: "tel" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "list" + }, { + name: "type", + value: "text" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }, { + concept: { + attributes: [{ + constraints: ["undefined"], + name: "list" + }, { + name: "type", + value: "url" + }], + constraints: ["the list attribute is not set"], + name: "input" + }, + module: "HTML" + }, { + concept: { + name: "input" + }, + module: "XForms" + }, { + concept: { + name: "textarea" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "input"]] + }; + var _default = exports.default = textboxRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/timeRole.js +var require_timeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/timeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var timeRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "time" + }, + module: "HTML" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = timeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/timerRole.js +var require_timerRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/timerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var timerRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "status"]] + }; + var _default = exports.default = timerRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/toolbarRole.js +var require_toolbarRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/toolbarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var toolbarRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-orientation": "horizontal" + }, + relatedConcepts: [{ + concept: { + name: "menubar" + }, + module: "ARIA" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "group"]] + }; + var _default = exports.default = toolbarRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/tooltipRole.js +var require_tooltipRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/tooltipRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var tooltipRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = tooltipRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/treeRole.js +var require_treeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/treeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var treeRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null, + "aria-multiselectable": null, + "aria-required": null, + "aria-orientation": "vertical" + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["treeitem", "group"], ["treeitem"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "select"], ["roletype", "structure", "section", "group", "select"]] + }; + var _default = exports.default = treeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/treegridRole.js +var require_treegridRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/treegridRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var treegridRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["row"], ["row", "rowgroup"]], + requiredProps: {}, + superClass: [["roletype", "widget", "composite", "grid"], ["roletype", "structure", "section", "table", "grid"], ["roletype", "widget", "composite", "select", "tree"], ["roletype", "structure", "section", "group", "select", "tree"]] + }; + var _default = exports.default = treegridRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/literal/treeitemRole.js +var require_treeitemRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/literal/treeitemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var treeitemRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-expanded": null, + "aria-haspopup": null + }, + relatedConcepts: [], + requireContextRole: ["group", "tree"], + requiredContextRole: ["group", "tree"], + requiredOwnedElements: [], + requiredProps: { + "aria-selected": null + }, + superClass: [["roletype", "structure", "section", "listitem"], ["roletype", "widget", "input", "option"]] + }; + var _default = exports.default = treeitemRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/ariaLiteralRoles.js +var require_ariaLiteralRoles = __commonJS({ + "node_modules/aria-query/lib/etc/roles/ariaLiteralRoles.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _alertRole = _interopRequireDefault(require_alertRole()); + var _alertdialogRole = _interopRequireDefault(require_alertdialogRole()); + var _applicationRole = _interopRequireDefault(require_applicationRole()); + var _articleRole = _interopRequireDefault(require_articleRole()); + var _bannerRole = _interopRequireDefault(require_bannerRole()); + var _blockquoteRole = _interopRequireDefault(require_blockquoteRole()); + var _buttonRole = _interopRequireDefault(require_buttonRole()); + var _captionRole = _interopRequireDefault(require_captionRole()); + var _cellRole = _interopRequireDefault(require_cellRole()); + var _checkboxRole = _interopRequireDefault(require_checkboxRole()); + var _codeRole = _interopRequireDefault(require_codeRole()); + var _columnheaderRole = _interopRequireDefault(require_columnheaderRole()); + var _comboboxRole = _interopRequireDefault(require_comboboxRole()); + var _complementaryRole = _interopRequireDefault(require_complementaryRole()); + var _contentinfoRole = _interopRequireDefault(require_contentinfoRole()); + var _definitionRole = _interopRequireDefault(require_definitionRole()); + var _deletionRole = _interopRequireDefault(require_deletionRole()); + var _dialogRole = _interopRequireDefault(require_dialogRole()); + var _directoryRole = _interopRequireDefault(require_directoryRole()); + var _documentRole = _interopRequireDefault(require_documentRole()); + var _emphasisRole = _interopRequireDefault(require_emphasisRole()); + var _feedRole = _interopRequireDefault(require_feedRole()); + var _figureRole = _interopRequireDefault(require_figureRole()); + var _formRole = _interopRequireDefault(require_formRole()); + var _genericRole = _interopRequireDefault(require_genericRole()); + var _gridRole = _interopRequireDefault(require_gridRole()); + var _gridcellRole = _interopRequireDefault(require_gridcellRole()); + var _groupRole = _interopRequireDefault(require_groupRole()); + var _headingRole = _interopRequireDefault(require_headingRole()); + var _imgRole = _interopRequireDefault(require_imgRole()); + var _insertionRole = _interopRequireDefault(require_insertionRole()); + var _linkRole = _interopRequireDefault(require_linkRole()); + var _listRole = _interopRequireDefault(require_listRole()); + var _listboxRole = _interopRequireDefault(require_listboxRole()); + var _listitemRole = _interopRequireDefault(require_listitemRole()); + var _logRole = _interopRequireDefault(require_logRole()); + var _mainRole = _interopRequireDefault(require_mainRole()); + var _markRole = _interopRequireDefault(require_markRole()); + var _marqueeRole = _interopRequireDefault(require_marqueeRole()); + var _mathRole = _interopRequireDefault(require_mathRole()); + var _menuRole = _interopRequireDefault(require_menuRole()); + var _menubarRole = _interopRequireDefault(require_menubarRole()); + var _menuitemRole = _interopRequireDefault(require_menuitemRole()); + var _menuitemcheckboxRole = _interopRequireDefault(require_menuitemcheckboxRole()); + var _menuitemradioRole = _interopRequireDefault(require_menuitemradioRole()); + var _meterRole = _interopRequireDefault(require_meterRole()); + var _navigationRole = _interopRequireDefault(require_navigationRole()); + var _noneRole = _interopRequireDefault(require_noneRole()); + var _noteRole = _interopRequireDefault(require_noteRole()); + var _optionRole = _interopRequireDefault(require_optionRole()); + var _paragraphRole = _interopRequireDefault(require_paragraphRole()); + var _presentationRole = _interopRequireDefault(require_presentationRole()); + var _progressbarRole = _interopRequireDefault(require_progressbarRole()); + var _radioRole = _interopRequireDefault(require_radioRole()); + var _radiogroupRole = _interopRequireDefault(require_radiogroupRole()); + var _regionRole = _interopRequireDefault(require_regionRole()); + var _rowRole = _interopRequireDefault(require_rowRole()); + var _rowgroupRole = _interopRequireDefault(require_rowgroupRole()); + var _rowheaderRole = _interopRequireDefault(require_rowheaderRole()); + var _scrollbarRole = _interopRequireDefault(require_scrollbarRole()); + var _searchRole = _interopRequireDefault(require_searchRole()); + var _searchboxRole = _interopRequireDefault(require_searchboxRole()); + var _separatorRole = _interopRequireDefault(require_separatorRole()); + var _sliderRole = _interopRequireDefault(require_sliderRole()); + var _spinbuttonRole = _interopRequireDefault(require_spinbuttonRole()); + var _statusRole = _interopRequireDefault(require_statusRole()); + var _strongRole = _interopRequireDefault(require_strongRole()); + var _subscriptRole = _interopRequireDefault(require_subscriptRole()); + var _superscriptRole = _interopRequireDefault(require_superscriptRole()); + var _switchRole = _interopRequireDefault(require_switchRole()); + var _tabRole = _interopRequireDefault(require_tabRole()); + var _tableRole = _interopRequireDefault(require_tableRole()); + var _tablistRole = _interopRequireDefault(require_tablistRole()); + var _tabpanelRole = _interopRequireDefault(require_tabpanelRole()); + var _termRole = _interopRequireDefault(require_termRole()); + var _textboxRole = _interopRequireDefault(require_textboxRole()); + var _timeRole = _interopRequireDefault(require_timeRole()); + var _timerRole = _interopRequireDefault(require_timerRole()); + var _toolbarRole = _interopRequireDefault(require_toolbarRole()); + var _tooltipRole = _interopRequireDefault(require_tooltipRole()); + var _treeRole = _interopRequireDefault(require_treeRole()); + var _treegridRole = _interopRequireDefault(require_treegridRole()); + var _treeitemRole = _interopRequireDefault(require_treeitemRole()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + var ariaLiteralRoles = [["alert", _alertRole.default], ["alertdialog", _alertdialogRole.default], ["application", _applicationRole.default], ["article", _articleRole.default], ["banner", _bannerRole.default], ["blockquote", _blockquoteRole.default], ["button", _buttonRole.default], ["caption", _captionRole.default], ["cell", _cellRole.default], ["checkbox", _checkboxRole.default], ["code", _codeRole.default], ["columnheader", _columnheaderRole.default], ["combobox", _comboboxRole.default], ["complementary", _complementaryRole.default], ["contentinfo", _contentinfoRole.default], ["definition", _definitionRole.default], ["deletion", _deletionRole.default], ["dialog", _dialogRole.default], ["directory", _directoryRole.default], ["document", _documentRole.default], ["emphasis", _emphasisRole.default], ["feed", _feedRole.default], ["figure", _figureRole.default], ["form", _formRole.default], ["generic", _genericRole.default], ["grid", _gridRole.default], ["gridcell", _gridcellRole.default], ["group", _groupRole.default], ["heading", _headingRole.default], ["img", _imgRole.default], ["insertion", _insertionRole.default], ["link", _linkRole.default], ["list", _listRole.default], ["listbox", _listboxRole.default], ["listitem", _listitemRole.default], ["log", _logRole.default], ["main", _mainRole.default], ["mark", _markRole.default], ["marquee", _marqueeRole.default], ["math", _mathRole.default], ["menu", _menuRole.default], ["menubar", _menubarRole.default], ["menuitem", _menuitemRole.default], ["menuitemcheckbox", _menuitemcheckboxRole.default], ["menuitemradio", _menuitemradioRole.default], ["meter", _meterRole.default], ["navigation", _navigationRole.default], ["none", _noneRole.default], ["note", _noteRole.default], ["option", _optionRole.default], ["paragraph", _paragraphRole.default], ["presentation", _presentationRole.default], ["progressbar", _progressbarRole.default], ["radio", _radioRole.default], ["radiogroup", _radiogroupRole.default], ["region", _regionRole.default], ["row", _rowRole.default], ["rowgroup", _rowgroupRole.default], ["rowheader", _rowheaderRole.default], ["scrollbar", _scrollbarRole.default], ["search", _searchRole.default], ["searchbox", _searchboxRole.default], ["separator", _separatorRole.default], ["slider", _sliderRole.default], ["spinbutton", _spinbuttonRole.default], ["status", _statusRole.default], ["strong", _strongRole.default], ["subscript", _subscriptRole.default], ["superscript", _superscriptRole.default], ["switch", _switchRole.default], ["tab", _tabRole.default], ["table", _tableRole.default], ["tablist", _tablistRole.default], ["tabpanel", _tabpanelRole.default], ["term", _termRole.default], ["textbox", _textboxRole.default], ["time", _timeRole.default], ["timer", _timerRole.default], ["toolbar", _toolbarRole.default], ["tooltip", _tooltipRole.default], ["tree", _treeRole.default], ["treegrid", _treegridRole.default], ["treeitem", _treeitemRole.default]]; + var _default = exports.default = ariaLiteralRoles; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docAbstractRole.js +var require_docAbstractRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docAbstractRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docAbstractRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "abstract [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docAbstractRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docAcknowledgmentsRole.js +var require_docAcknowledgmentsRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docAcknowledgmentsRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docAcknowledgmentsRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "acknowledgments [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docAcknowledgmentsRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docAfterwordRole.js +var require_docAfterwordRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docAfterwordRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docAfterwordRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "afterword [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docAfterwordRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docAppendixRole.js +var require_docAppendixRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docAppendixRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docAppendixRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "appendix [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docAppendixRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docBacklinkRole.js +var require_docBacklinkRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docBacklinkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docBacklinkRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "referrer [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command", "link"]] + }; + var _default = exports.default = docBacklinkRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docBiblioentryRole.js +var require_docBiblioentryRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docBiblioentryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docBiblioentryRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "EPUB biblioentry [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: ["doc-bibliography"], + requiredContextRole: ["doc-bibliography"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "listitem"]] + }; + var _default = exports.default = docBiblioentryRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docBibliographyRole.js +var require_docBibliographyRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docBibliographyRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docBibliographyRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "bibliography [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["doc-biblioentry"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docBibliographyRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docBibliorefRole.js +var require_docBibliorefRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docBibliorefRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docBibliorefRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "biblioref [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command", "link"]] + }; + var _default = exports.default = docBibliorefRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docChapterRole.js +var require_docChapterRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docChapterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docChapterRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "chapter [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docChapterRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docColophonRole.js +var require_docColophonRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docColophonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docColophonRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "colophon [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docColophonRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docConclusionRole.js +var require_docConclusionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docConclusionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docConclusionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "conclusion [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docConclusionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docCoverRole.js +var require_docCoverRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docCoverRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docCoverRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "cover [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "img"]] + }; + var _default = exports.default = docCoverRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docCreditRole.js +var require_docCreditRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docCreditRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docCreditRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "credit [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docCreditRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docCreditsRole.js +var require_docCreditsRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docCreditsRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docCreditsRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "credits [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docCreditsRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docDedicationRole.js +var require_docDedicationRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docDedicationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docDedicationRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "dedication [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docDedicationRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docEndnoteRole.js +var require_docEndnoteRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docEndnoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docEndnoteRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "rearnote [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: ["doc-endnotes"], + requiredContextRole: ["doc-endnotes"], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "listitem"]] + }; + var _default = exports.default = docEndnoteRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docEndnotesRole.js +var require_docEndnotesRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docEndnotesRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docEndnotesRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "rearnotes [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["doc-endnote"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docEndnotesRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docEpigraphRole.js +var require_docEpigraphRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docEpigraphRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docEpigraphRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "epigraph [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docEpigraphRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docEpilogueRole.js +var require_docEpilogueRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docEpilogueRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docEpilogueRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "epilogue [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docEpilogueRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docErrataRole.js +var require_docErrataRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docErrataRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docErrataRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "errata [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docErrataRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docExampleRole.js +var require_docExampleRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docExampleRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docExampleRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docExampleRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docFootnoteRole.js +var require_docFootnoteRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docFootnoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docFootnoteRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "footnote [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docFootnoteRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docForewordRole.js +var require_docForewordRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docForewordRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docForewordRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "foreword [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docForewordRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docGlossaryRole.js +var require_docGlossaryRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docGlossaryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docGlossaryRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "glossary [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [["definition"], ["term"]], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docGlossaryRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docGlossrefRole.js +var require_docGlossrefRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docGlossrefRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docGlossrefRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "glossref [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command", "link"]] + }; + var _default = exports.default = docGlossrefRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docIndexRole.js +var require_docIndexRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docIndexRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docIndexRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "index [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark", "navigation"]] + }; + var _default = exports.default = docIndexRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docIntroductionRole.js +var require_docIntroductionRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docIntroductionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docIntroductionRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "introduction [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docIntroductionRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docNoterefRole.js +var require_docNoterefRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docNoterefRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docNoterefRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "noteref [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "widget", "command", "link"]] + }; + var _default = exports.default = docNoterefRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docNoticeRole.js +var require_docNoticeRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docNoticeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docNoticeRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "notice [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "note"]] + }; + var _default = exports.default = docNoticeRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPagebreakRole.js +var require_docPagebreakRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPagebreakRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPagebreakRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "pagebreak [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "separator"]] + }; + var _default = exports.default = docPagebreakRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPagefooterRole.js +var require_docPagefooterRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPagefooterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPagefooterRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: [], + props: { + "aria-braillelabel": null, + "aria-brailleroledescription": null, + "aria-description": null, + "aria-disabled": null, + "aria-errormessage": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docPagefooterRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPageheaderRole.js +var require_docPageheaderRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPageheaderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPageheaderRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["prohibited"], + prohibitedProps: [], + props: { + "aria-braillelabel": null, + "aria-brailleroledescription": null, + "aria-description": null, + "aria-disabled": null, + "aria-errormessage": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docPageheaderRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPagelistRole.js +var require_docPagelistRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPagelistRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPagelistRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "page-list [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark", "navigation"]] + }; + var _default = exports.default = docPagelistRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPartRole.js +var require_docPartRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPartRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPartRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "part [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docPartRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPrefaceRole.js +var require_docPrefaceRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPrefaceRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPrefaceRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "preface [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docPrefaceRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPrologueRole.js +var require_docPrologueRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPrologueRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPrologueRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "prologue [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark"]] + }; + var _default = exports.default = docPrologueRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docPullquoteRole.js +var require_docPullquoteRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docPullquoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docPullquoteRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: {}, + relatedConcepts: [{ + concept: { + name: "pullquote [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["none"]] + }; + var _default = exports.default = docPullquoteRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docQnaRole.js +var require_docQnaRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docQnaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docQnaRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "qna [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section"]] + }; + var _default = exports.default = docQnaRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docSubtitleRole.js +var require_docSubtitleRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docSubtitleRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docSubtitleRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "subtitle [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "sectionhead"]] + }; + var _default = exports.default = docSubtitleRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docTipRole.js +var require_docTipRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docTipRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docTipRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "help [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "note"]] + }; + var _default = exports.default = docTipRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/dpub/docTocRole.js +var require_docTocRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/dpub/docTocRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var docTocRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + concept: { + name: "toc [EPUB-SSV]" + }, + module: "EPUB" + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "landmark", "navigation"]] + }; + var _default = exports.default = docTocRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/ariaDpubRoles.js +var require_ariaDpubRoles = __commonJS({ + "node_modules/aria-query/lib/etc/roles/ariaDpubRoles.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _docAbstractRole = _interopRequireDefault(require_docAbstractRole()); + var _docAcknowledgmentsRole = _interopRequireDefault(require_docAcknowledgmentsRole()); + var _docAfterwordRole = _interopRequireDefault(require_docAfterwordRole()); + var _docAppendixRole = _interopRequireDefault(require_docAppendixRole()); + var _docBacklinkRole = _interopRequireDefault(require_docBacklinkRole()); + var _docBiblioentryRole = _interopRequireDefault(require_docBiblioentryRole()); + var _docBibliographyRole = _interopRequireDefault(require_docBibliographyRole()); + var _docBibliorefRole = _interopRequireDefault(require_docBibliorefRole()); + var _docChapterRole = _interopRequireDefault(require_docChapterRole()); + var _docColophonRole = _interopRequireDefault(require_docColophonRole()); + var _docConclusionRole = _interopRequireDefault(require_docConclusionRole()); + var _docCoverRole = _interopRequireDefault(require_docCoverRole()); + var _docCreditRole = _interopRequireDefault(require_docCreditRole()); + var _docCreditsRole = _interopRequireDefault(require_docCreditsRole()); + var _docDedicationRole = _interopRequireDefault(require_docDedicationRole()); + var _docEndnoteRole = _interopRequireDefault(require_docEndnoteRole()); + var _docEndnotesRole = _interopRequireDefault(require_docEndnotesRole()); + var _docEpigraphRole = _interopRequireDefault(require_docEpigraphRole()); + var _docEpilogueRole = _interopRequireDefault(require_docEpilogueRole()); + var _docErrataRole = _interopRequireDefault(require_docErrataRole()); + var _docExampleRole = _interopRequireDefault(require_docExampleRole()); + var _docFootnoteRole = _interopRequireDefault(require_docFootnoteRole()); + var _docForewordRole = _interopRequireDefault(require_docForewordRole()); + var _docGlossaryRole = _interopRequireDefault(require_docGlossaryRole()); + var _docGlossrefRole = _interopRequireDefault(require_docGlossrefRole()); + var _docIndexRole = _interopRequireDefault(require_docIndexRole()); + var _docIntroductionRole = _interopRequireDefault(require_docIntroductionRole()); + var _docNoterefRole = _interopRequireDefault(require_docNoterefRole()); + var _docNoticeRole = _interopRequireDefault(require_docNoticeRole()); + var _docPagebreakRole = _interopRequireDefault(require_docPagebreakRole()); + var _docPagefooterRole = _interopRequireDefault(require_docPagefooterRole()); + var _docPageheaderRole = _interopRequireDefault(require_docPageheaderRole()); + var _docPagelistRole = _interopRequireDefault(require_docPagelistRole()); + var _docPartRole = _interopRequireDefault(require_docPartRole()); + var _docPrefaceRole = _interopRequireDefault(require_docPrefaceRole()); + var _docPrologueRole = _interopRequireDefault(require_docPrologueRole()); + var _docPullquoteRole = _interopRequireDefault(require_docPullquoteRole()); + var _docQnaRole = _interopRequireDefault(require_docQnaRole()); + var _docSubtitleRole = _interopRequireDefault(require_docSubtitleRole()); + var _docTipRole = _interopRequireDefault(require_docTipRole()); + var _docTocRole = _interopRequireDefault(require_docTocRole()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + var ariaDpubRoles = [["doc-abstract", _docAbstractRole.default], ["doc-acknowledgments", _docAcknowledgmentsRole.default], ["doc-afterword", _docAfterwordRole.default], ["doc-appendix", _docAppendixRole.default], ["doc-backlink", _docBacklinkRole.default], ["doc-biblioentry", _docBiblioentryRole.default], ["doc-bibliography", _docBibliographyRole.default], ["doc-biblioref", _docBibliorefRole.default], ["doc-chapter", _docChapterRole.default], ["doc-colophon", _docColophonRole.default], ["doc-conclusion", _docConclusionRole.default], ["doc-cover", _docCoverRole.default], ["doc-credit", _docCreditRole.default], ["doc-credits", _docCreditsRole.default], ["doc-dedication", _docDedicationRole.default], ["doc-endnote", _docEndnoteRole.default], ["doc-endnotes", _docEndnotesRole.default], ["doc-epigraph", _docEpigraphRole.default], ["doc-epilogue", _docEpilogueRole.default], ["doc-errata", _docErrataRole.default], ["doc-example", _docExampleRole.default], ["doc-footnote", _docFootnoteRole.default], ["doc-foreword", _docForewordRole.default], ["doc-glossary", _docGlossaryRole.default], ["doc-glossref", _docGlossrefRole.default], ["doc-index", _docIndexRole.default], ["doc-introduction", _docIntroductionRole.default], ["doc-noteref", _docNoterefRole.default], ["doc-notice", _docNoticeRole.default], ["doc-pagebreak", _docPagebreakRole.default], ["doc-pagefooter", _docPagefooterRole.default], ["doc-pageheader", _docPageheaderRole.default], ["doc-pagelist", _docPagelistRole.default], ["doc-part", _docPartRole.default], ["doc-preface", _docPrefaceRole.default], ["doc-prologue", _docPrologueRole.default], ["doc-pullquote", _docPullquoteRole.default], ["doc-qna", _docQnaRole.default], ["doc-subtitle", _docSubtitleRole.default], ["doc-tip", _docTipRole.default], ["doc-toc", _docTocRole.default]]; + var _default = exports.default = ariaDpubRoles; + } +}); + +// node_modules/aria-query/lib/etc/roles/graphics/graphicsDocumentRole.js +var require_graphicsDocumentRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/graphics/graphicsDocumentRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var graphicsDocumentRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + module: "GRAPHICS", + concept: { + name: "graphics-object" + } + }, { + module: "ARIA", + concept: { + name: "img" + } + }, { + module: "ARIA", + concept: { + name: "article" + } + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "document"]] + }; + var _default = exports.default = graphicsDocumentRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/graphics/graphicsObjectRole.js +var require_graphicsObjectRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/graphics/graphicsObjectRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var graphicsObjectRole = { + abstract: false, + accessibleNameRequired: false, + baseConcepts: [], + childrenPresentational: false, + nameFrom: ["author", "contents"], + prohibitedProps: [], + props: { + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [{ + module: "GRAPHICS", + concept: { + name: "graphics-document" + } + }, { + module: "ARIA", + concept: { + name: "group" + } + }, { + module: "ARIA", + concept: { + name: "img" + } + }, { + module: "GRAPHICS", + concept: { + name: "graphics-symbol" + } + }], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "group"]] + }; + var _default = exports.default = graphicsObjectRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/graphics/graphicsSymbolRole.js +var require_graphicsSymbolRole = __commonJS({ + "node_modules/aria-query/lib/etc/roles/graphics/graphicsSymbolRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var graphicsSymbolRole = { + abstract: false, + accessibleNameRequired: true, + baseConcepts: [], + childrenPresentational: true, + nameFrom: ["author"], + prohibitedProps: [], + props: { + "aria-disabled": null, + "aria-errormessage": null, + "aria-expanded": null, + "aria-haspopup": null, + "aria-invalid": null + }, + relatedConcepts: [], + requireContextRole: [], + requiredContextRole: [], + requiredOwnedElements: [], + requiredProps: {}, + superClass: [["roletype", "structure", "section", "img"]] + }; + var _default = exports.default = graphicsSymbolRole; + } +}); + +// node_modules/aria-query/lib/etc/roles/ariaGraphicsRoles.js +var require_ariaGraphicsRoles = __commonJS({ + "node_modules/aria-query/lib/etc/roles/ariaGraphicsRoles.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _graphicsDocumentRole = _interopRequireDefault(require_graphicsDocumentRole()); + var _graphicsObjectRole = _interopRequireDefault(require_graphicsObjectRole()); + var _graphicsSymbolRole = _interopRequireDefault(require_graphicsSymbolRole()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + var ariaGraphicsRoles = [["graphics-document", _graphicsDocumentRole.default], ["graphics-object", _graphicsObjectRole.default], ["graphics-symbol", _graphicsSymbolRole.default]]; + var _default = exports.default = ariaGraphicsRoles; + } +}); + +// node_modules/aria-query/lib/rolesMap.js +var require_rolesMap = __commonJS({ + "node_modules/aria-query/lib/rolesMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _ariaAbstractRoles = _interopRequireDefault(require_ariaAbstractRoles()); + var _ariaLiteralRoles = _interopRequireDefault(require_ariaLiteralRoles()); + var _ariaDpubRoles = _interopRequireDefault(require_ariaDpubRoles()); + var _ariaGraphicsRoles = _interopRequireDefault(require_ariaGraphicsRoles()); + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _createForOfIteratorHelper(r, e) { + var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (!t) { + if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { + t && (r = t); + var _n = 0, F = function F2() { + }; + return { s: F, n: function n() { + return _n >= r.length ? { done: true } : { done: false, value: r[_n++] }; + }, e: function e2(r2) { + throw r2; + }, f: F }; + } + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var o, a = true, u = false; + return { s: function s() { + t = t.call(r); + }, n: function n() { + var r2 = t.next(); + return a = r2.done, r2; + }, e: function e2(r2) { + u = true, o = r2; + }, f: function f() { + try { + a || null == t.return || t.return(); + } finally { + if (u) throw o; + } + } }; + } + function _slicedToArray(r, e) { + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(r, a) { + if (r) { + if ("string" == typeof r) return _arrayLikeToArray(r, a); + var t = {}.toString.call(r).slice(8, -1); + return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; + } + } + function _arrayLikeToArray(r, a) { + (null == a || a > r.length) && (a = r.length); + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; + return n; + } + function _iterableToArrayLimit(r, l) { + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (null != t) { + var e, n, i, u, a = [], f = true, o = false; + try { + if (i = (t = t.call(r)).next, 0 === l) { + if (Object(t) !== t) return; + f = false; + } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = true) ; + } catch (r2) { + o = true, n = r2; + } finally { + try { + if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; + } finally { + if (o) throw n; + } + } + return a; + } + } + function _arrayWithHoles(r) { + if (Array.isArray(r)) return r; + } + var roles = [].concat(_ariaAbstractRoles.default, _ariaLiteralRoles.default, _ariaDpubRoles.default, _ariaGraphicsRoles.default); + roles.forEach(function(_ref) { + var _ref2 = _slicedToArray(_ref, 2), roleDefinition = _ref2[1]; + var _iterator = _createForOfIteratorHelper(roleDefinition.superClass), _step; + try { + for (_iterator.s(); !(_step = _iterator.n()).done; ) { + var superClassIter = _step.value; + var _iterator2 = _createForOfIteratorHelper(superClassIter), _step2; + try { + var _loop = function _loop2() { + var superClassName = _step2.value; + var superClassRoleTuple = roles.filter(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 1), name = _ref4[0]; + return name === superClassName; + })[0]; + if (superClassRoleTuple) { + var superClassDefinition = superClassRoleTuple[1]; + for (var _i = 0, _Object$keys = Object.keys(superClassDefinition.props); _i < _Object$keys.length; _i++) { + var prop = _Object$keys[_i]; + if ( + // $FlowIssue Accessing the hasOwnProperty on the Object prototype is fine. + !Object.prototype.hasOwnProperty.call(roleDefinition.props, prop) + ) { + roleDefinition.props[prop] = superClassDefinition.props[prop]; + } + } + } + }; + for (_iterator2.s(); !(_step2 = _iterator2.n()).done; ) { + _loop(); + } + } catch (err) { + _iterator2.e(err); + } finally { + _iterator2.f(); + } + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + }); + var rolesMap = { + entries: function entries() { + return roles; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + var _iterator3 = _createForOfIteratorHelper(roles), _step3; + try { + for (_iterator3.s(); !(_step3 = _iterator3.n()).done; ) { + var _step3$value = _slicedToArray(_step3.value, 2), key = _step3$value[0], values = _step3$value[1]; + fn.call(thisArg, values, key, roles); + } + } catch (err) { + _iterator3.e(err); + } finally { + _iterator3.f(); + } + }, + get: function get(key) { + var item = roles.filter(function(tuple) { + return tuple[0] === key ? true : false; + })[0]; + return item && item[1]; + }, + has: function has(key) { + return !!rolesMap.get(key); + }, + keys: function keys() { + return roles.map(function(_ref5) { + var _ref6 = _slicedToArray(_ref5, 1), key = _ref6[0]; + return key; + }); + }, + values: function values() { + return roles.map(function(_ref7) { + var _ref8 = _slicedToArray(_ref7, 2), values2 = _ref8[1]; + return values2; + }); + } + }; + var _default = exports.default = (0, _iterationDecorator.default)(rolesMap, rolesMap.entries()); + } +}); + +// node_modules/aria-query/lib/elementRoleMap.js +var require_elementRoleMap = __commonJS({ + "node_modules/aria-query/lib/elementRoleMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + var _rolesMap = _interopRequireDefault(require_rolesMap()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _slicedToArray(r, e) { + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(r, a) { + if (r) { + if ("string" == typeof r) return _arrayLikeToArray(r, a); + var t = {}.toString.call(r).slice(8, -1); + return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; + } + } + function _arrayLikeToArray(r, a) { + (null == a || a > r.length) && (a = r.length); + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; + return n; + } + function _iterableToArrayLimit(r, l) { + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (null != t) { + var e, n, i2, u, a = [], f = true, o = false; + try { + if (i2 = (t = t.call(r)).next, 0 === l) { + if (Object(t) !== t) return; + f = false; + } else for (; !(f = (e = i2.call(t)).done) && (a.push(e.value), a.length !== l); f = true) ; + } catch (r2) { + o = true, n = r2; + } finally { + try { + if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; + } finally { + if (o) throw n; + } + } + return a; + } + } + function _arrayWithHoles(r) { + if (Array.isArray(r)) return r; + } + var elementRoles = []; + var keys = _rolesMap.default.keys(); + for (i = 0; i < keys.length; i++) { + key = keys[i]; + role = _rolesMap.default.get(key); + if (role) { + concepts = [].concat(role.baseConcepts, role.relatedConcepts); + _loop = function _loop2() { + var relation = concepts[k]; + if (relation.module === "HTML") { + var concept = relation.concept; + if (concept) { + var elementRoleRelation = elementRoles.filter(function(relation2) { + return ariaRoleRelationConceptEquals(relation2[0], concept); + })[0]; + var roles; + if (elementRoleRelation) { + roles = elementRoleRelation[1]; + } else { + roles = []; + } + var isUnique = true; + for (var _i = 0; _i < roles.length; _i++) { + if (roles[_i] === key) { + isUnique = false; + break; + } + } + if (isUnique) { + roles.push(key); + } + if (!elementRoleRelation) { + elementRoles.push([concept, roles]); + } + } + } + }; + for (k = 0; k < concepts.length; k++) { + _loop(); + } + } + } + var key; + var role; + var concepts; + var _loop; + var k; + var i; + var elementRoleMap = { + entries: function entries() { + return elementRoles; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i2 = 0, _elementRoles = elementRoles; _i2 < _elementRoles.length; _i2++) { + var _elementRoles$_i = _slicedToArray(_elementRoles[_i2], 2), _key = _elementRoles$_i[0], values = _elementRoles$_i[1]; + fn.call(thisArg, values, _key, elementRoles); + } + }, + get: function get(key2) { + var item = elementRoles.filter(function(tuple) { + return key2.name === tuple[0].name && ariaRoleRelationConceptAttributeEquals(key2.attributes, tuple[0].attributes); + })[0]; + return item && item[1]; + }, + has: function has(key2) { + return !!elementRoleMap.get(key2); + }, + keys: function keys2() { + return elementRoles.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key2 = _ref2[0]; + return key2; + }); + }, + values: function values() { + return elementRoles.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + function ariaRoleRelationConceptEquals(a, b) { + return a.name === b.name && ariaRoleRelationConstraintsEquals(a.constraints, b.constraints) && ariaRoleRelationConceptAttributeEquals(a.attributes, b.attributes); + } + function ariaRoleRelationConstraintsEquals(a, b) { + if (a === void 0 && b !== void 0) { + return false; + } + if (a !== void 0 && b === void 0) { + return false; + } + if (a !== void 0 && b !== void 0) { + if (a.length !== b.length) { + return false; + } + for (var _i3 = 0; _i3 < a.length; _i3++) { + if (a[_i3] !== b[_i3]) { + return false; + } + } + } + return true; + } + function ariaRoleRelationConceptAttributeEquals(a, b) { + if (a === void 0 && b !== void 0) { + return false; + } + if (a !== void 0 && b === void 0) { + return false; + } + if (a !== void 0 && b !== void 0) { + if (a.length !== b.length) { + return false; + } + for (var _i4 = 0; _i4 < a.length; _i4++) { + if (a[_i4].name !== b[_i4].name || a[_i4].value !== b[_i4].value) { + return false; + } + if (a[_i4].constraints === void 0 && b[_i4].constraints !== void 0) { + return false; + } + if (a[_i4].constraints !== void 0 && b[_i4].constraints === void 0) { + return false; + } + if (a[_i4].constraints !== void 0 && b[_i4].constraints !== void 0) { + if (a[_i4].constraints.length !== b[_i4].constraints.length) { + return false; + } + for (var j = 0; j < a[_i4].constraints.length; j++) { + if (a[_i4].constraints[j] !== b[_i4].constraints[j]) { + return false; + } + } + } + } + } + return true; + } + var _default = exports.default = (0, _iterationDecorator.default)(elementRoleMap, elementRoleMap.entries()); + } +}); + +// node_modules/aria-query/lib/roleElementMap.js +var require_roleElementMap = __commonJS({ + "node_modules/aria-query/lib/roleElementMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + var _rolesMap = _interopRequireDefault(require_rolesMap()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + function _slicedToArray(r, e) { + return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(r, a) { + if (r) { + if ("string" == typeof r) return _arrayLikeToArray(r, a); + var t = {}.toString.call(r).slice(8, -1); + return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; + } + } + function _arrayLikeToArray(r, a) { + (null == a || a > r.length) && (a = r.length); + for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; + return n; + } + function _iterableToArrayLimit(r, l) { + var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; + if (null != t) { + var e, n, i2, u, a = [], f = true, o = false; + try { + if (i2 = (t = t.call(r)).next, 0 === l) { + if (Object(t) !== t) return; + f = false; + } else for (; !(f = (e = i2.call(t)).done) && (a.push(e.value), a.length !== l); f = true) ; + } catch (r2) { + o = true, n = r2; + } finally { + try { + if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; + } finally { + if (o) throw n; + } + } + return a; + } + } + function _arrayWithHoles(r) { + if (Array.isArray(r)) return r; + } + var roleElement = []; + var keys = _rolesMap.default.keys(); + for (i = 0; i < keys.length; i++) { + key = keys[i]; + role = _rolesMap.default.get(key); + relationConcepts = []; + if (role) { + concepts = [].concat(role.baseConcepts, role.relatedConcepts); + for (k = 0; k < concepts.length; k++) { + relation = concepts[k]; + if (relation.module === "HTML") { + concept = relation.concept; + if (concept != null) { + relationConcepts.push(concept); + } + } + } + if (relationConcepts.length > 0) { + roleElement.push([key, relationConcepts]); + } + } + } + var key; + var role; + var relationConcepts; + var concepts; + var relation; + var concept; + var k; + var i; + var roleElementMap = { + entries: function entries() { + return roleElement; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _roleElement = roleElement; _i < _roleElement.length; _i++) { + var _roleElement$_i = _slicedToArray(_roleElement[_i], 2), _key = _roleElement$_i[0], values = _roleElement$_i[1]; + fn.call(thisArg, values, _key, roleElement); + } + }, + get: function get(key2) { + var item = roleElement.filter(function(tuple) { + return tuple[0] === key2 ? true : false; + })[0]; + return item && item[1]; + }, + has: function has(key2) { + return !!roleElementMap.get(key2); + }, + keys: function keys2() { + return roleElement.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key2 = _ref2[0]; + return key2; + }); + }, + values: function values() { + return roleElement.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = exports.default = (0, _iterationDecorator.default)(roleElementMap, roleElementMap.entries()); + } +}); + +// node_modules/aria-query/lib/index.js +var require_lib = __commonJS({ + "node_modules/aria-query/lib/index.js"(exports) { + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.roles = exports.roleElements = exports.elementRoles = exports.dom = exports.aria = void 0; + var _ariaPropsMap = _interopRequireDefault(require_ariaPropsMap()); + var _domMap = _interopRequireDefault(require_domMap()); + var _rolesMap = _interopRequireDefault(require_rolesMap()); + var _elementRoleMap = _interopRequireDefault(require_elementRoleMap()); + var _roleElementMap = _interopRequireDefault(require_roleElementMap()); + function _interopRequireDefault(e) { + return e && e.__esModule ? e : { default: e }; + } + var aria = exports.aria = _ariaPropsMap.default; + var dom = exports.dom = _domMap.default; + var roles = exports.roles = _rolesMap.default; + var elementRoles = exports.elementRoles = _elementRoleMap.default; + var roleElements = exports.roleElements = _roleElementMap.default; + } +}); +export default require_lib(); +//# sourceMappingURL=astro___aria-query.js.map diff --git a/frontend/node_modules/.vite/deps/astro___aria-query.js.map b/frontend/node_modules/.vite/deps/astro___aria-query.js.map new file mode 100644 index 00000000..5ef5a6fa --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___aria-query.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": ["../../aria-query/lib/util/iteratorProxy.js", "../../aria-query/lib/util/iterationDecorator.js", "../../aria-query/lib/ariaPropsMap.js", "../../aria-query/lib/domMap.js", "../../aria-query/lib/etc/roles/abstract/commandRole.js", "../../aria-query/lib/etc/roles/abstract/compositeRole.js", "../../aria-query/lib/etc/roles/abstract/inputRole.js", "../../aria-query/lib/etc/roles/abstract/landmarkRole.js", "../../aria-query/lib/etc/roles/abstract/rangeRole.js", "../../aria-query/lib/etc/roles/abstract/roletypeRole.js", "../../aria-query/lib/etc/roles/abstract/sectionRole.js", "../../aria-query/lib/etc/roles/abstract/sectionheadRole.js", "../../aria-query/lib/etc/roles/abstract/selectRole.js", "../../aria-query/lib/etc/roles/abstract/structureRole.js", "../../aria-query/lib/etc/roles/abstract/widgetRole.js", "../../aria-query/lib/etc/roles/abstract/windowRole.js", "../../aria-query/lib/etc/roles/ariaAbstractRoles.js", "../../aria-query/lib/etc/roles/literal/alertRole.js", "../../aria-query/lib/etc/roles/literal/alertdialogRole.js", "../../aria-query/lib/etc/roles/literal/applicationRole.js", "../../aria-query/lib/etc/roles/literal/articleRole.js", "../../aria-query/lib/etc/roles/literal/bannerRole.js", "../../aria-query/lib/etc/roles/literal/blockquoteRole.js", "../../aria-query/lib/etc/roles/literal/buttonRole.js", "../../aria-query/lib/etc/roles/literal/captionRole.js", "../../aria-query/lib/etc/roles/literal/cellRole.js", "../../aria-query/lib/etc/roles/literal/checkboxRole.js", "../../aria-query/lib/etc/roles/literal/codeRole.js", "../../aria-query/lib/etc/roles/literal/columnheaderRole.js", "../../aria-query/lib/etc/roles/literal/comboboxRole.js", "../../aria-query/lib/etc/roles/literal/complementaryRole.js", "../../aria-query/lib/etc/roles/literal/contentinfoRole.js", "../../aria-query/lib/etc/roles/literal/definitionRole.js", "../../aria-query/lib/etc/roles/literal/deletionRole.js", "../../aria-query/lib/etc/roles/literal/dialogRole.js", "../../aria-query/lib/etc/roles/literal/directoryRole.js", "../../aria-query/lib/etc/roles/literal/documentRole.js", "../../aria-query/lib/etc/roles/literal/emphasisRole.js", "../../aria-query/lib/etc/roles/literal/feedRole.js", "../../aria-query/lib/etc/roles/literal/figureRole.js", "../../aria-query/lib/etc/roles/literal/formRole.js", "../../aria-query/lib/etc/roles/literal/genericRole.js", "../../aria-query/lib/etc/roles/literal/gridRole.js", "../../aria-query/lib/etc/roles/literal/gridcellRole.js", "../../aria-query/lib/etc/roles/literal/groupRole.js", "../../aria-query/lib/etc/roles/literal/headingRole.js", "../../aria-query/lib/etc/roles/literal/imgRole.js", "../../aria-query/lib/etc/roles/literal/insertionRole.js", "../../aria-query/lib/etc/roles/literal/linkRole.js", "../../aria-query/lib/etc/roles/literal/listRole.js", "../../aria-query/lib/etc/roles/literal/listboxRole.js", "../../aria-query/lib/etc/roles/literal/listitemRole.js", "../../aria-query/lib/etc/roles/literal/logRole.js", "../../aria-query/lib/etc/roles/literal/mainRole.js", "../../aria-query/lib/etc/roles/literal/markRole.js", "../../aria-query/lib/etc/roles/literal/marqueeRole.js", "../../aria-query/lib/etc/roles/literal/mathRole.js", "../../aria-query/lib/etc/roles/literal/menuRole.js", "../../aria-query/lib/etc/roles/literal/menubarRole.js", "../../aria-query/lib/etc/roles/literal/menuitemRole.js", "../../aria-query/lib/etc/roles/literal/menuitemcheckboxRole.js", "../../aria-query/lib/etc/roles/literal/menuitemradioRole.js", "../../aria-query/lib/etc/roles/literal/meterRole.js", "../../aria-query/lib/etc/roles/literal/navigationRole.js", "../../aria-query/lib/etc/roles/literal/noneRole.js", "../../aria-query/lib/etc/roles/literal/noteRole.js", "../../aria-query/lib/etc/roles/literal/optionRole.js", "../../aria-query/lib/etc/roles/literal/paragraphRole.js", "../../aria-query/lib/etc/roles/literal/presentationRole.js", "../../aria-query/lib/etc/roles/literal/progressbarRole.js", "../../aria-query/lib/etc/roles/literal/radioRole.js", "../../aria-query/lib/etc/roles/literal/radiogroupRole.js", "../../aria-query/lib/etc/roles/literal/regionRole.js", "../../aria-query/lib/etc/roles/literal/rowRole.js", "../../aria-query/lib/etc/roles/literal/rowgroupRole.js", "../../aria-query/lib/etc/roles/literal/rowheaderRole.js", "../../aria-query/lib/etc/roles/literal/scrollbarRole.js", "../../aria-query/lib/etc/roles/literal/searchRole.js", "../../aria-query/lib/etc/roles/literal/searchboxRole.js", "../../aria-query/lib/etc/roles/literal/separatorRole.js", "../../aria-query/lib/etc/roles/literal/sliderRole.js", "../../aria-query/lib/etc/roles/literal/spinbuttonRole.js", "../../aria-query/lib/etc/roles/literal/statusRole.js", "../../aria-query/lib/etc/roles/literal/strongRole.js", "../../aria-query/lib/etc/roles/literal/subscriptRole.js", "../../aria-query/lib/etc/roles/literal/superscriptRole.js", "../../aria-query/lib/etc/roles/literal/switchRole.js", "../../aria-query/lib/etc/roles/literal/tabRole.js", "../../aria-query/lib/etc/roles/literal/tableRole.js", "../../aria-query/lib/etc/roles/literal/tablistRole.js", "../../aria-query/lib/etc/roles/literal/tabpanelRole.js", "../../aria-query/lib/etc/roles/literal/termRole.js", "../../aria-query/lib/etc/roles/literal/textboxRole.js", "../../aria-query/lib/etc/roles/literal/timeRole.js", "../../aria-query/lib/etc/roles/literal/timerRole.js", "../../aria-query/lib/etc/roles/literal/toolbarRole.js", "../../aria-query/lib/etc/roles/literal/tooltipRole.js", "../../aria-query/lib/etc/roles/literal/treeRole.js", "../../aria-query/lib/etc/roles/literal/treegridRole.js", "../../aria-query/lib/etc/roles/literal/treeitemRole.js", "../../aria-query/lib/etc/roles/ariaLiteralRoles.js", "../../aria-query/lib/etc/roles/dpub/docAbstractRole.js", "../../aria-query/lib/etc/roles/dpub/docAcknowledgmentsRole.js", "../../aria-query/lib/etc/roles/dpub/docAfterwordRole.js", "../../aria-query/lib/etc/roles/dpub/docAppendixRole.js", "../../aria-query/lib/etc/roles/dpub/docBacklinkRole.js", "../../aria-query/lib/etc/roles/dpub/docBiblioentryRole.js", "../../aria-query/lib/etc/roles/dpub/docBibliographyRole.js", "../../aria-query/lib/etc/roles/dpub/docBibliorefRole.js", "../../aria-query/lib/etc/roles/dpub/docChapterRole.js", "../../aria-query/lib/etc/roles/dpub/docColophonRole.js", "../../aria-query/lib/etc/roles/dpub/docConclusionRole.js", "../../aria-query/lib/etc/roles/dpub/docCoverRole.js", "../../aria-query/lib/etc/roles/dpub/docCreditRole.js", "../../aria-query/lib/etc/roles/dpub/docCreditsRole.js", "../../aria-query/lib/etc/roles/dpub/docDedicationRole.js", "../../aria-query/lib/etc/roles/dpub/docEndnoteRole.js", "../../aria-query/lib/etc/roles/dpub/docEndnotesRole.js", "../../aria-query/lib/etc/roles/dpub/docEpigraphRole.js", "../../aria-query/lib/etc/roles/dpub/docEpilogueRole.js", "../../aria-query/lib/etc/roles/dpub/docErrataRole.js", "../../aria-query/lib/etc/roles/dpub/docExampleRole.js", "../../aria-query/lib/etc/roles/dpub/docFootnoteRole.js", "../../aria-query/lib/etc/roles/dpub/docForewordRole.js", "../../aria-query/lib/etc/roles/dpub/docGlossaryRole.js", "../../aria-query/lib/etc/roles/dpub/docGlossrefRole.js", "../../aria-query/lib/etc/roles/dpub/docIndexRole.js", "../../aria-query/lib/etc/roles/dpub/docIntroductionRole.js", "../../aria-query/lib/etc/roles/dpub/docNoterefRole.js", "../../aria-query/lib/etc/roles/dpub/docNoticeRole.js", "../../aria-query/lib/etc/roles/dpub/docPagebreakRole.js", "../../aria-query/lib/etc/roles/dpub/docPagefooterRole.js", "../../aria-query/lib/etc/roles/dpub/docPageheaderRole.js", "../../aria-query/lib/etc/roles/dpub/docPagelistRole.js", "../../aria-query/lib/etc/roles/dpub/docPartRole.js", "../../aria-query/lib/etc/roles/dpub/docPrefaceRole.js", "../../aria-query/lib/etc/roles/dpub/docPrologueRole.js", "../../aria-query/lib/etc/roles/dpub/docPullquoteRole.js", "../../aria-query/lib/etc/roles/dpub/docQnaRole.js", "../../aria-query/lib/etc/roles/dpub/docSubtitleRole.js", "../../aria-query/lib/etc/roles/dpub/docTipRole.js", "../../aria-query/lib/etc/roles/dpub/docTocRole.js", "../../aria-query/lib/etc/roles/ariaDpubRoles.js", "../../aria-query/lib/etc/roles/graphics/graphicsDocumentRole.js", "../../aria-query/lib/etc/roles/graphics/graphicsObjectRole.js", "../../aria-query/lib/etc/roles/graphics/graphicsSymbolRole.js", "../../aria-query/lib/etc/roles/ariaGraphicsRoles.js", "../../aria-query/lib/rolesMap.js", "../../aria-query/lib/elementRoleMap.js", "../../aria-query/lib/roleElementMap.js", "../../aria-query/lib/index.js"], + "sourcesContent": ["\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n// eslint-disable-next-line no-unused-vars\nfunction iteratorProxy() {\n var values = this;\n var index = 0;\n var iter = {\n '@@iterator': function iterator() {\n return iter;\n },\n next: function next() {\n if (index < values.length) {\n var value = values[index];\n index = index + 1;\n return {\n done: false,\n value: value\n };\n } else {\n return {\n done: true\n };\n }\n }\n };\n return iter;\n}\nvar _default = exports.default = iteratorProxy;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = iterationDecorator;\nvar _iteratorProxy = _interopRequireDefault(require(\"./iteratorProxy\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\nfunction iterationDecorator(collection, entries) {\n if (typeof Symbol === 'function' && _typeof(Symbol.iterator) === 'symbol') {\n Object.defineProperty(collection, Symbol.iterator, {\n value: _iteratorProxy.default.bind(entries)\n });\n }\n return collection;\n}", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nvar properties = [['aria-activedescendant', {\n 'type': 'id'\n}], ['aria-atomic', {\n 'type': 'boolean'\n}], ['aria-autocomplete', {\n 'type': 'token',\n 'values': ['inline', 'list', 'both', 'none']\n}], ['aria-braillelabel', {\n 'type': 'string'\n}], ['aria-brailleroledescription', {\n 'type': 'string'\n}], ['aria-busy', {\n 'type': 'boolean'\n}], ['aria-checked', {\n 'type': 'tristate'\n}], ['aria-colcount', {\n type: 'integer'\n}], ['aria-colindex', {\n type: 'integer'\n}], ['aria-colspan', {\n type: 'integer'\n}], ['aria-controls', {\n 'type': 'idlist'\n}], ['aria-current', {\n type: 'token',\n values: ['page', 'step', 'location', 'date', 'time', true, false]\n}], ['aria-describedby', {\n 'type': 'idlist'\n}], ['aria-description', {\n 'type': 'string'\n}], ['aria-details', {\n 'type': 'id'\n}], ['aria-disabled', {\n 'type': 'boolean'\n}], ['aria-dropeffect', {\n 'type': 'tokenlist',\n 'values': ['copy', 'execute', 'link', 'move', 'none', 'popup']\n}], ['aria-errormessage', {\n 'type': 'id'\n}], ['aria-expanded', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-flowto', {\n 'type': 'idlist'\n}], ['aria-grabbed', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-haspopup', {\n 'type': 'token',\n 'values': [false, true, 'menu', 'listbox', 'tree', 'grid', 'dialog']\n}], ['aria-hidden', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-invalid', {\n 'type': 'token',\n 'values': ['grammar', false, 'spelling', true]\n}], ['aria-keyshortcuts', {\n type: 'string'\n}], ['aria-label', {\n 'type': 'string'\n}], ['aria-labelledby', {\n 'type': 'idlist'\n}], ['aria-level', {\n 'type': 'integer'\n}], ['aria-live', {\n 'type': 'token',\n 'values': ['assertive', 'off', 'polite']\n}], ['aria-modal', {\n type: 'boolean'\n}], ['aria-multiline', {\n 'type': 'boolean'\n}], ['aria-multiselectable', {\n 'type': 'boolean'\n}], ['aria-orientation', {\n 'type': 'token',\n 'values': ['vertical', 'undefined', 'horizontal']\n}], ['aria-owns', {\n 'type': 'idlist'\n}], ['aria-placeholder', {\n type: 'string'\n}], ['aria-posinset', {\n 'type': 'integer'\n}], ['aria-pressed', {\n 'type': 'tristate'\n}], ['aria-readonly', {\n 'type': 'boolean'\n}], ['aria-relevant', {\n 'type': 'tokenlist',\n 'values': ['additions', 'all', 'removals', 'text']\n}], ['aria-required', {\n 'type': 'boolean'\n}], ['aria-roledescription', {\n type: 'string'\n}], ['aria-rowcount', {\n type: 'integer'\n}], ['aria-rowindex', {\n type: 'integer'\n}], ['aria-rowspan', {\n type: 'integer'\n}], ['aria-selected', {\n 'type': 'boolean',\n 'allowundefined': true\n}], ['aria-setsize', {\n 'type': 'integer'\n}], ['aria-sort', {\n 'type': 'token',\n 'values': ['ascending', 'descending', 'none', 'other']\n}], ['aria-valuemax', {\n 'type': 'number'\n}], ['aria-valuemin', {\n 'type': 'number'\n}], ['aria-valuenow', {\n 'type': 'number'\n}], ['aria-valuetext', {\n 'type': 'string'\n}]];\nvar ariaPropsMap = {\n entries: function entries() {\n return properties;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _properties = properties; _i < _properties.length; _i++) {\n var _properties$_i = _slicedToArray(_properties[_i], 2),\n key = _properties$_i[0],\n values = _properties$_i[1];\n fn.call(thisArg, values, key, properties);\n }\n },\n get: function get(key) {\n var item = properties.filter(function (tuple) {\n return tuple[0] === key ? true : false;\n })[0];\n return item && item[1];\n },\n has: function has(key) {\n return !!ariaPropsMap.get(key);\n },\n keys: function keys() {\n return properties.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return properties.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = exports.default = (0, _iterationDecorator.default)(ariaPropsMap, ariaPropsMap.entries());", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nvar dom = [['a', {\n reserved: false\n}], ['abbr', {\n reserved: false\n}], ['acronym', {\n reserved: false\n}], ['address', {\n reserved: false\n}], ['applet', {\n reserved: false\n}], ['area', {\n reserved: false\n}], ['article', {\n reserved: false\n}], ['aside', {\n reserved: false\n}], ['audio', {\n reserved: false\n}], ['b', {\n reserved: false\n}], ['base', {\n reserved: true\n}], ['bdi', {\n reserved: false\n}], ['bdo', {\n reserved: false\n}], ['big', {\n reserved: false\n}], ['blink', {\n reserved: false\n}], ['blockquote', {\n reserved: false\n}], ['body', {\n reserved: false\n}], ['br', {\n reserved: false\n}], ['button', {\n reserved: false\n}], ['canvas', {\n reserved: false\n}], ['caption', {\n reserved: false\n}], ['center', {\n reserved: false\n}], ['cite', {\n reserved: false\n}], ['code', {\n reserved: false\n}], ['col', {\n reserved: true\n}], ['colgroup', {\n reserved: true\n}], ['content', {\n reserved: false\n}], ['data', {\n reserved: false\n}], ['datalist', {\n reserved: false\n}], ['dd', {\n reserved: false\n}], ['del', {\n reserved: false\n}], ['details', {\n reserved: false\n}], ['dfn', {\n reserved: false\n}], ['dialog', {\n reserved: false\n}], ['dir', {\n reserved: false\n}], ['div', {\n reserved: false\n}], ['dl', {\n reserved: false\n}], ['dt', {\n reserved: false\n}], ['em', {\n reserved: false\n}], ['embed', {\n reserved: false\n}], ['fieldset', {\n reserved: false\n}], ['figcaption', {\n reserved: false\n}], ['figure', {\n reserved: false\n}], ['font', {\n reserved: false\n}], ['footer', {\n reserved: false\n}], ['form', {\n reserved: false\n}], ['frame', {\n reserved: false\n}], ['frameset', {\n reserved: false\n}], ['h1', {\n reserved: false\n}], ['h2', {\n reserved: false\n}], ['h3', {\n reserved: false\n}], ['h4', {\n reserved: false\n}], ['h5', {\n reserved: false\n}], ['h6', {\n reserved: false\n}], ['head', {\n reserved: true\n}], ['header', {\n reserved: false\n}], ['hgroup', {\n reserved: false\n}], ['hr', {\n reserved: false\n}], ['html', {\n reserved: true\n}], ['i', {\n reserved: false\n}], ['iframe', {\n reserved: false\n}], ['img', {\n reserved: false\n}], ['input', {\n reserved: false\n}], ['ins', {\n reserved: false\n}], ['kbd', {\n reserved: false\n}], ['keygen', {\n reserved: false\n}], ['label', {\n reserved: false\n}], ['legend', {\n reserved: false\n}], ['li', {\n reserved: false\n}], ['link', {\n reserved: true\n}], ['main', {\n reserved: false\n}], ['map', {\n reserved: false\n}], ['mark', {\n reserved: false\n}], ['marquee', {\n reserved: false\n}], ['menu', {\n reserved: false\n}], ['menuitem', {\n reserved: false\n}], ['meta', {\n reserved: true\n}], ['meter', {\n reserved: false\n}], ['nav', {\n reserved: false\n}], ['noembed', {\n reserved: true\n}], ['noscript', {\n reserved: true\n}], ['object', {\n reserved: false\n}], ['ol', {\n reserved: false\n}], ['optgroup', {\n reserved: false\n}], ['option', {\n reserved: false\n}], ['output', {\n reserved: false\n}], ['p', {\n reserved: false\n}], ['param', {\n reserved: true\n}], ['picture', {\n reserved: true\n}], ['pre', {\n reserved: false\n}], ['progress', {\n reserved: false\n}], ['q', {\n reserved: false\n}], ['rp', {\n reserved: false\n}], ['rt', {\n reserved: false\n}], ['rtc', {\n reserved: false\n}], ['ruby', {\n reserved: false\n}], ['s', {\n reserved: false\n}], ['samp', {\n reserved: false\n}], ['script', {\n reserved: true\n}], ['section', {\n reserved: false\n}], ['select', {\n reserved: false\n}], ['small', {\n reserved: false\n}], ['source', {\n reserved: true\n}], ['spacer', {\n reserved: false\n}], ['span', {\n reserved: false\n}], ['strike', {\n reserved: false\n}], ['strong', {\n reserved: false\n}], ['style', {\n reserved: true\n}], ['sub', {\n reserved: false\n}], ['summary', {\n reserved: false\n}], ['sup', {\n reserved: false\n}], ['table', {\n reserved: false\n}], ['tbody', {\n reserved: false\n}], ['td', {\n reserved: false\n}], ['textarea', {\n reserved: false\n}], ['tfoot', {\n reserved: false\n}], ['th', {\n reserved: false\n}], ['thead', {\n reserved: false\n}], ['time', {\n reserved: false\n}], ['title', {\n reserved: true\n}], ['tr', {\n reserved: false\n}], ['track', {\n reserved: true\n}], ['tt', {\n reserved: false\n}], ['u', {\n reserved: false\n}], ['ul', {\n reserved: false\n}], ['var', {\n reserved: false\n}], ['video', {\n reserved: false\n}], ['wbr', {\n reserved: false\n}], ['xmp', {\n reserved: false\n}]];\nvar domMap = {\n entries: function entries() {\n return dom;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _dom = dom; _i < _dom.length; _i++) {\n var _dom$_i = _slicedToArray(_dom[_i], 2),\n key = _dom$_i[0],\n values = _dom$_i[1];\n fn.call(thisArg, values, key, dom);\n }\n },\n get: function get(key) {\n var item = dom.filter(function (tuple) {\n return tuple[0] === key ? true : false;\n })[0];\n return item && item[1];\n },\n has: function has(key) {\n return !!domMap.get(key);\n },\n keys: function keys() {\n return dom.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return dom.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = exports.default = (0, _iterationDecorator.default)(domMap, domMap.entries());", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar commandRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = exports.default = commandRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar compositeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = exports.default = compositeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar inputRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null\n },\n relatedConcepts: [{\n concept: {\n name: 'input'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget']]\n};\nvar _default = exports.default = inputRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar landmarkRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = landmarkRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rangeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuemax': null,\n 'aria-valuemin': null,\n 'aria-valuenow': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = rangeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar roletypeRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {\n 'aria-atomic': null,\n 'aria-busy': null,\n 'aria-controls': null,\n 'aria-current': null,\n 'aria-describedby': null,\n 'aria-details': null,\n 'aria-dropeffect': null,\n 'aria-flowto': null,\n 'aria-grabbed': null,\n 'aria-hidden': null,\n 'aria-keyshortcuts': null,\n 'aria-label': null,\n 'aria-labelledby': null,\n 'aria-live': null,\n 'aria-owns': null,\n 'aria-relevant': null,\n 'aria-roledescription': null\n },\n relatedConcepts: [{\n concept: {\n name: 'role'\n },\n module: 'XHTML'\n }, {\n concept: {\n name: 'type'\n },\n module: 'Dublin Core'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: []\n};\nvar _default = exports.default = roletypeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sectionRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'frontmatter'\n },\n module: 'DTB'\n }, {\n concept: {\n name: 'level'\n },\n module: 'DTB'\n }, {\n concept: {\n name: 'level'\n },\n module: 'SMIL'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = sectionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sectionheadRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = sectionheadRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar selectRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'structure', 'section', 'group']]\n};\nvar _default = exports.default = selectRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar structureRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = exports.default = structureRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar widgetRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = exports.default = widgetRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar windowRole = {\n abstract: true,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-modal': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype']]\n};\nvar _default = exports.default = windowRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _commandRole = _interopRequireDefault(require(\"./abstract/commandRole\"));\nvar _compositeRole = _interopRequireDefault(require(\"./abstract/compositeRole\"));\nvar _inputRole = _interopRequireDefault(require(\"./abstract/inputRole\"));\nvar _landmarkRole = _interopRequireDefault(require(\"./abstract/landmarkRole\"));\nvar _rangeRole = _interopRequireDefault(require(\"./abstract/rangeRole\"));\nvar _roletypeRole = _interopRequireDefault(require(\"./abstract/roletypeRole\"));\nvar _sectionRole = _interopRequireDefault(require(\"./abstract/sectionRole\"));\nvar _sectionheadRole = _interopRequireDefault(require(\"./abstract/sectionheadRole\"));\nvar _selectRole = _interopRequireDefault(require(\"./abstract/selectRole\"));\nvar _structureRole = _interopRequireDefault(require(\"./abstract/structureRole\"));\nvar _widgetRole = _interopRequireDefault(require(\"./abstract/widgetRole\"));\nvar _windowRole = _interopRequireDefault(require(\"./abstract/windowRole\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nvar ariaAbstractRoles = [['command', _commandRole.default], ['composite', _compositeRole.default], ['input', _inputRole.default], ['landmark', _landmarkRole.default], ['range', _rangeRole.default], ['roletype', _roletypeRole.default], ['section', _sectionRole.default], ['sectionhead', _sectionheadRole.default], ['select', _selectRole.default], ['structure', _structureRole.default], ['widget', _widgetRole.default], ['window', _windowRole.default]];\nvar _default = exports.default = ariaAbstractRoles;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar alertRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-atomic': 'true',\n 'aria-live': 'assertive'\n },\n relatedConcepts: [{\n concept: {\n name: 'alert'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = alertRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar alertdialogRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'alert'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'alert'], ['roletype', 'window', 'dialog']]\n};\nvar _default = exports.default = alertdialogRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar applicationRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'Device Independence Delivery Unit'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = applicationRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar articleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'article'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'document']]\n};\nvar _default = exports.default = articleRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar bannerRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n constraints: ['scoped to the body element'],\n name: 'header'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = bannerRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar blockquoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'blockquote'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = blockquoteRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar buttonRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-pressed': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'button'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'image'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'reset'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'type',\n value: 'submit'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'button'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'trigger'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = exports.default = buttonRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar captionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'caption'\n },\n module: 'HTML'\n }],\n requireContextRole: ['figure', 'grid', 'table'],\n requiredContextRole: ['figure', 'grid', 'table'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = captionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar cellRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-colindex': null,\n 'aria-colspan': null,\n 'aria-rowindex': null,\n 'aria-rowspan': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['ancestor table element has table role'],\n name: 'td'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = cellRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar checkboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'checkbox'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'option'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = exports.default = checkboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar codeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'code'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = codeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar columnheaderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-sort': null\n },\n relatedConcepts: [{\n concept: {\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'col'\n }],\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'colgroup'\n }],\n name: 'th'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'structure', 'section', 'cell', 'gridcell'], ['roletype', 'widget', 'gridcell'], ['roletype', 'structure', 'sectionhead']]\n};\nvar _default = exports.default = columnheaderRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar comboboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-autocomplete': null,\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-expanded': 'false',\n 'aria-haspopup': 'listbox'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'email'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'search'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'tel'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'text'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'multiple'\n }, {\n constraints: ['undefined'],\n name: 'size'\n }],\n constraints: ['the multiple attribute is not set and the size attribute does not have a value greater than 1'],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-controls': null,\n 'aria-expanded': 'false'\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = exports.default = comboboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar complementaryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n constraints: ['scoped to the body element', 'scoped to the main element'],\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n constraints: ['scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n constraints: ['scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'aside'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = complementaryRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar contentinfoRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n constraints: ['scoped to the body element'],\n name: 'footer'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = contentinfoRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar definitionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dd'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = definitionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar deletionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'del'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = deletionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar dialogRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dialog'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'window']]\n};\nvar _default = exports.default = dialogRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar directoryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n module: 'DAISY Guide'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'list']]\n};\nvar _default = exports.default = directoryRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar documentRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'Device Independence Delivery Unit'\n }\n }, {\n concept: {\n name: 'html'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = documentRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar emphasisRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'em'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = emphasisRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar feedRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['article']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'list']]\n};\nvar _default = exports.default = feedRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar figureRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'figure'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = figureRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar formRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n name: 'form'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n name: 'form'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'name'\n }],\n name: 'form'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = formRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar genericRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'a'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'area'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'aside'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'b'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'bdo'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'body'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'data'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'div'\n },\n module: 'HTML'\n }, {\n concept: {\n constraints: ['scoped to the main element', 'scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'footer'\n },\n module: 'HTML'\n }, {\n concept: {\n constraints: ['scoped to the main element', 'scoped to a sectioning content element', 'scoped to a sectioning root element other than body'],\n name: 'header'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'hgroup'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'i'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'pre'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'q'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'samp'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'small'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'span'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'u'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = genericRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar gridRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-multiselectable': null,\n 'aria-readonly': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'structure', 'section', 'table']]\n};\nvar _default = exports.default = gridRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar gridcellRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-selected': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['ancestor table element has grid role', 'ancestor table element has treegrid role'],\n name: 'td'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row'],\n requiredContextRole: ['row'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'widget']]\n};\nvar _default = exports.default = gridcellRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar groupRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-disabled': null\n },\n relatedConcepts: [{\n concept: {\n name: 'details'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'fieldset'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'optgroup'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'address'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = groupRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar headingRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-level': '2'\n },\n relatedConcepts: [{\n concept: {\n name: 'h1'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h2'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h3'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h4'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h5'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'h6'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-level': '2'\n },\n superClass: [['roletype', 'structure', 'sectionhead']]\n};\nvar _default = exports.default = headingRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar imgRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'alt'\n }],\n name: 'img'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'alt'\n }],\n name: 'img'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'imggroup'\n },\n module: 'DTB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = imgRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar insertionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'ins'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = insertionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar linkRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'href'\n }],\n name: 'a'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'href'\n }],\n name: 'area'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = exports.default = linkRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menu'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'ol'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'ul'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['listitem']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = listRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-invalid': null,\n 'aria-multiselectable': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['>1'],\n name: 'size'\n }],\n constraints: ['the size attribute value is greater than 1'],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'multiple'\n }],\n name: 'select'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'datalist'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['option', 'group'], ['option']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = exports.default = listboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar listitemRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-level': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n constraints: ['direct descendant of ol', 'direct descendant of ul', 'direct descendant of menu'],\n name: 'li'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'item'\n },\n module: 'XForms'\n }],\n requireContextRole: ['directory', 'list'],\n requiredContextRole: ['directory', 'list'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = listitemRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar logRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-live': 'polite'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = logRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar mainRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'main'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = mainRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar markRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: [],\n props: {\n 'aria-braillelabel': null,\n 'aria-brailleroledescription': null,\n 'aria-description': null\n },\n relatedConcepts: [{\n concept: {\n name: 'mark'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = markRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar marqueeRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = marqueeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar mathRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'math'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = mathRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [{\n concept: {\n name: 'MENU'\n },\n module: 'JAPI'\n }, {\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'select'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'sidebar'\n },\n module: 'DTB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['menuitem', 'group'], ['menuitemradio', 'group'], ['menuitemcheckbox', 'group'], ['menuitem'], ['menuitemcheckbox'], ['menuitemradio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = exports.default = menuRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menubarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n concept: {\n name: 'toolbar'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['menuitem', 'group'], ['menuitemradio', 'group'], ['menuitemcheckbox', 'group'], ['menuitem'], ['menuitemcheckbox'], ['menuitemradio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select', 'menu'], ['roletype', 'structure', 'section', 'group', 'select', 'menu']]\n};\nvar _default = exports.default = menubarRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'MENU_ITEM'\n },\n module: 'JAPI'\n }, {\n concept: {\n name: 'listitem'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'option'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command']]\n};\nvar _default = exports.default = menuitemRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemcheckboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menuitem'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox'], ['roletype', 'widget', 'command', 'menuitem']]\n};\nvar _default = exports.default = menuitemcheckboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar menuitemradioRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'menuitem'\n },\n module: 'ARIA'\n }],\n requireContextRole: ['group', 'menu', 'menubar'],\n requiredContextRole: ['group', 'menu', 'menubar'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox', 'menuitemcheckbox'], ['roletype', 'widget', 'command', 'menuitem', 'menuitemcheckbox'], ['roletype', 'widget', 'input', 'radio']]\n};\nvar _default = exports.default = menuitemradioRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar meterRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuetext': null,\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [{\n concept: {\n name: 'meter'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'structure', 'range']]\n};\nvar _default = exports.default = meterRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar navigationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'nav'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = navigationRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar noneRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: [],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: []\n};\nvar _default = exports.default = noneRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar noteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = noteRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar optionRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-posinset': null,\n 'aria-setsize': null,\n 'aria-selected': 'false'\n },\n relatedConcepts: [{\n concept: {\n name: 'item'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'listitem'\n },\n module: 'ARIA'\n }, {\n concept: {\n name: 'option'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-selected': 'false'\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = exports.default = optionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar paragraphRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'p'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = paragraphRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar presentationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'alt',\n value: ''\n }],\n name: 'img'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = presentationRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar progressbarRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-valuetext': null\n },\n relatedConcepts: [{\n concept: {\n name: 'progress'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'status'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'range'], ['roletype', 'widget']]\n};\nvar _default = exports.default = progressbarRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar radioRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-checked': null,\n 'aria-posinset': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'radio'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = exports.default = radioRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar radiogroupRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n name: 'list'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['radio']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = exports.default = radiogroupRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar regionRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-label'\n }],\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['set'],\n name: 'aria-labelledby'\n }],\n name: 'section'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'Device Independence Glossart perceivable unit'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = regionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-colindex': null,\n 'aria-expanded': null,\n 'aria-level': null,\n 'aria-posinset': null,\n 'aria-rowindex': null,\n 'aria-selected': null,\n 'aria-setsize': null\n },\n relatedConcepts: [{\n concept: {\n name: 'tr'\n },\n module: 'HTML'\n }],\n requireContextRole: ['grid', 'rowgroup', 'table', 'treegrid'],\n requiredContextRole: ['grid', 'rowgroup', 'table', 'treegrid'],\n requiredOwnedElements: [['cell'], ['columnheader'], ['gridcell'], ['rowheader']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group'], ['roletype', 'widget']]\n};\nvar _default = exports.default = rowRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowgroupRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'tbody'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'tfoot'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'thead'\n },\n module: 'HTML'\n }],\n requireContextRole: ['grid', 'table', 'treegrid'],\n requiredContextRole: ['grid', 'table', 'treegrid'],\n requiredOwnedElements: [['row']],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = rowgroupRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar rowheaderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-sort': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'scope',\n value: 'row'\n }],\n name: 'th'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n name: 'scope',\n value: 'rowgroup'\n }],\n name: 'th'\n },\n module: 'HTML'\n }],\n requireContextRole: ['row', 'rowgroup'],\n requiredContextRole: ['row', 'rowgroup'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'cell'], ['roletype', 'structure', 'section', 'cell', 'gridcell'], ['roletype', 'widget', 'gridcell'], ['roletype', 'structure', 'sectionhead']]\n};\nvar _default = exports.default = rowheaderRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar scrollbarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-valuetext': null,\n 'aria-orientation': 'vertical',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-controls': null,\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'structure', 'range'], ['roletype', 'widget']]\n};\nvar _default = exports.default = scrollbarRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar searchRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = searchRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar searchboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'search'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'input', 'textbox']]\n};\nvar _default = exports.default = searchboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar separatorRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-orientation': 'horizontal',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0',\n 'aria-valuenow': null,\n 'aria-valuetext': null\n },\n relatedConcepts: [{\n concept: {\n name: 'hr'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure']]\n};\nvar _default = exports.default = separatorRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar sliderRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-valuetext': null,\n 'aria-orientation': 'horizontal',\n 'aria-valuemax': '100',\n 'aria-valuemin': '0'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'range'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-valuenow': null\n },\n superClass: [['roletype', 'widget', 'input'], ['roletype', 'structure', 'range']]\n};\nvar _default = exports.default = sliderRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar spinbuttonRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-readonly': null,\n 'aria-required': null,\n 'aria-valuetext': null,\n 'aria-valuenow': '0'\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n name: 'type',\n value: 'number'\n }],\n name: 'input'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite'], ['roletype', 'widget', 'input'], ['roletype', 'structure', 'range']]\n};\nvar _default = exports.default = spinbuttonRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar statusRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-atomic': 'true',\n 'aria-live': 'polite'\n },\n relatedConcepts: [{\n concept: {\n name: 'output'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = statusRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar strongRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'strong'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = strongRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar subscriptRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'sub'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = subscriptRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar superscriptRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: ['aria-label', 'aria-labelledby'],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'sup'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = superscriptRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar switchRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'button'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-checked': null\n },\n superClass: [['roletype', 'widget', 'input', 'checkbox']]\n};\nvar _default = exports.default = switchRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tabRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-posinset': null,\n 'aria-setsize': null,\n 'aria-selected': 'false'\n },\n relatedConcepts: [],\n requireContextRole: ['tablist'],\n requiredContextRole: ['tablist'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'sectionhead'], ['roletype', 'widget']]\n};\nvar _default = exports.default = tabRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tableRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-colcount': null,\n 'aria-rowcount': null\n },\n relatedConcepts: [{\n concept: {\n name: 'table'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = tableRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tablistRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-level': null,\n 'aria-multiselectable': null,\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n module: 'DAISY',\n concept: {\n name: 'guide'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['tab']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite']]\n};\nvar _default = exports.default = tablistRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tabpanelRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = tabpanelRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar termRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'dfn'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'dt'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = termRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar textboxRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-activedescendant': null,\n 'aria-autocomplete': null,\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null,\n 'aria-multiline': null,\n 'aria-placeholder': null,\n 'aria-readonly': null,\n 'aria-required': null\n },\n relatedConcepts: [{\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'type'\n }, {\n constraints: ['undefined'],\n name: 'list'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'email'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'tel'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'text'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n attributes: [{\n constraints: ['undefined'],\n name: 'list'\n }, {\n name: 'type',\n value: 'url'\n }],\n constraints: ['the list attribute is not set'],\n name: 'input'\n },\n module: 'HTML'\n }, {\n concept: {\n name: 'input'\n },\n module: 'XForms'\n }, {\n concept: {\n name: 'textarea'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'input']]\n};\nvar _default = exports.default = textboxRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar timeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'time'\n },\n module: 'HTML'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = timeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar timerRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'status']]\n};\nvar _default = exports.default = timerRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar toolbarRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-orientation': 'horizontal'\n },\n relatedConcepts: [{\n concept: {\n name: 'menubar'\n },\n module: 'ARIA'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group']]\n};\nvar _default = exports.default = toolbarRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar tooltipRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = tooltipRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treeRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null,\n 'aria-multiselectable': null,\n 'aria-required': null,\n 'aria-orientation': 'vertical'\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['treeitem', 'group'], ['treeitem']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'select'], ['roletype', 'structure', 'section', 'group', 'select']]\n};\nvar _default = exports.default = treeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treegridRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['row'], ['row', 'rowgroup']],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'composite', 'grid'], ['roletype', 'structure', 'section', 'table', 'grid'], ['roletype', 'widget', 'composite', 'select', 'tree'], ['roletype', 'structure', 'section', 'group', 'select', 'tree']]\n};\nvar _default = exports.default = treegridRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar treeitemRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-expanded': null,\n 'aria-haspopup': null\n },\n relatedConcepts: [],\n requireContextRole: ['group', 'tree'],\n requiredContextRole: ['group', 'tree'],\n requiredOwnedElements: [],\n requiredProps: {\n 'aria-selected': null\n },\n superClass: [['roletype', 'structure', 'section', 'listitem'], ['roletype', 'widget', 'input', 'option']]\n};\nvar _default = exports.default = treeitemRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _alertRole = _interopRequireDefault(require(\"./literal/alertRole\"));\nvar _alertdialogRole = _interopRequireDefault(require(\"./literal/alertdialogRole\"));\nvar _applicationRole = _interopRequireDefault(require(\"./literal/applicationRole\"));\nvar _articleRole = _interopRequireDefault(require(\"./literal/articleRole\"));\nvar _bannerRole = _interopRequireDefault(require(\"./literal/bannerRole\"));\nvar _blockquoteRole = _interopRequireDefault(require(\"./literal/blockquoteRole\"));\nvar _buttonRole = _interopRequireDefault(require(\"./literal/buttonRole\"));\nvar _captionRole = _interopRequireDefault(require(\"./literal/captionRole\"));\nvar _cellRole = _interopRequireDefault(require(\"./literal/cellRole\"));\nvar _checkboxRole = _interopRequireDefault(require(\"./literal/checkboxRole\"));\nvar _codeRole = _interopRequireDefault(require(\"./literal/codeRole\"));\nvar _columnheaderRole = _interopRequireDefault(require(\"./literal/columnheaderRole\"));\nvar _comboboxRole = _interopRequireDefault(require(\"./literal/comboboxRole\"));\nvar _complementaryRole = _interopRequireDefault(require(\"./literal/complementaryRole\"));\nvar _contentinfoRole = _interopRequireDefault(require(\"./literal/contentinfoRole\"));\nvar _definitionRole = _interopRequireDefault(require(\"./literal/definitionRole\"));\nvar _deletionRole = _interopRequireDefault(require(\"./literal/deletionRole\"));\nvar _dialogRole = _interopRequireDefault(require(\"./literal/dialogRole\"));\nvar _directoryRole = _interopRequireDefault(require(\"./literal/directoryRole\"));\nvar _documentRole = _interopRequireDefault(require(\"./literal/documentRole\"));\nvar _emphasisRole = _interopRequireDefault(require(\"./literal/emphasisRole\"));\nvar _feedRole = _interopRequireDefault(require(\"./literal/feedRole\"));\nvar _figureRole = _interopRequireDefault(require(\"./literal/figureRole\"));\nvar _formRole = _interopRequireDefault(require(\"./literal/formRole\"));\nvar _genericRole = _interopRequireDefault(require(\"./literal/genericRole\"));\nvar _gridRole = _interopRequireDefault(require(\"./literal/gridRole\"));\nvar _gridcellRole = _interopRequireDefault(require(\"./literal/gridcellRole\"));\nvar _groupRole = _interopRequireDefault(require(\"./literal/groupRole\"));\nvar _headingRole = _interopRequireDefault(require(\"./literal/headingRole\"));\nvar _imgRole = _interopRequireDefault(require(\"./literal/imgRole\"));\nvar _insertionRole = _interopRequireDefault(require(\"./literal/insertionRole\"));\nvar _linkRole = _interopRequireDefault(require(\"./literal/linkRole\"));\nvar _listRole = _interopRequireDefault(require(\"./literal/listRole\"));\nvar _listboxRole = _interopRequireDefault(require(\"./literal/listboxRole\"));\nvar _listitemRole = _interopRequireDefault(require(\"./literal/listitemRole\"));\nvar _logRole = _interopRequireDefault(require(\"./literal/logRole\"));\nvar _mainRole = _interopRequireDefault(require(\"./literal/mainRole\"));\nvar _markRole = _interopRequireDefault(require(\"./literal/markRole\"));\nvar _marqueeRole = _interopRequireDefault(require(\"./literal/marqueeRole\"));\nvar _mathRole = _interopRequireDefault(require(\"./literal/mathRole\"));\nvar _menuRole = _interopRequireDefault(require(\"./literal/menuRole\"));\nvar _menubarRole = _interopRequireDefault(require(\"./literal/menubarRole\"));\nvar _menuitemRole = _interopRequireDefault(require(\"./literal/menuitemRole\"));\nvar _menuitemcheckboxRole = _interopRequireDefault(require(\"./literal/menuitemcheckboxRole\"));\nvar _menuitemradioRole = _interopRequireDefault(require(\"./literal/menuitemradioRole\"));\nvar _meterRole = _interopRequireDefault(require(\"./literal/meterRole\"));\nvar _navigationRole = _interopRequireDefault(require(\"./literal/navigationRole\"));\nvar _noneRole = _interopRequireDefault(require(\"./literal/noneRole\"));\nvar _noteRole = _interopRequireDefault(require(\"./literal/noteRole\"));\nvar _optionRole = _interopRequireDefault(require(\"./literal/optionRole\"));\nvar _paragraphRole = _interopRequireDefault(require(\"./literal/paragraphRole\"));\nvar _presentationRole = _interopRequireDefault(require(\"./literal/presentationRole\"));\nvar _progressbarRole = _interopRequireDefault(require(\"./literal/progressbarRole\"));\nvar _radioRole = _interopRequireDefault(require(\"./literal/radioRole\"));\nvar _radiogroupRole = _interopRequireDefault(require(\"./literal/radiogroupRole\"));\nvar _regionRole = _interopRequireDefault(require(\"./literal/regionRole\"));\nvar _rowRole = _interopRequireDefault(require(\"./literal/rowRole\"));\nvar _rowgroupRole = _interopRequireDefault(require(\"./literal/rowgroupRole\"));\nvar _rowheaderRole = _interopRequireDefault(require(\"./literal/rowheaderRole\"));\nvar _scrollbarRole = _interopRequireDefault(require(\"./literal/scrollbarRole\"));\nvar _searchRole = _interopRequireDefault(require(\"./literal/searchRole\"));\nvar _searchboxRole = _interopRequireDefault(require(\"./literal/searchboxRole\"));\nvar _separatorRole = _interopRequireDefault(require(\"./literal/separatorRole\"));\nvar _sliderRole = _interopRequireDefault(require(\"./literal/sliderRole\"));\nvar _spinbuttonRole = _interopRequireDefault(require(\"./literal/spinbuttonRole\"));\nvar _statusRole = _interopRequireDefault(require(\"./literal/statusRole\"));\nvar _strongRole = _interopRequireDefault(require(\"./literal/strongRole\"));\nvar _subscriptRole = _interopRequireDefault(require(\"./literal/subscriptRole\"));\nvar _superscriptRole = _interopRequireDefault(require(\"./literal/superscriptRole\"));\nvar _switchRole = _interopRequireDefault(require(\"./literal/switchRole\"));\nvar _tabRole = _interopRequireDefault(require(\"./literal/tabRole\"));\nvar _tableRole = _interopRequireDefault(require(\"./literal/tableRole\"));\nvar _tablistRole = _interopRequireDefault(require(\"./literal/tablistRole\"));\nvar _tabpanelRole = _interopRequireDefault(require(\"./literal/tabpanelRole\"));\nvar _termRole = _interopRequireDefault(require(\"./literal/termRole\"));\nvar _textboxRole = _interopRequireDefault(require(\"./literal/textboxRole\"));\nvar _timeRole = _interopRequireDefault(require(\"./literal/timeRole\"));\nvar _timerRole = _interopRequireDefault(require(\"./literal/timerRole\"));\nvar _toolbarRole = _interopRequireDefault(require(\"./literal/toolbarRole\"));\nvar _tooltipRole = _interopRequireDefault(require(\"./literal/tooltipRole\"));\nvar _treeRole = _interopRequireDefault(require(\"./literal/treeRole\"));\nvar _treegridRole = _interopRequireDefault(require(\"./literal/treegridRole\"));\nvar _treeitemRole = _interopRequireDefault(require(\"./literal/treeitemRole\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nvar ariaLiteralRoles = [['alert', _alertRole.default], ['alertdialog', _alertdialogRole.default], ['application', _applicationRole.default], ['article', _articleRole.default], ['banner', _bannerRole.default], ['blockquote', _blockquoteRole.default], ['button', _buttonRole.default], ['caption', _captionRole.default], ['cell', _cellRole.default], ['checkbox', _checkboxRole.default], ['code', _codeRole.default], ['columnheader', _columnheaderRole.default], ['combobox', _comboboxRole.default], ['complementary', _complementaryRole.default], ['contentinfo', _contentinfoRole.default], ['definition', _definitionRole.default], ['deletion', _deletionRole.default], ['dialog', _dialogRole.default], ['directory', _directoryRole.default], ['document', _documentRole.default], ['emphasis', _emphasisRole.default], ['feed', _feedRole.default], ['figure', _figureRole.default], ['form', _formRole.default], ['generic', _genericRole.default], ['grid', _gridRole.default], ['gridcell', _gridcellRole.default], ['group', _groupRole.default], ['heading', _headingRole.default], ['img', _imgRole.default], ['insertion', _insertionRole.default], ['link', _linkRole.default], ['list', _listRole.default], ['listbox', _listboxRole.default], ['listitem', _listitemRole.default], ['log', _logRole.default], ['main', _mainRole.default], ['mark', _markRole.default], ['marquee', _marqueeRole.default], ['math', _mathRole.default], ['menu', _menuRole.default], ['menubar', _menubarRole.default], ['menuitem', _menuitemRole.default], ['menuitemcheckbox', _menuitemcheckboxRole.default], ['menuitemradio', _menuitemradioRole.default], ['meter', _meterRole.default], ['navigation', _navigationRole.default], ['none', _noneRole.default], ['note', _noteRole.default], ['option', _optionRole.default], ['paragraph', _paragraphRole.default], ['presentation', _presentationRole.default], ['progressbar', _progressbarRole.default], ['radio', _radioRole.default], ['radiogroup', _radiogroupRole.default], ['region', _regionRole.default], ['row', _rowRole.default], ['rowgroup', _rowgroupRole.default], ['rowheader', _rowheaderRole.default], ['scrollbar', _scrollbarRole.default], ['search', _searchRole.default], ['searchbox', _searchboxRole.default], ['separator', _separatorRole.default], ['slider', _sliderRole.default], ['spinbutton', _spinbuttonRole.default], ['status', _statusRole.default], ['strong', _strongRole.default], ['subscript', _subscriptRole.default], ['superscript', _superscriptRole.default], ['switch', _switchRole.default], ['tab', _tabRole.default], ['table', _tableRole.default], ['tablist', _tablistRole.default], ['tabpanel', _tabpanelRole.default], ['term', _termRole.default], ['textbox', _textboxRole.default], ['time', _timeRole.default], ['timer', _timerRole.default], ['toolbar', _toolbarRole.default], ['tooltip', _tooltipRole.default], ['tree', _treeRole.default], ['treegrid', _treegridRole.default], ['treeitem', _treeitemRole.default]];\nvar _default = exports.default = ariaLiteralRoles;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAbstractRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'abstract [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docAbstractRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAcknowledgmentsRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'acknowledgments [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docAcknowledgmentsRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAfterwordRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'afterword [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docAfterwordRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docAppendixRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'appendix [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docAppendixRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBacklinkRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'referrer [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = exports.default = docBacklinkRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBiblioentryRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'EPUB biblioentry [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: ['doc-bibliography'],\n requiredContextRole: ['doc-bibliography'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'listitem']]\n};\nvar _default = exports.default = docBiblioentryRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBibliographyRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'bibliography [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['doc-biblioentry']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docBibliographyRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docBibliorefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'biblioref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = exports.default = docBibliorefRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docChapterRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'chapter [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docChapterRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docColophonRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'colophon [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docColophonRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docConclusionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'conclusion [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docConclusionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCoverRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'cover [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'img']]\n};\nvar _default = exports.default = docCoverRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCreditRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'credit [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docCreditRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docCreditsRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'credits [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docCreditsRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docDedicationRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'dedication [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docDedicationRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEndnoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'rearnote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: ['doc-endnotes'],\n requiredContextRole: ['doc-endnotes'],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'listitem']]\n};\nvar _default = exports.default = docEndnoteRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEndnotesRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'rearnotes [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['doc-endnote']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docEndnotesRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEpigraphRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'epigraph [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docEpigraphRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docEpilogueRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'epilogue [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docEpilogueRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docErrataRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'errata [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docErrataRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docExampleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docExampleRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docFootnoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'footnote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docFootnoteRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docForewordRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'foreword [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docForewordRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docGlossaryRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'glossary [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [['definition'], ['term']],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docGlossaryRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docGlossrefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'glossref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = exports.default = docGlossrefRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docIndexRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'index [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = exports.default = docIndexRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docIntroductionRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'introduction [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docIntroductionRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docNoterefRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'noteref [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'widget', 'command', 'link']]\n};\nvar _default = exports.default = docNoterefRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docNoticeRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'notice [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'note']]\n};\nvar _default = exports.default = docNoticeRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPagebreakRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'pagebreak [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'separator']]\n};\nvar _default = exports.default = docPagebreakRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPagefooterRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: [],\n props: {\n 'aria-braillelabel': null,\n 'aria-brailleroledescription': null,\n 'aria-description': null,\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docPagefooterRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPageheaderRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['prohibited'],\n prohibitedProps: [],\n props: {\n 'aria-braillelabel': null,\n 'aria-brailleroledescription': null,\n 'aria-description': null,\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docPageheaderRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPagelistRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'page-list [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = exports.default = docPagelistRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPartRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'part [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docPartRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPrefaceRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'preface [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docPrefaceRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPrologueRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'prologue [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark']]\n};\nvar _default = exports.default = docPrologueRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docPullquoteRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {},\n relatedConcepts: [{\n concept: {\n name: 'pullquote [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['none']]\n};\nvar _default = exports.default = docPullquoteRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docQnaRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'qna [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section']]\n};\nvar _default = exports.default = docQnaRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docSubtitleRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'subtitle [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'sectionhead']]\n};\nvar _default = exports.default = docSubtitleRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docTipRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'help [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'note']]\n};\nvar _default = exports.default = docTipRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar docTocRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n concept: {\n name: 'toc [EPUB-SSV]'\n },\n module: 'EPUB'\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'landmark', 'navigation']]\n};\nvar _default = exports.default = docTocRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _docAbstractRole = _interopRequireDefault(require(\"./dpub/docAbstractRole\"));\nvar _docAcknowledgmentsRole = _interopRequireDefault(require(\"./dpub/docAcknowledgmentsRole\"));\nvar _docAfterwordRole = _interopRequireDefault(require(\"./dpub/docAfterwordRole\"));\nvar _docAppendixRole = _interopRequireDefault(require(\"./dpub/docAppendixRole\"));\nvar _docBacklinkRole = _interopRequireDefault(require(\"./dpub/docBacklinkRole\"));\nvar _docBiblioentryRole = _interopRequireDefault(require(\"./dpub/docBiblioentryRole\"));\nvar _docBibliographyRole = _interopRequireDefault(require(\"./dpub/docBibliographyRole\"));\nvar _docBibliorefRole = _interopRequireDefault(require(\"./dpub/docBibliorefRole\"));\nvar _docChapterRole = _interopRequireDefault(require(\"./dpub/docChapterRole\"));\nvar _docColophonRole = _interopRequireDefault(require(\"./dpub/docColophonRole\"));\nvar _docConclusionRole = _interopRequireDefault(require(\"./dpub/docConclusionRole\"));\nvar _docCoverRole = _interopRequireDefault(require(\"./dpub/docCoverRole\"));\nvar _docCreditRole = _interopRequireDefault(require(\"./dpub/docCreditRole\"));\nvar _docCreditsRole = _interopRequireDefault(require(\"./dpub/docCreditsRole\"));\nvar _docDedicationRole = _interopRequireDefault(require(\"./dpub/docDedicationRole\"));\nvar _docEndnoteRole = _interopRequireDefault(require(\"./dpub/docEndnoteRole\"));\nvar _docEndnotesRole = _interopRequireDefault(require(\"./dpub/docEndnotesRole\"));\nvar _docEpigraphRole = _interopRequireDefault(require(\"./dpub/docEpigraphRole\"));\nvar _docEpilogueRole = _interopRequireDefault(require(\"./dpub/docEpilogueRole\"));\nvar _docErrataRole = _interopRequireDefault(require(\"./dpub/docErrataRole\"));\nvar _docExampleRole = _interopRequireDefault(require(\"./dpub/docExampleRole\"));\nvar _docFootnoteRole = _interopRequireDefault(require(\"./dpub/docFootnoteRole\"));\nvar _docForewordRole = _interopRequireDefault(require(\"./dpub/docForewordRole\"));\nvar _docGlossaryRole = _interopRequireDefault(require(\"./dpub/docGlossaryRole\"));\nvar _docGlossrefRole = _interopRequireDefault(require(\"./dpub/docGlossrefRole\"));\nvar _docIndexRole = _interopRequireDefault(require(\"./dpub/docIndexRole\"));\nvar _docIntroductionRole = _interopRequireDefault(require(\"./dpub/docIntroductionRole\"));\nvar _docNoterefRole = _interopRequireDefault(require(\"./dpub/docNoterefRole\"));\nvar _docNoticeRole = _interopRequireDefault(require(\"./dpub/docNoticeRole\"));\nvar _docPagebreakRole = _interopRequireDefault(require(\"./dpub/docPagebreakRole\"));\nvar _docPagefooterRole = _interopRequireDefault(require(\"./dpub/docPagefooterRole\"));\nvar _docPageheaderRole = _interopRequireDefault(require(\"./dpub/docPageheaderRole\"));\nvar _docPagelistRole = _interopRequireDefault(require(\"./dpub/docPagelistRole\"));\nvar _docPartRole = _interopRequireDefault(require(\"./dpub/docPartRole\"));\nvar _docPrefaceRole = _interopRequireDefault(require(\"./dpub/docPrefaceRole\"));\nvar _docPrologueRole = _interopRequireDefault(require(\"./dpub/docPrologueRole\"));\nvar _docPullquoteRole = _interopRequireDefault(require(\"./dpub/docPullquoteRole\"));\nvar _docQnaRole = _interopRequireDefault(require(\"./dpub/docQnaRole\"));\nvar _docSubtitleRole = _interopRequireDefault(require(\"./dpub/docSubtitleRole\"));\nvar _docTipRole = _interopRequireDefault(require(\"./dpub/docTipRole\"));\nvar _docTocRole = _interopRequireDefault(require(\"./dpub/docTocRole\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nvar ariaDpubRoles = [['doc-abstract', _docAbstractRole.default], ['doc-acknowledgments', _docAcknowledgmentsRole.default], ['doc-afterword', _docAfterwordRole.default], ['doc-appendix', _docAppendixRole.default], ['doc-backlink', _docBacklinkRole.default], ['doc-biblioentry', _docBiblioentryRole.default], ['doc-bibliography', _docBibliographyRole.default], ['doc-biblioref', _docBibliorefRole.default], ['doc-chapter', _docChapterRole.default], ['doc-colophon', _docColophonRole.default], ['doc-conclusion', _docConclusionRole.default], ['doc-cover', _docCoverRole.default], ['doc-credit', _docCreditRole.default], ['doc-credits', _docCreditsRole.default], ['doc-dedication', _docDedicationRole.default], ['doc-endnote', _docEndnoteRole.default], ['doc-endnotes', _docEndnotesRole.default], ['doc-epigraph', _docEpigraphRole.default], ['doc-epilogue', _docEpilogueRole.default], ['doc-errata', _docErrataRole.default], ['doc-example', _docExampleRole.default], ['doc-footnote', _docFootnoteRole.default], ['doc-foreword', _docForewordRole.default], ['doc-glossary', _docGlossaryRole.default], ['doc-glossref', _docGlossrefRole.default], ['doc-index', _docIndexRole.default], ['doc-introduction', _docIntroductionRole.default], ['doc-noteref', _docNoterefRole.default], ['doc-notice', _docNoticeRole.default], ['doc-pagebreak', _docPagebreakRole.default], ['doc-pagefooter', _docPagefooterRole.default], ['doc-pageheader', _docPageheaderRole.default], ['doc-pagelist', _docPagelistRole.default], ['doc-part', _docPartRole.default], ['doc-preface', _docPrefaceRole.default], ['doc-prologue', _docPrologueRole.default], ['doc-pullquote', _docPullquoteRole.default], ['doc-qna', _docQnaRole.default], ['doc-subtitle', _docSubtitleRole.default], ['doc-tip', _docTipRole.default], ['doc-toc', _docTocRole.default]];\nvar _default = exports.default = ariaDpubRoles;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsDocumentRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-object'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'img'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'article'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'document']]\n};\nvar _default = exports.default = graphicsDocumentRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsObjectRole = {\n abstract: false,\n accessibleNameRequired: false,\n baseConcepts: [],\n childrenPresentational: false,\n nameFrom: ['author', 'contents'],\n prohibitedProps: [],\n props: {\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [{\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-document'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'group'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'img'\n }\n }, {\n module: 'GRAPHICS',\n concept: {\n name: 'graphics-symbol'\n }\n }],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'group']]\n};\nvar _default = exports.default = graphicsObjectRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar graphicsSymbolRole = {\n abstract: false,\n accessibleNameRequired: true,\n baseConcepts: [],\n childrenPresentational: true,\n nameFrom: ['author'],\n prohibitedProps: [],\n props: {\n 'aria-disabled': null,\n 'aria-errormessage': null,\n 'aria-expanded': null,\n 'aria-haspopup': null,\n 'aria-invalid': null\n },\n relatedConcepts: [],\n requireContextRole: [],\n requiredContextRole: [],\n requiredOwnedElements: [],\n requiredProps: {},\n superClass: [['roletype', 'structure', 'section', 'img']]\n};\nvar _default = exports.default = graphicsSymbolRole;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _graphicsDocumentRole = _interopRequireDefault(require(\"./graphics/graphicsDocumentRole\"));\nvar _graphicsObjectRole = _interopRequireDefault(require(\"./graphics/graphicsObjectRole\"));\nvar _graphicsSymbolRole = _interopRequireDefault(require(\"./graphics/graphicsSymbolRole\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nvar ariaGraphicsRoles = [['graphics-document', _graphicsDocumentRole.default], ['graphics-object', _graphicsObjectRole.default], ['graphics-symbol', _graphicsSymbolRole.default]];\nvar _default = exports.default = ariaGraphicsRoles;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _ariaAbstractRoles = _interopRequireDefault(require(\"./etc/roles/ariaAbstractRoles\"));\nvar _ariaLiteralRoles = _interopRequireDefault(require(\"./etc/roles/ariaLiteralRoles\"));\nvar _ariaDpubRoles = _interopRequireDefault(require(\"./etc/roles/ariaDpubRoles\"));\nvar _ariaGraphicsRoles = _interopRequireDefault(require(\"./etc/roles/ariaGraphicsRoles\"));\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nvar roles = [].concat(_ariaAbstractRoles.default, _ariaLiteralRoles.default, _ariaDpubRoles.default, _ariaGraphicsRoles.default);\nroles.forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n roleDefinition = _ref2[1];\n // Conglomerate the properties\n var _iterator = _createForOfIteratorHelper(roleDefinition.superClass),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var superClassIter = _step.value;\n var _iterator2 = _createForOfIteratorHelper(superClassIter),\n _step2;\n try {\n var _loop = function _loop() {\n var superClassName = _step2.value;\n var superClassRoleTuple = roles.filter(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 1),\n name = _ref4[0];\n return name === superClassName;\n })[0];\n if (superClassRoleTuple) {\n var superClassDefinition = superClassRoleTuple[1];\n for (var _i = 0, _Object$keys = Object.keys(superClassDefinition.props); _i < _Object$keys.length; _i++) {\n var prop = _Object$keys[_i];\n if (\n // $FlowIssue Accessing the hasOwnProperty on the Object prototype is fine.\n !Object.prototype.hasOwnProperty.call(roleDefinition.props, prop)) {\n // $FlowIgnore assigning without an index signature is fine\n roleDefinition.props[prop] = superClassDefinition.props[prop];\n }\n }\n }\n };\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n _loop();\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n});\nvar rolesMap = {\n entries: function entries() {\n return roles;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var _iterator3 = _createForOfIteratorHelper(roles),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var _step3$value = _slicedToArray(_step3.value, 2),\n key = _step3$value[0],\n values = _step3$value[1];\n fn.call(thisArg, values, key, roles);\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\n }\n },\n get: function get(key) {\n var item = roles.filter(function (tuple) {\n return tuple[0] === key ? true : false;\n })[0];\n return item && item[1];\n },\n has: function has(key) {\n return !!rolesMap.get(key);\n },\n keys: function keys() {\n return roles.map(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 1),\n key = _ref6[0];\n return key;\n });\n },\n values: function values() {\n return roles.map(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n values = _ref8[1];\n return values;\n });\n }\n};\nvar _default = exports.default = (0, _iterationDecorator.default)(rolesMap, rolesMap.entries());", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nvar elementRoles = [];\nvar keys = _rolesMap.default.keys();\nfor (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var role = _rolesMap.default.get(key);\n if (role) {\n var concepts = [].concat(role.baseConcepts, role.relatedConcepts);\n var _loop = function _loop() {\n var relation = concepts[k];\n if (relation.module === 'HTML') {\n var concept = relation.concept;\n if (concept) {\n var elementRoleRelation = elementRoles.filter(function (relation) {\n return ariaRoleRelationConceptEquals(relation[0], concept);\n })[0];\n var roles;\n if (elementRoleRelation) {\n roles = elementRoleRelation[1];\n } else {\n roles = [];\n }\n var isUnique = true;\n for (var _i = 0; _i < roles.length; _i++) {\n if (roles[_i] === key) {\n isUnique = false;\n break;\n }\n }\n if (isUnique) {\n roles.push(key);\n }\n if (!elementRoleRelation) {\n elementRoles.push([concept, roles]);\n }\n }\n }\n };\n for (var k = 0; k < concepts.length; k++) {\n _loop();\n }\n }\n}\nvar elementRoleMap = {\n entries: function entries() {\n return elementRoles;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i2 = 0, _elementRoles = elementRoles; _i2 < _elementRoles.length; _i2++) {\n var _elementRoles$_i = _slicedToArray(_elementRoles[_i2], 2),\n _key = _elementRoles$_i[0],\n values = _elementRoles$_i[1];\n fn.call(thisArg, values, _key, elementRoles);\n }\n },\n get: function get(key) {\n var item = elementRoles.filter(function (tuple) {\n return key.name === tuple[0].name && ariaRoleRelationConceptAttributeEquals(key.attributes, tuple[0].attributes);\n })[0];\n return item && item[1];\n },\n has: function has(key) {\n return !!elementRoleMap.get(key);\n },\n keys: function keys() {\n return elementRoles.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return elementRoles.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nfunction ariaRoleRelationConceptEquals(a, b) {\n return a.name === b.name && ariaRoleRelationConstraintsEquals(a.constraints, b.constraints) && ariaRoleRelationConceptAttributeEquals(a.attributes, b.attributes);\n}\nfunction ariaRoleRelationConstraintsEquals(a, b) {\n if (a === undefined && b !== undefined) {\n return false;\n }\n if (a !== undefined && b === undefined) {\n return false;\n }\n if (a !== undefined && b !== undefined) {\n if (a.length !== b.length) {\n return false;\n }\n for (var _i3 = 0; _i3 < a.length; _i3++) {\n if (a[_i3] !== b[_i3]) {\n return false;\n }\n }\n }\n return true;\n}\nfunction ariaRoleRelationConceptAttributeEquals(a, b) {\n if (a === undefined && b !== undefined) {\n return false;\n }\n if (a !== undefined && b === undefined) {\n return false;\n }\n if (a !== undefined && b !== undefined) {\n if (a.length !== b.length) {\n return false;\n }\n for (var _i4 = 0; _i4 < a.length; _i4++) {\n if (a[_i4].name !== b[_i4].name || a[_i4].value !== b[_i4].value) {\n return false;\n }\n if (a[_i4].constraints === undefined && b[_i4].constraints !== undefined) {\n return false;\n }\n if (a[_i4].constraints !== undefined && b[_i4].constraints === undefined) {\n return false;\n }\n if (a[_i4].constraints !== undefined && b[_i4].constraints !== undefined) {\n if (a[_i4].constraints.length !== b[_i4].constraints.length) {\n return false;\n }\n for (var j = 0; j < a[_i4].constraints.length; j++) {\n if (a[_i4].constraints[j] !== b[_i4].constraints[j]) {\n return false;\n }\n }\n }\n }\n }\n return true;\n}\nvar _default = exports.default = (0, _iterationDecorator.default)(elementRoleMap, elementRoleMap.entries());", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nvar roleElement = [];\nvar keys = _rolesMap.default.keys();\nfor (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var role = _rolesMap.default.get(key);\n var relationConcepts = [];\n if (role) {\n var concepts = [].concat(role.baseConcepts, role.relatedConcepts);\n for (var k = 0; k < concepts.length; k++) {\n var relation = concepts[k];\n if (relation.module === 'HTML') {\n var concept = relation.concept;\n if (concept != null) {\n relationConcepts.push(concept);\n }\n }\n }\n if (relationConcepts.length > 0) {\n roleElement.push([key, relationConcepts]);\n }\n }\n}\nvar roleElementMap = {\n entries: function entries() {\n return roleElement;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _roleElement = roleElement; _i < _roleElement.length; _i++) {\n var _roleElement$_i = _slicedToArray(_roleElement[_i], 2),\n _key = _roleElement$_i[0],\n values = _roleElement$_i[1];\n fn.call(thisArg, values, _key, roleElement);\n }\n },\n get: function get(key) {\n var item = roleElement.filter(function (tuple) {\n return tuple[0] === key ? true : false;\n })[0];\n return item && item[1];\n },\n has: function has(key) {\n return !!roleElementMap.get(key);\n },\n keys: function keys() {\n return roleElement.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return roleElement.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = exports.default = (0, _iterationDecorator.default)(roleElementMap, roleElementMap.entries());", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.roles = exports.roleElements = exports.elementRoles = exports.dom = exports.aria = void 0;\nvar _ariaPropsMap = _interopRequireDefault(require(\"./ariaPropsMap\"));\nvar _domMap = _interopRequireDefault(require(\"./domMap\"));\nvar _rolesMap = _interopRequireDefault(require(\"./rolesMap\"));\nvar _elementRoleMap = _interopRequireDefault(require(\"./elementRoleMap\"));\nvar _roleElementMap = _interopRequireDefault(require(\"./roleElementMap\"));\nfunction _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }\nvar aria = exports.aria = _ariaPropsMap.default;\nvar dom = exports.dom = _domMap.default;\nvar roles = exports.roles = _rolesMap.default;\nvar elementRoles = exports.elementRoles = _elementRoleMap.default;\nvar roleElements = exports.roleElements = _roleElementMap.default;"], + "mappings": ";;;;;AAAA;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAElB,aAAS,gBAAgB;AACvB,UAAI,SAAS;AACb,UAAI,QAAQ;AACZ,UAAI,OAAO;AAAA,QACT,cAAc,SAAS,WAAW;AAChC,iBAAO;AAAA,QACT;AAAA,QACA,MAAM,SAAS,OAAO;AACpB,cAAI,QAAQ,OAAO,QAAQ;AACzB,gBAAI,QAAQ,OAAO,KAAK;AACxB,oBAAQ,QAAQ;AAChB,mBAAO;AAAA,cACL,MAAM;AAAA,cACN;AAAA,YACF;AAAA,UACF,OAAO;AACL,mBAAO;AAAA,cACL,MAAM;AAAA,YACR;AAAA,UACF;AAAA,QACF;AAAA,MACF;AACA,aAAO;AAAA,IACT;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC/BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB,uBAAuB,uBAA0B;AACtE,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,QAAQ,GAAG;AAAE;AAA2B,aAAO,UAAU,cAAc,OAAO,UAAU,YAAY,OAAO,OAAO,WAAW,SAAUA,IAAG;AAAE,eAAO,OAAOA;AAAA,MAAG,IAAI,SAAUA,IAAG;AAAE,eAAOA,MAAK,cAAc,OAAO,UAAUA,GAAE,gBAAgB,UAAUA,OAAM,OAAO,YAAY,WAAW,OAAOA;AAAA,MAAG,GAAG,QAAQ,CAAC;AAAA,IAAG;AAC7T,aAAS,mBAAmB,YAAY,SAAS;AAC/C,UAAI,OAAO,WAAW,cAAc,QAAQ,OAAO,QAAQ,MAAM,UAAU;AACzE,eAAO,eAAe,YAAY,OAAO,UAAU;AAAA,UACjD,OAAO,eAAe,QAAQ,KAAK,OAAO;AAAA,QAC5C,CAAC;AAAA,MACH;AACA,aAAO;AAAA,IACT;AAAA;AAAA;;;AChBA;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,eAAe,GAAG,GAAG;AAAE,aAAO,gBAAgB,CAAC,KAAK,sBAAsB,GAAG,CAAC,KAAK,4BAA4B,GAAG,CAAC,KAAK,iBAAiB;AAAA,IAAG;AACrJ,aAAS,mBAAmB;AAAE,YAAM,IAAI,UAAU,2IAA2I;AAAA,IAAG;AAChM,aAAS,4BAA4B,GAAG,GAAG;AAAE,UAAI,GAAG;AAAE,YAAI,YAAY,OAAO,EAAG,QAAO,kBAAkB,GAAG,CAAC;AAAG,YAAI,IAAI,CAAC,EAAE,SAAS,KAAK,CAAC,EAAE,MAAM,GAAG,EAAE;AAAG,eAAO,aAAa,KAAK,EAAE,gBAAgB,IAAI,EAAE,YAAY,OAAO,UAAU,KAAK,UAAU,IAAI,MAAM,KAAK,CAAC,IAAI,gBAAgB,KAAK,2CAA2C,KAAK,CAAC,IAAI,kBAAkB,GAAG,CAAC,IAAI;AAAA,MAAQ;AAAA,IAAE;AACzX,aAAS,kBAAkB,GAAG,GAAG;AAAE,OAAC,QAAQ,KAAK,IAAI,EAAE,YAAY,IAAI,EAAE;AAAS,eAAS,IAAI,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,GAAG,IAAK,GAAE,CAAC,IAAI,EAAE,CAAC;AAAG,aAAO;AAAA,IAAG;AACnJ,aAAS,sBAAsB,GAAG,GAAG;AAAE,UAAI,IAAI,QAAQ,IAAI,OAAO,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,QAAQ,GAAG;AAAE,YAAI,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,MAAI,IAAI;AAAI,YAAI;AAAE,cAAI,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,MAAM,MAAM,GAAG;AAAE,gBAAI,OAAO,CAAC,MAAM,EAAG;AAAQ,gBAAI;AAAA,UAAI,MAAO,QAAO,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,WAAW,IAAI,IAAI,KAAG;AAAA,QAAE,SAASC,IAAG;AAAE,cAAI,MAAI,IAAIA;AAAA,QAAG,UAAE;AAAU,cAAI;AAAE,gBAAI,CAAC,KAAK,QAAQ,EAAE,WAAW,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAI;AAAA,UAAQ,UAAE;AAAU,gBAAI,EAAG,OAAM;AAAA,UAAG;AAAA,QAAE;AAAE,eAAO;AAAA,MAAG;AAAA,IAAE;AACnhB,aAAS,gBAAgB,GAAG;AAAE,UAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAAA,IAAG;AAC9D,QAAI,aAAa,CAAC,CAAC,yBAAyB;AAAA,MAC1C,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,eAAe;AAAA,MAClB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,qBAAqB;AAAA,MACxB,QAAQ;AAAA,MACR,UAAU,CAAC,UAAU,QAAQ,QAAQ,MAAM;AAAA,IAC7C,CAAC,GAAG,CAAC,qBAAqB;AAAA,MACxB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,+BAA+B;AAAA,MAClC,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,aAAa;AAAA,MAChB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,MAAM;AAAA,MACN,QAAQ,CAAC,QAAQ,QAAQ,YAAY,QAAQ,QAAQ,MAAM,KAAK;AAAA,IAClE,CAAC,GAAG,CAAC,oBAAoB;AAAA,MACvB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,oBAAoB;AAAA,MACvB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,mBAAmB;AAAA,MACtB,QAAQ;AAAA,MACR,UAAU,CAAC,QAAQ,WAAW,QAAQ,QAAQ,QAAQ,OAAO;AAAA,IAC/D,CAAC,GAAG,CAAC,qBAAqB;AAAA,MACxB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,MACR,kBAAkB;AAAA,IACpB,CAAC,GAAG,CAAC,eAAe;AAAA,MAClB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,MACR,kBAAkB;AAAA,IACpB,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,MACR,UAAU,CAAC,OAAO,MAAM,QAAQ,WAAW,QAAQ,QAAQ,QAAQ;AAAA,IACrE,CAAC,GAAG,CAAC,eAAe;AAAA,MAClB,QAAQ;AAAA,MACR,kBAAkB;AAAA,IACpB,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,MACR,UAAU,CAAC,WAAW,OAAO,YAAY,IAAI;AAAA,IAC/C,CAAC,GAAG,CAAC,qBAAqB;AAAA,MACxB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,cAAc;AAAA,MACjB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,mBAAmB;AAAA,MACtB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,cAAc;AAAA,MACjB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,aAAa;AAAA,MAChB,QAAQ;AAAA,MACR,UAAU,CAAC,aAAa,OAAO,QAAQ;AAAA,IACzC,CAAC,GAAG,CAAC,cAAc;AAAA,MACjB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,kBAAkB;AAAA,MACrB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,wBAAwB;AAAA,MAC3B,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,oBAAoB;AAAA,MACvB,QAAQ;AAAA,MACR,UAAU,CAAC,YAAY,aAAa,YAAY;AAAA,IAClD,CAAC,GAAG,CAAC,aAAa;AAAA,MAChB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,oBAAoB;AAAA,MACvB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,MACR,UAAU,CAAC,aAAa,OAAO,YAAY,MAAM;AAAA,IACnD,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,wBAAwB;AAAA,MAC3B,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,MAAM;AAAA,IACR,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,MACR,kBAAkB;AAAA,IACpB,CAAC,GAAG,CAAC,gBAAgB;AAAA,MACnB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,aAAa;AAAA,MAChB,QAAQ;AAAA,MACR,UAAU,CAAC,aAAa,cAAc,QAAQ,OAAO;AAAA,IACvD,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,iBAAiB;AAAA,MACpB,QAAQ;AAAA,IACV,CAAC,GAAG,CAAC,kBAAkB;AAAA,MACrB,QAAQ;AAAA,IACV,CAAC,CAAC;AACF,QAAI,eAAe;AAAA,MACjB,SAAS,SAAS,UAAU;AAC1B,eAAO;AAAA,MACT;AAAA,MACA,SAAS,SAAS,QAAQ,IAAI;AAC5B,YAAI,UAAU,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAY,UAAU,CAAC,IAAI;AAClF,iBAAS,KAAK,GAAG,cAAc,YAAY,KAAK,YAAY,QAAQ,MAAM;AACxE,cAAI,iBAAiB,eAAe,YAAY,EAAE,GAAG,CAAC,GACpD,MAAM,eAAe,CAAC,GACtB,SAAS,eAAe,CAAC;AAC3B,aAAG,KAAK,SAAS,QAAQ,KAAK,UAAU;AAAA,QAC1C;AAAA,MACF;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,YAAI,OAAO,WAAW,OAAO,SAAU,OAAO;AAC5C,iBAAO,MAAM,CAAC,MAAM,MAAM,OAAO;AAAA,QACnC,CAAC,EAAE,CAAC;AACJ,eAAO,QAAQ,KAAK,CAAC;AAAA,MACvB;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,eAAO,CAAC,CAAC,aAAa,IAAI,GAAG;AAAA,MAC/B;AAAA,MACA,MAAM,SAAS,OAAO;AACpB,eAAO,WAAW,IAAI,SAAU,MAAM;AACpC,cAAI,QAAQ,eAAe,MAAM,CAAC,GAChC,MAAM,MAAM,CAAC;AACf,iBAAO;AAAA,QACT,CAAC;AAAA,MACH;AAAA,MACA,QAAQ,SAAS,SAAS;AACxB,eAAO,WAAW,IAAI,SAAU,OAAO;AACrC,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjCC,UAAS,MAAM,CAAC;AAClB,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,WAAW,QAAQ,WAAW,GAAG,oBAAoB,SAAS,cAAc,aAAa,QAAQ,CAAC;AAAA;AAAA;;;ACvKtG;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,eAAe,GAAG,GAAG;AAAE,aAAO,gBAAgB,CAAC,KAAK,sBAAsB,GAAG,CAAC,KAAK,4BAA4B,GAAG,CAAC,KAAK,iBAAiB;AAAA,IAAG;AACrJ,aAAS,mBAAmB;AAAE,YAAM,IAAI,UAAU,2IAA2I;AAAA,IAAG;AAChM,aAAS,4BAA4B,GAAG,GAAG;AAAE,UAAI,GAAG;AAAE,YAAI,YAAY,OAAO,EAAG,QAAO,kBAAkB,GAAG,CAAC;AAAG,YAAI,IAAI,CAAC,EAAE,SAAS,KAAK,CAAC,EAAE,MAAM,GAAG,EAAE;AAAG,eAAO,aAAa,KAAK,EAAE,gBAAgB,IAAI,EAAE,YAAY,OAAO,UAAU,KAAK,UAAU,IAAI,MAAM,KAAK,CAAC,IAAI,gBAAgB,KAAK,2CAA2C,KAAK,CAAC,IAAI,kBAAkB,GAAG,CAAC,IAAI;AAAA,MAAQ;AAAA,IAAE;AACzX,aAAS,kBAAkB,GAAG,GAAG;AAAE,OAAC,QAAQ,KAAK,IAAI,EAAE,YAAY,IAAI,EAAE;AAAS,eAAS,IAAI,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,GAAG,IAAK,GAAE,CAAC,IAAI,EAAE,CAAC;AAAG,aAAO;AAAA,IAAG;AACnJ,aAAS,sBAAsB,GAAG,GAAG;AAAE,UAAI,IAAI,QAAQ,IAAI,OAAO,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,QAAQ,GAAG;AAAE,YAAI,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,MAAI,IAAI;AAAI,YAAI;AAAE,cAAI,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,MAAM,MAAM,GAAG;AAAE,gBAAI,OAAO,CAAC,MAAM,EAAG;AAAQ,gBAAI;AAAA,UAAI,MAAO,QAAO,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,WAAW,IAAI,IAAI,KAAG;AAAA,QAAE,SAASC,IAAG;AAAE,cAAI,MAAI,IAAIA;AAAA,QAAG,UAAE;AAAU,cAAI;AAAE,gBAAI,CAAC,KAAK,QAAQ,EAAE,WAAW,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAI;AAAA,UAAQ,UAAE;AAAU,gBAAI,EAAG,OAAM;AAAA,UAAG;AAAA,QAAE;AAAE,eAAO;AAAA,MAAG;AAAA,IAAE;AACnhB,aAAS,gBAAgB,GAAG;AAAE,UAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAAA,IAAG;AAC9D,QAAI,MAAM,CAAC,CAAC,KAAK;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,cAAc;AAAA,MACjB,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,cAAc;AAAA,MACjB,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,UAAU;AAAA,MACb,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,WAAW;AAAA,MACd,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,YAAY;AAAA,MACf,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,QAAQ;AAAA,MACX,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,KAAK;AAAA,MACR,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,MAAM;AAAA,MACT,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,SAAS;AAAA,MACZ,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,GAAG,CAAC,OAAO;AAAA,MACV,UAAU;AAAA,IACZ,CAAC,CAAC;AACF,QAAI,SAAS;AAAA,MACX,SAAS,SAAS,UAAU;AAC1B,eAAO;AAAA,MACT;AAAA,MACA,SAAS,SAAS,QAAQ,IAAI;AAC5B,YAAI,UAAU,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAY,UAAU,CAAC,IAAI;AAClF,iBAAS,KAAK,GAAG,OAAO,KAAK,KAAK,KAAK,QAAQ,MAAM;AACnD,cAAI,UAAU,eAAe,KAAK,EAAE,GAAG,CAAC,GACtC,MAAM,QAAQ,CAAC,GACf,SAAS,QAAQ,CAAC;AACpB,aAAG,KAAK,SAAS,QAAQ,KAAK,GAAG;AAAA,QACnC;AAAA,MACF;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,YAAI,OAAO,IAAI,OAAO,SAAU,OAAO;AACrC,iBAAO,MAAM,CAAC,MAAM,MAAM,OAAO;AAAA,QACnC,CAAC,EAAE,CAAC;AACJ,eAAO,QAAQ,KAAK,CAAC;AAAA,MACvB;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,eAAO,CAAC,CAAC,OAAO,IAAI,GAAG;AAAA,MACzB;AAAA,MACA,MAAM,SAAS,OAAO;AACpB,eAAO,IAAI,IAAI,SAAU,MAAM;AAC7B,cAAI,QAAQ,eAAe,MAAM,CAAC,GAChC,MAAM,MAAM,CAAC;AACf,iBAAO;AAAA,QACT,CAAC;AAAA,MACH;AAAA,MACA,QAAQ,SAAS,SAAS;AACxB,eAAO,IAAI,IAAI,SAAU,OAAO;AAC9B,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjCC,UAAS,MAAM,CAAC;AAClB,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,WAAW,QAAQ,WAAW,GAAG,oBAAoB,SAAS,QAAQ,OAAO,QAAQ,CAAC;AAAA;AAAA;;;ACtT1F;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,QAAQ,CAAC;AAAA,IACrC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,yBAAyB;AAAA,QACzB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,QAAQ,CAAC;AAAA,IACrC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACxBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,QAAQ,CAAC;AAAA,IACrC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACzBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC;AAAA,MACX,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,eAAe;AAAA,QACf,aAAa;AAAA,QACb,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,oBAAoB;AAAA,QACpB,gBAAgB;AAAA,QAChB,mBAAmB;AAAA,QACnB,eAAe;AAAA,QACf,gBAAgB;AAAA,QAChB,eAAe;AAAA,QACf,qBAAqB;AAAA,QACrB,cAAc;AAAA,QACd,mBAAmB;AAAA,QACnB,aAAa;AAAA,QACb,aAAa;AAAA,QACb,iBAAiB;AAAA,QACjB,wBAAwB;AAAA,MAC1B;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC;AAAA,IACf;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACjDjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC;AAAA,MACX,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,GAAG,CAAC,YAAY,aAAa,WAAW,OAAO,CAAC;AAAA,IACjG;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACvBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC;AAAA,MACX,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,UAAU,CAAC;AAAA,IAC3B;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC;AAAA,MACX,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,UAAU,CAAC;AAAA,IAC3B;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,cAAc;AAAA,MAChB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,UAAU,CAAC;AAAA,IAC3B;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACvBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe,uBAAuB,qBAAiC;AAC3E,QAAI,iBAAiB,uBAAuB,uBAAmC;AAC/E,QAAI,aAAa,uBAAuB,mBAA+B;AACvE,QAAI,gBAAgB,uBAAuB,sBAAkC;AAC7E,QAAI,aAAa,uBAAuB,mBAA+B;AACvE,QAAI,gBAAgB,uBAAuB,sBAAkC;AAC7E,QAAI,eAAe,uBAAuB,qBAAiC;AAC3E,QAAI,mBAAmB,uBAAuB,yBAAqC;AACnF,QAAI,cAAc,uBAAuB,oBAAgC;AACzE,QAAI,iBAAiB,uBAAuB,uBAAmC;AAC/E,QAAI,cAAc,uBAAuB,oBAAgC;AACzE,QAAI,cAAc,uBAAuB,oBAAgC;AACzE,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,QAAI,oBAAoB,CAAC,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,CAAC;AACjc,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,eAAe;AAAA,QACf,aAAa;AAAA,MACf;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,OAAO,GAAG,CAAC,YAAY,UAAU,QAAQ,CAAC;AAAA,IAC9F;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,yBAAyB;AAAA,QACzB,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,UAAU,CAAC;AAAA,IACpD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,4BAA4B;AAAA,UAC1C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,CAAC;AAAA,IAChD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACxEjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,UAAU,QAAQ,OAAO;AAAA,MAC9C,qBAAqB,CAAC,UAAU,QAAQ,OAAO;AAAA,MAC/C,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,uCAAuC;AAAA,UACrD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,KAAK;AAAA,MAC1B,qBAAqB,CAAC,KAAK;AAAA,MAC3B,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,gBAAgB;AAAA,QAChB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,gBAAgB;AAAA,MAClB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,CAAC;AAAA,IAC9C;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,aAAa;AAAA,MACf;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,KAAK;AAAA,MAC1B,qBAAqB,CAAC,KAAK;AAAA,MAC3B,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,GAAG,CAAC,YAAY,aAAa,WAAW,QAAQ,UAAU,GAAG,CAAC,YAAY,UAAU,UAAU,GAAG,CAAC,YAAY,aAAa,aAAa,CAAC;AAAA,IACnM;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,yBAAyB;AAAA,QACzB,qBAAqB;AAAA,QACrB,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,aAAa,CAAC,+FAA+F;AAAA,UAC7G,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,CAAC;AAAA,IAC9C;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3HjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,8BAA8B,4BAA4B;AAAA,UACxE,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,aAAa,CAAC,0CAA0C,qDAAqD;AAAA,UAC7G,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,aAAa,CAAC,0CAA0C,qDAAqD;AAAA,UAC7G,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC/CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,4BAA4B;AAAA,UAC1C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,QAAQ,CAAC;AAAA,IACrC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,CAAC;AAAA,IAC3D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACvBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,SAAS,CAAC;AAAA,MACnC,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,CAAC;AAAA,IAC3D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChDjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,aAAa,CAAC,8BAA8B,0CAA0C,qDAAqD;AAAA,UAC3I,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,aAAa,CAAC,8BAA8B,0CAA0C,qDAAqD;AAAA,UAC3I,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACtHjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,wBAAwB;AAAA,QACxB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,KAAK,GAAG,CAAC,OAAO,UAAU,CAAC;AAAA,MACpD,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,GAAG,CAAC,YAAY,aAAa,WAAW,OAAO,CAAC;AAAA,IACjG;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACxBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,wCAAwC,0CAA0C;AAAA,UAChG,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,KAAK;AAAA,MAC1B,qBAAqB,CAAC,KAAK;AAAA,MAC3B,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,GAAG,CAAC,YAAY,QAAQ,CAAC;AAAA,IACnF;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,yBAAyB;AAAA,QACzB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,cAAc;AAAA,MAChB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,cAAc;AAAA,MAChB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,aAAa,aAAa,CAAC;AAAA,IACvD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACvDjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,UAAU;AAAA,MACZ,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,CAAC;AAAA,IAChD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,UAAU,CAAC;AAAA,MACpC,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,wBAAwB;AAAA,QACxB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,IAAI;AAAA,YAClB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,aAAa,CAAC,4CAA4C;AAAA,UAC1D,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,UAAU,OAAO,GAAG,CAAC,QAAQ,CAAC;AAAA,MACvD,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,QAAQ,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,QAAQ,CAAC;AAAA,IACrH;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9DjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,cAAc;AAAA,QACd,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,aAAa,CAAC,2BAA2B,2BAA2B,2BAA2B;AAAA,UAC/F,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,aAAa,MAAM;AAAA,MACxC,qBAAqB,CAAC,aAAa,MAAM;AAAA,MACzC,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,UAAU;AAAA,MACZ,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,aAAa;AAAA,MACf;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACvBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,+BAA+B;AAAA,QAC/B,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,YAAY,OAAO,GAAG,CAAC,iBAAiB,OAAO,GAAG,CAAC,oBAAoB,OAAO,GAAG,CAAC,UAAU,GAAG,CAAC,kBAAkB,GAAG,CAAC,eAAe,CAAC;AAAA,MAC/J,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,QAAQ,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,QAAQ,CAAC;AAAA,IACrH;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,YAAY,OAAO,GAAG,CAAC,iBAAiB,OAAO,GAAG,CAAC,oBAAoB,OAAO,GAAG,CAAC,UAAU,GAAG,CAAC,kBAAkB,GAAG,CAAC,eAAe,CAAC;AAAA,MAC/J,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,UAAU,MAAM,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,UAAU,MAAM,CAAC;AAAA,IACrI;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAC/C,qBAAqB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAChD,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,CAAC;AAAA,IAChD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,uBAAuB;AAAA,MACzB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAC/C,qBAAqB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAChD,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,gBAAgB;AAAA,MAClB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,UAAU,GAAG,CAAC,YAAY,UAAU,WAAW,UAAU,CAAC;AAAA,IACzG;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAC/C,qBAAqB,CAAC,SAAS,QAAQ,SAAS;AAAA,MAChD,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,gBAAgB;AAAA,MAClB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,YAAY,kBAAkB,GAAG,CAAC,YAAY,UAAU,WAAW,YAAY,kBAAkB,GAAG,CAAC,YAAY,UAAU,SAAS,OAAO,CAAC;AAAA,IAC3L;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,kBAAkB;AAAA,QAClB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,aAAa,OAAO,CAAC;AAAA,IACjD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC;AAAA,MACX,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC;AAAA,IACf;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,CAAC;AAAA,IAC9C;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,kBAAkB;AAAA,MACpB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,OAAO,GAAG,CAAC,YAAY,QAAQ,CAAC;AAAA,IACzE;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACjCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,gBAAgB;AAAA,MAClB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,CAAC;AAAA,IAC9C;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,OAAO,CAAC;AAAA,MACjC,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,QAAQ,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,QAAQ,CAAC;AAAA,IACrH;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC/BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,KAAK;AAAA,YACnB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,UAAU;AAAA,MACZ,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,cAAc;AAAA,QACd,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,QAAQ,YAAY,SAAS,UAAU;AAAA,MAC5D,qBAAqB,CAAC,QAAQ,YAAY,SAAS,UAAU;AAAA,MAC7D,uBAAuB,CAAC,CAAC,MAAM,GAAG,CAAC,cAAc,GAAG,CAAC,UAAU,GAAG,CAAC,WAAW,CAAC;AAAA,MAC/E,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,OAAO,GAAG,CAAC,YAAY,QAAQ,CAAC;AAAA,IACpF;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AClCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,QAAQ,SAAS,UAAU;AAAA,MAChD,qBAAqB,CAAC,QAAQ,SAAS,UAAU;AAAA,MACjD,uBAAuB,CAAC,CAAC,KAAK,CAAC;AAAA,MAC/B,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACpCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,aAAa;AAAA,MACf;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,OAAO,UAAU;AAAA,MACtC,qBAAqB,CAAC,OAAO,UAAU;AAAA,MACvC,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,GAAG,CAAC,YAAY,aAAa,WAAW,QAAQ,UAAU,GAAG,CAAC,YAAY,UAAU,UAAU,GAAG,CAAC,YAAY,aAAa,aAAa,CAAC;AAAA,IACnM;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACzCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,kBAAkB;AAAA,QAClB,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,aAAa,OAAO,GAAG,CAAC,YAAY,QAAQ,CAAC;AAAA,IACzE;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,SAAS,CAAC;AAAA,IACzD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AClCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,kBAAkB;AAAA,MACpB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,WAAW,CAAC;AAAA,IACxC;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACjCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,kBAAkB;AAAA,QAClB,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,GAAG,CAAC,YAAY,aAAa,OAAO,CAAC;AAAA,IAClF;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACzCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,kBAAkB;AAAA,QAClB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,GAAG,CAAC,YAAY,UAAU,OAAO,GAAG,CAAC,YAAY,aAAa,OAAO,CAAC;AAAA,IACvH;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,eAAe;AAAA,QACf,aAAa;AAAA,MACf;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC,cAAc,iBAAiB;AAAA,MACjD,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,gBAAgB;AAAA,MAClB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,UAAU,SAAS,UAAU,CAAC;AAAA,IAC1D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,UAAU;AAAA,MACZ,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC,SAAS;AAAA,MAC9B,qBAAqB,CAAC,SAAS;AAAA,MAC/B,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,aAAa,GAAG,CAAC,YAAY,QAAQ,CAAC;AAAA,IAC/E;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,KAAK,GAAG,CAAC,OAAO,UAAU,CAAC;AAAA,MACpD,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,cAAc;AAAA,QACd,wBAAwB;AAAA,QACxB,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,KAAK,CAAC;AAAA,MAC/B,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,CAAC;AAAA,IAClD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC/BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,yBAAyB;AAAA,QACzB,qBAAqB;AAAA,QACrB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,QAChB,kBAAkB;AAAA,QAClB,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,YAAY,CAAC;AAAA,YACX,aAAa,CAAC,WAAW;AAAA,YACzB,MAAM;AAAA,UACR,GAAG;AAAA,YACD,MAAM;AAAA,YACN,OAAO;AAAA,UACT,CAAC;AAAA,UACD,aAAa,CAAC,+BAA+B;AAAA,UAC7C,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,GAAG;AAAA,QACD,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,OAAO,CAAC;AAAA,IAC9C;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1GjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,YAAY;AAAA,MACd,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,QAAQ,CAAC;AAAA,IAC7D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,OAAO,CAAC;AAAA,IAC5D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC5BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,WAAW;AAAA,MACb,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,QAChB,wBAAwB;AAAA,QACxB,iBAAiB;AAAA,QACjB,oBAAoB;AAAA,MACtB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,YAAY,OAAO,GAAG,CAAC,UAAU,CAAC;AAAA,MAC3D,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,QAAQ,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,QAAQ,CAAC;AAAA,IACrH;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,KAAK,GAAG,CAAC,OAAO,UAAU,CAAC;AAAA,MACpD,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,aAAa,MAAM,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,MAAM,GAAG,CAAC,YAAY,UAAU,aAAa,UAAU,MAAM,GAAG,CAAC,YAAY,aAAa,WAAW,SAAS,UAAU,MAAM,CAAC;AAAA,IACzO;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACrBjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,MACnB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC,SAAS,MAAM;AAAA,MACpC,qBAAqB,CAAC,SAAS,MAAM;AAAA,MACrC,uBAAuB,CAAC;AAAA,MACxB,eAAe;AAAA,QACb,iBAAiB;AAAA,MACnB;AAAA,MACA,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,GAAG,CAAC,YAAY,UAAU,SAAS,QAAQ,CAAC;AAAA,IAC1G;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,mBAAmB,uBAAuB,yBAAoC;AAClF,QAAI,mBAAmB,uBAAuB,yBAAoC;AAClF,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,kBAAkB,uBAAuB,wBAAmC;AAChF,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,oBAAoB,uBAAuB,0BAAqC;AACpF,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,qBAAqB,uBAAuB,2BAAsC;AACtF,QAAI,mBAAmB,uBAAuB,yBAAoC;AAClF,QAAI,kBAAkB,uBAAuB,wBAAmC;AAChF,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,WAAW,uBAAuB,iBAA4B;AAClE,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,WAAW,uBAAuB,iBAA4B;AAClE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,wBAAwB,uBAAuB,8BAAyC;AAC5F,QAAI,qBAAqB,uBAAuB,2BAAsC;AACtF,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,kBAAkB,uBAAuB,wBAAmC;AAChF,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,oBAAoB,uBAAuB,0BAAqC;AACpF,QAAI,mBAAmB,uBAAuB,yBAAoC;AAClF,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,kBAAkB,uBAAuB,wBAAmC;AAChF,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,WAAW,uBAAuB,iBAA4B;AAClE,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,kBAAkB,uBAAuB,wBAAmC;AAChF,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,iBAAiB,uBAAuB,uBAAkC;AAC9E,QAAI,mBAAmB,uBAAuB,yBAAoC;AAClF,QAAI,cAAc,uBAAuB,oBAA+B;AACxE,QAAI,WAAW,uBAAuB,iBAA4B;AAClE,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,aAAa,uBAAuB,mBAA8B;AACtE,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,eAAe,uBAAuB,qBAAgC;AAC1E,QAAI,YAAY,uBAAuB,kBAA6B;AACpE,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,QAAI,gBAAgB,uBAAuB,sBAAiC;AAC5E,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,QAAI,mBAAmB,CAAC,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,cAAc,gBAAgB,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,gBAAgB,kBAAkB,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,iBAAiB,mBAAmB,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,cAAc,gBAAgB,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,OAAO,SAAS,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,OAAO,SAAS,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,oBAAoB,sBAAsB,OAAO,GAAG,CAAC,iBAAiB,mBAAmB,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,cAAc,gBAAgB,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,gBAAgB,kBAAkB,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,cAAc,gBAAgB,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,OAAO,SAAS,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,cAAc,gBAAgB,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,aAAa,eAAe,OAAO,GAAG,CAAC,eAAe,iBAAiB,OAAO,GAAG,CAAC,UAAU,YAAY,OAAO,GAAG,CAAC,OAAO,SAAS,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,SAAS,WAAW,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,WAAW,aAAa,OAAO,GAAG,CAAC,QAAQ,UAAU,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,GAAG,CAAC,YAAY,cAAc,OAAO,CAAC;AAC73F,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3FjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,yBAAyB;AAAA,MAC3B,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,MAAM,CAAC;AAAA,IACxD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,qBAAqB;AAAA,MACvB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,kBAAkB;AAAA,MACvC,qBAAqB,CAAC,kBAAkB;AAAA,MACxC,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB;AAAA,MACxB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,iBAAiB,CAAC;AAAA,MAC3C,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,MAAM,CAAC;AAAA,IACxD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,KAAK,CAAC;AAAA,IAC1D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC,cAAc;AAAA,MACnC,qBAAqB,CAAC,cAAc;AAAA,MACpC,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,aAAa,CAAC;AAAA,MACvC,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC,CAAC,YAAY,GAAG,CAAC,MAAM,CAAC;AAAA,MAChD,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,MAAM,CAAC;AAAA,IACxD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,eAAe;AAAA,MACjB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,YAAY,YAAY,CAAC;AAAA,IAC7E;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB;AAAA,MACxB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,UAAU,WAAW,MAAM,CAAC;AAAA,IACxD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,gBAAgB;AAAA,MAClB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,CAAC;AAAA,IAC3D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,CAAC;AAAA,IACrD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC/BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,+BAA+B;AAAA,QAC/B,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,oBAAoB;AAAA,MACtB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,YAAY;AAAA,MACvB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,+BAA+B;AAAA,QAC/B,oBAAoB;AAAA,QACpB,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC7BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,YAAY,YAAY,CAAC;AAAA,IAC7E;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,cAAc;AAAA,MAChB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,iBAAiB;AAAA,MACnB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,UAAU,CAAC;AAAA,IAC/D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB;AAAA,MACrB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO,CAAC;AAAA,MACR,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,MAAM,CAAC;AAAA,IACvB;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,SAAS,CAAC;AAAA,IACnD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,kBAAkB;AAAA,MACpB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,aAAa,CAAC;AAAA,IACvD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,MAAM,CAAC;AAAA,IAC3D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,aAAa;AAAA,MACf,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,QACA,QAAQ;AAAA,MACV,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,YAAY,YAAY,CAAC;AAAA,IAC7E;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AChCjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,0BAA0B,uBAAuB,gCAAwC;AAC7F,QAAI,oBAAoB,uBAAuB,0BAAkC;AACjF,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,QAAI,uBAAuB,uBAAuB,6BAAqC;AACvF,QAAI,oBAAoB,uBAAuB,0BAAkC;AACjF,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,qBAAqB,uBAAuB,2BAAmC;AACnF,QAAI,gBAAgB,uBAAuB,sBAA8B;AACzE,QAAI,iBAAiB,uBAAuB,uBAA+B;AAC3E,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,qBAAqB,uBAAuB,2BAAmC;AACnF,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,iBAAiB,uBAAuB,uBAA+B;AAC3E,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,gBAAgB,uBAAuB,sBAA8B;AACzE,QAAI,uBAAuB,uBAAuB,6BAAqC;AACvF,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,iBAAiB,uBAAuB,uBAA+B;AAC3E,QAAI,oBAAoB,uBAAuB,0BAAkC;AACjF,QAAI,qBAAqB,uBAAuB,2BAAmC;AACnF,QAAI,qBAAqB,uBAAuB,2BAAmC;AACnF,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,eAAe,uBAAuB,qBAA6B;AACvE,QAAI,kBAAkB,uBAAuB,wBAAgC;AAC7E,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,oBAAoB,uBAAuB,0BAAkC;AACjF,QAAI,cAAc,uBAAuB,oBAA4B;AACrE,QAAI,mBAAmB,uBAAuB,yBAAiC;AAC/E,QAAI,cAAc,uBAAuB,oBAA4B;AACrE,QAAI,cAAc,uBAAuB,oBAA4B;AACrE,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,QAAI,gBAAgB,CAAC,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,uBAAuB,wBAAwB,OAAO,GAAG,CAAC,iBAAiB,kBAAkB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,mBAAmB,oBAAoB,OAAO,GAAG,CAAC,oBAAoB,qBAAqB,OAAO,GAAG,CAAC,iBAAiB,kBAAkB,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,kBAAkB,mBAAmB,OAAO,GAAG,CAAC,aAAa,cAAc,OAAO,GAAG,CAAC,cAAc,eAAe,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,kBAAkB,mBAAmB,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,cAAc,eAAe,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,aAAa,cAAc,OAAO,GAAG,CAAC,oBAAoB,qBAAqB,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,cAAc,eAAe,OAAO,GAAG,CAAC,iBAAiB,kBAAkB,OAAO,GAAG,CAAC,kBAAkB,mBAAmB,OAAO,GAAG,CAAC,kBAAkB,mBAAmB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,YAAY,aAAa,OAAO,GAAG,CAAC,eAAe,gBAAgB,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,iBAAiB,kBAAkB,OAAO,GAAG,CAAC,WAAW,YAAY,OAAO,GAAG,CAAC,gBAAgB,iBAAiB,OAAO,GAAG,CAAC,WAAW,YAAY,OAAO,GAAG,CAAC,WAAW,YAAY,OAAO,CAAC;AACjxD,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACjDjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,uBAAuB;AAAA,MACzB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,UAAU,CAAC;AAAA,IACpD;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC1CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,qBAAqB;AAAA,MACvB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,UAAU,UAAU;AAAA,MAC/B,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,QAChB,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,GAAG;AAAA,QACD,QAAQ;AAAA,QACR,SAAS;AAAA,UACP,MAAM;AAAA,QACR;AAAA,MACF,CAAC;AAAA,MACD,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,OAAO,CAAC;AAAA,IAC5D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC9CjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,qBAAqB;AAAA,MACvB,UAAU;AAAA,MACV,wBAAwB;AAAA,MACxB,cAAc,CAAC;AAAA,MACf,wBAAwB;AAAA,MACxB,UAAU,CAAC,QAAQ;AAAA,MACnB,iBAAiB,CAAC;AAAA,MAClB,OAAO;AAAA,QACL,iBAAiB;AAAA,QACjB,qBAAqB;AAAA,QACrB,iBAAiB;AAAA,QACjB,iBAAiB;AAAA,QACjB,gBAAgB;AAAA,MAClB;AAAA,MACA,iBAAiB,CAAC;AAAA,MAClB,oBAAoB,CAAC;AAAA,MACrB,qBAAqB,CAAC;AAAA,MACtB,uBAAuB,CAAC;AAAA,MACxB,eAAe,CAAC;AAAA,MAChB,YAAY,CAAC,CAAC,YAAY,aAAa,WAAW,KAAK,CAAC;AAAA,IAC1D;AACA,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;AC3BjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,wBAAwB,uBAAuB,8BAA0C;AAC7F,QAAI,sBAAsB,uBAAuB,4BAAwC;AACzF,QAAI,sBAAsB,uBAAuB,4BAAwC;AACzF,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,QAAI,oBAAoB,CAAC,CAAC,qBAAqB,sBAAsB,OAAO,GAAG,CAAC,mBAAmB,oBAAoB,OAAO,GAAG,CAAC,mBAAmB,oBAAoB,OAAO,CAAC;AACjL,QAAI,WAAW,QAAQ,UAAU;AAAA;AAAA;;;ACXjC;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,qBAAqB,uBAAuB,2BAAwC;AACxF,QAAI,oBAAoB,uBAAuB,0BAAuC;AACtF,QAAI,iBAAiB,uBAAuB,uBAAoC;AAChF,QAAI,qBAAqB,uBAAuB,2BAAwC;AACxF,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,2BAA2B,GAAG,GAAG;AAAE,UAAI,IAAI,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,CAAC,GAAG;AAAE,YAAI,MAAM,QAAQ,CAAC,MAAM,IAAI,4BAA4B,CAAC,MAAM,KAAK,KAAK,YAAY,OAAO,EAAE,QAAQ;AAAE,gBAAM,IAAI;AAAI,cAAI,KAAK,GAAG,IAAI,SAASC,KAAI;AAAA,UAAC;AAAG,iBAAO,EAAE,GAAG,GAAG,GAAG,SAAS,IAAI;AAAE,mBAAO,MAAM,EAAE,SAAS,EAAE,MAAM,KAAG,IAAI,EAAE,MAAM,OAAI,OAAO,EAAE,IAAI,EAAE;AAAA,UAAG,GAAG,GAAG,SAASC,GAAEC,IAAG;AAAE,kBAAMA;AAAA,UAAG,GAAG,GAAG,EAAE;AAAA,QAAG;AAAE,cAAM,IAAI,UAAU,uIAAuI;AAAA,MAAG;AAAE,UAAI,GAAG,IAAI,MAAI,IAAI;AAAI,aAAO,EAAE,GAAG,SAAS,IAAI;AAAE,YAAI,EAAE,KAAK,CAAC;AAAA,MAAG,GAAG,GAAG,SAAS,IAAI;AAAE,YAAIA,KAAI,EAAE,KAAK;AAAG,eAAO,IAAIA,GAAE,MAAMA;AAAA,MAAG,GAAG,GAAG,SAASD,GAAEC,IAAG;AAAE,YAAI,MAAI,IAAIA;AAAA,MAAG,GAAG,GAAG,SAAS,IAAI;AAAE,YAAI;AAAE,eAAK,QAAQ,EAAE,UAAU,EAAE,OAAO;AAAA,QAAG,UAAE;AAAU,cAAI,EAAG,OAAM;AAAA,QAAG;AAAA,MAAE,EAAE;AAAA,IAAG;AACr1B,aAAS,eAAe,GAAG,GAAG;AAAE,aAAO,gBAAgB,CAAC,KAAK,sBAAsB,GAAG,CAAC,KAAK,4BAA4B,GAAG,CAAC,KAAK,iBAAiB;AAAA,IAAG;AACrJ,aAAS,mBAAmB;AAAE,YAAM,IAAI,UAAU,2IAA2I;AAAA,IAAG;AAChM,aAAS,4BAA4B,GAAG,GAAG;AAAE,UAAI,GAAG;AAAE,YAAI,YAAY,OAAO,EAAG,QAAO,kBAAkB,GAAG,CAAC;AAAG,YAAI,IAAI,CAAC,EAAE,SAAS,KAAK,CAAC,EAAE,MAAM,GAAG,EAAE;AAAG,eAAO,aAAa,KAAK,EAAE,gBAAgB,IAAI,EAAE,YAAY,OAAO,UAAU,KAAK,UAAU,IAAI,MAAM,KAAK,CAAC,IAAI,gBAAgB,KAAK,2CAA2C,KAAK,CAAC,IAAI,kBAAkB,GAAG,CAAC,IAAI;AAAA,MAAQ;AAAA,IAAE;AACzX,aAAS,kBAAkB,GAAG,GAAG;AAAE,OAAC,QAAQ,KAAK,IAAI,EAAE,YAAY,IAAI,EAAE;AAAS,eAAS,IAAI,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,GAAG,IAAK,GAAE,CAAC,IAAI,EAAE,CAAC;AAAG,aAAO;AAAA,IAAG;AACnJ,aAAS,sBAAsB,GAAG,GAAG;AAAE,UAAI,IAAI,QAAQ,IAAI,OAAO,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,QAAQ,GAAG;AAAE,YAAI,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,GAAG,IAAI,MAAI,IAAI;AAAI,YAAI;AAAE,cAAI,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,MAAM,MAAM,GAAG;AAAE,gBAAI,OAAO,CAAC,MAAM,EAAG;AAAQ,gBAAI;AAAA,UAAI,MAAO,QAAO,EAAE,KAAK,IAAI,EAAE,KAAK,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,WAAW,IAAI,IAAI,KAAG;AAAA,QAAE,SAASA,IAAG;AAAE,cAAI,MAAI,IAAIA;AAAA,QAAG,UAAE;AAAU,cAAI;AAAE,gBAAI,CAAC,KAAK,QAAQ,EAAE,WAAW,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAI;AAAA,UAAQ,UAAE;AAAU,gBAAI,EAAG,OAAM;AAAA,UAAG;AAAA,QAAE;AAAE,eAAO;AAAA,MAAG;AAAA,IAAE;AACnhB,aAAS,gBAAgB,GAAG;AAAE,UAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAAA,IAAG;AAC9D,QAAI,QAAQ,CAAC,EAAE,OAAO,mBAAmB,SAAS,kBAAkB,SAAS,eAAe,SAAS,mBAAmB,OAAO;AAC/H,UAAM,QAAQ,SAAU,MAAM;AAC5B,UAAI,QAAQ,eAAe,MAAM,CAAC,GAChC,iBAAiB,MAAM,CAAC;AAE1B,UAAI,YAAY,2BAA2B,eAAe,UAAU,GAClE;AACF,UAAI;AACF,aAAK,UAAU,EAAE,GAAG,EAAE,QAAQ,UAAU,EAAE,GAAG,QAAO;AAClD,cAAI,iBAAiB,MAAM;AAC3B,cAAI,aAAa,2BAA2B,cAAc,GACxD;AACF,cAAI;AACF,gBAAI,QAAQ,SAASC,SAAQ;AAC3B,kBAAI,iBAAiB,OAAO;AAC5B,kBAAI,sBAAsB,MAAM,OAAO,SAAU,OAAO;AACtD,oBAAI,QAAQ,eAAe,OAAO,CAAC,GACjC,OAAO,MAAM,CAAC;AAChB,uBAAO,SAAS;AAAA,cAClB,CAAC,EAAE,CAAC;AACJ,kBAAI,qBAAqB;AACvB,oBAAI,uBAAuB,oBAAoB,CAAC;AAChD,yBAAS,KAAK,GAAG,eAAe,OAAO,KAAK,qBAAqB,KAAK,GAAG,KAAK,aAAa,QAAQ,MAAM;AACvG,sBAAI,OAAO,aAAa,EAAE;AAC1B;AAAA;AAAA,oBAEA,CAAC,OAAO,UAAU,eAAe,KAAK,eAAe,OAAO,IAAI;AAAA,oBAAG;AAEjE,mCAAe,MAAM,IAAI,IAAI,qBAAqB,MAAM,IAAI;AAAA,kBAC9D;AAAA,gBACF;AAAA,cACF;AAAA,YACF;AACA,iBAAK,WAAW,EAAE,GAAG,EAAE,SAAS,WAAW,EAAE,GAAG,QAAO;AACrD,oBAAM;AAAA,YACR;AAAA,UACF,SAAS,KAAK;AACZ,uBAAW,EAAE,GAAG;AAAA,UAClB,UAAE;AACA,uBAAW,EAAE;AAAA,UACf;AAAA,QACF;AAAA,MACF,SAAS,KAAK;AACZ,kBAAU,EAAE,GAAG;AAAA,MACjB,UAAE;AACA,kBAAU,EAAE;AAAA,MACd;AAAA,IACF,CAAC;AACD,QAAI,WAAW;AAAA,MACb,SAAS,SAAS,UAAU;AAC1B,eAAO;AAAA,MACT;AAAA,MACA,SAAS,SAAS,QAAQ,IAAI;AAC5B,YAAI,UAAU,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAY,UAAU,CAAC,IAAI;AAClF,YAAI,aAAa,2BAA2B,KAAK,GAC/C;AACF,YAAI;AACF,eAAK,WAAW,EAAE,GAAG,EAAE,SAAS,WAAW,EAAE,GAAG,QAAO;AACrD,gBAAI,eAAe,eAAe,OAAO,OAAO,CAAC,GAC/C,MAAM,aAAa,CAAC,GACpB,SAAS,aAAa,CAAC;AACzB,eAAG,KAAK,SAAS,QAAQ,KAAK,KAAK;AAAA,UACrC;AAAA,QACF,SAAS,KAAK;AACZ,qBAAW,EAAE,GAAG;AAAA,QAClB,UAAE;AACA,qBAAW,EAAE;AAAA,QACf;AAAA,MACF;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,YAAI,OAAO,MAAM,OAAO,SAAU,OAAO;AACvC,iBAAO,MAAM,CAAC,MAAM,MAAM,OAAO;AAAA,QACnC,CAAC,EAAE,CAAC;AACJ,eAAO,QAAQ,KAAK,CAAC;AAAA,MACvB;AAAA,MACA,KAAK,SAAS,IAAI,KAAK;AACrB,eAAO,CAAC,CAAC,SAAS,IAAI,GAAG;AAAA,MAC3B;AAAA,MACA,MAAM,SAAS,OAAO;AACpB,eAAO,MAAM,IAAI,SAAU,OAAO;AAChC,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjC,MAAM,MAAM,CAAC;AACf,iBAAO;AAAA,QACT,CAAC;AAAA,MACH;AAAA,MACA,QAAQ,SAAS,SAAS;AACxB,eAAO,MAAM,IAAI,SAAU,OAAO;AAChC,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjCC,UAAS,MAAM,CAAC;AAClB,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,WAAW,QAAQ,WAAW,GAAG,oBAAoB,SAAS,UAAU,SAAS,QAAQ,CAAC;AAAA;AAAA;;;AChH9F;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,QAAI,YAAY,uBAAuB,kBAAqB;AAC5D,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,eAAe,GAAG,GAAG;AAAE,aAAO,gBAAgB,CAAC,KAAK,sBAAsB,GAAG,CAAC,KAAK,4BAA4B,GAAG,CAAC,KAAK,iBAAiB;AAAA,IAAG;AACrJ,aAAS,mBAAmB;AAAE,YAAM,IAAI,UAAU,2IAA2I;AAAA,IAAG;AAChM,aAAS,4BAA4B,GAAG,GAAG;AAAE,UAAI,GAAG;AAAE,YAAI,YAAY,OAAO,EAAG,QAAO,kBAAkB,GAAG,CAAC;AAAG,YAAI,IAAI,CAAC,EAAE,SAAS,KAAK,CAAC,EAAE,MAAM,GAAG,EAAE;AAAG,eAAO,aAAa,KAAK,EAAE,gBAAgB,IAAI,EAAE,YAAY,OAAO,UAAU,KAAK,UAAU,IAAI,MAAM,KAAK,CAAC,IAAI,gBAAgB,KAAK,2CAA2C,KAAK,CAAC,IAAI,kBAAkB,GAAG,CAAC,IAAI;AAAA,MAAQ;AAAA,IAAE;AACzX,aAAS,kBAAkB,GAAG,GAAG;AAAE,OAAC,QAAQ,KAAK,IAAI,EAAE,YAAY,IAAI,EAAE;AAAS,eAAS,IAAI,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,GAAG,IAAK,GAAE,CAAC,IAAI,EAAE,CAAC;AAAG,aAAO;AAAA,IAAG;AACnJ,aAAS,sBAAsB,GAAG,GAAG;AAAE,UAAI,IAAI,QAAQ,IAAI,OAAO,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,QAAQ,GAAG;AAAE,YAAI,GAAG,GAAGC,IAAG,GAAG,IAAI,CAAC,GAAG,IAAI,MAAI,IAAI;AAAI,YAAI;AAAE,cAAIA,MAAK,IAAI,EAAE,KAAK,CAAC,GAAG,MAAM,MAAM,GAAG;AAAE,gBAAI,OAAO,CAAC,MAAM,EAAG;AAAQ,gBAAI;AAAA,UAAI,MAAO,QAAO,EAAE,KAAK,IAAIA,GAAE,KAAK,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,WAAW,IAAI,IAAI,KAAG;AAAA,QAAE,SAASC,IAAG;AAAE,cAAI,MAAI,IAAIA;AAAA,QAAG,UAAE;AAAU,cAAI;AAAE,gBAAI,CAAC,KAAK,QAAQ,EAAE,WAAW,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAI;AAAA,UAAQ,UAAE;AAAU,gBAAI,EAAG,OAAM;AAAA,UAAG;AAAA,QAAE;AAAE,eAAO;AAAA,MAAG;AAAA,IAAE;AACnhB,aAAS,gBAAgB,GAAG;AAAE,UAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAAA,IAAG;AAC9D,QAAI,eAAe,CAAC;AACpB,QAAI,OAAO,UAAU,QAAQ,KAAK;AAClC,SAAS,IAAI,GAAG,IAAI,KAAK,QAAQ,KAAK;AAChC,YAAM,KAAK,CAAC;AACZ,aAAO,UAAU,QAAQ,IAAI,GAAG;AACpC,UAAI,MAAM;AACJ,mBAAW,CAAC,EAAE,OAAO,KAAK,cAAc,KAAK,eAAe;AAC5D,gBAAQ,SAASC,SAAQ;AAC3B,cAAI,WAAW,SAAS,CAAC;AACzB,cAAI,SAAS,WAAW,QAAQ;AAC9B,gBAAI,UAAU,SAAS;AACvB,gBAAI,SAAS;AACX,kBAAI,sBAAsB,aAAa,OAAO,SAAUC,WAAU;AAChE,uBAAO,8BAA8BA,UAAS,CAAC,GAAG,OAAO;AAAA,cAC3D,CAAC,EAAE,CAAC;AACJ,kBAAI;AACJ,kBAAI,qBAAqB;AACvB,wBAAQ,oBAAoB,CAAC;AAAA,cAC/B,OAAO;AACL,wBAAQ,CAAC;AAAA,cACX;AACA,kBAAI,WAAW;AACf,uBAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,oBAAI,MAAM,EAAE,MAAM,KAAK;AACrB,6BAAW;AACX;AAAA,gBACF;AAAA,cACF;AACA,kBAAI,UAAU;AACZ,sBAAM,KAAK,GAAG;AAAA,cAChB;AACA,kBAAI,CAAC,qBAAqB;AACxB,6BAAa,KAAK,CAAC,SAAS,KAAK,CAAC;AAAA,cACpC;AAAA,YACF;AAAA,UACF;AAAA,QACF;AACA,aAAS,IAAI,GAAG,IAAI,SAAS,QAAQ,KAAK;AACxC,gBAAM;AAAA,QACR;AAAA,MACF;AAAA,IACF;AAtCM;AACA;AAEE;AACA;AA8BK;AAnCJ;AAwCT,QAAI,iBAAiB;AAAA,MACnB,SAAS,SAAS,UAAU;AAC1B,eAAO;AAAA,MACT;AAAA,MACA,SAAS,SAAS,QAAQ,IAAI;AAC5B,YAAI,UAAU,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAY,UAAU,CAAC,IAAI;AAClF,iBAAS,MAAM,GAAG,gBAAgB,cAAc,MAAM,cAAc,QAAQ,OAAO;AACjF,cAAI,mBAAmB,eAAe,cAAc,GAAG,GAAG,CAAC,GACzD,OAAO,iBAAiB,CAAC,GACzB,SAAS,iBAAiB,CAAC;AAC7B,aAAG,KAAK,SAAS,QAAQ,MAAM,YAAY;AAAA,QAC7C;AAAA,MACF;AAAA,MACA,KAAK,SAAS,IAAIC,MAAK;AACrB,YAAI,OAAO,aAAa,OAAO,SAAU,OAAO;AAC9C,iBAAOA,KAAI,SAAS,MAAM,CAAC,EAAE,QAAQ,uCAAuCA,KAAI,YAAY,MAAM,CAAC,EAAE,UAAU;AAAA,QACjH,CAAC,EAAE,CAAC;AACJ,eAAO,QAAQ,KAAK,CAAC;AAAA,MACvB;AAAA,MACA,KAAK,SAAS,IAAIA,MAAK;AACrB,eAAO,CAAC,CAAC,eAAe,IAAIA,IAAG;AAAA,MACjC;AAAA,MACA,MAAM,SAASC,QAAO;AACpB,eAAO,aAAa,IAAI,SAAU,MAAM;AACtC,cAAI,QAAQ,eAAe,MAAM,CAAC,GAChCD,OAAM,MAAM,CAAC;AACf,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,MACA,QAAQ,SAAS,SAAS;AACxB,eAAO,aAAa,IAAI,SAAU,OAAO;AACvC,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjCE,UAAS,MAAM,CAAC;AAClB,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,IACF;AACA,aAAS,8BAA8B,GAAG,GAAG;AAC3C,aAAO,EAAE,SAAS,EAAE,QAAQ,kCAAkC,EAAE,aAAa,EAAE,WAAW,KAAK,uCAAuC,EAAE,YAAY,EAAE,UAAU;AAAA,IAClK;AACA,aAAS,kCAAkC,GAAG,GAAG;AAC/C,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,eAAO;AAAA,MACT;AACA,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,eAAO;AAAA,MACT;AACA,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,YAAI,EAAE,WAAW,EAAE,QAAQ;AACzB,iBAAO;AAAA,QACT;AACA,iBAAS,MAAM,GAAG,MAAM,EAAE,QAAQ,OAAO;AACvC,cAAI,EAAE,GAAG,MAAM,EAAE,GAAG,GAAG;AACrB,mBAAO;AAAA,UACT;AAAA,QACF;AAAA,MACF;AACA,aAAO;AAAA,IACT;AACA,aAAS,uCAAuC,GAAG,GAAG;AACpD,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,eAAO;AAAA,MACT;AACA,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,eAAO;AAAA,MACT;AACA,UAAI,MAAM,UAAa,MAAM,QAAW;AACtC,YAAI,EAAE,WAAW,EAAE,QAAQ;AACzB,iBAAO;AAAA,QACT;AACA,iBAAS,MAAM,GAAG,MAAM,EAAE,QAAQ,OAAO;AACvC,cAAI,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,UAAU,EAAE,GAAG,EAAE,OAAO;AAChE,mBAAO;AAAA,UACT;AACA,cAAI,EAAE,GAAG,EAAE,gBAAgB,UAAa,EAAE,GAAG,EAAE,gBAAgB,QAAW;AACxE,mBAAO;AAAA,UACT;AACA,cAAI,EAAE,GAAG,EAAE,gBAAgB,UAAa,EAAE,GAAG,EAAE,gBAAgB,QAAW;AACxE,mBAAO;AAAA,UACT;AACA,cAAI,EAAE,GAAG,EAAE,gBAAgB,UAAa,EAAE,GAAG,EAAE,gBAAgB,QAAW;AACxE,gBAAI,EAAE,GAAG,EAAE,YAAY,WAAW,EAAE,GAAG,EAAE,YAAY,QAAQ;AAC3D,qBAAO;AAAA,YACT;AACA,qBAAS,IAAI,GAAG,IAAI,EAAE,GAAG,EAAE,YAAY,QAAQ,KAAK;AAClD,kBAAI,EAAE,GAAG,EAAE,YAAY,CAAC,MAAM,EAAE,GAAG,EAAE,YAAY,CAAC,GAAG;AACnD,uBAAO;AAAA,cACT;AAAA,YACF;AAAA,UACF;AAAA,QACF;AAAA,MACF;AACA,aAAO;AAAA,IACT;AACA,QAAI,WAAW,QAAQ,WAAW,GAAG,oBAAoB,SAAS,gBAAgB,eAAe,QAAQ,CAAC;AAAA;AAAA;;;ACvJ1G;AAAA;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,UAAU;AAClB,QAAI,sBAAsB,uBAAuB,4BAAoC;AACrF,QAAI,YAAY,uBAAuB,kBAAqB;AAC5D,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,aAAS,eAAe,GAAG,GAAG;AAAE,aAAO,gBAAgB,CAAC,KAAK,sBAAsB,GAAG,CAAC,KAAK,4BAA4B,GAAG,CAAC,KAAK,iBAAiB;AAAA,IAAG;AACrJ,aAAS,mBAAmB;AAAE,YAAM,IAAI,UAAU,2IAA2I;AAAA,IAAG;AAChM,aAAS,4BAA4B,GAAG,GAAG;AAAE,UAAI,GAAG;AAAE,YAAI,YAAY,OAAO,EAAG,QAAO,kBAAkB,GAAG,CAAC;AAAG,YAAI,IAAI,CAAC,EAAE,SAAS,KAAK,CAAC,EAAE,MAAM,GAAG,EAAE;AAAG,eAAO,aAAa,KAAK,EAAE,gBAAgB,IAAI,EAAE,YAAY,OAAO,UAAU,KAAK,UAAU,IAAI,MAAM,KAAK,CAAC,IAAI,gBAAgB,KAAK,2CAA2C,KAAK,CAAC,IAAI,kBAAkB,GAAG,CAAC,IAAI;AAAA,MAAQ;AAAA,IAAE;AACzX,aAAS,kBAAkB,GAAG,GAAG;AAAE,OAAC,QAAQ,KAAK,IAAI,EAAE,YAAY,IAAI,EAAE;AAAS,eAAS,IAAI,GAAG,IAAI,MAAM,CAAC,GAAG,IAAI,GAAG,IAAK,GAAE,CAAC,IAAI,EAAE,CAAC;AAAG,aAAO;AAAA,IAAG;AACnJ,aAAS,sBAAsB,GAAG,GAAG;AAAE,UAAI,IAAI,QAAQ,IAAI,OAAO,eAAe,OAAO,UAAU,EAAE,OAAO,QAAQ,KAAK,EAAE,YAAY;AAAG,UAAI,QAAQ,GAAG;AAAE,YAAI,GAAG,GAAGC,IAAG,GAAG,IAAI,CAAC,GAAG,IAAI,MAAI,IAAI;AAAI,YAAI;AAAE,cAAIA,MAAK,IAAI,EAAE,KAAK,CAAC,GAAG,MAAM,MAAM,GAAG;AAAE,gBAAI,OAAO,CAAC,MAAM,EAAG;AAAQ,gBAAI;AAAA,UAAI,MAAO,QAAO,EAAE,KAAK,IAAIA,GAAE,KAAK,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,WAAW,IAAI,IAAI,KAAG;AAAA,QAAE,SAASC,IAAG;AAAE,cAAI,MAAI,IAAIA;AAAA,QAAG,UAAE;AAAU,cAAI;AAAE,gBAAI,CAAC,KAAK,QAAQ,EAAE,WAAW,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAI;AAAA,UAAQ,UAAE;AAAU,gBAAI,EAAG,OAAM;AAAA,UAAG;AAAA,QAAE;AAAE,eAAO;AAAA,MAAG;AAAA,IAAE;AACnhB,aAAS,gBAAgB,GAAG;AAAE,UAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAAA,IAAG;AAC9D,QAAI,cAAc,CAAC;AACnB,QAAI,OAAO,UAAU,QAAQ,KAAK;AAClC,SAAS,IAAI,GAAG,IAAI,KAAK,QAAQ,KAAK;AAChC,YAAM,KAAK,CAAC;AACZ,aAAO,UAAU,QAAQ,IAAI,GAAG;AAChC,yBAAmB,CAAC;AACxB,UAAI,MAAM;AACJ,mBAAW,CAAC,EAAE,OAAO,KAAK,cAAc,KAAK,eAAe;AAChE,aAAS,IAAI,GAAG,IAAI,SAAS,QAAQ,KAAK;AACpC,qBAAW,SAAS,CAAC;AACzB,cAAI,SAAS,WAAW,QAAQ;AAC1B,sBAAU,SAAS;AACvB,gBAAI,WAAW,MAAM;AACnB,+BAAiB,KAAK,OAAO;AAAA,YAC/B;AAAA,UACF;AAAA,QACF;AACA,YAAI,iBAAiB,SAAS,GAAG;AAC/B,sBAAY,KAAK,CAAC,KAAK,gBAAgB,CAAC;AAAA,QAC1C;AAAA,MACF;AAAA,IACF;AAlBM;AACA;AACA;AAEE;AAEE;AAEE;AAHC;AANJ;AAoBT,QAAI,iBAAiB;AAAA,MACnB,SAAS,SAAS,UAAU;AAC1B,eAAO;AAAA,MACT;AAAA,MACA,SAAS,SAAS,QAAQ,IAAI;AAC5B,YAAI,UAAU,UAAU,SAAS,KAAK,UAAU,CAAC,MAAM,SAAY,UAAU,CAAC,IAAI;AAClF,iBAAS,KAAK,GAAG,eAAe,aAAa,KAAK,aAAa,QAAQ,MAAM;AAC3E,cAAI,kBAAkB,eAAe,aAAa,EAAE,GAAG,CAAC,GACtD,OAAO,gBAAgB,CAAC,GACxB,SAAS,gBAAgB,CAAC;AAC5B,aAAG,KAAK,SAAS,QAAQ,MAAM,WAAW;AAAA,QAC5C;AAAA,MACF;AAAA,MACA,KAAK,SAAS,IAAIC,MAAK;AACrB,YAAI,OAAO,YAAY,OAAO,SAAU,OAAO;AAC7C,iBAAO,MAAM,CAAC,MAAMA,OAAM,OAAO;AAAA,QACnC,CAAC,EAAE,CAAC;AACJ,eAAO,QAAQ,KAAK,CAAC;AAAA,MACvB;AAAA,MACA,KAAK,SAAS,IAAIA,MAAK;AACrB,eAAO,CAAC,CAAC,eAAe,IAAIA,IAAG;AAAA,MACjC;AAAA,MACA,MAAM,SAASC,QAAO;AACpB,eAAO,YAAY,IAAI,SAAU,MAAM;AACrC,cAAI,QAAQ,eAAe,MAAM,CAAC,GAChCD,OAAM,MAAM,CAAC;AACf,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,MACA,QAAQ,SAAS,SAAS;AACxB,eAAO,YAAY,IAAI,SAAU,OAAO;AACtC,cAAI,QAAQ,eAAe,OAAO,CAAC,GACjCE,UAAS,MAAM,CAAC;AAClB,iBAAOA;AAAA,QACT,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,WAAW,QAAQ,WAAW,GAAG,oBAAoB,SAAS,gBAAgB,eAAe,QAAQ,CAAC;AAAA;AAAA;;;AC1E1G;AAAA;AAEA,WAAO,eAAe,SAAS,cAAc;AAAA,MAC3C,OAAO;AAAA,IACT,CAAC;AACD,YAAQ,QAAQ,QAAQ,eAAe,QAAQ,eAAe,QAAQ,MAAM,QAAQ,OAAO;AAC3F,QAAI,gBAAgB,uBAAuB,sBAAyB;AACpE,QAAI,UAAU,uBAAuB,gBAAmB;AACxD,QAAI,YAAY,uBAAuB,kBAAqB;AAC5D,QAAI,kBAAkB,uBAAuB,wBAA2B;AACxE,QAAI,kBAAkB,uBAAuB,wBAA2B;AACxE,aAAS,uBAAuB,GAAG;AAAE,aAAO,KAAK,EAAE,aAAa,IAAI,EAAE,SAAS,EAAE;AAAA,IAAG;AACpF,QAAI,OAAO,QAAQ,OAAO,cAAc;AACxC,QAAI,MAAM,QAAQ,MAAM,QAAQ;AAChC,QAAI,QAAQ,QAAQ,QAAQ,UAAU;AACtC,QAAI,eAAe,QAAQ,eAAe,gBAAgB;AAC1D,QAAI,eAAe,QAAQ,eAAe,gBAAgB;AAAA;AAAA;", + "names": ["o", "r", "values", "r", "values", "F", "e", "r", "_loop", "values", "i", "r", "_loop", "relation", "key", "keys", "values", "i", "r", "key", "keys", "values"] +} diff --git a/frontend/node_modules/.vite/deps/astro___axobject-query.js b/frontend/node_modules/.vite/deps/astro___axobject-query.js new file mode 100644 index 00000000..3b225bf2 --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___axobject-query.js @@ -0,0 +1,3754 @@ +import { + __commonJS +} from "./chunk-BUSYA2B4.js"; + +// node_modules/axobject-query/lib/util/iteratorProxy.js +var require_iteratorProxy = __commonJS({ + "node_modules/axobject-query/lib/util/iteratorProxy.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + function iteratorProxy() { + var values = this; + var index = 0; + var iter = { + "@@iterator": function iterator() { + return iter; + }, + next: function next() { + if (index < values.length) { + var value = values[index]; + index = index + 1; + return { + done: false, + value + }; + } else { + return { + done: true + }; + } + } + }; + return iter; + } + var _default = iteratorProxy; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/util/iterationDecorator.js +var require_iterationDecorator = __commonJS({ + "node_modules/axobject-query/lib/util/iterationDecorator.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = iterationDecorator; + var _iteratorProxy = _interopRequireDefault(require_iteratorProxy()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + function _typeof(obj) { + "@babel/helpers - typeof"; + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) { + return typeof obj2; + } : function(obj2) { + return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2; + }, _typeof(obj); + } + function iterationDecorator(collection, entries) { + if (typeof Symbol === "function" && _typeof(Symbol.iterator) === "symbol") { + Object.defineProperty(collection, Symbol.iterator, { + value: _iteratorProxy.default.bind(entries) + }); + } + return collection; + } + } +}); + +// node_modules/axobject-query/lib/etc/objects/AbbrRole.js +var require_AbbrRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/AbbrRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var AbbrRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "abbr" + } + }], + type: "structure" + }; + var _default = AbbrRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/AlertDialogRole.js +var require_AlertDialogRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/AlertDialogRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var AlertDialogRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "alertdialog" + } + }], + type: "window" + }; + var _default = AlertDialogRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/AlertRole.js +var require_AlertRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/AlertRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var AlertRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "alert" + } + }], + type: "structure" + }; + var _default = AlertRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/AnnotationRole.js +var require_AnnotationRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/AnnotationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var AnnotationRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = AnnotationRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ApplicationRole.js +var require_ApplicationRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ApplicationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ApplicationRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "application" + } + }], + type: "window" + }; + var _default = ApplicationRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ArticleRole.js +var require_ArticleRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ArticleRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ArticleRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "article" + } + }, { + module: "HTML", + concept: { + name: "article" + } + }], + type: "structure" + }; + var _default = ArticleRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/AudioRole.js +var require_AudioRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/AudioRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var AudioRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "audio" + } + }], + type: "widget" + }; + var _default = AudioRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/BannerRole.js +var require_BannerRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/BannerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var BannerRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "banner" + } + }], + type: "structure" + }; + var _default = BannerRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/BlockquoteRole.js +var require_BlockquoteRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/BlockquoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var BlockquoteRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "blockquote" + } + }], + type: "structure" + }; + var _default = BlockquoteRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/BusyIndicatorRole.js +var require_BusyIndicatorRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/BusyIndicatorRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var BusyIndicatorRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + attributes: [{ + name: "aria-busy", + value: "true" + }] + } + }], + type: "widget" + }; + var _default = BusyIndicatorRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ButtonRole.js +var require_ButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ButtonRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "button" + } + }, { + module: "HTML", + concept: { + name: "button" + } + }], + type: "widget" + }; + var _default = ButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/CanvasRole.js +var require_CanvasRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/CanvasRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var CanvasRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "canvas" + } + }], + type: "widget" + }; + var _default = CanvasRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/CaptionRole.js +var require_CaptionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/CaptionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var CaptionRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "caption" + } + }], + type: "structure" + }; + var _default = CaptionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/CellRole.js +var require_CellRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/CellRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var CellRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "cell" + } + }, { + module: "ARIA", + concept: { + name: "gridcell" + } + }, { + module: "HTML", + concept: { + name: "td" + } + }], + type: "widget" + }; + var _default = CellRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/CheckBoxRole.js +var require_CheckBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/CheckBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var CheckBoxRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "checkbox" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "checkbox" + }] + } + }], + type: "widget" + }; + var _default = CheckBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ColorWellRole.js +var require_ColorWellRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ColorWellRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ColorWellRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "color" + }] + } + }], + type: "widget" + }; + var _default = ColorWellRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ColumnHeaderRole.js +var require_ColumnHeaderRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ColumnHeaderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ColumnHeaderRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "columnheader" + } + }, { + module: "HTML", + concept: { + name: "th" + } + }], + type: "widget" + }; + var _default = ColumnHeaderRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ColumnRole.js +var require_ColumnRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ColumnRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ColumnRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = ColumnRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ComboBoxRole.js +var require_ComboBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ComboBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ComboBoxRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "combobox" + } + }, { + module: "HTML", + concept: { + name: "select" + } + }], + type: "widget" + }; + var _default = ComboBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ComplementaryRole.js +var require_ComplementaryRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ComplementaryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ComplementaryRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "complementary" + } + }], + type: "structure" + }; + var _default = ComplementaryRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ContentInfoRole.js +var require_ContentInfoRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ContentInfoRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ContentInfoRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "structureinfo" + } + }], + type: "structure" + }; + var _default = ContentInfoRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DateRole.js +var require_DateRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DateRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DateRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "date" + }] + } + }], + type: "widget" + }; + var _default = DateRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DateTimeRole.js +var require_DateTimeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DateTimeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DateTimeRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "datetime" + }] + } + }], + type: "widget" + }; + var _default = DateTimeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DefinitionRole.js +var require_DefinitionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DefinitionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DefinitionRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "dfn" + } + }], + type: "structure" + }; + var _default = DefinitionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DescriptionListDetailRole.js +var require_DescriptionListDetailRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DescriptionListDetailRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DescriptionListDetailRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "dd" + } + }], + type: "structure" + }; + var _default = DescriptionListDetailRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DescriptionListRole.js +var require_DescriptionListRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DescriptionListRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DescriptionListRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "dl" + } + }], + type: "structure" + }; + var _default = DescriptionListRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DescriptionListTermRole.js +var require_DescriptionListTermRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DescriptionListTermRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DescriptionListTermRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "dt" + } + }], + type: "structure" + }; + var _default = DescriptionListTermRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DetailsRole.js +var require_DetailsRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DetailsRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DetailsRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "details" + } + }], + type: "structure" + }; + var _default = DetailsRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DialogRole.js +var require_DialogRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DialogRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DialogRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "dialog" + } + }, { + module: "HTML", + concept: { + name: "dialog" + } + }], + type: "window" + }; + var _default = DialogRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DirectoryRole.js +var require_DirectoryRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DirectoryRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DirectoryRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "directory" + } + }, { + module: "HTML", + concept: { + name: "dir" + } + }], + type: "structure" + }; + var _default = DirectoryRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DisclosureTriangleRole.js +var require_DisclosureTriangleRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DisclosureTriangleRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DisclosureTriangleRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + constraints: ["scoped to a details element"], + name: "summary" + } + }], + type: "widget" + }; + var _default = DisclosureTriangleRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DivRole.js +var require_DivRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DivRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DivRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "div" + } + }], + type: "generic" + }; + var _default = DivRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/DocumentRole.js +var require_DocumentRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/DocumentRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var DocumentRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "document" + } + }], + type: "structure" + }; + var _default = DocumentRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/EmbeddedObjectRole.js +var require_EmbeddedObjectRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/EmbeddedObjectRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var EmbeddedObjectRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "embed" + } + }], + type: "widget" + }; + var _default = EmbeddedObjectRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/FeedRole.js +var require_FeedRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/FeedRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var FeedRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "feed" + } + }], + type: "structure" + }; + var _default = FeedRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/FigcaptionRole.js +var require_FigcaptionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/FigcaptionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var FigcaptionRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "figcaption" + } + }], + type: "structure" + }; + var _default = FigcaptionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/FigureRole.js +var require_FigureRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/FigureRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var FigureRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "figure" + } + }, { + module: "HTML", + concept: { + name: "figure" + } + }], + type: "structure" + }; + var _default = FigureRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/FooterRole.js +var require_FooterRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/FooterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var FooterRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "footer" + } + }], + type: "structure" + }; + var _default = FooterRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/FormRole.js +var require_FormRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/FormRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var FormRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "form" + } + }, { + module: "HTML", + concept: { + name: "form" + } + }], + type: "structure" + }; + var _default = FormRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/GridRole.js +var require_GridRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/GridRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var GridRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "grid" + } + }], + type: "widget" + }; + var _default = GridRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/GroupRole.js +var require_GroupRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/GroupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var GroupRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "group" + } + }], + type: "structure" + }; + var _default = GroupRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/HeadingRole.js +var require_HeadingRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/HeadingRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var HeadingRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "heading" + } + }, { + module: "HTML", + concept: { + name: "h1" + } + }, { + module: "HTML", + concept: { + name: "h2" + } + }, { + module: "HTML", + concept: { + name: "h3" + } + }, { + module: "HTML", + concept: { + name: "h4" + } + }, { + module: "HTML", + concept: { + name: "h5" + } + }, { + module: "HTML", + concept: { + name: "h6" + } + }], + type: "structure" + }; + var _default = HeadingRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/IframePresentationalRole.js +var require_IframePresentationalRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/IframePresentationalRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var IframePresentationalRole = { + relatedConcepts: [], + type: "window" + }; + var _default = IframePresentationalRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/IframeRole.js +var require_IframeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/IframeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var IframeRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "iframe" + } + }], + type: "window" + }; + var _default = IframeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/IgnoredRole.js +var require_IgnoredRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/IgnoredRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var IgnoredRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = IgnoredRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ImageMapLinkRole.js +var require_ImageMapLinkRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ImageMapLinkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ImageMapLinkRole = { + relatedConcepts: [], + type: "widget" + }; + var _default = ImageMapLinkRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ImageMapRole.js +var require_ImageMapRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ImageMapRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ImageMapRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "img", + attributes: [{ + name: "usemap" + }] + } + }], + type: "structure" + }; + var _default = ImageMapRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ImageRole.js +var require_ImageRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ImageRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ImageRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "img" + } + }, { + module: "HTML", + concept: { + name: "img" + } + }], + type: "structure" + }; + var _default = ImageRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/InlineTextBoxRole.js +var require_InlineTextBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/InlineTextBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var InlineTextBoxRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "input" + } + }], + type: "widget" + }; + var _default = InlineTextBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/InputTimeRole.js +var require_InputTimeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/InputTimeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var InputTimeRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "time" + }] + } + }], + type: "widget" + }; + var _default = InputTimeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/LabelRole.js +var require_LabelRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/LabelRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var LabelRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "label" + } + }], + type: "structure" + }; + var _default = LabelRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/LegendRole.js +var require_LegendRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/LegendRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var LegendRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "legend" + } + }], + type: "structure" + }; + var _default = LegendRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/LineBreakRole.js +var require_LineBreakRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/LineBreakRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var LineBreakRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "br" + } + }], + type: "structure" + }; + var _default = LineBreakRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/LinkRole.js +var require_LinkRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/LinkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var LinkRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "link" + } + }, { + module: "HTML", + concept: { + name: "a", + attributes: [{ + name: "href" + }] + } + }], + type: "widget" + }; + var _default = LinkRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ListBoxOptionRole.js +var require_ListBoxOptionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ListBoxOptionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ListBoxOptionRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "option" + } + }, { + module: "HTML", + concept: { + name: "option" + } + }], + type: "widget" + }; + var _default = ListBoxOptionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ListBoxRole.js +var require_ListBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ListBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ListBoxRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "listbox" + } + }, { + module: "HTML", + concept: { + name: "datalist" + } + }, { + module: "HTML", + concept: { + name: "select" + } + }], + type: "widget" + }; + var _default = ListBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ListItemRole.js +var require_ListItemRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ListItemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ListItemRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "listitem" + } + }, { + module: "HTML", + concept: { + name: "li" + } + }], + type: "structure" + }; + var _default = ListItemRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ListMarkerRole.js +var require_ListMarkerRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ListMarkerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ListMarkerRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = ListMarkerRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ListRole.js +var require_ListRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ListRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ListRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "list" + } + }, { + module: "HTML", + concept: { + name: "ul" + } + }, { + module: "HTML", + concept: { + name: "ol" + } + }], + type: "structure" + }; + var _default = ListRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/LogRole.js +var require_LogRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/LogRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var LogRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "log" + } + }], + type: "structure" + }; + var _default = LogRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MainRole.js +var require_MainRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MainRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MainRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "main" + } + }, { + module: "HTML", + concept: { + name: "main" + } + }], + type: "structure" + }; + var _default = MainRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MarkRole.js +var require_MarkRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MarkRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MarkRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "mark" + } + }], + type: "structure" + }; + var _default = MarkRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MarqueeRole.js +var require_MarqueeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MarqueeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MarqueeRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "marquee" + } + }, { + module: "HTML", + concept: { + name: "marquee" + } + }], + type: "structure" + }; + var _default = MarqueeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MathRole.js +var require_MathRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MathRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MathRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "math" + } + }], + type: "structure" + }; + var _default = MathRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuBarRole.js +var require_MenuBarRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuBarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuBarRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "menubar" + } + }], + type: "structure" + }; + var _default = MenuBarRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuButtonRole.js +var require_MenuButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuButtonRole = { + relatedConcepts: [], + type: "widget" + }; + var _default = MenuButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuItemRole.js +var require_MenuItemRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuItemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuItemRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "menuitem" + } + }, { + module: "HTML", + concept: { + name: "menuitem" + } + }], + type: "widget" + }; + var _default = MenuItemRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuItemCheckBoxRole.js +var require_MenuItemCheckBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuItemCheckBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuItemCheckBoxRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "menuitemcheckbox" + } + }], + type: "widget" + }; + var _default = MenuItemCheckBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuItemRadioRole.js +var require_MenuItemRadioRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuItemRadioRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuItemRadioRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "menuitemradio" + } + }], + type: "widget" + }; + var _default = MenuItemRadioRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuListOptionRole.js +var require_MenuListOptionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuListOptionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuListOptionRole = { + relatedConcepts: [], + type: "widget" + }; + var _default = MenuListOptionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuListPopupRole.js +var require_MenuListPopupRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuListPopupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuListPopupRole = { + relatedConcepts: [], + type: "widget" + }; + var _default = MenuListPopupRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MenuRole.js +var require_MenuRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MenuRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MenuRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "menu" + } + }, { + module: "HTML", + concept: { + name: "menu" + } + }], + type: "structure" + }; + var _default = MenuRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/MeterRole.js +var require_MeterRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/MeterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var MeterRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "meter" + } + }], + type: "structure" + }; + var _default = MeterRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/NavigationRole.js +var require_NavigationRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/NavigationRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var NavigationRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "navigation" + } + }, { + module: "HTML", + concept: { + name: "nav" + } + }], + type: "structure" + }; + var _default = NavigationRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/NoneRole.js +var require_NoneRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/NoneRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var NoneRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "none" + } + }], + type: "structure" + }; + var _default = NoneRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/NoteRole.js +var require_NoteRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/NoteRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var NoteRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "note" + } + }], + type: "structure" + }; + var _default = NoteRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/OutlineRole.js +var require_OutlineRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/OutlineRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var OutlineRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = OutlineRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ParagraphRole.js +var require_ParagraphRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ParagraphRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ParagraphRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "p" + } + }], + type: "structure" + }; + var _default = ParagraphRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/PopUpButtonRole.js +var require_PopUpButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/PopUpButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var PopUpButtonRole = { + relatedConcepts: [], + type: "widget" + }; + var _default = PopUpButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/PreRole.js +var require_PreRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/PreRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var PreRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "pre" + } + }], + type: "structure" + }; + var _default = PreRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/PresentationalRole.js +var require_PresentationalRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/PresentationalRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var PresentationalRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "presentation" + } + }], + type: "structure" + }; + var _default = PresentationalRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ProgressIndicatorRole.js +var require_ProgressIndicatorRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ProgressIndicatorRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ProgressIndicatorRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "progressbar" + } + }, { + module: "HTML", + concept: { + name: "progress" + } + }], + type: "structure" + }; + var _default = ProgressIndicatorRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RadioButtonRole.js +var require_RadioButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RadioButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RadioButtonRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "radio" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "radio" + }] + } + }], + type: "widget" + }; + var _default = RadioButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RadioGroupRole.js +var require_RadioGroupRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RadioGroupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RadioGroupRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "radiogroup" + } + }], + type: "structure" + }; + var _default = RadioGroupRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RegionRole.js +var require_RegionRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RegionRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RegionRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "region" + } + }], + type: "structure" + }; + var _default = RegionRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RootWebAreaRole.js +var require_RootWebAreaRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RootWebAreaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RootWebAreaRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = RootWebAreaRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RowHeaderRole.js +var require_RowHeaderRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RowHeaderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RowHeaderRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "rowheader" + } + }, { + module: "HTML", + concept: { + name: "th", + attributes: [{ + name: "scope", + value: "row" + }] + } + }], + type: "widget" + }; + var _default = RowHeaderRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RowRole.js +var require_RowRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RowRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RowRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "row" + } + }, { + module: "HTML", + concept: { + name: "tr" + } + }], + type: "structure" + }; + var _default = RowRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RubyRole.js +var require_RubyRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RubyRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RubyRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "ruby" + } + }], + type: "structure" + }; + var _default = RubyRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/RulerRole.js +var require_RulerRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/RulerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var RulerRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = RulerRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ScrollAreaRole.js +var require_ScrollAreaRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ScrollAreaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ScrollAreaRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = ScrollAreaRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ScrollBarRole.js +var require_ScrollBarRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ScrollBarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ScrollBarRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "scrollbar" + } + }], + type: "widget" + }; + var _default = ScrollBarRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SeamlessWebAreaRole.js +var require_SeamlessWebAreaRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SeamlessWebAreaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SeamlessWebAreaRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = SeamlessWebAreaRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SearchRole.js +var require_SearchRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SearchRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SearchRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "search" + } + }], + type: "structure" + }; + var _default = SearchRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SearchBoxRole.js +var require_SearchBoxRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SearchBoxRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SearchBoxRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "searchbox" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "search" + }] + } + }], + type: "widget" + }; + var _default = SearchBoxRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SliderRole.js +var require_SliderRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SliderRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SliderRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "slider" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "range" + }] + } + }], + type: "widget" + }; + var _default = SliderRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SliderThumbRole.js +var require_SliderThumbRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SliderThumbRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SliderThumbRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = SliderThumbRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SpinButtonRole.js +var require_SpinButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SpinButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SpinButtonRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "spinbutton" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "number" + }] + } + }], + type: "widget" + }; + var _default = SpinButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SpinButtonPartRole.js +var require_SpinButtonPartRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SpinButtonPartRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SpinButtonPartRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = SpinButtonPartRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SplitterRole.js +var require_SplitterRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SplitterRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SplitterRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "separator" + } + }], + type: "widget" + }; + var _default = SplitterRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/StaticTextRole.js +var require_StaticTextRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/StaticTextRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var StaticTextRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = StaticTextRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/StatusRole.js +var require_StatusRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/StatusRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var StatusRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "status" + } + }], + type: "structure" + }; + var _default = StatusRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SVGRootRole.js +var require_SVGRootRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SVGRootRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SVGRootRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = SVGRootRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/SwitchRole.js +var require_SwitchRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/SwitchRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var SwitchRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "switch" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "checkbox" + }] + } + }], + type: "widget" + }; + var _default = SwitchRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TabGroupRole.js +var require_TabGroupRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TabGroupRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TabGroupRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tablist" + } + }], + type: "structure" + }; + var _default = TabGroupRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TabRole.js +var require_TabRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TabRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TabRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tab" + } + }], + type: "widget" + }; + var _default = TabRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TableHeaderContainerRole.js +var require_TableHeaderContainerRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TableHeaderContainerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TableHeaderContainerRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = TableHeaderContainerRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TableRole.js +var require_TableRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TableRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TableRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "table" + } + }, { + module: "HTML", + concept: { + name: "table" + } + }], + type: "structure" + }; + var _default = TableRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TabListRole.js +var require_TabListRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TabListRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TabListRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tablist" + } + }], + type: "structure" + }; + var _default = TabListRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TabPanelRole.js +var require_TabPanelRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TabPanelRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TabPanelRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tabpanel" + } + }], + type: "structure" + }; + var _default = TabPanelRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TermRole.js +var require_TermRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TermRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TermRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "term" + } + }], + type: "structure" + }; + var _default = TermRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TextAreaRole.js +var require_TextAreaRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TextAreaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TextAreaRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + attributes: [{ + name: "aria-multiline", + value: "true" + }], + name: "textbox" + } + }, { + module: "HTML", + concept: { + name: "textarea" + } + }], + type: "widget" + }; + var _default = TextAreaRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TextFieldRole.js +var require_TextFieldRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TextFieldRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TextFieldRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "textbox" + } + }, { + module: "HTML", + concept: { + name: "input" + } + }, { + module: "HTML", + concept: { + name: "input", + attributes: [{ + name: "type", + value: "text" + }] + } + }], + type: "widget" + }; + var _default = TextFieldRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TimeRole.js +var require_TimeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TimeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TimeRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "time" + } + }], + type: "structure" + }; + var _default = TimeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TimerRole.js +var require_TimerRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TimerRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TimerRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "timer" + } + }], + type: "structure" + }; + var _default = TimerRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ToggleButtonRole.js +var require_ToggleButtonRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ToggleButtonRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ToggleButtonRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + attributes: [{ + name: "aria-pressed" + }] + } + }], + type: "widget" + }; + var _default = ToggleButtonRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/ToolbarRole.js +var require_ToolbarRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/ToolbarRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var ToolbarRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "toolbar" + } + }], + type: "structure" + }; + var _default = ToolbarRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TreeRole.js +var require_TreeRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TreeRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TreeRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tree" + } + }], + type: "widget" + }; + var _default = TreeRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TreeGridRole.js +var require_TreeGridRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TreeGridRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TreeGridRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "treegrid" + } + }], + type: "widget" + }; + var _default = TreeGridRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/TreeItemRole.js +var require_TreeItemRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/TreeItemRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var TreeItemRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "treeitem" + } + }], + type: "widget" + }; + var _default = TreeItemRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/UserInterfaceTooltipRole.js +var require_UserInterfaceTooltipRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/UserInterfaceTooltipRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var UserInterfaceTooltipRole = { + relatedConcepts: [{ + module: "ARIA", + concept: { + name: "tooltip" + } + }], + type: "structure" + }; + var _default = UserInterfaceTooltipRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/VideoRole.js +var require_VideoRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/VideoRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var VideoRole = { + relatedConcepts: [{ + module: "HTML", + concept: { + name: "video" + } + }], + type: "widget" + }; + var _default = VideoRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/WebAreaRole.js +var require_WebAreaRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/WebAreaRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var WebAreaRole = { + relatedConcepts: [], + type: "structure" + }; + var _default = WebAreaRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/etc/objects/WindowRole.js +var require_WindowRole = __commonJS({ + "node_modules/axobject-query/lib/etc/objects/WindowRole.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var WindowRole = { + relatedConcepts: [], + type: "window" + }; + var _default = WindowRole; + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/AXObjectsMap.js +var require_AXObjectsMap = __commonJS({ + "node_modules/axobject-query/lib/AXObjectsMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + var _AbbrRole = _interopRequireDefault(require_AbbrRole()); + var _AlertDialogRole = _interopRequireDefault(require_AlertDialogRole()); + var _AlertRole = _interopRequireDefault(require_AlertRole()); + var _AnnotationRole = _interopRequireDefault(require_AnnotationRole()); + var _ApplicationRole = _interopRequireDefault(require_ApplicationRole()); + var _ArticleRole = _interopRequireDefault(require_ArticleRole()); + var _AudioRole = _interopRequireDefault(require_AudioRole()); + var _BannerRole = _interopRequireDefault(require_BannerRole()); + var _BlockquoteRole = _interopRequireDefault(require_BlockquoteRole()); + var _BusyIndicatorRole = _interopRequireDefault(require_BusyIndicatorRole()); + var _ButtonRole = _interopRequireDefault(require_ButtonRole()); + var _CanvasRole = _interopRequireDefault(require_CanvasRole()); + var _CaptionRole = _interopRequireDefault(require_CaptionRole()); + var _CellRole = _interopRequireDefault(require_CellRole()); + var _CheckBoxRole = _interopRequireDefault(require_CheckBoxRole()); + var _ColorWellRole = _interopRequireDefault(require_ColorWellRole()); + var _ColumnHeaderRole = _interopRequireDefault(require_ColumnHeaderRole()); + var _ColumnRole = _interopRequireDefault(require_ColumnRole()); + var _ComboBoxRole = _interopRequireDefault(require_ComboBoxRole()); + var _ComplementaryRole = _interopRequireDefault(require_ComplementaryRole()); + var _ContentInfoRole = _interopRequireDefault(require_ContentInfoRole()); + var _DateRole = _interopRequireDefault(require_DateRole()); + var _DateTimeRole = _interopRequireDefault(require_DateTimeRole()); + var _DefinitionRole = _interopRequireDefault(require_DefinitionRole()); + var _DescriptionListDetailRole = _interopRequireDefault(require_DescriptionListDetailRole()); + var _DescriptionListRole = _interopRequireDefault(require_DescriptionListRole()); + var _DescriptionListTermRole = _interopRequireDefault(require_DescriptionListTermRole()); + var _DetailsRole = _interopRequireDefault(require_DetailsRole()); + var _DialogRole = _interopRequireDefault(require_DialogRole()); + var _DirectoryRole = _interopRequireDefault(require_DirectoryRole()); + var _DisclosureTriangleRole = _interopRequireDefault(require_DisclosureTriangleRole()); + var _DivRole = _interopRequireDefault(require_DivRole()); + var _DocumentRole = _interopRequireDefault(require_DocumentRole()); + var _EmbeddedObjectRole = _interopRequireDefault(require_EmbeddedObjectRole()); + var _FeedRole = _interopRequireDefault(require_FeedRole()); + var _FigcaptionRole = _interopRequireDefault(require_FigcaptionRole()); + var _FigureRole = _interopRequireDefault(require_FigureRole()); + var _FooterRole = _interopRequireDefault(require_FooterRole()); + var _FormRole = _interopRequireDefault(require_FormRole()); + var _GridRole = _interopRequireDefault(require_GridRole()); + var _GroupRole = _interopRequireDefault(require_GroupRole()); + var _HeadingRole = _interopRequireDefault(require_HeadingRole()); + var _IframePresentationalRole = _interopRequireDefault(require_IframePresentationalRole()); + var _IframeRole = _interopRequireDefault(require_IframeRole()); + var _IgnoredRole = _interopRequireDefault(require_IgnoredRole()); + var _ImageMapLinkRole = _interopRequireDefault(require_ImageMapLinkRole()); + var _ImageMapRole = _interopRequireDefault(require_ImageMapRole()); + var _ImageRole = _interopRequireDefault(require_ImageRole()); + var _InlineTextBoxRole = _interopRequireDefault(require_InlineTextBoxRole()); + var _InputTimeRole = _interopRequireDefault(require_InputTimeRole()); + var _LabelRole = _interopRequireDefault(require_LabelRole()); + var _LegendRole = _interopRequireDefault(require_LegendRole()); + var _LineBreakRole = _interopRequireDefault(require_LineBreakRole()); + var _LinkRole = _interopRequireDefault(require_LinkRole()); + var _ListBoxOptionRole = _interopRequireDefault(require_ListBoxOptionRole()); + var _ListBoxRole = _interopRequireDefault(require_ListBoxRole()); + var _ListItemRole = _interopRequireDefault(require_ListItemRole()); + var _ListMarkerRole = _interopRequireDefault(require_ListMarkerRole()); + var _ListRole = _interopRequireDefault(require_ListRole()); + var _LogRole = _interopRequireDefault(require_LogRole()); + var _MainRole = _interopRequireDefault(require_MainRole()); + var _MarkRole = _interopRequireDefault(require_MarkRole()); + var _MarqueeRole = _interopRequireDefault(require_MarqueeRole()); + var _MathRole = _interopRequireDefault(require_MathRole()); + var _MenuBarRole = _interopRequireDefault(require_MenuBarRole()); + var _MenuButtonRole = _interopRequireDefault(require_MenuButtonRole()); + var _MenuItemRole = _interopRequireDefault(require_MenuItemRole()); + var _MenuItemCheckBoxRole = _interopRequireDefault(require_MenuItemCheckBoxRole()); + var _MenuItemRadioRole = _interopRequireDefault(require_MenuItemRadioRole()); + var _MenuListOptionRole = _interopRequireDefault(require_MenuListOptionRole()); + var _MenuListPopupRole = _interopRequireDefault(require_MenuListPopupRole()); + var _MenuRole = _interopRequireDefault(require_MenuRole()); + var _MeterRole = _interopRequireDefault(require_MeterRole()); + var _NavigationRole = _interopRequireDefault(require_NavigationRole()); + var _NoneRole = _interopRequireDefault(require_NoneRole()); + var _NoteRole = _interopRequireDefault(require_NoteRole()); + var _OutlineRole = _interopRequireDefault(require_OutlineRole()); + var _ParagraphRole = _interopRequireDefault(require_ParagraphRole()); + var _PopUpButtonRole = _interopRequireDefault(require_PopUpButtonRole()); + var _PreRole = _interopRequireDefault(require_PreRole()); + var _PresentationalRole = _interopRequireDefault(require_PresentationalRole()); + var _ProgressIndicatorRole = _interopRequireDefault(require_ProgressIndicatorRole()); + var _RadioButtonRole = _interopRequireDefault(require_RadioButtonRole()); + var _RadioGroupRole = _interopRequireDefault(require_RadioGroupRole()); + var _RegionRole = _interopRequireDefault(require_RegionRole()); + var _RootWebAreaRole = _interopRequireDefault(require_RootWebAreaRole()); + var _RowHeaderRole = _interopRequireDefault(require_RowHeaderRole()); + var _RowRole = _interopRequireDefault(require_RowRole()); + var _RubyRole = _interopRequireDefault(require_RubyRole()); + var _RulerRole = _interopRequireDefault(require_RulerRole()); + var _ScrollAreaRole = _interopRequireDefault(require_ScrollAreaRole()); + var _ScrollBarRole = _interopRequireDefault(require_ScrollBarRole()); + var _SeamlessWebAreaRole = _interopRequireDefault(require_SeamlessWebAreaRole()); + var _SearchRole = _interopRequireDefault(require_SearchRole()); + var _SearchBoxRole = _interopRequireDefault(require_SearchBoxRole()); + var _SliderRole = _interopRequireDefault(require_SliderRole()); + var _SliderThumbRole = _interopRequireDefault(require_SliderThumbRole()); + var _SpinButtonRole = _interopRequireDefault(require_SpinButtonRole()); + var _SpinButtonPartRole = _interopRequireDefault(require_SpinButtonPartRole()); + var _SplitterRole = _interopRequireDefault(require_SplitterRole()); + var _StaticTextRole = _interopRequireDefault(require_StaticTextRole()); + var _StatusRole = _interopRequireDefault(require_StatusRole()); + var _SVGRootRole = _interopRequireDefault(require_SVGRootRole()); + var _SwitchRole = _interopRequireDefault(require_SwitchRole()); + var _TabGroupRole = _interopRequireDefault(require_TabGroupRole()); + var _TabRole = _interopRequireDefault(require_TabRole()); + var _TableHeaderContainerRole = _interopRequireDefault(require_TableHeaderContainerRole()); + var _TableRole = _interopRequireDefault(require_TableRole()); + var _TabListRole = _interopRequireDefault(require_TabListRole()); + var _TabPanelRole = _interopRequireDefault(require_TabPanelRole()); + var _TermRole = _interopRequireDefault(require_TermRole()); + var _TextAreaRole = _interopRequireDefault(require_TextAreaRole()); + var _TextFieldRole = _interopRequireDefault(require_TextFieldRole()); + var _TimeRole = _interopRequireDefault(require_TimeRole()); + var _TimerRole = _interopRequireDefault(require_TimerRole()); + var _ToggleButtonRole = _interopRequireDefault(require_ToggleButtonRole()); + var _ToolbarRole = _interopRequireDefault(require_ToolbarRole()); + var _TreeRole = _interopRequireDefault(require_TreeRole()); + var _TreeGridRole = _interopRequireDefault(require_TreeGridRole()); + var _TreeItemRole = _interopRequireDefault(require_TreeItemRole()); + var _UserInterfaceTooltipRole = _interopRequireDefault(require_UserInterfaceTooltipRole()); + var _VideoRole = _interopRequireDefault(require_VideoRole()); + var _WebAreaRole = _interopRequireDefault(require_WebAreaRole()); + var _WindowRole = _interopRequireDefault(require_WindowRole()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + return arr2; + } + function _iterableToArrayLimit(arr, i) { + var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; + if (_i == null) return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + return _arr; + } + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; + } + var AXObjects = [["AbbrRole", _AbbrRole.default], ["AlertDialogRole", _AlertDialogRole.default], ["AlertRole", _AlertRole.default], ["AnnotationRole", _AnnotationRole.default], ["ApplicationRole", _ApplicationRole.default], ["ArticleRole", _ArticleRole.default], ["AudioRole", _AudioRole.default], ["BannerRole", _BannerRole.default], ["BlockquoteRole", _BlockquoteRole.default], ["BusyIndicatorRole", _BusyIndicatorRole.default], ["ButtonRole", _ButtonRole.default], ["CanvasRole", _CanvasRole.default], ["CaptionRole", _CaptionRole.default], ["CellRole", _CellRole.default], ["CheckBoxRole", _CheckBoxRole.default], ["ColorWellRole", _ColorWellRole.default], ["ColumnHeaderRole", _ColumnHeaderRole.default], ["ColumnRole", _ColumnRole.default], ["ComboBoxRole", _ComboBoxRole.default], ["ComplementaryRole", _ComplementaryRole.default], ["ContentInfoRole", _ContentInfoRole.default], ["DateRole", _DateRole.default], ["DateTimeRole", _DateTimeRole.default], ["DefinitionRole", _DefinitionRole.default], ["DescriptionListDetailRole", _DescriptionListDetailRole.default], ["DescriptionListRole", _DescriptionListRole.default], ["DescriptionListTermRole", _DescriptionListTermRole.default], ["DetailsRole", _DetailsRole.default], ["DialogRole", _DialogRole.default], ["DirectoryRole", _DirectoryRole.default], ["DisclosureTriangleRole", _DisclosureTriangleRole.default], ["DivRole", _DivRole.default], ["DocumentRole", _DocumentRole.default], ["EmbeddedObjectRole", _EmbeddedObjectRole.default], ["FeedRole", _FeedRole.default], ["FigcaptionRole", _FigcaptionRole.default], ["FigureRole", _FigureRole.default], ["FooterRole", _FooterRole.default], ["FormRole", _FormRole.default], ["GridRole", _GridRole.default], ["GroupRole", _GroupRole.default], ["HeadingRole", _HeadingRole.default], ["IframePresentationalRole", _IframePresentationalRole.default], ["IframeRole", _IframeRole.default], ["IgnoredRole", _IgnoredRole.default], ["ImageMapLinkRole", _ImageMapLinkRole.default], ["ImageMapRole", _ImageMapRole.default], ["ImageRole", _ImageRole.default], ["InlineTextBoxRole", _InlineTextBoxRole.default], ["InputTimeRole", _InputTimeRole.default], ["LabelRole", _LabelRole.default], ["LegendRole", _LegendRole.default], ["LineBreakRole", _LineBreakRole.default], ["LinkRole", _LinkRole.default], ["ListBoxOptionRole", _ListBoxOptionRole.default], ["ListBoxRole", _ListBoxRole.default], ["ListItemRole", _ListItemRole.default], ["ListMarkerRole", _ListMarkerRole.default], ["ListRole", _ListRole.default], ["LogRole", _LogRole.default], ["MainRole", _MainRole.default], ["MarkRole", _MarkRole.default], ["MarqueeRole", _MarqueeRole.default], ["MathRole", _MathRole.default], ["MenuBarRole", _MenuBarRole.default], ["MenuButtonRole", _MenuButtonRole.default], ["MenuItemRole", _MenuItemRole.default], ["MenuItemCheckBoxRole", _MenuItemCheckBoxRole.default], ["MenuItemRadioRole", _MenuItemRadioRole.default], ["MenuListOptionRole", _MenuListOptionRole.default], ["MenuListPopupRole", _MenuListPopupRole.default], ["MenuRole", _MenuRole.default], ["MeterRole", _MeterRole.default], ["NavigationRole", _NavigationRole.default], ["NoneRole", _NoneRole.default], ["NoteRole", _NoteRole.default], ["OutlineRole", _OutlineRole.default], ["ParagraphRole", _ParagraphRole.default], ["PopUpButtonRole", _PopUpButtonRole.default], ["PreRole", _PreRole.default], ["PresentationalRole", _PresentationalRole.default], ["ProgressIndicatorRole", _ProgressIndicatorRole.default], ["RadioButtonRole", _RadioButtonRole.default], ["RadioGroupRole", _RadioGroupRole.default], ["RegionRole", _RegionRole.default], ["RootWebAreaRole", _RootWebAreaRole.default], ["RowHeaderRole", _RowHeaderRole.default], ["RowRole", _RowRole.default], ["RubyRole", _RubyRole.default], ["RulerRole", _RulerRole.default], ["ScrollAreaRole", _ScrollAreaRole.default], ["ScrollBarRole", _ScrollBarRole.default], ["SeamlessWebAreaRole", _SeamlessWebAreaRole.default], ["SearchRole", _SearchRole.default], ["SearchBoxRole", _SearchBoxRole.default], ["SliderRole", _SliderRole.default], ["SliderThumbRole", _SliderThumbRole.default], ["SpinButtonRole", _SpinButtonRole.default], ["SpinButtonPartRole", _SpinButtonPartRole.default], ["SplitterRole", _SplitterRole.default], ["StaticTextRole", _StaticTextRole.default], ["StatusRole", _StatusRole.default], ["SVGRootRole", _SVGRootRole.default], ["SwitchRole", _SwitchRole.default], ["TabGroupRole", _TabGroupRole.default], ["TabRole", _TabRole.default], ["TableHeaderContainerRole", _TableHeaderContainerRole.default], ["TableRole", _TableRole.default], ["TabListRole", _TabListRole.default], ["TabPanelRole", _TabPanelRole.default], ["TermRole", _TermRole.default], ["TextAreaRole", _TextAreaRole.default], ["TextFieldRole", _TextFieldRole.default], ["TimeRole", _TimeRole.default], ["TimerRole", _TimerRole.default], ["ToggleButtonRole", _ToggleButtonRole.default], ["ToolbarRole", _ToolbarRole.default], ["TreeRole", _TreeRole.default], ["TreeGridRole", _TreeGridRole.default], ["TreeItemRole", _TreeItemRole.default], ["UserInterfaceTooltipRole", _UserInterfaceTooltipRole.default], ["VideoRole", _VideoRole.default], ["WebAreaRole", _WebAreaRole.default], ["WindowRole", _WindowRole.default]]; + var AXObjectsMap = { + entries: function entries() { + return AXObjects; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _AXObjects = AXObjects; _i < _AXObjects.length; _i++) { + var _AXObjects$_i = _slicedToArray(_AXObjects[_i], 2), key = _AXObjects$_i[0], values = _AXObjects$_i[1]; + fn.call(thisArg, values, key, AXObjects); + } + }, + get: function get(key) { + var item = AXObjects.find(function(tuple) { + return tuple[0] === key ? true : false; + }); + return item && item[1]; + }, + has: function has(key) { + return !!AXObjectsMap.get(key); + }, + keys: function keys() { + return AXObjects.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return AXObjects.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = (0, _iterationDecorator.default)(AXObjectsMap, AXObjectsMap.entries()); + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/AXObjectElementMap.js +var require_AXObjectElementMap = __commonJS({ + "node_modules/axobject-query/lib/AXObjectElementMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + var _AXObjectsMap = _interopRequireDefault(require_AXObjectsMap()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _iterableToArrayLimit(arr, i) { + var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; + if (_i == null) return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + return _arr; + } + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; + } + function _createForOfIteratorHelper(o, allowArrayLike) { + var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; + if (!it) { + if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { + if (it) o = it; + var i = 0; + var F = function F2() { + }; + return { s: F, n: function n() { + if (i >= o.length) return { done: true }; + return { done: false, value: o[i++] }; + }, e: function e(_e2) { + throw _e2; + }, f: F }; + } + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var normalCompletion = true, didErr = false, err; + return { s: function s() { + it = it.call(o); + }, n: function n() { + var step = it.next(); + normalCompletion = step.done; + return step; + }, e: function e(_e3) { + didErr = true; + err = _e3; + }, f: function f() { + try { + if (!normalCompletion && it.return != null) it.return(); + } finally { + if (didErr) throw err; + } + } }; + } + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + return arr2; + } + var AXObjectElements = []; + var _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()); + var _step; + try { + _loop = function _loop2() { + var _step$value = _slicedToArray(_step.value, 2), name = _step$value[0], def = _step$value[1]; + var relatedConcepts = def.relatedConcepts; + if (Array.isArray(relatedConcepts)) { + relatedConcepts.forEach(function(relation) { + if (relation.module === "HTML") { + var concept = relation.concept; + if (concept) { + var index = AXObjectElements.findIndex(function(_ref5) { + var _ref6 = _slicedToArray(_ref5, 1), key = _ref6[0]; + return key === name; + }); + if (index === -1) { + AXObjectElements.push([name, []]); + index = AXObjectElements.length - 1; + } + AXObjectElements[index][1].push(concept); + } + } + }); + } + }; + for (_iterator.s(); !(_step = _iterator.n()).done; ) { + _loop(); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + var _loop; + var AXObjectElementMap = { + entries: function entries() { + return AXObjectElements; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _AXObjectElements = AXObjectElements; _i < _AXObjectElements.length; _i++) { + var _AXObjectElements$_i = _slicedToArray(_AXObjectElements[_i], 2), key = _AXObjectElements$_i[0], values = _AXObjectElements$_i[1]; + fn.call(thisArg, values, key, AXObjectElements); + } + }, + get: function get(key) { + var item = AXObjectElements.find(function(tuple) { + return tuple[0] === key ? true : false; + }); + return item && item[1]; + }, + has: function has(key) { + return !!AXObjectElementMap.get(key); + }, + keys: function keys() { + return AXObjectElements.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return AXObjectElements.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = (0, _iterationDecorator.default)(AXObjectElementMap, AXObjectElementMap.entries()); + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/AXObjectRoleMap.js +var require_AXObjectRoleMap = __commonJS({ + "node_modules/axobject-query/lib/AXObjectRoleMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + var _AXObjectsMap = _interopRequireDefault(require_AXObjectsMap()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _iterableToArrayLimit(arr, i) { + var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; + if (_i == null) return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + return _arr; + } + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; + } + function _createForOfIteratorHelper(o, allowArrayLike) { + var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; + if (!it) { + if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { + if (it) o = it; + var i = 0; + var F = function F2() { + }; + return { s: F, n: function n() { + if (i >= o.length) return { done: true }; + return { done: false, value: o[i++] }; + }, e: function e(_e2) { + throw _e2; + }, f: F }; + } + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var normalCompletion = true, didErr = false, err; + return { s: function s() { + it = it.call(o); + }, n: function n() { + var step = it.next(); + normalCompletion = step.done; + return step; + }, e: function e(_e3) { + didErr = true; + err = _e3; + }, f: function f() { + try { + if (!normalCompletion && it.return != null) it.return(); + } finally { + if (didErr) throw err; + } + } }; + } + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + return arr2; + } + var AXObjectRoleElements = []; + var _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()); + var _step; + try { + _loop = function _loop2() { + var _step$value = _slicedToArray(_step.value, 2), name = _step$value[0], def = _step$value[1]; + var relatedConcepts = def.relatedConcepts; + if (Array.isArray(relatedConcepts)) { + relatedConcepts.forEach(function(relation) { + if (relation.module === "ARIA") { + var concept = relation.concept; + if (concept) { + var index = AXObjectRoleElements.findIndex(function(_ref5) { + var _ref6 = _slicedToArray(_ref5, 1), key = _ref6[0]; + return key === name; + }); + if (index === -1) { + AXObjectRoleElements.push([name, []]); + index = AXObjectRoleElements.length - 1; + } + AXObjectRoleElements[index][1].push(concept); + } + } + }); + } + }; + for (_iterator.s(); !(_step = _iterator.n()).done; ) { + _loop(); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + var _loop; + var AXObjectRoleMap = { + entries: function entries() { + return AXObjectRoleElements; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _AXObjectRoleElements = AXObjectRoleElements; _i < _AXObjectRoleElements.length; _i++) { + var _AXObjectRoleElements2 = _slicedToArray(_AXObjectRoleElements[_i], 2), key = _AXObjectRoleElements2[0], values = _AXObjectRoleElements2[1]; + fn.call(thisArg, values, key, AXObjectRoleElements); + } + }, + get: function get(key) { + var item = AXObjectRoleElements.find(function(tuple) { + return tuple[0] === key ? true : false; + }); + return item && item[1]; + }, + has: function has(key) { + return !!AXObjectRoleMap.get(key); + }, + keys: function keys() { + return AXObjectRoleElements.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return AXObjectRoleElements.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = (0, _iterationDecorator.default)(AXObjectRoleMap, AXObjectRoleMap.entries()); + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/elementAXObjectMap.js +var require_elementAXObjectMap = __commonJS({ + "node_modules/axobject-query/lib/elementAXObjectMap.js"(exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.default = void 0; + var _AXObjectsMap = _interopRequireDefault(require_AXObjectsMap()); + var _iterationDecorator = _interopRequireDefault(require_iterationDecorator()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _iterableToArrayLimit(arr, i) { + var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; + if (_i == null) return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + return _arr; + } + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; + } + function _createForOfIteratorHelper(o, allowArrayLike) { + var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; + if (!it) { + if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { + if (it) o = it; + var i = 0; + var F = function F2() { + }; + return { s: F, n: function n() { + if (i >= o.length) return { done: true }; + return { done: false, value: o[i++] }; + }, e: function e(_e2) { + throw _e2; + }, f: F }; + } + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var normalCompletion = true, didErr = false, err; + return { s: function s() { + it = it.call(o); + }, n: function n() { + var step = it.next(); + normalCompletion = step.done; + return step; + }, e: function e(_e3) { + didErr = true; + err = _e3; + }, f: function f() { + try { + if (!normalCompletion && it.return != null) it.return(); + } finally { + if (didErr) throw err; + } + } }; + } + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + return arr2; + } + var elementAXObjects = []; + var _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()); + var _step; + try { + _loop = function _loop2() { + var _step$value = _slicedToArray(_step.value, 2), name = _step$value[0], def = _step$value[1]; + var relatedConcepts = def.relatedConcepts; + if (Array.isArray(relatedConcepts)) { + relatedConcepts.forEach(function(relation) { + if (relation.module === "HTML") { + var concept = relation.concept; + if (concept != null) { + var conceptStr = JSON.stringify(concept); + var axObjects; + var index = 0; + for (; index < elementAXObjects.length; index++) { + var key = elementAXObjects[index][0]; + if (JSON.stringify(key) === conceptStr) { + axObjects = elementAXObjects[index][1]; + break; + } + } + if (!Array.isArray(axObjects)) { + axObjects = []; + } + var loc = axObjects.findIndex(function(item) { + return item === name; + }); + if (loc === -1) { + axObjects.push(name); + } + if (index < elementAXObjects.length) { + elementAXObjects.splice(index, 1, [concept, axObjects]); + } else { + elementAXObjects.push([concept, axObjects]); + } + } + } + }); + } + }; + for (_iterator.s(); !(_step = _iterator.n()).done; ) { + _loop(); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + var _loop; + function deepAxObjectModelRelationshipConceptAttributeCheck(a, b) { + if (a === void 0 && b !== void 0) { + return false; + } + if (a !== void 0 && b === void 0) { + return false; + } + if (a !== void 0 && b !== void 0) { + if (a.length != b.length) { + return false; + } + for (var i = 0; i < a.length; i++) { + if (b[i].name !== a[i].name || b[i].value !== a[i].value) { + return false; + } + } + } + return true; + } + var elementAXObjectMap = { + entries: function entries() { + return elementAXObjects; + }, + forEach: function forEach(fn) { + var thisArg = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null; + for (var _i = 0, _elementAXObjects = elementAXObjects; _i < _elementAXObjects.length; _i++) { + var _elementAXObjects$_i = _slicedToArray(_elementAXObjects[_i], 2), key = _elementAXObjects$_i[0], values = _elementAXObjects$_i[1]; + fn.call(thisArg, values, key, elementAXObjects); + } + }, + get: function get(key) { + var item = elementAXObjects.find(function(tuple) { + return key.name === tuple[0].name && deepAxObjectModelRelationshipConceptAttributeCheck(key.attributes, tuple[0].attributes); + }); + return item && item[1]; + }, + has: function has(key) { + return !!elementAXObjectMap.get(key); + }, + keys: function keys() { + return elementAXObjects.map(function(_ref) { + var _ref2 = _slicedToArray(_ref, 1), key = _ref2[0]; + return key; + }); + }, + values: function values() { + return elementAXObjects.map(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), values2 = _ref4[1]; + return values2; + }); + } + }; + var _default = (0, _iterationDecorator.default)(elementAXObjectMap, elementAXObjectMap.entries()); + exports.default = _default; + } +}); + +// node_modules/axobject-query/lib/index.js +var require_lib = __commonJS({ + "node_modules/axobject-query/lib/index.js"(exports) { + Object.defineProperty(exports, "__esModule", { + value: true + }); + exports.elementAXObjects = exports.AXObjects = exports.AXObjectRoles = exports.AXObjectElements = void 0; + var _AXObjectElementMap = _interopRequireDefault(require_AXObjectElementMap()); + var _AXObjectRoleMap = _interopRequireDefault(require_AXObjectRoleMap()); + var _AXObjectsMap = _interopRequireDefault(require_AXObjectsMap()); + var _elementAXObjectMap = _interopRequireDefault(require_elementAXObjectMap()); + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; + } + var AXObjectElements = _AXObjectElementMap.default; + exports.AXObjectElements = AXObjectElements; + var AXObjectRoles = _AXObjectRoleMap.default; + exports.AXObjectRoles = AXObjectRoles; + var AXObjects = _AXObjectsMap.default; + exports.AXObjects = AXObjects; + var elementAXObjects = _elementAXObjectMap.default; + exports.elementAXObjects = elementAXObjects; + } +}); +export default require_lib(); +//# sourceMappingURL=astro___axobject-query.js.map diff --git a/frontend/node_modules/.vite/deps/astro___axobject-query.js.map b/frontend/node_modules/.vite/deps/astro___axobject-query.js.map new file mode 100644 index 00000000..c2e903e1 --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___axobject-query.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": ["../../axobject-query/lib/util/iteratorProxy.js", "../../axobject-query/lib/util/iterationDecorator.js", "../../axobject-query/lib/etc/objects/AbbrRole.js", "../../axobject-query/lib/etc/objects/AlertDialogRole.js", "../../axobject-query/lib/etc/objects/AlertRole.js", "../../axobject-query/lib/etc/objects/AnnotationRole.js", "../../axobject-query/lib/etc/objects/ApplicationRole.js", "../../axobject-query/lib/etc/objects/ArticleRole.js", "../../axobject-query/lib/etc/objects/AudioRole.js", "../../axobject-query/lib/etc/objects/BannerRole.js", "../../axobject-query/lib/etc/objects/BlockquoteRole.js", "../../axobject-query/lib/etc/objects/BusyIndicatorRole.js", "../../axobject-query/lib/etc/objects/ButtonRole.js", "../../axobject-query/lib/etc/objects/CanvasRole.js", "../../axobject-query/lib/etc/objects/CaptionRole.js", "../../axobject-query/lib/etc/objects/CellRole.js", "../../axobject-query/lib/etc/objects/CheckBoxRole.js", "../../axobject-query/lib/etc/objects/ColorWellRole.js", "../../axobject-query/lib/etc/objects/ColumnHeaderRole.js", "../../axobject-query/lib/etc/objects/ColumnRole.js", "../../axobject-query/lib/etc/objects/ComboBoxRole.js", "../../axobject-query/lib/etc/objects/ComplementaryRole.js", "../../axobject-query/lib/etc/objects/ContentInfoRole.js", "../../axobject-query/lib/etc/objects/DateRole.js", "../../axobject-query/lib/etc/objects/DateTimeRole.js", "../../axobject-query/lib/etc/objects/DefinitionRole.js", "../../axobject-query/lib/etc/objects/DescriptionListDetailRole.js", "../../axobject-query/lib/etc/objects/DescriptionListRole.js", "../../axobject-query/lib/etc/objects/DescriptionListTermRole.js", "../../axobject-query/lib/etc/objects/DetailsRole.js", "../../axobject-query/lib/etc/objects/DialogRole.js", "../../axobject-query/lib/etc/objects/DirectoryRole.js", "../../axobject-query/lib/etc/objects/DisclosureTriangleRole.js", "../../axobject-query/lib/etc/objects/DivRole.js", "../../axobject-query/lib/etc/objects/DocumentRole.js", "../../axobject-query/lib/etc/objects/EmbeddedObjectRole.js", "../../axobject-query/lib/etc/objects/FeedRole.js", "../../axobject-query/lib/etc/objects/FigcaptionRole.js", "../../axobject-query/lib/etc/objects/FigureRole.js", "../../axobject-query/lib/etc/objects/FooterRole.js", "../../axobject-query/lib/etc/objects/FormRole.js", "../../axobject-query/lib/etc/objects/GridRole.js", "../../axobject-query/lib/etc/objects/GroupRole.js", "../../axobject-query/lib/etc/objects/HeadingRole.js", "../../axobject-query/lib/etc/objects/IframePresentationalRole.js", "../../axobject-query/lib/etc/objects/IframeRole.js", "../../axobject-query/lib/etc/objects/IgnoredRole.js", "../../axobject-query/lib/etc/objects/ImageMapLinkRole.js", "../../axobject-query/lib/etc/objects/ImageMapRole.js", "../../axobject-query/lib/etc/objects/ImageRole.js", "../../axobject-query/lib/etc/objects/InlineTextBoxRole.js", "../../axobject-query/lib/etc/objects/InputTimeRole.js", "../../axobject-query/lib/etc/objects/LabelRole.js", "../../axobject-query/lib/etc/objects/LegendRole.js", "../../axobject-query/lib/etc/objects/LineBreakRole.js", "../../axobject-query/lib/etc/objects/LinkRole.js", "../../axobject-query/lib/etc/objects/ListBoxOptionRole.js", "../../axobject-query/lib/etc/objects/ListBoxRole.js", "../../axobject-query/lib/etc/objects/ListItemRole.js", "../../axobject-query/lib/etc/objects/ListMarkerRole.js", "../../axobject-query/lib/etc/objects/ListRole.js", "../../axobject-query/lib/etc/objects/LogRole.js", "../../axobject-query/lib/etc/objects/MainRole.js", "../../axobject-query/lib/etc/objects/MarkRole.js", "../../axobject-query/lib/etc/objects/MarqueeRole.js", "../../axobject-query/lib/etc/objects/MathRole.js", "../../axobject-query/lib/etc/objects/MenuBarRole.js", "../../axobject-query/lib/etc/objects/MenuButtonRole.js", "../../axobject-query/lib/etc/objects/MenuItemRole.js", "../../axobject-query/lib/etc/objects/MenuItemCheckBoxRole.js", "../../axobject-query/lib/etc/objects/MenuItemRadioRole.js", "../../axobject-query/lib/etc/objects/MenuListOptionRole.js", "../../axobject-query/lib/etc/objects/MenuListPopupRole.js", "../../axobject-query/lib/etc/objects/MenuRole.js", "../../axobject-query/lib/etc/objects/MeterRole.js", "../../axobject-query/lib/etc/objects/NavigationRole.js", "../../axobject-query/lib/etc/objects/NoneRole.js", "../../axobject-query/lib/etc/objects/NoteRole.js", "../../axobject-query/lib/etc/objects/OutlineRole.js", "../../axobject-query/lib/etc/objects/ParagraphRole.js", "../../axobject-query/lib/etc/objects/PopUpButtonRole.js", "../../axobject-query/lib/etc/objects/PreRole.js", "../../axobject-query/lib/etc/objects/PresentationalRole.js", "../../axobject-query/lib/etc/objects/ProgressIndicatorRole.js", "../../axobject-query/lib/etc/objects/RadioButtonRole.js", "../../axobject-query/lib/etc/objects/RadioGroupRole.js", "../../axobject-query/lib/etc/objects/RegionRole.js", "../../axobject-query/lib/etc/objects/RootWebAreaRole.js", "../../axobject-query/lib/etc/objects/RowHeaderRole.js", "../../axobject-query/lib/etc/objects/RowRole.js", "../../axobject-query/lib/etc/objects/RubyRole.js", "../../axobject-query/lib/etc/objects/RulerRole.js", "../../axobject-query/lib/etc/objects/ScrollAreaRole.js", "../../axobject-query/lib/etc/objects/ScrollBarRole.js", "../../axobject-query/lib/etc/objects/SeamlessWebAreaRole.js", "../../axobject-query/lib/etc/objects/SearchRole.js", "../../axobject-query/lib/etc/objects/SearchBoxRole.js", "../../axobject-query/lib/etc/objects/SliderRole.js", "../../axobject-query/lib/etc/objects/SliderThumbRole.js", "../../axobject-query/lib/etc/objects/SpinButtonRole.js", "../../axobject-query/lib/etc/objects/SpinButtonPartRole.js", "../../axobject-query/lib/etc/objects/SplitterRole.js", "../../axobject-query/lib/etc/objects/StaticTextRole.js", "../../axobject-query/lib/etc/objects/StatusRole.js", "../../axobject-query/lib/etc/objects/SVGRootRole.js", "../../axobject-query/lib/etc/objects/SwitchRole.js", "../../axobject-query/lib/etc/objects/TabGroupRole.js", "../../axobject-query/lib/etc/objects/TabRole.js", "../../axobject-query/lib/etc/objects/TableHeaderContainerRole.js", "../../axobject-query/lib/etc/objects/TableRole.js", "../../axobject-query/lib/etc/objects/TabListRole.js", "../../axobject-query/lib/etc/objects/TabPanelRole.js", "../../axobject-query/lib/etc/objects/TermRole.js", "../../axobject-query/lib/etc/objects/TextAreaRole.js", "../../axobject-query/lib/etc/objects/TextFieldRole.js", "../../axobject-query/lib/etc/objects/TimeRole.js", "../../axobject-query/lib/etc/objects/TimerRole.js", "../../axobject-query/lib/etc/objects/ToggleButtonRole.js", "../../axobject-query/lib/etc/objects/ToolbarRole.js", "../../axobject-query/lib/etc/objects/TreeRole.js", "../../axobject-query/lib/etc/objects/TreeGridRole.js", "../../axobject-query/lib/etc/objects/TreeItemRole.js", "../../axobject-query/lib/etc/objects/UserInterfaceTooltipRole.js", "../../axobject-query/lib/etc/objects/VideoRole.js", "../../axobject-query/lib/etc/objects/WebAreaRole.js", "../../axobject-query/lib/etc/objects/WindowRole.js", "../../axobject-query/lib/AXObjectsMap.js", "../../axobject-query/lib/AXObjectElementMap.js", "../../axobject-query/lib/AXObjectRoleMap.js", "../../axobject-query/lib/elementAXObjectMap.js", "../../axobject-query/lib/index.js"], + "sourcesContent": ["\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n// eslint-disable-next-line no-unused-vars\nfunction iteratorProxy() {\n var values = this;\n var index = 0;\n var iter = {\n '@@iterator': function iterator() {\n return iter;\n },\n next: function next() {\n if (index < values.length) {\n var value = values[index];\n index = index + 1;\n return {\n done: false,\n value: value\n };\n } else {\n return {\n done: true\n };\n }\n }\n };\n return iter;\n}\nvar _default = iteratorProxy;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = iterationDecorator;\nvar _iteratorProxy = _interopRequireDefault(require(\"./iteratorProxy\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\nfunction iterationDecorator(collection, entries) {\n if (typeof Symbol === 'function' && _typeof(Symbol.iterator) === 'symbol') {\n Object.defineProperty(collection, Symbol.iterator, {\n value: _iteratorProxy.default.bind(entries)\n });\n }\n return collection;\n}", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar AbbrRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'abbr'\n }\n }],\n type: 'structure'\n};\nvar _default = AbbrRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar AlertDialogRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'alertdialog'\n }\n }],\n type: 'window'\n};\nvar _default = AlertDialogRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar AlertRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'alert'\n }\n }],\n type: 'structure'\n};\nvar _default = AlertRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar AnnotationRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = AnnotationRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ApplicationRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'application'\n }\n }],\n type: 'window'\n};\nvar _default = ApplicationRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ArticleRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'article'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'article'\n }\n }],\n type: 'structure'\n};\nvar _default = ArticleRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar AudioRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'audio'\n }\n }],\n type: 'widget'\n};\nvar _default = AudioRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar BannerRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'banner'\n }\n }],\n type: 'structure'\n};\nvar _default = BannerRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar BlockquoteRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'blockquote'\n }\n }],\n type: 'structure'\n};\nvar _default = BlockquoteRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar BusyIndicatorRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n attributes: [{\n name: 'aria-busy',\n value: 'true'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = BusyIndicatorRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ButtonRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'button'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'button'\n }\n }],\n type: 'widget'\n};\nvar _default = ButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar CanvasRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'canvas'\n }\n }],\n type: 'widget'\n};\nvar _default = CanvasRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar CaptionRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'caption'\n }\n }],\n type: 'structure'\n};\nvar _default = CaptionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar CellRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'cell'\n }\n }, {\n module: 'ARIA',\n concept: {\n name: 'gridcell'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'td'\n }\n }],\n type: 'widget'\n};\nvar _default = CellRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar CheckBoxRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'checkbox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'checkbox'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = CheckBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ColorWellRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'color'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = ColorWellRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ColumnHeaderRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'columnheader'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'th'\n }\n }],\n type: 'widget'\n};\nvar _default = ColumnHeaderRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ColumnRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = ColumnRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ComboBoxRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'combobox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'select'\n }\n }],\n type: 'widget'\n};\nvar _default = ComboBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ComplementaryRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'complementary'\n }\n }],\n type: 'structure'\n};\nvar _default = ComplementaryRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ContentInfoRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'structureinfo'\n }\n }],\n type: 'structure'\n};\nvar _default = ContentInfoRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DateRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'date'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = DateRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DateTimeRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'datetime'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = DateTimeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DefinitionRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'dfn'\n }\n }],\n type: 'structure'\n};\nvar _default = DefinitionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DescriptionListDetailRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'dd'\n }\n }],\n type: 'structure'\n};\nvar _default = DescriptionListDetailRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DescriptionListRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'dl'\n }\n }],\n type: 'structure'\n};\nvar _default = DescriptionListRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DescriptionListTermRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'dt'\n }\n }],\n type: 'structure'\n};\nvar _default = DescriptionListTermRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DetailsRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'details'\n }\n }],\n type: 'structure'\n};\nvar _default = DetailsRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DialogRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'dialog'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'dialog'\n }\n }],\n type: 'window'\n};\nvar _default = DialogRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DirectoryRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'directory'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'dir'\n }\n }],\n type: 'structure'\n};\nvar _default = DirectoryRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DisclosureTriangleRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n constraints: ['scoped to a details element'],\n name: 'summary'\n }\n }],\n type: 'widget'\n};\nvar _default = DisclosureTriangleRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DivRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'div'\n }\n }],\n type: 'generic'\n};\nvar _default = DivRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar DocumentRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'document'\n }\n }],\n type: 'structure'\n};\nvar _default = DocumentRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar EmbeddedObjectRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'embed'\n }\n }],\n type: 'widget'\n};\nvar _default = EmbeddedObjectRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar FeedRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'feed'\n }\n }],\n type: 'structure'\n};\nvar _default = FeedRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar FigcaptionRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'figcaption'\n }\n }],\n type: 'structure'\n};\nvar _default = FigcaptionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar FigureRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'figure'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'figure'\n }\n }],\n type: 'structure'\n};\nvar _default = FigureRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar FooterRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'footer'\n }\n }],\n type: 'structure'\n};\nvar _default = FooterRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar FormRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'form'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'form'\n }\n }],\n type: 'structure'\n};\nvar _default = FormRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar GridRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'grid'\n }\n }],\n type: 'widget'\n};\nvar _default = GridRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar GroupRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'group'\n }\n }],\n type: 'structure'\n};\nvar _default = GroupRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar HeadingRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'heading'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h1'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h2'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h3'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h4'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h5'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'h6'\n }\n }],\n type: 'structure'\n};\nvar _default = HeadingRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar IframePresentationalRole = {\n relatedConcepts: [],\n type: 'window'\n};\nvar _default = IframePresentationalRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar IframeRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'iframe'\n }\n }],\n type: 'window'\n};\nvar _default = IframeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar IgnoredRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = IgnoredRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ImageMapLinkRole = {\n relatedConcepts: [],\n type: 'widget'\n};\nvar _default = ImageMapLinkRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ImageMapRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'img',\n attributes: [{\n name: 'usemap'\n }]\n }\n }],\n type: 'structure'\n};\nvar _default = ImageMapRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ImageRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'img'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'img'\n }\n }],\n type: 'structure'\n};\nvar _default = ImageRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar InlineTextBoxRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'input'\n }\n }],\n type: 'widget'\n};\nvar _default = InlineTextBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar InputTimeRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'time'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = InputTimeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar LabelRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'label'\n }\n }],\n type: 'structure'\n};\nvar _default = LabelRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar LegendRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'legend'\n }\n }],\n type: 'structure'\n};\nvar _default = LegendRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar LineBreakRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'br'\n }\n }],\n type: 'structure'\n};\nvar _default = LineBreakRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar LinkRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'link'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'a',\n attributes: [{\n name: 'href'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = LinkRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ListBoxOptionRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'option'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'option'\n }\n }],\n type: 'widget'\n};\nvar _default = ListBoxOptionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ListBoxRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'listbox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'datalist'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'select'\n }\n }],\n type: 'widget'\n};\nvar _default = ListBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ListItemRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'listitem'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'li'\n }\n }],\n type: 'structure'\n};\nvar _default = ListItemRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ListMarkerRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = ListMarkerRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ListRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'list'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'ul'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'ol'\n }\n }],\n type: 'structure'\n};\nvar _default = ListRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar LogRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'log'\n }\n }],\n type: 'structure'\n};\nvar _default = LogRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MainRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'main'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'main'\n }\n }],\n type: 'structure'\n};\nvar _default = MainRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MarkRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'mark'\n }\n }],\n type: 'structure'\n};\nvar _default = MarkRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MarqueeRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'marquee'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'marquee'\n }\n }],\n type: 'structure'\n};\nvar _default = MarqueeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MathRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'math'\n }\n }],\n type: 'structure'\n};\nvar _default = MathRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuBarRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'menubar'\n }\n }],\n type: 'structure'\n};\nvar _default = MenuBarRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuButtonRole = {\n relatedConcepts: [],\n type: 'widget'\n};\nvar _default = MenuButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuItemRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'menuitem'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'menuitem'\n }\n }],\n type: 'widget'\n};\nvar _default = MenuItemRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuItemCheckBoxRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'menuitemcheckbox'\n }\n }],\n type: 'widget'\n};\nvar _default = MenuItemCheckBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuItemRadioRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'menuitemradio'\n }\n }],\n type: 'widget'\n};\nvar _default = MenuItemRadioRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuListOptionRole = {\n relatedConcepts: [],\n type: 'widget'\n};\nvar _default = MenuListOptionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuListPopupRole = {\n relatedConcepts: [],\n type: 'widget'\n};\nvar _default = MenuListPopupRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MenuRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'menu'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'menu'\n }\n }],\n type: 'structure'\n};\nvar _default = MenuRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar MeterRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'meter'\n }\n }],\n type: 'structure'\n};\nvar _default = MeterRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar NavigationRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'navigation'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'nav'\n }\n }],\n type: 'structure'\n};\nvar _default = NavigationRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar NoneRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'none'\n }\n }],\n type: 'structure'\n};\nvar _default = NoneRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar NoteRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'note'\n }\n }],\n type: 'structure'\n};\nvar _default = NoteRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar OutlineRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = OutlineRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ParagraphRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'p'\n }\n }],\n type: 'structure'\n};\nvar _default = ParagraphRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar PopUpButtonRole = {\n relatedConcepts: [],\n type: 'widget'\n};\nvar _default = PopUpButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar PreRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'pre'\n }\n }],\n type: 'structure'\n};\nvar _default = PreRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar PresentationalRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'presentation'\n }\n }],\n type: 'structure'\n};\nvar _default = PresentationalRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ProgressIndicatorRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'progressbar'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'progress'\n }\n }],\n type: 'structure'\n};\nvar _default = ProgressIndicatorRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RadioButtonRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'radio'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'radio'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = RadioButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RadioGroupRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'radiogroup'\n }\n }],\n type: 'structure'\n};\nvar _default = RadioGroupRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RegionRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'region'\n }\n }],\n type: 'structure'\n};\nvar _default = RegionRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RootWebAreaRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = RootWebAreaRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RowHeaderRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'rowheader'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'th',\n attributes: [{\n name: 'scope',\n value: 'row'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = RowHeaderRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RowRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'row'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'tr'\n }\n }],\n type: 'structure'\n};\nvar _default = RowRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RubyRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'ruby'\n }\n }],\n type: 'structure'\n};\nvar _default = RubyRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar RulerRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = RulerRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ScrollAreaRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = ScrollAreaRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ScrollBarRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'scrollbar'\n }\n }],\n type: 'widget'\n};\nvar _default = ScrollBarRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SeamlessWebAreaRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = SeamlessWebAreaRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SearchRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'search'\n }\n }],\n type: 'structure'\n};\nvar _default = SearchRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SearchBoxRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'searchbox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'search'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = SearchBoxRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SliderRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'slider'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'range'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = SliderRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SliderThumbRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = SliderThumbRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SpinButtonRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'spinbutton'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'number'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = SpinButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SpinButtonPartRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = SpinButtonPartRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SplitterRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'separator'\n }\n }],\n type: 'widget'\n};\nvar _default = SplitterRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar StaticTextRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = StaticTextRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar StatusRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'status'\n }\n }],\n type: 'structure'\n};\nvar _default = StatusRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SVGRootRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = SVGRootRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar SwitchRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'switch'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'checkbox'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = SwitchRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TabGroupRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tablist'\n }\n }],\n type: 'structure'\n};\nvar _default = TabGroupRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TabRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tab'\n }\n }],\n type: 'widget'\n};\nvar _default = TabRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TableHeaderContainerRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = TableHeaderContainerRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TableRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'table'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'table'\n }\n }],\n type: 'structure'\n};\nvar _default = TableRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TabListRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tablist'\n }\n }],\n type: 'structure'\n};\nvar _default = TabListRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TabPanelRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tabpanel'\n }\n }],\n type: 'structure'\n};\nvar _default = TabPanelRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TermRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'term'\n }\n }],\n type: 'structure'\n};\nvar _default = TermRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TextAreaRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n attributes: [{\n name: 'aria-multiline',\n value: 'true'\n }],\n name: 'textbox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'textarea'\n }\n }],\n type: 'widget'\n};\nvar _default = TextAreaRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TextFieldRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'textbox'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input'\n }\n }, {\n module: 'HTML',\n concept: {\n name: 'input',\n attributes: [{\n name: 'type',\n value: 'text'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = TextFieldRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TimeRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'time'\n }\n }],\n type: 'structure'\n};\nvar _default = TimeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TimerRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'timer'\n }\n }],\n type: 'structure'\n};\nvar _default = TimerRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ToggleButtonRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n attributes: [{\n name: 'aria-pressed'\n }]\n }\n }],\n type: 'widget'\n};\nvar _default = ToggleButtonRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar ToolbarRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'toolbar'\n }\n }],\n type: 'structure'\n};\nvar _default = ToolbarRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TreeRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tree'\n }\n }],\n type: 'widget'\n};\nvar _default = TreeRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TreeGridRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'treegrid'\n }\n }],\n type: 'widget'\n};\nvar _default = TreeGridRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar TreeItemRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'treeitem'\n }\n }],\n type: 'widget'\n};\nvar _default = TreeItemRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar UserInterfaceTooltipRole = {\n relatedConcepts: [{\n module: 'ARIA',\n concept: {\n name: 'tooltip'\n }\n }],\n type: 'structure'\n};\nvar _default = UserInterfaceTooltipRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar VideoRole = {\n relatedConcepts: [{\n module: 'HTML',\n concept: {\n name: 'video'\n }\n }],\n type: 'widget'\n};\nvar _default = VideoRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar WebAreaRole = {\n relatedConcepts: [],\n type: 'structure'\n};\nvar _default = WebAreaRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar WindowRole = {\n relatedConcepts: [],\n type: 'window'\n};\nvar _default = WindowRole;\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _AbbrRole = _interopRequireDefault(require(\"./etc/objects/AbbrRole\"));\nvar _AlertDialogRole = _interopRequireDefault(require(\"./etc/objects/AlertDialogRole\"));\nvar _AlertRole = _interopRequireDefault(require(\"./etc/objects/AlertRole\"));\nvar _AnnotationRole = _interopRequireDefault(require(\"./etc/objects/AnnotationRole\"));\nvar _ApplicationRole = _interopRequireDefault(require(\"./etc/objects/ApplicationRole\"));\nvar _ArticleRole = _interopRequireDefault(require(\"./etc/objects/ArticleRole\"));\nvar _AudioRole = _interopRequireDefault(require(\"./etc/objects/AudioRole\"));\nvar _BannerRole = _interopRequireDefault(require(\"./etc/objects/BannerRole\"));\nvar _BlockquoteRole = _interopRequireDefault(require(\"./etc/objects/BlockquoteRole\"));\nvar _BusyIndicatorRole = _interopRequireDefault(require(\"./etc/objects/BusyIndicatorRole\"));\nvar _ButtonRole = _interopRequireDefault(require(\"./etc/objects/ButtonRole\"));\nvar _CanvasRole = _interopRequireDefault(require(\"./etc/objects/CanvasRole\"));\nvar _CaptionRole = _interopRequireDefault(require(\"./etc/objects/CaptionRole\"));\nvar _CellRole = _interopRequireDefault(require(\"./etc/objects/CellRole\"));\nvar _CheckBoxRole = _interopRequireDefault(require(\"./etc/objects/CheckBoxRole\"));\nvar _ColorWellRole = _interopRequireDefault(require(\"./etc/objects/ColorWellRole\"));\nvar _ColumnHeaderRole = _interopRequireDefault(require(\"./etc/objects/ColumnHeaderRole\"));\nvar _ColumnRole = _interopRequireDefault(require(\"./etc/objects/ColumnRole\"));\nvar _ComboBoxRole = _interopRequireDefault(require(\"./etc/objects/ComboBoxRole\"));\nvar _ComplementaryRole = _interopRequireDefault(require(\"./etc/objects/ComplementaryRole\"));\nvar _ContentInfoRole = _interopRequireDefault(require(\"./etc/objects/ContentInfoRole\"));\nvar _DateRole = _interopRequireDefault(require(\"./etc/objects/DateRole\"));\nvar _DateTimeRole = _interopRequireDefault(require(\"./etc/objects/DateTimeRole\"));\nvar _DefinitionRole = _interopRequireDefault(require(\"./etc/objects/DefinitionRole\"));\nvar _DescriptionListDetailRole = _interopRequireDefault(require(\"./etc/objects/DescriptionListDetailRole\"));\nvar _DescriptionListRole = _interopRequireDefault(require(\"./etc/objects/DescriptionListRole\"));\nvar _DescriptionListTermRole = _interopRequireDefault(require(\"./etc/objects/DescriptionListTermRole\"));\nvar _DetailsRole = _interopRequireDefault(require(\"./etc/objects/DetailsRole\"));\nvar _DialogRole = _interopRequireDefault(require(\"./etc/objects/DialogRole\"));\nvar _DirectoryRole = _interopRequireDefault(require(\"./etc/objects/DirectoryRole\"));\nvar _DisclosureTriangleRole = _interopRequireDefault(require(\"./etc/objects/DisclosureTriangleRole\"));\nvar _DivRole = _interopRequireDefault(require(\"./etc/objects/DivRole\"));\nvar _DocumentRole = _interopRequireDefault(require(\"./etc/objects/DocumentRole\"));\nvar _EmbeddedObjectRole = _interopRequireDefault(require(\"./etc/objects/EmbeddedObjectRole\"));\nvar _FeedRole = _interopRequireDefault(require(\"./etc/objects/FeedRole\"));\nvar _FigcaptionRole = _interopRequireDefault(require(\"./etc/objects/FigcaptionRole\"));\nvar _FigureRole = _interopRequireDefault(require(\"./etc/objects/FigureRole\"));\nvar _FooterRole = _interopRequireDefault(require(\"./etc/objects/FooterRole\"));\nvar _FormRole = _interopRequireDefault(require(\"./etc/objects/FormRole\"));\nvar _GridRole = _interopRequireDefault(require(\"./etc/objects/GridRole\"));\nvar _GroupRole = _interopRequireDefault(require(\"./etc/objects/GroupRole\"));\nvar _HeadingRole = _interopRequireDefault(require(\"./etc/objects/HeadingRole\"));\nvar _IframePresentationalRole = _interopRequireDefault(require(\"./etc/objects/IframePresentationalRole\"));\nvar _IframeRole = _interopRequireDefault(require(\"./etc/objects/IframeRole\"));\nvar _IgnoredRole = _interopRequireDefault(require(\"./etc/objects/IgnoredRole\"));\nvar _ImageMapLinkRole = _interopRequireDefault(require(\"./etc/objects/ImageMapLinkRole\"));\nvar _ImageMapRole = _interopRequireDefault(require(\"./etc/objects/ImageMapRole\"));\nvar _ImageRole = _interopRequireDefault(require(\"./etc/objects/ImageRole\"));\nvar _InlineTextBoxRole = _interopRequireDefault(require(\"./etc/objects/InlineTextBoxRole\"));\nvar _InputTimeRole = _interopRequireDefault(require(\"./etc/objects/InputTimeRole\"));\nvar _LabelRole = _interopRequireDefault(require(\"./etc/objects/LabelRole\"));\nvar _LegendRole = _interopRequireDefault(require(\"./etc/objects/LegendRole\"));\nvar _LineBreakRole = _interopRequireDefault(require(\"./etc/objects/LineBreakRole\"));\nvar _LinkRole = _interopRequireDefault(require(\"./etc/objects/LinkRole\"));\nvar _ListBoxOptionRole = _interopRequireDefault(require(\"./etc/objects/ListBoxOptionRole\"));\nvar _ListBoxRole = _interopRequireDefault(require(\"./etc/objects/ListBoxRole\"));\nvar _ListItemRole = _interopRequireDefault(require(\"./etc/objects/ListItemRole\"));\nvar _ListMarkerRole = _interopRequireDefault(require(\"./etc/objects/ListMarkerRole\"));\nvar _ListRole = _interopRequireDefault(require(\"./etc/objects/ListRole\"));\nvar _LogRole = _interopRequireDefault(require(\"./etc/objects/LogRole\"));\nvar _MainRole = _interopRequireDefault(require(\"./etc/objects/MainRole\"));\nvar _MarkRole = _interopRequireDefault(require(\"./etc/objects/MarkRole\"));\nvar _MarqueeRole = _interopRequireDefault(require(\"./etc/objects/MarqueeRole\"));\nvar _MathRole = _interopRequireDefault(require(\"./etc/objects/MathRole\"));\nvar _MenuBarRole = _interopRequireDefault(require(\"./etc/objects/MenuBarRole\"));\nvar _MenuButtonRole = _interopRequireDefault(require(\"./etc/objects/MenuButtonRole\"));\nvar _MenuItemRole = _interopRequireDefault(require(\"./etc/objects/MenuItemRole\"));\nvar _MenuItemCheckBoxRole = _interopRequireDefault(require(\"./etc/objects/MenuItemCheckBoxRole\"));\nvar _MenuItemRadioRole = _interopRequireDefault(require(\"./etc/objects/MenuItemRadioRole\"));\nvar _MenuListOptionRole = _interopRequireDefault(require(\"./etc/objects/MenuListOptionRole\"));\nvar _MenuListPopupRole = _interopRequireDefault(require(\"./etc/objects/MenuListPopupRole\"));\nvar _MenuRole = _interopRequireDefault(require(\"./etc/objects/MenuRole\"));\nvar _MeterRole = _interopRequireDefault(require(\"./etc/objects/MeterRole\"));\nvar _NavigationRole = _interopRequireDefault(require(\"./etc/objects/NavigationRole\"));\nvar _NoneRole = _interopRequireDefault(require(\"./etc/objects/NoneRole\"));\nvar _NoteRole = _interopRequireDefault(require(\"./etc/objects/NoteRole\"));\nvar _OutlineRole = _interopRequireDefault(require(\"./etc/objects/OutlineRole\"));\nvar _ParagraphRole = _interopRequireDefault(require(\"./etc/objects/ParagraphRole\"));\nvar _PopUpButtonRole = _interopRequireDefault(require(\"./etc/objects/PopUpButtonRole\"));\nvar _PreRole = _interopRequireDefault(require(\"./etc/objects/PreRole\"));\nvar _PresentationalRole = _interopRequireDefault(require(\"./etc/objects/PresentationalRole\"));\nvar _ProgressIndicatorRole = _interopRequireDefault(require(\"./etc/objects/ProgressIndicatorRole\"));\nvar _RadioButtonRole = _interopRequireDefault(require(\"./etc/objects/RadioButtonRole\"));\nvar _RadioGroupRole = _interopRequireDefault(require(\"./etc/objects/RadioGroupRole\"));\nvar _RegionRole = _interopRequireDefault(require(\"./etc/objects/RegionRole\"));\nvar _RootWebAreaRole = _interopRequireDefault(require(\"./etc/objects/RootWebAreaRole\"));\nvar _RowHeaderRole = _interopRequireDefault(require(\"./etc/objects/RowHeaderRole\"));\nvar _RowRole = _interopRequireDefault(require(\"./etc/objects/RowRole\"));\nvar _RubyRole = _interopRequireDefault(require(\"./etc/objects/RubyRole\"));\nvar _RulerRole = _interopRequireDefault(require(\"./etc/objects/RulerRole\"));\nvar _ScrollAreaRole = _interopRequireDefault(require(\"./etc/objects/ScrollAreaRole\"));\nvar _ScrollBarRole = _interopRequireDefault(require(\"./etc/objects/ScrollBarRole\"));\nvar _SeamlessWebAreaRole = _interopRequireDefault(require(\"./etc/objects/SeamlessWebAreaRole\"));\nvar _SearchRole = _interopRequireDefault(require(\"./etc/objects/SearchRole\"));\nvar _SearchBoxRole = _interopRequireDefault(require(\"./etc/objects/SearchBoxRole\"));\nvar _SliderRole = _interopRequireDefault(require(\"./etc/objects/SliderRole\"));\nvar _SliderThumbRole = _interopRequireDefault(require(\"./etc/objects/SliderThumbRole\"));\nvar _SpinButtonRole = _interopRequireDefault(require(\"./etc/objects/SpinButtonRole\"));\nvar _SpinButtonPartRole = _interopRequireDefault(require(\"./etc/objects/SpinButtonPartRole\"));\nvar _SplitterRole = _interopRequireDefault(require(\"./etc/objects/SplitterRole\"));\nvar _StaticTextRole = _interopRequireDefault(require(\"./etc/objects/StaticTextRole\"));\nvar _StatusRole = _interopRequireDefault(require(\"./etc/objects/StatusRole\"));\nvar _SVGRootRole = _interopRequireDefault(require(\"./etc/objects/SVGRootRole\"));\nvar _SwitchRole = _interopRequireDefault(require(\"./etc/objects/SwitchRole\"));\nvar _TabGroupRole = _interopRequireDefault(require(\"./etc/objects/TabGroupRole\"));\nvar _TabRole = _interopRequireDefault(require(\"./etc/objects/TabRole\"));\nvar _TableHeaderContainerRole = _interopRequireDefault(require(\"./etc/objects/TableHeaderContainerRole\"));\nvar _TableRole = _interopRequireDefault(require(\"./etc/objects/TableRole\"));\nvar _TabListRole = _interopRequireDefault(require(\"./etc/objects/TabListRole\"));\nvar _TabPanelRole = _interopRequireDefault(require(\"./etc/objects/TabPanelRole\"));\nvar _TermRole = _interopRequireDefault(require(\"./etc/objects/TermRole\"));\nvar _TextAreaRole = _interopRequireDefault(require(\"./etc/objects/TextAreaRole\"));\nvar _TextFieldRole = _interopRequireDefault(require(\"./etc/objects/TextFieldRole\"));\nvar _TimeRole = _interopRequireDefault(require(\"./etc/objects/TimeRole\"));\nvar _TimerRole = _interopRequireDefault(require(\"./etc/objects/TimerRole\"));\nvar _ToggleButtonRole = _interopRequireDefault(require(\"./etc/objects/ToggleButtonRole\"));\nvar _ToolbarRole = _interopRequireDefault(require(\"./etc/objects/ToolbarRole\"));\nvar _TreeRole = _interopRequireDefault(require(\"./etc/objects/TreeRole\"));\nvar _TreeGridRole = _interopRequireDefault(require(\"./etc/objects/TreeGridRole\"));\nvar _TreeItemRole = _interopRequireDefault(require(\"./etc/objects/TreeItemRole\"));\nvar _UserInterfaceTooltipRole = _interopRequireDefault(require(\"./etc/objects/UserInterfaceTooltipRole\"));\nvar _VideoRole = _interopRequireDefault(require(\"./etc/objects/VideoRole\"));\nvar _WebAreaRole = _interopRequireDefault(require(\"./etc/objects/WebAreaRole\"));\nvar _WindowRole = _interopRequireDefault(require(\"./etc/objects/WindowRole\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nvar AXObjects = [['AbbrRole', _AbbrRole.default], ['AlertDialogRole', _AlertDialogRole.default], ['AlertRole', _AlertRole.default], ['AnnotationRole', _AnnotationRole.default], ['ApplicationRole', _ApplicationRole.default], ['ArticleRole', _ArticleRole.default], ['AudioRole', _AudioRole.default], ['BannerRole', _BannerRole.default], ['BlockquoteRole', _BlockquoteRole.default], ['BusyIndicatorRole', _BusyIndicatorRole.default], ['ButtonRole', _ButtonRole.default], ['CanvasRole', _CanvasRole.default], ['CaptionRole', _CaptionRole.default], ['CellRole', _CellRole.default], ['CheckBoxRole', _CheckBoxRole.default], ['ColorWellRole', _ColorWellRole.default], ['ColumnHeaderRole', _ColumnHeaderRole.default], ['ColumnRole', _ColumnRole.default], ['ComboBoxRole', _ComboBoxRole.default], ['ComplementaryRole', _ComplementaryRole.default], ['ContentInfoRole', _ContentInfoRole.default], ['DateRole', _DateRole.default], ['DateTimeRole', _DateTimeRole.default], ['DefinitionRole', _DefinitionRole.default], ['DescriptionListDetailRole', _DescriptionListDetailRole.default], ['DescriptionListRole', _DescriptionListRole.default], ['DescriptionListTermRole', _DescriptionListTermRole.default], ['DetailsRole', _DetailsRole.default], ['DialogRole', _DialogRole.default], ['DirectoryRole', _DirectoryRole.default], ['DisclosureTriangleRole', _DisclosureTriangleRole.default], ['DivRole', _DivRole.default], ['DocumentRole', _DocumentRole.default], ['EmbeddedObjectRole', _EmbeddedObjectRole.default], ['FeedRole', _FeedRole.default], ['FigcaptionRole', _FigcaptionRole.default], ['FigureRole', _FigureRole.default], ['FooterRole', _FooterRole.default], ['FormRole', _FormRole.default], ['GridRole', _GridRole.default], ['GroupRole', _GroupRole.default], ['HeadingRole', _HeadingRole.default], ['IframePresentationalRole', _IframePresentationalRole.default], ['IframeRole', _IframeRole.default], ['IgnoredRole', _IgnoredRole.default], ['ImageMapLinkRole', _ImageMapLinkRole.default], ['ImageMapRole', _ImageMapRole.default], ['ImageRole', _ImageRole.default], ['InlineTextBoxRole', _InlineTextBoxRole.default], ['InputTimeRole', _InputTimeRole.default], ['LabelRole', _LabelRole.default], ['LegendRole', _LegendRole.default], ['LineBreakRole', _LineBreakRole.default], ['LinkRole', _LinkRole.default], ['ListBoxOptionRole', _ListBoxOptionRole.default], ['ListBoxRole', _ListBoxRole.default], ['ListItemRole', _ListItemRole.default], ['ListMarkerRole', _ListMarkerRole.default], ['ListRole', _ListRole.default], ['LogRole', _LogRole.default], ['MainRole', _MainRole.default], ['MarkRole', _MarkRole.default], ['MarqueeRole', _MarqueeRole.default], ['MathRole', _MathRole.default], ['MenuBarRole', _MenuBarRole.default], ['MenuButtonRole', _MenuButtonRole.default], ['MenuItemRole', _MenuItemRole.default], ['MenuItemCheckBoxRole', _MenuItemCheckBoxRole.default], ['MenuItemRadioRole', _MenuItemRadioRole.default], ['MenuListOptionRole', _MenuListOptionRole.default], ['MenuListPopupRole', _MenuListPopupRole.default], ['MenuRole', _MenuRole.default], ['MeterRole', _MeterRole.default], ['NavigationRole', _NavigationRole.default], ['NoneRole', _NoneRole.default], ['NoteRole', _NoteRole.default], ['OutlineRole', _OutlineRole.default], ['ParagraphRole', _ParagraphRole.default], ['PopUpButtonRole', _PopUpButtonRole.default], ['PreRole', _PreRole.default], ['PresentationalRole', _PresentationalRole.default], ['ProgressIndicatorRole', _ProgressIndicatorRole.default], ['RadioButtonRole', _RadioButtonRole.default], ['RadioGroupRole', _RadioGroupRole.default], ['RegionRole', _RegionRole.default], ['RootWebAreaRole', _RootWebAreaRole.default], ['RowHeaderRole', _RowHeaderRole.default], ['RowRole', _RowRole.default], ['RubyRole', _RubyRole.default], ['RulerRole', _RulerRole.default], ['ScrollAreaRole', _ScrollAreaRole.default], ['ScrollBarRole', _ScrollBarRole.default], ['SeamlessWebAreaRole', _SeamlessWebAreaRole.default], ['SearchRole', _SearchRole.default], ['SearchBoxRole', _SearchBoxRole.default], ['SliderRole', _SliderRole.default], ['SliderThumbRole', _SliderThumbRole.default], ['SpinButtonRole', _SpinButtonRole.default], ['SpinButtonPartRole', _SpinButtonPartRole.default], ['SplitterRole', _SplitterRole.default], ['StaticTextRole', _StaticTextRole.default], ['StatusRole', _StatusRole.default], ['SVGRootRole', _SVGRootRole.default], ['SwitchRole', _SwitchRole.default], ['TabGroupRole', _TabGroupRole.default], ['TabRole', _TabRole.default], ['TableHeaderContainerRole', _TableHeaderContainerRole.default], ['TableRole', _TableRole.default], ['TabListRole', _TabListRole.default], ['TabPanelRole', _TabPanelRole.default], ['TermRole', _TermRole.default], ['TextAreaRole', _TextAreaRole.default], ['TextFieldRole', _TextFieldRole.default], ['TimeRole', _TimeRole.default], ['TimerRole', _TimerRole.default], ['ToggleButtonRole', _ToggleButtonRole.default], ['ToolbarRole', _ToolbarRole.default], ['TreeRole', _TreeRole.default], ['TreeGridRole', _TreeGridRole.default], ['TreeItemRole', _TreeItemRole.default], ['UserInterfaceTooltipRole', _UserInterfaceTooltipRole.default], ['VideoRole', _VideoRole.default], ['WebAreaRole', _WebAreaRole.default], ['WindowRole', _WindowRole.default]];\nvar AXObjectsMap = {\n entries: function entries() {\n return AXObjects;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _AXObjects = AXObjects; _i < _AXObjects.length; _i++) {\n var _AXObjects$_i = _slicedToArray(_AXObjects[_i], 2),\n key = _AXObjects$_i[0],\n values = _AXObjects$_i[1];\n fn.call(thisArg, values, key, AXObjects);\n }\n },\n get: function get(key) {\n var item = AXObjects.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!AXObjectsMap.get(key);\n },\n keys: function keys() {\n return AXObjects.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return AXObjects.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(AXObjectsMap, AXObjectsMap.entries());\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _AXObjectsMap = _interopRequireDefault(require(\"./AXObjectsMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar AXObjectElements = [];\nvar _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()),\n _step;\ntry {\n var _loop = function _loop() {\n var _step$value = _slicedToArray(_step.value, 2),\n name = _step$value[0],\n def = _step$value[1];\n var relatedConcepts = def.relatedConcepts;\n if (Array.isArray(relatedConcepts)) {\n relatedConcepts.forEach(function (relation) {\n if (relation.module === 'HTML') {\n var concept = relation.concept;\n if (concept) {\n var index = AXObjectElements.findIndex(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 1),\n key = _ref6[0];\n return key === name;\n });\n if (index === -1) {\n AXObjectElements.push([name, []]);\n index = AXObjectElements.length - 1;\n }\n AXObjectElements[index][1].push(concept);\n }\n }\n });\n }\n };\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n _loop();\n }\n} catch (err) {\n _iterator.e(err);\n} finally {\n _iterator.f();\n}\nvar AXObjectElementMap = {\n entries: function entries() {\n return AXObjectElements;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _AXObjectElements = AXObjectElements; _i < _AXObjectElements.length; _i++) {\n var _AXObjectElements$_i = _slicedToArray(_AXObjectElements[_i], 2),\n key = _AXObjectElements$_i[0],\n values = _AXObjectElements$_i[1];\n fn.call(thisArg, values, key, AXObjectElements);\n }\n },\n get: function get(key) {\n var item = AXObjectElements.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!AXObjectElementMap.get(key);\n },\n keys: function keys() {\n return AXObjectElements.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return AXObjectElements.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(AXObjectElementMap, AXObjectElementMap.entries());\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nvar _AXObjectsMap = _interopRequireDefault(require(\"./AXObjectsMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar AXObjectRoleElements = [];\nvar _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()),\n _step;\ntry {\n var _loop = function _loop() {\n var _step$value = _slicedToArray(_step.value, 2),\n name = _step$value[0],\n def = _step$value[1];\n var relatedConcepts = def.relatedConcepts;\n if (Array.isArray(relatedConcepts)) {\n relatedConcepts.forEach(function (relation) {\n if (relation.module === 'ARIA') {\n var concept = relation.concept;\n if (concept) {\n var index = AXObjectRoleElements.findIndex(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 1),\n key = _ref6[0];\n return key === name;\n });\n if (index === -1) {\n AXObjectRoleElements.push([name, []]);\n index = AXObjectRoleElements.length - 1;\n }\n AXObjectRoleElements[index][1].push(concept);\n }\n }\n });\n }\n };\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n _loop();\n }\n} catch (err) {\n _iterator.e(err);\n} finally {\n _iterator.f();\n}\nvar AXObjectRoleMap = {\n entries: function entries() {\n return AXObjectRoleElements;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _AXObjectRoleElements = AXObjectRoleElements; _i < _AXObjectRoleElements.length; _i++) {\n var _AXObjectRoleElements2 = _slicedToArray(_AXObjectRoleElements[_i], 2),\n key = _AXObjectRoleElements2[0],\n values = _AXObjectRoleElements2[1];\n fn.call(thisArg, values, key, AXObjectRoleElements);\n }\n },\n get: function get(key) {\n var item = AXObjectRoleElements.find(function (tuple) {\n return tuple[0] === key ? true : false;\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!AXObjectRoleMap.get(key);\n },\n keys: function keys() {\n return AXObjectRoleElements.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return AXObjectRoleElements.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(AXObjectRoleMap, AXObjectRoleMap.entries());\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _AXObjectsMap = _interopRequireDefault(require(\"./AXObjectsMap\"));\nvar _iterationDecorator = _interopRequireDefault(require(\"./util/iterationDecorator\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nfunction _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\nvar elementAXObjects = [];\nvar _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()),\n _step;\ntry {\n var _loop = function _loop() {\n var _step$value = _slicedToArray(_step.value, 2),\n name = _step$value[0],\n def = _step$value[1];\n var relatedConcepts = def.relatedConcepts;\n if (Array.isArray(relatedConcepts)) {\n relatedConcepts.forEach(function (relation) {\n if (relation.module === 'HTML') {\n var concept = relation.concept;\n if (concept != null) {\n var conceptStr = JSON.stringify(concept);\n var axObjects;\n var index = 0;\n for (; index < elementAXObjects.length; index++) {\n var key = elementAXObjects[index][0];\n if (JSON.stringify(key) === conceptStr) {\n axObjects = elementAXObjects[index][1];\n break;\n }\n }\n if (!Array.isArray(axObjects)) {\n axObjects = [];\n }\n var loc = axObjects.findIndex(function (item) {\n return item === name;\n });\n if (loc === -1) {\n axObjects.push(name);\n }\n if (index < elementAXObjects.length) {\n elementAXObjects.splice(index, 1, [concept, axObjects]);\n } else {\n elementAXObjects.push([concept, axObjects]);\n }\n }\n }\n });\n }\n };\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n _loop();\n }\n} catch (err) {\n _iterator.e(err);\n} finally {\n _iterator.f();\n}\nfunction deepAxObjectModelRelationshipConceptAttributeCheck(a, b) {\n if (a === undefined && b !== undefined) {\n return false;\n }\n if (a !== undefined && b === undefined) {\n return false;\n }\n if (a !== undefined && b !== undefined) {\n if (a.length != b.length) {\n return false;\n }\n\n // dequal checks position equality\n // https://github.com/lukeed/dequal/blob/5ecd990c4c055c4658c64b4bdfc170f219604eea/src/index.js#L17-L22\n for (var i = 0; i < a.length; i++) {\n if (b[i].name !== a[i].name || b[i].value !== a[i].value) {\n return false;\n }\n }\n }\n return true;\n}\nvar elementAXObjectMap = {\n entries: function entries() {\n return elementAXObjects;\n },\n forEach: function forEach(fn) {\n var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n for (var _i = 0, _elementAXObjects = elementAXObjects; _i < _elementAXObjects.length; _i++) {\n var _elementAXObjects$_i = _slicedToArray(_elementAXObjects[_i], 2),\n key = _elementAXObjects$_i[0],\n values = _elementAXObjects$_i[1];\n fn.call(thisArg, values, key, elementAXObjects);\n }\n },\n get: function get(key) {\n var item = elementAXObjects.find(function (tuple) {\n return key.name === tuple[0].name && deepAxObjectModelRelationshipConceptAttributeCheck(key.attributes, tuple[0].attributes);\n });\n return item && item[1];\n },\n has: function has(key) {\n return !!elementAXObjectMap.get(key);\n },\n keys: function keys() {\n return elementAXObjects.map(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 1),\n key = _ref2[0];\n return key;\n });\n },\n values: function values() {\n return elementAXObjects.map(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n values = _ref4[1];\n return values;\n });\n }\n};\nvar _default = (0, _iterationDecorator.default)(elementAXObjectMap, elementAXObjectMap.entries());\nexports.default = _default;", "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.elementAXObjects = exports.AXObjects = exports.AXObjectRoles = exports.AXObjectElements = void 0;\nvar _AXObjectElementMap = _interopRequireDefault(require(\"./AXObjectElementMap\"));\nvar _AXObjectRoleMap = _interopRequireDefault(require(\"./AXObjectRoleMap\"));\nvar _AXObjectsMap = _interopRequireDefault(require(\"./AXObjectsMap\"));\nvar _elementAXObjectMap = _interopRequireDefault(require(\"./elementAXObjectMap\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar AXObjectElements = _AXObjectElementMap.default;\nexports.AXObjectElements = AXObjectElements;\nvar AXObjectRoles = _AXObjectRoleMap.default;\nexports.AXObjectRoles = AXObjectRoles;\nvar AXObjects = _AXObjectsMap.default;\nexports.AXObjects = AXObjects;\nvar elementAXObjects = _elementAXObjectMap.default;\nexports.elementAXObjects = elementAXObjects;"], + "mappings": "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", + "names": ["obj", "values", "F", "_loop", "values", "F", "_loop", "values", "F", "_loop", "values"] +} diff --git a/frontend/node_modules/.vite/deps/astro___cssesc.js b/frontend/node_modules/.vite/deps/astro___cssesc.js new file mode 100644 index 00000000..f418f4fe --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___cssesc.js @@ -0,0 +1,99 @@ +import { + __commonJS +} from "./chunk-BUSYA2B4.js"; + +// node_modules/cssesc/cssesc.js +var require_cssesc = __commonJS({ + "node_modules/cssesc/cssesc.js"(exports, module) { + var object = {}; + var hasOwnProperty = object.hasOwnProperty; + var merge = function merge2(options, defaults) { + if (!options) { + return defaults; + } + var result = {}; + for (var key in defaults) { + result[key] = hasOwnProperty.call(options, key) ? options[key] : defaults[key]; + } + return result; + }; + var regexAnySingleEscape = /[ -,\.\/:-@\[-\^`\{-~]/; + var regexSingleEscape = /[ -,\.\/:-@\[\]\^`\{-~]/; + var regexExcessiveSpaces = /(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g; + var cssesc = function cssesc2(string, options) { + options = merge(options, cssesc2.options); + if (options.quotes != "single" && options.quotes != "double") { + options.quotes = "single"; + } + var quote = options.quotes == "double" ? '"' : "'"; + var isIdentifier = options.isIdentifier; + var firstChar = string.charAt(0); + var output = ""; + var counter = 0; + var length = string.length; + while (counter < length) { + var character = string.charAt(counter++); + var codePoint = character.charCodeAt(); + var value = void 0; + if (codePoint < 32 || codePoint > 126) { + if (codePoint >= 55296 && codePoint <= 56319 && counter < length) { + var extra = string.charCodeAt(counter++); + if ((extra & 64512) == 56320) { + codePoint = ((codePoint & 1023) << 10) + (extra & 1023) + 65536; + } else { + counter--; + } + } + value = "\\" + codePoint.toString(16).toUpperCase() + " "; + } else { + if (options.escapeEverything) { + if (regexAnySingleEscape.test(character)) { + value = "\\" + character; + } else { + value = "\\" + codePoint.toString(16).toUpperCase() + " "; + } + } else if (/[\t\n\f\r\x0B]/.test(character)) { + value = "\\" + codePoint.toString(16).toUpperCase() + " "; + } else if (character == "\\" || !isIdentifier && (character == '"' && quote == character || character == "'" && quote == character) || isIdentifier && regexSingleEscape.test(character)) { + value = "\\" + character; + } else { + value = character; + } + } + output += value; + } + if (isIdentifier) { + if (/^-[-\d]/.test(output)) { + output = "\\-" + output.slice(1); + } else if (/\d/.test(firstChar)) { + output = "\\3" + firstChar + " " + output.slice(1); + } + } + output = output.replace(regexExcessiveSpaces, function($0, $1, $2) { + if ($1 && $1.length % 2) { + return $0; + } + return ($1 || "") + $2; + }); + if (!isIdentifier && options.wrap) { + return quote + output + quote; + } + return output; + }; + cssesc.options = { + "escapeEverything": false, + "isIdentifier": false, + "quotes": "single", + "wrap": false + }; + cssesc.version = "3.0.0"; + module.exports = cssesc; + } +}); +export default require_cssesc(); +/*! Bundled license information: + +cssesc/cssesc.js: + (*! https://mths.be/cssesc v3.0.0 by @mathias *) +*/ +//# sourceMappingURL=astro___cssesc.js.map diff --git a/frontend/node_modules/.vite/deps/astro___cssesc.js.map b/frontend/node_modules/.vite/deps/astro___cssesc.js.map new file mode 100644 index 00000000..1e2d80fa --- /dev/null +++ b/frontend/node_modules/.vite/deps/astro___cssesc.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": ["../../cssesc/cssesc.js"], + "sourcesContent": ["/*! https://mths.be/cssesc v3.0.0 by @mathias */\n'use strict';\n\nvar object = {};\nvar hasOwnProperty = object.hasOwnProperty;\nvar merge = function merge(options, defaults) {\n\tif (!options) {\n\t\treturn defaults;\n\t}\n\tvar result = {};\n\tfor (var key in defaults) {\n\t\t// `if (defaults.hasOwnProperty(key) { … }` is not needed here, since\n\t\t// only recognized option names are used.\n\t\tresult[key] = hasOwnProperty.call(options, key) ? options[key] : defaults[key];\n\t}\n\treturn result;\n};\n\nvar regexAnySingleEscape = /[ -,\\.\\/:-@\\[-\\^`\\{-~]/;\nvar regexSingleEscape = /[ -,\\.\\/:-@\\[\\]\\^`\\{-~]/;\nvar regexAlwaysEscape = /['\"\\\\]/;\nvar regexExcessiveSpaces = /(^|\\\\+)?(\\\\[A-F0-9]{1,6})\\x20(?![a-fA-F0-9\\x20])/g;\n\n// https://mathiasbynens.be/notes/css-escapes#css\nvar cssesc = function cssesc(string, options) {\n\toptions = merge(options, cssesc.options);\n\tif (options.quotes != 'single' && options.quotes != 'double') {\n\t\toptions.quotes = 'single';\n\t}\n\tvar quote = options.quotes == 'double' ? '\"' : '\\'';\n\tvar isIdentifier = options.isIdentifier;\n\n\tvar firstChar = string.charAt(0);\n\tvar output = '';\n\tvar counter = 0;\n\tvar length = string.length;\n\twhile (counter < length) {\n\t\tvar character = string.charAt(counter++);\n\t\tvar codePoint = character.charCodeAt();\n\t\tvar value = void 0;\n\t\t// If it’s not a printable ASCII character…\n\t\tif (codePoint < 0x20 || codePoint > 0x7E) {\n\t\t\tif (codePoint >= 0xD800 && codePoint <= 0xDBFF && counter < length) {\n\t\t\t\t// It’s a high surrogate, and there is a next character.\n\t\t\t\tvar extra = string.charCodeAt(counter++);\n\t\t\t\tif ((extra & 0xFC00) == 0xDC00) {\n\t\t\t\t\t// next character is low surrogate\n\t\t\t\t\tcodePoint = ((codePoint & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000;\n\t\t\t\t} else {\n\t\t\t\t\t// It’s an unmatched surrogate; only append this code unit, in case\n\t\t\t\t\t// the next code unit is the high surrogate of a surrogate pair.\n\t\t\t\t\tcounter--;\n\t\t\t\t}\n\t\t\t}\n\t\t\tvalue = '\\\\' + codePoint.toString(16).toUpperCase() + ' ';\n\t\t} else {\n\t\t\tif (options.escapeEverything) {\n\t\t\t\tif (regexAnySingleEscape.test(character)) {\n\t\t\t\t\tvalue = '\\\\' + character;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = '\\\\' + codePoint.toString(16).toUpperCase() + ' ';\n\t\t\t\t}\n\t\t\t} else if (/[\\t\\n\\f\\r\\x0B]/.test(character)) {\n\t\t\t\tvalue = '\\\\' + codePoint.toString(16).toUpperCase() + ' ';\n\t\t\t} else if (character == '\\\\' || !isIdentifier && (character == '\"' && quote == character || character == '\\'' && quote == character) || isIdentifier && regexSingleEscape.test(character)) {\n\t\t\t\tvalue = '\\\\' + character;\n\t\t\t} else {\n\t\t\t\tvalue = character;\n\t\t\t}\n\t\t}\n\t\toutput += value;\n\t}\n\n\tif (isIdentifier) {\n\t\tif (/^-[-\\d]/.test(output)) {\n\t\t\toutput = '\\\\-' + output.slice(1);\n\t\t} else if (/\\d/.test(firstChar)) {\n\t\t\toutput = '\\\\3' + firstChar + ' ' + output.slice(1);\n\t\t}\n\t}\n\n\t// Remove spaces after `\\HEX` escapes that are not followed by a hex digit,\n\t// since they’re redundant. Note that this is only possible if the escape\n\t// sequence isn’t preceded by an odd number of backslashes.\n\toutput = output.replace(regexExcessiveSpaces, function ($0, $1, $2) {\n\t\tif ($1 && $1.length % 2) {\n\t\t\t// It’s not safe to remove the space, so don’t.\n\t\t\treturn $0;\n\t\t}\n\t\t// Strip the space.\n\t\treturn ($1 || '') + $2;\n\t});\n\n\tif (!isIdentifier && options.wrap) {\n\t\treturn quote + output + quote;\n\t}\n\treturn output;\n};\n\n// Expose default options (so they can be overridden globally).\ncssesc.options = {\n\t'escapeEverything': false,\n\t'isIdentifier': false,\n\t'quotes': 'single',\n\t'wrap': false\n};\n\ncssesc.version = '3.0.0';\n\nmodule.exports = cssesc;\n"], + "mappings": ";;;;;AAAA;AAAA;AAGA,QAAI,SAAS,CAAC;AACd,QAAI,iBAAiB,OAAO;AAC5B,QAAI,QAAQ,SAASA,OAAM,SAAS,UAAU;AAC7C,UAAI,CAAC,SAAS;AACb,eAAO;AAAA,MACR;AACA,UAAI,SAAS,CAAC;AACd,eAAS,OAAO,UAAU;AAGzB,eAAO,GAAG,IAAI,eAAe,KAAK,SAAS,GAAG,IAAI,QAAQ,GAAG,IAAI,SAAS,GAAG;AAAA,MAC9E;AACA,aAAO;AAAA,IACR;AAEA,QAAI,uBAAuB;AAC3B,QAAI,oBAAoB;AAExB,QAAI,uBAAuB;AAG3B,QAAI,SAAS,SAASC,QAAO,QAAQ,SAAS;AAC7C,gBAAU,MAAM,SAASA,QAAO,OAAO;AACvC,UAAI,QAAQ,UAAU,YAAY,QAAQ,UAAU,UAAU;AAC7D,gBAAQ,SAAS;AAAA,MAClB;AACA,UAAI,QAAQ,QAAQ,UAAU,WAAW,MAAM;AAC/C,UAAI,eAAe,QAAQ;AAE3B,UAAI,YAAY,OAAO,OAAO,CAAC;AAC/B,UAAI,SAAS;AACb,UAAI,UAAU;AACd,UAAI,SAAS,OAAO;AACpB,aAAO,UAAU,QAAQ;AACxB,YAAI,YAAY,OAAO,OAAO,SAAS;AACvC,YAAI,YAAY,UAAU,WAAW;AACrC,YAAI,QAAQ;AAEZ,YAAI,YAAY,MAAQ,YAAY,KAAM;AACzC,cAAI,aAAa,SAAU,aAAa,SAAU,UAAU,QAAQ;AAEnE,gBAAI,QAAQ,OAAO,WAAW,SAAS;AACvC,iBAAK,QAAQ,UAAW,OAAQ;AAE/B,4BAAc,YAAY,SAAU,OAAO,QAAQ,QAAS;AAAA,YAC7D,OAAO;AAGN;AAAA,YACD;AAAA,UACD;AACA,kBAAQ,OAAO,UAAU,SAAS,EAAE,EAAE,YAAY,IAAI;AAAA,QACvD,OAAO;AACN,cAAI,QAAQ,kBAAkB;AAC7B,gBAAI,qBAAqB,KAAK,SAAS,GAAG;AACzC,sBAAQ,OAAO;AAAA,YAChB,OAAO;AACN,sBAAQ,OAAO,UAAU,SAAS,EAAE,EAAE,YAAY,IAAI;AAAA,YACvD;AAAA,UACD,WAAW,iBAAiB,KAAK,SAAS,GAAG;AAC5C,oBAAQ,OAAO,UAAU,SAAS,EAAE,EAAE,YAAY,IAAI;AAAA,UACvD,WAAW,aAAa,QAAQ,CAAC,iBAAiB,aAAa,OAAO,SAAS,aAAa,aAAa,OAAQ,SAAS,cAAc,gBAAgB,kBAAkB,KAAK,SAAS,GAAG;AAC1L,oBAAQ,OAAO;AAAA,UAChB,OAAO;AACN,oBAAQ;AAAA,UACT;AAAA,QACD;AACA,kBAAU;AAAA,MACX;AAEA,UAAI,cAAc;AACjB,YAAI,UAAU,KAAK,MAAM,GAAG;AAC3B,mBAAS,QAAQ,OAAO,MAAM,CAAC;AAAA,QAChC,WAAW,KAAK,KAAK,SAAS,GAAG;AAChC,mBAAS,QAAQ,YAAY,MAAM,OAAO,MAAM,CAAC;AAAA,QAClD;AAAA,MACD;AAKA,eAAS,OAAO,QAAQ,sBAAsB,SAAU,IAAI,IAAI,IAAI;AACnE,YAAI,MAAM,GAAG,SAAS,GAAG;AAExB,iBAAO;AAAA,QACR;AAEA,gBAAQ,MAAM,MAAM;AAAA,MACrB,CAAC;AAED,UAAI,CAAC,gBAAgB,QAAQ,MAAM;AAClC,eAAO,QAAQ,SAAS;AAAA,MACzB;AACA,aAAO;AAAA,IACR;AAGA,WAAO,UAAU;AAAA,MAChB,oBAAoB;AAAA,MACpB,gBAAgB;AAAA,MAChB,UAAU;AAAA,MACV,QAAQ;AAAA,IACT;AAEA,WAAO,UAAU;AAEjB,WAAO,UAAU;AAAA;AAAA;", + "names": ["merge", "cssesc"] +} diff --git a/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js b/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js new file mode 100644 index 00000000..b1e98ebe --- /dev/null +++ b/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js @@ -0,0 +1,8 @@ +var __getOwnPropNames = Object.getOwnPropertyNames; +var __commonJS = (cb, mod) => function __require() { + return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; +}; + +export { + __commonJS +}; diff --git a/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js.map b/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js.map new file mode 100644 index 00000000..98652118 --- /dev/null +++ b/frontend/node_modules/.vite/deps/chunk-BUSYA2B4.js.map @@ -0,0 +1,7 @@ +{ + "version": 3, + "sources": [], + "sourcesContent": [], + "mappings": "", + "names": [] +} diff --git a/frontend/node_modules/.vite/deps/chunk-U3LI7FBV.js b/frontend/node_modules/.vite/deps/chunk-U3LI7FBV.js new file mode 100644 index 00000000..476c8314 --- /dev/null +++ b/frontend/node_modules/.vite/deps/chunk-U3LI7FBV.js @@ -0,0 +1,12542 @@ +// node_modules/@vue/shared/dist/shared.esm-bundler.js +function makeMap(str) { + const map2 = /* @__PURE__ */ Object.create(null); + for (const key of str.split(",")) map2[key] = 1; + return (val) => val in map2; +} +var EMPTY_OBJ = true ? Object.freeze({}) : {}; +var EMPTY_ARR = true ? Object.freeze([]) : []; +var NOOP = () => { +}; +var NO = () => false; +var isOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // uppercase letter +(key.charCodeAt(2) > 122 || key.charCodeAt(2) < 97); +var isModelListener = (key) => key.startsWith("onUpdate:"); +var extend = Object.assign; +var remove = (arr, el) => { + const i = arr.indexOf(el); + if (i > -1) { + arr.splice(i, 1); + } +}; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var hasOwn = (val, key) => hasOwnProperty.call(val, key); +var isArray = Array.isArray; +var isMap = (val) => toTypeString(val) === "[object Map]"; +var isSet = (val) => toTypeString(val) === "[object Set]"; +var isDate = (val) => toTypeString(val) === "[object Date]"; +var isRegExp = (val) => toTypeString(val) === "[object RegExp]"; +var isFunction = (val) => typeof val === "function"; +var isString = (val) => typeof val === "string"; +var isSymbol = (val) => typeof val === "symbol"; +var isObject = (val) => val !== null && typeof val === "object"; +var isPromise = (val) => { + return (isObject(val) || isFunction(val)) && isFunction(val.then) && isFunction(val.catch); +}; +var objectToString = Object.prototype.toString; +var toTypeString = (value) => objectToString.call(value); +var toRawType = (value) => { + return toTypeString(value).slice(8, -1); +}; +var isPlainObject = (val) => toTypeString(val) === "[object Object]"; +var isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key; +var isReservedProp = makeMap( + // the leading comma is intentional so empty string "" is also included + ",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted" +); +var isBuiltInDirective = makeMap( + "bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo" +); +var cacheStringFunction = (fn) => { + const cache = /* @__PURE__ */ Object.create(null); + return (str) => { + const hit = cache[str]; + return hit || (cache[str] = fn(str)); + }; +}; +var camelizeRE = /-(\w)/g; +var camelize = cacheStringFunction( + (str) => { + return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : ""); + } +); +var hyphenateRE = /\B([A-Z])/g; +var hyphenate = cacheStringFunction( + (str) => str.replace(hyphenateRE, "-$1").toLowerCase() +); +var capitalize = cacheStringFunction((str) => { + return str.charAt(0).toUpperCase() + str.slice(1); +}); +var toHandlerKey = cacheStringFunction( + (str) => { + const s = str ? `on${capitalize(str)}` : ``; + return s; + } +); +var hasChanged = (value, oldValue) => !Object.is(value, oldValue); +var invokeArrayFns = (fns, ...arg) => { + for (let i = 0; i < fns.length; i++) { + fns[i](...arg); + } +}; +var def = (obj, key, value, writable = false) => { + Object.defineProperty(obj, key, { + configurable: true, + enumerable: false, + writable, + value + }); +}; +var looseToNumber = (val) => { + const n = parseFloat(val); + return isNaN(n) ? val : n; +}; +var toNumber = (val) => { + const n = isString(val) ? Number(val) : NaN; + return isNaN(n) ? val : n; +}; +var _globalThis; +var getGlobalThis = () => { + return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {}); +}; +var GLOBALS_ALLOWED = "Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error,Symbol"; +var isGloballyAllowed = makeMap(GLOBALS_ALLOWED); +function normalizeStyle(value) { + if (isArray(value)) { + const res = {}; + for (let i = 0; i < value.length; i++) { + const item = value[i]; + const normalized = isString(item) ? parseStringStyle(item) : normalizeStyle(item); + if (normalized) { + for (const key in normalized) { + res[key] = normalized[key]; + } + } + } + return res; + } else if (isString(value) || isObject(value)) { + return value; + } +} +var listDelimiterRE = /;(?![^(]*\))/g; +var propertyDelimiterRE = /:([^]+)/; +var styleCommentRE = /\/\*[^]*?\*\//g; +function parseStringStyle(cssText) { + const ret = {}; + cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => { + if (item) { + const tmp = item.split(propertyDelimiterRE); + tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim()); + } + }); + return ret; +} +function stringifyStyle(styles) { + if (!styles) return ""; + if (isString(styles)) return styles; + let ret = ""; + for (const key in styles) { + const value = styles[key]; + if (isString(value) || typeof value === "number") { + const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key); + ret += `${normalizedKey}:${value};`; + } + } + return ret; +} +function normalizeClass(value) { + let res = ""; + if (isString(value)) { + res = value; + } else if (isArray(value)) { + for (let i = 0; i < value.length; i++) { + const normalized = normalizeClass(value[i]); + if (normalized) { + res += normalized + " "; + } + } + } else if (isObject(value)) { + for (const name in value) { + if (value[name]) { + res += name + " "; + } + } + } + return res.trim(); +} +function normalizeProps(props) { + if (!props) return null; + let { class: klass, style } = props; + if (klass && !isString(klass)) { + props.class = normalizeClass(klass); + } + if (style) { + props.style = normalizeStyle(style); + } + return props; +} +var HTML_TAGS = "html,body,base,head,link,meta,style,title,address,article,aside,footer,header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"; +var SVG_TAGS = "svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"; +var MATH_TAGS = "annotation,annotation-xml,maction,maligngroup,malignmark,math,menclose,merror,mfenced,mfrac,mfraction,mglyph,mi,mlabeledtr,mlongdiv,mmultiscripts,mn,mo,mover,mpadded,mphantom,mprescripts,mroot,mrow,ms,mscarries,mscarry,msgroup,msline,mspace,msqrt,msrow,mstack,mstyle,msub,msubsup,msup,mtable,mtd,mtext,mtr,munder,munderover,none,semantics"; +var VOID_TAGS = "area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"; +var isHTMLTag = makeMap(HTML_TAGS); +var isSVGTag = makeMap(SVG_TAGS); +var isMathMLTag = makeMap(MATH_TAGS); +var isVoidTag = makeMap(VOID_TAGS); +var specialBooleanAttrs = `itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`; +var isSpecialBooleanAttr = makeMap(specialBooleanAttrs); +var isBooleanAttr = makeMap( + specialBooleanAttrs + `,async,autofocus,autoplay,controls,default,defer,disabled,hidden,inert,loop,open,required,reversed,scoped,seamless,checked,muted,multiple,selected` +); +function includeBooleanAttr(value) { + return !!value || value === ""; +} +var isKnownHtmlAttr = makeMap( + `accept,accept-charset,accesskey,action,align,allow,alt,async,autocapitalize,autocomplete,autofocus,autoplay,background,bgcolor,border,buffered,capture,challenge,charset,checked,cite,class,code,codebase,color,cols,colspan,content,contenteditable,contextmenu,controls,coords,crossorigin,csp,data,datetime,decoding,default,defer,dir,dirname,disabled,download,draggable,dropzone,enctype,enterkeyhint,for,form,formaction,formenctype,formmethod,formnovalidate,formtarget,headers,height,hidden,high,href,hreflang,http-equiv,icon,id,importance,inert,integrity,ismap,itemprop,keytype,kind,label,lang,language,loading,list,loop,low,manifest,max,maxlength,minlength,media,min,multiple,muted,name,novalidate,open,optimum,pattern,ping,placeholder,poster,preload,radiogroup,readonly,referrerpolicy,rel,required,reversed,rows,rowspan,sandbox,scope,scoped,selected,shape,size,sizes,slot,span,spellcheck,src,srcdoc,srclang,srcset,start,step,style,summary,tabindex,target,title,translate,type,usemap,value,width,wrap` +); +var isKnownSvgAttr = makeMap( + `xmlns,accent-height,accumulate,additive,alignment-baseline,alphabetic,amplitude,arabic-form,ascent,attributeName,attributeType,azimuth,baseFrequency,baseline-shift,baseProfile,bbox,begin,bias,by,calcMode,cap-height,class,clip,clipPathUnits,clip-path,clip-rule,color,color-interpolation,color-interpolation-filters,color-profile,color-rendering,contentScriptType,contentStyleType,crossorigin,cursor,cx,cy,d,decelerate,descent,diffuseConstant,direction,display,divisor,dominant-baseline,dur,dx,dy,edgeMode,elevation,enable-background,end,exponent,fill,fill-opacity,fill-rule,filter,filterRes,filterUnits,flood-color,flood-opacity,font-family,font-size,font-size-adjust,font-stretch,font-style,font-variant,font-weight,format,from,fr,fx,fy,g1,g2,glyph-name,glyph-orientation-horizontal,glyph-orientation-vertical,glyphRef,gradientTransform,gradientUnits,hanging,height,href,hreflang,horiz-adv-x,horiz-origin-x,id,ideographic,image-rendering,in,in2,intercept,k,k1,k2,k3,k4,kernelMatrix,kernelUnitLength,kerning,keyPoints,keySplines,keyTimes,lang,lengthAdjust,letter-spacing,lighting-color,limitingConeAngle,local,marker-end,marker-mid,marker-start,markerHeight,markerUnits,markerWidth,mask,maskContentUnits,maskUnits,mathematical,max,media,method,min,mode,name,numOctaves,offset,opacity,operator,order,orient,orientation,origin,overflow,overline-position,overline-thickness,panose-1,paint-order,path,pathLength,patternContentUnits,patternTransform,patternUnits,ping,pointer-events,points,pointsAtX,pointsAtY,pointsAtZ,preserveAlpha,preserveAspectRatio,primitiveUnits,r,radius,referrerPolicy,refX,refY,rel,rendering-intent,repeatCount,repeatDur,requiredExtensions,requiredFeatures,restart,result,rotate,rx,ry,scale,seed,shape-rendering,slope,spacing,specularConstant,specularExponent,speed,spreadMethod,startOffset,stdDeviation,stemh,stemv,stitchTiles,stop-color,stop-opacity,strikethrough-position,strikethrough-thickness,string,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,stroke-miterlimit,stroke-opacity,stroke-width,style,surfaceScale,systemLanguage,tabindex,tableValues,target,targetX,targetY,text-anchor,text-decoration,text-rendering,textLength,to,transform,transform-origin,type,u1,u2,underline-position,underline-thickness,unicode,unicode-bidi,unicode-range,units-per-em,v-alphabetic,v-hanging,v-ideographic,v-mathematical,values,vector-effect,version,vert-adv-y,vert-origin-x,vert-origin-y,viewBox,viewTarget,visibility,width,widths,word-spacing,writing-mode,x,x-height,x1,x2,xChannelSelector,xlink:actuate,xlink:arcrole,xlink:href,xlink:role,xlink:show,xlink:title,xlink:type,xmlns:xlink,xml:base,xml:lang,xml:space,y,y1,y2,yChannelSelector,z,zoomAndPan` +); +var isKnownMathMLAttr = makeMap( + `accent,accentunder,actiontype,align,alignmentscope,altimg,altimg-height,altimg-valign,altimg-width,alttext,bevelled,close,columnsalign,columnlines,columnspan,denomalign,depth,dir,display,displaystyle,encoding,equalcolumns,equalrows,fence,fontstyle,fontweight,form,frame,framespacing,groupalign,height,href,id,indentalign,indentalignfirst,indentalignlast,indentshift,indentshiftfirst,indentshiftlast,indextype,justify,largetop,largeop,lquote,lspace,mathbackground,mathcolor,mathsize,mathvariant,maxsize,minlabelspacing,mode,other,overflow,position,rowalign,rowlines,rowspan,rquote,rspace,scriptlevel,scriptminsize,scriptsizemultiplier,selection,separator,separators,shift,side,src,stackalign,stretchy,subscriptshift,superscriptshift,symmetric,voffset,width,widths,xlink:href,xlink:show,xlink:type,xmlns` +); +function isRenderableAttrValue(value) { + if (value == null) { + return false; + } + const type = typeof value; + return type === "string" || type === "number" || type === "boolean"; +} +var cssVarNameEscapeSymbolsRE = /[ !"#$%&'()*+,./:;<=>?@[\\\]^`{|}~]/g; +function getEscapedCssVarName(key, doubleEscape) { + return key.replace( + cssVarNameEscapeSymbolsRE, + (s) => doubleEscape ? s === '"' ? '\\\\\\"' : `\\\\${s}` : `\\${s}` + ); +} +function looseCompareArrays(a, b) { + if (a.length !== b.length) return false; + let equal = true; + for (let i = 0; equal && i < a.length; i++) { + equal = looseEqual(a[i], b[i]); + } + return equal; +} +function looseEqual(a, b) { + if (a === b) return true; + let aValidType = isDate(a); + let bValidType = isDate(b); + if (aValidType || bValidType) { + return aValidType && bValidType ? a.getTime() === b.getTime() : false; + } + aValidType = isSymbol(a); + bValidType = isSymbol(b); + if (aValidType || bValidType) { + return a === b; + } + aValidType = isArray(a); + bValidType = isArray(b); + if (aValidType || bValidType) { + return aValidType && bValidType ? looseCompareArrays(a, b) : false; + } + aValidType = isObject(a); + bValidType = isObject(b); + if (aValidType || bValidType) { + if (!aValidType || !bValidType) { + return false; + } + const aKeysCount = Object.keys(a).length; + const bKeysCount = Object.keys(b).length; + if (aKeysCount !== bKeysCount) { + return false; + } + for (const key in a) { + const aHasKey = a.hasOwnProperty(key); + const bHasKey = b.hasOwnProperty(key); + if (aHasKey && !bHasKey || !aHasKey && bHasKey || !looseEqual(a[key], b[key])) { + return false; + } + } + } + return String(a) === String(b); +} +function looseIndexOf(arr, val) { + return arr.findIndex((item) => looseEqual(item, val)); +} +var isRef = (val) => { + return !!(val && val["__v_isRef"] === true); +}; +var toDisplayString = (val) => { + return isString(val) ? val : val == null ? "" : isArray(val) || isObject(val) && (val.toString === objectToString || !isFunction(val.toString)) ? isRef(val) ? toDisplayString(val.value) : JSON.stringify(val, replacer, 2) : String(val); +}; +var replacer = (_key, val) => { + if (isRef(val)) { + return replacer(_key, val.value); + } else if (isMap(val)) { + return { + [`Map(${val.size})`]: [...val.entries()].reduce( + (entries, [key, val2], i) => { + entries[stringifySymbol(key, i) + " =>"] = val2; + return entries; + }, + {} + ) + }; + } else if (isSet(val)) { + return { + [`Set(${val.size})`]: [...val.values()].map((v) => stringifySymbol(v)) + }; + } else if (isSymbol(val)) { + return stringifySymbol(val); + } else if (isObject(val) && !isArray(val) && !isPlainObject(val)) { + return String(val); + } + return val; +}; +var stringifySymbol = (v, i = "") => { + var _a; + return ( + // Symbol.description in es2019+ so we need to cast here to pass + // the lib: es2016 check + isSymbol(v) ? `Symbol(${(_a = v.description) != null ? _a : i})` : v + ); +}; + +// node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js +function warn(msg, ...args) { + console.warn(`[Vue warn] ${msg}`, ...args); +} +var activeEffectScope; +var EffectScope = class { + constructor(detached = false) { + this.detached = detached; + this._active = true; + this.effects = []; + this.cleanups = []; + this._isPaused = false; + this.parent = activeEffectScope; + if (!detached && activeEffectScope) { + this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push( + this + ) - 1; + } + } + get active() { + return this._active; + } + pause() { + if (this._active) { + this._isPaused = true; + let i, l; + if (this.scopes) { + for (i = 0, l = this.scopes.length; i < l; i++) { + this.scopes[i].pause(); + } + } + for (i = 0, l = this.effects.length; i < l; i++) { + this.effects[i].pause(); + } + } + } + /** + * Resumes the effect scope, including all child scopes and effects. + */ + resume() { + if (this._active) { + if (this._isPaused) { + this._isPaused = false; + let i, l; + if (this.scopes) { + for (i = 0, l = this.scopes.length; i < l; i++) { + this.scopes[i].resume(); + } + } + for (i = 0, l = this.effects.length; i < l; i++) { + this.effects[i].resume(); + } + } + } + } + run(fn) { + if (this._active) { + const currentEffectScope = activeEffectScope; + try { + activeEffectScope = this; + return fn(); + } finally { + activeEffectScope = currentEffectScope; + } + } else if (true) { + warn(`cannot run an inactive effect scope.`); + } + } + /** + * This should only be called on non-detached scopes + * @internal + */ + on() { + activeEffectScope = this; + } + /** + * This should only be called on non-detached scopes + * @internal + */ + off() { + activeEffectScope = this.parent; + } + stop(fromParent) { + if (this._active) { + this._active = false; + let i, l; + for (i = 0, l = this.effects.length; i < l; i++) { + this.effects[i].stop(); + } + this.effects.length = 0; + for (i = 0, l = this.cleanups.length; i < l; i++) { + this.cleanups[i](); + } + this.cleanups.length = 0; + if (this.scopes) { + for (i = 0, l = this.scopes.length; i < l; i++) { + this.scopes[i].stop(true); + } + this.scopes.length = 0; + } + if (!this.detached && this.parent && !fromParent) { + const last = this.parent.scopes.pop(); + if (last && last !== this) { + this.parent.scopes[this.index] = last; + last.index = this.index; + } + } + this.parent = void 0; + } + } +}; +function effectScope(detached) { + return new EffectScope(detached); +} +function getCurrentScope() { + return activeEffectScope; +} +function onScopeDispose(fn, failSilently = false) { + if (activeEffectScope) { + activeEffectScope.cleanups.push(fn); + } else if (!failSilently) { + warn( + `onScopeDispose() is called when there is no active effect scope to be associated with.` + ); + } +} +var activeSub; +var pausedQueueEffects = /* @__PURE__ */ new WeakSet(); +var ReactiveEffect = class { + constructor(fn) { + this.fn = fn; + this.deps = void 0; + this.depsTail = void 0; + this.flags = 1 | 4; + this.next = void 0; + this.cleanup = void 0; + this.scheduler = void 0; + if (activeEffectScope && activeEffectScope.active) { + activeEffectScope.effects.push(this); + } + } + pause() { + this.flags |= 64; + } + resume() { + if (this.flags & 64) { + this.flags &= ~64; + if (pausedQueueEffects.has(this)) { + pausedQueueEffects.delete(this); + this.trigger(); + } + } + } + /** + * @internal + */ + notify() { + if (this.flags & 2 && !(this.flags & 32)) { + return; + } + if (!(this.flags & 8)) { + batch(this); + } + } + run() { + if (!(this.flags & 1)) { + return this.fn(); + } + this.flags |= 2; + cleanupEffect(this); + prepareDeps(this); + const prevEffect = activeSub; + const prevShouldTrack = shouldTrack; + activeSub = this; + shouldTrack = true; + try { + return this.fn(); + } finally { + if (activeSub !== this) { + warn( + "Active effect was not restored correctly - this is likely a Vue internal bug." + ); + } + cleanupDeps(this); + activeSub = prevEffect; + shouldTrack = prevShouldTrack; + this.flags &= ~2; + } + } + stop() { + if (this.flags & 1) { + for (let link = this.deps; link; link = link.nextDep) { + removeSub(link); + } + this.deps = this.depsTail = void 0; + cleanupEffect(this); + this.onStop && this.onStop(); + this.flags &= ~1; + } + } + trigger() { + if (this.flags & 64) { + pausedQueueEffects.add(this); + } else if (this.scheduler) { + this.scheduler(); + } else { + this.runIfDirty(); + } + } + /** + * @internal + */ + runIfDirty() { + if (isDirty(this)) { + this.run(); + } + } + get dirty() { + return isDirty(this); + } +}; +var batchDepth = 0; +var batchedSub; +var batchedComputed; +function batch(sub, isComputed = false) { + sub.flags |= 8; + if (isComputed) { + sub.next = batchedComputed; + batchedComputed = sub; + return; + } + sub.next = batchedSub; + batchedSub = sub; +} +function startBatch() { + batchDepth++; +} +function endBatch() { + if (--batchDepth > 0) { + return; + } + if (batchedComputed) { + let e = batchedComputed; + batchedComputed = void 0; + while (e) { + const next = e.next; + e.next = void 0; + e.flags &= ~8; + e = next; + } + } + let error; + while (batchedSub) { + let e = batchedSub; + batchedSub = void 0; + while (e) { + const next = e.next; + e.next = void 0; + e.flags &= ~8; + if (e.flags & 1) { + try { + ; + e.trigger(); + } catch (err) { + if (!error) error = err; + } + } + e = next; + } + } + if (error) throw error; +} +function prepareDeps(sub) { + for (let link = sub.deps; link; link = link.nextDep) { + link.version = -1; + link.prevActiveLink = link.dep.activeLink; + link.dep.activeLink = link; + } +} +function cleanupDeps(sub) { + let head; + let tail = sub.depsTail; + let link = tail; + while (link) { + const prev = link.prevDep; + if (link.version === -1) { + if (link === tail) tail = prev; + removeSub(link); + removeDep(link); + } else { + head = link; + } + link.dep.activeLink = link.prevActiveLink; + link.prevActiveLink = void 0; + link = prev; + } + sub.deps = head; + sub.depsTail = tail; +} +function isDirty(sub) { + for (let link = sub.deps; link; link = link.nextDep) { + if (link.dep.version !== link.version || link.dep.computed && (refreshComputed(link.dep.computed) || link.dep.version !== link.version)) { + return true; + } + } + if (sub._dirty) { + return true; + } + return false; +} +function refreshComputed(computed3) { + if (computed3.flags & 4 && !(computed3.flags & 16)) { + return; + } + computed3.flags &= ~16; + if (computed3.globalVersion === globalVersion) { + return; + } + computed3.globalVersion = globalVersion; + const dep = computed3.dep; + computed3.flags |= 2; + if (dep.version > 0 && !computed3.isSSR && computed3.deps && !isDirty(computed3)) { + computed3.flags &= ~2; + return; + } + const prevSub = activeSub; + const prevShouldTrack = shouldTrack; + activeSub = computed3; + shouldTrack = true; + try { + prepareDeps(computed3); + const value = computed3.fn(computed3._value); + if (dep.version === 0 || hasChanged(value, computed3._value)) { + computed3._value = value; + dep.version++; + } + } catch (err) { + dep.version++; + throw err; + } finally { + activeSub = prevSub; + shouldTrack = prevShouldTrack; + cleanupDeps(computed3); + computed3.flags &= ~2; + } +} +function removeSub(link, soft = false) { + const { dep, prevSub, nextSub } = link; + if (prevSub) { + prevSub.nextSub = nextSub; + link.prevSub = void 0; + } + if (nextSub) { + nextSub.prevSub = prevSub; + link.nextSub = void 0; + } + if (dep.subsHead === link) { + dep.subsHead = nextSub; + } + if (dep.subs === link) { + dep.subs = prevSub; + if (!prevSub && dep.computed) { + dep.computed.flags &= ~4; + for (let l = dep.computed.deps; l; l = l.nextDep) { + removeSub(l, true); + } + } + } + if (!soft && !--dep.sc && dep.map) { + dep.map.delete(dep.key); + } +} +function removeDep(link) { + const { prevDep, nextDep } = link; + if (prevDep) { + prevDep.nextDep = nextDep; + link.prevDep = void 0; + } + if (nextDep) { + nextDep.prevDep = prevDep; + link.nextDep = void 0; + } +} +function effect(fn, options) { + if (fn.effect instanceof ReactiveEffect) { + fn = fn.effect.fn; + } + const e = new ReactiveEffect(fn); + if (options) { + extend(e, options); + } + try { + e.run(); + } catch (err) { + e.stop(); + throw err; + } + const runner = e.run.bind(e); + runner.effect = e; + return runner; +} +function stop(runner) { + runner.effect.stop(); +} +var shouldTrack = true; +var trackStack = []; +function pauseTracking() { + trackStack.push(shouldTrack); + shouldTrack = false; +} +function resetTracking() { + const last = trackStack.pop(); + shouldTrack = last === void 0 ? true : last; +} +function cleanupEffect(e) { + const { cleanup } = e; + e.cleanup = void 0; + if (cleanup) { + const prevSub = activeSub; + activeSub = void 0; + try { + cleanup(); + } finally { + activeSub = prevSub; + } + } +} +var globalVersion = 0; +var Link = class { + constructor(sub, dep) { + this.sub = sub; + this.dep = dep; + this.version = dep.version; + this.nextDep = this.prevDep = this.nextSub = this.prevSub = this.prevActiveLink = void 0; + } +}; +var Dep = class { + constructor(computed3) { + this.computed = computed3; + this.version = 0; + this.activeLink = void 0; + this.subs = void 0; + this.map = void 0; + this.key = void 0; + this.sc = 0; + if (true) { + this.subsHead = void 0; + } + } + track(debugInfo) { + if (!activeSub || !shouldTrack || activeSub === this.computed) { + return; + } + let link = this.activeLink; + if (link === void 0 || link.sub !== activeSub) { + link = this.activeLink = new Link(activeSub, this); + if (!activeSub.deps) { + activeSub.deps = activeSub.depsTail = link; + } else { + link.prevDep = activeSub.depsTail; + activeSub.depsTail.nextDep = link; + activeSub.depsTail = link; + } + addSub(link); + } else if (link.version === -1) { + link.version = this.version; + if (link.nextDep) { + const next = link.nextDep; + next.prevDep = link.prevDep; + if (link.prevDep) { + link.prevDep.nextDep = next; + } + link.prevDep = activeSub.depsTail; + link.nextDep = void 0; + activeSub.depsTail.nextDep = link; + activeSub.depsTail = link; + if (activeSub.deps === link) { + activeSub.deps = next; + } + } + } + if (activeSub.onTrack) { + activeSub.onTrack( + extend( + { + effect: activeSub + }, + debugInfo + ) + ); + } + return link; + } + trigger(debugInfo) { + this.version++; + globalVersion++; + this.notify(debugInfo); + } + notify(debugInfo) { + startBatch(); + try { + if (true) { + for (let head = this.subsHead; head; head = head.nextSub) { + if (head.sub.onTrigger && !(head.sub.flags & 8)) { + head.sub.onTrigger( + extend( + { + effect: head.sub + }, + debugInfo + ) + ); + } + } + } + for (let link = this.subs; link; link = link.prevSub) { + if (link.sub.notify()) { + ; + link.sub.dep.notify(); + } + } + } finally { + endBatch(); + } + } +}; +function addSub(link) { + link.dep.sc++; + if (link.sub.flags & 4) { + const computed3 = link.dep.computed; + if (computed3 && !link.dep.subs) { + computed3.flags |= 4 | 16; + for (let l = computed3.deps; l; l = l.nextDep) { + addSub(l); + } + } + const currentTail = link.dep.subs; + if (currentTail !== link) { + link.prevSub = currentTail; + if (currentTail) currentTail.nextSub = link; + } + if (link.dep.subsHead === void 0) { + link.dep.subsHead = link; + } + link.dep.subs = link; + } +} +var targetMap = /* @__PURE__ */ new WeakMap(); +var ITERATE_KEY = Symbol( + true ? "Object iterate" : "" +); +var MAP_KEY_ITERATE_KEY = Symbol( + true ? "Map keys iterate" : "" +); +var ARRAY_ITERATE_KEY = Symbol( + true ? "Array iterate" : "" +); +function track(target, type, key) { + if (shouldTrack && activeSub) { + let depsMap = targetMap.get(target); + if (!depsMap) { + targetMap.set(target, depsMap = /* @__PURE__ */ new Map()); + } + let dep = depsMap.get(key); + if (!dep) { + depsMap.set(key, dep = new Dep()); + dep.map = depsMap; + dep.key = key; + } + if (true) { + dep.track({ + target, + type, + key + }); + } else { + dep.track(); + } + } +} +function trigger(target, type, key, newValue, oldValue, oldTarget) { + const depsMap = targetMap.get(target); + if (!depsMap) { + globalVersion++; + return; + } + const run = (dep) => { + if (dep) { + if (true) { + dep.trigger({ + target, + type, + key, + newValue, + oldValue, + oldTarget + }); + } else { + dep.trigger(); + } + } + }; + startBatch(); + if (type === "clear") { + depsMap.forEach(run); + } else { + const targetIsArray = isArray(target); + const isArrayIndex = targetIsArray && isIntegerKey(key); + if (targetIsArray && key === "length") { + const newLength = Number(newValue); + depsMap.forEach((dep, key2) => { + if (key2 === "length" || key2 === ARRAY_ITERATE_KEY || !isSymbol(key2) && key2 >= newLength) { + run(dep); + } + }); + } else { + if (key !== void 0 || depsMap.has(void 0)) { + run(depsMap.get(key)); + } + if (isArrayIndex) { + run(depsMap.get(ARRAY_ITERATE_KEY)); + } + switch (type) { + case "add": + if (!targetIsArray) { + run(depsMap.get(ITERATE_KEY)); + if (isMap(target)) { + run(depsMap.get(MAP_KEY_ITERATE_KEY)); + } + } else if (isArrayIndex) { + run(depsMap.get("length")); + } + break; + case "delete": + if (!targetIsArray) { + run(depsMap.get(ITERATE_KEY)); + if (isMap(target)) { + run(depsMap.get(MAP_KEY_ITERATE_KEY)); + } + } + break; + case "set": + if (isMap(target)) { + run(depsMap.get(ITERATE_KEY)); + } + break; + } + } + } + endBatch(); +} +function getDepFromReactive(object, key) { + const depMap = targetMap.get(object); + return depMap && depMap.get(key); +} +function reactiveReadArray(array) { + const raw = toRaw(array); + if (raw === array) return raw; + track(raw, "iterate", ARRAY_ITERATE_KEY); + return isShallow(array) ? raw : raw.map(toReactive); +} +function shallowReadArray(arr) { + track(arr = toRaw(arr), "iterate", ARRAY_ITERATE_KEY); + return arr; +} +var arrayInstrumentations = { + __proto__: null, + [Symbol.iterator]() { + return iterator(this, Symbol.iterator, toReactive); + }, + concat(...args) { + return reactiveReadArray(this).concat( + ...args.map((x) => isArray(x) ? reactiveReadArray(x) : x) + ); + }, + entries() { + return iterator(this, "entries", (value) => { + value[1] = toReactive(value[1]); + return value; + }); + }, + every(fn, thisArg) { + return apply(this, "every", fn, thisArg, void 0, arguments); + }, + filter(fn, thisArg) { + return apply(this, "filter", fn, thisArg, (v) => v.map(toReactive), arguments); + }, + find(fn, thisArg) { + return apply(this, "find", fn, thisArg, toReactive, arguments); + }, + findIndex(fn, thisArg) { + return apply(this, "findIndex", fn, thisArg, void 0, arguments); + }, + findLast(fn, thisArg) { + return apply(this, "findLast", fn, thisArg, toReactive, arguments); + }, + findLastIndex(fn, thisArg) { + return apply(this, "findLastIndex", fn, thisArg, void 0, arguments); + }, + // flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement + forEach(fn, thisArg) { + return apply(this, "forEach", fn, thisArg, void 0, arguments); + }, + includes(...args) { + return searchProxy(this, "includes", args); + }, + indexOf(...args) { + return searchProxy(this, "indexOf", args); + }, + join(separator) { + return reactiveReadArray(this).join(separator); + }, + // keys() iterator only reads `length`, no optimisation required + lastIndexOf(...args) { + return searchProxy(this, "lastIndexOf", args); + }, + map(fn, thisArg) { + return apply(this, "map", fn, thisArg, void 0, arguments); + }, + pop() { + return noTracking(this, "pop"); + }, + push(...args) { + return noTracking(this, "push", args); + }, + reduce(fn, ...args) { + return reduce(this, "reduce", fn, args); + }, + reduceRight(fn, ...args) { + return reduce(this, "reduceRight", fn, args); + }, + shift() { + return noTracking(this, "shift"); + }, + // slice could use ARRAY_ITERATE but also seems to beg for range tracking + some(fn, thisArg) { + return apply(this, "some", fn, thisArg, void 0, arguments); + }, + splice(...args) { + return noTracking(this, "splice", args); + }, + toReversed() { + return reactiveReadArray(this).toReversed(); + }, + toSorted(comparer) { + return reactiveReadArray(this).toSorted(comparer); + }, + toSpliced(...args) { + return reactiveReadArray(this).toSpliced(...args); + }, + unshift(...args) { + return noTracking(this, "unshift", args); + }, + values() { + return iterator(this, "values", toReactive); + } +}; +function iterator(self2, method, wrapValue) { + const arr = shallowReadArray(self2); + const iter = arr[method](); + if (arr !== self2 && !isShallow(self2)) { + iter._next = iter.next; + iter.next = () => { + const result = iter._next(); + if (result.value) { + result.value = wrapValue(result.value); + } + return result; + }; + } + return iter; +} +var arrayProto = Array.prototype; +function apply(self2, method, fn, thisArg, wrappedRetFn, args) { + const arr = shallowReadArray(self2); + const needsWrap = arr !== self2 && !isShallow(self2); + const methodFn = arr[method]; + if (methodFn !== arrayProto[method]) { + const result2 = methodFn.apply(self2, args); + return needsWrap ? toReactive(result2) : result2; + } + let wrappedFn = fn; + if (arr !== self2) { + if (needsWrap) { + wrappedFn = function(item, index) { + return fn.call(this, toReactive(item), index, self2); + }; + } else if (fn.length > 2) { + wrappedFn = function(item, index) { + return fn.call(this, item, index, self2); + }; + } + } + const result = methodFn.call(arr, wrappedFn, thisArg); + return needsWrap && wrappedRetFn ? wrappedRetFn(result) : result; +} +function reduce(self2, method, fn, args) { + const arr = shallowReadArray(self2); + let wrappedFn = fn; + if (arr !== self2) { + if (!isShallow(self2)) { + wrappedFn = function(acc, item, index) { + return fn.call(this, acc, toReactive(item), index, self2); + }; + } else if (fn.length > 3) { + wrappedFn = function(acc, item, index) { + return fn.call(this, acc, item, index, self2); + }; + } + } + return arr[method](wrappedFn, ...args); +} +function searchProxy(self2, method, args) { + const arr = toRaw(self2); + track(arr, "iterate", ARRAY_ITERATE_KEY); + const res = arr[method](...args); + if ((res === -1 || res === false) && isProxy(args[0])) { + args[0] = toRaw(args[0]); + return arr[method](...args); + } + return res; +} +function noTracking(self2, method, args = []) { + pauseTracking(); + startBatch(); + const res = toRaw(self2)[method].apply(self2, args); + endBatch(); + resetTracking(); + return res; +} +var isNonTrackableKeys = makeMap(`__proto__,__v_isRef,__isVue`); +var builtInSymbols = new Set( + Object.getOwnPropertyNames(Symbol).filter((key) => key !== "arguments" && key !== "caller").map((key) => Symbol[key]).filter(isSymbol) +); +function hasOwnProperty2(key) { + if (!isSymbol(key)) key = String(key); + const obj = toRaw(this); + track(obj, "has", key); + return obj.hasOwnProperty(key); +} +var BaseReactiveHandler = class { + constructor(_isReadonly = false, _isShallow = false) { + this._isReadonly = _isReadonly; + this._isShallow = _isShallow; + } + get(target, key, receiver) { + if (key === "__v_skip") return target["__v_skip"]; + const isReadonly2 = this._isReadonly, isShallow2 = this._isShallow; + if (key === "__v_isReactive") { + return !isReadonly2; + } else if (key === "__v_isReadonly") { + return isReadonly2; + } else if (key === "__v_isShallow") { + return isShallow2; + } else if (key === "__v_raw") { + if (receiver === (isReadonly2 ? isShallow2 ? shallowReadonlyMap : readonlyMap : isShallow2 ? shallowReactiveMap : reactiveMap).get(target) || // receiver is not the reactive proxy, but has the same prototype + // this means the receiver is a user proxy of the reactive proxy + Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver)) { + return target; + } + return; + } + const targetIsArray = isArray(target); + if (!isReadonly2) { + let fn; + if (targetIsArray && (fn = arrayInstrumentations[key])) { + return fn; + } + if (key === "hasOwnProperty") { + return hasOwnProperty2; + } + } + const res = Reflect.get( + target, + key, + // if this is a proxy wrapping a ref, return methods using the raw ref + // as receiver so that we don't have to call `toRaw` on the ref in all + // its class methods + isRef2(target) ? target : receiver + ); + if (isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) { + return res; + } + if (!isReadonly2) { + track(target, "get", key); + } + if (isShallow2) { + return res; + } + if (isRef2(res)) { + return targetIsArray && isIntegerKey(key) ? res : res.value; + } + if (isObject(res)) { + return isReadonly2 ? readonly(res) : reactive(res); + } + return res; + } +}; +var MutableReactiveHandler = class extends BaseReactiveHandler { + constructor(isShallow2 = false) { + super(false, isShallow2); + } + set(target, key, value, receiver) { + let oldValue = target[key]; + if (!this._isShallow) { + const isOldValueReadonly = isReadonly(oldValue); + if (!isShallow(value) && !isReadonly(value)) { + oldValue = toRaw(oldValue); + value = toRaw(value); + } + if (!isArray(target) && isRef2(oldValue) && !isRef2(value)) { + if (isOldValueReadonly) { + return false; + } else { + oldValue.value = value; + return true; + } + } + } + const hadKey = isArray(target) && isIntegerKey(key) ? Number(key) < target.length : hasOwn(target, key); + const result = Reflect.set( + target, + key, + value, + isRef2(target) ? target : receiver + ); + if (target === toRaw(receiver)) { + if (!hadKey) { + trigger(target, "add", key, value); + } else if (hasChanged(value, oldValue)) { + trigger(target, "set", key, value, oldValue); + } + } + return result; + } + deleteProperty(target, key) { + const hadKey = hasOwn(target, key); + const oldValue = target[key]; + const result = Reflect.deleteProperty(target, key); + if (result && hadKey) { + trigger(target, "delete", key, void 0, oldValue); + } + return result; + } + has(target, key) { + const result = Reflect.has(target, key); + if (!isSymbol(key) || !builtInSymbols.has(key)) { + track(target, "has", key); + } + return result; + } + ownKeys(target) { + track( + target, + "iterate", + isArray(target) ? "length" : ITERATE_KEY + ); + return Reflect.ownKeys(target); + } +}; +var ReadonlyReactiveHandler = class extends BaseReactiveHandler { + constructor(isShallow2 = false) { + super(true, isShallow2); + } + set(target, key) { + if (true) { + warn( + `Set operation on key "${String(key)}" failed: target is readonly.`, + target + ); + } + return true; + } + deleteProperty(target, key) { + if (true) { + warn( + `Delete operation on key "${String(key)}" failed: target is readonly.`, + target + ); + } + return true; + } +}; +var mutableHandlers = new MutableReactiveHandler(); +var readonlyHandlers = new ReadonlyReactiveHandler(); +var shallowReactiveHandlers = new MutableReactiveHandler(true); +var shallowReadonlyHandlers = new ReadonlyReactiveHandler(true); +var toShallow = (value) => value; +var getProto = (v) => Reflect.getPrototypeOf(v); +function createIterableMethod(method, isReadonly2, isShallow2) { + return function(...args) { + const target = this["__v_raw"]; + const rawTarget = toRaw(target); + const targetIsMap = isMap(rawTarget); + const isPair = method === "entries" || method === Symbol.iterator && targetIsMap; + const isKeyOnly = method === "keys" && targetIsMap; + const innerIterator = target[method](...args); + const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive; + !isReadonly2 && track( + rawTarget, + "iterate", + isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY + ); + return { + // iterator protocol + next() { + const { value, done } = innerIterator.next(); + return done ? { value, done } : { + value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value), + done + }; + }, + // iterable protocol + [Symbol.iterator]() { + return this; + } + }; + }; +} +function createReadonlyMethod(type) { + return function(...args) { + if (true) { + const key = args[0] ? `on key "${args[0]}" ` : ``; + warn( + `${capitalize(type)} operation ${key}failed: target is readonly.`, + toRaw(this) + ); + } + return type === "delete" ? false : type === "clear" ? void 0 : this; + }; +} +function createInstrumentations(readonly2, shallow) { + const instrumentations = { + get(key) { + const target = this["__v_raw"]; + const rawTarget = toRaw(target); + const rawKey = toRaw(key); + if (!readonly2) { + if (hasChanged(key, rawKey)) { + track(rawTarget, "get", key); + } + track(rawTarget, "get", rawKey); + } + const { has } = getProto(rawTarget); + const wrap = shallow ? toShallow : readonly2 ? toReadonly : toReactive; + if (has.call(rawTarget, key)) { + return wrap(target.get(key)); + } else if (has.call(rawTarget, rawKey)) { + return wrap(target.get(rawKey)); + } else if (target !== rawTarget) { + target.get(key); + } + }, + get size() { + const target = this["__v_raw"]; + !readonly2 && track(toRaw(target), "iterate", ITERATE_KEY); + return Reflect.get(target, "size", target); + }, + has(key) { + const target = this["__v_raw"]; + const rawTarget = toRaw(target); + const rawKey = toRaw(key); + if (!readonly2) { + if (hasChanged(key, rawKey)) { + track(rawTarget, "has", key); + } + track(rawTarget, "has", rawKey); + } + return key === rawKey ? target.has(key) : target.has(key) || target.has(rawKey); + }, + forEach(callback, thisArg) { + const observed = this; + const target = observed["__v_raw"]; + const rawTarget = toRaw(target); + const wrap = shallow ? toShallow : readonly2 ? toReadonly : toReactive; + !readonly2 && track(rawTarget, "iterate", ITERATE_KEY); + return target.forEach((value, key) => { + return callback.call(thisArg, wrap(value), wrap(key), observed); + }); + } + }; + extend( + instrumentations, + readonly2 ? { + add: createReadonlyMethod("add"), + set: createReadonlyMethod("set"), + delete: createReadonlyMethod("delete"), + clear: createReadonlyMethod("clear") + } : { + add(value) { + if (!shallow && !isShallow(value) && !isReadonly(value)) { + value = toRaw(value); + } + const target = toRaw(this); + const proto = getProto(target); + const hadKey = proto.has.call(target, value); + if (!hadKey) { + target.add(value); + trigger(target, "add", value, value); + } + return this; + }, + set(key, value) { + if (!shallow && !isShallow(value) && !isReadonly(value)) { + value = toRaw(value); + } + const target = toRaw(this); + const { has, get } = getProto(target); + let hadKey = has.call(target, key); + if (!hadKey) { + key = toRaw(key); + hadKey = has.call(target, key); + } else if (true) { + checkIdentityKeys(target, has, key); + } + const oldValue = get.call(target, key); + target.set(key, value); + if (!hadKey) { + trigger(target, "add", key, value); + } else if (hasChanged(value, oldValue)) { + trigger(target, "set", key, value, oldValue); + } + return this; + }, + delete(key) { + const target = toRaw(this); + const { has, get } = getProto(target); + let hadKey = has.call(target, key); + if (!hadKey) { + key = toRaw(key); + hadKey = has.call(target, key); + } else if (true) { + checkIdentityKeys(target, has, key); + } + const oldValue = get ? get.call(target, key) : void 0; + const result = target.delete(key); + if (hadKey) { + trigger(target, "delete", key, void 0, oldValue); + } + return result; + }, + clear() { + const target = toRaw(this); + const hadItems = target.size !== 0; + const oldTarget = true ? isMap(target) ? new Map(target) : new Set(target) : void 0; + const result = target.clear(); + if (hadItems) { + trigger( + target, + "clear", + void 0, + void 0, + oldTarget + ); + } + return result; + } + } + ); + const iteratorMethods = [ + "keys", + "values", + "entries", + Symbol.iterator + ]; + iteratorMethods.forEach((method) => { + instrumentations[method] = createIterableMethod(method, readonly2, shallow); + }); + return instrumentations; +} +function createInstrumentationGetter(isReadonly2, shallow) { + const instrumentations = createInstrumentations(isReadonly2, shallow); + return (target, key, receiver) => { + if (key === "__v_isReactive") { + return !isReadonly2; + } else if (key === "__v_isReadonly") { + return isReadonly2; + } else if (key === "__v_raw") { + return target; + } + return Reflect.get( + hasOwn(instrumentations, key) && key in target ? instrumentations : target, + key, + receiver + ); + }; +} +var mutableCollectionHandlers = { + get: createInstrumentationGetter(false, false) +}; +var shallowCollectionHandlers = { + get: createInstrumentationGetter(false, true) +}; +var readonlyCollectionHandlers = { + get: createInstrumentationGetter(true, false) +}; +var shallowReadonlyCollectionHandlers = { + get: createInstrumentationGetter(true, true) +}; +function checkIdentityKeys(target, has, key) { + const rawKey = toRaw(key); + if (rawKey !== key && has.call(target, rawKey)) { + const type = toRawType(target); + warn( + `Reactive ${type} contains both the raw and reactive versions of the same object${type === `Map` ? ` as keys` : ``}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.` + ); + } +} +var reactiveMap = /* @__PURE__ */ new WeakMap(); +var shallowReactiveMap = /* @__PURE__ */ new WeakMap(); +var readonlyMap = /* @__PURE__ */ new WeakMap(); +var shallowReadonlyMap = /* @__PURE__ */ new WeakMap(); +function targetTypeMap(rawType) { + switch (rawType) { + case "Object": + case "Array": + return 1; + case "Map": + case "Set": + case "WeakMap": + case "WeakSet": + return 2; + default: + return 0; + } +} +function getTargetType(value) { + return value["__v_skip"] || !Object.isExtensible(value) ? 0 : targetTypeMap(toRawType(value)); +} +function reactive(target) { + if (isReadonly(target)) { + return target; + } + return createReactiveObject( + target, + false, + mutableHandlers, + mutableCollectionHandlers, + reactiveMap + ); +} +function shallowReactive(target) { + return createReactiveObject( + target, + false, + shallowReactiveHandlers, + shallowCollectionHandlers, + shallowReactiveMap + ); +} +function readonly(target) { + return createReactiveObject( + target, + true, + readonlyHandlers, + readonlyCollectionHandlers, + readonlyMap + ); +} +function shallowReadonly(target) { + return createReactiveObject( + target, + true, + shallowReadonlyHandlers, + shallowReadonlyCollectionHandlers, + shallowReadonlyMap + ); +} +function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) { + if (!isObject(target)) { + if (true) { + warn( + `value cannot be made ${isReadonly2 ? "readonly" : "reactive"}: ${String( + target + )}` + ); + } + return target; + } + if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) { + return target; + } + const existingProxy = proxyMap.get(target); + if (existingProxy) { + return existingProxy; + } + const targetType = getTargetType(target); + if (targetType === 0) { + return target; + } + const proxy = new Proxy( + target, + targetType === 2 ? collectionHandlers : baseHandlers + ); + proxyMap.set(target, proxy); + return proxy; +} +function isReactive(value) { + if (isReadonly(value)) { + return isReactive(value["__v_raw"]); + } + return !!(value && value["__v_isReactive"]); +} +function isReadonly(value) { + return !!(value && value["__v_isReadonly"]); +} +function isShallow(value) { + return !!(value && value["__v_isShallow"]); +} +function isProxy(value) { + return value ? !!value["__v_raw"] : false; +} +function toRaw(observed) { + const raw = observed && observed["__v_raw"]; + return raw ? toRaw(raw) : observed; +} +function markRaw(value) { + if (!hasOwn(value, "__v_skip") && Object.isExtensible(value)) { + def(value, "__v_skip", true); + } + return value; +} +var toReactive = (value) => isObject(value) ? reactive(value) : value; +var toReadonly = (value) => isObject(value) ? readonly(value) : value; +function isRef2(r) { + return r ? r["__v_isRef"] === true : false; +} +function ref(value) { + return createRef(value, false); +} +function shallowRef(value) { + return createRef(value, true); +} +function createRef(rawValue, shallow) { + if (isRef2(rawValue)) { + return rawValue; + } + return new RefImpl(rawValue, shallow); +} +var RefImpl = class { + constructor(value, isShallow2) { + this.dep = new Dep(); + this["__v_isRef"] = true; + this["__v_isShallow"] = false; + this._rawValue = isShallow2 ? value : toRaw(value); + this._value = isShallow2 ? value : toReactive(value); + this["__v_isShallow"] = isShallow2; + } + get value() { + if (true) { + this.dep.track({ + target: this, + type: "get", + key: "value" + }); + } else { + this.dep.track(); + } + return this._value; + } + set value(newValue) { + const oldValue = this._rawValue; + const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue); + newValue = useDirectValue ? newValue : toRaw(newValue); + if (hasChanged(newValue, oldValue)) { + this._rawValue = newValue; + this._value = useDirectValue ? newValue : toReactive(newValue); + if (true) { + this.dep.trigger({ + target: this, + type: "set", + key: "value", + newValue, + oldValue + }); + } else { + this.dep.trigger(); + } + } + } +}; +function triggerRef(ref2) { + if (ref2.dep) { + if (true) { + ref2.dep.trigger({ + target: ref2, + type: "set", + key: "value", + newValue: ref2._value + }); + } else { + ref2.dep.trigger(); + } + } +} +function unref(ref2) { + return isRef2(ref2) ? ref2.value : ref2; +} +function toValue(source) { + return isFunction(source) ? source() : unref(source); +} +var shallowUnwrapHandlers = { + get: (target, key, receiver) => key === "__v_raw" ? target : unref(Reflect.get(target, key, receiver)), + set: (target, key, value, receiver) => { + const oldValue = target[key]; + if (isRef2(oldValue) && !isRef2(value)) { + oldValue.value = value; + return true; + } else { + return Reflect.set(target, key, value, receiver); + } + } +}; +function proxyRefs(objectWithRefs) { + return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers); +} +var CustomRefImpl = class { + constructor(factory) { + this["__v_isRef"] = true; + this._value = void 0; + const dep = this.dep = new Dep(); + const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep)); + this._get = get; + this._set = set; + } + get value() { + return this._value = this._get(); + } + set value(newVal) { + this._set(newVal); + } +}; +function customRef(factory) { + return new CustomRefImpl(factory); +} +function toRefs(object) { + if (!isProxy(object)) { + warn(`toRefs() expects a reactive object but received a plain one.`); + } + const ret = isArray(object) ? new Array(object.length) : {}; + for (const key in object) { + ret[key] = propertyToRef(object, key); + } + return ret; +} +var ObjectRefImpl = class { + constructor(_object, _key, _defaultValue) { + this._object = _object; + this._key = _key; + this._defaultValue = _defaultValue; + this["__v_isRef"] = true; + this._value = void 0; + } + get value() { + const val = this._object[this._key]; + return this._value = val === void 0 ? this._defaultValue : val; + } + set value(newVal) { + this._object[this._key] = newVal; + } + get dep() { + return getDepFromReactive(toRaw(this._object), this._key); + } +}; +var GetterRefImpl = class { + constructor(_getter) { + this._getter = _getter; + this["__v_isRef"] = true; + this["__v_isReadonly"] = true; + this._value = void 0; + } + get value() { + return this._value = this._getter(); + } +}; +function toRef(source, key, defaultValue) { + if (isRef2(source)) { + return source; + } else if (isFunction(source)) { + return new GetterRefImpl(source); + } else if (isObject(source) && arguments.length > 1) { + return propertyToRef(source, key, defaultValue); + } else { + return ref(source); + } +} +function propertyToRef(source, key, defaultValue) { + const val = source[key]; + return isRef2(val) ? val : new ObjectRefImpl(source, key, defaultValue); +} +var ComputedRefImpl = class { + constructor(fn, setter, isSSR) { + this.fn = fn; + this.setter = setter; + this._value = void 0; + this.dep = new Dep(this); + this.__v_isRef = true; + this.deps = void 0; + this.depsTail = void 0; + this.flags = 16; + this.globalVersion = globalVersion - 1; + this.next = void 0; + this.effect = this; + this["__v_isReadonly"] = !setter; + this.isSSR = isSSR; + } + /** + * @internal + */ + notify() { + this.flags |= 16; + if (!(this.flags & 8) && // avoid infinite self recursion + activeSub !== this) { + batch(this, true); + return true; + } else if (true) ; + } + get value() { + const link = true ? this.dep.track({ + target: this, + type: "get", + key: "value" + }) : this.dep.track(); + refreshComputed(this); + if (link) { + link.version = this.dep.version; + } + return this._value; + } + set value(newValue) { + if (this.setter) { + this.setter(newValue); + } else if (true) { + warn("Write operation failed: computed value is readonly"); + } + } +}; +function computed(getterOrOptions, debugOptions, isSSR = false) { + let getter; + let setter; + if (isFunction(getterOrOptions)) { + getter = getterOrOptions; + } else { + getter = getterOrOptions.get; + setter = getterOrOptions.set; + } + const cRef = new ComputedRefImpl(getter, setter, isSSR); + if (debugOptions && !isSSR) { + cRef.onTrack = debugOptions.onTrack; + cRef.onTrigger = debugOptions.onTrigger; + } + return cRef; +} +var TrackOpTypes = { + "GET": "get", + "HAS": "has", + "ITERATE": "iterate" +}; +var TriggerOpTypes = { + "SET": "set", + "ADD": "add", + "DELETE": "delete", + "CLEAR": "clear" +}; +var INITIAL_WATCHER_VALUE = {}; +var cleanupMap = /* @__PURE__ */ new WeakMap(); +var activeWatcher = void 0; +function getCurrentWatcher() { + return activeWatcher; +} +function onWatcherCleanup(cleanupFn, failSilently = false, owner = activeWatcher) { + if (owner) { + let cleanups = cleanupMap.get(owner); + if (!cleanups) cleanupMap.set(owner, cleanups = []); + cleanups.push(cleanupFn); + } else if (!failSilently) { + warn( + `onWatcherCleanup() was called when there was no active watcher to associate with.` + ); + } +} +function watch(source, cb, options = EMPTY_OBJ) { + const { immediate, deep, once, scheduler, augmentJob, call } = options; + const warnInvalidSource = (s) => { + (options.onWarn || warn)( + `Invalid watch source: `, + s, + `A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types.` + ); + }; + const reactiveGetter = (source2) => { + if (deep) return source2; + if (isShallow(source2) || deep === false || deep === 0) + return traverse(source2, 1); + return traverse(source2); + }; + let effect2; + let getter; + let cleanup; + let boundCleanup; + let forceTrigger = false; + let isMultiSource = false; + if (isRef2(source)) { + getter = () => source.value; + forceTrigger = isShallow(source); + } else if (isReactive(source)) { + getter = () => reactiveGetter(source); + forceTrigger = true; + } else if (isArray(source)) { + isMultiSource = true; + forceTrigger = source.some((s) => isReactive(s) || isShallow(s)); + getter = () => source.map((s) => { + if (isRef2(s)) { + return s.value; + } else if (isReactive(s)) { + return reactiveGetter(s); + } else if (isFunction(s)) { + return call ? call(s, 2) : s(); + } else { + warnInvalidSource(s); + } + }); + } else if (isFunction(source)) { + if (cb) { + getter = call ? () => call(source, 2) : source; + } else { + getter = () => { + if (cleanup) { + pauseTracking(); + try { + cleanup(); + } finally { + resetTracking(); + } + } + const currentEffect = activeWatcher; + activeWatcher = effect2; + try { + return call ? call(source, 3, [boundCleanup]) : source(boundCleanup); + } finally { + activeWatcher = currentEffect; + } + }; + } + } else { + getter = NOOP; + warnInvalidSource(source); + } + if (cb && deep) { + const baseGetter = getter; + const depth = deep === true ? Infinity : deep; + getter = () => traverse(baseGetter(), depth); + } + const scope = getCurrentScope(); + const watchHandle = () => { + effect2.stop(); + if (scope && scope.active) { + remove(scope.effects, effect2); + } + }; + if (once && cb) { + const _cb = cb; + cb = (...args) => { + _cb(...args); + watchHandle(); + }; + } + let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE; + const job = (immediateFirstRun) => { + if (!(effect2.flags & 1) || !effect2.dirty && !immediateFirstRun) { + return; + } + if (cb) { + const newValue = effect2.run(); + if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => hasChanged(v, oldValue[i])) : hasChanged(newValue, oldValue))) { + if (cleanup) { + cleanup(); + } + const currentWatcher = activeWatcher; + activeWatcher = effect2; + try { + const args = [ + newValue, + // pass undefined as the old value when it's changed for the first time + oldValue === INITIAL_WATCHER_VALUE ? void 0 : isMultiSource && oldValue[0] === INITIAL_WATCHER_VALUE ? [] : oldValue, + boundCleanup + ]; + call ? call(cb, 3, args) : ( + // @ts-expect-error + cb(...args) + ); + oldValue = newValue; + } finally { + activeWatcher = currentWatcher; + } + } + } else { + effect2.run(); + } + }; + if (augmentJob) { + augmentJob(job); + } + effect2 = new ReactiveEffect(getter); + effect2.scheduler = scheduler ? () => scheduler(job, false) : job; + boundCleanup = (fn) => onWatcherCleanup(fn, false, effect2); + cleanup = effect2.onStop = () => { + const cleanups = cleanupMap.get(effect2); + if (cleanups) { + if (call) { + call(cleanups, 4); + } else { + for (const cleanup2 of cleanups) cleanup2(); + } + cleanupMap.delete(effect2); + } + }; + if (true) { + effect2.onTrack = options.onTrack; + effect2.onTrigger = options.onTrigger; + } + if (cb) { + if (immediate) { + job(true); + } else { + oldValue = effect2.run(); + } + } else if (scheduler) { + scheduler(job.bind(null, true), true); + } else { + effect2.run(); + } + watchHandle.pause = effect2.pause.bind(effect2); + watchHandle.resume = effect2.resume.bind(effect2); + watchHandle.stop = watchHandle; + return watchHandle; +} +function traverse(value, depth = Infinity, seen) { + if (depth <= 0 || !isObject(value) || value["__v_skip"]) { + return value; + } + seen = seen || /* @__PURE__ */ new Set(); + if (seen.has(value)) { + return value; + } + seen.add(value); + depth--; + if (isRef2(value)) { + traverse(value.value, depth, seen); + } else if (isArray(value)) { + for (let i = 0; i < value.length; i++) { + traverse(value[i], depth, seen); + } + } else if (isSet(value) || isMap(value)) { + value.forEach((v) => { + traverse(v, depth, seen); + }); + } else if (isPlainObject(value)) { + for (const key in value) { + traverse(value[key], depth, seen); + } + for (const key of Object.getOwnPropertySymbols(value)) { + if (Object.prototype.propertyIsEnumerable.call(value, key)) { + traverse(value[key], depth, seen); + } + } + } + return value; +} + +// node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js +var stack = []; +function pushWarningContext(vnode) { + stack.push(vnode); +} +function popWarningContext() { + stack.pop(); +} +var isWarning = false; +function warn$1(msg, ...args) { + if (isWarning) return; + isWarning = true; + pauseTracking(); + const instance = stack.length ? stack[stack.length - 1].component : null; + const appWarnHandler = instance && instance.appContext.config.warnHandler; + const trace = getComponentTrace(); + if (appWarnHandler) { + callWithErrorHandling( + appWarnHandler, + instance, + 11, + [ + // eslint-disable-next-line no-restricted-syntax + msg + args.map((a) => { + var _a, _b; + return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a); + }).join(""), + instance && instance.proxy, + trace.map( + ({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>` + ).join("\n"), + trace + ] + ); + } else { + const warnArgs = [`[Vue warn]: ${msg}`, ...args]; + if (trace.length && // avoid spamming console during tests + true) { + warnArgs.push(` +`, ...formatTrace(trace)); + } + console.warn(...warnArgs); + } + resetTracking(); + isWarning = false; +} +function getComponentTrace() { + let currentVNode = stack[stack.length - 1]; + if (!currentVNode) { + return []; + } + const normalizedStack = []; + while (currentVNode) { + const last = normalizedStack[0]; + if (last && last.vnode === currentVNode) { + last.recurseCount++; + } else { + normalizedStack.push({ + vnode: currentVNode, + recurseCount: 0 + }); + } + const parentInstance = currentVNode.component && currentVNode.component.parent; + currentVNode = parentInstance && parentInstance.vnode; + } + return normalizedStack; +} +function formatTrace(trace) { + const logs = []; + trace.forEach((entry, i) => { + logs.push(...i === 0 ? [] : [` +`], ...formatTraceEntry(entry)); + }); + return logs; +} +function formatTraceEntry({ vnode, recurseCount }) { + const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``; + const isRoot = vnode.component ? vnode.component.parent == null : false; + const open = ` at <${formatComponentName( + vnode.component, + vnode.type, + isRoot + )}`; + const close = `>` + postfix; + return vnode.props ? [open, ...formatProps(vnode.props), close] : [open + close]; +} +function formatProps(props) { + const res = []; + const keys = Object.keys(props); + keys.slice(0, 3).forEach((key) => { + res.push(...formatProp(key, props[key])); + }); + if (keys.length > 3) { + res.push(` ...`); + } + return res; +} +function formatProp(key, value, raw) { + if (isString(value)) { + value = JSON.stringify(value); + return raw ? value : [`${key}=${value}`]; + } else if (typeof value === "number" || typeof value === "boolean" || value == null) { + return raw ? value : [`${key}=${value}`]; + } else if (isRef2(value)) { + value = formatProp(key, toRaw(value.value), true); + return raw ? value : [`${key}=Ref<`, value, `>`]; + } else if (isFunction(value)) { + return [`${key}=fn${value.name ? `<${value.name}>` : ``}`]; + } else { + value = toRaw(value); + return raw ? value : [`${key}=`, value]; + } +} +function assertNumber(val, type) { + if (false) return; + if (val === void 0) { + return; + } else if (typeof val !== "number") { + warn$1(`${type} is not a valid number - got ${JSON.stringify(val)}.`); + } else if (isNaN(val)) { + warn$1(`${type} is NaN - the duration expression might be incorrect.`); + } +} +var ErrorCodes = { + "SETUP_FUNCTION": 0, + "0": "SETUP_FUNCTION", + "RENDER_FUNCTION": 1, + "1": "RENDER_FUNCTION", + "NATIVE_EVENT_HANDLER": 5, + "5": "NATIVE_EVENT_HANDLER", + "COMPONENT_EVENT_HANDLER": 6, + "6": "COMPONENT_EVENT_HANDLER", + "VNODE_HOOK": 7, + "7": "VNODE_HOOK", + "DIRECTIVE_HOOK": 8, + "8": "DIRECTIVE_HOOK", + "TRANSITION_HOOK": 9, + "9": "TRANSITION_HOOK", + "APP_ERROR_HANDLER": 10, + "10": "APP_ERROR_HANDLER", + "APP_WARN_HANDLER": 11, + "11": "APP_WARN_HANDLER", + "FUNCTION_REF": 12, + "12": "FUNCTION_REF", + "ASYNC_COMPONENT_LOADER": 13, + "13": "ASYNC_COMPONENT_LOADER", + "SCHEDULER": 14, + "14": "SCHEDULER", + "COMPONENT_UPDATE": 15, + "15": "COMPONENT_UPDATE", + "APP_UNMOUNT_CLEANUP": 16, + "16": "APP_UNMOUNT_CLEANUP" +}; +var ErrorTypeStrings$1 = { + ["sp"]: "serverPrefetch hook", + ["bc"]: "beforeCreate hook", + ["c"]: "created hook", + ["bm"]: "beforeMount hook", + ["m"]: "mounted hook", + ["bu"]: "beforeUpdate hook", + ["u"]: "updated", + ["bum"]: "beforeUnmount hook", + ["um"]: "unmounted hook", + ["a"]: "activated hook", + ["da"]: "deactivated hook", + ["ec"]: "errorCaptured hook", + ["rtc"]: "renderTracked hook", + ["rtg"]: "renderTriggered hook", + [0]: "setup function", + [1]: "render function", + [2]: "watcher getter", + [3]: "watcher callback", + [4]: "watcher cleanup function", + [5]: "native event handler", + [6]: "component event handler", + [7]: "vnode hook", + [8]: "directive hook", + [9]: "transition hook", + [10]: "app errorHandler", + [11]: "app warnHandler", + [12]: "ref function", + [13]: "async component loader", + [14]: "scheduler flush", + [15]: "component update", + [16]: "app unmount cleanup function" +}; +function callWithErrorHandling(fn, instance, type, args) { + try { + return args ? fn(...args) : fn(); + } catch (err) { + handleError(err, instance, type); + } +} +function callWithAsyncErrorHandling(fn, instance, type, args) { + if (isFunction(fn)) { + const res = callWithErrorHandling(fn, instance, type, args); + if (res && isPromise(res)) { + res.catch((err) => { + handleError(err, instance, type); + }); + } + return res; + } + if (isArray(fn)) { + const values = []; + for (let i = 0; i < fn.length; i++) { + values.push(callWithAsyncErrorHandling(fn[i], instance, type, args)); + } + return values; + } else if (true) { + warn$1( + `Invalid value type passed to callWithAsyncErrorHandling(): ${typeof fn}` + ); + } +} +function handleError(err, instance, type, throwInDev = true) { + const contextVNode = instance ? instance.vnode : null; + const { errorHandler, throwUnhandledErrorInProduction } = instance && instance.appContext.config || EMPTY_OBJ; + if (instance) { + let cur = instance.parent; + const exposedInstance = instance.proxy; + const errorInfo = true ? ErrorTypeStrings$1[type] : `https://vuejs.org/error-reference/#runtime-${type}`; + while (cur) { + const errorCapturedHooks = cur.ec; + if (errorCapturedHooks) { + for (let i = 0; i < errorCapturedHooks.length; i++) { + if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) { + return; + } + } + } + cur = cur.parent; + } + if (errorHandler) { + pauseTracking(); + callWithErrorHandling(errorHandler, null, 10, [ + err, + exposedInstance, + errorInfo + ]); + resetTracking(); + return; + } + } + logError(err, type, contextVNode, throwInDev, throwUnhandledErrorInProduction); +} +function logError(err, type, contextVNode, throwInDev = true, throwInProd = false) { + if (true) { + const info = ErrorTypeStrings$1[type]; + if (contextVNode) { + pushWarningContext(contextVNode); + } + warn$1(`Unhandled error${info ? ` during execution of ${info}` : ``}`); + if (contextVNode) { + popWarningContext(); + } + if (throwInDev) { + throw err; + } else { + console.error(err); + } + } else if (throwInProd) { + throw err; + } else { + console.error(err); + } +} +var queue = []; +var flushIndex = -1; +var pendingPostFlushCbs = []; +var activePostFlushCbs = null; +var postFlushIndex = 0; +var resolvedPromise = Promise.resolve(); +var currentFlushPromise = null; +var RECURSION_LIMIT = 100; +function nextTick(fn) { + const p2 = currentFlushPromise || resolvedPromise; + return fn ? p2.then(this ? fn.bind(this) : fn) : p2; +} +function findInsertionIndex(id) { + let start = flushIndex + 1; + let end = queue.length; + while (start < end) { + const middle = start + end >>> 1; + const middleJob = queue[middle]; + const middleJobId = getId(middleJob); + if (middleJobId < id || middleJobId === id && middleJob.flags & 2) { + start = middle + 1; + } else { + end = middle; + } + } + return start; +} +function queueJob(job) { + if (!(job.flags & 1)) { + const jobId = getId(job); + const lastJob = queue[queue.length - 1]; + if (!lastJob || // fast path when the job id is larger than the tail + !(job.flags & 2) && jobId >= getId(lastJob)) { + queue.push(job); + } else { + queue.splice(findInsertionIndex(jobId), 0, job); + } + job.flags |= 1; + queueFlush(); + } +} +function queueFlush() { + if (!currentFlushPromise) { + currentFlushPromise = resolvedPromise.then(flushJobs); + } +} +function queuePostFlushCb(cb) { + if (!isArray(cb)) { + if (activePostFlushCbs && cb.id === -1) { + activePostFlushCbs.splice(postFlushIndex + 1, 0, cb); + } else if (!(cb.flags & 1)) { + pendingPostFlushCbs.push(cb); + cb.flags |= 1; + } + } else { + pendingPostFlushCbs.push(...cb); + } + queueFlush(); +} +function flushPreFlushCbs(instance, seen, i = flushIndex + 1) { + if (true) { + seen = seen || /* @__PURE__ */ new Map(); + } + for (; i < queue.length; i++) { + const cb = queue[i]; + if (cb && cb.flags & 2) { + if (instance && cb.id !== instance.uid) { + continue; + } + if (checkRecursiveUpdates(seen, cb)) { + continue; + } + queue.splice(i, 1); + i--; + if (cb.flags & 4) { + cb.flags &= ~1; + } + cb(); + if (!(cb.flags & 4)) { + cb.flags &= ~1; + } + } + } +} +function flushPostFlushCbs(seen) { + if (pendingPostFlushCbs.length) { + const deduped = [...new Set(pendingPostFlushCbs)].sort( + (a, b) => getId(a) - getId(b) + ); + pendingPostFlushCbs.length = 0; + if (activePostFlushCbs) { + activePostFlushCbs.push(...deduped); + return; + } + activePostFlushCbs = deduped; + if (true) { + seen = seen || /* @__PURE__ */ new Map(); + } + for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) { + const cb = activePostFlushCbs[postFlushIndex]; + if (checkRecursiveUpdates(seen, cb)) { + continue; + } + if (cb.flags & 4) { + cb.flags &= ~1; + } + if (!(cb.flags & 8)) cb(); + cb.flags &= ~1; + } + activePostFlushCbs = null; + postFlushIndex = 0; + } +} +var getId = (job) => job.id == null ? job.flags & 2 ? -1 : Infinity : job.id; +function flushJobs(seen) { + if (true) { + seen = seen || /* @__PURE__ */ new Map(); + } + const check = true ? (job) => checkRecursiveUpdates(seen, job) : NOOP; + try { + for (flushIndex = 0; flushIndex < queue.length; flushIndex++) { + const job = queue[flushIndex]; + if (job && !(job.flags & 8)) { + if (check(job)) { + continue; + } + if (job.flags & 4) { + job.flags &= ~1; + } + callWithErrorHandling( + job, + job.i, + job.i ? 15 : 14 + ); + if (!(job.flags & 4)) { + job.flags &= ~1; + } + } + } + } finally { + for (; flushIndex < queue.length; flushIndex++) { + const job = queue[flushIndex]; + if (job) { + job.flags &= ~1; + } + } + flushIndex = -1; + queue.length = 0; + flushPostFlushCbs(seen); + currentFlushPromise = null; + if (queue.length || pendingPostFlushCbs.length) { + flushJobs(seen); + } + } +} +function checkRecursiveUpdates(seen, fn) { + const count = seen.get(fn) || 0; + if (count > RECURSION_LIMIT) { + const instance = fn.i; + const componentName = instance && getComponentName(instance.type); + handleError( + `Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`, + null, + 10 + ); + return true; + } + seen.set(fn, count + 1); + return false; +} +var isHmrUpdating = false; +var hmrDirtyComponents = /* @__PURE__ */ new Map(); +if (true) { + getGlobalThis().__VUE_HMR_RUNTIME__ = { + createRecord: tryWrap(createRecord), + rerender: tryWrap(rerender), + reload: tryWrap(reload) + }; +} +var map = /* @__PURE__ */ new Map(); +function registerHMR(instance) { + const id = instance.type.__hmrId; + let record = map.get(id); + if (!record) { + createRecord(id, instance.type); + record = map.get(id); + } + record.instances.add(instance); +} +function unregisterHMR(instance) { + map.get(instance.type.__hmrId).instances.delete(instance); +} +function createRecord(id, initialDef) { + if (map.has(id)) { + return false; + } + map.set(id, { + initialDef: normalizeClassComponent(initialDef), + instances: /* @__PURE__ */ new Set() + }); + return true; +} +function normalizeClassComponent(component) { + return isClassComponent(component) ? component.__vccOpts : component; +} +function rerender(id, newRender) { + const record = map.get(id); + if (!record) { + return; + } + record.initialDef.render = newRender; + [...record.instances].forEach((instance) => { + if (newRender) { + instance.render = newRender; + normalizeClassComponent(instance.type).render = newRender; + } + instance.renderCache = []; + isHmrUpdating = true; + instance.update(); + isHmrUpdating = false; + }); +} +function reload(id, newComp) { + const record = map.get(id); + if (!record) return; + newComp = normalizeClassComponent(newComp); + updateComponentDef(record.initialDef, newComp); + const instances = [...record.instances]; + for (let i = 0; i < instances.length; i++) { + const instance = instances[i]; + const oldComp = normalizeClassComponent(instance.type); + let dirtyInstances = hmrDirtyComponents.get(oldComp); + if (!dirtyInstances) { + if (oldComp !== record.initialDef) { + updateComponentDef(oldComp, newComp); + } + hmrDirtyComponents.set(oldComp, dirtyInstances = /* @__PURE__ */ new Set()); + } + dirtyInstances.add(instance); + instance.appContext.propsCache.delete(instance.type); + instance.appContext.emitsCache.delete(instance.type); + instance.appContext.optionsCache.delete(instance.type); + if (instance.ceReload) { + dirtyInstances.add(instance); + instance.ceReload(newComp.styles); + dirtyInstances.delete(instance); + } else if (instance.parent) { + queueJob(() => { + isHmrUpdating = true; + instance.parent.update(); + isHmrUpdating = false; + dirtyInstances.delete(instance); + }); + } else if (instance.appContext.reload) { + instance.appContext.reload(); + } else if (typeof window !== "undefined") { + window.location.reload(); + } else { + console.warn( + "[HMR] Root or manually mounted instance modified. Full reload required." + ); + } + if (instance.root.ce && instance !== instance.root) { + instance.root.ce._removeChildStyle(oldComp); + } + } + queuePostFlushCb(() => { + hmrDirtyComponents.clear(); + }); +} +function updateComponentDef(oldComp, newComp) { + extend(oldComp, newComp); + for (const key in oldComp) { + if (key !== "__file" && !(key in newComp)) { + delete oldComp[key]; + } + } +} +function tryWrap(fn) { + return (id, arg) => { + try { + return fn(id, arg); + } catch (e) { + console.error(e); + console.warn( + `[HMR] Something went wrong during Vue component hot-reload. Full reload required.` + ); + } + }; +} +var devtools$1; +var buffer = []; +var devtoolsNotInstalled = false; +function emit$1(event, ...args) { + if (devtools$1) { + devtools$1.emit(event, ...args); + } else if (!devtoolsNotInstalled) { + buffer.push({ event, args }); + } +} +function setDevtoolsHook$1(hook, target) { + var _a, _b; + devtools$1 = hook; + if (devtools$1) { + devtools$1.enabled = true; + buffer.forEach(({ event, args }) => devtools$1.emit(event, ...args)); + buffer = []; + } else if ( + // handle late devtools injection - only do this if we are in an actual + // browser environment to avoid the timer handle stalling test runner exit + // (#4815) + typeof window !== "undefined" && // some envs mock window but not fully + window.HTMLElement && // also exclude jsdom + // eslint-disable-next-line no-restricted-syntax + !((_b = (_a = window.navigator) == null ? void 0 : _a.userAgent) == null ? void 0 : _b.includes("jsdom")) + ) { + const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || []; + replay.push((newHook) => { + setDevtoolsHook$1(newHook, target); + }); + setTimeout(() => { + if (!devtools$1) { + target.__VUE_DEVTOOLS_HOOK_REPLAY__ = null; + devtoolsNotInstalled = true; + buffer = []; + } + }, 3e3); + } else { + devtoolsNotInstalled = true; + buffer = []; + } +} +function devtoolsInitApp(app, version2) { + emit$1("app:init", app, version2, { + Fragment, + Text, + Comment, + Static + }); +} +function devtoolsUnmountApp(app) { + emit$1("app:unmount", app); +} +var devtoolsComponentAdded = createDevtoolsComponentHook( + "component:added" + /* COMPONENT_ADDED */ +); +var devtoolsComponentUpdated = createDevtoolsComponentHook( + "component:updated" + /* COMPONENT_UPDATED */ +); +var _devtoolsComponentRemoved = createDevtoolsComponentHook( + "component:removed" + /* COMPONENT_REMOVED */ +); +var devtoolsComponentRemoved = (component) => { + if (devtools$1 && typeof devtools$1.cleanupBuffer === "function" && // remove the component if it wasn't buffered + !devtools$1.cleanupBuffer(component)) { + _devtoolsComponentRemoved(component); + } +}; +function createDevtoolsComponentHook(hook) { + return (component) => { + emit$1( + hook, + component.appContext.app, + component.uid, + component.parent ? component.parent.uid : void 0, + component + ); + }; +} +var devtoolsPerfStart = createDevtoolsPerformanceHook( + "perf:start" + /* PERFORMANCE_START */ +); +var devtoolsPerfEnd = createDevtoolsPerformanceHook( + "perf:end" + /* PERFORMANCE_END */ +); +function createDevtoolsPerformanceHook(hook) { + return (component, type, time) => { + emit$1(hook, component.appContext.app, component.uid, component, type, time); + }; +} +function devtoolsComponentEmit(component, event, params) { + emit$1( + "component:emit", + component.appContext.app, + component, + event, + params + ); +} +var currentRenderingInstance = null; +var currentScopeId = null; +function setCurrentRenderingInstance(instance) { + const prev = currentRenderingInstance; + currentRenderingInstance = instance; + currentScopeId = instance && instance.type.__scopeId || null; + return prev; +} +function pushScopeId(id) { + currentScopeId = id; +} +function popScopeId() { + currentScopeId = null; +} +var withScopeId = (_id) => withCtx; +function withCtx(fn, ctx = currentRenderingInstance, isNonScopedSlot) { + if (!ctx) return fn; + if (fn._n) { + return fn; + } + const renderFnWithContext = (...args) => { + if (renderFnWithContext._d) { + setBlockTracking(-1); + } + const prevInstance = setCurrentRenderingInstance(ctx); + let res; + try { + res = fn(...args); + } finally { + setCurrentRenderingInstance(prevInstance); + if (renderFnWithContext._d) { + setBlockTracking(1); + } + } + if (true) { + devtoolsComponentUpdated(ctx); + } + return res; + }; + renderFnWithContext._n = true; + renderFnWithContext._c = true; + renderFnWithContext._d = true; + return renderFnWithContext; +} +function validateDirectiveName(name) { + if (isBuiltInDirective(name)) { + warn$1("Do not use built-in directive ids as custom directive id: " + name); + } +} +function withDirectives(vnode, directives) { + if (currentRenderingInstance === null) { + warn$1(`withDirectives can only be used inside render functions.`); + return vnode; + } + const instance = getComponentPublicInstance(currentRenderingInstance); + const bindings = vnode.dirs || (vnode.dirs = []); + for (let i = 0; i < directives.length; i++) { + let [dir, value, arg, modifiers = EMPTY_OBJ] = directives[i]; + if (dir) { + if (isFunction(dir)) { + dir = { + mounted: dir, + updated: dir + }; + } + if (dir.deep) { + traverse(value); + } + bindings.push({ + dir, + instance, + value, + oldValue: void 0, + arg, + modifiers + }); + } + } + return vnode; +} +function invokeDirectiveHook(vnode, prevVNode, instance, name) { + const bindings = vnode.dirs; + const oldBindings = prevVNode && prevVNode.dirs; + for (let i = 0; i < bindings.length; i++) { + const binding = bindings[i]; + if (oldBindings) { + binding.oldValue = oldBindings[i].value; + } + let hook = binding.dir[name]; + if (hook) { + pauseTracking(); + callWithAsyncErrorHandling(hook, instance, 8, [ + vnode.el, + binding, + vnode, + prevVNode + ]); + resetTracking(); + } + } +} +var TeleportEndKey = Symbol("_vte"); +var isTeleport = (type) => type.__isTeleport; +var isTeleportDisabled = (props) => props && (props.disabled || props.disabled === ""); +var isTeleportDeferred = (props) => props && (props.defer || props.defer === ""); +var isTargetSVG = (target) => typeof SVGElement !== "undefined" && target instanceof SVGElement; +var isTargetMathML = (target) => typeof MathMLElement === "function" && target instanceof MathMLElement; +var resolveTarget = (props, select) => { + const targetSelector = props && props.to; + if (isString(targetSelector)) { + if (!select) { + warn$1( + `Current renderer does not support string target for Teleports. (missing querySelector renderer option)` + ); + return null; + } else { + const target = select(targetSelector); + if (!target && !isTeleportDisabled(props)) { + warn$1( + `Failed to locate Teleport target with selector "${targetSelector}". Note the target element must exist before the component is mounted - i.e. the target cannot be rendered by the component itself, and ideally should be outside of the entire Vue component tree.` + ); + } + return target; + } + } else { + if (!targetSelector && !isTeleportDisabled(props)) { + warn$1(`Invalid Teleport target: ${targetSelector}`); + } + return targetSelector; + } +}; +var TeleportImpl = { + name: "Teleport", + __isTeleport: true, + process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals) { + const { + mc: mountChildren, + pc: patchChildren, + pbc: patchBlockChildren, + o: { insert, querySelector, createText, createComment } + } = internals; + const disabled = isTeleportDisabled(n2.props); + let { shapeFlag, children, dynamicChildren } = n2; + if (isHmrUpdating) { + optimized = false; + dynamicChildren = null; + } + if (n1 == null) { + const placeholder = n2.el = true ? createComment("teleport start") : createText(""); + const mainAnchor = n2.anchor = true ? createComment("teleport end") : createText(""); + insert(placeholder, container, anchor); + insert(mainAnchor, container, anchor); + const mount = (container2, anchor2) => { + if (shapeFlag & 16) { + if (parentComponent && parentComponent.isCE) { + parentComponent.ce._teleportTarget = container2; + } + mountChildren( + children, + container2, + anchor2, + parentComponent, + parentSuspense, + namespace, + slotScopeIds, + optimized + ); + } + }; + const mountToTarget = () => { + const target = n2.target = resolveTarget(n2.props, querySelector); + const targetAnchor = prepareAnchor(target, n2, createText, insert); + if (target) { + if (namespace !== "svg" && isTargetSVG(target)) { + namespace = "svg"; + } else if (namespace !== "mathml" && isTargetMathML(target)) { + namespace = "mathml"; + } + if (!disabled) { + mount(target, targetAnchor); + updateCssVars(n2, false); + } + } else if (!disabled) { + warn$1( + "Invalid Teleport target on mount:", + target, + `(${typeof target})` + ); + } + }; + if (disabled) { + mount(container, mainAnchor); + updateCssVars(n2, true); + } + if (isTeleportDeferred(n2.props)) { + queuePostRenderEffect(() => { + mountToTarget(); + n2.el.__isMounted = true; + }, parentSuspense); + } else { + mountToTarget(); + } + } else { + if (isTeleportDeferred(n2.props) && !n1.el.__isMounted) { + queuePostRenderEffect(() => { + TeleportImpl.process( + n1, + n2, + container, + anchor, + parentComponent, + parentSuspense, + namespace, + slotScopeIds, + optimized, + internals + ); + delete n1.el.__isMounted; + }, parentSuspense); + return; + } + n2.el = n1.el; + n2.targetStart = n1.targetStart; + const mainAnchor = n2.anchor = n1.anchor; + const target = n2.target = n1.target; + const targetAnchor = n2.targetAnchor = n1.targetAnchor; + const wasDisabled = isTeleportDisabled(n1.props); + const currentContainer = wasDisabled ? container : target; + const currentAnchor = wasDisabled ? mainAnchor : targetAnchor; + if (namespace === "svg" || isTargetSVG(target)) { + namespace = "svg"; + } else if (namespace === "mathml" || isTargetMathML(target)) { + namespace = "mathml"; + } + if (dynamicChildren) { + patchBlockChildren( + n1.dynamicChildren, + dynamicChildren, + currentContainer, + parentComponent, + parentSuspense, + namespace, + slotScopeIds + ); + traverseStaticChildren(n1, n2, true); + } else if (!optimized) { + patchChildren( + n1, + n2, + currentContainer, + currentAnchor, + parentComponent, + parentSuspense, + namespace, + slotScopeIds, + false + ); + } + if (disabled) { + if (!wasDisabled) { + moveTeleport( + n2, + container, + mainAnchor, + internals, + 1 + ); + } else { + if (n2.props && n1.props && n2.props.to !== n1.props.to) { + n2.props.to = n1.props.to; + } + } + } else { + if ((n2.props && n2.props.to) !== (n1.props && n1.props.to)) { + const nextTarget = n2.target = resolveTarget( + n2.props, + querySelector + ); + if (nextTarget) { + moveTeleport( + n2, + nextTarget, + null, + internals, + 0 + ); + } else if (true) { + warn$1( + "Invalid Teleport target on update:", + target, + `(${typeof target})` + ); + } + } else if (wasDisabled) { + moveTeleport( + n2, + target, + targetAnchor, + internals, + 1 + ); + } + } + updateCssVars(n2, disabled); + } + }, + remove(vnode, parentComponent, parentSuspense, { um: unmount, o: { remove: hostRemove } }, doRemove) { + const { + shapeFlag, + children, + anchor, + targetStart, + targetAnchor, + target, + props + } = vnode; + if (target) { + hostRemove(targetStart); + hostRemove(targetAnchor); + } + doRemove && hostRemove(anchor); + if (shapeFlag & 16) { + const shouldRemove = doRemove || !isTeleportDisabled(props); + for (let i = 0; i < children.length; i++) { + const child = children[i]; + unmount( + child, + parentComponent, + parentSuspense, + shouldRemove, + !!child.dynamicChildren + ); + } + } + }, + move: moveTeleport, + hydrate: hydrateTeleport +}; +function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }, moveType = 2) { + if (moveType === 0) { + insert(vnode.targetAnchor, container, parentAnchor); + } + const { el, anchor, shapeFlag, children, props } = vnode; + const isReorder = moveType === 2; + if (isReorder) { + insert(el, container, parentAnchor); + } + if (!isReorder || isTeleportDisabled(props)) { + if (shapeFlag & 16) { + for (let i = 0; i < children.length; i++) { + move( + children[i], + container, + parentAnchor, + 2 + ); + } + } + } + if (isReorder) { + insert(anchor, container, parentAnchor); + } +} +function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, { + o: { nextSibling, parentNode, querySelector, insert, createText } +}, hydrateChildren) { + const target = vnode.target = resolveTarget( + vnode.props, + querySelector + ); + if (target) { + const disabled = isTeleportDisabled(vnode.props); + const targetNode = target._lpa || target.firstChild; + if (vnode.shapeFlag & 16) { + if (disabled) { + vnode.anchor = hydrateChildren( + nextSibling(node), + vnode, + parentNode(node), + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + vnode.targetStart = targetNode; + vnode.targetAnchor = targetNode && nextSibling(targetNode); + } else { + vnode.anchor = nextSibling(node); + let targetAnchor = targetNode; + while (targetAnchor) { + if (targetAnchor && targetAnchor.nodeType === 8) { + if (targetAnchor.data === "teleport start anchor") { + vnode.targetStart = targetAnchor; + } else if (targetAnchor.data === "teleport anchor") { + vnode.targetAnchor = targetAnchor; + target._lpa = vnode.targetAnchor && nextSibling(vnode.targetAnchor); + break; + } + } + targetAnchor = nextSibling(targetAnchor); + } + if (!vnode.targetAnchor) { + prepareAnchor(target, vnode, createText, insert); + } + hydrateChildren( + targetNode && nextSibling(targetNode), + vnode, + target, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + } + } + updateCssVars(vnode, disabled); + } + return vnode.anchor && nextSibling(vnode.anchor); +} +var Teleport = TeleportImpl; +function updateCssVars(vnode, isDisabled) { + const ctx = vnode.ctx; + if (ctx && ctx.ut) { + let node, anchor; + if (isDisabled) { + node = vnode.el; + anchor = vnode.anchor; + } else { + node = vnode.targetStart; + anchor = vnode.targetAnchor; + } + while (node && node !== anchor) { + if (node.nodeType === 1) node.setAttribute("data-v-owner", ctx.uid); + node = node.nextSibling; + } + ctx.ut(); + } +} +function prepareAnchor(target, vnode, createText, insert) { + const targetStart = vnode.targetStart = createText(""); + const targetAnchor = vnode.targetAnchor = createText(""); + targetStart[TeleportEndKey] = targetAnchor; + if (target) { + insert(targetStart, target); + insert(targetAnchor, target); + } + return targetAnchor; +} +var leaveCbKey = Symbol("_leaveCb"); +var enterCbKey = Symbol("_enterCb"); +function useTransitionState() { + const state = { + isMounted: false, + isLeaving: false, + isUnmounting: false, + leavingVNodes: /* @__PURE__ */ new Map() + }; + onMounted(() => { + state.isMounted = true; + }); + onBeforeUnmount(() => { + state.isUnmounting = true; + }); + return state; +} +var TransitionHookValidator = [Function, Array]; +var BaseTransitionPropsValidators = { + mode: String, + appear: Boolean, + persisted: Boolean, + // enter + onBeforeEnter: TransitionHookValidator, + onEnter: TransitionHookValidator, + onAfterEnter: TransitionHookValidator, + onEnterCancelled: TransitionHookValidator, + // leave + onBeforeLeave: TransitionHookValidator, + onLeave: TransitionHookValidator, + onAfterLeave: TransitionHookValidator, + onLeaveCancelled: TransitionHookValidator, + // appear + onBeforeAppear: TransitionHookValidator, + onAppear: TransitionHookValidator, + onAfterAppear: TransitionHookValidator, + onAppearCancelled: TransitionHookValidator +}; +var recursiveGetSubtree = (instance) => { + const subTree = instance.subTree; + return subTree.component ? recursiveGetSubtree(subTree.component) : subTree; +}; +var BaseTransitionImpl = { + name: `BaseTransition`, + props: BaseTransitionPropsValidators, + setup(props, { slots }) { + const instance = getCurrentInstance(); + const state = useTransitionState(); + return () => { + const children = slots.default && getTransitionRawChildren(slots.default(), true); + if (!children || !children.length) { + return; + } + const child = findNonCommentChild(children); + const rawProps = toRaw(props); + const { mode } = rawProps; + if (mode && mode !== "in-out" && mode !== "out-in" && mode !== "default") { + warn$1(`invalid mode: ${mode}`); + } + if (state.isLeaving) { + return emptyPlaceholder(child); + } + const innerChild = getInnerChild$1(child); + if (!innerChild) { + return emptyPlaceholder(child); + } + let enterHooks = resolveTransitionHooks( + innerChild, + rawProps, + state, + instance, + // #11061, ensure enterHooks is fresh after clone + (hooks) => enterHooks = hooks + ); + if (innerChild.type !== Comment) { + setTransitionHooks(innerChild, enterHooks); + } + let oldInnerChild = instance.subTree && getInnerChild$1(instance.subTree); + if (oldInnerChild && oldInnerChild.type !== Comment && !isSameVNodeType(innerChild, oldInnerChild) && recursiveGetSubtree(instance).type !== Comment) { + let leavingHooks = resolveTransitionHooks( + oldInnerChild, + rawProps, + state, + instance + ); + setTransitionHooks(oldInnerChild, leavingHooks); + if (mode === "out-in" && innerChild.type !== Comment) { + state.isLeaving = true; + leavingHooks.afterLeave = () => { + state.isLeaving = false; + if (!(instance.job.flags & 8)) { + instance.update(); + } + delete leavingHooks.afterLeave; + oldInnerChild = void 0; + }; + return emptyPlaceholder(child); + } else if (mode === "in-out" && innerChild.type !== Comment) { + leavingHooks.delayLeave = (el, earlyRemove, delayedLeave) => { + const leavingVNodesCache = getLeavingNodesForType( + state, + oldInnerChild + ); + leavingVNodesCache[String(oldInnerChild.key)] = oldInnerChild; + el[leaveCbKey] = () => { + earlyRemove(); + el[leaveCbKey] = void 0; + delete enterHooks.delayedLeave; + oldInnerChild = void 0; + }; + enterHooks.delayedLeave = () => { + delayedLeave(); + delete enterHooks.delayedLeave; + oldInnerChild = void 0; + }; + }; + } else { + oldInnerChild = void 0; + } + } else if (oldInnerChild) { + oldInnerChild = void 0; + } + return child; + }; + } +}; +function findNonCommentChild(children) { + let child = children[0]; + if (children.length > 1) { + let hasFound = false; + for (const c of children) { + if (c.type !== Comment) { + if (hasFound) { + warn$1( + " can only be used on a single element or component. Use for lists." + ); + break; + } + child = c; + hasFound = true; + if (false) break; + } + } + } + return child; +} +var BaseTransition = BaseTransitionImpl; +function getLeavingNodesForType(state, vnode) { + const { leavingVNodes } = state; + let leavingVNodesCache = leavingVNodes.get(vnode.type); + if (!leavingVNodesCache) { + leavingVNodesCache = /* @__PURE__ */ Object.create(null); + leavingVNodes.set(vnode.type, leavingVNodesCache); + } + return leavingVNodesCache; +} +function resolveTransitionHooks(vnode, props, state, instance, postClone) { + const { + appear, + mode, + persisted = false, + onBeforeEnter, + onEnter, + onAfterEnter, + onEnterCancelled, + onBeforeLeave, + onLeave, + onAfterLeave, + onLeaveCancelled, + onBeforeAppear, + onAppear, + onAfterAppear, + onAppearCancelled + } = props; + const key = String(vnode.key); + const leavingVNodesCache = getLeavingNodesForType(state, vnode); + const callHook3 = (hook, args) => { + hook && callWithAsyncErrorHandling( + hook, + instance, + 9, + args + ); + }; + const callAsyncHook = (hook, args) => { + const done = args[1]; + callHook3(hook, args); + if (isArray(hook)) { + if (hook.every((hook2) => hook2.length <= 1)) done(); + } else if (hook.length <= 1) { + done(); + } + }; + const hooks = { + mode, + persisted, + beforeEnter(el) { + let hook = onBeforeEnter; + if (!state.isMounted) { + if (appear) { + hook = onBeforeAppear || onBeforeEnter; + } else { + return; + } + } + if (el[leaveCbKey]) { + el[leaveCbKey]( + true + /* cancelled */ + ); + } + const leavingVNode = leavingVNodesCache[key]; + if (leavingVNode && isSameVNodeType(vnode, leavingVNode) && leavingVNode.el[leaveCbKey]) { + leavingVNode.el[leaveCbKey](); + } + callHook3(hook, [el]); + }, + enter(el) { + let hook = onEnter; + let afterHook = onAfterEnter; + let cancelHook = onEnterCancelled; + if (!state.isMounted) { + if (appear) { + hook = onAppear || onEnter; + afterHook = onAfterAppear || onAfterEnter; + cancelHook = onAppearCancelled || onEnterCancelled; + } else { + return; + } + } + let called = false; + const done = el[enterCbKey] = (cancelled) => { + if (called) return; + called = true; + if (cancelled) { + callHook3(cancelHook, [el]); + } else { + callHook3(afterHook, [el]); + } + if (hooks.delayedLeave) { + hooks.delayedLeave(); + } + el[enterCbKey] = void 0; + }; + if (hook) { + callAsyncHook(hook, [el, done]); + } else { + done(); + } + }, + leave(el, remove2) { + const key2 = String(vnode.key); + if (el[enterCbKey]) { + el[enterCbKey]( + true + /* cancelled */ + ); + } + if (state.isUnmounting) { + return remove2(); + } + callHook3(onBeforeLeave, [el]); + let called = false; + const done = el[leaveCbKey] = (cancelled) => { + if (called) return; + called = true; + remove2(); + if (cancelled) { + callHook3(onLeaveCancelled, [el]); + } else { + callHook3(onAfterLeave, [el]); + } + el[leaveCbKey] = void 0; + if (leavingVNodesCache[key2] === vnode) { + delete leavingVNodesCache[key2]; + } + }; + leavingVNodesCache[key2] = vnode; + if (onLeave) { + callAsyncHook(onLeave, [el, done]); + } else { + done(); + } + }, + clone(vnode2) { + const hooks2 = resolveTransitionHooks( + vnode2, + props, + state, + instance, + postClone + ); + if (postClone) postClone(hooks2); + return hooks2; + } + }; + return hooks; +} +function emptyPlaceholder(vnode) { + if (isKeepAlive(vnode)) { + vnode = cloneVNode(vnode); + vnode.children = null; + return vnode; + } +} +function getInnerChild$1(vnode) { + if (!isKeepAlive(vnode)) { + if (isTeleport(vnode.type) && vnode.children) { + return findNonCommentChild(vnode.children); + } + return vnode; + } + if (vnode.component) { + return vnode.component.subTree; + } + const { shapeFlag, children } = vnode; + if (children) { + if (shapeFlag & 16) { + return children[0]; + } + if (shapeFlag & 32 && isFunction(children.default)) { + return children.default(); + } + } +} +function setTransitionHooks(vnode, hooks) { + if (vnode.shapeFlag & 6 && vnode.component) { + vnode.transition = hooks; + setTransitionHooks(vnode.component.subTree, hooks); + } else if (vnode.shapeFlag & 128) { + vnode.ssContent.transition = hooks.clone(vnode.ssContent); + vnode.ssFallback.transition = hooks.clone(vnode.ssFallback); + } else { + vnode.transition = hooks; + } +} +function getTransitionRawChildren(children, keepComment = false, parentKey) { + let ret = []; + let keyedFragmentCount = 0; + for (let i = 0; i < children.length; i++) { + let child = children[i]; + const key = parentKey == null ? child.key : String(parentKey) + String(child.key != null ? child.key : i); + if (child.type === Fragment) { + if (child.patchFlag & 128) keyedFragmentCount++; + ret = ret.concat( + getTransitionRawChildren(child.children, keepComment, key) + ); + } else if (keepComment || child.type !== Comment) { + ret.push(key != null ? cloneVNode(child, { key }) : child); + } + } + if (keyedFragmentCount > 1) { + for (let i = 0; i < ret.length; i++) { + ret[i].patchFlag = -2; + } + } + return ret; +} +function defineComponent(options, extraOptions) { + return isFunction(options) ? ( + // #8236: extend call and options.name access are considered side-effects + // by Rollup, so we have to wrap it in a pure-annotated IIFE. + (() => extend({ name: options.name }, extraOptions, { setup: options }))() + ) : options; +} +function useId() { + const i = getCurrentInstance(); + if (i) { + return (i.appContext.config.idPrefix || "v") + "-" + i.ids[0] + i.ids[1]++; + } else if (true) { + warn$1( + `useId() is called when there is no active component instance to be associated with.` + ); + } + return ""; +} +function markAsyncBoundary(instance) { + instance.ids = [instance.ids[0] + instance.ids[2]++ + "-", 0, 0]; +} +var knownTemplateRefs = /* @__PURE__ */ new WeakSet(); +function useTemplateRef(key) { + const i = getCurrentInstance(); + const r = shallowRef(null); + if (i) { + const refs = i.refs === EMPTY_OBJ ? i.refs = {} : i.refs; + let desc; + if ((desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable) { + warn$1(`useTemplateRef('${key}') already exists.`); + } else { + Object.defineProperty(refs, key, { + enumerable: true, + get: () => r.value, + set: (val) => r.value = val + }); + } + } else if (true) { + warn$1( + `useTemplateRef() is called when there is no active component instance to be associated with.` + ); + } + const ret = true ? readonly(r) : r; + if (true) { + knownTemplateRefs.add(ret); + } + return ret; +} +function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) { + if (isArray(rawRef)) { + rawRef.forEach( + (r, i) => setRef( + r, + oldRawRef && (isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), + parentSuspense, + vnode, + isUnmount + ) + ); + return; + } + if (isAsyncWrapper(vnode) && !isUnmount) { + if (vnode.shapeFlag & 512 && vnode.type.__asyncResolved && vnode.component.subTree.component) { + setRef(rawRef, oldRawRef, parentSuspense, vnode.component.subTree); + } + return; + } + const refValue = vnode.shapeFlag & 4 ? getComponentPublicInstance(vnode.component) : vnode.el; + const value = isUnmount ? null : refValue; + const { i: owner, r: ref2 } = rawRef; + if (!owner) { + warn$1( + `Missing ref owner context. ref cannot be used on hoisted vnodes. A vnode with ref must be created inside the render function.` + ); + return; + } + const oldRef = oldRawRef && oldRawRef.r; + const refs = owner.refs === EMPTY_OBJ ? owner.refs = {} : owner.refs; + const setupState = owner.setupState; + const rawSetupState = toRaw(setupState); + const canSetSetupRef = setupState === EMPTY_OBJ ? () => false : (key) => { + if (true) { + if (hasOwn(rawSetupState, key) && !isRef2(rawSetupState[key])) { + warn$1( + `Template ref "${key}" used on a non-ref value. It will not work in the production build.` + ); + } + if (knownTemplateRefs.has(rawSetupState[key])) { + return false; + } + } + return hasOwn(rawSetupState, key); + }; + if (oldRef != null && oldRef !== ref2) { + if (isString(oldRef)) { + refs[oldRef] = null; + if (canSetSetupRef(oldRef)) { + setupState[oldRef] = null; + } + } else if (isRef2(oldRef)) { + oldRef.value = null; + } + } + if (isFunction(ref2)) { + callWithErrorHandling(ref2, owner, 12, [value, refs]); + } else { + const _isString = isString(ref2); + const _isRef = isRef2(ref2); + if (_isString || _isRef) { + const doSet = () => { + if (rawRef.f) { + const existing = _isString ? canSetSetupRef(ref2) ? setupState[ref2] : refs[ref2] : ref2.value; + if (isUnmount) { + isArray(existing) && remove(existing, refValue); + } else { + if (!isArray(existing)) { + if (_isString) { + refs[ref2] = [refValue]; + if (canSetSetupRef(ref2)) { + setupState[ref2] = refs[ref2]; + } + } else { + ref2.value = [refValue]; + if (rawRef.k) refs[rawRef.k] = ref2.value; + } + } else if (!existing.includes(refValue)) { + existing.push(refValue); + } + } + } else if (_isString) { + refs[ref2] = value; + if (canSetSetupRef(ref2)) { + setupState[ref2] = value; + } + } else if (_isRef) { + ref2.value = value; + if (rawRef.k) refs[rawRef.k] = value; + } else if (true) { + warn$1("Invalid template ref type:", ref2, `(${typeof ref2})`); + } + }; + if (value) { + doSet.id = -1; + queuePostRenderEffect(doSet, parentSuspense); + } else { + doSet(); + } + } else if (true) { + warn$1("Invalid template ref type:", ref2, `(${typeof ref2})`); + } + } +} +var hasLoggedMismatchError = false; +var logMismatchError = () => { + if (hasLoggedMismatchError) { + return; + } + console.error("Hydration completed but contains mismatches."); + hasLoggedMismatchError = true; +}; +var isSVGContainer = (container) => container.namespaceURI.includes("svg") && container.tagName !== "foreignObject"; +var isMathMLContainer = (container) => container.namespaceURI.includes("MathML"); +var getContainerType = (container) => { + if (container.nodeType !== 1) return void 0; + if (isSVGContainer(container)) return "svg"; + if (isMathMLContainer(container)) return "mathml"; + return void 0; +}; +var isComment = (node) => node.nodeType === 8; +function createHydrationFunctions(rendererInternals) { + const { + mt: mountComponent, + p: patch, + o: { + patchProp: patchProp2, + createText, + nextSibling, + parentNode, + remove: remove2, + insert, + createComment + } + } = rendererInternals; + const hydrate2 = (vnode, container) => { + if (!container.hasChildNodes()) { + warn$1( + `Attempting to hydrate existing markup but container is empty. Performing full mount instead.` + ); + patch(null, vnode, container); + flushPostFlushCbs(); + container._vnode = vnode; + return; + } + hydrateNode(container.firstChild, vnode, null, null, null); + flushPostFlushCbs(); + container._vnode = vnode; + }; + const hydrateNode = (node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized = false) => { + optimized = optimized || !!vnode.dynamicChildren; + const isFragmentStart = isComment(node) && node.data === "["; + const onMismatch = () => handleMismatch( + node, + vnode, + parentComponent, + parentSuspense, + slotScopeIds, + isFragmentStart + ); + const { type, ref: ref2, shapeFlag, patchFlag } = vnode; + let domType = node.nodeType; + vnode.el = node; + if (true) { + def(node, "__vnode", vnode, true); + def(node, "__vueParentComponent", parentComponent, true); + } + if (patchFlag === -2) { + optimized = false; + vnode.dynamicChildren = null; + } + let nextNode = null; + switch (type) { + case Text: + if (domType !== 3) { + if (vnode.children === "") { + insert(vnode.el = createText(""), parentNode(node), node); + nextNode = node; + } else { + nextNode = onMismatch(); + } + } else { + if (node.data !== vnode.children) { + warn$1( + `Hydration text mismatch in`, + node.parentNode, + ` + - rendered on server: ${JSON.stringify( + node.data + )} + - expected on client: ${JSON.stringify(vnode.children)}` + ); + logMismatchError(); + node.data = vnode.children; + } + nextNode = nextSibling(node); + } + break; + case Comment: + if (isTemplateNode(node)) { + nextNode = nextSibling(node); + replaceNode( + vnode.el = node.content.firstChild, + node, + parentComponent + ); + } else if (domType !== 8 || isFragmentStart) { + nextNode = onMismatch(); + } else { + nextNode = nextSibling(node); + } + break; + case Static: + if (isFragmentStart) { + node = nextSibling(node); + domType = node.nodeType; + } + if (domType === 1 || domType === 3) { + nextNode = node; + const needToAdoptContent = !vnode.children.length; + for (let i = 0; i < vnode.staticCount; i++) { + if (needToAdoptContent) + vnode.children += nextNode.nodeType === 1 ? nextNode.outerHTML : nextNode.data; + if (i === vnode.staticCount - 1) { + vnode.anchor = nextNode; + } + nextNode = nextSibling(nextNode); + } + return isFragmentStart ? nextSibling(nextNode) : nextNode; + } else { + onMismatch(); + } + break; + case Fragment: + if (!isFragmentStart) { + nextNode = onMismatch(); + } else { + nextNode = hydrateFragment( + node, + vnode, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + } + break; + default: + if (shapeFlag & 1) { + if ((domType !== 1 || vnode.type.toLowerCase() !== node.tagName.toLowerCase()) && !isTemplateNode(node)) { + nextNode = onMismatch(); + } else { + nextNode = hydrateElement( + node, + vnode, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + } + } else if (shapeFlag & 6) { + vnode.slotScopeIds = slotScopeIds; + const container = parentNode(node); + if (isFragmentStart) { + nextNode = locateClosingAnchor(node); + } else if (isComment(node) && node.data === "teleport start") { + nextNode = locateClosingAnchor(node, node.data, "teleport end"); + } else { + nextNode = nextSibling(node); + } + mountComponent( + vnode, + container, + null, + parentComponent, + parentSuspense, + getContainerType(container), + optimized + ); + if (isAsyncWrapper(vnode) && !vnode.type.__asyncResolved) { + let subTree; + if (isFragmentStart) { + subTree = createVNode(Fragment); + subTree.anchor = nextNode ? nextNode.previousSibling : container.lastChild; + } else { + subTree = node.nodeType === 3 ? createTextVNode("") : createVNode("div"); + } + subTree.el = node; + vnode.component.subTree = subTree; + } + } else if (shapeFlag & 64) { + if (domType !== 8) { + nextNode = onMismatch(); + } else { + nextNode = vnode.type.hydrate( + node, + vnode, + parentComponent, + parentSuspense, + slotScopeIds, + optimized, + rendererInternals, + hydrateChildren + ); + } + } else if (shapeFlag & 128) { + nextNode = vnode.type.hydrate( + node, + vnode, + parentComponent, + parentSuspense, + getContainerType(parentNode(node)), + slotScopeIds, + optimized, + rendererInternals, + hydrateNode + ); + } else if (true) { + warn$1("Invalid HostVNode type:", type, `(${typeof type})`); + } + } + if (ref2 != null) { + setRef(ref2, null, parentSuspense, vnode); + } + return nextNode; + }; + const hydrateElement = (el, vnode, parentComponent, parentSuspense, slotScopeIds, optimized) => { + optimized = optimized || !!vnode.dynamicChildren; + const { type, props, patchFlag, shapeFlag, dirs, transition } = vnode; + const forcePatch = type === "input" || type === "option"; + if (true) { + if (dirs) { + invokeDirectiveHook(vnode, null, parentComponent, "created"); + } + let needCallTransitionHooks = false; + if (isTemplateNode(el)) { + needCallTransitionHooks = needTransition( + null, + // no need check parentSuspense in hydration + transition + ) && parentComponent && parentComponent.vnode.props && parentComponent.vnode.props.appear; + const content = el.content.firstChild; + if (needCallTransitionHooks) { + transition.beforeEnter(content); + } + replaceNode(content, el, parentComponent); + vnode.el = el = content; + } + if (shapeFlag & 16 && // skip if element has innerHTML / textContent + !(props && (props.innerHTML || props.textContent))) { + let next = hydrateChildren( + el.firstChild, + vnode, + el, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + let hasWarned2 = false; + while (next) { + if (!isMismatchAllowed( + el, + 1 + /* CHILDREN */ + )) { + if (!hasWarned2) { + warn$1( + `Hydration children mismatch on`, + el, + ` +Server rendered element contains more child nodes than client vdom.` + ); + hasWarned2 = true; + } + logMismatchError(); + } + const cur = next; + next = next.nextSibling; + remove2(cur); + } + } else if (shapeFlag & 8) { + let clientText = vnode.children; + if (clientText[0] === "\n" && (el.tagName === "PRE" || el.tagName === "TEXTAREA")) { + clientText = clientText.slice(1); + } + if (el.textContent !== clientText) { + if (!isMismatchAllowed( + el, + 0 + /* TEXT */ + )) { + warn$1( + `Hydration text content mismatch on`, + el, + ` + - rendered on server: ${el.textContent} + - expected on client: ${vnode.children}` + ); + logMismatchError(); + } + el.textContent = vnode.children; + } + } + if (props) { + if (true) { + const isCustomElement = el.tagName.includes("-"); + for (const key in props) { + if (// #11189 skip if this node has directives that have created hooks + // as it could have mutated the DOM in any possible way + !(dirs && dirs.some((d) => d.dir.created)) && propHasMismatch(el, key, props[key], vnode, parentComponent)) { + logMismatchError(); + } + if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers + key[0] === "." || isCustomElement) { + patchProp2(el, key, null, props[key], void 0, parentComponent); + } + } + } else if (props.onClick) { + patchProp2( + el, + "onClick", + null, + props.onClick, + void 0, + parentComponent + ); + } else if (patchFlag & 4 && isReactive(props.style)) { + for (const key in props.style) props.style[key]; + } + } + let vnodeHooks; + if (vnodeHooks = props && props.onVnodeBeforeMount) { + invokeVNodeHook(vnodeHooks, parentComponent, vnode); + } + if (dirs) { + invokeDirectiveHook(vnode, null, parentComponent, "beforeMount"); + } + if ((vnodeHooks = props && props.onVnodeMounted) || dirs || needCallTransitionHooks) { + queueEffectWithSuspense(() => { + vnodeHooks && invokeVNodeHook(vnodeHooks, parentComponent, vnode); + needCallTransitionHooks && transition.enter(el); + dirs && invokeDirectiveHook(vnode, null, parentComponent, "mounted"); + }, parentSuspense); + } + } + return el.nextSibling; + }; + const hydrateChildren = (node, parentVNode, container, parentComponent, parentSuspense, slotScopeIds, optimized) => { + optimized = optimized || !!parentVNode.dynamicChildren; + const children = parentVNode.children; + const l = children.length; + let hasWarned2 = false; + for (let i = 0; i < l; i++) { + const vnode = optimized ? children[i] : children[i] = normalizeVNode(children[i]); + const isText = vnode.type === Text; + if (node) { + if (isText && !optimized) { + if (i + 1 < l && normalizeVNode(children[i + 1]).type === Text) { + insert( + createText( + node.data.slice(vnode.children.length) + ), + container, + nextSibling(node) + ); + node.data = vnode.children; + } + } + node = hydrateNode( + node, + vnode, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + } else if (isText && !vnode.children) { + insert(vnode.el = createText(""), container); + } else { + if (!isMismatchAllowed( + container, + 1 + /* CHILDREN */ + )) { + if (!hasWarned2) { + warn$1( + `Hydration children mismatch on`, + container, + ` +Server rendered element contains fewer child nodes than client vdom.` + ); + hasWarned2 = true; + } + logMismatchError(); + } + patch( + null, + vnode, + container, + null, + parentComponent, + parentSuspense, + getContainerType(container), + slotScopeIds + ); + } + } + return node; + }; + const hydrateFragment = (node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized) => { + const { slotScopeIds: fragmentSlotScopeIds } = vnode; + if (fragmentSlotScopeIds) { + slotScopeIds = slotScopeIds ? slotScopeIds.concat(fragmentSlotScopeIds) : fragmentSlotScopeIds; + } + const container = parentNode(node); + const next = hydrateChildren( + nextSibling(node), + vnode, + container, + parentComponent, + parentSuspense, + slotScopeIds, + optimized + ); + if (next && isComment(next) && next.data === "]") { + return nextSibling(vnode.anchor = next); + } else { + logMismatchError(); + insert(vnode.anchor = createComment(`]`), container, next); + return next; + } + }; + const handleMismatch = (node, vnode, parentComponent, parentSuspense, slotScopeIds, isFragment) => { + if (!isMismatchAllowed( + node.parentElement, + 1 + /* CHILDREN */ + )) { + warn$1( + `Hydration node mismatch: +- rendered on server:`, + node, + node.nodeType === 3 ? `(text)` : isComment(node) && node.data === "[" ? `(start of fragment)` : ``, + ` +- expected on client:`, + vnode.type + ); + logMismatchError(); + } + vnode.el = null; + if (isFragment) { + const end = locateClosingAnchor(node); + while (true) { + const next2 = nextSibling(node); + if (next2 && next2 !== end) { + remove2(next2); + } else { + break; + } + } + } + const next = nextSibling(node); + const container = parentNode(node); + remove2(node); + patch( + null, + vnode, + container, + next, + parentComponent, + parentSuspense, + getContainerType(container), + slotScopeIds + ); + if (parentComponent) { + parentComponent.vnode.el = vnode.el; + updateHOCHostEl(parentComponent, vnode.el); + } + return next; + }; + const locateClosingAnchor = (node, open = "[", close = "]") => { + let match = 0; + while (node) { + node = nextSibling(node); + if (node && isComment(node)) { + if (node.data === open) match++; + if (node.data === close) { + if (match === 0) { + return nextSibling(node); + } else { + match--; + } + } + } + } + return node; + }; + const replaceNode = (newNode, oldNode, parentComponent) => { + const parentNode2 = oldNode.parentNode; + if (parentNode2) { + parentNode2.replaceChild(newNode, oldNode); + } + let parent = parentComponent; + while (parent) { + if (parent.vnode.el === oldNode) { + parent.vnode.el = parent.subTree.el = newNode; + } + parent = parent.parent; + } + }; + const isTemplateNode = (node) => { + return node.nodeType === 1 && node.tagName === "TEMPLATE"; + }; + return [hydrate2, hydrateNode]; +} +function propHasMismatch(el, key, clientValue, vnode, instance) { + let mismatchType; + let mismatchKey; + let actual; + let expected; + if (key === "class") { + actual = el.getAttribute("class"); + expected = normalizeClass(clientValue); + if (!isSetEqual(toClassSet(actual || ""), toClassSet(expected))) { + mismatchType = 2; + mismatchKey = `class`; + } + } else if (key === "style") { + actual = el.getAttribute("style") || ""; + expected = isString(clientValue) ? clientValue : stringifyStyle(normalizeStyle(clientValue)); + const actualMap = toStyleMap(actual); + const expectedMap = toStyleMap(expected); + if (vnode.dirs) { + for (const { dir, value } of vnode.dirs) { + if (dir.name === "show" && !value) { + expectedMap.set("display", "none"); + } + } + } + if (instance) { + resolveCssVars(instance, vnode, expectedMap); + } + if (!isMapEqual(actualMap, expectedMap)) { + mismatchType = 3; + mismatchKey = "style"; + } + } else if (el instanceof SVGElement && isKnownSvgAttr(key) || el instanceof HTMLElement && (isBooleanAttr(key) || isKnownHtmlAttr(key))) { + if (isBooleanAttr(key)) { + actual = el.hasAttribute(key); + expected = includeBooleanAttr(clientValue); + } else if (clientValue == null) { + actual = el.hasAttribute(key); + expected = false; + } else { + if (el.hasAttribute(key)) { + actual = el.getAttribute(key); + } else if (key === "value" && el.tagName === "TEXTAREA") { + actual = el.value; + } else { + actual = false; + } + expected = isRenderableAttrValue(clientValue) ? String(clientValue) : false; + } + if (actual !== expected) { + mismatchType = 4; + mismatchKey = key; + } + } + if (mismatchType != null && !isMismatchAllowed(el, mismatchType)) { + const format = (v) => v === false ? `(not rendered)` : `${mismatchKey}="${v}"`; + const preSegment = `Hydration ${MismatchTypeString[mismatchType]} mismatch on`; + const postSegment = ` + - rendered on server: ${format(actual)} + - expected on client: ${format(expected)} + Note: this mismatch is check-only. The DOM will not be rectified in production due to performance overhead. + You should fix the source of the mismatch.`; + { + warn$1(preSegment, el, postSegment); + } + return true; + } + return false; +} +function toClassSet(str) { + return new Set(str.trim().split(/\s+/)); +} +function isSetEqual(a, b) { + if (a.size !== b.size) { + return false; + } + for (const s of a) { + if (!b.has(s)) { + return false; + } + } + return true; +} +function toStyleMap(str) { + const styleMap = /* @__PURE__ */ new Map(); + for (const item of str.split(";")) { + let [key, value] = item.split(":"); + key = key.trim(); + value = value && value.trim(); + if (key && value) { + styleMap.set(key, value); + } + } + return styleMap; +} +function isMapEqual(a, b) { + if (a.size !== b.size) { + return false; + } + for (const [key, value] of a) { + if (value !== b.get(key)) { + return false; + } + } + return true; +} +function resolveCssVars(instance, vnode, expectedMap) { + const root = instance.subTree; + if (instance.getCssVars && (vnode === root || root && root.type === Fragment && root.children.includes(vnode))) { + const cssVars = instance.getCssVars(); + for (const key in cssVars) { + expectedMap.set( + `--${getEscapedCssVarName(key, false)}`, + String(cssVars[key]) + ); + } + } + if (vnode === root && instance.parent) { + resolveCssVars(instance.parent, instance.vnode, expectedMap); + } +} +var allowMismatchAttr = "data-allow-mismatch"; +var MismatchTypeString = { + [ + 0 + /* TEXT */ + ]: "text", + [ + 1 + /* CHILDREN */ + ]: "children", + [ + 2 + /* CLASS */ + ]: "class", + [ + 3 + /* STYLE */ + ]: "style", + [ + 4 + /* ATTRIBUTE */ + ]: "attribute" +}; +function isMismatchAllowed(el, allowedType) { + if (allowedType === 0 || allowedType === 1) { + while (el && !el.hasAttribute(allowMismatchAttr)) { + el = el.parentElement; + } + } + const allowedAttr = el && el.getAttribute(allowMismatchAttr); + if (allowedAttr == null) { + return false; + } else if (allowedAttr === "") { + return true; + } else { + const list = allowedAttr.split(","); + if (allowedType === 0 && list.includes("children")) { + return true; + } + return allowedAttr.split(",").includes(MismatchTypeString[allowedType]); + } +} +var requestIdleCallback = getGlobalThis().requestIdleCallback || ((cb) => setTimeout(cb, 1)); +var cancelIdleCallback = getGlobalThis().cancelIdleCallback || ((id) => clearTimeout(id)); +var hydrateOnIdle = (timeout = 1e4) => (hydrate2) => { + const id = requestIdleCallback(hydrate2, { timeout }); + return () => cancelIdleCallback(id); +}; +function elementIsVisibleInViewport(el) { + const { top, left, bottom, right } = el.getBoundingClientRect(); + const { innerHeight, innerWidth } = window; + return (top > 0 && top < innerHeight || bottom > 0 && bottom < innerHeight) && (left > 0 && left < innerWidth || right > 0 && right < innerWidth); +} +var hydrateOnVisible = (opts) => (hydrate2, forEach) => { + const ob = new IntersectionObserver((entries) => { + for (const e of entries) { + if (!e.isIntersecting) continue; + ob.disconnect(); + hydrate2(); + break; + } + }, opts); + forEach((el) => { + if (!(el instanceof Element)) return; + if (elementIsVisibleInViewport(el)) { + hydrate2(); + ob.disconnect(); + return false; + } + ob.observe(el); + }); + return () => ob.disconnect(); +}; +var hydrateOnMediaQuery = (query) => (hydrate2) => { + if (query) { + const mql = matchMedia(query); + if (mql.matches) { + hydrate2(); + } else { + mql.addEventListener("change", hydrate2, { once: true }); + return () => mql.removeEventListener("change", hydrate2); + } + } +}; +var hydrateOnInteraction = (interactions = []) => (hydrate2, forEach) => { + if (isString(interactions)) interactions = [interactions]; + let hasHydrated = false; + const doHydrate = (e) => { + if (!hasHydrated) { + hasHydrated = true; + teardown(); + hydrate2(); + e.target.dispatchEvent(new e.constructor(e.type, e)); + } + }; + const teardown = () => { + forEach((el) => { + for (const i of interactions) { + el.removeEventListener(i, doHydrate); + } + }); + }; + forEach((el) => { + for (const i of interactions) { + el.addEventListener(i, doHydrate, { once: true }); + } + }); + return teardown; +}; +function forEachElement(node, cb) { + if (isComment(node) && node.data === "[") { + let depth = 1; + let next = node.nextSibling; + while (next) { + if (next.nodeType === 1) { + const result = cb(next); + if (result === false) { + break; + } + } else if (isComment(next)) { + if (next.data === "]") { + if (--depth === 0) break; + } else if (next.data === "[") { + depth++; + } + } + next = next.nextSibling; + } + } else { + cb(node); + } +} +var isAsyncWrapper = (i) => !!i.type.__asyncLoader; +function defineAsyncComponent(source) { + if (isFunction(source)) { + source = { loader: source }; + } + const { + loader, + loadingComponent, + errorComponent, + delay = 200, + hydrate: hydrateStrategy, + timeout, + // undefined = never times out + suspensible = true, + onError: userOnError + } = source; + let pendingRequest = null; + let resolvedComp; + let retries = 0; + const retry = () => { + retries++; + pendingRequest = null; + return load(); + }; + const load = () => { + let thisRequest; + return pendingRequest || (thisRequest = pendingRequest = loader().catch((err) => { + err = err instanceof Error ? err : new Error(String(err)); + if (userOnError) { + return new Promise((resolve2, reject) => { + const userRetry = () => resolve2(retry()); + const userFail = () => reject(err); + userOnError(err, userRetry, userFail, retries + 1); + }); + } else { + throw err; + } + }).then((comp) => { + if (thisRequest !== pendingRequest && pendingRequest) { + return pendingRequest; + } + if (!comp) { + warn$1( + `Async component loader resolved to undefined. If you are using retry(), make sure to return its return value.` + ); + } + if (comp && (comp.__esModule || comp[Symbol.toStringTag] === "Module")) { + comp = comp.default; + } + if (comp && !isObject(comp) && !isFunction(comp)) { + throw new Error(`Invalid async component load result: ${comp}`); + } + resolvedComp = comp; + return comp; + })); + }; + return defineComponent({ + name: "AsyncComponentWrapper", + __asyncLoader: load, + __asyncHydrate(el, instance, hydrate2) { + const doHydrate = hydrateStrategy ? () => { + const teardown = hydrateStrategy( + hydrate2, + (cb) => forEachElement(el, cb) + ); + if (teardown) { + (instance.bum || (instance.bum = [])).push(teardown); + } + } : hydrate2; + if (resolvedComp) { + doHydrate(); + } else { + load().then(() => !instance.isUnmounted && doHydrate()); + } + }, + get __asyncResolved() { + return resolvedComp; + }, + setup() { + const instance = currentInstance; + markAsyncBoundary(instance); + if (resolvedComp) { + return () => createInnerComp(resolvedComp, instance); + } + const onError = (err) => { + pendingRequest = null; + handleError( + err, + instance, + 13, + !errorComponent + ); + }; + if (suspensible && instance.suspense || isInSSRComponentSetup) { + return load().then((comp) => { + return () => createInnerComp(comp, instance); + }).catch((err) => { + onError(err); + return () => errorComponent ? createVNode(errorComponent, { + error: err + }) : null; + }); + } + const loaded = ref(false); + const error = ref(); + const delayed = ref(!!delay); + if (delay) { + setTimeout(() => { + delayed.value = false; + }, delay); + } + if (timeout != null) { + setTimeout(() => { + if (!loaded.value && !error.value) { + const err = new Error( + `Async component timed out after ${timeout}ms.` + ); + onError(err); + error.value = err; + } + }, timeout); + } + load().then(() => { + loaded.value = true; + if (instance.parent && isKeepAlive(instance.parent.vnode)) { + instance.parent.update(); + } + }).catch((err) => { + onError(err); + error.value = err; + }); + return () => { + if (loaded.value && resolvedComp) { + return createInnerComp(resolvedComp, instance); + } else if (error.value && errorComponent) { + return createVNode(errorComponent, { + error: error.value + }); + } else if (loadingComponent && !delayed.value) { + return createVNode(loadingComponent); + } + }; + } + }); +} +function createInnerComp(comp, parent) { + const { ref: ref2, props, children, ce } = parent.vnode; + const vnode = createVNode(comp, props, children); + vnode.ref = ref2; + vnode.ce = ce; + delete parent.vnode.ce; + return vnode; +} +var isKeepAlive = (vnode) => vnode.type.__isKeepAlive; +var KeepAliveImpl = { + name: `KeepAlive`, + // Marker for special handling inside the renderer. We are not using a === + // check directly on KeepAlive in the renderer, because importing it directly + // would prevent it from being tree-shaken. + __isKeepAlive: true, + props: { + include: [String, RegExp, Array], + exclude: [String, RegExp, Array], + max: [String, Number] + }, + setup(props, { slots }) { + const instance = getCurrentInstance(); + const sharedContext = instance.ctx; + if (!sharedContext.renderer) { + return () => { + const children = slots.default && slots.default(); + return children && children.length === 1 ? children[0] : children; + }; + } + const cache = /* @__PURE__ */ new Map(); + const keys = /* @__PURE__ */ new Set(); + let current = null; + if (true) { + instance.__v_cache = cache; + } + const parentSuspense = instance.suspense; + const { + renderer: { + p: patch, + m: move, + um: _unmount, + o: { createElement } + } + } = sharedContext; + const storageContainer = createElement("div"); + sharedContext.activate = (vnode, container, anchor, namespace, optimized) => { + const instance2 = vnode.component; + move(vnode, container, anchor, 0, parentSuspense); + patch( + instance2.vnode, + vnode, + container, + anchor, + instance2, + parentSuspense, + namespace, + vnode.slotScopeIds, + optimized + ); + queuePostRenderEffect(() => { + instance2.isDeactivated = false; + if (instance2.a) { + invokeArrayFns(instance2.a); + } + const vnodeHook = vnode.props && vnode.props.onVnodeMounted; + if (vnodeHook) { + invokeVNodeHook(vnodeHook, instance2.parent, vnode); + } + }, parentSuspense); + if (true) { + devtoolsComponentAdded(instance2); + } + }; + sharedContext.deactivate = (vnode) => { + const instance2 = vnode.component; + invalidateMount(instance2.m); + invalidateMount(instance2.a); + move(vnode, storageContainer, null, 1, parentSuspense); + queuePostRenderEffect(() => { + if (instance2.da) { + invokeArrayFns(instance2.da); + } + const vnodeHook = vnode.props && vnode.props.onVnodeUnmounted; + if (vnodeHook) { + invokeVNodeHook(vnodeHook, instance2.parent, vnode); + } + instance2.isDeactivated = true; + }, parentSuspense); + if (true) { + devtoolsComponentAdded(instance2); + } + }; + function unmount(vnode) { + resetShapeFlag(vnode); + _unmount(vnode, instance, parentSuspense, true); + } + function pruneCache(filter) { + cache.forEach((vnode, key) => { + const name = getComponentName(vnode.type); + if (name && !filter(name)) { + pruneCacheEntry(key); + } + }); + } + function pruneCacheEntry(key) { + const cached = cache.get(key); + if (cached && (!current || !isSameVNodeType(cached, current))) { + unmount(cached); + } else if (current) { + resetShapeFlag(current); + } + cache.delete(key); + keys.delete(key); + } + watch2( + () => [props.include, props.exclude], + ([include, exclude]) => { + include && pruneCache((name) => matches(include, name)); + exclude && pruneCache((name) => !matches(exclude, name)); + }, + // prune post-render after `current` has been updated + { flush: "post", deep: true } + ); + let pendingCacheKey = null; + const cacheSubtree = () => { + if (pendingCacheKey != null) { + if (isSuspense(instance.subTree.type)) { + queuePostRenderEffect(() => { + cache.set(pendingCacheKey, getInnerChild(instance.subTree)); + }, instance.subTree.suspense); + } else { + cache.set(pendingCacheKey, getInnerChild(instance.subTree)); + } + } + }; + onMounted(cacheSubtree); + onUpdated(cacheSubtree); + onBeforeUnmount(() => { + cache.forEach((cached) => { + const { subTree, suspense } = instance; + const vnode = getInnerChild(subTree); + if (cached.type === vnode.type && cached.key === vnode.key) { + resetShapeFlag(vnode); + const da = vnode.component.da; + da && queuePostRenderEffect(da, suspense); + return; + } + unmount(cached); + }); + }); + return () => { + pendingCacheKey = null; + if (!slots.default) { + return current = null; + } + const children = slots.default(); + const rawVNode = children[0]; + if (children.length > 1) { + if (true) { + warn$1(`KeepAlive should contain exactly one component child.`); + } + current = null; + return children; + } else if (!isVNode(rawVNode) || !(rawVNode.shapeFlag & 4) && !(rawVNode.shapeFlag & 128)) { + current = null; + return rawVNode; + } + let vnode = getInnerChild(rawVNode); + if (vnode.type === Comment) { + current = null; + return vnode; + } + const comp = vnode.type; + const name = getComponentName( + isAsyncWrapper(vnode) ? vnode.type.__asyncResolved || {} : comp + ); + const { include, exclude, max } = props; + if (include && (!name || !matches(include, name)) || exclude && name && matches(exclude, name)) { + vnode.shapeFlag &= ~256; + current = vnode; + return rawVNode; + } + const key = vnode.key == null ? comp : vnode.key; + const cachedVNode = cache.get(key); + if (vnode.el) { + vnode = cloneVNode(vnode); + if (rawVNode.shapeFlag & 128) { + rawVNode.ssContent = vnode; + } + } + pendingCacheKey = key; + if (cachedVNode) { + vnode.el = cachedVNode.el; + vnode.component = cachedVNode.component; + if (vnode.transition) { + setTransitionHooks(vnode, vnode.transition); + } + vnode.shapeFlag |= 512; + keys.delete(key); + keys.add(key); + } else { + keys.add(key); + if (max && keys.size > parseInt(max, 10)) { + pruneCacheEntry(keys.values().next().value); + } + } + vnode.shapeFlag |= 256; + current = vnode; + return isSuspense(rawVNode.type) ? rawVNode : vnode; + }; + } +}; +var KeepAlive = KeepAliveImpl; +function matches(pattern, name) { + if (isArray(pattern)) { + return pattern.some((p2) => matches(p2, name)); + } else if (isString(pattern)) { + return pattern.split(",").includes(name); + } else if (isRegExp(pattern)) { + pattern.lastIndex = 0; + return pattern.test(name); + } + return false; +} +function onActivated(hook, target) { + registerKeepAliveHook(hook, "a", target); +} +function onDeactivated(hook, target) { + registerKeepAliveHook(hook, "da", target); +} +function registerKeepAliveHook(hook, type, target = currentInstance) { + const wrappedHook = hook.__wdc || (hook.__wdc = () => { + let current = target; + while (current) { + if (current.isDeactivated) { + return; + } + current = current.parent; + } + return hook(); + }); + injectHook(type, wrappedHook, target); + if (target) { + let current = target.parent; + while (current && current.parent) { + if (isKeepAlive(current.parent.vnode)) { + injectToKeepAliveRoot(wrappedHook, type, target, current); + } + current = current.parent; + } + } +} +function injectToKeepAliveRoot(hook, type, target, keepAliveRoot) { + const injected = injectHook( + type, + hook, + keepAliveRoot, + true + /* prepend */ + ); + onUnmounted(() => { + remove(keepAliveRoot[type], injected); + }, target); +} +function resetShapeFlag(vnode) { + vnode.shapeFlag &= ~256; + vnode.shapeFlag &= ~512; +} +function getInnerChild(vnode) { + return vnode.shapeFlag & 128 ? vnode.ssContent : vnode; +} +function injectHook(type, hook, target = currentInstance, prepend = false) { + if (target) { + const hooks = target[type] || (target[type] = []); + const wrappedHook = hook.__weh || (hook.__weh = (...args) => { + pauseTracking(); + const reset = setCurrentInstance(target); + const res = callWithAsyncErrorHandling(hook, target, type, args); + reset(); + resetTracking(); + return res; + }); + if (prepend) { + hooks.unshift(wrappedHook); + } else { + hooks.push(wrappedHook); + } + return wrappedHook; + } else if (true) { + const apiName = toHandlerKey(ErrorTypeStrings$1[type].replace(/ hook$/, "")); + warn$1( + `${apiName} is called when there is no active component instance to be associated with. Lifecycle injection APIs can only be used during execution of setup(). If you are using async setup(), make sure to register lifecycle hooks before the first await statement.` + ); + } +} +var createHook = (lifecycle) => (hook, target = currentInstance) => { + if (!isInSSRComponentSetup || lifecycle === "sp") { + injectHook(lifecycle, (...args) => hook(...args), target); + } +}; +var onBeforeMount = createHook("bm"); +var onMounted = createHook("m"); +var onBeforeUpdate = createHook( + "bu" +); +var onUpdated = createHook("u"); +var onBeforeUnmount = createHook( + "bum" +); +var onUnmounted = createHook("um"); +var onServerPrefetch = createHook( + "sp" +); +var onRenderTriggered = createHook("rtg"); +var onRenderTracked = createHook("rtc"); +function onErrorCaptured(hook, target = currentInstance) { + injectHook("ec", hook, target); +} +var COMPONENTS = "components"; +var DIRECTIVES = "directives"; +function resolveComponent(name, maybeSelfReference) { + return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name; +} +var NULL_DYNAMIC_COMPONENT = Symbol.for("v-ndc"); +function resolveDynamicComponent(component) { + if (isString(component)) { + return resolveAsset(COMPONENTS, component, false) || component; + } else { + return component || NULL_DYNAMIC_COMPONENT; + } +} +function resolveDirective(name) { + return resolveAsset(DIRECTIVES, name); +} +function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false) { + const instance = currentRenderingInstance || currentInstance; + if (instance) { + const Component = instance.type; + if (type === COMPONENTS) { + const selfName = getComponentName( + Component, + false + ); + if (selfName && (selfName === name || selfName === camelize(name) || selfName === capitalize(camelize(name)))) { + return Component; + } + } + const res = ( + // local registration + // check instance[type] first which is resolved for options API + resolve(instance[type] || Component[type], name) || // global registration + resolve(instance.appContext[type], name) + ); + if (!res && maybeSelfReference) { + return Component; + } + if (warnMissing && !res) { + const extra = type === COMPONENTS ? ` +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.` : ``; + warn$1(`Failed to resolve ${type.slice(0, -1)}: ${name}${extra}`); + } + return res; + } else if (true) { + warn$1( + `resolve${capitalize(type.slice(0, -1))} can only be used in render() or setup().` + ); + } +} +function resolve(registry, name) { + return registry && (registry[name] || registry[camelize(name)] || registry[capitalize(camelize(name))]); +} +function renderList(source, renderItem, cache, index) { + let ret; + const cached = cache && cache[index]; + const sourceIsArray = isArray(source); + if (sourceIsArray || isString(source)) { + const sourceIsReactiveArray = sourceIsArray && isReactive(source); + let needsWrap = false; + if (sourceIsReactiveArray) { + needsWrap = !isShallow(source); + source = shallowReadArray(source); + } + ret = new Array(source.length); + for (let i = 0, l = source.length; i < l; i++) { + ret[i] = renderItem( + needsWrap ? toReactive(source[i]) : source[i], + i, + void 0, + cached && cached[i] + ); + } + } else if (typeof source === "number") { + if (!Number.isInteger(source)) { + warn$1(`The v-for range expect an integer value but got ${source}.`); + } + ret = new Array(source); + for (let i = 0; i < source; i++) { + ret[i] = renderItem(i + 1, i, void 0, cached && cached[i]); + } + } else if (isObject(source)) { + if (source[Symbol.iterator]) { + ret = Array.from( + source, + (item, i) => renderItem(item, i, void 0, cached && cached[i]) + ); + } else { + const keys = Object.keys(source); + ret = new Array(keys.length); + for (let i = 0, l = keys.length; i < l; i++) { + const key = keys[i]; + ret[i] = renderItem(source[key], key, i, cached && cached[i]); + } + } + } else { + ret = []; + } + if (cache) { + cache[index] = ret; + } + return ret; +} +function createSlots(slots, dynamicSlots) { + for (let i = 0; i < dynamicSlots.length; i++) { + const slot = dynamicSlots[i]; + if (isArray(slot)) { + for (let j = 0; j < slot.length; j++) { + slots[slot[j].name] = slot[j].fn; + } + } else if (slot) { + slots[slot.name] = slot.key ? (...args) => { + const res = slot.fn(...args); + if (res) res.key = slot.key; + return res; + } : slot.fn; + } + } + return slots; +} +function renderSlot(slots, name, props = {}, fallback, noSlotted) { + if (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce) { + if (name !== "default") props.name = name; + return openBlock(), createBlock( + Fragment, + null, + [createVNode("slot", props, fallback && fallback())], + 64 + ); + } + let slot = slots[name]; + if (slot && slot.length > 1) { + warn$1( + `SSR-optimized slot function detected in a non-SSR-optimized render function. You need to mark this component with $dynamic-slots in the parent template.` + ); + slot = () => []; + } + if (slot && slot._c) { + slot._d = false; + } + openBlock(); + const validSlotContent = slot && ensureValidVNode(slot(props)); + const slotKey = props.key || // slot content array of a dynamic conditional slot may have a branch + // key attached in the `createSlots` helper, respect that + validSlotContent && validSlotContent.key; + const rendered = createBlock( + Fragment, + { + key: (slotKey && !isSymbol(slotKey) ? slotKey : `_${name}`) + // #7256 force differentiate fallback content from actual content + (!validSlotContent && fallback ? "_fb" : "") + }, + validSlotContent || (fallback ? fallback() : []), + validSlotContent && slots._ === 1 ? 64 : -2 + ); + if (!noSlotted && rendered.scopeId) { + rendered.slotScopeIds = [rendered.scopeId + "-s"]; + } + if (slot && slot._c) { + slot._d = true; + } + return rendered; +} +function ensureValidVNode(vnodes) { + return vnodes.some((child) => { + if (!isVNode(child)) return true; + if (child.type === Comment) return false; + if (child.type === Fragment && !ensureValidVNode(child.children)) + return false; + return true; + }) ? vnodes : null; +} +function toHandlers(obj, preserveCaseIfNecessary) { + const ret = {}; + if (!isObject(obj)) { + warn$1(`v-on with no argument expects an object value.`); + return ret; + } + for (const key in obj) { + ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key]; + } + return ret; +} +var getPublicInstance = (i) => { + if (!i) return null; + if (isStatefulComponent(i)) return getComponentPublicInstance(i); + return getPublicInstance(i.parent); +}; +var publicPropertiesMap = ( + // Move PURE marker to new line to workaround compiler discarding it + // due to type annotation + extend(/* @__PURE__ */ Object.create(null), { + $: (i) => i, + $el: (i) => i.vnode.el, + $data: (i) => i.data, + $props: (i) => true ? shallowReadonly(i.props) : i.props, + $attrs: (i) => true ? shallowReadonly(i.attrs) : i.attrs, + $slots: (i) => true ? shallowReadonly(i.slots) : i.slots, + $refs: (i) => true ? shallowReadonly(i.refs) : i.refs, + $parent: (i) => getPublicInstance(i.parent), + $root: (i) => getPublicInstance(i.root), + $host: (i) => i.ce, + $emit: (i) => i.emit, + $options: (i) => __VUE_OPTIONS_API__ ? resolveMergedOptions(i) : i.type, + $forceUpdate: (i) => i.f || (i.f = () => { + queueJob(i.update); + }), + $nextTick: (i) => i.n || (i.n = nextTick.bind(i.proxy)), + $watch: (i) => __VUE_OPTIONS_API__ ? instanceWatch.bind(i) : NOOP + }) +); +var isReservedPrefix = (key) => key === "_" || key === "$"; +var hasSetupBinding = (state, key) => state !== EMPTY_OBJ && !state.__isScriptSetup && hasOwn(state, key); +var PublicInstanceProxyHandlers = { + get({ _: instance }, key) { + if (key === "__v_skip") { + return true; + } + const { ctx, setupState, data, props, accessCache, type, appContext } = instance; + if (key === "__isVue") { + return true; + } + let normalizedProps; + if (key[0] !== "$") { + const n = accessCache[key]; + if (n !== void 0) { + switch (n) { + case 1: + return setupState[key]; + case 2: + return data[key]; + case 4: + return ctx[key]; + case 3: + return props[key]; + } + } else if (hasSetupBinding(setupState, key)) { + accessCache[key] = 1; + return setupState[key]; + } else if (data !== EMPTY_OBJ && hasOwn(data, key)) { + accessCache[key] = 2; + return data[key]; + } else if ( + // only cache other properties when instance has declared (thus stable) + // props + (normalizedProps = instance.propsOptions[0]) && hasOwn(normalizedProps, key) + ) { + accessCache[key] = 3; + return props[key]; + } else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) { + accessCache[key] = 4; + return ctx[key]; + } else if (!__VUE_OPTIONS_API__ || shouldCacheAccess) { + accessCache[key] = 0; + } + } + const publicGetter = publicPropertiesMap[key]; + let cssModule, globalProperties; + if (publicGetter) { + if (key === "$attrs") { + track(instance.attrs, "get", ""); + markAttrsAccessed(); + } else if (key === "$slots") { + track(instance, "get", key); + } + return publicGetter(instance); + } else if ( + // css module (injected by vue-loader) + (cssModule = type.__cssModules) && (cssModule = cssModule[key]) + ) { + return cssModule; + } else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) { + accessCache[key] = 4; + return ctx[key]; + } else if ( + // global properties + globalProperties = appContext.config.globalProperties, hasOwn(globalProperties, key) + ) { + { + return globalProperties[key]; + } + } else if (currentRenderingInstance && (!isString(key) || // #1091 avoid internal isRef/isVNode checks on component instance leading + // to infinite warning loop + key.indexOf("__v") !== 0)) { + if (data !== EMPTY_OBJ && isReservedPrefix(key[0]) && hasOwn(data, key)) { + warn$1( + `Property ${JSON.stringify( + key + )} must be accessed via $data because it starts with a reserved character ("$" or "_") and is not proxied on the render context.` + ); + } else if (instance === currentRenderingInstance) { + warn$1( + `Property ${JSON.stringify(key)} was accessed during render but is not defined on instance.` + ); + } + } + }, + set({ _: instance }, key, value) { + const { data, setupState, ctx } = instance; + if (hasSetupBinding(setupState, key)) { + setupState[key] = value; + return true; + } else if (setupState.__isScriptSetup && hasOwn(setupState, key)) { + warn$1(`Cannot mutate